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));
|
4117
|
356 #ifndef NEW_GC
|
1726
|
357 xfree (f->frame_data, void *);
|
3092
|
358 #endif /* not NEW_GC */
|
428
|
359 }
|
|
360 f->frame_data = 0;
|
|
361 }
|
|
362
|
|
363 static void
|
|
364 mswindows_set_frame_size (struct frame *f, int width, int height)
|
|
365 {
|
|
366 RECT rect;
|
1395
|
367 int columns, rows;
|
|
368
|
428
|
369 rect.left = rect.top = 0;
|
|
370 rect.right = width;
|
|
371 rect.bottom = height;
|
|
372
|
1395
|
373 pixel_to_char_size (f, rect.right, rect.bottom, &columns, &rows);
|
|
374 change_frame_size (f, rows, columns, 0);
|
|
375
|
1318
|
376 /* This can call Lisp, because it runs the window procedure, which can
|
|
377 call redisplay() */
|
428
|
378 AdjustWindowRectEx (&rect,
|
771
|
379 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_STYLE),
|
|
380 GetMenu (FRAME_MSWINDOWS_HANDLE (f)) != NULL,
|
|
381 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_EXSTYLE));
|
428
|
382
|
2872
|
383 if (IsIconic (FRAME_MSWINDOWS_HANDLE (f)))
|
771
|
384 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_RESTORE);
|
428
|
385
|
771
|
386 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), NULL,
|
428
|
387 0, 0, rect.right-rect.left, rect.bottom-rect.top,
|
|
388 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING | SWP_NOMOVE);
|
|
389 }
|
|
390
|
|
391 static void
|
|
392 mswindows_set_frame_position (struct frame *f, int xoff, int yoff)
|
|
393 {
|
771
|
394 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), NULL,
|
428
|
395 xoff, yoff, 0, 0,
|
|
396 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING | SWP_NOSIZE);
|
|
397 }
|
|
398
|
|
399 static void
|
442
|
400 mswindows_make_frame_visible (struct frame *f)
|
428
|
401 {
|
771
|
402 if (!FRAME_VISIBLE_P (f))
|
|
403 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_RESTORE);
|
428
|
404 else
|
771
|
405 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_SHOW);
|
|
406 SetActiveWindow (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
407 f->visible = 1;
|
|
408 f->iconified = 0;
|
|
409 }
|
|
410
|
|
411 static void
|
442
|
412 mswindows_make_frame_invisible (struct frame *f)
|
428
|
413 {
|
771
|
414 if (!FRAME_VISIBLE_P (f))
|
428
|
415 return;
|
|
416
|
771
|
417 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_HIDE);
|
428
|
418 f->visible = 0;
|
|
419 }
|
|
420
|
|
421 static int
|
|
422 mswindows_frame_totally_visible_p (struct frame *f)
|
|
423 {
|
|
424 RECT rc_me, rc_other, rc_temp;
|
771
|
425 HWND hwnd = FRAME_MSWINDOWS_HANDLE (f);
|
428
|
426
|
|
427 /* We test against not a whole window rectangle, only against its
|
|
428 client part. So, if non-client are is covered and client area is
|
|
429 not, we return true. */
|
|
430 GetClientRect (hwnd, &rc_me);
|
2367
|
431 MapWindowPoints (hwnd, HWND_DESKTOP, (LPPOINT) (void *) (&rc_me), 2);
|
428
|
432
|
|
433 /* First see if we're off the desktop */
|
771
|
434 GetWindowRect (GetDesktopWindow (), &rc_other);
|
|
435 UnionRect (&rc_temp, &rc_me, &rc_other);
|
428
|
436 if (!EqualRect (&rc_temp, &rc_other))
|
|
437 return 0;
|
442
|
438
|
428
|
439 /* Then see if any window above us obscures us */
|
|
440 while ((hwnd = GetWindow (hwnd, GW_HWNDPREV)) != NULL)
|
|
441 if (IsWindowVisible (hwnd))
|
|
442 {
|
|
443 GetWindowRect (hwnd, &rc_other);
|
771
|
444 if (IntersectRect (&rc_temp, &rc_me, &rc_other))
|
428
|
445 return 0;
|
|
446 }
|
|
447
|
|
448 return 1;
|
|
449 }
|
|
450
|
|
451 static int
|
|
452 mswindows_frame_visible_p (struct frame *f)
|
|
453 {
|
771
|
454 return IsWindowVisible (FRAME_MSWINDOWS_HANDLE (f))
|
|
455 && !IsIconic (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
456 }
|
|
457
|
|
458
|
|
459 static void
|
|
460 mswindows_iconify_frame (struct frame *f)
|
|
461 {
|
771
|
462 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_MINIMIZE);
|
428
|
463 f->visible = 0;
|
|
464 f->iconified = 1;
|
|
465 }
|
|
466
|
|
467 static int
|
|
468 mswindows_frame_iconified_p (struct frame *f)
|
|
469 {
|
771
|
470 return IsIconic (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
471 }
|
|
472
|
|
473 static void
|
|
474 mswindows_set_frame_icon (struct frame *f)
|
|
475 {
|
|
476 if (IMAGE_INSTANCEP (f->icon)
|
|
477 && IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (f->icon)))
|
|
478 {
|
|
479 if (!XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon))
|
|
480 {
|
442
|
481 mswindows_initialize_image_instance_icon (XIMAGE_INSTANCE (f->icon),
|
428
|
482 FALSE);
|
|
483 }
|
442
|
484
|
771
|
485 qxeSetClassLong (FRAME_MSWINDOWS_HANDLE (f), GCL_HICON,
|
|
486 (LONG) XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon));
|
428
|
487 }
|
|
488 }
|
|
489
|
|
490 static void
|
|
491 mswindows_set_frame_pointer (struct frame *f)
|
|
492 {
|
|
493 if (IMAGE_INSTANCEP (f->pointer)
|
|
494 && IMAGE_INSTANCE_TYPE (XIMAGE_INSTANCE (f->pointer)) == IMAGE_POINTER)
|
|
495 {
|
771
|
496 qxeSetClassLong (FRAME_MSWINDOWS_HANDLE (f), GCL_HCURSOR,
|
|
497 (LONG) XIMAGE_INSTANCE_MSWINDOWS_ICON (f->pointer));
|
428
|
498 /* we only have to do this because GC doesn't cause a mouse
|
|
499 event and doesn't give time to event processing even if it
|
|
500 did. */
|
|
501 SetCursor (XIMAGE_INSTANCE_MSWINDOWS_ICON (f->pointer));
|
|
502 }
|
|
503 }
|
|
504
|
|
505 static void
|
|
506 mswindows_set_mouse_position (struct window *w, int x, int y)
|
|
507 {
|
|
508 struct frame *f = XFRAME (w->frame);
|
|
509 POINT pt;
|
|
510
|
|
511 pt.x = w->pixel_left + x;
|
|
512 pt.y = w->pixel_top + y;
|
771
|
513 ClientToScreen (FRAME_MSWINDOWS_HANDLE (f), &pt);
|
428
|
514 SetCursorPos (pt.x, pt.y);
|
|
515 }
|
|
516
|
|
517 static int
|
2286
|
518 mswindows_get_mouse_position (struct device *UNUSED (d), Lisp_Object *frame,
|
|
519 int *x, int *y)
|
428
|
520 {
|
|
521 POINT pt;
|
|
522 HWND hwnd;
|
|
523
|
|
524 GetCursorPos (&pt);
|
|
525
|
|
526 /* What's under cursor? */
|
|
527 hwnd = WindowFromPoint (pt);
|
|
528 if (hwnd == NULL)
|
|
529 return 0;
|
|
530
|
|
531 /* Get grandest parent of the window */
|
|
532 {
|
|
533 HWND hwnd_parent;
|
|
534 while ((hwnd_parent = GetParent (hwnd)) != NULL)
|
|
535 hwnd = hwnd_parent;
|
|
536 }
|
|
537
|
|
538 /* Make sure it belongs to us */
|
|
539 if (GetWindowThreadProcessId (hwnd, NULL) != GetCurrentThreadId ())
|
|
540 return 0;
|
|
541
|
|
542 /* And that the window is an XEmacs frame */
|
771
|
543 if (!mswindows_window_is_xemacs (hwnd))
|
|
544 return 0;
|
428
|
545
|
|
546 /* Yippie! */
|
|
547 ScreenToClient (hwnd, &pt);
|
826
|
548 *frame = VOID_TO_LISP ((void *) qxeGetWindowLong (hwnd, XWL_FRAMEOBJ));
|
428
|
549 *x = pt.x;
|
|
550 *y = pt.y;
|
|
551 return 1;
|
|
552 }
|
|
553
|
|
554 static void
|
|
555 mswindows_raise_frame (struct frame *f)
|
|
556 {
|
771
|
557 BringWindowToTop (FRAME_MSWINDOWS_HANDLE (f));
|
428
|
558 }
|
|
559
|
|
560 static void
|
|
561 mswindows_lower_frame (struct frame *f)
|
|
562 {
|
771
|
563 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), HWND_BOTTOM, 0, 0, 0, 0,
|
428
|
564 SWP_NOSIZE | SWP_NOMOVE | SWP_NOSENDCHANGING);
|
|
565 }
|
|
566
|
|
567 static void
|
442
|
568 mswindows_enable_frame (struct frame *f)
|
|
569 {
|
|
570 EnableWindow (FRAME_MSWINDOWS_HANDLE (f), TRUE);
|
|
571 }
|
|
572
|
|
573 static void
|
|
574 mswindows_disable_frame (struct frame *f)
|
|
575 {
|
|
576 EnableWindow (FRAME_MSWINDOWS_HANDLE (f), FALSE);
|
|
577 }
|
|
578
|
|
579 static void
|
867
|
580 mswindows_set_title_from_ibyte (struct frame *f, Ibyte *title)
|
428
|
581 {
|
771
|
582 unsigned int new_checksum = hash_string (title, qxestrlen (title));
|
593
|
583 if (new_checksum != FRAME_MSWINDOWS_TITLE_CHECKSUM (f))
|
428
|
584 {
|
593
|
585 Extbyte *title_ext;
|
|
586
|
|
587 FRAME_MSWINDOWS_TITLE_CHECKSUM (f) = new_checksum;
|
771
|
588 C_STRING_TO_TSTR (title, title_ext);
|
|
589 qxeSetWindowText (FRAME_MSWINDOWS_HANDLE (f), title_ext);
|
428
|
590 }
|
|
591 }
|
|
592
|
|
593 static Lisp_Object
|
3022
|
594 mswindows_window_id (Lisp_Object frame)
|
|
595 {
|
|
596 Ibyte str[255];
|
|
597 struct frame *f = decode_mswindows_frame (frame);
|
|
598
|
3023
|
599 qxesprintf (str, "%lu", (unsigned long) FRAME_MSWINDOWS_HANDLE (f));
|
3022
|
600 return build_intstring (str);
|
|
601 }
|
|
602
|
|
603 static Lisp_Object
|
428
|
604 mswindows_frame_property (struct frame *f, Lisp_Object property)
|
|
605 {
|
|
606 if (EQ (Qleft, property) || EQ (Qtop, property))
|
|
607 {
|
|
608 RECT rc;
|
771
|
609 GetWindowRect (FRAME_MSWINDOWS_HANDLE (f), &rc);
|
428
|
610 return make_int (EQ (Qtop, property) ? rc.top : rc.left);
|
|
611 }
|
3022
|
612 if (EQ (Qwindow_id, property))
|
|
613 return mswindows_window_id (wrap_frame (f));
|
|
614
|
428
|
615 return Qunbound;
|
|
616 }
|
|
617
|
|
618 static int
|
2286
|
619 mswindows_internal_frame_property_p (struct frame *UNUSED (f),
|
|
620 Lisp_Object property)
|
428
|
621 {
|
|
622 return EQ (property, Qleft)
|
3022
|
623 || EQ (property, Qtop)
|
|
624 || EQ (property, Qwindow_id);
|
428
|
625 /* #### frame-x.c has also this. Why?
|
|
626 || STRINGP (property);
|
|
627 */
|
|
628 }
|
|
629
|
|
630 static Lisp_Object
|
|
631 mswindows_frame_properties (struct frame *f)
|
|
632 {
|
|
633 Lisp_Object props = Qnil;
|
|
634 RECT rc;
|
771
|
635 GetWindowRect (FRAME_MSWINDOWS_HANDLE (f), &rc);
|
428
|
636
|
|
637 props = cons3 (Qtop, make_int (rc.top), props);
|
|
638 props = cons3 (Qleft, make_int (rc.left), props);
|
3022
|
639 props = cons3 (Qwindow_id, mswindows_window_id (wrap_frame (f)), props);
|
428
|
640
|
|
641 return props;
|
|
642 }
|
|
643
|
|
644 static void
|
|
645 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
646 {
|
|
647 int x=-1, y=-1;
|
|
648 int width = -1, height = -1;
|
|
649 BOOL width_specified_p = FALSE;
|
|
650 BOOL height_specified_p = FALSE;
|
|
651 BOOL x_specified_p = FALSE;
|
|
652 BOOL y_specified_p = FALSE;
|
|
653 Lisp_Object tail;
|
|
654
|
|
655 /* Extract the properties from plist */
|
|
656 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
657 {
|
|
658 Lisp_Object prop = Fcar (tail);
|
|
659 Lisp_Object val = Fcar (Fcdr (tail));
|
|
660
|
|
661 if (SYMBOLP (prop))
|
|
662 {
|
|
663 /* Kludge to handle the font property. */
|
|
664 if (EQ (prop, Qfont))
|
|
665 {
|
|
666 /* If the value is not a string we silently ignore it. */
|
|
667 if (STRINGP (val))
|
|
668 {
|
|
669 Lisp_Object frm, font_spec;
|
442
|
670
|
793
|
671 frm = wrap_frame (f);
|
428
|
672 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
|
|
673
|
|
674 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
|
|
675 update_frame_face_values (f);
|
|
676 }
|
|
677 }
|
|
678 else if (EQ (prop, Qwidth))
|
|
679 {
|
|
680 CHECK_INT (val);
|
|
681 width = XINT (val);
|
|
682 width_specified_p = TRUE;
|
|
683 }
|
|
684 else if (EQ (prop, Qheight))
|
|
685 {
|
|
686 CHECK_INT (val);
|
|
687 height = XINT (val);
|
|
688 height_specified_p = TRUE;
|
|
689 }
|
|
690 else if (EQ (prop, Qleft))
|
|
691 {
|
|
692 CHECK_INT (val);
|
|
693 x = XINT (val);
|
|
694 x_specified_p = TRUE;
|
|
695 }
|
|
696 else if (EQ (prop, Qtop))
|
|
697 {
|
|
698 CHECK_INT (val);
|
|
699 y = XINT (val);
|
|
700 y_specified_p = TRUE;
|
|
701 }
|
|
702 }
|
|
703 }
|
|
704
|
|
705 /* Now we've extracted the properties, apply them.
|
|
706 Do not apply geometric properties during frame creation. This
|
442
|
707 is excessive anyways, and this loses because WM_SIZE has not
|
428
|
708 been sent yet, so frame width and height fields are not initialized.
|
442
|
709
|
428
|
710 unfortunately WM_SIZE loses as well since the resize is only
|
|
711 applied once and the first time WM_SIZE is applied not everything
|
|
712 is initialised in the frame (toolbars for instance). enabling
|
|
713 this always makes no visible difference and fixes a whole host of
|
|
714 bugs (and is more consistent with X) so I am going to reenable it.
|
|
715 --andyp */
|
|
716 if ( FRAME_PIXWIDTH (f) && FRAME_PIXHEIGHT (f)
|
440
|
717 && (width_specified_p || height_specified_p
|
|
718 || x_specified_p || y_specified_p))
|
428
|
719 {
|
|
720 XEMACS_RECT_WH dest = { x, y, width, height };
|
|
721
|
|
722 mswindows_size_frame_internal (f, &dest);
|
|
723 }
|
|
724 }
|
|
725
|
506
|
726 void
|
771
|
727 mswindows_size_frame_internal (struct frame *f, XEMACS_RECT_WH *dest)
|
428
|
728 {
|
442
|
729 RECT rect, ws_rect;
|
428
|
730 int pixel_width, pixel_height;
|
|
731 int size_p = (dest->width >=0 || dest->height >=0);
|
|
732 int move_p = (dest->top >=0 || dest->left >=0);
|
506
|
733 char_to_real_pixel_size (f, dest->width, dest->height, &pixel_width,
|
|
734 &pixel_height);
|
442
|
735
|
428
|
736 if (dest->width < 0)
|
|
737 pixel_width = FRAME_PIXWIDTH (f);
|
|
738 if (dest->height < 0)
|
|
739 pixel_height = FRAME_PIXHEIGHT (f);
|
|
740
|
771
|
741 GetWindowRect (FRAME_MSWINDOWS_HANDLE (f), &rect);
|
428
|
742 if (dest->left < 0)
|
|
743 dest->left = rect.left;
|
|
744 if (dest->top < 0)
|
|
745 dest->top = rect.top;
|
442
|
746
|
428
|
747 rect.left = rect.top = 0;
|
|
748 rect.right = pixel_width;
|
|
749 rect.bottom = pixel_height;
|
|
750
|
|
751 AdjustWindowRectEx (&rect,
|
771
|
752 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_STYLE),
|
|
753 GetMenu (FRAME_MSWINDOWS_HANDLE (f)) != NULL,
|
|
754 qxeGetWindowLong (FRAME_MSWINDOWS_HANDLE (f), GWL_EXSTYLE));
|
428
|
755
|
442
|
756 /* resize and move the window so that it fits in the workspace. This is
|
428
|
757 not restrictive since this will happen later anyway in WM_SIZE. We
|
|
758 have to do this after adjusting the rect to account for menubar
|
|
759 etc. */
|
442
|
760 mswindows_get_workspace_coords (&ws_rect);
|
428
|
761 pixel_width = rect.right - rect.left;
|
|
762 pixel_height = rect.bottom - rect.top;
|
442
|
763 if (pixel_width > ws_rect.right - ws_rect.left)
|
428
|
764 {
|
442
|
765 pixel_width = ws_rect.right - ws_rect.left;
|
428
|
766 size_p=1;
|
|
767 }
|
442
|
768 if (pixel_height > ws_rect.bottom - ws_rect.top)
|
428
|
769 {
|
442
|
770 pixel_height = ws_rect.bottom - ws_rect.top;
|
428
|
771 size_p=1;
|
|
772 }
|
|
773
|
442
|
774 /* adjust position so window is in workspace */
|
|
775 if (dest->left + pixel_width > ws_rect.right)
|
428
|
776 {
|
442
|
777 dest->left = ws_rect.right - pixel_width;
|
428
|
778 move_p=1;
|
|
779 }
|
442
|
780 if (dest->left < ws_rect.left)
|
428
|
781 {
|
442
|
782 dest->left = ws_rect.left;
|
428
|
783 move_p=1;
|
|
784 }
|
|
785
|
442
|
786 if (dest->top + pixel_height > ws_rect.bottom)
|
|
787 {
|
|
788 dest->top = ws_rect.bottom - pixel_height;
|
|
789 move_p=1;
|
|
790 }
|
|
791 if (dest->top < ws_rect.top)
|
|
792 {
|
|
793 dest->top = ws_rect.top;
|
|
794 move_p=1;
|
|
795 }
|
|
796
|
771
|
797 if (IsIconic (FRAME_MSWINDOWS_HANDLE (f))
|
|
798 || IsZoomed (FRAME_MSWINDOWS_HANDLE (f)))
|
|
799 ShowWindow (FRAME_MSWINDOWS_HANDLE (f), SW_RESTORE);
|
428
|
800
|
771
|
801 SetWindowPos (FRAME_MSWINDOWS_HANDLE (f), NULL,
|
428
|
802 dest->left, dest->top, pixel_width, pixel_height,
|
|
803 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING
|
|
804 | (size_p ? 0 : SWP_NOSIZE)
|
|
805 | (move_p ? 0 : SWP_NOMOVE));
|
|
806 }
|
|
807
|
|
808 static Lisp_Object
|
|
809 mswindows_get_frame_parent (struct frame *f)
|
|
810 {
|
771
|
811 HWND hwnd = FRAME_MSWINDOWS_HANDLE (f);
|
428
|
812 hwnd = GetParent (hwnd);
|
|
813 if (hwnd)
|
|
814 {
|
|
815 Lisp_Object parent;
|
826
|
816 parent = VOID_TO_LISP ((void *) qxeGetWindowLong (hwnd, XWL_FRAMEOBJ));
|
428
|
817 assert (FRAME_MSWINDOWS_P (XFRAME (parent)));
|
|
818 return parent;
|
|
819 }
|
|
820 else
|
|
821 return Qnil;
|
|
822 }
|
|
823
|
|
824 static void
|
2286
|
825 mswindows_update_frame_external_traits (struct frame *UNUSED (frm),
|
|
826 Lisp_Object UNUSED (name))
|
428
|
827 {
|
|
828 }
|
|
829
|
|
830 static int
|
|
831 mswindows_frame_size_fixed_p (struct frame *f)
|
|
832 {
|
|
833 /* Frame size cannot change if the frame is maximized */
|
|
834 return IsZoomed (FRAME_MSWINDOWS_HANDLE (f));
|
|
835 }
|
|
836
|
440
|
837 /*---------------------------------------------------------------------*/
|
|
838 /*----- PRINTER FRAME -----*/
|
|
839 /*---------------------------------------------------------------------*/
|
|
840
|
442
|
841 /*
|
|
842 * With some driver/os combination (I discovered this with HP drivers
|
|
843 * under W2K), DC geometry is reset upon StartDoc and EndPage
|
|
844 * calls. This is called every time one of these calls is made.
|
|
845 */
|
|
846 static void
|
|
847 apply_dc_geometry (struct frame* f)
|
|
848 {
|
|
849 HDC hdc = DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f)));
|
|
850 SetTextAlign (hdc, TA_BASELINE | TA_LEFT | TA_NOUPDATECP);
|
|
851 SetViewportOrgEx (hdc, FRAME_MSPRINTER_PIXLEFT(f),
|
|
852 FRAME_MSPRINTER_PIXTOP(f), NULL);
|
|
853 }
|
|
854
|
|
855 void
|
|
856 msprinter_start_page (struct frame *f)
|
|
857 {
|
|
858 if (!FRAME_MSPRINTER_PAGE_STARTED (f))
|
|
859 {
|
|
860 FRAME_MSPRINTER_PAGE_STARTED (f) = 1;
|
|
861 StartPage (DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f))));
|
|
862 apply_dc_geometry (f);
|
|
863 }
|
|
864 }
|
440
|
865
|
|
866 static void
|
|
867 error_frame_unsizable (struct frame *f)
|
|
868 {
|
793
|
869 Lisp_Object frame = wrap_frame (f);
|
|
870
|
442
|
871 invalid_change ("Cannot resize frame (margins) after print job has started.",
|
|
872 frame);
|
440
|
873 }
|
|
874
|
|
875 static void
|
|
876 maybe_error_if_job_active (struct frame *f)
|
|
877 {
|
|
878 if (FRAME_MSPRINTER_JOB_STARTED (f))
|
|
879 error_frame_unsizable (f);
|
|
880 }
|
|
881
|
|
882 static void
|
2286
|
883 msprinter_init_frame_1 (struct frame *f, Lisp_Object UNUSED (props),
|
|
884 int UNUSED (frame_name_is_defaulted))
|
440
|
885 {
|
|
886 /* Make sure this is the only frame on device. Windows printer can
|
|
887 handle only one job at a time. */
|
|
888 if (!NILP (DEVICE_FRAME_LIST (XDEVICE (FRAME_DEVICE (f)))))
|
442
|
889 invalid_operation ("Only one frame (print job) at a time is allowed on "
|
|
890 "this printer device", FRAME_DEVICE (f));
|
440
|
891
|
|
892 f->frame_data = xnew_and_zero (struct msprinter_frame);
|
|
893
|
506
|
894 FRAME_MSPRINTER_TOP_MARGIN (f) =
|
|
895 mswindows_get_default_margin (Qtop_margin);
|
|
896 FRAME_MSPRINTER_BOTTOM_MARGIN (f) =
|
|
897 mswindows_get_default_margin (Qbottom_margin);
|
|
898 FRAME_MSPRINTER_LEFT_MARGIN (f) =
|
|
899 mswindows_get_default_margin (Qleft_margin);
|
|
900 FRAME_MSPRINTER_RIGHT_MARGIN (f) =
|
|
901 mswindows_get_default_margin (Qright_margin);
|
440
|
902
|
|
903 /* Negative for "uinspecified" */
|
506
|
904 FRAME_MSPRINTER_CHARWIDTH (f) = -1;
|
|
905 FRAME_MSPRINTER_CHARHEIGHT (f) = -1;
|
440
|
906 }
|
|
907
|
|
908 static void
|
|
909 msprinter_init_frame_3 (struct frame *f)
|
|
910 {
|
771
|
911 DOCINFOW di;
|
440
|
912 struct device *device = XDEVICE (FRAME_DEVICE (f));
|
|
913 int frame_left, frame_top, frame_width, frame_height;
|
903
|
914
|
442
|
915 /* DC might be recreated in msprinter_apply_devmode,
|
|
916 so do not initialize until now */
|
903
|
917 HDC hdc = DEVICE_MSPRINTER_HDC (device);
|
|
918 int logpixelsx = GetDeviceCaps (hdc, LOGPIXELSX);
|
|
919 int logpixelsy = GetDeviceCaps (hdc, LOGPIXELSY);
|
|
920 int physicaloffsetx = GetDeviceCaps (hdc, PHYSICALOFFSETX);
|
|
921 int physicaloffsety = GetDeviceCaps (hdc, PHYSICALOFFSETY);
|
|
922 int physicalheight = GetDeviceCaps (hdc, PHYSICALHEIGHT);
|
|
923 int physicalwidth = GetDeviceCaps (hdc, PHYSICALWIDTH);
|
440
|
924
|
903
|
925 /* Compute geometry properties.
|
|
926 Conversion is from TWIPS -> inches -> pixels. */
|
|
927 frame_left = MulDiv (logpixelsx, FRAME_MSPRINTER_LEFT_MARGIN(f), 1440)
|
|
928 - physicaloffsetx;
|
|
929
|
771
|
930 if (FRAME_MSPRINTER_CHARWIDTH (f) > 0)
|
440
|
931 {
|
771
|
932 char_to_real_pixel_size (f, FRAME_MSPRINTER_CHARWIDTH (f), 0,
|
440
|
933 &frame_width, NULL);
|
903
|
934 FRAME_MSPRINTER_RIGHT_MARGIN(f) =
|
|
935 MulDiv (physicalwidth - (frame_left + frame_width), 1440,
|
|
936 logpixelsx);
|
442
|
937 }
|
440
|
938 else
|
903
|
939 frame_width = physicalwidth - frame_left
|
|
940 - MulDiv (logpixelsx, FRAME_MSPRINTER_RIGHT_MARGIN(f), 1440)
|
|
941 - physicaloffsetx;
|
440
|
942
|
903
|
943 frame_top = MulDiv (logpixelsy, FRAME_MSPRINTER_TOP_MARGIN(f), 1440)
|
|
944 - physicaloffsety;
|
440
|
945
|
771
|
946 if (FRAME_MSPRINTER_CHARHEIGHT (f) > 0)
|
440
|
947 {
|
771
|
948 char_to_real_pixel_size (f, 0, FRAME_MSPRINTER_CHARHEIGHT (f),
|
440
|
949 NULL, &frame_height);
|
|
950
|
903
|
951 FRAME_MSPRINTER_BOTTOM_MARGIN(f) =
|
|
952 MulDiv (physicalheight - (frame_top + frame_height), 1440,
|
|
953 logpixelsy);
|
442
|
954 }
|
440
|
955 else
|
903
|
956 frame_height = physicalheight - frame_top
|
|
957 - MulDiv (logpixelsy, FRAME_MSPRINTER_BOTTOM_MARGIN(f), 1440)
|
|
958 - physicaloffsety;
|
440
|
959
|
|
960 /* Geometry sanity checks */
|
|
961 if (!frame_pixsize_valid_p (f, frame_width, frame_height))
|
442
|
962 invalid_operation ("Area inside print margins has shrunk to naught",
|
|
963 STRINGP (f->name) ? f->name : Qunbound);
|
440
|
964
|
|
965 if (frame_left < 0
|
|
966 || frame_top < 0
|
|
967 || frame_left + frame_width > GetDeviceCaps (hdc, HORZRES)
|
|
968 || frame_top + frame_height > GetDeviceCaps (hdc, VERTRES))
|
546
|
969 invalid_operation ("Print area is outside of the printer's "
|
442
|
970 "hardware printable area",
|
|
971 STRINGP (f->name) ? f->name : Qunbound);
|
440
|
972
|
|
973 /* Apply XEmacs frame geometry and layout windows */
|
|
974 {
|
|
975 int rows, columns;
|
771
|
976 FRAME_PIXWIDTH (f) = frame_width;
|
|
977 FRAME_PIXHEIGHT (f) = frame_height;
|
440
|
978 pixel_to_char_size (f, frame_width, frame_height, &columns, &rows);
|
|
979 change_frame_size (f, rows, columns, 0);
|
|
980 }
|
|
981
|
442
|
982 FRAME_MSPRINTER_PIXLEFT(f) = frame_left;
|
|
983 FRAME_MSPRINTER_PIXTOP(f) = frame_top;
|
440
|
984
|
|
985 /* Start print job */
|
|
986 di.cbSize = sizeof (di);
|
771
|
987 {
|
|
988 const Extbyte *nameext;
|
|
989
|
|
990 if (STRINGP (f->name))
|
|
991 LISP_STRING_TO_TSTR (f->name, nameext);
|
|
992 else
|
|
993 nameext = XETEXT ("XEmacs print document");
|
|
994 di.lpszDocName = (XELPTSTR) nameext;
|
|
995 }
|
440
|
996 di.lpszOutput = NULL;
|
|
997 di.lpszDatatype = NULL;
|
|
998 di.fwType = 0;
|
|
999
|
771
|
1000 if (qxeStartDoc (hdc, &di) <= 0)
|
442
|
1001 invalid_operation ("Cannot start print job",
|
|
1002 STRINGP (f->name) ? f->name : Qunbound);
|
|
1003
|
|
1004 apply_dc_geometry (f);
|
440
|
1005
|
|
1006 /* Finish frame setup */
|
|
1007 FRAME_MSPRINTER_JOB_STARTED (f) = 1;
|
771
|
1008 FRAME_VISIBLE_P (f) = 0;
|
440
|
1009 }
|
|
1010
|
|
1011 static void
|
2286
|
1012 msprinter_mark_frame (struct frame *UNUSED (f))
|
440
|
1013 {
|
|
1014 }
|
|
1015
|
|
1016 static void
|
|
1017 msprinter_delete_frame (struct frame *f)
|
|
1018 {
|
|
1019 if (f->frame_data)
|
|
1020 {
|
442
|
1021 HDC hdc = DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f)));
|
|
1022 if (FRAME_MSPRINTER_PAGE_STARTED (f))
|
|
1023 EndPage (hdc);
|
440
|
1024 if (FRAME_MSPRINTER_JOB_STARTED (f))
|
442
|
1025 EndDoc (hdc);
|
1726
|
1026 xfree (f->frame_data, void *);
|
440
|
1027 }
|
|
1028
|
|
1029 f->frame_data = 0;
|
|
1030 }
|
|
1031
|
|
1032 static Lisp_Object
|
|
1033 msprinter_frame_property (struct frame *f, Lisp_Object property)
|
|
1034 {
|
|
1035 if (EQ (Qleft_margin, property))
|
771
|
1036 return make_int (FRAME_MSPRINTER_LEFT_MARGIN (f));
|
440
|
1037 else if (EQ (Qtop_margin, property))
|
771
|
1038 return make_int (FRAME_MSPRINTER_TOP_MARGIN (f));
|
440
|
1039 if (EQ (Qright_margin, property))
|
771
|
1040 return make_int (FRAME_MSPRINTER_RIGHT_MARGIN (f));
|
440
|
1041 else if (EQ (Qbottom_margin, property))
|
771
|
1042 return make_int (FRAME_MSPRINTER_BOTTOM_MARGIN (f));
|
440
|
1043 else
|
|
1044 return Qunbound;
|
|
1045 }
|
|
1046
|
|
1047 static int
|
2286
|
1048 msprinter_internal_frame_property_p (struct frame *UNUSED (f),
|
|
1049 Lisp_Object property)
|
440
|
1050 {
|
|
1051 return (EQ (Qleft_margin, property) || EQ (Qtop_margin, property) ||
|
442
|
1052 EQ (Qright_margin, property) || EQ (Qbottom_margin, property));
|
440
|
1053 }
|
|
1054
|
|
1055 static Lisp_Object
|
|
1056 msprinter_frame_properties (struct frame *f)
|
|
1057 {
|
|
1058 Lisp_Object props = Qnil;
|
|
1059 props = cons3 (Qbottom_margin,
|
771
|
1060 make_int (FRAME_MSPRINTER_BOTTOM_MARGIN (f)), props);
|
440
|
1061 props = cons3 (Qright_margin,
|
771
|
1062 make_int (FRAME_MSPRINTER_RIGHT_MARGIN (f)), props);
|
440
|
1063 props = cons3 (Qtop_margin,
|
771
|
1064 make_int (FRAME_MSPRINTER_TOP_MARGIN (f)), props);
|
440
|
1065 props = cons3 (Qleft_margin,
|
771
|
1066 make_int (FRAME_MSPRINTER_LEFT_MARGIN (f)), props);
|
440
|
1067 return props;
|
|
1068 }
|
|
1069
|
|
1070 static void
|
|
1071 msprinter_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
1072 {
|
|
1073 Lisp_Object tail;
|
|
1074
|
|
1075 /* Extract the properties from plist */
|
|
1076 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
1077 {
|
|
1078 Lisp_Object prop = Fcar (tail);
|
|
1079 Lisp_Object val = Fcar (Fcdr (tail));
|
|
1080
|
|
1081 if (SYMBOLP (prop))
|
|
1082 {
|
|
1083 if (EQ (prop, Qwidth))
|
|
1084 {
|
|
1085 maybe_error_if_job_active (f);
|
|
1086 if (!NILP (val))
|
|
1087 {
|
|
1088 CHECK_NATNUM (val);
|
771
|
1089 FRAME_MSPRINTER_CHARWIDTH (f) = XINT (val);
|
440
|
1090 }
|
|
1091 }
|
|
1092 if (EQ (prop, Qheight))
|
|
1093 {
|
|
1094 maybe_error_if_job_active (f);
|
|
1095 if (!NILP (val))
|
|
1096 {
|
|
1097 CHECK_NATNUM (val);
|
771
|
1098 FRAME_MSPRINTER_CHARHEIGHT (f) = XINT (val);
|
440
|
1099 }
|
|
1100 }
|
|
1101 else if (EQ (prop, Qleft_margin))
|
|
1102 {
|
|
1103 maybe_error_if_job_active (f);
|
|
1104 CHECK_NATNUM (val);
|
771
|
1105 FRAME_MSPRINTER_LEFT_MARGIN (f) = XINT (val);
|
440
|
1106 }
|
|
1107 else if (EQ (prop, Qtop_margin))
|
|
1108 {
|
|
1109 maybe_error_if_job_active (f);
|
|
1110 CHECK_NATNUM (val);
|
771
|
1111 FRAME_MSPRINTER_TOP_MARGIN (f) = XINT (val);
|
440
|
1112 }
|
|
1113 else if (EQ (prop, Qright_margin))
|
|
1114 {
|
|
1115 maybe_error_if_job_active (f);
|
|
1116 CHECK_NATNUM (val);
|
771
|
1117 FRAME_MSPRINTER_RIGHT_MARGIN (f) = XINT (val);
|
440
|
1118 }
|
|
1119 else if (EQ (prop, Qbottom_margin))
|
|
1120 {
|
|
1121 maybe_error_if_job_active (f);
|
|
1122 CHECK_NATNUM (val);
|
771
|
1123 FRAME_MSPRINTER_BOTTOM_MARGIN (f) = XINT (val);
|
440
|
1124 }
|
|
1125 }
|
|
1126 }
|
|
1127 }
|
|
1128
|
|
1129 static void
|
2286
|
1130 msprinter_set_frame_size (struct frame *f, int UNUSED (width),
|
|
1131 int UNUSED (height))
|
440
|
1132 {
|
|
1133 /* We're absolutely unsizeable */
|
|
1134 error_frame_unsizable (f);
|
|
1135 }
|
|
1136
|
442
|
1137 static void
|
|
1138 msprinter_eject_page (struct frame *f)
|
|
1139 {
|
|
1140 /* #### Should we eject empty pages? */
|
|
1141 if (FRAME_MSPRINTER_PAGE_STARTED (f))
|
|
1142 {
|
|
1143 FRAME_MSPRINTER_PAGE_STARTED (f) = 0;
|
|
1144 EndPage (DEVICE_MSPRINTER_HDC (XDEVICE (FRAME_DEVICE (f))));
|
|
1145 apply_dc_geometry (f);
|
|
1146 }
|
|
1147 }
|
|
1148
|
|
1149
|
428
|
1150 void
|
|
1151 console_type_create_frame_mswindows (void)
|
|
1152 {
|
440
|
1153 /* Display frames */
|
428
|
1154 CONSOLE_HAS_METHOD (mswindows, init_frame_1);
|
442
|
1155 CONSOLE_HAS_METHOD (mswindows, init_frame_2);
|
428
|
1156 CONSOLE_HAS_METHOD (mswindows, init_frame_3);
|
|
1157 CONSOLE_HAS_METHOD (mswindows, after_init_frame);
|
|
1158 CONSOLE_HAS_METHOD (mswindows, mark_frame);
|
|
1159 CONSOLE_HAS_METHOD (mswindows, focus_on_frame);
|
|
1160 CONSOLE_HAS_METHOD (mswindows, delete_frame);
|
|
1161 CONSOLE_HAS_METHOD (mswindows, get_mouse_position);
|
|
1162 CONSOLE_HAS_METHOD (mswindows, set_mouse_position);
|
|
1163 CONSOLE_HAS_METHOD (mswindows, raise_frame);
|
|
1164 CONSOLE_HAS_METHOD (mswindows, lower_frame);
|
442
|
1165 CONSOLE_HAS_METHOD (mswindows, enable_frame);
|
|
1166 CONSOLE_HAS_METHOD (mswindows, disable_frame);
|
428
|
1167 CONSOLE_HAS_METHOD (mswindows, make_frame_visible);
|
|
1168 CONSOLE_HAS_METHOD (mswindows, make_frame_invisible);
|
|
1169 CONSOLE_HAS_METHOD (mswindows, iconify_frame);
|
|
1170 CONSOLE_HAS_METHOD (mswindows, set_frame_size);
|
|
1171 CONSOLE_HAS_METHOD (mswindows, set_frame_position);
|
|
1172 CONSOLE_HAS_METHOD (mswindows, frame_property);
|
|
1173 CONSOLE_HAS_METHOD (mswindows, internal_frame_property_p);
|
|
1174 CONSOLE_HAS_METHOD (mswindows, frame_properties);
|
|
1175 CONSOLE_HAS_METHOD (mswindows, set_frame_properties);
|
867
|
1176 CONSOLE_HAS_METHOD (mswindows, set_title_from_ibyte);
|
|
1177 /* CONSOLE_HAS_METHOD (mswindows, set_icon_name_from_ibyte); */
|
428
|
1178 CONSOLE_HAS_METHOD (mswindows, frame_visible_p);
|
|
1179 CONSOLE_HAS_METHOD (mswindows, frame_totally_visible_p);
|
|
1180 CONSOLE_HAS_METHOD (mswindows, frame_iconified_p);
|
442
|
1181 CONSOLE_HAS_METHOD (mswindows, set_frame_pointer);
|
|
1182 CONSOLE_HAS_METHOD (mswindows, set_frame_icon);
|
428
|
1183 CONSOLE_HAS_METHOD (mswindows, get_frame_parent);
|
|
1184 CONSOLE_HAS_METHOD (mswindows, update_frame_external_traits);
|
|
1185 CONSOLE_HAS_METHOD (mswindows, frame_size_fixed_p);
|
440
|
1186
|
|
1187 /* Printer frames, aka print jobs */
|
|
1188 CONSOLE_HAS_METHOD (msprinter, init_frame_1);
|
|
1189 CONSOLE_HAS_METHOD (msprinter, init_frame_3);
|
|
1190 CONSOLE_HAS_METHOD (msprinter, mark_frame);
|
|
1191 CONSOLE_HAS_METHOD (msprinter, delete_frame);
|
|
1192 CONSOLE_HAS_METHOD (msprinter, frame_property);
|
|
1193 CONSOLE_HAS_METHOD (msprinter, internal_frame_property_p);
|
|
1194 CONSOLE_HAS_METHOD (msprinter, frame_properties);
|
|
1195 CONSOLE_HAS_METHOD (msprinter, set_frame_properties);
|
|
1196 CONSOLE_HAS_METHOD (msprinter, set_frame_size);
|
442
|
1197 CONSOLE_HAS_METHOD (msprinter, eject_page);
|
428
|
1198 }
|
|
1199
|
|
1200 void
|
|
1201 syms_of_frame_mswindows (void)
|
|
1202 {
|
3092
|
1203 #ifdef NEW_GC
|
|
1204 INIT_LRECORD_IMPLEMENTATION (mswindows_frame);
|
|
1205 #endif /* NEW_GC */
|
428
|
1206 }
|
|
1207
|
|
1208 void
|
|
1209 reinit_vars_of_frame_mswindows (void)
|
|
1210 {
|
|
1211 /* Needn't staticpro -- see comment above. */
|
|
1212 Vmswindows_frame_being_created = Qnil;
|
|
1213 }
|
|
1214
|
|
1215 void
|
|
1216 vars_of_frame_mswindows (void)
|
|
1217 {
|
|
1218 DEFVAR_LISP ("mswindows-use-system-frame-size-defaults", &Vmswindows_use_system_frame_size_defaults /*
|
|
1219 Controls whether to use system or XEmacs defaults for frame size.
|
442
|
1220 If nil then reasonable defaults are used for initial frame sizes. If t
|
428
|
1221 then the system will choose default sizes for the frame.
|
|
1222 */ );
|
|
1223 Vmswindows_use_system_frame_size_defaults = Qnil;
|
442
|
1224
|
428
|
1225 DEFVAR_LISP ("default-mswindows-frame-plist", &Vdefault_mswindows_frame_plist /*
|
|
1226 Plist of default frame-creation properties for mswindows frames.
|
|
1227 These override what is specified in `default-frame-plist', but are
|
|
1228 overridden by the arguments to the particular call to `make-frame'.
|
|
1229
|
|
1230 Note: In many cases, properties of a frame are available as specifiers
|
|
1231 instead of through the frame-properties mechanism.
|
|
1232
|
|
1233 Here is a list of recognized frame properties, other than those
|
|
1234 documented in `set-frame-properties' (they can be queried and
|
|
1235 set at any time, except as otherwise noted):
|
|
1236
|
|
1237 initially-unmapped If non-nil, the frame will not be visible
|
|
1238 when it is created. In this case, you
|
|
1239 need to call `make-frame-visible' to make
|
|
1240 the frame appear.
|
|
1241 popup If non-nil, it should be a frame, and this
|
|
1242 frame will be created as a "popup" frame
|
|
1243 whose parent is the given frame. This
|
|
1244 will make the window manager treat the
|
|
1245 frame as a dialog box, which may entail
|
|
1246 doing different things (e.g. not asking
|
|
1247 for positioning, and not iconifying
|
|
1248 separate from its parent).
|
|
1249 top Y position (in pixels) of the upper-left
|
|
1250 outermost corner of the frame (i.e. the
|
|
1251 upper-left of the window-manager
|
|
1252 decorations).
|
|
1253 left X position (in pixels) of the upper-left
|
|
1254 outermost corner of the frame (i.e. the
|
|
1255 upper-left of the window-manager
|
|
1256 decorations).
|
3022
|
1257 window-id Window handle (HWND) of the frame.
|
|
1258 Cannot be set.
|
428
|
1259
|
|
1260 See also `default-frame-plist', which specifies properties which apply
|
|
1261 to all frames, not just mswindows frames.
|
|
1262 */ );
|
|
1263 Vdefault_mswindows_frame_plist = Qnil;
|
|
1264
|
|
1265 mswindows_console_methods->device_specific_frame_props =
|
|
1266 &Vdefault_mswindows_frame_plist;
|
440
|
1267
|
|
1268 DEFVAR_LISP ("default-msprinter-frame-plist", &Vdefault_msprinter_frame_plist /*
|
|
1269 Plist of default frame-creation properties for msprinter print job frames.
|
|
1270 These override what is specified in `default-frame-plist', but are
|
|
1271 overridden by the arguments to the particular call to `make-frame'.
|
|
1272
|
|
1273 Note: In many cases, properties of a frame are available as specifiers
|
|
1274 instead of through the frame-properties mechanism.
|
|
1275
|
|
1276 Here is a list of recognized frame properties, other than those
|
|
1277 documented in `set-frame-properties' (they can be queried and
|
|
1278 set at any time, except as otherwise noted):
|
|
1279
|
|
1280 left-margin Margin of the page, in twips. Twip is a
|
|
1281 top-margin typographical unit of measurement,
|
|
1282 right-margin equal to 1/1440 of an inch, or 1/20 of a
|
|
1283 bottom-margin point, and roughly equal to 7/400 of a
|
506
|
1284 millimeter. If not specified, the left
|
|
1285 and right margins default to 1 inch
|
|
1286 (25.4 mm) and the top and bottom margins
|
|
1287 to 0.5 inch (12.7 mm).
|
440
|
1288
|
|
1289 MARGINS NOTE. right-margin and bottom-margin are overridden by
|
|
1290 the height and width properties. If you want to specify size
|
|
1291 of the printable area in character, as with the rest of XEmacs,
|
|
1292 use these properties. If height and/or width are nil, then
|
|
1293 corresponding margin setting is taken into account. If you
|
|
1294 specify height and/or width in `default-frame-plist', but still
|
|
1295 want to specify right/bottom margins, set height/width in this
|
|
1296 plist to nil, as in this example:
|
|
1297
|
506
|
1298 (setq default-frame-plist '(height 55 width 80)
|
|
1299 default-msprinter-frame-plist '(height nil width nil))
|
440
|
1300
|
|
1301 See also `default-frame-plist', which specifies properties which apply
|
|
1302 to all frames, not just mswindows frames.
|
|
1303 */ );
|
|
1304 Vdefault_msprinter_frame_plist = Qnil;
|
|
1305
|
|
1306 msprinter_console_methods->device_specific_frame_props =
|
|
1307 &Vdefault_msprinter_frame_plist;
|
428
|
1308 }
|