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