213
|
1 /* Functions for the mswindows window system.
|
|
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995, 1996 Ben Wing.
|
|
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
|
|
24 /* Authorship:
|
|
25
|
|
26 Ultimately based on FSF.
|
|
27 Substantially rewritten for XEmacs by Ben Wing.
|
272
|
28 Rewritten for mswindows by Jonathan Harris, November 1997 for 21.0.
|
213
|
29 */
|
|
30
|
|
31 #include <config.h>
|
|
32 #include "lisp.h"
|
|
33
|
269
|
34 #include "buffer.h"
|
213
|
35 #include "console-msw.h"
|
272
|
36 #include "glyphs-msw.h"
|
269
|
37 #include "events.h"
|
231
|
38 #include "faces.h"
|
213
|
39 #include "frame.h"
|
269
|
40 #include "redisplay.h"
|
213
|
41
|
269
|
42 #define MSWINDOWS_FRAME_STYLE (WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_OVERLAPPEDWINDOW)
|
|
43 #define MSWINDOWS_POPUP_STYLE (WS_CLIPCHILDREN | WS_CLIPSIBLINGS | WS_POPUP \
|
|
44 | WS_CAPTION | WS_BORDER | WS_SYSMENU | WS_MINIMIZEBOX)
|
223
|
45
|
|
46 #define MSWINDOWS_FRAME_EXSTYLE WS_EX_OVERLAPPEDWINDOW
|
269
|
47 #define MSWINDOWS_POPUP_EXSTYLE WS_EX_PALETTEWINDOW
|
|
48
|
|
49 /* Default popup left top corner offset from the same
|
|
50 corner of the parent frame, in pixel */
|
|
51 #define POPUP_OFFSET 30
|
|
52
|
|
53 /* Default popup size, in characters */
|
|
54 #define POPUP_WIDTH 30
|
|
55 #define POPUP_HEIGHT 10
|
223
|
56
|
|
57 #ifdef HAVE_MENUBARS
|
|
58 #define ADJR_MENUFLAG TRUE
|
|
59 #else
|
|
60 #define ADJR_MENUFLAG FALSE
|
|
61 #endif
|
|
62
|
213
|
63 /* Default properties to use when creating frames. */
|
|
64 Lisp_Object Vdefault_mswindows_frame_plist;
|
269
|
65
|
213
|
66 /* Lisp_Object Qname, Qheight, Qwidth, Qinitially_unmapped, Qpopup, Qtop, Qleft; */
|
|
67 Lisp_Object Qinitially_unmapped, Qpopup;
|
|
68
|
269
|
69 /* This does not need to be GC protected, as it holds a
|
|
70 frame Lisp_Object already protected by Fmake_frame */
|
|
71 Lisp_Object mswindows_frame_being_created;
|
|
72
|
|
73 /* Geometry, in characters, as specified by proplist during frame
|
|
74 creation. Memebers are set to -1 for unspecified */
|
|
75 XEMACS_RECT_WH mswindows_frame_target_rect;
|
|
76
|
213
|
77 static void
|
|
78 mswindows_init_frame_1 (struct frame *f, Lisp_Object props)
|
|
79 {
|
|
80 Lisp_Object device = FRAME_DEVICE (f);
|
231
|
81 Lisp_Object initially_unmapped;
|
223
|
82 Lisp_Object name, height, width, popup, top, left;
|
269
|
83 Lisp_Object frame_obj = Qnil;
|
223
|
84 RECT rect;
|
269
|
85 XEMACS_RECT_WH rect_default;
|
223
|
86 DWORD style, exstyle;
|
269
|
87 HWND hwnd, hwnd_parent;
|
213
|
88
|
269
|
89 /* Pick up relevant properties */
|
223
|
90 initially_unmapped = Fplist_get (props, Qinitially_unmapped, Qnil);
|
|
91 name = Fplist_get (props, Qname, Qnil);
|
269
|
92
|
223
|
93 popup = Fplist_get (props, Qpopup, Qnil);
|
269
|
94 if (EQ (popup, Qt))
|
|
95 popup = Fselected_frame (Qnil);
|
|
96
|
|
97 left = Fplist_get (props, Qleft, Qnil);
|
|
98 if (!NILP (left))
|
|
99 CHECK_INT (left);
|
|
100
|
223
|
101 top = Fplist_get (props, Qtop, Qnil);
|
269
|
102 if (!NILP (top))
|
|
103 CHECK_INT (top);
|
|
104
|
|
105 width = Fplist_get (props, Qwidth, Qnil);
|
|
106 if (!NILP (width))
|
|
107 CHECK_INT (width);
|
|
108
|
|
109 height = Fplist_get (props, Qheight, Qnil);
|
|
110 if (!NILP (height))
|
|
111 CHECK_INT (height);
|
|
112
|
|
113 mswindows_frame_target_rect.left = NILP (left) ? -1 : abs (XINT (left));
|
|
114 mswindows_frame_target_rect.top = NILP (top) ? -1 : abs (XINT (top));
|
|
115 mswindows_frame_target_rect.width = NILP (width) ? -1 : abs (XINT (width));
|
|
116 mswindows_frame_target_rect.height = NILP (height) ? -1 : abs (XINT (height));
|
213
|
117
|
225
|
118 /* These shouldn't be here, but the window is created too early.
|
|
119 The initialization of scrollbar resources is done between
|
|
120 init_frame_1 and init_frame_2 in make_frame. jsparkes */
|
|
121 f->scrollbar_width = make_int (15);
|
|
122 f->scrollbar_height = make_int (15);
|
|
123
|
213
|
124 f->frame_data = xnew_and_zero (struct mswindows_frame);
|
223
|
125
|
269
|
126 /* Misc frame stuff */
|
223
|
127 FRAME_MSWINDOWS_DATA(f)->button2_need_lbutton = 0;
|
|
128 FRAME_MSWINDOWS_DATA(f)->button2_need_rbutton = 0;
|
|
129 FRAME_MSWINDOWS_DATA(f)->button2_is_down = 0;
|
|
130 FRAME_MSWINDOWS_DATA(f)->ignore_next_lbutton_up = 0;
|
|
131 FRAME_MSWINDOWS_DATA(f)->ignore_next_rbutton_up = 0;
|
|
132 FRAME_MSWINDOWS_DATA(f)->sizing = 0;
|
|
133
|
231
|
134 FRAME_MSWINDOWS_MENU_HASHTABLE(f) = Qnil;
|
|
135
|
269
|
136 /* Will initialize these in WM_SIZE handler. We cannot do it now,
|
|
137 because we do not know what is CW_USEDEFAULT height and width */
|
|
138 FRAME_WIDTH (f) = 0;
|
|
139 FRAME_HEIGHT (f) = 0;
|
|
140 FRAME_PIXWIDTH (f) = 0;
|
|
141 FRAME_PIXHEIGHT (f) = 0;
|
|
142
|
|
143 if (NILP (popup))
|
|
144 {
|
|
145 style = MSWINDOWS_FRAME_STYLE;
|
|
146 exstyle = MSWINDOWS_FRAME_EXSTYLE;
|
|
147 hwnd_parent = NULL;
|
|
148
|
|
149 /* We always create am overlapped frame with default size,
|
|
150 and later adjust only requested geometry parameters. */
|
|
151 rect_default.left = rect_default.top = CW_USEDEFAULT;
|
|
152 rect_default.width = rect_default.height = CW_USEDEFAULT;
|
|
153 }
|
|
154 else
|
|
155 {
|
|
156 style = MSWINDOWS_POPUP_STYLE;
|
|
157 exstyle = MSWINDOWS_POPUP_EXSTYLE;
|
|
158
|
|
159 CHECK_MSWINDOWS_FRAME (popup);
|
|
160 hwnd_parent = FRAME_MSWINDOWS_HANDLE (XFRAME (popup));
|
|
161 assert (IsWindow (hwnd_parent));
|
|
162
|
|
163 /* We cannot use CW_USEDEFAULT when creating a popup window.
|
|
164 So by default, we offset the new popup 30 pixels right
|
|
165 and down from its parent, and give it size of 30x10 characters.
|
|
166 These dimensions look adequate on both high and low res monitors */
|
|
167 GetWindowRect (hwnd_parent, &rect);
|
|
168 rect_default.left = rect.left + POPUP_OFFSET;
|
|
169 rect_default.top = rect.top + POPUP_OFFSET;
|
|
170 char_to_real_pixel_size (f, POPUP_WIDTH, POPUP_HEIGHT,
|
|
171 &rect_default.width, &rect_default.height);
|
|
172 }
|
|
173
|
223
|
174 AdjustWindowRectEx(&rect, style, ADJR_MENUFLAG, exstyle);
|
|
175
|
|
176 XSETFRAME (frame_obj, f);
|
269
|
177
|
|
178 mswindows_frame_being_created = frame_obj;
|
|
179
|
|
180 hwnd = CreateWindowEx (exstyle,
|
|
181 XEMACS_CLASS,
|
|
182 STRINGP(f->name) ? XSTRING_DATA(f->name) :
|
|
183 (STRINGP(name) ? XSTRING_DATA(name) : XEMACS_CLASS),
|
|
184 style,
|
|
185 rect_default.left, rect_default.top,
|
|
186 rect_default.width, rect_default.height,
|
|
187 hwnd_parent, NULL, NULL, NULL);
|
|
188
|
|
189 mswindows_frame_being_created = Qnil;
|
|
190
|
|
191 if (hwnd == NULL)
|
|
192 error ("System call to create frame failed");
|
|
193
|
|
194 FRAME_MSWINDOWS_HANDLE(f) = hwnd;
|
|
195
|
|
196 SetWindowLong (hwnd, XWL_FRAMEOBJ, (LONG)LISP_TO_VOID(frame_obj));
|
|
197 FRAME_MSWINDOWS_DC(f) = GetDC (hwnd);
|
|
198 FRAME_MSWINDOWS_CDC(f) = CreateCompatibleDC (FRAME_MSWINDOWS_CDC(f));
|
|
199 SetTextAlign (FRAME_MSWINDOWS_DC(f), TA_BASELINE | TA_LEFT | TA_NOUPDATECP);
|
213
|
200 }
|
|
201
|
269
|
202 #if 0 /* #### unused */
|
213
|
203 static void
|
|
204 mswindows_init_frame_2 (struct frame *f, Lisp_Object props)
|
|
205 {
|
|
206 }
|
269
|
207 #endif
|
213
|
208
|
|
209 /* Called after frame's properties are set */
|
|
210 static void
|
|
211 mswindows_init_frame_3 (struct frame *f)
|
|
212 {
|
269
|
213 /* Don't do this earlier or we get a WM_PAINT before the frame is ready */
|
219
|
214 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_SHOWNORMAL);
|
|
215 SetForegroundWindow (FRAME_MSWINDOWS_HANDLE(f));
|
249
|
216 DragAcceptFiles (FRAME_MSWINDOWS_HANDLE(f), TRUE);
|
219
|
217 }
|
|
218
|
|
219 static void
|
269
|
220 mswindows_after_init_frame (struct frame *f, int first_on_device,
|
|
221 int first_on_console)
|
|
222 {
|
|
223 /* Windows, unlike X, is very synchronous. After the initial
|
|
224 frame is created, it will never be displayed, except for
|
|
225 hollow border, unless we start pumping messages. Load progress
|
|
226 messages show in the bottom of the hollow frame, which is ugly.
|
|
227 We redipsplay the initial frame here, so modeline and root window
|
|
228 backgorund show.
|
|
229 */
|
|
230 if (first_on_console)
|
|
231 redisplay ();
|
|
232 }
|
|
233
|
|
234 static void
|
231
|
235 mswindows_mark_frame (struct frame *f, void (*markobj) (Lisp_Object))
|
|
236 {
|
|
237 ((markobj) (FRAME_MSWINDOWS_MENU_HASHTABLE (f)));
|
|
238 }
|
|
239
|
|
240 static void
|
219
|
241 mswindows_focus_on_frame (struct frame *f)
|
|
242 {
|
269
|
243 SetForegroundWindow (FRAME_MSWINDOWS_HANDLE(f));
|
213
|
244 }
|
|
245
|
|
246 static void
|
|
247 mswindows_delete_frame (struct frame *f)
|
|
248 {
|
|
249 if (f->frame_data)
|
|
250 {
|
269
|
251 DeleteDC(FRAME_MSWINDOWS_CDC(f));
|
223
|
252 ReleaseDC(FRAME_MSWINDOWS_HANDLE(f), FRAME_MSWINDOWS_DC(f));
|
|
253 DestroyWindow(FRAME_MSWINDOWS_HANDLE(f));
|
269
|
254 xfree (f->frame_data);
|
213
|
255 }
|
269
|
256 f->frame_data = 0;
|
213
|
257 }
|
|
258
|
|
259 static void
|
|
260 mswindows_set_frame_size (struct frame *f, int cols, int rows)
|
|
261 {
|
269
|
262 RECT rect;
|
|
263 rect.left = rect.top = 0;
|
|
264 rect.right = cols;
|
|
265 rect.bottom = rows;
|
223
|
266
|
269
|
267 AdjustWindowRectEx (&rect,
|
223
|
268 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_STYLE),
|
|
269 GetMenu (FRAME_MSWINDOWS_HANDLE(f)) != NULL,
|
|
270 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_EXSTYLE));
|
269
|
271
|
|
272 if (IsIconic (FRAME_MSWINDOWS_HANDLE(f)) || IsZoomed (FRAME_MSWINDOWS_HANDLE(f)))
|
|
273 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_RESTORE);
|
|
274
|
|
275 SetWindowPos (FRAME_MSWINDOWS_HANDLE(f), NULL,
|
|
276 0, 0, rect.right-rect.left, rect.bottom-rect.top,
|
|
277 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING | SWP_NOMOVE);
|
213
|
278 }
|
|
279
|
|
280 static void
|
|
281 mswindows_set_frame_position (struct frame *f, int xoff, int yoff)
|
|
282 {
|
269
|
283 SetWindowPos (FRAME_MSWINDOWS_HANDLE(f), NULL,
|
|
284 xoff, yoff, 0, 0,
|
|
285 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING | SWP_NOSIZE);
|
219
|
286 }
|
|
287
|
|
288 static void
|
|
289 mswindows_make_frame_visible (struct frame *f)
|
|
290 {
|
|
291 if (f->iconified)
|
|
292 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_RESTORE);
|
|
293 else
|
|
294 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_SHOWNORMAL);
|
|
295 f->visible = 1;
|
|
296 f->iconified = 0;
|
|
297 }
|
|
298
|
|
299 static void
|
|
300 mswindows_make_frame_invisible (struct frame *f)
|
|
301 {
|
|
302 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_HIDE);
|
|
303 f->visible = -1;
|
|
304 }
|
|
305
|
|
306 static int
|
|
307 mswindows_frame_visible_p (struct frame *f)
|
|
308 {
|
|
309 return IsWindowVisible (FRAME_MSWINDOWS_HANDLE(f))
|
|
310 && !IsIconic (FRAME_MSWINDOWS_HANDLE(f));
|
|
311 }
|
|
312
|
|
313
|
|
314 static void
|
|
315 mswindows_iconify_frame (struct frame *f)
|
|
316 {
|
|
317 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_MINIMIZE);
|
|
318 f->visible = 0;
|
|
319 f->iconified = 1;
|
|
320 }
|
|
321
|
|
322 static int
|
|
323 mswindows_frame_iconified_p (struct frame *f)
|
|
324 {
|
|
325 return IsIconic (FRAME_MSWINDOWS_HANDLE(f));
|
|
326 }
|
|
327
|
|
328 static void
|
272
|
329 mswindows_set_frame_icon (struct frame *f)
|
|
330 {
|
|
331 if (IMAGE_INSTANCEP (f->icon)
|
|
332 && IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (f->icon)))
|
|
333 {
|
|
334 if (!XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon))
|
|
335 {
|
|
336 ICONINFO x_icon;
|
|
337
|
|
338 x_icon.fIcon=TRUE;
|
|
339 x_icon.xHotspot=XIMAGE_INSTANCE_PIXMAP_HOTSPOT_X (f->icon);
|
|
340 x_icon.yHotspot=XIMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (f->icon);
|
|
341 x_icon.hbmMask=XIMAGE_INSTANCE_MSWINDOWS_BITMAP (f->icon);
|
|
342 x_icon.hbmColor=XIMAGE_INSTANCE_MSWINDOWS_MASK (f->icon);
|
|
343
|
|
344 XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon)=
|
|
345 CreateIconIndirect (&x_icon);
|
|
346 }
|
|
347
|
|
348 SetClassLong (FRAME_MSWINDOWS_HANDLE (f), GCL_HICON,
|
|
349 (LONG) XIMAGE_INSTANCE_MSWINDOWS_ICON (f->icon));
|
|
350 }
|
|
351 }
|
|
352
|
|
353 static void
|
|
354 mswindows_set_frame_pointer (struct frame *f)
|
|
355 {
|
|
356 #if 0
|
|
357 XDefineCursor (XtDisplay (FRAME_X_TEXT_WIDGET (f)),
|
|
358 XtWindow (FRAME_X_TEXT_WIDGET (f)),
|
|
359 XIMAGE_INSTANCE_X_CURSOR (f->pointer));
|
|
360 XSync (XtDisplay (FRAME_X_TEXT_WIDGET (f)), 0);
|
|
361 #endif
|
|
362 }
|
|
363
|
|
364 static void
|
219
|
365 mswindows_raise_frame (struct frame *f)
|
|
366 {
|
|
367 BringWindowToTop (FRAME_MSWINDOWS_HANDLE(f));
|
|
368 /* XXX Should we do SetWindowForeground too ? */
|
|
369 }
|
|
370
|
|
371 static void
|
|
372 mswindows_lower_frame (struct frame *f)
|
|
373 {
|
269
|
374 SetWindowPos (FRAME_MSWINDOWS_HANDLE(f), HWND_BOTTOM, 0, 0, 0, 0,
|
|
375 SWP_NOSIZE | SWP_NOMOVE | SWP_NOSENDCHANGING);
|
219
|
376 }
|
|
377
|
|
378 static void
|
|
379 mswindows_set_title_from_bufbyte (struct frame *f, Bufbyte *title)
|
|
380 {
|
274
|
381 unsigned int new_checksum = hash_string (title, strlen (title));
|
|
382 if (new_checksum != FRAME_MSWINDOWS_TITLE_CHECKSUM(f))
|
|
383 {
|
|
384 FRAME_MSWINDOWS_TITLE_CHECKSUM(f) = new_checksum;
|
|
385 SetWindowText (FRAME_MSWINDOWS_HANDLE(f), title);
|
|
386 }
|
|
387 }
|
|
388
|
|
389 static Lisp_Object
|
|
390 mswindows_frame_property (struct frame *f, Lisp_Object property)
|
|
391 {
|
|
392 if (EQ (Qleft, property) || EQ (Qtop, property))
|
|
393 {
|
|
394 RECT rc;
|
|
395 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rc);
|
|
396 return make_int (EQ (Qtop, property) ? rc.top : rc.left);
|
|
397 }
|
|
398 return Qunbound;
|
|
399 }
|
|
400
|
|
401 static int
|
|
402 mswindows_internal_frame_property_p (struct frame *f, Lisp_Object property)
|
|
403 {
|
|
404 return EQ (property, Qleft)
|
|
405 || EQ (property, Qtop);
|
|
406 /* #### frame-x.c has also this. Why?
|
|
407 || STRINGP (property);
|
|
408 */
|
|
409 }
|
|
410
|
|
411 static Lisp_Object
|
|
412 mswindows_frame_properties (struct frame *f)
|
|
413 {
|
|
414 Lisp_Object props = Qnil;
|
|
415 RECT rc;
|
|
416 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rc);
|
|
417
|
|
418 props = cons3 (Qtop, make_int (rc.top), props);
|
|
419 props = cons3 (Qleft, make_int (rc.left), props);
|
|
420
|
|
421 return props;
|
213
|
422 }
|
|
423
|
|
424 static void
|
|
425 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
426 {
|
245
|
427 int x=0, y=0;
|
213
|
428 int width = 0, height = 0;
|
|
429 BOOL width_specified_p = FALSE;
|
|
430 BOOL height_specified_p = FALSE;
|
|
431 BOOL x_specified_p = FALSE;
|
|
432 BOOL y_specified_p = FALSE;
|
|
433 Lisp_Object tail;
|
|
434
|
|
435 /* Extract the properties from plist */
|
|
436 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
437 {
|
|
438 Lisp_Object prop = Fcar (tail);
|
|
439 Lisp_Object val = Fcar (Fcdr (tail));
|
|
440
|
|
441 if (SYMBOLP (prop))
|
|
442 {
|
|
443 /* Kludge to handle the font property. */
|
|
444 if (EQ (prop, Qfont))
|
|
445 {
|
|
446 /* If the value is not a string we silently ignore it. */
|
|
447 if (STRINGP (val))
|
|
448 {
|
|
449 Lisp_Object frm, font_spec;
|
|
450
|
|
451 XSETFRAME (frm, f);
|
|
452 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
|
|
453
|
|
454 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
|
|
455 update_frame_face_values (f);
|
|
456 }
|
|
457 }
|
|
458 else if (EQ (prop, Qwidth))
|
|
459 {
|
|
460 CHECK_INT (val);
|
|
461 width = XINT (val);
|
|
462 width_specified_p = TRUE;
|
|
463 }
|
|
464 else if (EQ (prop, Qheight))
|
|
465 {
|
|
466 CHECK_INT (val);
|
|
467 height = XINT (val);
|
|
468 height_specified_p = TRUE;
|
|
469 }
|
|
470 else if (EQ (prop, Qleft))
|
|
471 {
|
|
472 CHECK_INT (val);
|
|
473 x = XINT (val);
|
|
474 x_specified_p = TRUE;
|
|
475 }
|
|
476 else if (EQ (prop, Qtop))
|
|
477 {
|
|
478 CHECK_INT (val);
|
|
479 y = XINT (val);
|
|
480 y_specified_p = TRUE;
|
|
481 }
|
|
482 }
|
|
483 }
|
|
484
|
269
|
485 /* Now we've extracted the properties, apply them.
|
|
486 Do not apply geometric properties during frame creation. This
|
|
487 is excessive anyways, and this loses becuase WM_SIZE has not
|
|
488 been sent yet, so frame width and height fields are not initialized
|
|
489 */
|
|
490 if (f->init_finished
|
|
491 && (width_specified_p || height_specified_p || x_specified_p || y_specified_p))
|
213
|
492 {
|
269
|
493 Lisp_Object frame = Qnil;
|
213
|
494 RECT rect;
|
|
495 int pixel_width, pixel_height;
|
|
496 XSETFRAME (frame, f);
|
|
497
|
269
|
498 char_to_real_pixel_size (f, width, height, &pixel_width, &pixel_height);
|
213
|
499 if (!width_specified_p)
|
269
|
500 pixel_width = FRAME_PIXWIDTH (f);
|
213
|
501 if (!height_specified_p)
|
269
|
502 pixel_height = FRAME_PIXHEIGHT (f);
|
213
|
503
|
|
504 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect);
|
|
505 if (!x_specified_p)
|
|
506 x = rect.left;
|
|
507 if (!y_specified_p)
|
|
508 y = rect.top;
|
219
|
509
|
269
|
510 rect.left = rect.top = 0;
|
|
511 rect.right = pixel_width;
|
|
512 rect.bottom = pixel_height;
|
223
|
513 AdjustWindowRectEx (&rect,
|
|
514 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_STYLE),
|
|
515 GetMenu (FRAME_MSWINDOWS_HANDLE(f)) != NULL,
|
|
516 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_EXSTYLE));
|
269
|
517
|
223
|
518
|
269
|
519 if (IsIconic (FRAME_MSWINDOWS_HANDLE(f)) || IsZoomed (FRAME_MSWINDOWS_HANDLE(f)))
|
|
520 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_RESTORE);
|
|
521
|
|
522 SetWindowPos (FRAME_MSWINDOWS_HANDLE(f), NULL,
|
|
523 x, y, rect.right - rect.left, rect.bottom - rect.top,
|
|
524 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING
|
|
525 | ((width_specified_p || height_specified_p) ? 0 : SWP_NOSIZE)
|
|
526 | ((x_specified_p || y_specified_p) ? 0 : SWP_NOMOVE));
|
213
|
527 }
|
|
528 }
|
|
529
|
269
|
530 static Lisp_Object
|
|
531 mswindows_get_frame_parent (struct frame *f)
|
|
532 {
|
|
533 HWND hwnd = FRAME_MSWINDOWS_HANDLE(f);
|
|
534 hwnd = GetParent (hwnd);
|
|
535 if (hwnd)
|
|
536 {
|
|
537 Lisp_Object parent;
|
|
538 VOID_TO_LISP (parent, GetWindowLong (hwnd, XWL_FRAMEOBJ));
|
|
539 assert (FRAME_MSWINDOWS_P (XFRAME (parent)));
|
|
540 return parent;
|
|
541 }
|
|
542 else
|
|
543 return Qnil;
|
|
544 }
|
|
545
|
|
546 static void
|
|
547 mswindows_update_frame_external_traits (struct frame* frm, Lisp_Object name)
|
|
548 {
|
|
549 if (EQ (name, Qfont))
|
|
550 {
|
|
551 /* We resize the frame along with the font if user preference
|
|
552 of MS style compliance is turned off, and if font size has
|
|
553 really changed
|
|
554 */
|
|
555 /* #### Frame gets resized after font here */
|
|
556 if (1)
|
|
557 {
|
|
558 int new_char_height, new_char_width;
|
|
559 pixel_to_real_char_size (frm, FRAME_PIXWIDTH(frm), FRAME_PIXHEIGHT(frm),
|
|
560 &new_char_width, &new_char_height);
|
274
|
561 if (new_char_width != FRAME_MSWINDOWS_CHARWIDTH (frm)
|
|
562 || new_char_height != FRAME_MSWINDOWS_CHARHEIGHT (frm))
|
269
|
563 {
|
|
564 Lisp_Object frame;
|
|
565 XSETFRAME (frame, frm);
|
274
|
566 Fset_frame_size (frame, FRAME_MSWINDOWS_CHARWIDTH (frm),
|
|
567 FRAME_MSWINDOWS_CHARHEIGHT (frm), Qnil);
|
269
|
568 }
|
|
569 }
|
|
570
|
|
571 /* This resizes minibuffer and redraws modeline. */
|
|
572 {
|
|
573 int width, height;
|
|
574 pixel_to_char_size (frm, FRAME_PIXWIDTH(frm), FRAME_PIXHEIGHT(frm),
|
|
575 &width, &height);
|
|
576 change_frame_size (frm, height, width, 1);
|
|
577 }
|
|
578 }
|
|
579 }
|
213
|
580
|
|
581 void
|
|
582 console_type_create_frame_mswindows (void)
|
|
583 {
|
|
584 /* frame methods */
|
|
585 CONSOLE_HAS_METHOD (mswindows, init_frame_1);
|
269
|
586 /* CONSOLE_HAS_METHOD (mswindows, init_frame_2); */
|
213
|
587 CONSOLE_HAS_METHOD (mswindows, init_frame_3);
|
269
|
588 CONSOLE_HAS_METHOD (mswindows, after_init_frame);
|
231
|
589 CONSOLE_HAS_METHOD (mswindows, mark_frame);
|
219
|
590 CONSOLE_HAS_METHOD (mswindows, focus_on_frame);
|
213
|
591 CONSOLE_HAS_METHOD (mswindows, delete_frame);
|
|
592 /* CONSOLE_HAS_METHOD (mswindows, get_mouse_position); */
|
|
593 /* CONSOLE_HAS_METHOD (mswindows, set_mouse_position); */
|
219
|
594 CONSOLE_HAS_METHOD (mswindows, raise_frame);
|
|
595 CONSOLE_HAS_METHOD (mswindows, lower_frame);
|
|
596 CONSOLE_HAS_METHOD (mswindows, make_frame_visible);
|
|
597 CONSOLE_HAS_METHOD (mswindows, make_frame_invisible);
|
|
598 CONSOLE_HAS_METHOD (mswindows, iconify_frame);
|
213
|
599 CONSOLE_HAS_METHOD (mswindows, set_frame_size);
|
|
600 CONSOLE_HAS_METHOD (mswindows, set_frame_position);
|
274
|
601 CONSOLE_HAS_METHOD (mswindows, frame_property);
|
|
602 CONSOLE_HAS_METHOD (mswindows, internal_frame_property_p);
|
|
603 CONSOLE_HAS_METHOD (mswindows, frame_properties);
|
213
|
604 CONSOLE_HAS_METHOD (mswindows, set_frame_properties);
|
219
|
605 CONSOLE_HAS_METHOD (mswindows, set_title_from_bufbyte);
|
213
|
606 /* CONSOLE_HAS_METHOD (mswindows, set_icon_name_from_bufbyte); */
|
219
|
607 CONSOLE_HAS_METHOD (mswindows, frame_visible_p);
|
213
|
608 /* CONSOLE_HAS_METHOD (mswindows, frame_totally_visible_p); */
|
219
|
609 CONSOLE_HAS_METHOD (mswindows, frame_iconified_p);
|
272
|
610 CONSOLE_HAS_METHOD (mswindows, set_frame_pointer);
|
|
611 CONSOLE_HAS_METHOD (mswindows, set_frame_icon);
|
269
|
612 CONSOLE_HAS_METHOD (mswindows, get_frame_parent);
|
|
613 CONSOLE_HAS_METHOD (mswindows, update_frame_external_traits);
|
213
|
614 }
|
|
615
|
|
616 void
|
|
617 syms_of_frame_mswindows (void)
|
|
618 {
|
|
619 }
|
|
620
|
|
621 void
|
|
622 vars_of_frame_mswindows (void)
|
|
623 {
|
269
|
624 mswindows_frame_being_created = Qnil;
|
|
625 staticpro (&mswindows_frame_being_created);
|
|
626
|
213
|
627 DEFVAR_LISP ("default-mswindows-frame-plist", &Vdefault_mswindows_frame_plist /*
|
|
628 Plist of default frame-creation properties for mswindows frames.
|
|
629 These override what is specified in `default-frame-plist', but are
|
|
630 overridden by the arguments to the particular call to `make-frame'.
|
|
631
|
|
632 Note: In many cases, properties of a frame are available as specifiers
|
|
633 instead of through the frame-properties mechanism.
|
|
634
|
|
635 Here is a list of recognized frame properties, other than those
|
|
636 documented in `set-frame-properties' (they can be queried and
|
|
637 set at any time, except as otherwise noted):
|
|
638
|
|
639 initially-unmapped If non-nil, the frame will not be visible
|
|
640 when it is created. In this case, you
|
|
641 need to call `make-frame-visible' to make
|
|
642 the frame appear.
|
|
643 popup If non-nil, it should be a frame, and this
|
|
644 frame will be created as a "popup" frame
|
|
645 whose parent is the given frame. This
|
|
646 will make the window manager treat the
|
|
647 frame as a dialog box, which may entail
|
|
648 doing different things (e.g. not asking
|
|
649 for positioning, and not iconifying
|
|
650 separate from its parent).
|
|
651 top Y position (in pixels) of the upper-left
|
|
652 outermost corner of the frame (i.e. the
|
|
653 upper-left of the window-manager
|
|
654 decorations).
|
|
655 left X position (in pixels) of the upper-left
|
|
656 outermost corner of the frame (i.e. the
|
|
657 upper-left of the window-manager
|
|
658 decorations).
|
|
659
|
|
660 See also `default-frame-plist', which specifies properties which apply
|
|
661 to all frames, not just mswindows frames.
|
|
662 */ );
|
|
663 Vdefault_mswindows_frame_plist = Qnil;
|
|
664
|
|
665 mswindows_console_methods->device_specific_frame_props =
|
|
666 &Vdefault_mswindows_frame_plist;
|
|
667 }
|