X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2Finclude%2Fwidget_messages.h;h=0a4b2505f03e758f69a9c39153465a1bdacf7aa0;hb=06b7785db75c00e02705977d77685972831d070e;hp=e4f09ed61dc70c5df21cd116e7e6b82b2b0bbf38;hpb=f42e912b8bc615c2009b795ce12d4c54cef4ee8b;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/include/widget_messages.h b/Usermode/Applications/axwin3_src/include/widget_messages.h index e4f09ed6..0a4b2505 100644 --- a/Usermode/Applications/axwin3_src/include/widget_messages.h +++ b/Usermode/Applications/axwin3_src/include/widget_messages.h @@ -10,9 +10,23 @@ enum { - MSG_WIDGET_CREATE, + // Control (Client->Server) messages + MSG_WIDGET_CREATE = 0x1000, MSG_WIDGET_DELETE, - MSG_WIDGET_SETTEXT + MSG_WIDGET_SETFOCUS, + MSG_WIDGET_SETFLAGS, + MSG_WIDGET_SETSIZE, + MSG_WIDGET_SETTEXT, + MSG_WIDGET_SETCOLOUR, + + + // Request (Client->Server->Client) messages + MSG_WIDGET_GETTEXT, + + // Event (Server->Client) messages + MSG_WIDGET_FIRE, + MSG_WIDGET_KEYPRESS, + MSG_WIDGET_MOUSEBTN, }; @@ -20,8 +34,67 @@ typedef struct { uint32_t Parent; uint32_t NewID; + uint32_t Type; + uint32_t Flags; char DebugName[]; } tWidgetMsg_Create; +typedef struct +{ + uint32_t WidgetID; +} tWidgetMsg_Delete; + +typedef struct +{ + uint32_t WidgetID; +} tWidgetMsg_SetFocus; + +typedef struct +{ + uint32_t WidgetID; + uint32_t Value; + uint32_t Mask; +} tWidgetMsg_SetFlags; + +typedef struct +{ + uint32_t WidgetID; + uint32_t Value; +} tWidgetMsg_SetSize; + +typedef struct +{ + uint32_t WidgetID; + char Text[]; +} tWidgetMsg_SetText; + +typedef struct +{ + uint32_t WidgetID; + uint32_t Index; + uint32_t Colour; +} tWidgetMsg_SetColour; + +typedef struct +{ + uint32_t WidgetID; +} tWidgetMsg_Fire; + +typedef struct +{ + uint32_t WidgetID; + uint32_t KeySym; + uint32_t Character; +} tWidgetMsg_KeyEvent; + +typedef struct +{ + uint32_t WidgetID; + uint16_t X; + uint16_t Y; + uint8_t Button; + uint8_t bPressed; +} tWidgetMsg_MouseBtn; + #endif