X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin2_src%2FWM%2Fwm.h;h=5977fd689a3459b6834c58350955d7a1b5c3d31e;hb=94c9ee44d701154379842425b5ee0826995e000e;hp=8de9e206e6925ca43c157173a7c9068fc9131b03;hpb=ad2ec62655e1d6eb8f2b4a4684eb5d7952aea0fb;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin2_src/WM/wm.h b/Usermode/Applications/axwin2_src/WM/wm.h index 8de9e206..5977fd68 100644 --- a/Usermode/Applications/axwin2_src/WM/wm.h +++ b/Usermode/Applications/axwin2_src/WM/wm.h @@ -7,35 +7,49 @@ #include #include "common.h" +/** + * \brief Number of elements that can be owned by each application + */ +// TODO: Fine tune these values +#define MAX_ELEMENTS_PER_APP 1024 +#define DEFAULT_ELEMENTS_PER_APP 128 + typedef struct sAxWin_Element tElement; -typedef struct sTab tTab; +typedef struct sMenuItem tMenuItem; +typedef struct sWindow tWindow; typedef struct sApplication tApplication; struct sAxWin_Element { - int Type; + enum eElementTypes Type; + // Element Tree tElement *Parent; tElement *FirstChild; tElement *LastChild; tElement *NextSibling; + // Application + tApplication *Owner; //!< Owning application + uint16_t ApplicationID; //!< Index into sApplication::EleIndex + + // User modifiable attributes short PaddingL, PaddingR; short PaddingT, PaddingB; short GapSize; - short FixedWith; // Fixed Long Size attribute (height) - short FixedCross; // Fixed Cross Size attribute (width) + uint32_t Flags; + + short FixedWith; //!< Fixed lengthways Size attribute (height) + short FixedCross; //!< Fixed Cross Size attribute (width) char *Text; // -- Attributes maitained by the element code // Not touched by the user - short MinWith; // Minimum long size - short MinCross; // Minimum cross size - void *Data; - - uint32_t Flags; + short MinWith; //!< Minimum long size + short MinCross; //!< Minimum cross size + void *Data; //!< Per-type data // -- Render Cache short CachedX, CachedY; @@ -44,32 +58,52 @@ struct sAxWin_Element char DebugName[]; }; -struct sTab +struct sMenuItem { - int Type; // Should be zero, allows a tab to be the parent of an element + tMenuItem *Next; + int Flags; + int ID; //!< ID number sent to application + const char *Label; + const char *Right; + tMenuItem *FirstChild; +}; + +struct sWindow +{ + int X, Y, W, H; + void *Icon; - tElement *Parent; - tElement *FirstChild; - tElement *LastChild; - tTab *NextTab; + tApplication *App; - char *Name; + tWindow *OrderNext; // Render order - tElement *RootElement; + tMenuItem *Menus; + + tElement RootElement; }; struct sApplication { - tApplication *Next; + tApplication *Next; - void *Ident; - tMessages_Handle_Callback *SendMessage; + tIPC_Type *IPCType; + void *Ident; //!< Client Identifier + + char *Name; //!< Application name - int nTabs; - tTab *Tabs; - tTab *CurrentTab; + int MaxElementIndex; //!< Number of entries in \a EleIndex + tElement **EleIndex; //!< Array of pointers to elements owned by this application - char Name[]; + tElement MetaElement; //!< Tabs child off this }; +// === FUNCTIONS === + +// --- Render +extern void WM_UpdateMinDims(tElement *Element); +extern void WM_UpdateDimensions(tElement *Element, int Pass); +extern void WM_UpdatePosition(tElement *Element); +extern void WM_RenderWidget(tElement *Element); +extern void WM_Update(void); + #endif