Merge branch 'master' of git://localhost/acess2
[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(X)   *X = 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         // TODO: Detect and handle possible errors
165
166         // Return success
167         return ret;
168 }
169
170 void AxWin3_DestroyWindow(tHWND Window)
171 {
172         tAxWin_IPCMessage       *msg;
173         
174         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_DESTROYWIN, 0, 0);
175         AxWin3_int_SendIPCMessage(msg);
176         free(msg);
177 }
178
179 void *AxWin3_int_GetDataPtr(tHWND Window)
180 {
181         return Window->Data;
182 }
183
184 void AxWin3_int_HandleMessage(tAxWin_IPCMessage *Msg)
185 {
186         tWindow *dest;
187
188         dest = AxWin3_int_GetWindowFromID(Msg->Window);
189
190         switch(Msg->ID)
191         {
192         case IPCMSG_SENDMSG: {
193                 tIPCMsg_SendMsg *info = (void*)Msg->Data;
194                 if(Msg->Size < sizeof(*info) || Msg->Size < sizeof(*info) + info->Length) {
195                         _SysDebug("Message is undersized (%i < %i + %i)",
196                                 Msg->Size < sizeof(*info), info->Length);
197                         return ;
198                 }
199                 if(!dest || !dest->Handler) {
200                         _SysDebug("No handler for destination %p", dest);
201                         return ;
202                 }
203                 _SysDebug("IPC Message 0x%x - %i bytes", info->ID, info->Length);
204
205                 if( dest->Handler(dest, info->ID, info->Length, info->Data) )
206                         ;
207                 else {
208                         switch( info->ID )
209                         {
210                         case WNDMSG_HOTKEY: {
211                                 const struct sWndMsg_Hotkey *mi = (void*)info->Data;
212                                 if( mi->ID >= MAX_HOTKEYS ) 
213                                         ;       // TODO: Error when hotkey is out of range
214                                 else if( gAxWin3_Hotkeys[mi->ID] == 0 )
215                                         _SysDebug("--- Unmapped hotkey ID %i fired", mi->ID);
216                                 else
217                                         gAxWin3_Hotkeys[mi->ID]();
218                                 }break;
219                         default:
220                                 _SysDebug("--- Unhandled SENDMSG %i", info->ID);
221                                 break;
222                         }
223                 }
224                 break; }
225         default:
226                 _SysDebug("Unknow message ID %i", Msg->ID);
227                 break;
228         }
229 }
230
231 void AxWin3_SetWindowTitle(tHWND Window, const char *Title)
232 {
233         tAxWin_IPCMessage       *msg;
234          int    len = strlen(Title);
235         
236         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINTITLE, 0, len+1);
237         strcpy(msg->Data, Title);
238         
239         AxWin3_int_SendIPCMessage(msg);
240         
241         free(msg);
242 }
243
244 void AxWin3_SendMessage(tHWND Window, tHWND Destination, int Message, int Length, void *Data)
245 {
246         tAxWin_IPCMessage       *msg;
247         tIPCMsg_SendMsg *info;
248         
249         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SENDMSG, 0, sizeof(*info)+Length);
250         info = (void*)msg->Data;
251         info->Remote = AxWin3_int_GetWindowID(Destination);
252         info->ID = Message;
253         info->Length = Length;
254         memcpy(info->Data, Data, Length);
255         
256         AxWin3_int_SendIPCMessage(msg);
257         free(msg);
258 }
259
260 void *AxWin3_WaitMessage(tHWND Window, int MessageID, size_t *Length)
261 {
262         tAxWin_IPCMessage       *msg;
263         
264         for( ;; )
265         {
266                 msg = AxWin3_int_WaitIPCMessage(IPCMSG_SENDMSG);
267                 if( msg->Window != AxWin3_int_GetWindowID(Window) ) {
268                         AxWin3_int_HandleMessage(msg);
269                         continue ;
270                 }
271                 tIPCMsg_SendMsg *info = (void*)msg->Data;
272                 if( info->ID != MessageID ) {
273                         AxWin3_int_HandleMessage(msg);
274                         continue ;
275                 }
276
277                 *Length = info->Length;
278                 void    *ret = malloc(info->Length);    
279                 memcpy(ret, info->Data, info->Length);
280                 free(msg);
281         
282                 return ret;
283         }
284 }
285
286 void AxWin3_FocusWindow(tHWND Window)
287 {
288         tAxWin_IPCMessage       *msg;
289         
290         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_FOCUSWINDOW, 0, 0);
291         
292         AxWin3_int_SendIPCMessage(msg);
293         free(msg);
294 }
295
296 void AxWin3_ShowWindow(tHWND Window, int bShow)
297 {
298         tAxWin_IPCMessage       *msg;
299         tIPCMsg_Boolean *info;
300
301         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SHOWWINDOW, 0, sizeof(*info));
302         info = (void*)msg->Data;
303         info->Value = !!bShow;
304         
305         AxWin3_int_SendIPCMessage(msg);
306         
307         free(msg);
308 }
309
310 void AxWin3_DecorateWindow(tHWND Window, int bDecorate)
311 {
312         tAxWin_IPCMessage       *msg;
313         tIPCMsg_Boolean *info;
314
315         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_DECORATEWINDOW, 0, sizeof(*info));
316         info = (void*)msg->Data;
317         info->Value = !!bDecorate;
318         
319         AxWin3_int_SendIPCMessage(msg);
320         
321         free(msg);
322 }
323
324 void AxWin3_SetWindowPos(tHWND Window, short X, short Y, short W, short H)
325 {
326         tAxWin_IPCMessage       *msg;
327         tIPCMsg_SetWindowPos    *info;
328         
329         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINPOS, 0, sizeof(*info));
330         info = (void*)msg->Data;
331
332         info->bSetPos = 1;
333         info->bSetDims = 1;
334         info->X = X;    info->Y = Y;
335         info->W = W;    info->H = H;
336
337         AxWin3_int_SendIPCMessage(msg); 
338         free(msg);
339 }
340
341 void AxWin3_MoveWindow(tHWND Window, short X, short Y)
342 {
343         tAxWin_IPCMessage       *msg;
344         tIPCMsg_SetWindowPos    *info;
345         
346         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINPOS, 0, sizeof(*info));
347         info = (void*)msg->Data;
348
349         info->bSetPos = 1;
350         info->bSetDims = 0;
351         info->X = X;
352         info->Y = Y;
353         
354         AxWin3_int_SendIPCMessage(msg);
355         
356         free(msg);
357 }
358
359 void AxWin3_ResizeWindow(tHWND Window, short W, short H)
360 {
361         tAxWin_IPCMessage       *msg;
362         tIPCMsg_SetWindowPos    *info;
363         
364         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_SETWINPOS, 0, sizeof(*info));
365         info = (void*)msg->Data;
366
367         info->bSetPos = 0;
368         info->bSetDims = 1;
369         info->W = W;
370         info->H = H;
371         
372         AxWin3_int_SendIPCMessage(msg);
373         
374         free(msg);
375 }
376
377 int AxWin3_RegisterAction(tHWND Window, const char *Action, tAxWin3_HotkeyCallback cb)
378 {
379          int    i;
380         for( i = 0; i < MAX_HOTKEYS; i ++ )
381         {
382                 if( gAxWin3_Hotkeys[i] == NULL )
383                 {
384                         tAxWin_IPCMessage       *msg;
385                         struct sIPCMsg_RegAction        *info;
386                         gAxWin3_Hotkeys[i] = cb;
387                         
388                         msg = AxWin3_int_AllocateIPCMessage(Window, IPCMSG_REGACTION, 0, sizeof(*info)+strlen(Action)+1);
389                         info = (void*)msg->Data;
390                 
391                         info->Index = i;
392                         strcpy(info->Action, Action);
393                         
394                         AxWin3_int_SendIPCMessage(msg);
395                         free(msg);
396                         return i;
397                 }
398         }
399         return -1;
400 }
401

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