2 * Acess2 Window Manager v3 (axwin3)
3 * - By John Hodge (thePowersGang)
6 * - Window management functions
17 #define WINFLAG_SHOW 0x00000001
18 //! Window contents are valid
19 #define WINFLAG_CLEAN 0x00000002
20 //! All child windows are un-changed
21 #define WINFLAG_CHILDCLEAN 0x00000004
23 #define WINFLAG_RENDER_MASK 0x00FFFF00
24 #define WINFLAG_USR_MASK 0xFF000000
30 typedef struct sWindow tWindow;
31 typedef struct sWMRenderer tWMRenderer;
32 typedef uint32_t tColour;
36 extern tWindow *WM_CreateWindow(tWindow *Parent, int Flags, const char *Renderer);
37 extern void WM_Invalidate(tWindow *Window);
38 extern void WM_ShowWindow(tWindow *Window, int bShow);
39 extern int WM_ResizeWindow(tWindow *Window, int W, int H);
40 extern int WM_MoveWindow(tWindow *Window, int X, int Y);
41 extern int WM_SendMessage(tWindow *Window, int MessageID, int Length, void *Data);
43 extern void WM_Render_FilledRect(tWindow *Window, tColour Colour, int X, int Y, int W, int H);