summaryrefslogtreecommitdiff
path: root/src/windowswm.c
blob: c61f792c4ccd5bc70e8647dfcde90a120f743cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/*
 * WindowsWM extension is based on AppleWM extension
 * Authors:	Kensuke Matsuzaki
 */
/**************************************************************************

Copyright (c) 2002 Apple Computer, Inc.
All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sub license, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice (including the
next paragraph) shall be included in all copies or substantial portions
of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

**************************************************************************/

/* THIS IS NOT AN X CONSORTIUM STANDARD */

#define NEED_EVENTS
#define NEED_REPLIES
#include <X11/Xlibint.h>
#include "windowswmstr.h"
#include <X11/extensions/Xext.h>
#include "extutil.h"
#include <stdio.h>

static XExtensionInfo _windowswm_info_data;
static XExtensionInfo *windowswm_info = &_windowswm_info_data;
static char *windowswm_extension_name = WINDOWSWMNAME;

#define WindowsWMCheckExtension(dpy,i,val) \
  XextCheckExtension (dpy, i, windowswm_extension_name, val)

/*****************************************************************************
 *                                                                           *
 *			   private utility routines                          *
 *                                                                           *
 *****************************************************************************/

static int close_display (Display *dpy, XExtCodes *extCodes);
static Bool wire_to_event ();
static Status event_to_wire ();

static /* const */ XExtensionHooks windowswm_extension_hooks = {
  NULL,				/* create_gc */
  NULL,				/* copy_gc */
  NULL,				/* flush_gc */
  NULL,				/* free_gc */
  NULL,				/* create_font */
  NULL,				/* free_font */
  close_display,		/* close_display */
  wire_to_event,		/* wire_to_event */
  event_to_wire,		/* event_to_wire */
  NULL,				/* error */
  NULL,				/* error_string */
};

static XEXT_GENERATE_FIND_DISPLAY (find_display, windowswm_info,
                                   windowswm_extension_name,
                                   &windowswm_extension_hooks,
                                   WindowsWMNumberEvents, NULL);
     
static XEXT_GENERATE_CLOSE_DISPLAY (close_display, windowswm_info);

static Bool
wire_to_event (Display *dpy, XEvent  *re, xEvent  *event)
{
  XExtDisplayInfo *info = find_display (dpy);
  XWindowsWMNotifyEvent *se;
  xWindowsWMNotifyEvent *sevent;
  
  WindowsWMCheckExtension (dpy, info, False);
  
  switch ((event->u.u.type & 0x7f) - info->codes->first_event)
    {
    case WindowsWMControllerNotify:
    case WindowsWMActivationNotify:
      se = (XWindowsWMNotifyEvent *) re;
      sevent = (xWindowsWMNotifyEvent *) event;
      se->type = sevent->type & 0x7f;
      se->serial = _XSetLastRequestRead(dpy,(xGenericReply *) event);
      se->send_event = (sevent->type & 0x80) != 0;
      se->display = dpy;
      se->window = sevent->window;
      se->time = sevent->time;
      se->kind = sevent->kind;
      se->arg = sevent->arg;
      se->x = sevent->x;
      se->y = sevent->y;
      se->w = sevent->w;
      se->h = sevent->h;
      return True;
    }
  return False;
}

static Status
event_to_wire (Display *dpy, XEvent  *re, xEvent  *event)
{
  XExtDisplayInfo *info = find_display (dpy);
  XWindowsWMNotifyEvent *se;
  xWindowsWMNotifyEvent *sevent;
  
  WindowsWMCheckExtension (dpy, info, False);
  
  switch ((re->type & 0x7f) - info->codes->first_event)
    {
    case WindowsWMControllerNotify:
    case WindowsWMActivationNotify:
      se = (XWindowsWMNotifyEvent *) re;
      sevent = (xWindowsWMNotifyEvent *) event;
      sevent->type = se->type | (se->send_event ? 0x80 : 0);
      sevent->sequenceNumber = se->serial & 0xffff;
      sevent->window = se->window;
      sevent->kind = se->kind;
      sevent->arg = se->arg;
      sevent->time = se->time;
      sevent->x = se->x;
      sevent->y = se->y;
      sevent->w = se->w;
      sevent->h = se->h;
      return 1;
  }
  return 0;
}

/*****************************************************************************
 *                                                                           *
 *		    public Windows-WM Extension routines                     *
 *                                                                           *
 *****************************************************************************/

#if 0
#include <stdio.h>
#define TRACE(msg)  fprintf(stderr, "WindowsWM%s\n", msg);
#else
#define TRACE(msg)
#endif


