X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2FWM%2Finclude%2Fwm_internals.h;h=45769e80f58c2a760c1173e9bd8b2b4ab819f8d2;hb=76e7cd79e42c40a63c4a9a18dc774da2c44fdb6d;hp=9b3c7f08fd0b2d557b8a360eecab518df5c175a9;hpb=086346323aae470047d375a12104872c899056d6;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/WM/include/wm_internals.h b/Usermode/Applications/axwin3_src/WM/include/wm_internals.h index 9b3c7f08..45769e80 100644 --- a/Usermode/Applications/axwin3_src/WM/include/wm_internals.h +++ b/Usermode/Applications/axwin3_src/WM/include/wm_internals.h @@ -12,26 +12,38 @@ struct sWindow { - tWindow *NextSibling; - tWindow *PrevSibling; + tWindow *Owner; // Render tree tWindow *Parent; tWindow *FirstChild; tWindow *LastChild; + tWindow *NextSibling; + tWindow *PrevSibling; tIPC_Client *Client; uint32_t ID; //!< Client assigned ID + tWMRenderer *Renderer; + void *RendererInfo; + + char *Title; int Flags; - - int X; - int Y; - int W; - int H; - void *RendererInfo; + // Text Cursor + int CursorX, CursorY; + int CursorW, CursorH; + + // Gutter sizes (cached from decorator) + int BorderL, BorderR; + int BorderT, BorderB; + + // Position and dimensions + int X, Y; + int W, H; + int RealX, RealY; + int RealW, RealH; void *RenderBuffer; //!< Cached copy of the rendered window };