annotate src/frame-msw.c @ 219:262b8bb4a523 r20-4b8

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