annotate src/frame-msw.c @ 221:6c0ae1f9357f r20-4b9

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