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 /* XXX FIXME: This function should be made to do something */
|
|
68 update_frame_face_values (f);
|
|
69 }
|
|
70
|
215
|
71 /* Called just before frame's properties are set, size is 10x10 or something */
|
213
|
72 static void
|
|
73 mswindows_init_frame_2 (struct frame *f, Lisp_Object props)
|
|
74 {
|
215
|
75 int x, y;
|
|
76 Lisp_Object frame, window;
|
|
77
|
|
78 XSETFRAME (frame, f);
|
|
79 default_face_height_and_width (frame, &x, &y);
|
|
80 FRAME_PIXWIDTH(f) = x * FRAME_WIDTH(f);
|
|
81 FRAME_PIXHEIGHT(f) = y * FRAME_HEIGHT(f);
|
213
|
82 }
|
|
83
|
|
84 /* Called after frame's properties are set */
|
|
85 static void
|
|
86 mswindows_init_frame_3 (struct frame *f)
|
|
87 {
|
|
88 /* Don't do this earlier or we get a WM_PAINT before the frame is ready*/
|
|
89 ShowWindow(FRAME_MSWINDOWS_HANDLE(f), SW_SHOWNORMAL);
|
|
90 }
|
|
91
|
|
92 static void
|
|
93 mswindows_delete_frame (struct frame *f)
|
|
94 {
|
|
95 if (f->frame_data)
|
|
96 {
|
|
97 ReleaseDC(FRAME_MSWINDOWS_HANDLE(f), FRAME_MSWINDOWS_DC(f));
|
|
98 DestroyWindow(FRAME_MSWINDOWS_HANDLE(f));
|
|
99 }
|
|
100 }
|
|
101
|
|
102 static void
|
|
103 mswindows_set_frame_size (struct frame *f, int cols, int rows)
|
|
104 {
|
|
105 }
|
|
106
|
|
107
|
|
108 static void
|
|
109 mswindows_set_frame_position (struct frame *f, int xoff, int yoff)
|
|
110 {
|
|
111 }
|
|
112
|
|
113 static void
|
|
114 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist)
|
|
115 {
|
|
116 int x, y;
|
|
117 int width = 0, height = 0;
|
|
118 BOOL width_specified_p = FALSE;
|
|
119 BOOL height_specified_p = FALSE;
|
|
120 BOOL x_specified_p = FALSE;
|
|
121 BOOL y_specified_p = FALSE;
|
|
122 Lisp_Object tail;
|
|
123
|
|
124 /* Extract the properties from plist */
|
|
125 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
126 {
|
|
127 Lisp_Object prop = Fcar (tail);
|
|
128 Lisp_Object val = Fcar (Fcdr (tail));
|
|
129
|
|
130 if (SYMBOLP (prop))
|
|
131 {
|
|
132 /* Kludge to handle the font property. */
|
|
133 if (EQ (prop, Qfont))
|
|
134 {
|
|
135 /* If the value is not a string we silently ignore it. */
|
|
136 if (STRINGP (val))
|
|
137 {
|
|
138 Lisp_Object frm, font_spec;
|
|
139
|
|
140 XSETFRAME (frm, f);
|
|
141 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
|
|
142
|
|
143 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
|
|
144 update_frame_face_values (f);
|
|
145 }
|
|
146 }
|
|
147 else if (EQ (prop, Qwidth))
|
|
148 {
|
|
149 CHECK_INT (val);
|
|
150 width = XINT (val);
|
|
151 width_specified_p = TRUE;
|
|
152 }
|
|
153 else if (EQ (prop, Qheight))
|
|
154 {
|
|
155 CHECK_INT (val);
|
|
156 height = XINT (val);
|
|
157 height_specified_p = TRUE;
|
|
158 }
|
|
159 else if (EQ (prop, Qleft))
|
|
160 {
|
|
161 CHECK_INT (val);
|
|
162 x = XINT (val);
|
|
163 x_specified_p = TRUE;
|
|
164 }
|
|
165 else if (EQ (prop, Qtop))
|
|
166 {
|
|
167 CHECK_INT (val);
|
|
168 y = XINT (val);
|
|
169 y_specified_p = TRUE;
|
|
170 }
|
|
171 }
|
|
172 }
|
|
173
|
|
174 /* Now we've extracted the properties, apply them */
|
|
175 if (width_specified_p || height_specified_p || x_specified_p || y_specified_p)
|
|
176 {
|
|
177 Lisp_Object frame;
|
|
178 RECT rect;
|
|
179 int pixel_width, pixel_height;
|
|
180 XSETFRAME (frame, f);
|
|
181
|
|
182 if (!width_specified_p)
|
|
183 width = FRAME_WIDTH (f);
|
|
184 if (!height_specified_p)
|
|
185 height = FRAME_HEIGHT (f);
|
|
186 char_to_pixel_size (f, width, height, &pixel_width, &pixel_height);
|
|
187
|
|
188 GetWindowRect (FRAME_MSWINDOWS_HANDLE(f), &rect);
|
|
189 if (!x_specified_p)
|
|
190 x = rect.left;
|
|
191 if (!y_specified_p)
|
|
192 y = rect.top;
|
|
193 /* XXX FIXME: Should do AdjustWindowRect here like in mswindows_handle_request */
|
|
194 MoveWindow (FRAME_MSWINDOWS_HANDLE(f), x, y, pixel_width, pixel_height,
|
|
195 (width_specified_p || height_specified_p));
|
|
196 }
|
|
197 }
|
|
198
|
|
199
|
|
200 void
|
|
201 console_type_create_frame_mswindows (void)
|
|
202 {
|
|
203 /* frame methods */
|
|
204 CONSOLE_HAS_METHOD (mswindows, init_frame_1);
|
|
205 CONSOLE_HAS_METHOD (mswindows, init_frame_2);
|
|
206 CONSOLE_HAS_METHOD (mswindows, init_frame_3);
|
|
207 /* CONSOLE_HAS_METHOD (mswindows, mark_frame); */
|
|
208 /* CONSOLE_HAS_METHOD (mswindows, focus_on_frame); */
|
|
209 CONSOLE_HAS_METHOD (mswindows, delete_frame);
|
|
210 /* CONSOLE_HAS_METHOD (mswindows, get_mouse_position); */
|
|
211 /* CONSOLE_HAS_METHOD (mswindows, set_mouse_position); */
|
|
212 /* CONSOLE_HAS_METHOD (mswindows, raise_frame); */
|
|
213 /* CONSOLE_HAS_METHOD (mswindows, lower_frame); */
|
|
214 /* CONSOLE_HAS_METHOD (mswindows, make_frame_visible); */
|
|
215 /* CONSOLE_HAS_METHOD (mswindows, make_frame_invisible); */
|
|
216 /* CONSOLE_HAS_METHOD (mswindows, iconify_frame); */
|
|
217 CONSOLE_HAS_METHOD (mswindows, set_frame_size);
|
|
218 CONSOLE_HAS_METHOD (mswindows, set_frame_position);
|
|
219 /* CONSOLE_HAS_METHOD (mswindows, frame_property); */
|
|
220 /* CONSOLE_HAS_METHOD (mswindows, internal_frame_property_p); */
|
|
221 /* CONSOLE_HAS_METHOD (mswindows, frame_properties); */
|
|
222 CONSOLE_HAS_METHOD (mswindows, set_frame_properties);
|
|
223 /* CONSOLE_HAS_METHOD (mswindows, set_title_from_bufbyte); */
|
|
224 /* CONSOLE_HAS_METHOD (mswindows, set_icon_name_from_bufbyte); */
|
|
225 /* CONSOLE_HAS_METHOD (mswindows, frame_visible_p); */
|
|
226 /* CONSOLE_HAS_METHOD (mswindows, frame_totally_visible_p); */
|
|
227 /* CONSOLE_HAS_METHOD (mswindows, frame_iconified_p); */
|
|
228 /* CONSOLE_HAS_METHOD (mswindows, set_frame_pointer); */
|
|
229 /* CONSOLE_HAS_METHOD (mswindows, set_frame_icon); */
|
|
230 /* CONSOLE_HAS_METHOD (mswindows, get_frame_parent); */
|
|
231 }
|
|
232
|
|
233 void
|
|
234 syms_of_frame_mswindows (void)
|
|
235 {
|
|
236 #if 0 /* XXX these are in general.c */
|
|
237 defsymbol (&Qname, "name");
|
|
238 defsymbol (&Qheight, "height");
|
|
239 defsymbol (&Qwidth, "width");
|
|
240 defsymbol (&Qtop, "top");
|
|
241 defsymbol (&Qleft, "left");
|
|
242 #endif
|
|
243 defsymbol (&Qinitially_unmapped, "initially-unmapped");
|
|
244 defsymbol (&Qpopup, "popup");
|
|
245 }
|
|
246
|
|
247 void
|
|
248 vars_of_frame_mswindows (void)
|
|
249 {
|
|
250 DEFVAR_LISP ("default-mswindows-frame-plist", &Vdefault_mswindows_frame_plist /*
|
|
251 Plist of default frame-creation properties for mswindows frames.
|
|
252 These override what is specified in `default-frame-plist', but are
|
|
253 overridden by the arguments to the particular call to `make-frame'.
|
|
254
|
|
255 Note: In many cases, properties of a frame are available as specifiers
|
|
256 instead of through the frame-properties mechanism.
|
|
257
|
|
258 Here is a list of recognized frame properties, other than those
|
|
259 documented in `set-frame-properties' (they can be queried and
|
|
260 set at any time, except as otherwise noted):
|
|
261
|
|
262 initially-unmapped If non-nil, the frame will not be visible
|
|
263 when it is created. In this case, you
|
|
264 need to call `make-frame-visible' to make
|
|
265 the frame appear.
|
|
266 popup If non-nil, it should be a frame, and this
|
|
267 frame will be created as a "popup" frame
|
|
268 whose parent is the given frame. This
|
|
269 will make the window manager treat the
|
|
270 frame as a dialog box, which may entail
|
|
271 doing different things (e.g. not asking
|
|
272 for positioning, and not iconifying
|
|
273 separate from its parent).
|
|
274 top Y position (in pixels) of the upper-left
|
|
275 outermost corner of the frame (i.e. the
|
|
276 upper-left of the window-manager
|
|
277 decorations).
|
|
278 left X position (in pixels) of the upper-left
|
|
279 outermost corner of the frame (i.e. the
|
|
280 upper-left of the window-manager
|
|
281 decorations).
|
|
282
|
|
283 See also `default-frame-plist', which specifies properties which apply
|
|
284 to all frames, not just mswindows frames.
|
|
285 */ );
|
|
286 Vdefault_mswindows_frame_plist = Qnil;
|
|
287
|
|
288 mswindows_console_methods->device_specific_frame_props =
|
|
289 &Vdefault_mswindows_frame_plist;
|
|
290 }
|