428
|
1 /* Functions for the mswindows window system.
|
|
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
771
|
3 Copyright (C) 1995, 1996, 2001, 2002 Ben Wing.
|
428
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not synched with FSF. */
|
|
23
|
771
|
24 /* This file Mule-ized, 8-14-2000. */
|
|
25
|
428
|
26 /* Authorship:
|
|
27
|
|
28 Ultimately based on FSF.
|
|
29 Substantially rewritten for XEmacs by Ben Wing.
|
|
30 Rewritten for mswindows by Jonathan Harris, November 1997 for 21.0.
|
|
31 Graphics features added and frame resizing fiddled with by Andy Piper.
|
|
32 */
|
|
33
|
|
34 #include <config.h>
|
|
35 #include "lisp.h"
|
|
36
|
|
37 #include "buffer.h"
|
872
|
38 #include "device-impl.h"
|
428
|
39 #include "elhash.h"
|
|
40 #include "events.h"
|
|
41 #include "faces.h"
|
872
|
42 #include "frame-impl.h"
|
428
|
43 #include "redisplay.h"
|
|
44 #include "window.h"
|
|
45
|
872
|
46 #include "console-msw-impl.h"
|
800
|
47 #include "glyphs-msw.h"
|
|
48
|
428
|
49 #define MSWINDOWS_FRAME_STYLE (WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_OVERLAPPEDWINDOW)
|
|
50 #define MSWINDOWS_POPUP_STYLE (WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_POPUP \
|
|
51 | WS_CAPTION | WS_BORDER | WS_SYSMENU | WS_MINIMIZEBOX)
|
|
52
|
|
53 #define MSWINDOWS_FRAME_EXSTYLE WS_EX_OVERLAPPEDWINDOW
|
|
54 #define MSWINDOWS_POPUP_EXSTYLE WS_EX_PALETTEWINDOW
|
|
55
|
|
56 /* Default popup left top corner offset from the same
|
|
57 corner of the parent frame, in pixel */
|
|
58 #define POPUP_OFFSET 30
|
|
59
|
|
60 /* Default popup size, in characters */
|
|
61 #define POPUP_WIDTH 30
|
|
62 #define POPUP_HEIGHT 10
|
|
63
|
793
|
64 /* Default regular frame size, in characters; if too big, it will get
|
|
65 shrunk to the workspace size */
|
428
|
66 #define DEFAULT_FRAME_WIDTH 80
|
793
|
67 #define DEFAULT_FRAME_HEIGHT 50
|
428
|
68
|
|
69 #ifdef HAVE_MENUBARS
|
|
70 #define ADJR_MENUFLAG TRUE
|
|
71 #else
|
|
72 #define ADJR_MENUFLAG FALSE
|
|
73 #endif
|
|
74
|
|
75 /* Default properties to use when creating frames. */
|
|
76 Lisp_Object Vdefault_mswindows_frame_plist;
|
440
|
77 Lisp_Object Vdefault_msprinter_frame_plist;
|
428
|
78 Lisp_Object Vmswindows_use_system_frame_size_defaults;
|
|
79
|
|
80 /* This does not need to be GC protected, as it holds a
|
|
81 frame Lisp_Object already protected by Fmake_frame */
|
|
82 Lisp_Object Vmswindows_frame_being_created;
|
|
83
|
1204
|
84 static const struct memory_description mswindows_frame_data_description_1 [] = {
|
|
85 #ifdef HAVE_TOOLBARS
|
|
86 { XD_LISP_OBJECT, offsetof (struct mswindows_frame, toolbar_hash_table) },
|
|
87 #endif
|
|
88 { XD_LISP_OBJECT, offsetof (struct mswindows_frame, menu_hash_table) },
|
|
89 { XD_LISP_OBJECT, offsetof (struct mswindows_frame, widget_hash_table1) },
|
|
90 { XD_LISP_OBJECT, offsetof (struct mswindows_frame, widget_hash_table2) },
|
|
91 { XD_LISP_OBJECT, offsetof (struct mswindows_frame, widget_hash_table3) },
|
|
92 { XD_END }
|
|
93 };
|
|
94
|
3092
|
95 #ifdef NEW_GC
|
|
96 DEFINE_LRECORD_IMPLEMENTATION ("mswindows-frame", mswindows_frame,
|
|
97 1, /*dumpable-flag*/
|
|
98 0, 0, 0, 0, 0,
|
|
99 mswindows_frame_data_description_1,
|
|
100 Lisp_Mswindows_Frame);
|
|
101 #else /* not NEW_GC */
|
1204
|
102 extern const struct sized_memory_description mswindows_frame_data_description;
|
|
103
|
|
104 const struct sized_memory_description mswindows_frame_data_description = {
|
|
105 sizeof (struct mswindows_frame), mswindows_frame_data_description_1
|
|
106 };
|
3092
|
107 #endif /* not NEW_GC */
|
1204
|
108
|
440
|
109 /*---------------------------------------------------------------------*/
|
|
110 /*----- DISPLAY FRAME -----*/
|
|
111 /*---------------------------------------------------------------------*/
|
|
112
|
3022
|
113 static struct frame *
|
|
114 decode_mswindows_frame (Lisp_Object frame)
|
|
115 {
|
|
116 if (NILP (frame))
|
|
117 frame = wrap_frame (selected_frame ());
|
|
118 CHECK_LIVE_FRAME (frame);
|
|
119 /* this will also catch dead frames, but putting in the above check
|
|
120 results in a more useful error */
|
|
121 CHECK_MSWINDOWS_FRAME (frame);
|
|
122 return XFRAME (frame);
|
|
123 }
|
|
124
|
442
|
125 HWND
|
|
126 mswindows_get_selected_frame_hwnd (void)
|
|
127 {
|
|
128 Lisp_Object frame, device;
|
|
129
|
|
130 device = Ffind_device (Qnil, Qmswindows);
|
|
131 if (NILP (device))
|
|
132 return NULL;
|
|
133 frame = DEVICE_SELECTED_FRAME (XDEVICE (device));
|
|
134 if (NILP (frame))
|
|
135 return NULL;
|
|
136
|
|
137 return FRAME_MSWINDOWS_HANDLE (XFRAME (frame));
|
|
138 }
|
|
139
|
428
|
140 static void
|
771
|
141 mswindows_init_frame_1 (struct frame *f, Lisp_Object props,
|
2286
|
142 int UNUSED (frame_name_is_defaulted))
|
428
|
143 {
|
|
144 Lisp_Object initially_unmapped;
|
|
145 Lisp_Object name, height, width, popup, top, left;
|
|
146 Lisp_Object frame_obj = Qnil;
|
|
147 RECT rect;
|
|
148 XEMACS_RECT_WH rect_default;
|
|
149 DWORD style, exstyle;
|
|
150 HWND hwnd, hwnd_parent;
|
|
151
|
|
152 /* Pick up relevant properties */
|
|
153 initially_unmapped = Fplist_get (props, Qinitially_unmapped, Qnil);
|
|
154 name = Fplist_get (props, Qname, Qnil);
|
442
|
155
|
428
|
156 popup = Fplist_get (props, Qpopup, Qnil);
|
|
157 if (EQ (popup, Qt))
|
|
158 popup = Fselected_frame (Qnil);
|
|
159
|
|
160 left = Fplist_get (props, Qleft, Qnil);
|
|
161 if (!NILP (left))
|
|
162 CHECK_INT (left);
|
|
163
|
|
164 top = Fplist_get (props, Qtop, Qnil);
|
|
165 if (!NILP (top))
|
|
166 CHECK_INT (top);
|
|
167
|
|
168 width = Fplist_get (props, Qwidth, Qnil);
|
|
169 if (!NILP (width))
|
|
170 CHECK_INT (width);
|
|
171
|
|
172 height = Fplist_get (props, Qheight, Qnil);
|
|
173 if (!NILP (height))
|
|
174 CHECK_INT (height);
|
|
175
|
3092
|
176 #ifdef NEW_GC
|
|
177 f->frame_data = alloc_lrecord_type (struct mswindows_frame,
|
|
178 &lrecord_mswindows_frame);
|
|
179 #else /* not NEW_GC */
|
428
|
180 f->frame_data = xnew_and_zero (struct mswindows_frame);
|
3092
|
181 #endif /* not NEW_GC */
|
428
|
182 FRAME_MSWINDOWS_TARGET_RECT (f) = xnew_and_zero (XEMACS_RECT_WH);
|
|
183
|
|
184 FRAME_MSWINDOWS_TARGET_RECT (f)->left = NILP (left) ? -1 : abs (XINT (left));
|
|
185 FRAME_MSWINDOWS_TARGET_RECT (f)->top = NILP (top) ? -1 : abs (XINT (top));
|
442
|
186 FRAME_MSWINDOWS_TARGET_RECT (f)->width = NILP (width) ? -1 :
|
428
|
187 abs (XINT (width));
|
442
|
188 FRAME_MSWINDOWS_TARGET_RECT (f)->height = NILP (height) ? -1 :
|
428
|
189 abs (XINT (height));
|
442
|
190
|
428
|
191 /* Misc frame stuff */
|
771
|
192 FRAME_MSWINDOWS_MENU_HASH_TABLE (f) = Qnil;
|
428
|
193 #ifdef HAVE_TOOLBARS
|
1130
|
194 /* EQ not EQUAL or we will get QUIT crashes, see below. */
|
771
|
195 FRAME_MSWINDOWS_TOOLBAR_HASH_TABLE (f) =
|
1130
|
196 make_lisp_hash_table (50, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
|
428
|
197 #endif
|
1123
|
198 /* hashtable of instantiated glyphs on the frame. Make them EQ because
|
|
199 we only use ints as keys. Otherwise we run into stickiness in
|
|
200 redisplay because internal_equal() can QUIT. See
|
|
201 enter_redisplay_critical_section(). */
|
442
|
202 FRAME_MSWINDOWS_WIDGET_HASH_TABLE1 (f) =
|
853
|
203 make_lisp_hash_table (50, HASH_TABLE_VALUE_WEAK, HASH_TABLE_EQ);
|
442
|
204 FRAME_MSWINDOWS_WIDGET_HASH_TABLE2 (f) =
|
853
|
205 make_lisp_hash_table (50, HASH_TABLE_VALUE_WEAK, HASH_TABLE_EQ);
|
442
|
206 FRAME_MSWINDOWS_WIDGET_HASH_TABLE3 (f) =
|
853
|
207 make_lisp_hash_table (50, HASH_TABLE_VALUE_WEAK, HASH_TABLE_EQ);
|
428
|
208 /* Will initialize these in WM_SIZE handler. We cannot do it now,
|
|
209 because we do not know what is CW_USEDEFAULT height and width */
|
|
210 FRAME_WIDTH (f) = 0;
|
|
211 FRAME_HEIGHT (f) = 0;
|
|
212 FRAME_PIXWIDTH (f) = 0;
|
|
213 FRAME_PIXHEIGHT (f) = 0;
|
|
214
|
|
215 if (NILP (popup))
|
|
216 {
|
|
217 style = MSWINDOWS_FRAME_STYLE;
|
|
218 exstyle = MSWINDOWS_FRAME_EXSTYLE;
|
|
219 hwnd_parent = NULL;
|
|
220
|
|
221 rect_default.left = rect_default.top = CW_USEDEFAULT;
|
|
222 rect_default.width = rect_default.height = CW_USEDEFAULT;
|
|
223 }
|
|
224 else
|
|
225 {
|
|
226 style = MSWINDOWS_POPUP_STYLE;
|
|
227 exstyle = MSWINDOWS_POPUP_EXSTYLE;
|
|
228
|
|
229 CHECK_MSWINDOWS_FRAME (popup);
|
|
230 hwnd_parent = FRAME_MSWINDOWS_HANDLE (XFRAME (popup));
|
|
231 assert (IsWindow (hwnd_parent));
|
|
232
|
|
233 /* We cannot use CW_USEDEFAULT when creating a popup window.
|
|
234 So by default, we offset the new popup 30 pixels right
|
|
235 and down from its parent, and give it size of 30x10 characters.
|
|
236 These dimensions look adequate on both high and low res monitors */
|
|
237 GetWindowRect (hwnd_parent, &rect);
|
|
238 rect_default.left = rect.left + POPUP_OFFSET;
|
|
239 rect_default.top = rect.top + POPUP_OFFSET;
|
|
240 char_to_real_pixel_size (f, POPUP_WIDTH, POPUP_HEIGHT,
|
|
241 &rect_default.width, &rect_default.height);
|
442
|
242 FRAME_MSWINDOWS_POPUP (f) = 1;
|
428
|
243 }
|
|
244
|
771
|
245 AdjustWindowRectEx (&rect, style, ADJR_MENUFLAG, exstyle);
|
428
|
246
|
793
|
247 frame_obj = wrap_frame (f);
|
428
|
248
|
|
249 Vmswindows_frame_being_created = frame_obj;
|
771
|
250 {
|
|
251 const Extbyte *nameext = 0;
|
428
|
252
|
771
|
253 if (STRINGP (f->name))
|
|
254 LISP_STRING_TO_TSTR (f->name, nameext);
|
|
255 else if (STRINGP (name))
|
|
256 LISP_STRING_TO_TSTR (name, nameext);
|
|
257 else
|
|
258 nameext = XETEXT (XEMACS_CLASS);
|
|
259 hwnd = qxeCreateWindowEx (exstyle,
|
|
260 XETEXT (XEMACS_CLASS),
|
|
261 nameext,
|
|
262 style,
|
|
263 rect_default.left, rect_default.top,
|
|
264 rect_default.width, rect_default.height,
|
|
265 hwnd_parent, NULL, NULL, NULL);
|
|
266 }
|
428
|
267
|
|
268 Vmswindows_frame_being_created = Qnil;
|
|
269
|
|
270 if (hwnd == NULL)
|
442
|
271 invalid_operation ("System call to create frame failed",
|
|
272 STRINGP (f->name) ? f->name :
|
|
273 STRINGP (name) ? name :
|
|
274 Qunbound);
|
771
|
275
|
|
276 FRAME_MSWINDOWS_HANDLE (f) = hwnd;
|
428
|
277
|
771
|
278 qxeSetWindowLong (hwnd, XWL_FRAMEOBJ, (LONG)LISP_TO_VOID (frame_obj));
|
|
279 FRAME_MSWINDOWS_DC (f) = GetDC (hwnd);
|
|
280 SetTextAlign (FRAME_MSWINDOWS_DC (f), TA_BASELINE | TA_LEFT | TA_NOUPDATECP);
|
442
|
281
|
771
|
282 #ifdef HAVE_DIALOGS
|
442
|
283 if (FRAME_MSWINDOWS_POPUP (f))
|
|
284 mswindows_register_popup_frame (frame_obj);
|
771
|
285 #endif /* HAVE_DIALOGS */
|
428
|
286 }
|
|
287
|
|
288 static void
|
2286
|
289 mswindows_init_frame_2 (struct frame *f, Lisp_Object UNUSED (props))
|
428
|
290 {
|
|
291 if (NILP (Vmswindows_use_system_frame_size_defaults))
|
|
292 {
|
|
293 /* I don't think anything can set the frame size before this
|
|
294 since we don't have X resources. This may change if we look
|
|
295 at the registry. Even so these values can get overridden
|
|
296 later.*/
|
442
|
297 XEMACS_RECT_WH dest = { -1, -1, DEFAULT_FRAME_WIDTH,
|
428
|
298 DEFAULT_FRAME_HEIGHT };
|
|
299 mswindows_size_frame_internal (f, &dest);
|
|
300 }
|
|
301 }
|
|
302
|
|
303 /* Called after frame's properties are set */
|
|
304 static void
|
|
305 mswindows_init_frame_3 (struct frame *f)
|
|
306 {
|
827
|
307 /* Don't do this earlier or we get a WM_PAINT before the frame is ready */
|
771
|
308 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_SHOWNORMAL);
|
|
309 SetForegroundWindow (FRAME_MSWINDOWS_HANDLE (f));
|
|
310 DragAcceptFiles (FRAME_MSWINDOWS_HANDLE (f), TRUE);
|
428
|
311 }
|
|
312
|
|
313 static void
|
2286
|
314 mswindows_after_init_frame (struct frame *UNUSED (f),
|
|
315 int UNUSED (first_on_device), int first_on_console)
|
428
|
316 {
|
|
317 /* Windows, unlike X, is very synchronous. After the initial
|
442
|
318 frame is created, it will never be displayed, except for
|
428
|
319 hollow border, unless we start pumping messages. Load progress
|
|
320 messages show in the bottom of the hollow frame, which is ugly.
|
|
321 We redisplay the initial frame here, so modeline and root window
|
|
322 background show.
|
|
323 */
|
|
324 if (first_on_console)
|
|
325 redisplay ();
|
|
326 }
|
|
327
|
|
328 static void
|
|
329 mswindows_mark_frame (struct frame *f)
|
|
330 {
|
|
331 mark_object (FRAME_MSWINDOWS_MENU_HASH_TABLE (f));
|
|
332 #ifdef HAVE_TOOLBARS
|
|
333 mark_object (FRAME_MSWINDOWS_TOOLBAR_HASH_TABLE (f));
|
|
334 #endif
|
442
|
335 mark_object (FRAME_MSWINDOWS_WIDGET_HASH_TABLE1 (f));
|
|
336 mark_object (FRAME_MSWINDOWS_WIDGET_HASH_TABLE2 (f));
|
|
337 mark_object (FRAME_MSWINDOWS_WIDGET_HASH_TABLE3 (f));
|
428
|
338 }
|
|
339
|
|
340 static void
|
|
341 mswindows_focus_on_frame (struct frame *f)
|
|
342 {
|
771
|
343 SetForegroundWindow (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
344 }
|
|
345
|
|
346 static void
|
|
347 mswindows_delete_frame (struct frame *f)
|
|
348 {
|
|
349 if (f->frame_data)
|
|
350 {
|
771
|
351 #ifdef HAVE_DIALOGS
|
|
352 mswindows_unregister_popup_frame (wrap_frame (f));
|
|
353 #endif
|
|
354 ReleaseDC (FRAME_MSWINDOWS_HANDLE (f), FRAME_MSWINDOWS_DC (f));
|
|
355 DestroyWindow (FRAME_MSWINDOWS_HANDLE (f));
|
3092
|
356 #ifdef NEW_GC
|
|
357 mc_free (f->frame_data);
|
|
358 #else /* not NEW_GC */
|
1726
|
359 xfree (f->frame_data, void *);
|
3092
|
360 #endif /* not NEW_GC */
|
428
|
361 }
|
|
362 f->frame_data = 0;
|
|
363 }
|
|
364
|
|
365 static void
|
|
366 mswindows_set_frame_size (struct frame *f, int width, int height)
|
|
367 {
|
|
368 RECT rect;
|
1395
|
369 int columns, rows;
|
|
370
|
428
|
371 rect.left = rect.top = 0;
|
|
372 rect.right = width;
|
|
373 rect.bottom = height;
|
|
374
|
1395
|
375 pixel_to_char_size (f, rect.right, rect.bottom, &columns, &rows);
|
|
376 change_frame_size (f, rows, columns, 0);
|
|
377
|
1318
|
378 /* This can call Lisp, because it runs the window procedure, which can
|
|
379 call redisplay() */
|
428
|
380 AdjustWindowRectEx (&rect,
|
771
|
381 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_STYLE),
|
|
382 GetMenu (FRAME_MSWINDOWS_HANDLE (f)) != NULL,
|
|
383 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_EXSTYLE));
|
428
|
384
|
2872
|
385 if (IsIconic (FRAME_MSWINDOWS_HANDLE (f)))
|
771
|
386 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_RESTORE);
|
428
|
387
|
771
|
388 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), NULL,
|
428
|
389 0, 0, rect.right-rect.left, rect.bottom-rect.top,
|
|
390 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING | SWP_NOMOVE);
|
|
391 }
|
|
392
|
|
393 static void
|
|
394 mswindows_set_frame_position (struct frame *f, int xoff, int yoff)
|
|
395 {
|
771
|
396 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), NULL,
|
428
|
397 xoff, yoff, 0, 0,
|
|
398 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING | SWP_NOSIZE);
|
|
399 }
|
|
400
|
|
401 static void
|
442
|
402 mswindows_make_frame_visible (struct frame *f)
|
428
|
403 {
|
771
|
404 if (!FRAME_VISIBLE_P (f))
|
|
405 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_RESTORE);
|
428
|
406 else
|
771
|
407 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_SHOW);
|
|
408 SetActiveWindow (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
409 f->visible = 1;
|
|
410 f->iconified = 0;
|
|
411 }
|
|
412
|
|
413 static void
|
442
|
414 mswindows_make_frame_invisible (struct frame *f)
|
428
|
415 {
|
771
|
416 if (!FRAME_VISIBLE_P (f))
|
428
|
417 return;
|
|
418
|
771
|
419 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_HIDE);
|
428
|
420 f->visible = 0;
|
|
421 }
|
|
422
|
|
423 static int
|
|
424 mswindows_frame_totally_visible_p (struct frame *f)
|
|
425 {
|
|
426 RECT rc_me, rc_other, rc_temp;
|
771
|
427 HWND hwnd = FRAME_MSWINDOWS_HANDLE (f);
|
428
|
428
|
|
429 /* We test against not a whole window rectangle, only against its
|
|
430 client part. So, if non-client are is covered and client area is
|
|
431 not, we return true. */
|
|
432 GetClientRect (hwnd, &rc_me);
|
2367
|
433 MapWindowPoints (hwnd, HWND_DESKTOP, (LPPOINT) (void *) (&rc_me), 2);
|
428
|
434
|
|
435 /* First see if we're off the desktop */
|
771
|
436 GetWindowRect (GetDesktopWindow (), &rc_other);
|
|
437 UnionRect (&rc_temp, &rc_me, &rc_other);
|
428
|
438 if (!EqualRect (&rc_temp, &rc_other))
|
|
439 return 0;
|
442
|
440
|
428
|
441 /* Then see if any window above us obscures us */
|
|
442 while ((hwnd = GetWindow (hwnd, GW_HWNDPREV)) != NULL)
|
|
443 if (IsWindowVisible (hwnd))
|
|
444 {
|
|
445 GetWindowRect (hwnd, &rc_other);
|
771
|
446 if (IntersectRect (&rc_temp, &rc_me, &rc_other))
|
428
|
447 return 0;
|
|
448 }
|
|
449
|
|
450 return 1;
|
|
451 }
|
|
452
|
|
453 static int
|
|
454 mswindows_frame_visible_p (struct frame *f)
|
|
455 {
|
771
|
456 return IsWindowVisible (FRAME_MSWINDOWS_HANDLE (f))
|
|
457 && !IsIconic (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
458 }
|
|
459
|
|
460
|
|
461 static void
|
|
462 mswindows_iconify_frame (struct frame *f)
|
|
463 {
|
771
|
464 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_MINIMIZE);
|
428
|
465 f->visible = 0;
|
|
466 f->iconified = 1;
|
|
467 }
|
|
468
|
|
469 static int
|
|
470 mswindows_frame_iconified_p (struct frame *f)
|
|
471 {
|
771
|
472 return IsIconic (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
473 }
|
|
474
|
|
475 static void
|
|
476 mswindows_set_frame_icon (struct frame *f)
|
|
477 {
|
|
478 if (IMAGE_INSTANCEP (f->icon)
|
|
479 && IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (f->icon)))
|
|
480 {
|
|
481 if (!XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon))
|
|
482 {
|
442
|
483 mswindows_initialize_image_instance_icon (XIMAGE_INSTANCE (f->icon),
|
428
|
484 FALSE);
|
|
485 }
|
442
|
486
|
771
|
487 qxeSetClassLong (FRAME_MSWINDOWS_HANDLE (f), GCL_HICON,
|
|
488 (LONG) XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon));
|
428
|
489 }
|
|
490 }
|
|
491
|
|
492 static void
|
|
493 mswindows_set_frame_pointer (struct frame *f)
|
|
494 {
|
|
495 if (IMAGE_INSTANCEP (f->pointer)
|
|
496 && IMAGE_INSTANCE_TYPE (XIMAGE_INSTANCE (f->pointer)) == IMAGE_POINTER)
|
|
497 {
|
771
|
498 qxeSetClassLong (FRAME_MSWINDOWS_HANDLE (f), GCL_HCURSOR,
|
|
499 (LONG) XIMAGE_INSTANCE_MSWINDOWS_ICON (f->pointer));
|
428
|
500 /* we only have to do this because GC doesn't cause a mouse
|
|
501 event and doesn't give time to event processing even if it
|
|
502 did. */
|
|
503 SetCursor (XIMAGE_INSTANCE_MSWINDOWS_ICON (f->pointer));
|
|
504 }
|
|
505 }
|
|
506
|
|
507 static void
|
|
508 mswindows_set_mouse_position (struct window *w, int x, int y)
|
|
509 {
|
|
510 struct frame *f = XFRAME (w->frame);
|
|
511 POINT pt;
|
|
512
|
|
513 pt.x = w->pixel_left + x;
|
|
514 pt.y = w->pixel_top + y;
|
771
|
515 ClientToScreen (FRAME_MSWINDOWS_HANDLE (f), &pt);
|
428
|
516 SetCursorPos (pt.x, pt.y);
|
|
517 }
|
|
518
|
|
519 static int
|
2286
|
520 mswindows_get_mouse_position (struct device *UNUSED (d), Lisp_Object *frame,
|
|
521 int *x, int *y)
|
428
|
522 {
|
|
523 POINT pt;
|
|
524 HWND hwnd;
|
|
525
|
|
526 GetCursorPos (&pt);
|
|
527
|
|
528 /* What's under cursor? */
|
|
529 hwnd = WindowFromPoint (pt);
|
|
530 if (hwnd == NULL)
|
|
531 return 0;
|
|
532
|
|
533 /* Get grandest parent of the window */
|
|
534 {
|
|
535 HWND hwnd_parent;
|
|
536 while ((hwnd_parent = GetParent (hwnd)) != NULL)
|
|
537 hwnd = hwnd_parent;
|
|
538 }
|
|
539
|
|
540 /* Make sure it belongs to us */
|
|
541 if (GetWindowThreadProcessId (hwnd, NULL) != GetCurrentThreadId ())
|
|
542 return 0;
|
|
543
|
|
544 /* And that the window is an XEmacs frame */
|
771
|
545 if (!mswindows_window_is_xemacs (hwnd))
|
|
546 return 0;
|
428
|
547
|
|
548 /* Yippie! */
|
|
549 ScreenToClient (hwnd, &pt);
|
826
|
550 *frame = VOID_TO_LISP ((void *) qxeGetWindowLong (hwnd, XWL_FRAMEOBJ));
|
428
|
551 *x = pt.x;
|
|
552 *y = pt.y;
|
|
553 return 1;
|
|
554 }
|
|
555
|
|
556 static void
|
|
557 mswindows_raise_frame (struct frame *f)
|
|
558 {
|
771
|
559 BringWindowToTop (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
560 }
|
|
561
|
|
562 static void
|
|
563 mswindows_lower_frame (struct frame *f)
|
|
564 {
|
771
|
565 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), HWND_BOTTOM, 0, 0, 0, 0,
|
428
|
566 SWP_NOSIZE | SWP_NOMOVE | SWP_NOSENDCHANGING);
|
|
567 }
|
|
568
|
|
569 static void
|
442
|
570 mswindows_enable_frame (struct frame *f)
|
|
571 {
|
|
572 EnableWindow (FRAME_MSWINDOWS_HANDLE (f), TRUE);
|
|
573 }
|
|
574
|
|
575 static void
|
|
576 mswindows_disable_frame (struct frame *f)
|
|
577 {
|
|
578 EnableWindow (FRAME_MSWINDOWS_HANDLE (f), FALSE);
|
|
579 }
|
|
580
|
|
581 static void
|
867
|
582 mswindows_set_title_from_ibyte (struct frame *f, Ibyte *title)
|
428
|
583 {
|
771
|
584 unsigned int new_checksum = hash_string (title, qxestrlen (title));
|
593
|
585 if (new_checksum != FRAME_MSWINDOWS_TITLE_CHECKSUM (f))
|
428
|
586 {
|
593
|
587 Extbyte *title_ext;
|
|
588
|
|
589 FRAME_MSWINDOWS_TITLE_CHECKSUM (f) = new_checksum;
|
771
|
590 C_STRING_TO_TSTR (title, title_ext);
|
|
591 qxeSetWindowText (FRAME_MSWINDOWS_HANDLE (f), title_ext);
|
428
|
592 }
|
|
593 }
|
|
594
|
|
595 static Lisp_Object
|
3022
|
596 mswindows_window_id (Lisp_Object frame)
|
|
597 {
|
|
598 Ibyte str[255];
|
|
599 struct frame *f = decode_mswindows_frame (frame);
|
|
600
|
3023
|
601 qxesprintf (str, "%lu", (unsigned long) FRAME_MSWINDOWS_HANDLE (f));
|
3022
|
602 return build_intstring (str);
|
|
603 }
|
|
604
|
|
605 static Lisp_Object
|
428
|
606 mswindows_frame_property (struct frame *f, Lisp_Object property)
|
|
607 {
|
|
608 if (EQ (Qleft, property) || EQ (Qtop, property))
|
|
609 {
|
|
610 RECT rc;
|
771
|
611 GetWindowRect (FRAME_MSWINDOWS_HANDLE (f), &rc);
|
428
|
612 return make_int (EQ (Qtop, property) ? rc.top : rc.left);
|
|
613 }
|
3022
|
614 if (EQ (Qwindow_id, property))
|
|
615 return mswindows_window_id (wrap_frame (f));
|
|
616
|
428
|
617 return Qunbound;
|
|
618 }
|
|
619
|
|
620 static int
|
2286
|
621 mswindows_internal_frame_property_p (struct frame *UNUSED (f),
|
|
622 Lisp_Object property)
|
428
|
623 {
|
|
624 return EQ (property, Qleft)
|
3022
|
625 || EQ (property, Qtop)
|
|
626 || EQ (property, Qwindow_id);
|
428
|
627 /* #### frame-x.c has also this. Why?
|
|
628 || STRINGP (property);
|
|
629 */
|
|
630 }
|
|
631
|
|
632 static Lisp_Object
|
|
633 mswindows_frame_properties (struct frame *f)
|
|
634 {
|
|
635 Lisp_Object props = Qnil;
|
|
636 RECT rc;
|
771
|
637 GetWindowRect (FRAME_MSWINDOWS_HANDLE (f), &rc);
|
428
|
638
|
|
639 props = cons3 (Qtop, make_int (rc.top), props);
|
|
640 props = cons3 (Qleft, make_int (rc.left), props);
|
3022
|
641 props = cons3 (Qwindow_id, mswindows_window_id (wrap_frame (f)), props);
|
428
|
642
|
|
643 return props;
|
|
644 }
|
|
645
|
|
646 static void
|
|
647 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
648 {
|
|
649 int x=-1, y=-1;
|
|
650 int width = -1, height = -1;
|
|
651 BOOL width_specified_p = FALSE;
|
|
652 BOOL height_specified_p = FALSE;
|
|
653 BOOL x_specified_p = FALSE;
|
|
654 BOOL y_specified_p = FALSE;
|
|
655 Lisp_Object tail;
|
|
656
|
|
657 /* Extract the properties from plist */
|
|
658 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
659 {
|
|
660 Lisp_Object prop = Fcar (tail);
|
|
661 Lisp_Object val = Fcar (Fcdr (tail));
|
|
662
|
|
663 if (SYMBOLP (prop))
|
|
664 {
|
|
665 /* Kludge to handle the font property. */
|
|
666 if (EQ (prop, Qfont))
|
|
667 {
|
|
668 /* If the value is not a string we silently ignore it. */
|
|
669 if (STRINGP (val))
|
|
670 {
|
|
671 Lisp_Object frm, font_spec;
|
442
|
672
|
793
|
673 frm = wrap_frame (f);
|
428
|
674 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
|
|
675
|
|
676 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
|
|
677 update_frame_face_values (f);
|
|
678 }
|
|
679 }
|
|
680 else if (EQ (prop, Qwidth))
|
|
681 {
|
|
682 CHECK_INT (val);
|
|
683 width = XINT (val);
|
|
684 width_specified_p = TRUE;
|
|
685 }
|
|
686 else if (EQ (prop, Qheight))
|
|
687 {
|
|
688 CHECK_INT (val);
|
|
689 height = XINT (val);
|
|
690 height_specified_p = TRUE;
|
|
691 }
|
|
692 else if (EQ (prop, Qleft))
|
|
693 {
|
|
694 CHECK_INT (val);
|
|
695 x = XINT (val);
|
|
696 x_specified_p = TRUE;
|
|
697 }
|
|
698 else if (EQ (prop, Qtop))
|
|
699 {
|
|
700 CHECK_INT (val);
|
|
701 y = XINT (val);
|
|
702 y_specified_p = TRUE;
|
|
703 }
|
|
704 }
|
|
705 }
|
|
706
|
|
707 /* Now we've extracted the properties, apply them.
|
|
708 Do not apply geometric properties during frame creation. This
|
442
|
709 is excessive anyways, and this loses because WM_SIZE has not
|
428
|
710 been sent yet, so frame width and height fields are not initialized.
|
442
|
711
|
428
|
712 unfortunately WM_SIZE loses as well since the resize is only
|
|
713 applied once and the first time WM_SIZE is applied not everything
|
|
714 is initialised in the frame (toolbars for instance). enabling
|
|
715 this always makes no visible difference and fixes a whole host of
|
|
716 bugs (and is more consistent with X) so I am going to reenable it.
|
|
717 --andyp */
|
|
718 if ( FRAME_PIXWIDTH (f) && FRAME_PIXHEIGHT (f)
|
440
|
719 && (width_specified_p || height_specified_p
|
|
720 || x_specified_p || y_specified_p))
|
428
|
721 {
|
|
722 XEMACS_RECT_WH dest = { x, y, width, height };
|
|
723
|
|
724 mswindows_size_frame_internal (f, &dest);
|
|
725 }
|
|
726 }
|
|
727
|
506
|
728 void
|
771
|
729 mswindows_size_frame_internal (struct frame *f, XEMACS_RECT_WH *dest)
|
428
|
730 {
|
442
|
731 RECT rect, ws_rect;
|
428
|
732 int pixel_width, pixel_height;
|
|
733 int size_p = (dest->width >=0 || dest->height >=0);
|
|
734 int move_p = (dest->top >=0 || dest->left >=0);
|
506
|
735 char_to_real_pixel_size (f, dest->width, dest->height, &pixel_width,
|
|
736 &pixel_height);
|
442
|
737
|
428
|
738 if (dest->width < 0)
|
|
739 pixel_width = FRAME_PIXWIDTH (f);
|
|
740 if (dest->height < 0)
|
|
741 pixel_height = FRAME_PIXHEIGHT (f);
|
|
742
|
771
|
743 GetWindowRect (FRAME_MSWINDOWS_HANDLE (f), &rect);
|
428
|
744 if (dest->left < 0)
|
|
745 dest->left = rect.left;
|
|
746 if (dest->top < 0)
|
|
747 dest->top = rect.top;
|
442
|
748
|
428
|
749 rect.left = rect.top = 0;
|
|
750 rect.right = pixel_width;
|
|
751 rect.bottom = pixel_height;
|
|
752
|
|
753 AdjustWindowRectEx (&rect,
|
771
|
754 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_STYLE),
|
|
755 GetMenu (FRAME_MSWINDOWS_HANDLE (f)) != NULL,
|
|
756 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_EXSTYLE));
|
428
|
757
|
442
|
758 /* resize and move the window so that it fits in the workspace. This is
|
428
|
759 not restrictive since this will happen later anyway in WM_SIZE. We
|
|
760 have to do this after adjusting the rect to account for menubar
|
|
761 etc. */
|
442
|
762 mswindows_get_workspace_coords (&ws_rect);
|
428
|
763 pixel_width = rect.right - rect.left;
|
|
764 pixel_height = rect.bottom - rect.top;
|
442
|
765 if (pixel_width > ws_rect.right - ws_rect.left)
|
428
|
766 {
|
442
|
767 pixel_width = ws_rect.right - ws_rect.left;
|
428
|
768 size_p=1;
|
|
769 }
|
442
|
770 if (pixel_height > ws_rect.bottom - ws_rect.top)
|
428
|
771 {
|
442
|
772 pixel_height = ws_rect.bottom - ws_rect.top;
|
428
|
773 size_p=1;
|
|
774 }
|
|
775
|
442
|
776 /* adjust position so window is in workspace */
|
|
777 if (dest->left + pixel_width > ws_rect.right)
|
428
|
778 {
|
442
|
779 dest->left = ws_rect.right - pixel_width;
|
428
|
780 move_p=1;
|
|
781 }
|
442
|
782 if (dest->left < ws_rect.left)
|
428
|
783 {
|
442
|
784 dest->left = ws_rect.left;
|
428
|
785 move_p=1;
|
|
786 }
|
|
787
|
442
|
788 if (dest->top + pixel_height > ws_rect.bottom)
|
|
789 {
|
|
790 dest->top = ws_rect.bottom - pixel_height;
|
|
791 move_p=1;
|
|
792 }
|
|
793 if (dest->top < ws_rect.top)
|
|
794 {
|
|
795 dest->top = ws_rect.top;
|
|
796 move_p=1;
|
|
797 }
|
|
798
|
771
|
799 if (IsIconic (FRAME_MSWINDOWS_HANDLE (f))
|
|
800 || IsZoomed (FRAME_MSWINDOWS_HANDLE (f)))
|
|
801 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_RESTORE);
|
428
|
802
|
771
|
803 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), NULL,
|
428
|
804 dest->left, dest->top, pixel_width, pixel_height,
|
|
805 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING
|
|
806 | (size_p ? 0 : SWP_NOSIZE)
|
|
807 | (move_p ? 0 : SWP_NOMOVE));
|
|
808 }
|
|
809
|
|
810 static Lisp_Object
|
|
811 mswindows_get_frame_parent (struct frame *f)
|
|
812 {
|
771
|
813 HWND hwnd = FRAME_MSWINDOWS_HANDLE (f);
|
428
|
814 hwnd = GetParent (hwnd);
|
|
815 if (hwnd)
|
|
816 {
|
|
817 Lisp_Object parent;
|
826
|
818 parent = VOID_TO_LISP ((void *) qxeGetWindowLong (hwnd, XWL_FRAMEOBJ));
|
428
|
819 assert (FRAME_MSWINDOWS_P (XFRAME (parent)));
|
|
820 return parent;
|
|
821 }
|
|
822 else
|
|
823 return Qnil;
|
|
824 }
|
|
825
|
|
826 static void
|
2286
|
827 mswindows_update_frame_external_traits (struct frame *UNUSED (frm),
|
|
828 Lisp_Object UNUSED (name))
|
428
|
829 {
|
|
830 }
|
|
831
|
|
832 static int
|
|
833 mswindows_frame_size_fixed_p (struct frame *f)
|
|
834 {
|
|
835 /* Frame size cannot change if the frame is maximized */
|
|
836 return IsZoomed (FRAME_MSWINDOWS_HANDLE (f));
|
|
837 }
|
|
838
|
440
|
839 /*---------------------------------------------------------------------*/
|
|
840 /*----- PRINTER FRAME -----*/
|
|
841 /*---------------------------------------------------------------------*/
|
|
842
|
442
|
843 /*
|
|
844 * With some driver/os combination (I discovered this with HP drivers
|
|
845 * under W2K), DC geometry is reset upon StartDoc and EndPage
|
|
846 * calls. This is called every time one of these calls is made.
|
|
847 */
|
|
848 static void
|
|
849 apply_dc_geometry (struct frame* f)
|
|
850 {
|
|
851 HDC hdc = DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f)));
|
|
852 SetTextAlign (hdc, TA_BASELINE | TA_LEFT | TA_NOUPDATECP);
|
|
853 SetViewportOrgEx (hdc, FRAME_MSPRINTER_PIXLEFT(f),
|
|
854 FRAME_MSPRINTER_PIXTOP(f), NULL);
|
|
855 }
|
|
856
|
|
857 void
|
|
858 msprinter_start_page (struct frame *f)
|
|
859 {
|
|
860 if (!FRAME_MSPRINTER_PAGE_STARTED (f))
|
|
861 {
|
|
862 FRAME_MSPRINTER_PAGE_STARTED (f) = 1;
|
|
863 StartPage (DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f))));
|
|
864 apply_dc_geometry (f);
|
|
865 }
|
|
866 }
|
440
|
867
|
|
868 static void
|
|
869 error_frame_unsizable (struct frame *f)
|
|
870 {
|
793
|
871 Lisp_Object frame = wrap_frame (f);
|
|
872
|
442
|
873 invalid_change ("Cannot resize frame (margins) after print job has started.",
|
|
874 frame);
|
440
|
875 }
|
|
876
|
|
877 static void
|
|
878 maybe_error_if_job_active (struct frame *f)
|
|
879 {
|
|
880 if (FRAME_MSPRINTER_JOB_STARTED (f))
|
|
881 error_frame_unsizable (f);
|
|
882 }
|
|
883
|
|
884 static void
|
2286
|
885 msprinter_init_frame_1 (struct frame *f, Lisp_Object UNUSED (props),
|
|
886 int UNUSED (frame_name_is_defaulted))
|
440
|
887 {
|
|
888 /* Make sure this is the only frame on device. Windows printer can
|
|
889 handle only one job at a time. */
|
|
890 if (!NILP (DEVICE_FRAME_LIST (XDEVICE (FRAME_DEVICE (f)))))
|
442
|
891 invalid_operation ("Only one frame (print job) at a time is allowed on "
|
|
892 "this printer device", FRAME_DEVICE (f));
|
440
|
893
|
|
894 f->frame_data = xnew_and_zero (struct msprinter_frame);
|
|
895
|
506
|
896 FRAME_MSPRINTER_TOP_MARGIN (f) =
|
|
897 mswindows_get_default_margin (Qtop_margin);
|
|
898 FRAME_MSPRINTER_BOTTOM_MARGIN (f) =
|
|
899 mswindows_get_default_margin (Qbottom_margin);
|
|
900 FRAME_MSPRINTER_LEFT_MARGIN (f) =
|
|
901 mswindows_get_default_margin (Qleft_margin);
|
|
902 FRAME_MSPRINTER_RIGHT_MARGIN (f) =
|
|
903 mswindows_get_default_margin (Qright_margin);
|
440
|
904
|
|
905 /* Negative for "uinspecified" */
|
506
|
906 FRAME_MSPRINTER_CHARWIDTH (f) = -1;
|
|
907 FRAME_MSPRINTER_CHARHEIGHT (f) = -1;
|
440
|
908 }
|
|
909
|
|
910 static void
|
|
911 msprinter_init_frame_3 (struct frame *f)
|
|
912 {
|
771
|
913 DOCINFOW di;
|
440
|
914 struct device *device = XDEVICE (FRAME_DEVICE (f));
|
|
915 int frame_left, frame_top, frame_width, frame_height;
|
903
|
916
|
442
|
917 /* DC might be recreated in msprinter_apply_devmode,
|
|
918 so do not initialize until now */
|
903
|
919 HDC hdc = DEVICE_MSPRINTER_HDC (device);
|
|
920 int logpixelsx = GetDeviceCaps (hdc, LOGPIXELSX);
|
|
921 int logpixelsy = GetDeviceCaps (hdc, LOGPIXELSY);
|
|
922 int physicaloffsetx = GetDeviceCaps (hdc, PHYSICALOFFSETX);
|
|
923 int physicaloffsety = GetDeviceCaps (hdc, PHYSICALOFFSETY);
|
|
924 int physicalheight = GetDeviceCaps (hdc, PHYSICALHEIGHT);
|
|
925 int physicalwidth = GetDeviceCaps (hdc, PHYSICALWIDTH);
|
440
|
926
|
903
|
927 /* Compute geometry properties.
|
|
928 Conversion is from TWIPS -> inches -> pixels. */
|
|
929 frame_left = MulDiv (logpixelsx, FRAME_MSPRINTER_LEFT_MARGIN(f), 1440)
|
|
930 - physicaloffsetx;
|
|
931
|
771
|
932 if (FRAME_MSPRINTER_CHARWIDTH (f) > 0)
|
440
|
933 {
|
771
|
934 char_to_real_pixel_size (f, FRAME_MSPRINTER_CHARWIDTH (f), 0,
|
440
|
935 &frame_width, NULL);
|
903
|
936 FRAME_MSPRINTER_RIGHT_MARGIN(f) =
|
|
937 MulDiv (physicalwidth - (frame_left + frame_width), 1440,
|
|
938 logpixelsx);
|
442
|
939 }
|
440
|
940 else
|
903
|
941 frame_width = physicalwidth - frame_left
|
|
942 - MulDiv (logpixelsx, FRAME_MSPRINTER_RIGHT_MARGIN(f), 1440)
|
|
943 - physicaloffsetx;
|
440
|
944
|
903
|
945 frame_top = MulDiv (logpixelsy, FRAME_MSPRINTER_TOP_MARGIN(f), 1440)
|
|
946 - physicaloffsety;
|
440
|
947
|
771
|
948 if (FRAME_MSPRINTER_CHARHEIGHT (f) > 0)
|
440
|
949 {
|
771
|
950 char_to_real_pixel_size (f, 0, FRAME_MSPRINTER_CHARHEIGHT (f),
|
440
|
951 NULL, &frame_height);
|
|
952
|
903
|
953 FRAME_MSPRINTER_BOTTOM_MARGIN(f) =
|
|
954 MulDiv (physicalheight - (frame_top + frame_height), 1440,
|
|
955 logpixelsy);
|
442
|
956 }
|
440
|
957 else
|
903
|
958 frame_height = physicalheight - frame_top
|
|
959 - MulDiv (logpixelsy, FRAME_MSPRINTER_BOTTOM_MARGIN(f), 1440)
|
|
960 - physicaloffsety;
|
440
|
961
|
|
962 /* Geometry sanity checks */
|
|
963 if (!frame_pixsize_valid_p (f, frame_width, frame_height))
|
442
|
964 invalid_operation ("Area inside print margins has shrunk to naught",
|
|
965 STRINGP (f->name) ? f->name : Qunbound);
|
440
|
966
|
|
967 if (frame_left < 0
|
|
968 || frame_top < 0
|
|
969 || frame_left + frame_width > GetDeviceCaps (hdc, HORZRES)
|
|
970 || frame_top + frame_height > GetDeviceCaps (hdc, VERTRES))
|
546
|
971 invalid_operation ("Print area is outside of the printer's "
|
442
|
972 "hardware printable area",
|
|
973 STRINGP (f->name) ? f->name : Qunbound);
|
440
|
974
|
|
975 /* Apply XEmacs frame geometry and layout windows */
|
|
976 {
|
|
977 int rows, columns;
|
771
|
978 FRAME_PIXWIDTH (f) = frame_width;
|
|
979 FRAME_PIXHEIGHT (f) = frame_height;
|
440
|
980 pixel_to_char_size (f, frame_width, frame_height, &columns, &rows);
|
|
981 change_frame_size (f, rows, columns, 0);
|
|
982 }
|
|
983
|
442
|
984 FRAME_MSPRINTER_PIXLEFT(f) = frame_left;
|
|
985 FRAME_MSPRINTER_PIXTOP(f) = frame_top;
|
440
|
986
|
|
987 /* Start print job */
|
|
988 di.cbSize = sizeof (di);
|
771
|
989 {
|
|
990 const Extbyte *nameext;
|
|
991
|
|
992 if (STRINGP (f->name))
|
|
993 LISP_STRING_TO_TSTR (f->name, nameext);
|
|
994 else
|
|
995 nameext = XETEXT ("XEmacs print document");
|
|
996 di.lpszDocName = (XELPTSTR) nameext;
|
|
997 }
|
440
|
998 di.lpszOutput = NULL;
|
|
999 di.lpszDatatype = NULL;
|
|
1000 di.fwType = 0;
|
|
1001
|
771
|
1002 if (qxeStartDoc (hdc, &di) <= 0)
|
442
|
1003 invalid_operation ("Cannot start print job",
|
|
1004 STRINGP (f->name) ? f->name : Qunbound);
|
|
1005
|
|
1006 apply_dc_geometry (f);
|
440
|
1007
|
|
1008 /* Finish frame setup */
|
|
1009 FRAME_MSPRINTER_JOB_STARTED (f) = 1;
|
771
|
1010 FRAME_VISIBLE_P (f) = 0;
|
440
|
1011 }
|
|
1012
|
|
1013 static void
|
2286
|
1014 msprinter_mark_frame (struct frame *UNUSED (f))
|
440
|
1015 {
|
|
1016 }
|
|
1017
|
|
1018 static void
|
|
1019 msprinter_delete_frame (struct frame *f)
|
|
1020 {
|
|
1021 if (f->frame_data)
|
|
1022 {
|
442
|
1023 HDC hdc = DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f)));
|
|
1024 if (FRAME_MSPRINTER_PAGE_STARTED (f))
|
|
1025 EndPage (hdc);
|
440
|
1026 if (FRAME_MSPRINTER_JOB_STARTED (f))
|
442
|
1027 EndDoc (hdc);
|
1726
|
1028 xfree (f->frame_data, void *);
|
440
|
1029 }
|
|
1030
|
|
1031 f->frame_data = 0;
|
|
1032 }
|
|
1033
|
|
1034 static Lisp_Object
|
|
1035 msprinter_frame_property (struct frame *f, Lisp_Object property)
|
|
1036 {
|
|
1037 if (EQ (Qleft_margin, property))
|
771
|
1038 return make_int (FRAME_MSPRINTER_LEFT_MARGIN (f));
|
440
|
1039 else if (EQ (Qtop_margin, property))
|
771
|
1040 return make_int (FRAME_MSPRINTER_TOP_MARGIN (f));
|
440
|
1041 if (EQ (Qright_margin, property))
|
771
|
1042 return make_int (FRAME_MSPRINTER_RIGHT_MARGIN (f));
|
440
|
1043 else if (EQ (Qbottom_margin, property))
|
771
|
1044 return make_int (FRAME_MSPRINTER_BOTTOM_MARGIN (f));
|
440
|
1045 else
|
|
1046 return Qunbound;
|
|
1047 }
|
|
1048
|
|
1049 static int
|
2286
|
1050 msprinter_internal_frame_property_p (struct frame *UNUSED (f),
|
|
1051 Lisp_Object property)
|
440
|
1052 {
|
|
1053 return (EQ (Qleft_margin, property) || EQ (Qtop_margin, property) ||
|
442
|
1054 EQ (Qright_margin, property) || EQ (Qbottom_margin, property));
|
440
|
1055 }
|
|
1056
|
|
1057 static Lisp_Object
|
|
1058 msprinter_frame_properties (struct frame *f)
|
|
1059 {
|
|
1060 Lisp_Object props = Qnil;
|
|
1061 props = cons3 (Qbottom_margin,
|
771
|
1062 make_int (FRAME_MSPRINTER_BOTTOM_MARGIN (f)), props);
|
440
|
1063 props = cons3 (Qright_margin,
|
771
|
1064 make_int (FRAME_MSPRINTER_RIGHT_MARGIN (f)), props);
|
440
|
1065 props = cons3 (Qtop_margin,
|
771
|
1066 make_int (FRAME_MSPRINTER_TOP_MARGIN (f)), props);
|
440
|
1067 props = cons3 (Qleft_margin,
|
771
|
1068 make_int (FRAME_MSPRINTER_LEFT_MARGIN (f)), props);
|
440
|
1069 return props;
|
|
1070 }
|
|
1071
|
|
1072 static void
|
|
1073 msprinter_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
1074 {
|
|
1075 Lisp_Object tail;
|
|
1076
|
|
1077 /* Extract the properties from plist */
|
|
1078 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
1079 {
|
|
1080 Lisp_Object prop = Fcar (tail);
|
|
1081 Lisp_Object val = Fcar (Fcdr (tail));
|
|
1082
|
|
1083 if (SYMBOLP (prop))
|
|
1084 {
|
|
1085 if (EQ (prop, Qwidth))
|
|
1086 {
|
|
1087 maybe_error_if_job_active (f);
|
|
1088 if (!NILP (val))
|
|
1089 {
|
|
1090 CHECK_NATNUM (val);
|
771
|
1091 FRAME_MSPRINTER_CHARWIDTH (f) = XINT (val);
|
440
|
1092 }
|
|
1093 }
|
|
1094 if (EQ (prop, Qheight))
|
|
1095 {
|
|
1096 maybe_error_if_job_active (f);
|
|
1097 if (!NILP (val))
|
|
1098 {
|
|
1099 CHECK_NATNUM (val);
|
771
|
1100 FRAME_MSPRINTER_CHARHEIGHT (f) = XINT (val);
|
440
|
1101 }
|
|
1102 }
|
|
1103 else if (EQ (prop, Qleft_margin))
|
|
1104 {
|
|
1105 maybe_error_if_job_active (f);
|
|
1106 CHECK_NATNUM (val);
|
771
|
1107 FRAME_MSPRINTER_LEFT_MARGIN (f) = XINT (val);
|
440
|
1108 }
|
|
1109 else if (EQ (prop, Qtop_margin))
|
|
1110 {
|
|
1111 maybe_error_if_job_active (f);
|
|
1112 CHECK_NATNUM (val);
|
771
|
1113 FRAME_MSPRINTER_TOP_MARGIN (f) = XINT (val);
|
440
|
1114 }
|
|
1115 else if (EQ (prop, Qright_margin))
|
|
1116 {
|
|
1117 maybe_error_if_job_active (f);
|
|
1118 CHECK_NATNUM (val);
|
771
|
1119 FRAME_MSPRINTER_RIGHT_MARGIN (f) = XINT (val);
|
440
|
1120 }
|
|
1121 else if (EQ (prop, Qbottom_margin))
|
|
1122 {
|
|
1123 maybe_error_if_job_active (f);
|
|
1124 CHECK_NATNUM (val);
|
771
|
1125 FRAME_MSPRINTER_BOTTOM_MARGIN (f) = XINT (val);
|
440
|
1126 }
|
|
1127 }
|
|
1128 }
|
|
1129 }
|
|
1130
|
|
1131 static void
|
2286
|
1132 msprinter_set_frame_size (struct frame *f, int UNUSED (width),
|
|
1133 int UNUSED (height))
|
440
|
1134 {
|
|
1135 /* We're absolutely unsizeable */
|
|
1136 error_frame_unsizable (f);
|
|
1137 }
|
|
1138
|
442
|
1139 static void
|
|
1140 msprinter_eject_page (struct frame *f)
|
|
1141 {
|
|
1142 /* #### Should we eject empty pages? */
|
|
1143 if (FRAME_MSPRINTER_PAGE_STARTED (f))
|
|
1144 {
|
|
1145 FRAME_MSPRINTER_PAGE_STARTED (f) = 0;
|
|
1146 EndPage (DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f))));
|
|
1147 apply_dc_geometry (f);
|
|
1148 }
|
|
1149 }
|
|
1150
|
|
1151
|
428
|
1152 void
|
|
1153 console_type_create_frame_mswindows (void)
|
|
1154 {
|
440
|
1155 /* Display frames */
|
428
|
1156 CONSOLE_HAS_METHOD (mswindows, init_frame_1);
|
442
|
1157 CONSOLE_HAS_METHOD (mswindows, init_frame_2);
|
428
|
1158 CONSOLE_HAS_METHOD (mswindows, init_frame_3);
|
|
1159 CONSOLE_HAS_METHOD (mswindows, after_init_frame);
|
|
1160 CONSOLE_HAS_METHOD (mswindows, mark_frame);
|
|
1161 CONSOLE_HAS_METHOD (mswindows, focus_on_frame);
|
|
1162 CONSOLE_HAS_METHOD (mswindows, delete_frame);
|
|
1163 CONSOLE_HAS_METHOD (mswindows, get_mouse_position);
|
|
1164 CONSOLE_HAS_METHOD (mswindows, set_mouse_position);
|
|
1165 CONSOLE_HAS_METHOD (mswindows, raise_frame);
|
|
1166 CONSOLE_HAS_METHOD (mswindows, lower_frame);
|
442
|
1167 CONSOLE_HAS_METHOD (mswindows, enable_frame);
|
|
1168 CONSOLE_HAS_METHOD (mswindows, disable_frame);
|
428
|
1169 CONSOLE_HAS_METHOD (mswindows, make_frame_visible);
|
|
1170 CONSOLE_HAS_METHOD (mswindows, make_frame_invisible);
|
|
1171 CONSOLE_HAS_METHOD (mswindows, iconify_frame);
|
|
1172 CONSOLE_HAS_METHOD (mswindows, set_frame_size);
|
|
1173 CONSOLE_HAS_METHOD (mswindows, set_frame_position);
|
|
1174 CONSOLE_HAS_METHOD (mswindows, frame_property);
|
|
1175 CONSOLE_HAS_METHOD (mswindows, internal_frame_property_p);
|
|
1176 CONSOLE_HAS_METHOD (mswindows, frame_properties);
|
|
1177 CONSOLE_HAS_METHOD (mswindows, set_frame_properties);
|
867
|
1178 CONSOLE_HAS_METHOD (mswindows, set_title_from_ibyte);
|
|
1179 /* CONSOLE_HAS_METHOD (mswindows, set_icon_name_from_ibyte); */
|
428
|
1180 CONSOLE_HAS_METHOD (mswindows, frame_visible_p);
|
|
1181 CONSOLE_HAS_METHOD (mswindows, frame_totally_visible_p);
|
|
1182 CONSOLE_HAS_METHOD (mswindows, frame_iconified_p);
|
442
|
1183 CONSOLE_HAS_METHOD (mswindows, set_frame_pointer);
|
|
1184 CONSOLE_HAS_METHOD (mswindows, set_frame_icon);
|
428
|
1185 CONSOLE_HAS_METHOD (mswindows, get_frame_parent);
|
|
1186 CONSOLE_HAS_METHOD (mswindows, update_frame_external_traits);
|
|
1187 CONSOLE_HAS_METHOD (mswindows, frame_size_fixed_p);
|
440
|
1188
|
|
1189 /* Printer frames, aka print jobs */
|
|
1190 CONSOLE_HAS_METHOD (msprinter, init_frame_1);
|
|
1191 CONSOLE_HAS_METHOD (msprinter, init_frame_3);
|
|
1192 CONSOLE_HAS_METHOD (msprinter, mark_frame);
|
|
1193 CONSOLE_HAS_METHOD (msprinter, delete_frame);
|
|
1194 CONSOLE_HAS_METHOD (msprinter, frame_property);
|
|
1195 CONSOLE_HAS_METHOD (msprinter, internal_frame_property_p);
|
|
1196 CONSOLE_HAS_METHOD (msprinter, frame_properties);
|
|
1197 CONSOLE_HAS_METHOD (msprinter, set_frame_properties);
|
|
1198 CONSOLE_HAS_METHOD (msprinter, set_frame_size);
|
442
|
1199 CONSOLE_HAS_METHOD (msprinter, eject_page);
|
428
|
1200 }
|
|
1201
|
|
1202 void
|
|
1203 syms_of_frame_mswindows (void)
|
|
1204 {
|
3092
|
1205 #ifdef NEW_GC
|
|
1206 INIT_LRECORD_IMPLEMENTATION (mswindows_frame);
|
|
1207 #endif /* NEW_GC */
|
428
|
1208 }
|
|
1209
|
|
1210 void
|
|
1211 reinit_vars_of_frame_mswindows (void)
|
|
1212 {
|
|
1213 /* Needn't staticpro -- see comment above. */
|
|
1214 Vmswindows_frame_being_created = Qnil;
|
|
1215 }
|
|
1216
|
|
1217 void
|
|
1218 vars_of_frame_mswindows (void)
|
|
1219 {
|
|
1220 DEFVAR_LISP ("mswindows-use-system-frame-size-defaults", &Vmswindows_use_system_frame_size_defaults /*
|
|
1221 Controls whether to use system or XEmacs defaults for frame size.
|
442
|
1222 If nil then reasonable defaults are used for initial frame sizes. If t
|
428
|
1223 then the system will choose default sizes for the frame.
|
|
1224 */ );
|
|
1225 Vmswindows_use_system_frame_size_defaults = Qnil;
|
442
|
1226
|
428
|
1227 DEFVAR_LISP ("default-mswindows-frame-plist", &Vdefault_mswindows_frame_plist /*
|
|
1228 Plist of default frame-creation properties for mswindows frames.
|
|
1229 These override what is specified in `default-frame-plist', but are
|
|
1230 overridden by the arguments to the particular call to `make-frame'.
|
|
1231
|
|
1232 Note: In many cases, properties of a frame are available as specifiers
|
|
1233 instead of through the frame-properties mechanism.
|
|
1234
|
|
1235 Here is a list of recognized frame properties, other than those
|
|
1236 documented in `set-frame-properties' (they can be queried and
|
|
1237 set at any time, except as otherwise noted):
|
|
1238
|
|
1239 initially-unmapped If non-nil, the frame will not be visible
|
|
1240 when it is created. In this case, you
|
|
1241 need to call `make-frame-visible' to make
|
|
1242 the frame appear.
|
|
1243 popup If non-nil, it should be a frame, and this
|
|
1244 frame will be created as a "popup" frame
|
|
1245 whose parent is the given frame. This
|
|
1246 will make the window manager treat the
|
|
1247 frame as a dialog box, which may entail
|
|
1248 doing different things (e.g. not asking
|
|
1249 for positioning, and not iconifying
|
|
1250 separate from its parent).
|
|
1251 top Y position (in pixels) of the upper-left
|
|
1252 outermost corner of the frame (i.e. the
|
|
1253 upper-left of the window-manager
|
|
1254 decorations).
|
|
1255 left X position (in pixels) of the upper-left
|
|
1256 outermost corner of the frame (i.e. the
|
|
1257 upper-left of the window-manager
|
|
1258 decorations).
|
3022
|
1259 window-id Window handle (HWND) of the frame.
|
|
1260 Cannot be set.
|
428
|
1261
|
|
1262 See also `default-frame-plist', which specifies properties which apply
|
|
1263 to all frames, not just mswindows frames.
|
|
1264 */ );
|
|
1265 Vdefault_mswindows_frame_plist = Qnil;
|
|
1266
|
|
1267 mswindows_console_methods->device_specific_frame_props =
|
|
1268 &Vdefault_mswindows_frame_plist;
|
440
|
1269
|
|
1270 DEFVAR_LISP ("default-msprinter-frame-plist", &Vdefault_msprinter_frame_plist /*
|
|
1271 Plist of default frame-creation properties for msprinter print job frames.
|
|
1272 These override what is specified in `default-frame-plist', but are
|
|
1273 overridden by the arguments to the particular call to `make-frame'.
|
|
1274
|
|
1275 Note: In many cases, properties of a frame are available as specifiers
|
|
1276 instead of through the frame-properties mechanism.
|
|
1277
|
|
1278 Here is a list of recognized frame properties, other than those
|
|
1279 documented in `set-frame-properties' (they can be queried and
|
|
1280 set at any time, except as otherwise noted):
|
|
1281
|
|
1282 left-margin Margin of the page, in twips. Twip is a
|
|
1283 top-margin typographical unit of measurement,
|
|
1284 right-margin equal to 1/1440 of an inch, or 1/20 of a
|
|
1285 bottom-margin point, and roughly equal to 7/400 of a
|
506
|
1286 millimeter. If not specified, the left
|
|
1287 and right margins default to 1 inch
|
|
1288 (25.4 mm) and the top and bottom margins
|
|
1289 to 0.5 inch (12.7 mm).
|
440
|
1290
|
|
1291 MARGINS NOTE. right-margin and bottom-margin are overridden by
|
|
1292 the height and width properties. If you want to specify size
|
|
1293 of the printable area in character, as with the rest of XEmacs,
|
|
1294 use these properties. If height and/or width are nil, then
|
|
1295 corresponding margin setting is taken into account. If you
|
|
1296 specify height and/or width in `default-frame-plist', but still
|
|
1297 want to specify right/bottom margins, set height/width in this
|
|
1298 plist to nil, as in this example:
|
|
1299
|
506
|
1300 (setq default-frame-plist '(height 55 width 80)
|
|
1301 default-msprinter-frame-plist '(height nil width nil))
|
440
|
1302
|
|
1303 See also `default-frame-plist', which specifies properties which apply
|
|
1304 to all frames, not just mswindows frames.
|
|
1305 */ );
|
|
1306 Vdefault_msprinter_frame_plist = Qnil;
|
|
1307
|
|
1308 msprinter_console_methods->device_specific_frame_props =
|
|
1309 &Vdefault_msprinter_frame_plist;
|
428
|
1310 }
|