X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2FWM%2Frenderers%2Fwidget.c;h=247152d7eda4cdd0e9f6aab81c285337988ef242;hb=c86a932dea9d15974e42c99b41ef8f34b17462df;hp=d77a67a9df7458c7d601de2c0735927c020fde0b;hpb=5469fe753efcaccb07e7666c4b7d9b4a8d003808;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/WM/renderers/widget.c b/Usermode/Applications/axwin3_src/WM/renderers/widget.c index d77a67a9..247152d7 100644 --- a/Usermode/Applications/axwin3_src/WM/renderers/widget.c +++ b/Usermode/Applications/axwin3_src/WM/renderers/widget.c @@ -14,6 +14,7 @@ #include "widget/common.h" #define DEFAULT_ELETABLE_SIZE 64 +#define BORDER_EVERYTHING 0 // === PROTOTYPES === int Renderer_Widget_Init(void); @@ -25,10 +26,15 @@ void Widget_UpdateDimensions(tElement *Element); void Widget_UpdatePosition(tElement *Element); // --- Messages tElement *Widget_GetElementById(tWidgetWin *Info, uint32_t ID); -void Widget_NewWidget(tWidgetWin *Info, size_t Len, const tWidgetMsg_Create *Msg); -void Widget_SetFlags(tWidgetWin *Info, int Len, const tWidgetMsg_SetFlags *Msg); -void Widget_SetSize(tWidgetWin *Info, int Len, const tWidgetMsg_SetSize *Msg); -void Widget_SetText(tWidgetWin *Info, int Len, const tWidgetMsg_SetText *Msg); + int Widget_IPC_Create(tWindow *Win, size_t Len, const void *Data); + int Widget_IPC_NewWidgetSubwin(tWindow *Win, size_t Len, const void *Data); +// int Widget_IPC_Delete(tWindow *Win, size_t Len, const void *Data); + int Widget_IPC_SetFocus(tWindow *Win, size_t Len, const void *Data); + int Widget_IPC_SetFlags(tWindow *Win, size_t Len, const void *Data); + int Widget_IPC_SetSize(tWindow *Win, size_t Len, const void *Data); + int Widget_IPC_SetText(tWindow *Win, size_t Len, const void *Data); + int Widget_IPC_GetText(tWindow *Win, size_t Len, const void *Data); +// int Widget_IPC_SetColour(tWindow *Win, size_t Len, const void *Data); int Renderer_Widget_HandleMessage(tWindow *Target, int Msg, int Len, const void *Data); // === GLOBALS === @@ -36,18 +42,37 @@ tWMRenderer gRenderer_Widget = { .Name = "Widget", .CreateWindow = Renderer_Widget_Create, .Redraw = Renderer_Widget_Redraw, - .HandleMessage = Renderer_Widget_HandleMessage + .HandleMessage = Renderer_Widget_HandleMessage, + .nIPCHandlers = N_IPC_WIDGET, + .IPCHandlers = { + [IPC_WIDGET_CREATE] = Widget_IPC_Create, + [IPC_WIDGET_CREATESUBWIN] = Widget_IPC_NewWidgetSubwin, + [IPC_WIDGET_SETFOCUS] = Widget_IPC_SetFocus, + [IPC_WIDGET_SETFLAGS] = Widget_IPC_SetFlags, + [IPC_WIDGET_SETSIZE] = Widget_IPC_SetSize, + [IPC_WIDGET_SETTEXT] = Widget_IPC_SetText, + [IPC_WIDGET_GETTEXT] = Widget_IPC_GetText, + } }; // --- Element callbacks tWidgetDef *gaWM_WidgetTypes[NUM_ELETYPES]; const int ciWM_NumWidgetTypes = sizeof(gaWM_WidgetTypes)/sizeof(gaWM_WidgetTypes[0]); +tWidgetDef gWidget_NullWidgetDef; // === CODE === int Renderer_Widget_Init(void) { + int i; WM_RegisterRenderer(&gRenderer_Widget); + for(i = 0; i < ciWM_NumWidgetTypes; i ++) + { + if(gaWM_WidgetTypes[i] != NULL) continue; + + gaWM_WidgetTypes[i] = &gWidget_NullWidgetDef; + } + return 0; } @@ -60,7 +85,8 @@ void Widget_int_SetTypeDef(int Type, tWidgetDef *Ptr) return ; } - if( gaWM_WidgetTypes[Type] ) { + if( gaWM_WidgetTypes[Type] && gaWM_WidgetTypes[Type] != &gWidget_NullWidgetDef ) + { _SysDebug("ERROR - Widget ID %i redefined by %p", Type, __builtin_return_address(0) ); @@ -68,7 +94,6 @@ void Widget_int_SetTypeDef(int Type, tWidgetDef *Ptr) } gaWM_WidgetTypes[Type] = Ptr; - _SysDebug("Registered type %i to %p", Type, Ptr); } tWindow *Renderer_Widget_Create(int Flags) @@ -77,7 +102,7 @@ tWindow *Renderer_Widget_Create(int Flags) tWidgetWin *info; int eletable_size = DEFAULT_ELETABLE_SIZE; - _SysDebug("Renderer_Widget_Create: (Flags = 0x%x)", Flags); + //_SysDebug("Renderer_Widget_Create: (Flags = 0x%x)", Flags); // TODO: Use `Flags` as default element count? // - Actaully, it's taken by the root ele flags @@ -87,6 +112,7 @@ tWindow *Renderer_Widget_Create(int Flags) info = ret->RendererInfo; info->TableSize = eletable_size; + info->FocusedElement = &info->RootElement; info->RootElement.Window = ret; info->RootElement.ID = -1; info->RootElement.BackgroundColour = 0xCCCCCC; @@ -102,7 +128,7 @@ tWindow *Renderer_Widget_Create(int Flags) void Renderer_Widget_Redraw(tWindow *Window) { tWidgetWin *info = Window->RendererInfo; - WM_Render_FillRect(Window, 0, 0, 0xFFF, 0xFFF, info->RootElement.BackgroundColour); + WM_Render_FillRect(Window, 0, 0, Window->W, Window->H, info->RootElement.BackgroundColour); Widget_UpdateDimensions(&info->RootElement); Widget_UpdatePosition(&info->RootElement); @@ -118,17 +144,19 @@ void Widget_RenderWidget(tWindow *Window, tElement *Element) if( Element->Flags & ELEFLAG_NORENDER ) return ; if( Element->Flags & ELEFLAG_INVISIBLE ) return ; - if( Element->Type < ciWM_NumWidgetTypes - && gaWM_WidgetTypes[Element->Type] - && gaWM_WidgetTypes[Element->Type]->Render - ) + #if BORDER_EVERYTHING + WM_Render_DrawRect( + Window, + Element->CachedX, Element->CachedY, + Element->CachedW, Element->CachedH, + 0 + ); + #endif + + if(gaWM_WidgetTypes[Element->Type]->Render) { gaWM_WidgetTypes[Element->Type]->Render(Window, Element); } - else - { - Widget_Decorator_RenderWidget(Window, Element); - } for(child = Element->FirstChild; child; child = child->NextSibling) { @@ -143,12 +171,20 @@ void Widget_UpdateDimensions(tElement *Element) int nFixed = 0; int maxCross = 0; int fixedSize = 0; - int fullCross, dynWith; + int fullCross, dynWith = 0; + int bVertical = Element->Flags & ELEFLAG_VERTICAL; + + // Check if this element can have children + if( (gaWM_WidgetTypes[Element->Type]->Flags & WIDGETTYPE_FLAG_NOCHILDREN) ) + return ; // Pass 1 // - Get the fixed and minimum sizes of the element for( child = Element->FirstChild; child; child = child->NextSibling ) { + int minWith = bVertical ? child->MinH : child->MinW; + int minCross = bVertical ? child->MinW : child->MinH; + // Ignore elements that will not be rendered if( child->Flags & ELEFLAG_NORENDER ) continue ; @@ -164,81 +200,80 @@ void Widget_UpdateDimensions(tElement *Element) else if( child->Flags & ELEFLAG_NOSTRETCH ) { nFixed ++; - fixedSize += child->MinWith; + fixedSize += minWith; } - if( child->FixedCross && maxCross < child->FixedCross ) - maxCross = child->FixedCross; - if( child->MinCross && maxCross < child->MinCross ) - maxCross = child->MinCross; + if( maxCross < child->FixedCross ) maxCross = child->FixedCross; + if( maxCross < minCross ) maxCross = minCross; nChildren ++; } // Get the dynamic with size from the unused space in the element if( nChildren > nFixed ) { - if( Element->Flags & ELEFLAG_VERTICAL ) + if( bVertical ) dynWith = Element->CachedH - Element->PaddingT - Element->PaddingB; else dynWith = Element->CachedW - Element->PaddingL - Element->PaddingR; dynWith -= fixedSize; + dynWith -= Element->GapSize * (nChildren-1); if( dynWith < 0 ) return ; dynWith /= nChildren - nFixed; } + else { + dynWith = 0; + } -// _SysDebug("%i - nChildren = %i, nFixed = %i, dynWith = %i, fixedSize = %i", -// Element->ID, nChildren, nFixed, dynWith, fixedSize); - // Get the cross size - if( Element->Flags & ELEFLAG_VERTICAL ) + if( bVertical ) fullCross = Element->CachedW - Element->PaddingL - Element->PaddingR; else fullCross = Element->CachedH - Element->PaddingT - Element->PaddingB; + + //_SysDebug("%i (p=%i) - WxH=%ix%i", + // Element->ID, (Element->Parent ? Element->Parent->ID : -1), + // Element->CachedW, Element->CachedH + // ); + //_SysDebug(" %s dynWith = %i, fullCross = %i", + // (Element->Flags & ELEFLAG_VERTICAL ? "Vert" : "Horiz"), + // dynWith, fullCross + // ); // Pass 2 - Set sizes and recurse for( child = Element->FirstChild; child; child = child->NextSibling ) { - int cross, with; + int w, h; // Ignore elements that will not be rendered if( child->Flags & ELEFLAG_NORENDER ) continue ; + // Don't resize floating elements + if( child->Flags & ELEFLAG_ABSOLUTEPOS ) continue ; - // --- Cross Size --- - // TODO: Expand to fill? - // TODO: Extra flag so options are (Expand, Equal, Wrap) - if( child->FixedCross ) - cross = child->FixedCross; - else if( child->Flags & ELEFLAG_NOEXPAND ) - cross = child->MinCross; - else - cross = fullCross; - - // --- With Size --- - if( child->FixedWith ) - with = child->FixedWith; - else if( child->Flags & ELEFLAG_NOSTRETCH ) - with = child->MinWith; + // --- Width --- + if( child->Flags & (bVertical ? ELEFLAG_NOEXPAND : ELEFLAG_NOSTRETCH) ) + w = child->MinW; + else if( bVertical ) + w = child->FixedCross ? child->FixedCross : fullCross; else - with = dynWith; + w = child->FixedWith ? child->FixedWith : dynWith; + // --- Height --- + if( child->Flags & (bVertical ? ELEFLAG_NOSTRETCH : ELEFLAG_NOEXPAND) ) + h = child->MinH; + else if( bVertical ) + h = child->FixedWith ? child->FixedWith : dynWith; + else + h = child->FixedCross ? child->FixedCross : fullCross; - if(with < child->MinWith) with = child->MinWith; - if(cross < child->MinCross) cross = child->MinCross; - + if(w < child->MinW) w = child->MinW; + if(h < child->MinH) h = child->MinH; + +// _SysDebug("Child %ix%i (min %ix%i)", w, h, child->MinW, child->MinH); + // Update the dimensions if they have changed - if( Element->Flags & ELEFLAG_VERTICAL ) { - // If no change, don't recurse - if( child->CachedW == cross && child->CachedH == with ) - continue ; - child->CachedW = cross; - child->CachedH = with; - } - else { - // If no change, don't recurse - if( child->CachedW == with && child->CachedH == cross ) - continue ; - child->CachedW = with; - child->CachedH = cross; - } + if( child->CachedW == w && child->CachedH == h ) + continue ; + child->CachedW = w; + child->CachedH = h; // Force the positions of child elements to be recalculated child->CachedX = -1; @@ -259,6 +294,10 @@ void Widget_UpdatePosition(tElement *Element) if( Element->Flags & ELEFLAG_NORENDER ) return ; + // Check if this element can have children + if( (gaWM_WidgetTypes[Element->Type]->Flags & WIDGETTYPE_FLAG_NOCHILDREN) ) + return ; + // _SysDebug("Widget_UpdatePosition: (Element=%p(%i Type=%i Flags=0x%x))", // Element, Element->ID, Element->Type, Element->Flags); @@ -275,7 +314,7 @@ void Widget_UpdatePosition(tElement *Element) newX = x; newY = y; - // Handle alignment + // Handle alignment (across parent) if( Element->Flags & ELEFLAG_ALIGN_CENTER ) { if(Element->Flags & ELEFLAG_VERTICAL) newX += Element->CachedW/2 - child->CachedW/2; @@ -320,48 +359,44 @@ void Widget_UpdateMinDims(tElement *Element) { tElement *child; int minW, minH; + int nChildren; if(!Element) return; minW = 0; minH = 0; + nChildren = 0; for(child = Element->FirstChild; child; child = child->NextSibling) { + int cross; + + if(Element->Flags & ELEFLAG_NORENDER) continue ; + if( (Element->Flags & ELEFLAG_VERTICAL) ) { - if(child->FixedCross) - minW += child->FixedCross; - else - minW += child->MinCross; - if(child->FixedWith) - minH += child->FixedWith; - else - minH += child->MinWith; + cross = child->FixedCross ? child->FixedCross : child->MinW; + if(minW < cross) minW = cross; + minH += child->FixedWith ? child->FixedWith : child->MinH; } else { - if(child->FixedCross) - minH += child->FixedCross; - else - minH += child->MinCross; - if(child->FixedWith) - minW += child->FixedWith; - else - minW += child->MinWith; + cross = child->FixedCross ? child->FixedCross : child->MinH; + minW += child->FixedWith ? child->FixedWith : child->MinW; + if(minH < cross) minH = cross; } - } +// _SysDebug("%i/%i cross = %i", Element->ID, child->ID, cross); - if( Element->Parent && (Element->Parent->Flags & ELEFLAG_VERTICAL) ) - { - Element->MinCross = Element->PaddingL + minW + Element->PaddingR; - Element->MinWith = Element->PaddingT + minH + Element->PaddingB; + nChildren ++; } + + if( Element->Flags & ELEFLAG_VERTICAL ) + minH += (nChildren - 1) * Element->GapSize; else - { - Element->MinWith = Element->PaddingL + minW + Element->PaddingR; - Element->MinCross = Element->PaddingL + minH + Element->PaddingR; - } + minW += (nChildren - 1) * Element->GapSize; + + Element->MinW = Element->PaddingL + minW + Element->PaddingR; + Element->MinH = Element->PaddingT + minH + Element->PaddingB; // Recurse upwards Widget_UpdateMinDims(Element->Parent); @@ -372,7 +407,7 @@ tElement *Widget_GetElementByPos(tWidgetWin *Info, int X, int Y) tElement *ret, *next, *ele; next = &Info->RootElement; - while(next) + do { ret = next; next = NULL; @@ -385,7 +420,7 @@ tElement *Widget_GetElementByPos(tWidgetWin *Info, int X, int Y) if(Y >= ele->CachedY + ele->CachedH) continue; next = ele; } - } + } while(next); return ret; } @@ -403,55 +438,33 @@ tElement *Widget_GetElementById(tWidgetWin *Info, uint32_t ID) return ele; } -// --- Message Handlers --- -void Widget_NewWidget(tWidgetWin *Info, size_t Len, const tWidgetMsg_Create *Msg) +tElement *Widget_int_Create(tWidgetWin *Info, tElement *Parent, int ID, int Type, int Flags) { - const int max_debugname_len = Len - sizeof(tWidgetMsg_Create); - tElement *parent, *new; - - // Sanity check - if( Len < sizeof(*Msg) ) - return ; - if( strnlen(Msg->DebugName, max_debugname_len) == max_debugname_len ) - return ; - - _SysDebug("Widget_NewWidget (%i %i Type %i Flags 0x%x)", - Msg->Parent, Msg->NewID, Msg->Type, Msg->Flags); - - // Create - parent = Widget_GetElementById(Info, Msg->Parent); - if(!parent) - { - _SysDebug("Widget_NewWidget - Bad parent ID %i", Msg->Parent); - return ; - } - - // Check if the ID is already in use - if( Widget_GetElementById(Info, Msg->NewID) ) - return ; + if( Widget_GetElementById(Info, ID) ) + return NULL; // Create new element - new = calloc(sizeof(tElement), 1); - new->Window = parent->Window; - new->ID = Msg->NewID; - new->Type = Msg->Type; - new->Parent = parent; - new->Flags = Msg->Flags; + tElement *new = calloc(sizeof(tElement), 1); + new->Window = Parent->Window; + new->ID = ID; + new->Type = Type; + new->Parent = Parent; + new->Flags = Flags; new->PaddingT = 2; new->PaddingB = 2; new->PaddingL = 2; new->PaddingR = 2; new->CachedX = -1; - if( new->Type < ciWM_NumWidgetTypes && gaWM_WidgetTypes[new->Type] && gaWM_WidgetTypes[new->Type]->Init ) - gaWM_WidgetTypes[new->Type]->Init(new); + if( gaWM_WidgetTypes[Type]->Init ) + gaWM_WidgetTypes[Type]->Init(new); // Add to parent's list - if(parent->LastChild) - parent->LastChild->NextSibling = new; + if(Parent->LastChild) + Parent->LastChild->NextSibling = new; else - parent->FirstChild = new; - parent->LastChild = new; + Parent->FirstChild = new; + Parent->LastChild = new; // Add to info { @@ -462,55 +475,143 @@ void Widget_NewWidget(tWidgetWin *Info, size_t Len, const tWidgetMsg_Create *Msg else Info->ElementTable[new->ID % Info->TableSize] = new; } + + return new; +} + +void Widget_SetFocus(tWidgetWin *Info, tElement *Ele) +{ + // TODO: Callbacks + + Info->FocusedElement = Ele; +} + + +// --- Message Handlers --- +int Widget_IPC_Create(tWindow *Win, size_t Len, const void *Data) +{ + tWidgetWin *Info = Win->RendererInfo; + const tWidgetIPC_Create *Msg = Data; + const int max_debugname_len = Len - sizeof(*Msg); + tElement *parent; + + // Sanity check + if( Len < sizeof(*Msg) ) + return -1; + if( strnlen(Msg->DebugName, max_debugname_len) == max_debugname_len ) + return -1; + + _SysDebug("Widget_NewWidget (%i %i Type %i Flags 0x%x)", + Msg->Parent, Msg->NewID, Msg->Type, Msg->Flags); + + if(Msg->Type >= ciWM_NumWidgetTypes) + { + _SysDebug("Widget_NewWidget - Bad widget type %i", Msg->Type); + return 1; + } + + // Create + parent = Widget_GetElementById(Info, Msg->Parent); + if(!parent) + { + _SysDebug("Widget_NewWidget - Bad parent ID %i", Msg->Parent); + return 1; + } + + Widget_int_Create(Info, parent, Msg->NewID, Msg->Type, Msg->Flags); + + Widget_UpdateMinDims(parent); + return 0; +} +int Widget_IPC_NewWidgetSubwin(tWindow *Win, size_t Len, const void *Data) +{ + tWidgetWin *Info = Win->RendererInfo; + const tWidgetIPC_CreateSubWin *Msg = Data; + const int max_debugname_len = Len - sizeof(*Msg); + tElement *parent, *new; + + // Sanity check + if( Len < sizeof(*Msg) ) + return -1; + if( strnlen(Msg->DebugName, max_debugname_len) == max_debugname_len ) + return -1; + + parent = Widget_GetElementById(Info, Msg->Parent); + if(!parent) return 1; + if( Widget_GetElementById(Info, Msg->NewID) ) return 1; + + new = Widget_int_Create(Info, parent, Msg->NewID, Msg->Type, Msg->Flags); + new->Data = WM_GetWindowByID(parent->Window, Msg->WindowHandle); Widget_UpdateMinDims(parent); + return 0; } -void Widget_SetFlags(tWidgetWin *Info, int Len, const tWidgetMsg_SetFlags *Msg) +// TODO: Widget_IPC_Delete + +int Widget_IPC_SetFocus(tWindow *Win, size_t Len, const void *Data) +{ + tWidgetWin *info = Win->RendererInfo; + tElement *ele; + const tWidgetIPC_SetFocus *msg = Data; + if(Len < sizeof(*msg)) return -1; + + ele = Widget_GetElementById(info, msg->WidgetID); + Widget_SetFocus(info, ele); + return 0; +} + +int Widget_IPC_SetFlags(tWindow *Win, size_t Len, const void *Data) { + tWidgetWin *Info = Win->RendererInfo; + const tWidgetIPC_SetFlags *Msg = Data; tElement *ele; if( Len < sizeof(*Msg) ) - return ; + return -1; _SysDebug("Widget_SetFlags: (%i 0x%x 0x%x)", Msg->WidgetID, Msg->Value, Msg->Mask); ele = Widget_GetElementById(Info, Msg->WidgetID); - if(!ele) return; + if(!ele) return 1; ele->Flags &= ~Msg->Mask; ele->Flags |= Msg->Value & Msg->Mask; + + return 0; } -void Widget_SetSize(tWidgetWin *Info, int Len, const tWidgetMsg_SetSize *Msg) +int Widget_IPC_SetSize(tWindow *Win, size_t Len, const void *Data) { + tWidgetWin *Info = Win->RendererInfo; + const tWidgetIPC_SetSize *Msg = Data; tElement *ele; if( Len < sizeof(*Msg) ) - return ; + return -1; ele = Widget_GetElementById(Info, Msg->WidgetID); - if(!ele) return ; + if(!ele) return 1; ele->FixedWith = Msg->Value; + return 0; } -void Widget_SetText(tWidgetWin *Info, int Len, const tWidgetMsg_SetText *Msg) +int Widget_IPC_SetText(tWindow *Win, size_t Len, const void *Data) { + tWidgetWin *Info = Win->RendererInfo; + const tWidgetIPC_SetText *Msg = Data; tElement *ele; if( Len < sizeof(*Msg) + 1 ) - return ; + return -1; if( Msg->Text[Len - sizeof(*Msg) - 1] != '\0' ) - return ; + return -1; ele = Widget_GetElementById(Info, Msg->WidgetID); - if(!ele) return ; - + if(!ele) return 1; - if( ele->Type < ciWM_NumWidgetTypes - && gaWM_WidgetTypes[ele->Type] - && gaWM_WidgetTypes[ele->Type]->UpdateText ) + if( gaWM_WidgetTypes[ele->Type]->UpdateText ) { gaWM_WidgetTypes[ele->Type]->UpdateText( ele, Msg->Text ); } @@ -519,11 +620,41 @@ void Widget_SetText(tWidgetWin *Info, int Len, const tWidgetMsg_SetText *Msg) // if(ele->Text) free(ele->Text); // ele->Text = strdup(Msg->Text); // } + return 0; +} + +int Widget_IPC_GetText(tWindow *Win, size_t Len, const void *Data) +{ + tWidgetWin *Info = Win->RendererInfo; + const tWidgetIPC_SetText *Msg = Data; + if( Len < sizeof(*Msg) ) + return -1; + + const char *text = NULL; + tElement *ele = Widget_GetElementById(Info, Msg->WidgetID); + if(ele) + text = ele->Text; + + char buf[sizeof(tWidgetIPC_SetText) + strlen(text?text:"") + 1]; + tWidgetIPC_SetText *omsg = (void*)buf; + + if( text ) { + omsg->WidgetID = Msg->WidgetID; + strcpy(omsg->Text, text); + } + else { + omsg->WidgetID = -1; + omsg->Text[0] = 0; + } + + WM_SendIPCReply(Win, IPC_WIDGET_GETTEXT, sizeof(buf), buf); + return 0; } int Renderer_Widget_HandleMessage(tWindow *Target, int Msg, int Len, const void *Data) { tWidgetWin *info = Target->RendererInfo; + tElement *ele; switch(Msg) { case WNDMSG_RESIZE: { @@ -544,7 +675,6 @@ int Renderer_Widget_HandleMessage(tWindow *Target, int Msg, int Len, const void case WNDMSG_MOUSEBTN: { const struct sWndMsg_MouseButton *msg = Data; tWidgetMsg_MouseBtn client_msg; - tElement *ele; int x, y; int rv; @@ -555,12 +685,11 @@ int Renderer_Widget_HandleMessage(tWindow *Target, int Msg, int Len, const void client_msg.bPressed = msg->bPressed; ele = Widget_GetElementByPos(info, x, y); + Widget_SetFocus(info, ele); // Send event to all elements from `ele` upwards for( ; ele; ele = ele->Parent ) { - if(ele->Type < ciWM_NumWidgetTypes - && gaWM_WidgetTypes[ele->Type] - && gaWM_WidgetTypes[ele->Type]->MouseButton) + if(gaWM_WidgetTypes[ele->Type]->MouseButton) { rv = gaWM_WidgetTypes[ele->Type]->MouseButton( ele, @@ -581,30 +710,52 @@ int Renderer_Widget_HandleMessage(tWindow *Target, int Msg, int Len, const void } return 0; } - // New Widget - case MSG_WIDGET_CREATE: - Widget_NewWidget(info, Len, Data); - return 0; + case WNDMSG_KEYDOWN: { + const struct sWndMsg_KeyAction *msg = Data; + if(Len < sizeof(*msg)) return -1; + + if(!info->FocusedElement) return 0; + ele = info->FocusedElement; - case MSG_WIDGET_DELETE: - _SysDebug("TODO: Implement MSG_WIDGET_DELETE"); - return 0; + if(gaWM_WidgetTypes[ele->Type]->KeyDown) + gaWM_WidgetTypes[ele->Type]->KeyDown(ele, msg->KeySym, msg->UCS32); + else + { + // TODO: Pass to user + } - // Set Flags - case MSG_WIDGET_SETFLAGS: - Widget_SetFlags(info, Len, Data); - return 0; - - // Set length - case MSG_WIDGET_SETSIZE: - Widget_SetSize(info, Len, Data); - return 0; + return 0; } - // Set text - case MSG_WIDGET_SETTEXT: - Widget_SetText(info, Len, Data); - return 0; + case WNDMSG_KEYFIRE: { + const struct sWndMsg_KeyAction *msg = Data; + if(Len < sizeof(*msg)) return -1; + + if(!info->FocusedElement) return 0; + ele = info->FocusedElement; + + if(gaWM_WidgetTypes[ele->Type]->KeyFire) + gaWM_WidgetTypes[ele->Type]->KeyFire(ele, msg->KeySym, msg->UCS32); + else + { + // TODO: Pass the buck + } + return 0; } + case WNDMSG_KEYUP: { + const struct sWndMsg_KeyAction *msg = Data; + if(Len < sizeof(*msg)) return -1; + + if(!info->FocusedElement) return 0; + ele = info->FocusedElement; + + if(gaWM_WidgetTypes[ele->Type]->KeyUp) + gaWM_WidgetTypes[ele->Type]->KeyUp(ele, msg->KeySym); + else + { + // TODO: Pass the buck + } + return 0; } + // default: return 1; // Unhandled, pass to user @@ -615,6 +766,7 @@ void Widget_Fire(tElement *Element) { tWidgetMsg_Fire msg; msg.WidgetID = Element->ID; + _SysDebug("Widget_Fire: Fire on %p %i", Element->Window, Element->ID); WM_SendMessage(Element->Window, Element->Window, MSG_WIDGET_FIRE, sizeof(msg), &msg); }