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 {
|
|
381 SetWindowText (FRAME_MSWINDOWS_HANDLE(f), title);
|
213
|
382 }
|
|
383
|
|
384 static void
|
|
385 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
386 {
|
245
|
387 int x=0, y=0;
|
213
|
388 int width = 0, height = 0;
|
|
389 BOOL width_specified_p = FALSE;
|
|
390 BOOL height_specified_p = FALSE;
|
|
391 BOOL x_specified_p = FALSE;
|
|
392 BOOL y_specified_p = FALSE;
|
|
393 Lisp_Object tail;
|
|
394
|
|
395 /* Extract the properties from plist */
|
|
396 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
397 {
|
|
398 Lisp_Object prop = Fcar (tail);
|
|
399 Lisp_Object val = Fcar (Fcdr (tail));
|
|
400
|
|
401 if (SYMBOLP (prop))
|
|
402 {
|
|
403 /* Kludge to handle the font property. */
|
|
404 if (EQ (prop, Qfont))
|
|
405 {
|
|
406 /* If the value is not a string we silently ignore it. */
|
|
407 if (STRINGP (val))
|
|
408 {
|
|
409 Lisp_Object frm, font_spec;
|
|
410
|
|
411 XSETFRAME (frm, f);
|
|
412 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
|
|
413
|
|
414 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
|
|
415 update_frame_face_values (f);
|
|
416 }
|
|
417 }
|
|
418 else if (EQ (prop, Qwidth))
|
|
419 {
|
|
420 CHECK_INT (val);
|
|
421 width = XINT (val);
|
|
422 width_specified_p = TRUE;
|
|
423 }
|
|
424 else if (EQ (prop, Qheight))
|
|
425 {
|
|
426 CHECK_INT (val);
|
|
427 height = XINT (val);
|
|
428 height_specified_p = TRUE;
|
|
429 }
|
|
430 else if (EQ (prop, Qleft))
|
|
431 {
|
|
432 CHECK_INT (val);
|
|
433 x = XINT (val);
|
|
434 x_specified_p = TRUE;
|
|
435 }
|
|
436 else if (EQ (prop, Qtop))
|
|
437 {
|
|
438 CHECK_INT (val);
|
|
439 y = XINT (val);
|
|
440 y_specified_p = TRUE;
|
|
441 }
|
|
442 }
|
|
443 }
|
|
444
|
269
|
445 /* Now we've extracted the properties, apply them.
|
|
446 Do not apply geometric properties during frame creation. This
|
|
447 is excessive anyways, and this loses becuase WM_SIZE has not
|
|
448 been sent yet, so frame width and height fields are not initialized
|
|
449 */
|
|
450 if (f->init_finished
|
|
451 && (width_specified_p || height_specified_p || x_specified_p || y_specified_p))
|
213
|
452 {
|
269
|
453 Lisp_Object frame = Qnil;
|
213
|
454 RECT rect;
|
|
455 int pixel_width, pixel_height;
|
|
456 XSETFRAME (frame, f);
|
|
457
|
269
|
458 char_to_real_pixel_size (f, width, height, &pixel_width, &pixel_height);
|
213
|
459 if (!width_specified_p)
|
269
|
460 pixel_width = FRAME_PIXWIDTH (f);
|
213
|
461 if (!height_specified_p)
|
269
|
462 pixel_height = FRAME_PIXHEIGHT (f);
|
213
|
463
|
|
464 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect);
|
|
465 if (!x_specified_p)
|
|
466 x = rect.left;
|
|
467 if (!y_specified_p)
|
|
468 y = rect.top;
|
219
|
469
|
269
|
470 rect.left = rect.top = 0;
|
|
471 rect.right = pixel_width;
|
|
472 rect.bottom = pixel_height;
|
223
|
473 AdjustWindowRectEx (&rect,
|
|
474 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_STYLE),
|
|
475 GetMenu (FRAME_MSWINDOWS_HANDLE(f)) != NULL,
|
|
476 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_EXSTYLE));
|
269
|
477
|
223
|
478
|
269
|
479 if (IsIconic (FRAME_MSWINDOWS_HANDLE(f)) || IsZoomed (FRAME_MSWINDOWS_HANDLE(f)))
|
|
480 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_RESTORE);
|
|
481
|
|
482 SetWindowPos (FRAME_MSWINDOWS_HANDLE(f), NULL,
|
|
483 x, y, rect.right - rect.left, rect.bottom - rect.top,
|
|
484 SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOSENDCHANGING
|
|
485 | ((width_specified_p || height_specified_p) ? 0 : SWP_NOSIZE)
|
|
486 | ((x_specified_p || y_specified_p) ? 0 : SWP_NOMOVE));
|
213
|
487 }
|
|
488 }
|
|
489
|
269
|
490 static Lisp_Object
|
|
491 mswindows_get_frame_parent (struct frame *f)
|
|
492 {
|
|
493 HWND hwnd = FRAME_MSWINDOWS_HANDLE(f);
|
|
494 hwnd = GetParent (hwnd);
|
|
495 if (hwnd)
|
|
496 {
|
|
497 Lisp_Object parent;
|
|
498 VOID_TO_LISP (parent, GetWindowLong (hwnd, XWL_FRAMEOBJ));
|
|
499 assert (FRAME_MSWINDOWS_P (XFRAME (parent)));
|
|
500 return parent;
|
|
501 }
|
|
502 else
|
|
503 return Qnil;
|
|
504 }
|
|
505
|
|
506 static void
|
|
507 mswindows_update_frame_external_traits (struct frame* frm, Lisp_Object name)
|
|
508 {
|
|
509 if (EQ (name, Qfont))
|
|
510 {
|
|
511 /* We resize the frame along with the font if user preference
|
|
512 of MS style compliance is turned off, and if font size has
|
|
513 really changed
|
|
514 */
|
|
515 /* #### Frame gets resized after font here */
|
|
516 if (1)
|
|
517 {
|
|
518 int new_char_height, new_char_width;
|
|
519 pixel_to_real_char_size (frm, FRAME_PIXWIDTH(frm), FRAME_PIXHEIGHT(frm),
|
|
520 &new_char_width, &new_char_height);
|
|
521 if (new_char_width != MSWINDOWS_FRAME_CHARWIDTH (frm)
|
|
522 || new_char_height != MSWINDOWS_FRAME_CHARHEIGHT (frm))
|
|
523 {
|
|
524 Lisp_Object frame;
|
|
525 XSETFRAME (frame, frm);
|
|
526 Fset_frame_size (frame, MSWINDOWS_FRAME_CHARWIDTH (frm),
|
|
527 MSWINDOWS_FRAME_CHARHEIGHT (frm), Qnil);
|
|
528 }
|
|
529 }
|
|
530
|
|
531 /* This resizes minibuffer and redraws modeline. */
|
|
532 {
|
|
533 int width, height;
|
|
534 pixel_to_char_size (frm, FRAME_PIXWIDTH(frm), FRAME_PIXHEIGHT(frm),
|
|
535 &width, &height);
|
|
536 change_frame_size (frm, height, width, 1);
|
|
537 }
|
|
538 }
|
|
539 }
|
213
|
540
|
|
541 void
|
|
542 console_type_create_frame_mswindows (void)
|
|
543 {
|
|
544 /* frame methods */
|
|
545 CONSOLE_HAS_METHOD (mswindows, init_frame_1);
|
269
|
546 /* CONSOLE_HAS_METHOD (mswindows, init_frame_2); */
|
213
|
547 CONSOLE_HAS_METHOD (mswindows, init_frame_3);
|
269
|
548 CONSOLE_HAS_METHOD (mswindows, after_init_frame);
|
231
|
549 CONSOLE_HAS_METHOD (mswindows, mark_frame);
|
219
|
550 CONSOLE_HAS_METHOD (mswindows, focus_on_frame);
|
213
|
551 CONSOLE_HAS_METHOD (mswindows, delete_frame);
|
|
552 /* CONSOLE_HAS_METHOD (mswindows, get_mouse_position); */
|
|
553 /* CONSOLE_HAS_METHOD (mswindows, set_mouse_position); */
|
219
|
554 CONSOLE_HAS_METHOD (mswindows, raise_frame);
|
|
555 CONSOLE_HAS_METHOD (mswindows, lower_frame);
|
|
556 CONSOLE_HAS_METHOD (mswindows, make_frame_visible);
|
|
557 CONSOLE_HAS_METHOD (mswindows, make_frame_invisible);
|
|
558 CONSOLE_HAS_METHOD (mswindows, iconify_frame);
|
213
|
559 CONSOLE_HAS_METHOD (mswindows, set_frame_size);
|
|
560 CONSOLE_HAS_METHOD (mswindows, set_frame_position);
|
|
561 /* CONSOLE_HAS_METHOD (mswindows, frame_property); */
|
|
562 /* CONSOLE_HAS_METHOD (mswindows, internal_frame_property_p); */
|
|
563 /* CONSOLE_HAS_METHOD (mswindows, frame_properties); */
|
|
564 CONSOLE_HAS_METHOD (mswindows, set_frame_properties);
|
219
|
565 CONSOLE_HAS_METHOD (mswindows, set_title_from_bufbyte);
|
213
|
566 /* CONSOLE_HAS_METHOD (mswindows, set_icon_name_from_bufbyte); */
|
219
|
567 CONSOLE_HAS_METHOD (mswindows, frame_visible_p);
|
213
|
568 /* CONSOLE_HAS_METHOD (mswindows, frame_totally_visible_p); */
|
219
|
569 CONSOLE_HAS_METHOD (mswindows, frame_iconified_p);
|
272
|
570 CONSOLE_HAS_METHOD (mswindows, set_frame_pointer);
|
|
571 CONSOLE_HAS_METHOD (mswindows, set_frame_icon);
|
269
|
572 CONSOLE_HAS_METHOD (mswindows, get_frame_parent);
|
|
573 CONSOLE_HAS_METHOD (mswindows, update_frame_external_traits);
|
213
|
574 }
|
|
575
|
|
576 void
|
|
577 syms_of_frame_mswindows (void)
|
|
578 {
|
|
579 }
|
|
580
|
|
581 void
|
|
582 vars_of_frame_mswindows (void)
|
|
583 {
|
269
|
584 mswindows_frame_being_created = Qnil;
|
|
585 staticpro (&mswindows_frame_being_created);
|
|
586
|
213
|
587 DEFVAR_LISP ("default-mswindows-frame-plist", &Vdefault_mswindows_frame_plist /*
|
|
588 Plist of default frame-creation properties for mswindows frames.
|
|
589 These override what is specified in `default-frame-plist', but are
|
|
590 overridden by the arguments to the particular call to `make-frame'.
|
|
591
|
|
592 Note: In many cases, properties of a frame are available as specifiers
|
|
593 instead of through the frame-properties mechanism.
|
|
594
|
|
595 Here is a list of recognized frame properties, other than those
|
|
596 documented in `set-frame-properties' (they can be queried and
|
|
597 set at any time, except as otherwise noted):
|
|
598
|
|
599 initially-unmapped If non-nil, the frame will not be visible
|
|
600 when it is created. In this case, you
|
|
601 need to call `make-frame-visible' to make
|
|
602 the frame appear.
|
|
603 popup If non-nil, it should be a frame, and this
|
|
604 frame will be created as a "popup" frame
|
|
605 whose parent is the given frame. This
|
|
606 will make the window manager treat the
|
|
607 frame as a dialog box, which may entail
|
|
608 doing different things (e.g. not asking
|
|
609 for positioning, and not iconifying
|
|
610 separate from its parent).
|
|
611 top Y position (in pixels) of the upper-left
|
|
612 outermost corner of the frame (i.e. the
|
|
613 upper-left of the window-manager
|
|
614 decorations).
|
|
615 left X position (in pixels) of the upper-left
|
|
616 outermost corner of the frame (i.e. the
|
|
617 upper-left of the window-manager
|
|
618 decorations).
|
|
619
|
|
620 See also `default-frame-plist', which specifies properties which apply
|
|
621 to all frames, not just mswindows frames.
|
|
622 */ );
|
|
623 Vdefault_mswindows_frame_plist = Qnil;
|
|
624
|
|
625 mswindows_console_methods->device_specific_frame_props =
|
|
626 &Vdefault_mswindows_frame_plist;
|
|
627 }
|