Usermode/AxWin3 - Decorator resize and close, misc fixes
[tpg/acess2.git] / Usermode / Applications / axwin3_src / libaxwin3.so_src / wm.c
1 /*
2  * AxWin3 Interface Library
3  * - By John Hodge (thePowersGang)
4  *
5  * wm.c
6  * - Core window management functions
7  */
8 #include <axwin3/axwin.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include "include/internal.h"
12 #include "include/ipc.h"
13 #include <wm_messages.h>
14
15 #define WINDOWS_PER_ALLOC       (64-1)  // -1 to make it 64 pointers (+ Next)
16 #define MAX_HOTKEYS     32
17
18 typedef struct sWindowBlock     tWindowBlock;
19
20 typedef struct sAxWin3_Window   tWindow;
21
22 // === STRUCTURES ===
23 struct sWindowBlock
24 {
25         tWindowBlock    *Next;
26         tWindow *Windows[WINDOWS_PER_ALLOC];
27 };
28
29 // === GLOBALS ===
30  int    giAxWin3_LowestFreeWinID;
31  int    giAxWin3_HighestUsedWinID;
32 tWindowBlock    gAxWin3_WindowList;
33 tAxWin3_HotkeyCallback  gAxWin3_Hotkeys[MAX_HOTKEYS];
34
35 // === CODE ===
36 tWindow *AxWin3_int_CreateWindowStruct(uint32_t ServerID, int ExtraBytes)
37 {
38         tWindow *ret;
39         
40         ret = calloc(sizeof(tWindow) + ExtraBytes, 1);
41         ret->ServerID = ServerID;
42
43         return ret;
44 }
45
46 tWindow *AxWin3_int_GetWindowFromID(uint32_t ServerID)
47 {
48         tWindowBlock    *block = &gAxWin3_WindowList;
49         while(block && ServerID > WINDOWS_PER_ALLOC) {
50                 block = block->Next;
51                 ServerID -= WINDOWS_PER_ALLOC;
52         }
53         if(!block)      return NULL;
54         return block->Windows[ServerID];
55 }
56
57 tWindow *AxWin3_int_AllocateWindowInfo(int DataBytes, int *WinID)
58 {
59          int    idx, newWinID;
60         tWindowBlock *block, *prev = NULL;
61         tWindow *ret;   
62
63         block = &gAxWin3_WindowList;
64         newWinID = giAxWin3_LowestFreeWinID;
65         for( idx = 0; block; newWinID ++ )
66         {
67                 if( block->Windows[idx] == NULL )
68                         break;
69                 idx ++;
70                 if(idx == WINDOWS_PER_ALLOC) {
71                         prev = block;
72                         block = block->Next;
73                         idx = 0;
74                 }
75         }
76         
77         if( !block )
78         {
79                 block = calloc(sizeof(tWindowBlock), 1);
80                 prev->Next = block;
81                 idx = 0;
82         }
83         
84         ret = block->Windows[idx] = AxWin3_int_CreateWindowStruct(newWinID, DataBytes);
85         if(newWinID > giAxWin3_HighestUsedWinID)
86                 giAxWin3_HighestUsedWinID = newWinID;
87         if(newWinID == giAxWin3_LowestFreeWinID)
88                 giAxWin3_HighestUsedWinID ++;
89
90         if(WinID)       *WinID = newWinID;
91
92         return ret;
93 }
94
95 int AxWin3_GetDisplayCount(void)
96 {
97         tAxWin_IPCMessage       *msg;
98         tIPCMsg_ReturnInt       *ret;
99          int    rv;
100         
101         msg = AxWin3_int_AllocateIPCMessage(NULL, IPCMSG_GETDISPLAYCOUNT, IPCMSG_FLAG_RETURN, 0);
102         AxWin3_int_SendIPCMessage(msg);
103         free(msg);      
104
105         msg = AxWin3_int_WaitIPCMessage(IPCMSG_GETDISPLAYCOUNT);
106         if(msg->Size < sizeof(*ret))    return -1;
107         ret = (void*)msg->Data;
108         rv = ret->Value;
109         free(msg);
110         return rv;
111 }
112
113 int AxWin3_GetDisplayDims(int Display, int *X, int *Y, int *Width, int *Height)
114 {
115         tAxWin_IPCMessage       *msg;
116         tIPCMsg_GetDisplayDims  *req;
117         tIPCMsg_RetDisplayDims  *ret;
118         
119         msg = AxWin3_int_AllocateIPCMessage(NULL, IPCMSG_GETDISPLAYDIMS, IPCMSG_FLAG_RETURN, sizeof(*req));
120         req = (void*)msg->Data;
121         req->DisplayID = Display;
122         AxWin3_int_SendIPCMessage(msg);
123         free(msg);
124
125         msg = AxWin3_int_WaitIPCMessage(IPCMSG_GETDISPLAYDIMS);
126         if(msg->Size < sizeof(*ret))    return -1;
127         ret = (void*)msg->Data;
128         
129         if(X)   *X = ret->X;
130         if(Y)   *Y = ret->Y;
131         if(Width)       *Width = ret->W;
132         if(Height)      *Height = ret->H;
133         
134         return 0;
135 }
136
137 tHWND AxWin3_CreateWindow(
138         tHWND Parent, const char *Renderer, int RendererArg,
139         int DataBytes, tAxWin3_WindowMessageHandler MessageHandler
140         )
141 {
142         tWindow *ret;
143          int    newWinID;
144          int    dataSize = sizeof(tIPCMsg_CreateWin) + strlen(Renderer) + 1;
145         tAxWin_IPCMessage       *msg;
146         tIPCMsg_CreateWin       *create_win;
147
148         // Allocate a window ID
149         ret = AxWin3_int_AllocateWindowInfo(DataBytes, &newWinID);
150         if(!ret)        return NULL;
151         ret->Handler = MessageHandler;
152
153         // Create message
154         msg = AxWin3_int_AllocateIPCMessage(Parent, IPCMSG_CREATEWIN, 0, dataSize);
155         create_win = (void*)msg->Data;  
156         create_win->NewWinID = newWinID;
157         create_win->RendererArg = RendererArg;
158         strcpy(create_win->Renderer, Renderer);
159
160         // Send and clean up
161         AxWin3_int_SendIPCMessage(msg);
162         free(msg);
163
164         _SysDebug("AxWin3_CreateWindow: %i :: '%s'", newWinID, Renderer);
165
166         // TODO: Detect and handle possible errors
167
168         // Return success
169         return ret;
170 }
171
172 void AxWin3_DestroyWindow(tHWND Window)
173 {
174         tAxWin_IPCMessage       *msg;
175         
176         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_DESTROYWIN, 0, 0);
177         AxWin3_int_SendIPCMessage(msg);
178         free(msg);
179 }
180
181 void *AxWin3_int_GetDataPtr(tHWND Window)
182 {
183         return Window->Data;
184 }
185
186 void AxWin3_int_HandleMessage(tAxWin_IPCMessage *Msg)
187 {
188         tWindow *dest;
189
190         dest = AxWin3_int_GetWindowFromID(Msg->Window);
191
192         switch(Msg->ID)
193         {
194         case IPCMSG_SENDMSG: {
195                 tIPCMsg_SendMsg *info = (void*)Msg->Data;
196                 if(Msg->Size < sizeof(*info) || Msg->Size < sizeof(*info) + info->Length) {
197                         _SysDebug("Message is undersized (%i < %i + %i)",
198                                 Msg->Size < sizeof(*info), info->Length);
199                         return ;
200                 }
201                 if(!dest || !dest->Handler) {
202                         _SysDebug("No handler for destination %p", dest);
203                         return ;
204                 }
205                 _SysDebug("IPC Message 0x%x - %i bytes", info->ID, info->Length);
206
207                 if( dest->Handler(dest, info->ID, info->Length, info->Data) )
208                         ;
209                 else {
210                         switch( info->ID )
211                         {
212                         case WNDMSG_HOTKEY: {
213                                 const struct sWndMsg_Hotkey *mi = (void*)info->Data;
214                                 if( mi->ID >= MAX_HOTKEYS ) 
215                                         ;       // TODO: Error when hotkey is out of range
216                                 else if( gAxWin3_Hotkeys[mi->ID] == 0 )
217                                         _SysDebug("--- Unmapped hotkey ID %i fired", mi->ID);
218                                 else
219                                         gAxWin3_Hotkeys[mi->ID]();
220                                 }break;
221                         default:
222                                 _SysDebug("--- Unhandled SENDMSG 0x%x win %i", info->ID, Msg->Window);
223                                 break;
224                         }
225                 }
226                 break; }
227         case IPCMSG_DESTROYWIN:
228                 // Clean up resources associated with this window
229                 break;
230         default:
231                 _SysDebug("Unknow message ID %i", Msg->ID);
232                 break;
233         }
234         
235         free(Msg);
236 }
237
238 void AxWin3_SetWindowTitle(tHWND Window, const char *Title)
239 {
240         tAxWin_IPCMessage       *msg;
241          int    len = strlen(Title);
242         
243         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINTITLE, 0, len+1);
244         strcpy(msg->Data, Title);
245         
246         AxWin3_int_SendIPCMessage(msg);
247         
248         free(msg);
249 }
250
251 void AxWin3_SendMessage(tHWND Window, tHWND Destination, int Message, int Length, void *Data)
252 {
253         tAxWin_IPCMessage       *msg;
254         tIPCMsg_SendMsg *info;
255         
256         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SENDMSG, 0, sizeof(*info)+Length);
257         info = (void*)msg->Data;
258         info->Remote = AxWin3_int_GetWindowID(Destination);
259         info->ID = Message;
260         info->Length = Length;
261         memcpy(info->Data, Data, Length);
262         
263         AxWin3_int_SendIPCMessage(msg);
264         free(msg);
265 }
266
267 void *AxWin3_WaitMessage(tHWND Window, int MessageID, size_t *Length)
268 {
269         tAxWin_IPCMessage       *msg;
270         
271         for( ;; )
272         {
273                 msg = AxWin3_int_WaitIPCMessage(IPCMSG_SENDMSG);
274                 if( msg->Window != AxWin3_int_GetWindowID(Window) ) {
275                         AxWin3_int_HandleMessage(msg);
276                         continue ;
277                 }
278                 tIPCMsg_SendMsg *info = (void*)msg->Data;
279                 if( info->ID != MessageID ) {
280                         AxWin3_int_HandleMessage(msg);
281                         continue ;
282                 }
283
284                 *Length = info->Length;
285                 void    *ret = malloc(info->Length);    
286                 memcpy(ret, info->Data, info->Length);
287                 free(msg);
288         
289                 return ret;
290         }
291 }
292
293 void AxWin3_SendIPC(tHWND Window, int Message, size_t Length, const void *Data)
294 {
295         tAxWin_IPCMessage       *msg;
296         
297         msg = AxWin3_int_AllocateIPCMessage(Window, Message, IPCMSG_FLAG_RENDERER, Length);
298         memcpy(msg->Data, Data, Length);
299         AxWin3_int_SendIPCMessage(msg);
300         free(msg);
301 }
302
303 void *AxWin3_WaitIPCMessage(tHWND Window, int MessageID, size_t *Length)
304 {
305         tAxWin_IPCMessage       *msg;
306         for( ;; )
307         {
308                 msg = AxWin3_int_WaitIPCMessage(MessageID);
309                 if( !(msg->Flags & IPCMSG_FLAG_RENDERER) || msg->Window != AxWin3_int_GetWindowID(Window) ) {
310                         AxWin3_int_HandleMessage(msg);
311                         continue ;
312                 }
313
314                 *Length = msg->Size;
315                 void    *ret = malloc(msg->Size);
316                 memcpy(ret, msg->Data, msg->Size);
317                 free(msg);
318         
319                 return ret;
320         }
321 }
322
323 void AxWin3_FocusWindow(tHWND Window)
324 {
325         tAxWin_IPCMessage       *msg;
326         
327         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_FOCUSWINDOW, 0, 0);
328         
329         AxWin3_int_SendIPCMessage(msg);
330         free(msg);
331 }
332
333 void AxWin3_ShowWindow(tHWND Window, int bShow)
334 {
335         tAxWin_IPCMessage       *msg;
336         tIPCMsg_Boolean *info;
337
338         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SHOWWINDOW, 0, sizeof(*info));
339         info = (void*)msg->Data;
340         info->Value = !!bShow;
341         
342         AxWin3_int_SendIPCMessage(msg);
343         
344         free(msg);
345 }
346
347 void AxWin3_DecorateWindow(tHWND Window, int bDecorate)
348 {
349         tAxWin_IPCMessage       *msg;
350         tIPCMsg_Boolean *info;
351
352         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_DECORATEWINDOW, 0, sizeof(*info));
353         info = (void*)msg->Data;
354         info->Value = !!bDecorate;
355         
356         AxWin3_int_SendIPCMessage(msg);
357         
358         free(msg);
359 }
360
361 void AxWin3_SetWindowPos(tHWND Window, short X, short Y, short W, short H)
362 {
363         tAxWin_IPCMessage       *msg;
364         tIPCMsg_SetWindowPos    *info;
365         
366         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINPOS, 0, sizeof(*info));
367         info = (void*)msg->Data;
368
369         info->bSetPos = 1;
370         info->bSetDims = 1;
371         info->X = X;    info->Y = Y;
372         info->W = W;    info->H = H;
373
374         AxWin3_int_SendIPCMessage(msg); 
375         free(msg);
376 }
377
378 void AxWin3_MoveWindow(tHWND Window, short X, short Y)
379 {
380         tAxWin_IPCMessage       *msg;
381         tIPCMsg_SetWindowPos    *info;
382         
383         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINPOS, 0, sizeof(*info));
384         info = (void*)msg->Data;
385
386         info->bSetPos = 1;
387         info->bSetDims = 0;
388         info->X = X;
389         info->Y = Y;
390         
391         AxWin3_int_SendIPCMessage(msg);
392         
393         free(msg);
394 }
395
396 void AxWin3_ResizeWindow(tHWND Window, short W, short H)
397 {
398         tAxWin_IPCMessage       *msg;
399         tIPCMsg_SetWindowPos    *info;
400         
401         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINPOS, 0, sizeof(*info));
402         info = (void*)msg->Data;
403
404         info->bSetPos = 0;
405         info->bSetDims = 1;
406         info->W = W;
407         info->H = H;
408         
409         AxWin3_int_SendIPCMessage(msg);
410         
411         free(msg);
412 }
413
414 int AxWin3_RegisterAction(tHWND Window, const char *Action, tAxWin3_HotkeyCallback cb)
415 {
416          int    i;
417         for( i = 0; i < MAX_HOTKEYS; i ++ )
418         {
419                 if( gAxWin3_Hotkeys[i] == NULL )
420                 {
421                         tAxWin_IPCMessage       *msg;
422                         struct sIPCMsg_RegAction        *info;
423                         gAxWin3_Hotkeys[i] = cb;
424                         
425                         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_REGACTION, 0, sizeof(*info)+strlen(Action)+1);
426                         info = (void*)msg->Data;
427                 
428                         info->Index = i;
429                         strcpy(info->Action, Action);
430                         
431                         AxWin3_int_SendIPCMessage(msg);
432                         free(msg);
433                         return i;
434                 }
435         }
436         return -1;
437 }
438

UCC git Repository :: git.ucc.asn.au