Bool
XWindowsWMQueryExtension (Display *dpy,
			  int *event_basep, int *error_basep)
{
  XExtDisplayInfo *info = find_display (dpy);
  
  TRACE("QueryExtension...");
  if (XextHasExtension(info))
    {
      *event_basep = info->codes->first_event;
      *error_basep = info->codes->first_error;
      TRACE("QueryExtension... return True");
      return True;
    }
  else
    {
      TRACE("QueryExtension... return False");
      return False;
    }
}

Bool
XWindowsWMQueryVersion (Display* dpy, int* majorVersion,
			int* minorVersion, int* patchVersion)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMQueryVersionReply rep;
  xWindowsWMQueryVersionReq *req;
  
  TRACE("QueryVersion...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMQueryVersion, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMQueryVersion;
  if (!_XReply(dpy, (xReply *)&rep, 0, xFalse))
    {
      UnlockDisplay(dpy);
      SyncHandle();
      TRACE("QueryVersion... return False");
      return False;
    }
  *majorVersion = rep.majorVersion;
  *minorVersion = rep.minorVersion;
  *patchVersion = rep.patchVersion;
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("QueryVersion... return True");
  return True;
}

Bool
XWindowsWMDisableUpdate (Display* dpy, int screen)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMDisableUpdateReq *req;

  TRACE("DisableUpdate...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMDisableUpdate, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMDisableUpdate;
  req->screen = screen;
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("DisableUpdate... return True");
  return True;
}

Bool
XWindowsWMReenableUpdate (Display* dpy, int screen)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMReenableUpdateReq *req;
  
  TRACE("ReenableUpdate...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMReenableUpdate, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMReenableUpdate;
  req->screen = screen;
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("ReenableUpdate... return True");
    return True;
}

Bool
XWindowsWMSelectInput (Display* dpy, unsigned long mask)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMSelectInputReq *req;
  
  TRACE("SelectInput...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMSelectInput, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMSelectInput;
  req->mask = mask;
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("SetlectInput... return True");
  return True;
}


Bool
XWindowsWMSetFrontProcess (Display* dpy)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMSetFrontProcessReq *req;
  
  TRACE("SetFrontProcess...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMSetFrontProcess, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMSetFrontProcess;
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("SetFrontProcess... return True");
  return True;
}

Bool
XWindowsWMFrameGetRect (Display* dpy, unsigned int frame_style,
			unsigned int frame_style_ex, unsigned int frame_rect,
			short ix, short iy, short iw, short ih,
			short *rx, short *ry, short *rw, short *rh)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMFrameGetRectReply rep;
  xWindowsWMFrameGetRectReq *req;
  
  TRACE("FrameGetRect...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMFrameGetRect, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMFrameGetRect;
  req->frame_style = frame_style;
  req->frame_style_ex = frame_style_ex;
  req->frame_rect = frame_rect;
  req->ix = ix;
  req->iy = iy;
  req->iw = iw;
  req->ih = ih;
  rep.x = rep.y = rep.w = rep.h = 0;
  if (!_XReply(dpy, (xReply *)&rep, 0, xFalse))
    {
      UnlockDisplay(dpy);
      SyncHandle();
      TRACE("FrameGetRect... return False");
      return False;
    }
  *rx = rep.x; *ry = rep.y;
  *rw = rep.w; *rh = rep.h;
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("FrameGetRect... return True");
  return True;
}

Bool
XWindowsWMFrameDraw (Display* dpy, int screen, Window window,
		     unsigned int frame_style, unsigned int frame_style_ex,
		     short ix, short iy, short iw, short ih)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMFrameDrawReq *req;
  
  TRACE("FrameDraw...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMFrameDraw, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMFrameDraw;
  req->screen = screen;
  req->window = window;
  req->frame_style = frame_style;
  req->frame_style_ex = frame_style_ex;
  req->ix = ix;
  req->iy = iy;
  req->iw = iw;
  req->ih = ih;
  
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("FrameDraw... return True");
  return True;
}

Bool
XWindowsWMFrameSetTitle (Display* dpy, int screen, Window window,
			 unsigned int title_length, const char *title_bytes)
{
  XExtDisplayInfo *info = find_display (dpy);
  xWindowsWMFrameSetTitleReq *req;
  
  TRACE("FrameSetTitle...");
  WindowsWMCheckExtension (dpy, info, False);
  
  LockDisplay(dpy);
  GetReq(WindowsWMFrameSetTitle, req);
  req->reqType = info->codes->major_opcode;
  req->wmReqType = X_WindowsWMFrameSetTitle;
  req->screen = screen;
  req->window = window;
  req->title_length = title_length;
  
  req->length += (title_length + 3)>>2;
  Data (dpy, title_bytes, title_length);
  
  UnlockDisplay(dpy);
  SyncHandle();
  TRACE("FrameSetTitle... return True");
  return True;
}