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.
|
|
28 Rewritten for mswindows by Jonathan Harris, November 1997 for 20.4.
|
|
29 */
|
|
30
|
|
31 #include <config.h>
|
|
32 #include "lisp.h"
|
|
33
|
|
34 #include "console-msw.h"
|
|
35
|
|
36 #include "buffer.h"
|
231
|
37 #include "faces.h"
|
213
|
38 #include "frame.h"
|
|
39 #include "events.h"
|
|
40
|
223
|
41 #define MSWINDOWS_FRAME_STYLE WS_CLIPCHILDREN|WS_CLIPSIBLINGS|WS_OVERLAPPEDWINDOW
|
|
42 #define MSWINDOWS_POPUP_STYLE WS_CLIPCHILDREN|WS_CLIPSIBLINGS|WS_CAPTION|WS_POPUP
|
|
43
|
|
44 #define MSWINDOWS_FRAME_EXSTYLE WS_EX_OVERLAPPEDWINDOW
|
|
45 #define MSWINDOWS_POPUP_EXSTYLE WS_EX_OVERLAPPEDWINDOW
|
|
46
|
|
47 #ifdef HAVE_MENUBARS
|
|
48 #define ADJR_MENUFLAG TRUE
|
|
49 #else
|
|
50 #define ADJR_MENUFLAG FALSE
|
|
51 #endif
|
|
52
|
213
|
53 /* Default properties to use when creating frames. */
|
|
54 Lisp_Object Vdefault_mswindows_frame_plist;
|
|
55 /* Lisp_Object Qname, Qheight, Qwidth, Qinitially_unmapped, Qpopup, Qtop, Qleft; */
|
|
56 Lisp_Object Qinitially_unmapped, Qpopup;
|
|
57
|
|
58 static void
|
|
59 mswindows_init_frame_1 (struct frame *f, Lisp_Object props)
|
|
60 {
|
|
61 Lisp_Object device = FRAME_DEVICE (f);
|
231
|
62 Lisp_Object initially_unmapped;
|
223
|
63 Lisp_Object name, height, width, popup, top, left;
|
|
64 Lisp_Object frame_obj;
|
|
65 RECT rect;
|
|
66 DWORD style, exstyle;
|
213
|
67
|
223
|
68 initially_unmapped = Fplist_get (props, Qinitially_unmapped, Qnil);
|
|
69 name = Fplist_get (props, Qname, Qnil);
|
|
70 height = Fplist_get (props, Qheight, Qnil);
|
|
71 width = Fplist_get (props, Qwidth, Qnil);
|
|
72 popup = Fplist_get (props, Qpopup, Qnil);
|
|
73 top = Fplist_get (props, Qtop, Qnil);
|
|
74 left = Fplist_get (props, Qleft, Qnil);
|
213
|
75
|
225
|
76 /* These shouldn't be here, but the window is created too early.
|
|
77 The initialization of scrollbar resources is done between
|
|
78 init_frame_1 and init_frame_2 in make_frame. jsparkes */
|
|
79 f->scrollbar_width = make_int (15);
|
|
80 f->scrollbar_height = make_int (15);
|
|
81
|
213
|
82 f->frame_data = xnew_and_zero (struct mswindows_frame);
|
223
|
83 FRAME_WIDTH (f) = INTP(width) ? XINT(width) : 80;
|
|
84 FRAME_HEIGHT (f) = INTP(height) ? XINT(height) : 30;
|
|
85 char_to_pixel_size (f, FRAME_WIDTH(f), FRAME_HEIGHT (f),
|
|
86 &FRAME_PIXWIDTH (f), &FRAME_PIXHEIGHT (f));
|
|
87
|
|
88 style = (NILP(popup)) ? MSWINDOWS_FRAME_STYLE : MSWINDOWS_POPUP_STYLE;
|
|
89 exstyle = (NILP(popup)) ? MSWINDOWS_FRAME_EXSTYLE : MSWINDOWS_POPUP_EXSTYLE;
|
|
90 rect.left = rect.top = 0;
|
|
91 rect.right = FRAME_PIXWIDTH (f);
|
|
92 rect.bottom = FRAME_PIXHEIGHT (f);
|
|
93
|
|
94 FRAME_MSWINDOWS_DATA(f)->button2_need_lbutton = 0;
|
|
95 FRAME_MSWINDOWS_DATA(f)->button2_need_rbutton = 0;
|
|
96 FRAME_MSWINDOWS_DATA(f)->button2_is_down = 0;
|
|
97 FRAME_MSWINDOWS_DATA(f)->ignore_next_lbutton_up = 0;
|
|
98 FRAME_MSWINDOWS_DATA(f)->ignore_next_rbutton_up = 0;
|
|
99 FRAME_MSWINDOWS_DATA(f)->sizing = 0;
|
|
100
|
231
|
101 FRAME_MSWINDOWS_MENU_HASHTABLE(f) = Qnil;
|
|
102
|
223
|
103 AdjustWindowRectEx(&rect, style, ADJR_MENUFLAG, exstyle);
|
|
104
|
|
105 FRAME_MSWINDOWS_HANDLE(f) =
|
|
106 CreateWindowEx (exstyle,
|
|
107 XEMACS_CLASS,
|
|
108 STRINGP(f->name) ? XSTRING_DATA(f->name) :
|
|
109 (STRINGP(name) ? XSTRING_DATA(name) : XEMACS_CLASS),
|
|
110 style,
|
|
111 INTP(left) ? XINT(left) : CW_USEDEFAULT,
|
|
112 INTP(top) ? XINT(top) : CW_USEDEFAULT,
|
|
113 rect.right-rect.left, rect.bottom-rect.top,
|
|
114 NULL, NULL, NULL, NULL);
|
|
115 XSETFRAME (frame_obj, f);
|
|
116 SetWindowLong (FRAME_MSWINDOWS_HANDLE(f), XWL_FRAMEOBJ, (LONG)frame_obj);
|
213
|
117 FRAME_MSWINDOWS_DC(f) = GetDC(FRAME_MSWINDOWS_HANDLE(f));
|
|
118 SetTextAlign(FRAME_MSWINDOWS_DC(f), TA_BASELINE|TA_LEFT|TA_NOUPDATECP);
|
|
119 }
|
|
120
|
215
|
121 /* Called just before frame's properties are set, size is 10x10 or something */
|
213
|
122 static void
|
|
123 mswindows_init_frame_2 (struct frame *f, Lisp_Object props)
|
|
124 {
|
|
125 }
|
|
126
|
|
127 /* Called after frame's properties are set */
|
|
128 static void
|
|
129 mswindows_init_frame_3 (struct frame *f)
|
|
130 {
|
|
131 /* Don't do this earlier or we get a WM_PAINT before the frame is ready*/
|
219
|
132 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_SHOWNORMAL);
|
|
133 SetForegroundWindow (FRAME_MSWINDOWS_HANDLE(f));
|
249
|
134 DragAcceptFiles (FRAME_MSWINDOWS_HANDLE(f), TRUE);
|
219
|
135 }
|
|
136
|
|
137 static void
|
231
|
138 mswindows_mark_frame (struct frame *f, void (*markobj) (Lisp_Object))
|
|
139 {
|
|
140 ((markobj) (FRAME_MSWINDOWS_MENU_HASHTABLE (f)));
|
|
141 }
|
|
142
|
|
143 static void
|
219
|
144 mswindows_focus_on_frame (struct frame *f)
|
|
145 {
|
|
146 SetForegroundWindow (FRAME_MSWINDOWS_HANDLE(f));
|
213
|
147 }
|
|
148
|
|
149 static void
|
|
150 mswindows_delete_frame (struct frame *f)
|
|
151 {
|
|
152 if (f->frame_data)
|
|
153 {
|
223
|
154 ReleaseDC(FRAME_MSWINDOWS_HANDLE(f), FRAME_MSWINDOWS_DC(f));
|
|
155 DestroyWindow(FRAME_MSWINDOWS_HANDLE(f));
|
213
|
156 }
|
|
157 }
|
|
158
|
|
159 static void
|
|
160 mswindows_set_frame_size (struct frame *f, int cols, int rows)
|
|
161 {
|
219
|
162 RECT rect1, rect2;
|
|
163
|
|
164 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect1);
|
|
165 rect2.left = rect2.top = 0;
|
|
166 char_to_pixel_size (f, cols, rows, &rect2.right, &rect2.bottom);
|
223
|
167
|
|
168 AdjustWindowRectEx (&rect2,
|
|
169 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_STYLE),
|
|
170 GetMenu (FRAME_MSWINDOWS_HANDLE(f)) != NULL,
|
|
171 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_EXSTYLE));
|
|
172
|
219
|
173 MoveWindow (FRAME_MSWINDOWS_HANDLE(f), rect1.left, rect1.top,
|
|
174 rect2.right-rect2.left, rect2.bottom-rect2.top, TRUE);
|
213
|
175 }
|
|
176
|
|
177 static void
|
|
178 mswindows_set_frame_position (struct frame *f, int xoff, int yoff)
|
|
179 {
|
219
|
180 RECT rect;
|
|
181
|
|
182 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect);
|
|
183 MoveWindow (FRAME_MSWINDOWS_HANDLE(f), xoff, yoff,
|
|
184 rect.right-rect.left, rect.bottom-rect.top, TRUE);
|
|
185 }
|
|
186
|
|
187 static void
|
|
188 mswindows_make_frame_visible (struct frame *f)
|
|
189 {
|
|
190 if (f->iconified)
|
|
191 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_RESTORE);
|
|
192 else
|
|
193 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_SHOWNORMAL);
|
|
194 f->visible = 1;
|
|
195 f->iconified = 0;
|
|
196 }
|
|
197
|
|
198 static void
|
|
199 mswindows_make_frame_invisible (struct frame *f)
|
|
200 {
|
|
201 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_HIDE);
|
|
202 f->visible = -1;
|
|
203 }
|
|
204
|
|
205 static int
|
|
206 mswindows_frame_visible_p (struct frame *f)
|
|
207 {
|
|
208 return IsWindowVisible (FRAME_MSWINDOWS_HANDLE(f))
|
|
209 && !IsIconic (FRAME_MSWINDOWS_HANDLE(f));
|
|
210 }
|
|
211
|
|
212
|
|
213 static void
|
|
214 mswindows_iconify_frame (struct frame *f)
|
|
215 {
|
|
216 ShowWindow (FRAME_MSWINDOWS_HANDLE(f), SW_MINIMIZE);
|
|
217 f->visible = 0;
|
|
218 f->iconified = 1;
|
|
219 }
|
|
220
|
|
221 static int
|
|
222 mswindows_frame_iconified_p (struct frame *f)
|
|
223 {
|
|
224 return IsIconic (FRAME_MSWINDOWS_HANDLE(f));
|
|
225 }
|
|
226
|
|
227 static void
|
|
228 mswindows_raise_frame (struct frame *f)
|
|
229 {
|
|
230 BringWindowToTop (FRAME_MSWINDOWS_HANDLE(f));
|
|
231 /* XXX Should we do SetWindowForeground too ? */
|
|
232 }
|
|
233
|
|
234 static void
|
|
235 mswindows_lower_frame (struct frame *f)
|
|
236 {
|
|
237 RECT rect;
|
|
238
|
|
239 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect);
|
|
240 SetWindowPos (FRAME_MSWINDOWS_HANDLE(f), HWND_BOTTOM, rect.top, rect.left,
|
|
241 rect.right-rect.left, rect.bottom-rect.top, 0);
|
|
242 }
|
|
243
|
|
244 static void
|
|
245 mswindows_set_title_from_bufbyte (struct frame *f, Bufbyte *title)
|
|
246 {
|
|
247 SetWindowText (FRAME_MSWINDOWS_HANDLE(f), title);
|
213
|
248 }
|
|
249
|
|
250 static void
|
|
251 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
252 {
|
245
|
253 int x=0, y=0;
|
213
|
254 int width = 0, height = 0;
|
|
255 BOOL width_specified_p = FALSE;
|
|
256 BOOL height_specified_p = FALSE;
|
|
257 BOOL x_specified_p = FALSE;
|
|
258 BOOL y_specified_p = FALSE;
|
|
259 Lisp_Object tail;
|
|
260
|
|
261 /* Extract the properties from plist */
|
|
262 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
263 {
|
|
264 Lisp_Object prop = Fcar (tail);
|
|
265 Lisp_Object val = Fcar (Fcdr (tail));
|
|
266
|
|
267 if (SYMBOLP (prop))
|
|
268 {
|
|
269 /* Kludge to handle the font property. */
|
|
270 if (EQ (prop, Qfont))
|
|
271 {
|
|
272 /* If the value is not a string we silently ignore it. */
|
|
273 if (STRINGP (val))
|
|
274 {
|
|
275 Lisp_Object frm, font_spec;
|
|
276
|
|
277 XSETFRAME (frm, f);
|
|
278 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
|
|
279
|
|
280 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
|
|
281 update_frame_face_values (f);
|
|
282 }
|
|
283 }
|
|
284 else if (EQ (prop, Qwidth))
|
|
285 {
|
|
286 CHECK_INT (val);
|
|
287 width = XINT (val);
|
|
288 width_specified_p = TRUE;
|
|
289 }
|
|
290 else if (EQ (prop, Qheight))
|
|
291 {
|
|
292 CHECK_INT (val);
|
|
293 height = XINT (val);
|
|
294 height_specified_p = TRUE;
|
|
295 }
|
|
296 else if (EQ (prop, Qleft))
|
|
297 {
|
|
298 CHECK_INT (val);
|
|
299 x = XINT (val);
|
|
300 x_specified_p = TRUE;
|
|
301 }
|
|
302 else if (EQ (prop, Qtop))
|
|
303 {
|
|
304 CHECK_INT (val);
|
|
305 y = XINT (val);
|
|
306 y_specified_p = TRUE;
|
|
307 }
|
|
308 }
|
|
309 }
|
|
310
|
|
311 /* Now we've extracted the properties, apply them */
|
|
312 if (width_specified_p || height_specified_p || x_specified_p || y_specified_p)
|
|
313 {
|
|
314 Lisp_Object frame;
|
|
315 RECT rect;
|
|
316 int pixel_width, pixel_height;
|
|
317 XSETFRAME (frame, f);
|
|
318
|
|
319 if (!width_specified_p)
|
|
320 width = FRAME_WIDTH (f);
|
|
321 if (!height_specified_p)
|
|
322 height = FRAME_HEIGHT (f);
|
|
323 char_to_pixel_size (f, width, height, &pixel_width, &pixel_height);
|
|
324
|
|
325 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect);
|
|
326 if (!x_specified_p)
|
|
327 x = rect.left;
|
|
328 if (!y_specified_p)
|
|
329 y = rect.top;
|
219
|
330
|
223
|
331 AdjustWindowRectEx (&rect,
|
|
332 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_STYLE),
|
|
333 GetMenu (FRAME_MSWINDOWS_HANDLE(f)) != NULL,
|
|
334 GetWindowLong (FRAME_MSWINDOWS_HANDLE(f), GWL_EXSTYLE));
|
|
335
|
213
|
336 MoveWindow (FRAME_MSWINDOWS_HANDLE(f), x, y, pixel_width, pixel_height,
|
|
337 (width_specified_p || height_specified_p));
|
|
338 }
|
|
339 }
|
|
340
|
|
341
|
|
342 void
|
|
343 console_type_create_frame_mswindows (void)
|
|
344 {
|
|
345 /* frame methods */
|
|
346 CONSOLE_HAS_METHOD (mswindows, init_frame_1);
|
|
347 CONSOLE_HAS_METHOD (mswindows, init_frame_2);
|
|
348 CONSOLE_HAS_METHOD (mswindows, init_frame_3);
|
231
|
349 CONSOLE_HAS_METHOD (mswindows, mark_frame);
|
219
|
350 CONSOLE_HAS_METHOD (mswindows, focus_on_frame);
|
213
|
351 CONSOLE_HAS_METHOD (mswindows, delete_frame);
|
|
352 /* CONSOLE_HAS_METHOD (mswindows, get_mouse_position); */
|
|
353 /* CONSOLE_HAS_METHOD (mswindows, set_mouse_position); */
|
219
|
354 CONSOLE_HAS_METHOD (mswindows, raise_frame);
|
|
355 CONSOLE_HAS_METHOD (mswindows, lower_frame);
|
|
356 CONSOLE_HAS_METHOD (mswindows, make_frame_visible);
|
|
357 CONSOLE_HAS_METHOD (mswindows, make_frame_invisible);
|
|
358 CONSOLE_HAS_METHOD (mswindows, iconify_frame);
|
213
|
359 CONSOLE_HAS_METHOD (mswindows, set_frame_size);
|
|
360 CONSOLE_HAS_METHOD (mswindows, set_frame_position);
|
|
361 /* CONSOLE_HAS_METHOD (mswindows, frame_property); */
|
|
362 /* CONSOLE_HAS_METHOD (mswindows, internal_frame_property_p); */
|
|
363 /* CONSOLE_HAS_METHOD (mswindows, frame_properties); */
|
|
364 CONSOLE_HAS_METHOD (mswindows, set_frame_properties);
|
219
|
365 CONSOLE_HAS_METHOD (mswindows, set_title_from_bufbyte);
|
213
|
366 /* CONSOLE_HAS_METHOD (mswindows, set_icon_name_from_bufbyte); */
|
219
|
367 CONSOLE_HAS_METHOD (mswindows, frame_visible_p);
|
213
|
368 /* CONSOLE_HAS_METHOD (mswindows, frame_totally_visible_p); */
|
219
|
369 CONSOLE_HAS_METHOD (mswindows, frame_iconified_p);
|
213
|
370 /* CONSOLE_HAS_METHOD (mswindows, set_frame_pointer); */
|
|
371 /* CONSOLE_HAS_METHOD (mswindows, set_frame_icon); */
|
|
372 /* CONSOLE_HAS_METHOD (mswindows, get_frame_parent); */
|
|
373 }
|
|
374
|
|
375 void
|
|
376 syms_of_frame_mswindows (void)
|
|
377 {
|
|
378 #if 0 /* XXX these are in general.c */
|
|
379 defsymbol (&Qname, "name");
|
|
380 defsymbol (&Qheight, "height");
|
|
381 defsymbol (&Qwidth, "width");
|
|
382 defsymbol (&Qtop, "top");
|
|
383 defsymbol (&Qleft, "left");
|
|
384 #endif
|
|
385 defsymbol (&Qinitially_unmapped, "initially-unmapped");
|
|
386 defsymbol (&Qpopup, "popup");
|
|
387 }
|
|
388
|
|
389 void
|
|
390 vars_of_frame_mswindows (void)
|
|
391 {
|
|
392 DEFVAR_LISP ("default-mswindows-frame-plist", &Vdefault_mswindows_frame_plist /*
|
|
393 Plist of default frame-creation properties for mswindows frames.
|
|
394 These override what is specified in `default-frame-plist', but are
|
|
395 overridden by the arguments to the particular call to `make-frame'.
|
|
396
|
|
397 Note: In many cases, properties of a frame are available as specifiers
|
|
398 instead of through the frame-properties mechanism.
|
|
399
|
|
400 Here is a list of recognized frame properties, other than those
|
|
401 documented in `set-frame-properties' (they can be queried and
|
|
402 set at any time, except as otherwise noted):
|
|
403
|
|
404 initially-unmapped If non-nil, the frame will not be visible
|
|
405 when it is created. In this case, you
|
|
406 need to call `make-frame-visible' to make
|
|
407 the frame appear.
|
|
408 popup If non-nil, it should be a frame, and this
|
|
409 frame will be created as a "popup" frame
|
|
410 whose parent is the given frame. This
|
|
411 will make the window manager treat the
|
|
412 frame as a dialog box, which may entail
|
|
413 doing different things (e.g. not asking
|
|
414 for positioning, and not iconifying
|
|
415 separate from its parent).
|
|
416 top Y position (in pixels) of the upper-left
|
|
417 outermost corner of the frame (i.e. the
|
|
418 upper-left of the window-manager
|
|
419 decorations).
|
|
420 left X position (in pixels) of the upper-left
|
|
421 outermost corner of the frame (i.e. the
|
|
422 upper-left of the window-manager
|
|
423 decorations).
|
|
424
|
|
425 See also `default-frame-plist', which specifies properties which apply
|
|
426 to all frames, not just mswindows frames.
|
|
427 */ );
|
|
428 Vdefault_mswindows_frame_plist = Qnil;
|
|
429
|
|
430 mswindows_console_methods->device_specific_frame_props =
|
|
431 &Vdefault_mswindows_frame_plist;
|
|
432 }
|