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