annotate src/frame-x.c @ 76:c0c698873ce1 r20-0b33

Import from CVS: tag r20-0b33
author cvs
date Mon, 13 Aug 2007 09:05:10 +0200
parents 131b0175ea99
children a145efe76779
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Functions for the X window system.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not synched with FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Substantially rewritten for XEmacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "xintrinsicp.h" /* CoreP.h needs this */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <X11/CoreP.h> /* Numerous places access the fields of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 a core widget directly. We could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 use XtVaGetValues(), but ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include <X11/Shell.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include <X11/ShellP.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "xmu.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "EmacsManager.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "EmacsFrameP.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include "EmacsShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "ExternalShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #include "glyphs-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #include "objects-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include "scrollbar-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include "faces.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /* Default properties to use when creating frames. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Vdefault_x_frame_plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Lisp_Object Qwindow_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Lisp_Object Qpopup;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object Qx_resource_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 /* helper functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 /* Return the Emacs frame-object corresponding to an X window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 x_window_to_frame (struct device *d, Window wdesc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 Lisp_Object tail, frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 /* This function was previously written to accept only a window argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (and to loop over all devices looking for a matching window), but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 that is incorrect because window ID's are not unique across displays. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 for (tail = DEVICE_FRAME_LIST (d); CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 frame = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 if (!FRAMEP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 if (FRAME_X_P (f) && XtWindow (FRAME_X_TEXT_WIDGET (f)) == wdesc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* Like x_window_to_frame but also compares the window with the widget's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 windows */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 x_any_window_to_frame (struct device *d, Window wdesc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object tail, frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 assert (DEVICE_X_P (d));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 /* This function was previously written to accept only a window argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (and to loop over all devices looking for a matching window), but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 that is incorrect because window ID's are not unique across displays. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 for (tail = DEVICE_FRAME_LIST (d); CONSP (tail); tail = XCDR (tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 frame = XCAR (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 f = XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 /* This frame matches if the window is any of its widgets. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 if (wdesc == XtWindow (FRAME_X_SHELL_WIDGET (f)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 wdesc == XtWindow (FRAME_X_CONTAINER_WIDGET (f)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 wdesc == XtWindow (FRAME_X_TEXT_WIDGET (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* Match if the window is one of the widgets at the top of the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (menubar, Energize psheets). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 /* Note: Jamie once said
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 "Do *not* match if the window is this frame's psheet."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 But this is wrong and will screw up some functions that expect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 x_any_window_to_frame() to work as advertised. I think the reason
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 for this statement is that, in the old (broken) event loop, where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 not all events went through XtDispatchEvent(), psheet events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 would incorrectly get sucked away by Emacs if this function matched
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 on psheet widgets. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 for (i = 0; i < FRAME_X_NUM_TOP_WIDGETS (f); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Widget wid = FRAME_X_TOP_WIDGETS (f)[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 if (wid && XtIsManaged (wid) && wdesc == XtWindow (wid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /* Match if the window is one of this frame's scrollbars. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 if (x_window_is_scrollbar (f, wdesc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 x_any_widget_or_parent_to_frame (struct device *d, Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 while (widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 struct frame *f = x_any_window_to_frame (d, XtWindow (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 if (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 return f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 widget = XtParent (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 struct frame *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 decode_x_frame (Lisp_Object frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 if (NILP (frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 XSETFRAME (frame, selected_frame ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 CHECK_LIVE_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 /* this will also catch dead frames, but putting in the above check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 results in a more useful error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 CHECK_X_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 return XFRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 /* window-manager interactions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 /* Not currently used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 x_wm_mark_shell_size_user_specified (Widget wmshell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 if (! XtIsWMShell (wmshell)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 EmacsShellSetSizeUserSpecified (wmshell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 x_wm_mark_shell_position_user_specified (Widget wmshell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 if (! XtIsWMShell (wmshell)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 EmacsShellSetPositionUserSpecified (wmshell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 x_wm_set_shell_iconic_p (Widget shell, int iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 if (! XtIsWMShell (shell)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 /* Because of questionable logic in Shell.c, this sequence can't work:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 w = XtCreatePopupShell (...);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 XtVaSetValues (w, XtNiconic, True, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 XtRealizeWidget (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 The iconic resource is only consulted at initialization time (when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 XtCreatePopupShell is called) instead of at realization time (just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 before the window gets created, which would be more sensible) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 at management-time (just before the window gets mapped, which would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 be most sensible of all).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 The bug is that Shell's SetValues method doesn't do anything to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 w->wm.wm_hints.initial_state until after the widget has been realized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 Calls to XtSetValues are ignored in the window between creation and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 realization. This is true of MIT X11R5 patch level 25, at least.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (Apparently some other versions of Xt don't have this bug?)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 XtVaSetValues (shell, XtNiconic, iconic_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 EmacsShellSmashIconicHint (shell, iconic_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 x_wm_set_cell_size (Widget wmshell, int cw, int ch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 if (!XtIsWMShell (wmshell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 if (cw <= 0 || ch <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 XtVaSetValues (wmshell,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 XtNwidthInc, cw,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 XtNheightInc, ch,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 x_wm_set_variable_size (Widget wmshell, int width, int height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 if (!XtIsWMShell (wmshell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #ifdef DEBUG_GEOMETRY_MANAGEMENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 /* See comment in EmacsShell.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 printf ("x_wm_set_variable_size: %d %d\n", width, height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 fflush (stdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 XtVaSetValues (wmshell,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 XtNwidthCells, width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 XtNheightCells, height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 and WM_DELETE_WINDOW, then add them. (They may already be present
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 because of the toolkit (Motif adds them, for example, but Xt doesn't).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 x_wm_hack_wm_protocols (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 Display *dpy = XtDisplay (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 struct device *d = get_device_from_display (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 Window w = XtWindow (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 int need_delete = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 int need_focus = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 if (!XtIsWMShell (widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 Atom type, *atoms = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 int format = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 unsigned long nitems = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 unsigned long bytes_after;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 if (Success == XGetWindowProperty (dpy, w, DEVICE_XATOM_WM_PROTOCOLS (d),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 0, 100, False, XA_ATOM,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 &type, &format, &nitems, &bytes_after,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (unsigned char **) &atoms)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 && format == 32 && type == XA_ATOM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 while (nitems > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 nitems--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 if (atoms [nitems] == DEVICE_XATOM_WM_DELETE_WINDOW (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 need_delete = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 else if (atoms [nitems] == DEVICE_XATOM_WM_TAKE_FOCUS (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 need_focus = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 if (atoms) XFree ((char *) atoms);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 Atom props [10];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 int count = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 if (need_delete) props[count++] = DEVICE_XATOM_WM_DELETE_WINDOW (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 if (need_focus) props[count++] = DEVICE_XATOM_WM_TAKE_FOCUS (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 if (count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 XChangeProperty (dpy, w, DEVICE_XATOM_WM_PROTOCOLS (d), XA_ATOM, 32,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 PropModeAppend, (unsigned char *) props, count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 x_wm_store_class_hints (Widget shell, char *frame_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 Display *dpy = XtDisplay (shell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 char *app_name, *app_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 XClassHint classhint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 if (!XtIsWMShell (shell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 XtGetApplicationNameAndClass (dpy, &app_name, &app_class);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 classhint.res_name = frame_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 classhint.res_class = app_class;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 XSetClassHint (dpy, XtWindow (shell), &classhint);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 x_wm_maybe_store_wm_command (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 Widget w = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 struct device *d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 if (!XtIsWMShell (w))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 if (NILP (DEVICE_X_WM_COMMAND_FRAME (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 int argc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 char **argv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 make_argc_argv (Vcommand_line_args, &argc, &argv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 XSetCommand (XtDisplay (w), XtWindow (w), argv, argc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 free_argc_argv (argv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 XSETFRAME (DEVICE_X_WM_COMMAND_FRAME (d), f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* If we're deleting the frame on which the WM_COMMAND property has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 set, then move that property to another frame so that there is exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 one frame that has that property set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 x_wm_maybe_move_wm_command (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 struct device *d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 /* There may not be a frame in DEVICE_X_WM_COMMAND_FRAME()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 if we C-c'ed at startup at the right time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 if (FRAMEP (DEVICE_X_WM_COMMAND_FRAME (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 && f == XFRAME (DEVICE_X_WM_COMMAND_FRAME (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 Lisp_Object rest = DEVICE_FRAME_LIST (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 DEVICE_X_WM_COMMAND_FRAME (d) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 /* find some random other X frame that is not this one, or give up */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 /* skip non-top-level (ExternalClient) frames */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 while (!NILP (rest) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (f == XFRAME (XCAR (rest)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 !FRAME_X_TOP_LEVEL_FRAME_P (XFRAME (XCAR (rest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 rest = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 if (NILP (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 f = XFRAME (XCAR (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 x_wm_maybe_store_wm_command (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 x_frame_iconified_p (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 Atom actual_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 int actual_format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 unsigned long nitems, bytesafter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 unsigned long *datap = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 Widget widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 int result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 struct device *d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 widget = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 if (Success == XGetWindowProperty (XtDisplay (widget), XtWindow (widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 DEVICE_XATOM_WM_STATE (d), 0, 2, False,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 DEVICE_XATOM_WM_STATE (d), &actual_type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 &actual_format, &nitems, &bytesafter,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (unsigned char **) &datap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 && datap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 if (nitems <= 2 /* "suggested" by ICCCM version 1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 && datap[0] == IconicState)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 result = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 XFree ((char *) datap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 /* frame properties */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 /* Connect the frame-property names (symbols) to the corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 X Resource Manager names. The name of a property, as a Lisp symbol,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 has an `x-resource-name' property which is a Lisp_String. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 init_x_prop_symbols (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 #define def(sym, rsrc) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 pure_put (sym, Qx_resource_name, build_string (rsrc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 #define defi(sym,rsrc) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 def (sym, rsrc); pure_put (sym, Qintegerp, Qt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 #if 0 /* this interferes with things. #### fix this right */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 def (Qminibuffer, XtNminibuffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 def (Qunsplittable, XtNunsplittable);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 defi(Qinternal_border_width, XtNinternalBorderWidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 def (Qtop_toolbar_shadow_color, XtNtopToolBarShadowColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 def (Qbottom_toolbar_shadow_color, XtNbottomToolBarShadowColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 def (Qbackground_toolbar_color, XtNbackgroundToolBarColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 def (Qtop_toolbar_shadow_pixmap, XtNtopToolBarShadowPixmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 def (Qbottom_toolbar_shadow_pixmap, XtNbottomToolBarShadowPixmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 defi(Qtoolbar_shadow_thickness, XtNtoolBarShadowThickness);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 def (Qscrollbar_placement, XtNscrollBarPlacement);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 defi(Qinter_line_space, XtNinterline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 /* font, foreground */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 def (Qiconic, XtNiconic);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 def (Qbar_cursor, XtNbarCursor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 def (Qvisual_bell, XtNvisualBell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 defi(Qbell_volume, XtNbellVolume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 def (Qpointer_background, XtNpointerBackground);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 def (Qpointer_color, XtNpointerColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 def (Qtext_pointer, XtNtextPointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 def (Qspace_pointer, XtNspacePointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 def (Qmodeline_pointer, XtNmodeLinePointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 def (Qgc_pointer, XtNgcPointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 /* geometry, initial_geometry */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 def (Qinitially_unmapped, XtNinitiallyUnmapped);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 /* preferred_width, preferred_height */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 def (Quse_backing_store, XtNuseBackingStore);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 /* inherited: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 def (Qborder_color, XtNborderColor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 defi(Qborder_width, XtNborderWidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 defi(Qwidth, XtNwidth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 defi(Qheight, XtNheight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 defi(Qleft, XtNx);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 defi(Qtop, XtNy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 #undef def
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 color_to_string (Widget w, unsigned long pixel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 char buf[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 XColor color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 color.pixel = pixel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 XQueryColor (XtDisplay (w), w->core.colormap, &color);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 sprintf (buf, "#%04x%04x%04x", color.red, color.green, color.blue);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 return build_string (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 x_get_top_level_position (Display *d, Window w, Position *x, Position *y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 Window root, parent = w, *children;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 unsigned int nchildren;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 XWindowAttributes xwa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 w = parent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 if (!XQueryTree (d, w, &root, &parent, &children, &nchildren))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 *x = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 *y = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 XFree (children);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 while (root != parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 XGetWindowAttributes (d, w, &xwa);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 *x = xwa.x;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 *y = xwa.y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
489 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 x_smash_bastardly_shell_position (Widget shell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 /* Naturally those bastards who wrote Xt couldn't be bothered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 to learn about race conditions and such. We can't trust
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
495 the X and Y values to have any semblance of correctness,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 so we smash the right values in place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 /* We might be called before we've actually realized the window (if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 we're checking for the minibuffer resource). This will bomb in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 that case so we don't bother calling it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 if (XtWindow (shell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 x_get_top_level_position (XtDisplay (shell), XtWindow (shell),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 &shell->core.x, &shell->core.y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 }
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
505 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 x_frame_property (struct frame *f, Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 Widget shell = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 EmacsFrame w = (EmacsFrame) FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 Widget gw = (Widget) w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
514 #define FROB(propprop, value) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
515 do { \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
516 if (EQ (property, propprop)) \
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
517 return (value); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
520 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 if (EQ (property, Qleft) || EQ (property, Qtop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 x_smash_bastardly_shell_position (shell);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
523 #endif
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
524 if (EQ (property, Qleft) || EQ (property, Qtop))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
525 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
526 Position x, y;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
527 if (!XtWindow(shell))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
528 return make_int (0);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
529 x_get_top_level_position (XtDisplay (shell), XtWindow (shell), &x, &y);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
530 FROB (Qleft, make_int (x));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
531 FROB (Qtop, make_int (y));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
532 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
533 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 FROB (Qleft, make_int (shell->core.x));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 FROB (Qtop, make_int (shell->core.y));
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
536 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 FROB (Qborder_width, make_int (w->core.border_width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 FROB (Qinternal_border_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 make_int (w->emacs_frame.internal_border_width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 FROB (Qborder_color, color_to_string (gw, w->core.border_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 FROB (Qtop_toolbar_shadow_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 color_to_string (gw, w->emacs_frame.top_toolbar_shadow_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 FROB (Qbottom_toolbar_shadow_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 color_to_string (gw, w->emacs_frame.bottom_toolbar_shadow_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 FROB (Qbackground_toolbar_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 color_to_string (gw, w->emacs_frame.background_toolbar_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 FROB (Qtoolbar_shadow_thickness,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 make_int (w->emacs_frame.toolbar_shadow_thickness));
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
550 #endif /* HAVE_TOOLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 FROB (Qinter_line_space, make_int (w->emacs_frame.interline));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 FROB (Qwindow_id, Fx_window_id (make_frame (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 #undef FROB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 return Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 x_internal_frame_property_p (struct frame *f, Lisp_Object property)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
562 return EQ (property, Qleft)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
563 || EQ (property, Qtop)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
564 || EQ (property, Qborder_width)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
565 || EQ (property, Qinternal_border_width)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
566 || EQ (property, Qborder_color)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 #ifdef HAVE_TOOLBARS
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
568 || EQ (property, Qtop_toolbar_shadow_color)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
569 || EQ (property, Qbottom_toolbar_shadow_color)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
570 || EQ (property, Qbackground_toolbar_color)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
571 || EQ (property, Qtoolbar_shadow_thickness)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 #endif
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
573 || EQ (property, Qinter_line_space)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
574 || EQ (property, Qwindow_id)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
575 || STRINGP (property);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 x_frame_properties (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 Lisp_Object result = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 Widget shell = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 EmacsFrame w = (EmacsFrame) FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 Widget gw = (Widget) w;
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
585 Position x, y;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
587 #define FROB(propprop, value) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
588 do { \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
589 Lisp_Object temtem = (value); \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
590 if (!NILP (temtem)) \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
591 /* backwards order; we reverse it below */ \
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
592 result = Fcons (temtem, Fcons (propprop, result)); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
595 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 x_smash_bastardly_shell_position (shell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 FROB (Qleft, make_int (shell->core.x));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 FROB (Qtop, make_int (shell->core.y));
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
599 #endif
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
600 if (!XtWindow(shell))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
601 x = y = 0;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
602 else
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
603 x_get_top_level_position (XtDisplay (shell), XtWindow (shell), &x, &y);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
604
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
605 FROB (Qleft, make_int (x));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
606 FROB (Qtop, make_int (y));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
607
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 FROB (Qborder_width, make_int (w->core.border_width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 FROB (Qinternal_border_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 make_int (w->emacs_frame.internal_border_width));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 FROB (Qborder_color, color_to_string (gw, w->core.border_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 FROB (Qtop_toolbar_shadow_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 color_to_string (gw, w->emacs_frame.top_toolbar_shadow_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 FROB (Qbottom_toolbar_shadow_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 color_to_string (gw, w->emacs_frame.bottom_toolbar_shadow_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 FROB (Qbackground_toolbar_color,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 color_to_string (gw, w->emacs_frame.background_toolbar_pixel));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 FROB (Qtoolbar_shadow_thickness,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 make_int (w->emacs_frame.toolbar_shadow_thickness));
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
621 #endif /* HAVE_TOOLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 FROB (Qinter_line_space, make_int (w->emacs_frame.interline));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 FROB (Qwindow_id, Fx_window_id (make_frame (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 #undef FROB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 /* Functions called only from `x_set_frame_properties' to set
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
632 individual properties. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
634 static void
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
635 x_set_frame_text_value (struct frame *f, Bufbyte *value,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
636 String Xt_resource_name,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
637 String Xt_resource_encoding_name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
639 Atom encoding = XA_STRING;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
640 String new_XtValue = (String) value;
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
641 String old_XtValue = NULL;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
642 Arg av[2];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
644 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
645 Bufbyte *ptr;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
646 /* Optimize for common ASCII case */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
647 for (ptr = value; *ptr; ptr++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
648 if (!BYTE_ASCII_P (*ptr))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
649 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
650 CONST char * tmp;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
651 encoding = DEVICE_XATOM_COMPOUND_TEXT (XDEVICE (FRAME_DEVICE (f)));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
652 GET_C_CHARPTR_EXT_CTEXT_DATA_ALLOCA ((CONST char *) value, tmp);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
653 new_XtValue = (String) tmp;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
654 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
655 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
656 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
657
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
658 /* ### Caching is device-independent - belongs in update_frame_title. */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
659 XtSetArg (av[0], Xt_resource_name, &old_XtValue);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 XtGetValues (FRAME_X_SHELL_WIDGET (f), av, 1);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
661 if (!old_XtValue || strcmp (new_XtValue, old_XtValue))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
663 XtSetArg (av[0], Xt_resource_name, new_XtValue);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
664 XtSetArg (av[1], Xt_resource_encoding_name, encoding);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
665 XtSetValues (FRAME_X_SHELL_WIDGET (f), av, 2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
669 static void
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
670 x_set_title_from_bufbyte (struct frame *f, Bufbyte *name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 {
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
672 x_set_frame_text_value (f, name, XtNtitle, XtNtitleEncoding);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
673 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
675 static void
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
676 x_set_icon_name_from_bufbyte (struct frame *f, Bufbyte *name)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
677 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
678 x_set_frame_text_value (f, name, XtNiconName, XtNiconNameEncoding);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 /* Set the initial frame size as specified. This function is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 when the frame's widgets have not yet been realized. In this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 case, it is not sufficient just to set the width and height of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 the EmacsFrame widget, because they will be ignored when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 widget is realized (instead, the shell's geometry resource is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 used). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 x_set_initial_frame_size (struct frame *f, int flags, int x, int y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 unsigned int w, unsigned int h)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 char shell_geom [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 int xval, yval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 char xsign, ysign;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 char uspos = !!(flags & (XValue | YValue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 char ussize = !!(flags & (WidthValue | HeightValue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 char *temp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 /* assign the correct size to the EmacsFrame widget ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 EmacsFrameSetCharSize (FRAME_X_TEXT_WIDGET (f), w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 /* and also set the WMShell's geometry */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (flags & XNegative) ? (xval = -x, xsign = '-') : (xval = x, xsign = '+');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (flags & YNegative) ? (yval = -y, ysign = '-') : (yval = y, ysign = '+');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 if (uspos && ussize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 sprintf (shell_geom, "=%dx%d%c%d%c%d", w, h, xsign, xval, ysign, yval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 else if (uspos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 sprintf (shell_geom, "=%c%d%c%d", xsign, xval, ysign, yval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 else if (ussize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 sprintf (shell_geom, "=%dx%d", w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 if (uspos || ussize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 temp = xmalloc (1 + strlen (shell_geom));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 strcpy (temp, shell_geom);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 FRAME_X_GEOM_FREE_ME_PLEASE (f) = temp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 temp = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 XtVaSetValues (FRAME_X_SHELL_WIDGET (f), XtNgeometry, temp, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 /* Report to X that a frame property of frame S is being set or changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 If the property is not specially recognized, do nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 x_set_frame_properties (struct frame *f, Lisp_Object plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
731 Position x, y;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 Dimension width = 0, height = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 Bool width_specified_p = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 Bool height_specified_p = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 Bool x_position_specified_p = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 Bool y_position_specified_p = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 Bool internal_border_width_specified = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 Lisp_Object tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 Widget w = FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 for (tail = plist; !NILP (tail); tail = Fcdr (Fcdr (tail)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 Lisp_Object prop = Fcar (tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 Lisp_Object val = Fcar (Fcdr (tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 if (STRINGP (prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 CONST char *extprop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
750 if (XSTRING_LENGTH (prop) == 0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 GET_C_STRING_CTEXT_DATA_ALLOCA (prop, extprop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 if (STRINGP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 Extbyte *extval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 Extcount extvallen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 GET_STRING_CTEXT_DATA_ALLOCA (val, extval, extvallen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 XtVaSetValues (w, XtVaTypedArg, extprop,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 XtRString, extval, extvallen + 1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 XtVaSetValues (w, XtVaTypedArg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 extprop, XtRInt, XINT (val),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 sizeof (int),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 else if (SYMBOLP (prop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 Lisp_Object str = Fget (prop, Qx_resource_name, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 int int_p = !NILP (Fget (prop, Qintegerp, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 if (NILP (prop) || NILP (str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 /* Kludge to handle the font property. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 if (EQ (prop, Qfont))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 /* If the value is not a string we silently ignore it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 if (STRINGP (val))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 Lisp_Object frm, font_spec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 XSETFRAME (frm, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 font_spec = Fget (Fget_face (Qdefault), Qfont, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 Fadd_spec_to_specifier (font_spec, val, frm, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 update_frame_face_values (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 CHECK_STRING (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 /* Kludge the width/height so that we interpret them in characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 instead of pixels. Yuck yuck yuck. */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
800 if (!strcmp ((char *) XSTRING_DATA (str), "width"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 CHECK_INT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 width = XINT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 width_specified_p = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 }
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
807 if (!strcmp ((char *) XSTRING_DATA (str), "height"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 CHECK_INT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 height = XINT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 height_specified_p = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 /* Further kludge the x/y. */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
815 if (!strcmp ((char *) XSTRING_DATA (str), "x"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 CHECK_INT (val);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
818 x = (Position) XINT (val);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 x_position_specified_p = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 }
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
822 if (!strcmp ((char *) XSTRING_DATA (str), "y"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 CHECK_INT (val);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
825 y = (Position) XINT (val);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 y_position_specified_p = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 /* Have you figured out by now that this entire function is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 one gigantic kludge? */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
831 if (!strcmp ((char *) XSTRING_DATA (str),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 "internalBorderWidth"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 internal_border_width_specified = True;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 if (int_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 CHECK_INT (val);
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
840 XtVaSetValues (w, (char *) XSTRING_DATA (str),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 XINT (val), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 else if (EQ (val, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 XtVaSetValues (w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 /* XtN... */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
846 (char *) XSTRING_DATA (str),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 True,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 else if (EQ (val, Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 XtVaSetValues (w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 /* XtN... */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
852 (char *) XSTRING_DATA (str),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 False,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 CHECK_STRING (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 XtVaSetValues (w, XtVaTypedArg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 /* XtN... */
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
860 (char *) XSTRING_DATA (str),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 XtRString,
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
862 XSTRING_DATA (val),
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
863 XSTRING_LENGTH (val) + 1,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 #ifdef HAVE_SCROLLBARS
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
868 if (!strcmp ((char *) XSTRING_DATA (str), "scrollBarWidth")
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 10
diff changeset
869 || !strcmp ((char *) XSTRING_DATA (str),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 "scrollBarHeight"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 x_update_frame_scrollbars (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 }
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
874 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 /* Kludge kludge kludge. We need to deal with the size and position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 specially. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 int size_specified_p = width_specified_p || height_specified_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 int position_specified_p = x_position_specified_p ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 y_position_specified_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 if (!width_specified_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 width = FRAME_WIDTH (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 if (!height_specified_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 height = FRAME_HEIGHT (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 /* Kludge kludge kludge kludge. */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
891 if (position_specified_p &&
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
892 (!x_position_specified_p || !y_position_specified_p))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
893 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
894 Position dummy;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
895 Widget shell = FRAME_X_SHELL_WIDGET (f);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
896 x_get_top_level_position (XtDisplay (shell), XtWindow (shell),
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
897 (x_position_specified_p ? &dummy : &x),
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
898 (y_position_specified_p ? &dummy : &y));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
899 #if 0
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
900 x = (int) (FRAME_X_SHELL_WIDGET (f)->core.x);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
901 y = (int) (FRAME_X_SHELL_WIDGET (f)->core.y);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
902 #endif
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
903 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 if (!f->init_finished)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 int flags = (size_specified_p ? WidthValue | HeightValue : 0) |
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
908 (position_specified_p ?
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
909 XValue | YValue | (x < 0 ? XNegative : 0) | (y < 0 ? YNegative : 0)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
910 : 0);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 if (size_specified_p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 || position_specified_p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 || internal_border_width_specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 x_set_initial_frame_size (f, flags, x, y, width, height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 if (size_specified_p || internal_border_width_specified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 Fset_frame_size (frame, make_int (width),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 make_int (height), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 if (position_specified_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 Fset_frame_position (frame, make_int (x), make_int (y));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 static int frame_title_format_already_set;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 maybe_set_frame_title_format (Widget shell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 /* Only do this if this is the first X frame we're creating.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 If the *title resource (or -title option) was specified, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 set frame-title-format to its value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 if (!frame_title_format_already_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 /* No doubt there's a less stupid way to do this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 char *results [2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 XtResource resources [2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 results [0] = results [1] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 resources [0].resource_name = XtNtitle;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 resources [0].resource_class = XtCTitle;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 resources [0].resource_type = XtRString;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 resources [0].resource_size = sizeof (String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 resources [0].resource_offset = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 resources [0].default_type = XtRString;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 resources [0].default_addr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 resources [1].resource_name = XtNiconName;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 resources [1].resource_class = XtCIconName;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 resources [1].resource_type = XtRString;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 resources [1].resource_size = sizeof (String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 resources [1].resource_offset = sizeof (char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 resources [1].default_type = XtRString;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 resources [1].default_addr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 XtGetSubresources (XtParent (shell), (XtPointer) results,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 shell->core.name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 shell->core.widget_class->core_class.class_name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 resources, XtNumber (resources), 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 if (results[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 Vframe_title_format = build_string (results[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 if (results[1])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 Vframe_icon_title_format = build_string (results[1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 frame_title_format_already_set = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 #ifdef HAVE_CDE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 #include <Dt/Dt.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 #include <Dt/Dnd.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
984 static Widget CurrentDragWidget = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
985
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
986 static void
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
987 x_cde_destroy_callback (Widget widget, XtPointer clientData,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
988 XtPointer callData)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
989 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
990 xfree (clientData);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
991 CurrentDragWidget = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
992 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
993
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
994 static void
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
995 x_cde_convert_callback (Widget widget, XtPointer clientData,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
996 XtPointer callData)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
997 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
998 DtDndConvertCallbackStruct *convertInfo =
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
999 (DtDndConvertCallbackStruct *) callData;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1000 char *textdata = (char *) clientData;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1001
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1002 if(convertInfo == NULL)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1003 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1004 return;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1005 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1006
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1007 if((convertInfo->dragData->protocol != DtDND_BUFFER_TRANSFER) ||
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1008 (convertInfo->reason != DtCR_DND_CONVERT_DATA))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1009 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1010 return;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1011 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1012
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1013 convertInfo->dragData->data.buffers[0].bp = XtNewString(textdata);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1014 convertInfo->dragData->data.buffers[0].size = strlen(textdata);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1015 convertInfo->dragData->data.buffers[0].name = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1016 convertInfo->dragData->numItems = 1;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1017 convertInfo->status = DtDND_SUCCESS;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1018 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1019
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1020
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1021 static XtCallbackRec dnd_convert_cb_rec[2];
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1022 static XtCallbackRec dnd_destroy_cb_rec[2];
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1023 static int drag_not_done = 0;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1024
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1025 static Lisp_Object
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1026 abort_current_drag(Lisp_Object arg)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1027 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1028 if(CurrentDragWidget && drag_not_done)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1029 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1030 XmDragCancel(CurrentDragWidget);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1031 CurrentDragWidget = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1032 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1033 return arg;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1034 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1035
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1036 DEFUN ("cde-start-drag-internal", Fcde_start_drag_internal, 1, 1, 0, /*
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1037 Start a CDE drag from a buffer.
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1038 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1039 (text))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1040 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1041 if (STRINGP (text))
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1042 {
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1043 struct frame *f = decode_x_frame (Fselected_frame (Qnil));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1044 XEvent event;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1045 Widget Wuh = FRAME_X_TEXT_WIDGET (f);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1046 char *Ctext;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1047 Display *display = XtDisplayOfObject (Wuh);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1048 Window root_window, child_window;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1049 int root_x, root_y, win_x, win_y;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1050 unsigned int keys_and_buttons;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1051
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1052 if (XQueryPointer (display, RootWindow (display, DefaultScreen (display)),
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1053 &root_window, &child_window, &root_x, &root_y,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1054 &win_x, &win_y, &keys_and_buttons) == False)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1055 return Qnil;
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1056
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1057 Ctext = xstrdup ((char *) XSTRING_DATA (text));
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1058
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1059 /*
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1060 * Eek - XEmacs doesn't keep the old X event around so we have to
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1061 * build a dummy event. This is a truly gross hack.
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1062 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1063
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1064 event.xbutton.type = ButtonPress;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1065 event.xbutton.send_event = False;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1066 event.xbutton.display = XtDisplayOfObject(Wuh);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1067 event.xbutton.window = XtWindowOfObject(Wuh);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1068 event.xbutton.root = XRootWindow(event.xkey.display, 0);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1069 event.xbutton.subwindow = 0;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1070 event.xbutton.time = 0;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1071 event.xbutton.x = win_x;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1072 event.xbutton.y = win_y;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1073 event.xbutton.x_root = root_x;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1074 event.xbutton.y_root = root_y;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1075 event.xbutton.state = 0;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1076 event.xbutton.button = 1;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1077 event.xkey.same_screen = True;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1078
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1079 dnd_convert_cb_rec[0].callback = x_cde_convert_callback;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1080 dnd_convert_cb_rec[0].closure = (XtPointer) Ctext;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1081 dnd_convert_cb_rec[1].callback = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1082 dnd_convert_cb_rec[1].closure = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1083
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1084 dnd_destroy_cb_rec[0].callback = x_cde_destroy_callback;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1085 dnd_destroy_cb_rec[0].closure = (XtPointer) Ctext;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1086 dnd_destroy_cb_rec[1].callback = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1087 dnd_destroy_cb_rec[1].closure = NULL;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1088
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1089 CurrentDragWidget =
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1090 DtDndDragStart (Wuh, &event, DtDND_BUFFER_TRANSFER, 1, XmDROP_COPY,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1091 dnd_convert_cb_rec,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1092 dnd_destroy_cb_rec,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1093 NULL, 0);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1094 return Qt;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1095 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1096 return Qnil;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1097 }
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1098
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 x_cde_transfer_callback (Widget widget, XtPointer clientData,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 XtPointer callData)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 {
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1103 char *filePath, *buf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 int ii;
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1105 Lisp_Object path = Qnil;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 Lisp_Object frame = Qnil;
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1107 Lisp_Object data = Qnil;
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1108 struct gcpro gcpro1, gcpro2, gcpro3;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 DtDndTransferCallbackStruct *transferInfo =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (DtDndTransferCallbackStruct *) callData;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 if (transferInfo == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1116 GCPRO3 (path, frame, data);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 frame = make_frame ((struct frame *) clientData);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 if (transferInfo->dropData->protocol == DtDND_FILENAME_TRANSFER)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 for (ii = 0; ii < transferInfo->dropData->numItems; ii++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 filePath = transferInfo->dropData->data.files[ii];
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1124 /* ### Mule-izing required */
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
1125 path = make_string ((Bufbyte *)filePath, strlen (filePath));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 va_run_hook_with_args (Qdrag_and_drop_functions, 2, frame, path);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 }
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1129 else if (transferInfo->dropData->protocol == DtDND_BUFFER_TRANSFER)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1130 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1131 int speccount = specpdl_depth();
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1132
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1133 record_unwind_protect(abort_current_drag, Qnil);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1134 drag_not_done = 1;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1135 for (ii = 0; ii < transferInfo->dropData->numItems; ii++)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1136 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1137 filePath = transferInfo->dropData->data.buffers[ii].name;
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1138 /* ### Mule-izing required */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1139 path = (filePath == NULL) ? Qnil
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
1140 : make_string ((Bufbyte *)filePath, strlen (filePath));
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1141 buf = transferInfo->dropData->data.buffers[ii].bp;
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 70
diff changeset
1142 data = make_string((Bufbyte *)buf,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1143 transferInfo->dropData->data.buffers[ii].size);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1144 va_run_hook_with_args(Qdrag_and_drop_functions, 3, frame, path,
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1145 data);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1146 }
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1147 drag_not_done = 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1148 unbind_to(speccount, Qnil);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1149 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1150
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 }
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1154 #endif /* HAVE_CDE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1156 #ifdef HAVE_OFFIX_DND
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1157 #include <OffiX/DragAndDrop.h>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1158
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1159 void
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1160 x_offix_drop_event_handler (Widget widget, XtPointer data, XEvent *event,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1161 Boolean *b)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1162 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1163 int i, len, Type;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1164 unsigned char *Data;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1165 unsigned long Size;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1166
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1167 Lisp_Object path = Qnil;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1168 Lisp_Object frame = Qnil;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1169
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1170 struct gcpro gcpro1, gcpro2;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1171
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1172 Type = DndDataType (event);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1173 if ((Type != DndFile) && (Type != DndFiles) && (Type != DndExe))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1174 return;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1175 DndGetData (&Data, &Size);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1176
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1177 GCPRO2 (path, frame);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1178
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1179 frame = make_frame ((struct frame *) data);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1180
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1181 if (Type == DndFiles)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1182 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1183 while (*Data)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1184 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1185 len = strlen ((char*) Data);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1186 path = make_string ((char*) Data, len);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1187 va_run_hook_with_args (Qdrag_and_drop_functions, 2, frame, path);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1188 Data += len+1;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1189 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1190 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1191 else
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1192 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1193 path = make_string ((char*) Data, strlen (Data));
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1194 va_run_hook_with_args (Qdrag_and_drop_functions, 2, frame, path);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1195 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1196
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1197 UNGCPRO;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1198 return;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1199 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1200 #endif /* HAVE_OFFIX_DND */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1201
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 /* widget creation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 /* The widget hierarchy is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 argv[0] shell container FRAME-NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 ApplicationShell EmacsShell EmacsManager EmacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 We accept geometry specs in this order:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 *FRAME-NAME.geometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 *EmacsFrame.geometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 Emacs.geometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 Other possibilities for widget hierarchies might be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 argv[0] frame container FRAME-NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 ApplicationShell EmacsShell EmacsManager EmacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 argv[0] FRAME-NAME container FRAME-NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 ApplicationShell EmacsShell EmacsManager EmacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 argv[0] FRAME-NAME container emacsTextPane
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 ApplicationShell EmacsShell EmacsManager EmacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 The ExternalShell widget is simply a replacement for the Shell widget
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 which is able to deal with using an externally-supplied window instead
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 of always creating its own.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 is_valid_window (Window w, struct device *d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 XWindowAttributes xwa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 Display *dpy = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 expect_x_error (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 XGetWindowAttributes (dpy, w, &xwa);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 return !x_error_occurred_p (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 /* This sends a synthetic mouse-motion event to the frame, if the mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 is over the frame. This ensures that the cursor gets set properly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 before the user moves the mouse for the first time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 x_send_synthetic_mouse_event (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 /* #### write this function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 first_x_frame_p (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 Lisp_Object rest = DEVICE_FRAME_LIST (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 while (!NILP (rest) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 (f == XFRAME (XCAR (rest)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 !FRAME_X_P (XFRAME (XCAR (rest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 rest = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 return (NILP (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 /* Figure out what size the EmacsFrame widget should initially be,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 and set it. Should be called after the default font has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 determined but before the widget has been realized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 x_initialize_frame_size (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 /* Geometry of the AppShell */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 int app_flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 int app_x = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 int app_y = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 unsigned int app_w = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 unsigned int app_h = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 /* Geometry of the EmacsFrame */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 int frame_flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 int frame_x = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 int frame_y = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 unsigned int frame_w = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 unsigned int frame_h = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 /* Hairily merged geometry */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 int x = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 int y = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 unsigned int w = 80;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 unsigned int h = 40;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 int flags = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 char *geom = 0, *ew_geom = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 Boolean iconic_p = False, ew_iconic_p = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 Widget wmshell = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 /* #### This may not be an ApplicationShell any more, with the 'popup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 frame property. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 Widget app_shell = XtParent (wmshell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 Widget ew = FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 /* set the position of the frame's root window now. When the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 frame was created, the position was initialized to (0,0). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 struct window *win = XWINDOW (f->root_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 WINDOW_LEFT (win) = FRAME_LEFT_BORDER_END (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 WINDOW_TOP (win) = FRAME_TOP_BORDER_END (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 if (!NILP (f->minibuffer_window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 win = XWINDOW (f->minibuffer_window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 WINDOW_LEFT (win) = FRAME_LEFT_BORDER_END (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 /* If we're an external widget, then the size of the frame is predetermined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 (by the client) and is not our decision to make. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 if (FRAME_X_EXTERNAL_WINDOW_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 /* #### this junk has not been tested; therefore it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 probably wrong. Doesn't really matter at this point because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 currently all frames are either top-level or external widgets. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 /* If we're not our own top-level window, then we shouldn't go messing around
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 with top-level shells or "Emacs.geometry" or any such stuff. Therefore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 we do as follows to determine the size of the frame:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 1) If a value for the frame's "geometry" resource was specified, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 use it. (This specifies a size in characters.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 2) Else, if the "width" and "height" resources were specified, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 leave them alone. (This is a value in pixels. Sorry, we can't break
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 Xt conventions here.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 3) Else, assume a size of 64x12. (This is somewhat arbitrary, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 it's unlikely that a size of 80x40 is desirable because we're probably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 inside of a dialog box.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 Set the widget's x, y, height, and width as determined. Don't set the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 top-level container widget, because we don't necessarily know what it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 is. (Assume it is smart and pays attention to our values.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 if (!FRAME_X_TOP_LEVEL_FRAME_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 XtVaGetValues (ew, XtNgeometry, &ew_geom, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 if (ew_geom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 frame_flags = XParseGeometry (ew_geom, &frame_x, &frame_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 &frame_w, &frame_h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 if (! (frame_flags & (WidthValue | HeightValue)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 XtVaGetValues (ew, XtNwidth, &frame_w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 XtNheight, &frame_h, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 if (!frame_w && !frame_h)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 frame_w = 64;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 frame_h = 12;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 frame_flags |= WidthValue | HeightValue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 if (frame_flags & (WidthValue | HeightValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 EmacsFrameSetCharSize (ew, frame_w, frame_h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 if (frame_flags & (XValue | YValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 XtVaGetValues (ew, XtNwidth, &frame_w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 XtNheight, &frame_h, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 if (frame_flags & XNegative)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 frame_x += frame_w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 if (frame_flags & YNegative)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 frame_y += frame_h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 XtVaSetValues (ew, XtNx, frame_x, XtNy, frame_y, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 /* OK, we're a top-level shell. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 if (!XtIsWMShell (wmshell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 /* If the EmacsFrame doesn't have a geometry but the shell does,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 treat that as the geometry of the frame. (Is this bogus?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 I'm not sure.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 XtVaGetValues (ew, XtNgeometry, &ew_geom, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 if (!ew_geom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 XtVaGetValues (wmshell, XtNgeometry, &geom, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 if (geom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 ew_geom = geom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 XtVaSetValues (ew, XtNgeometry, ew_geom, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 /* If the Shell is iconic, then the EmacsFrame is iconic. (Is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 this bogus? I'm not sure.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 XtVaGetValues (ew, XtNiconic, &ew_iconic_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 if (!ew_iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 XtVaGetValues (wmshell, XtNiconic, &iconic_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 if (iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 ew_iconic_p = iconic_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 XtVaSetValues (ew, XtNiconic, iconic_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 XtVaGetValues (app_shell, XtNgeometry, &geom, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 if (geom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 app_flags = XParseGeometry (geom, &app_x, &app_y, &app_w, &app_h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 if (ew_geom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 frame_flags = XParseGeometry (ew_geom, &frame_x, &frame_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 &frame_w, &frame_h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 if (first_x_frame_p (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 /* If this is the first frame created:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 ====================================
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 - Use the ApplicationShell's size/position, if specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 (This is "Emacs.geometry", or the "-geometry" command line arg.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 - Else use the EmacsFrame's size/position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 (This is "*FRAME-NAME.geometry")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 - If the AppShell is iconic, the frame should be iconic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 AppShell comes first so that -geometry always applies to the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 frame created, even if there is an "every frame" entry in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 resource database.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 if (app_flags & (XValue | YValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 x = app_x; y = app_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 flags |= (app_flags & (XValue | YValue | XNegative | YNegative));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 else if (frame_flags & (XValue | YValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 x = frame_x; y = frame_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 flags |= (frame_flags & (XValue | YValue | XNegative | YNegative));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 if (app_flags & (WidthValue | HeightValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 w = app_w; h = app_h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 flags |= (app_flags & (WidthValue | HeightValue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 else if (frame_flags & (WidthValue | HeightValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 w = frame_w; h = frame_h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 flags |= (frame_flags & (WidthValue | HeightValue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 /* If the AppShell is iconic, then the EmacsFrame is iconic. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 if (!ew_iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 XtVaGetValues (app_shell, XtNiconic, &iconic_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 if (iconic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 ew_iconic_p = iconic_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 XtVaSetValues (ew, XtNiconic, iconic_p, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 /* If this is not the first frame created:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 ========================================
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 - use the EmacsFrame's size/position if specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 - Otherwise, use the ApplicationShell's size, but not position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 So that means that one can specify the position of the first frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 with "Emacs.geometry" or `-geometry'; but can only specify the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 position of subsequent frames with "*FRAME-NAME.geometry".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 AppShell comes second so that -geometry does not apply to subsequent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 frames when there is an "every frame" entry in the resource db,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 but does apply to the first frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 if (frame_flags & (XValue | YValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 x = frame_x; y = frame_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 flags |= (frame_flags & (XValue | YValue | XNegative | YNegative));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 if (frame_flags & (WidthValue | HeightValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 w = frame_w; h = frame_h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 flags |= (frame_flags & (WidthValue | HeightValue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 else if (app_flags & (WidthValue | HeightValue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 w = app_w;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 h = app_h;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 flags |= (app_flags & (WidthValue | HeightValue));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 x_set_initial_frame_size (f, flags, x, y, w, h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 x_get_layout_sizes (struct frame *f, Dimension *topbreadth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 /* compute height of all top-area widgets */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 for (i=0, *topbreadth = 0; i<FRAME_X_NUM_TOP_WIDGETS (f); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 Widget wid = FRAME_X_TOP_WIDGETS (f)[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 if (wid && XtIsManaged (wid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 *topbreadth += wid->core.height + 2*wid->core.border_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 x_layout_widgets (Widget w, XtPointer client_data, XtPointer call_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 struct frame *f = (struct frame *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 EmacsManagerResizeStruct *emst = (EmacsManagerResizeStruct *) call_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 Dimension width = emst->width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 Dimension height = emst->height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 Widget text = FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 Dimension textbord = text->core.border_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 Dimension topbreadth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 Position text_x = 0, text_y = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 x_get_layout_sizes (f, &topbreadth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 /* first the menubar and psheets ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 for (i=0; i<FRAME_X_NUM_TOP_WIDGETS (f); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 Widget wid = FRAME_X_TOP_WIDGETS (f)[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 if (wid && XtIsManaged (wid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 Dimension bord = wid->core.border_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 XtConfigureWidget (wid, 0, text_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 width - 2*bord, wid->core.height,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 bord);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 text_y += wid->core.height + 2*bord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 /* The scrollbar positioning is completely handled by redisplay. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 just need to know which sides they are supposed to go on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 unsigned char scrollbar_placement;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 XtVaGetValues (text, XtNscrollBarPlacement, &scrollbar_placement, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 f->scrollbar_on_left = (scrollbar_placement == XtTOP_LEFT ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 scrollbar_placement == XtBOTTOM_LEFT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 f->scrollbar_on_top = (scrollbar_placement == XtTOP_LEFT ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 scrollbar_placement == XtTOP_RIGHT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 f->scrollbar_y_offset = topbreadth + textbord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 }
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1571 #endif /* HAVE_SCROLLBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 /* finally the text area */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 XtConfigureWidget (text, text_x, text_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 width - 2*textbord,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 height - text_y - 2*textbord,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 textbord);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 x_do_query_geometry (Widget w, XtPointer client_data, XtPointer call_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 struct frame *f = (struct frame *) client_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 EmacsManagerQueryGeometryStruct *emst =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (EmacsManagerQueryGeometryStruct *) call_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 Widget text = FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 Dimension textbord = text->core.border_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 Dimension topbreadth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 XtWidgetGeometry req, repl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 int mask = emst->request_mode & (CWWidth | CWHeight);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 x_get_layout_sizes (f, &topbreadth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1594 /* Strip away menubar from suggested size, and ask the text widget
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1595 what size it wants to be. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 req.request_mode = mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 if (mask & CWWidth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 req.width = emst->proposed_width - 2*textbord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 if (mask & CWHeight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 req.height = emst->proposed_height - topbreadth - 2*textbord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 XtQueryGeometry (text, &req, &repl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 /* Now add the menubar back again */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1604 emst->proposed_width = repl.width + 2*textbord;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 emst->proposed_height = repl.height + topbreadth + 2*textbord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 /* Creates the widgets for a frame.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 lisp_window_id is a Lisp description of an X window or Xt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 widget to parse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 This function does not create or map the windows. (That is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 done by x_popup_frame().)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 x_create_widgets (struct frame *f, Lisp_Object lisp_window_id,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 Lisp_Object parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 struct device *d = XDEVICE (f->device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 Window window_id = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 CONST char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 Arg av [25];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 int ac = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 Widget text, container, shell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 Widget parentwid = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 int menubar_visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 Widget menubar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 if (STRINGP (f->name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 GET_C_STRING_CTEXT_DATA_ALLOCA (f->name, name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 name = "emacs";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 /* The widget hierarchy is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 argv[0] shell pane FRAME-NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 ApplicationShell EmacsShell EmacsManager EmacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 (the type of the shell is ExternalShell if this frame is running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 in another client's window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 However the EmacsShell widget has WM_CLASS of FRAME-NAME/Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 Normally such shells have name/class shellname/appclass, which in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 case would be "shell/Emacs" instead of "frame-name/Emacs". We could
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 also get around this by naming the shell "frame-name", but that would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 be confusing because the text area (the EmacsFrame widget inferior of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 the shell) is also called that. So we just set the WM_CLASS property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 #ifndef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 if (!NILP (lisp_window_id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 error ("support for external widgets was not enabled at compile-time");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 if (!NILP (lisp_window_id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 char *string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 CHECK_STRING (lisp_window_id);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1663 string = (char *) (XSTRING_DATA (lisp_window_id));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 if (string[0] == '0' && (string[1] == 'x' || string[1] == 'X'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 sscanf (string+2, "%lxu", &window_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 else if (string[0] == 'w')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 sscanf (string+1, "%x", &parent_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 if (parent_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 window_id = XtWindow (parent_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 sscanf (string, "%lu", &window_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 if (!is_valid_window (window_id, d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 error ("Invalid window %lu", (unsigned long) window_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 FRAME_X_EXTERNAL_WINDOW_P (f) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 } else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 FRAME_X_TOP_LEVEL_FRAME_P (f) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 ac = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 XtSetArg (av[ac], XtNallowShellResize, True); ac++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 #ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 /* Motif sucks beans. Without this in here, it will delete the window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 out from under us when it receives a WM_DESTROY_WINDOW message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 from the WM. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 XtSetArg (av[ac], XmNdeleteResponse, XmDO_NOTHING); ac++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 if (window_id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 XtSetArg (av[ac], XtNwindow, window_id); ac++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 else
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1698 #endif /* EXTERNAL_WIDGET */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 XtSetArg (av[ac], XtNinput, True); ac++;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1701 XtSetArg (av[ac], (String) XtNminWidthCells, 10); ac++;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1702 XtSetArg (av[ac], (String) XtNminHeightCells, 1); ac++;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 if (!NILP (parent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 parentwid = FRAME_X_SHELL_WIDGET (XFRAME (parent));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 XtSetArg (av[ac], XtNtransientFor, parentwid); ac++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 shell = XtCreatePopupShell ("shell",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 window_id ? externalShellWidgetClass :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 parentwid ? transientEmacsShellWidgetClass :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 topLevelEmacsShellWidgetClass
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 ),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 parentwid ? parentwid :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 DEVICE_XT_APP_SHELL (d),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 av, ac);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 FRAME_X_SHELL_WIDGET (f) = shell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 maybe_set_frame_title_format (shell);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 /* Create the manager widget */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 container = XtVaCreateWidget ("container",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 emacsManagerWidgetClass,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 shell, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 FRAME_X_CONTAINER_WIDGET (f) = container;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 XtAddCallback (container, XtNresizeCallback, x_layout_widgets,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 (XtPointer) f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 XtAddCallback (container, XtNqueryGeometryCallback, x_do_query_geometry,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 (XtPointer) f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 /* Create the text area */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 ac = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 XtSetArg (av[ac], XtNborderWidth, 0); ac++; /* should this be settable? */
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1738 XtSetArg (av[ac], (String) XtNemacsFrame, f); ac++;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 text = XtCreateWidget (name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 emacsFrameClass,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 container, av, ac);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 FRAME_X_TEXT_WIDGET (f) = text;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 /* Create the initial menubar widget. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 menubar_visible = x_initialize_frame_menubar (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 FRAME_X_TOP_WIDGETS (f)[0] = menubar = FRAME_X_MENUBAR_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 FRAME_X_NUM_TOP_WIDGETS (f) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 if (menubar_visible)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 XtManageChild (menubar);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1752 #endif /* HAVE_MENUBARS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 XtManageChild (text);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 XtManageChild (container);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 /* We used to call XtPopup() in x_popup_frame, but that doesn't give
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 you control over whether the widget is initially mapped or not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 because XtPopup() makes an unconditional call to XMapRaised().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 Boy, those Xt designers were clever.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 When we first removed it we only kept the XtRealizeWidget call in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 XtPopup. For everything except HP's that was enough. For HP's,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 though, the failure to call the popup callbacks resulted in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 not accepting any input. Bizarre but true. Stupid but true.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 So, in case there are any other gotches floating out there along
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 the same lines I've duplicated the majority of XtPopup here. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 assumes no grabs and that the widget is not already popped up, both
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 valid assumptions for the one place this is called from. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 xemacs_XtPopup (Widget widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 ShellWidget shell_widget = (ShellWidget) widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 XtGrabKind call_data = XtGrabNone;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 XtCallCallbacks (widget, XtNpopupCallback, (XtPointer)&call_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 shell_widget->shell.popped_up = TRUE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 shell_widget->shell.grab_kind = XtGrabNone;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 shell_widget->shell.spring_loaded = False;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 if (shell_widget->shell.create_popup_child_proc != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (*(shell_widget->shell.create_popup_child_proc))(widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 /* The XtVaSetValues below are not in XtPopup menu. We just want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 make absolutely sure... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 XtVaSetValues (widget, XtNmappedWhenManaged, False, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 XtRealizeWidget (widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 XtVaSetValues (widget, XtNmappedWhenManaged, True, NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 #ifdef HAVE_CDE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 /* Does this have to be non-automatic? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 /* hack frame to respond to dnd messages */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 static XtCallbackRec dnd_transfer_cb_rec[2];
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1797 #endif /* HAVE_CDE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 /* create the windows for the specified frame and display them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 Note that the widgets have already been created, and any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 necessary geometry calculations have already been done. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 x_popup_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 Widget shell_widget = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 Widget frame_widget = FRAME_X_TEXT_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 struct device *d = XDEVICE (FRAME_DEVICE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 /* Before mapping the window, make sure that the WMShell's notion of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 whether it should be iconified is synchronized with the EmacsFrame's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 notion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 if (FRAME_X_TOP_LEVEL_FRAME_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 x_wm_set_shell_iconic_p (shell_widget,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 ((EmacsFrame) frame_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 ->emacs_frame.iconic);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 xemacs_XtPopup (shell_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 if (!((EmacsFrame) frame_widget)->emacs_frame.initially_unmapped)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 XtMapWidget (shell_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 /* We may have set f->visible to 1 in x_init_frame(), so undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 that now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 FRAME_X_TOTALLY_VISIBLE_P (f) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 f->visible = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 if (FRAME_X_EXTERNAL_WINDOW_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 ExternalShellReady (shell_widget, XtWindow (frame_widget), KeyPressMask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 if (FRAME_X_TOP_LEVEL_FRAME_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 /* tell the window manager about us. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 x_wm_store_class_hints (shell_widget, XtName (frame_widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 x_wm_maybe_store_wm_command (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 x_wm_hack_wm_protocols (shell_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1843 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1844 XIM_init_frame (f);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1845 #endif /* HAVE_XIM */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1846
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 #ifdef HACK_EDITRES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 /* Allow XEmacs to respond to EditRes requests. See the O'Reilly Xt */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 /* Instrinsics Programming Manual, Motif Edition, Aug 1993, Sect 14.14, */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 /* pp. 483-493. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 XtAddEventHandler (shell_widget, /* the shell widget in question */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 (EventMask) NoEventMask,/* OR with existing mask */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 True, /* called on non-maskable events? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 _XEditResCheckMessages, /* the handler */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 NULL);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1856 #endif /* HACK_EDITRES */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 #ifdef HAVE_CDE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 dnd_transfer_cb_rec[0].callback = x_cde_transfer_callback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 dnd_transfer_cb_rec[0].closure = (XtPointer) f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 dnd_transfer_cb_rec[1].callback = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 dnd_transfer_cb_rec[1].closure = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 DtDndVaDropRegister (FRAME_X_TEXT_WIDGET (f),
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1866 DtDND_FILENAME_TRANSFER | DtDND_BUFFER_TRANSFER,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1867 XmDROP_COPY, dnd_transfer_cb_rec,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1868 DtNtextIsBuffer, True,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 DtNpreserveRegistration, False,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 }
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1872 #endif /* HAVE_CDE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1874 #ifdef HAVE_OFFIX_DND
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1875 {
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1876 DndInitialize (FRAME_X_SHELL_WIDGET (f));
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1877 DndRegisterDropWidget (FRAME_X_TEXT_WIDGET (f),
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1878 x_offix_drop_event_handler,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1879 (XtPointer) f);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1880
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1881 }
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1882 #endif
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1883
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 /* Do a stupid property change to force the server to generate a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 propertyNotify event so that the event_stream server timestamp will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 be initialized to something relevant to the time we created the window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 DEVICE_XATOM_WM_PROTOCOLS (d), XA_ATOM, 32, PropModeAppend,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 (unsigned char*) NULL, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 x_send_synthetic_mouse_event (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 allocate_x_frame_struct (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 /* zero out all slots. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 f->frame_data = malloc_type_and_zero (struct x_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 /* yeah, except the lisp ones */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 FRAME_X_ICON_PIXMAP (f) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 FRAME_X_ICON_PIXMAP_MASK (f) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 FRAME_X_CURRENT_PSHEET_BUFFER (f) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 FRAME_X_DESIRED_PSHEET_BUFFER (f) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 /* Lisp functions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 x_init_frame_1 (struct frame *f, Lisp_Object props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 Lisp_Object device = FRAME_DEVICE (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 struct device *d = XDEVICE (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 Lisp_Object lisp_window_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 Lisp_Object popup;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 lisp_window_id = Fplist_get (props, Qwindow_id, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 popup = Fplist_get (props, Qpopup, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 if (!NILP (popup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 if (EQ (popup, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 popup = Fselected_frame (device);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 CHECK_LIVE_FRAME (popup);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 if (!EQ (device, FRAME_DEVICE (XFRAME (popup))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 signal_simple_error_2 ("Parent must be on same device as frame",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 device, popup);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 if (NILP (DEVICE_SELECTED_FRAME (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 /* This means that this is the first frame on the device.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 So short-ciruit the delay in processing the initial MapNotify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 event so that output on the first frame shows up right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 away... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 f->visible = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 allocate_x_frame_struct (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 x_create_widgets (f, lisp_window_id, popup);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 x_init_frame_2 (struct frame *f, Lisp_Object props)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 /* Set up the values of the widget/frame. A case could be made for putting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 this inside of the widget's initialize method. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 update_frame_face_values (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 x_initialize_frame_size (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 update_frame_title (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 x_init_frame_3 (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 /* Pop up the frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 x_popup_frame (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 x_mark_frame (struct frame *f, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 ((markobj) (FRAME_X_ICON_PIXMAP (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 ((markobj) (FRAME_X_ICON_PIXMAP_MASK (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 ((markobj) (FRAME_X_CURRENT_PSHEET_BUFFER (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 ((markobj) (FRAME_X_DESIRED_PSHEET_BUFFER (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 x_set_frame_icon (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 Pixmap x_pixmap, x_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 if (IMAGE_INSTANCEP (f->icon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 && IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (f->icon)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 x_pixmap = XIMAGE_INSTANCE_X_PIXMAP (f->icon);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 x_mask = XIMAGE_INSTANCE_X_MASK (f->icon);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 x_pixmap = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 x_mask = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 /* Store the X data into the widget. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 Arg av [10];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 int ac = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 XtSetArg (av [ac], XtNiconPixmap, x_pixmap); ac++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 XtSetArg (av [ac], XtNiconMask, x_mask); ac++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 XtSetValues (FRAME_X_SHELL_WIDGET (f), av, ac);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 x_set_frame_pointer (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 XDefineCursor (XtDisplay (FRAME_X_TEXT_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 XtWindow (FRAME_X_TEXT_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 XIMAGE_INSTANCE_X_CURSOR (f->pointer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 XSync (XtDisplay (FRAME_X_TEXT_WIDGET (f)), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 x_get_frame_parent (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 Widget parentwid = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 Arg av[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 XtSetArg (av[0], XtNtransientFor, &parentwid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 XtGetValues (FRAME_X_SHELL_WIDGET (f), av, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 /* find the frame whose wid is parentwid */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 if (parentwid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 Lisp_Object frmcons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 DEVICE_FRAME_LOOP (frmcons, XDEVICE (FRAME_DEVICE (f)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 Lisp_Object frame = XCAR (frmcons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 if (FRAME_X_SHELL_WIDGET (XFRAME (frame)) == parentwid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 return frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2037 DEFUN ("x-window-id", Fx_window_id, 0, 1, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 Get the ID of the X11 window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 This gives us a chance to manipulate the Emacs window from within a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 different program. Since the ID is an unsigned long, we return it as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 a string.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2042 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2043 (frame))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 char str[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 struct frame *f = decode_x_frame (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 sprintf (str, "%lu", XtWindow (FRAME_X_TEXT_WIDGET (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 return build_string (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 /* manipulating the X window */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 x_set_frame_position (struct frame *f, int xoff, int yoff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 Widget w = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 Display *dpy = XtDisplay (w);
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2062 Dimension frame_w = DisplayWidth (dpy, DefaultScreen (dpy));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 Dimension frame_h = DisplayHeight (dpy, DefaultScreen (dpy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 Dimension shell_w, shell_h, shell_bord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 int win_gravity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 XtVaGetValues (w,
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2068 XtNwidth, &shell_w,
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2069 XtNheight, &shell_h,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 XtNborderWidth, &shell_bord,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 win_gravity =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 xoff >= 0 && yoff >= 0 ? NorthWestGravity :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 xoff >= 0 ? SouthWestGravity :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 yoff >= 0 ? NorthEastGravity :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 SouthEastGravity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 if (xoff < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 xoff += frame_w - shell_w - 2*shell_bord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 if (yoff < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 yoff += frame_h - shell_h - 2*shell_bord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 /* Update the hints so that, if this window is currently iconified, it will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 come back at the right place. We can't look at s->visible to determine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 whether it is iconified because it might not be up-to-date yet (the queue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 might not be processed). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 XtVaSetValues (w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 XtNwinGravity, win_gravity,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 XtNx, xoff,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 XtNy, yoff,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 0);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2092
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 /* Sometimes you will find that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 (set-frame-position (selected-frame) -50 -50)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2097 doesn't put the frame where you expect it to: i.e. it's closer to
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2098 the lower-right corner than it should be, and it appears that the
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2099 size of the WM decorations was not taken into account. This is
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2100 *not* a problem with this function. Both mwm and twm have bugs
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2101 in handling this situation. (mwm ignores the window gravity and
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2102 always assumes NorthWest, except the first time you map the
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2103 window; twm gets things almost right, but forgets to account for
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2104 the border width of the top-level window.) This function does
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2105 what it's supposed to according to the ICCCM, and I'm not about
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2106 to hack around window-manager bugs. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 /* This is not necessary under either mwm or twm */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 x_wm_mark_shell_position_user_specified (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 /* Call this to change the size of frame S's x-window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 x_set_frame_size (struct frame *f, int cols, int rows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 EmacsFrameSetCharSize (FRAME_X_TEXT_WIDGET (f), cols, rows);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 /* this is not correct. x_set_frame_size() is called from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 Fset_frame_size(), which may or may not have been called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 by the user (e.g. update_EmacsFrame() calls it when the font
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 changes). For now, don't bother with getting this right. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 x_wm_mark_shell_size_user_specified (FRAME_X_SHELL_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 x_set_mouse_position (struct window *w, int x, int y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 struct frame *f = XFRAME (w->frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 XWarpPointer (display, None, XtWindow (FRAME_X_TEXT_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 0, 0, 0, 0, w->pixel_left + x, w->pixel_top + y);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 x_get_mouse_position (struct device *d, Lisp_Object *frame, int *x, int *y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 Display *display = DEVICE_X_DISPLAY (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 Window child_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 Window root_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 Window win;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 int root_x, root_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 int win_x, win_y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 unsigned int keys_and_buttons;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 struct frame *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 if (XQueryPointer (display, RootWindow (display, DefaultScreen (display)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 &root_window, &child_window, &root_x, &root_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 &win_x, &win_y, &keys_and_buttons) == False)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 if (child_window == None)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 return 0; /* not over any window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 win = child_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 if (XTranslateCoordinates (display, root_window, win, root_x, root_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 &win_x, &win_y, &child_window) == False)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 /* Huh? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 if (child_window == None)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 /* At this point, win is the innermost window containing the pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 and win_x and win_y are the coordinates of that window. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 f = x_any_window_to_frame (d, win);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 if (!f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 XSETFRAME (*frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 if (XTranslateCoordinates (display, win,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 XtWindow (FRAME_X_TEXT_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 win_x, win_y, x, y, &child_window) == False)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 /* Huh? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 x_cant_notify_wm_error (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 error ("Can't notify window manager of iconification.");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 /* Raise frame F. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 x_raise_frame_1 (struct frame *f, int force)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 Widget bottom_dialog;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 Window emacs_window;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 XWindowChanges xwc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 unsigned int flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2203 if (f->visible || force)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 emacs_window = XtWindow (FRAME_X_SHELL_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 /* first raises all the dialog boxes, then put emacs just below the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 * bottom most dialog box */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 bottom_dialog = lw_raise_all_pop_up_widgets ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 if (bottom_dialog && XtWindow (bottom_dialog))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 xwc.sibling = XtWindow (bottom_dialog);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 xwc.stack_mode = Below;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 flags = CWSibling | CWStackMode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 xwc.stack_mode = Above;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 flags = CWStackMode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 if (!XReconfigureWMWindow (display, emacs_window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 DefaultScreen (display),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 flags, &xwc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 x_cant_notify_wm_error ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 x_raise_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 x_raise_frame_1 (f, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 /* Lower frame F. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 x_lower_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 XWindowChanges xwc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 unsigned int flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2242 if (f->visible)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 xwc.stack_mode = Below;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 flags = CWStackMode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 if (!XReconfigureWMWindow (display, XtWindow (FRAME_X_SHELL_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 DefaultScreen (display), flags, &xwc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 x_cant_notify_wm_error ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 /* Change from withdrawn state to mapped state. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 x_make_frame_visible (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2258 if (!f->visible)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 XMapRaised (display, XtWindow (FRAME_X_SHELL_WIDGET (f)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 x_raise_frame_1 (f, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 /* Change from mapped state to withdrawn state. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 x_make_frame_invisible (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2270 if (!f->visible)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 if (!XWithdrawWindow (display,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 XtWindow (FRAME_X_SHELL_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 DefaultScreen (display)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 x_cant_notify_wm_error ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 x_frame_visible_p (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 XWindowAttributes xwa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 if (!XGetWindowAttributes (display,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 XtWindow (FRAME_X_SHELL_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 &xwa))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 result = xwa.map_state == IsViewable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 f->visible = result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 x_frame_totally_visible_p (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 return FRAME_X_TOTALLY_VISIBLE_P (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 /* Change window state from mapped to iconified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 x_iconify_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 if (!XIconifyWindow (display,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 XtWindow (FRAME_X_SHELL_WIDGET (f)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 DefaultScreen (display)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 x_cant_notify_wm_error ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 f->iconified = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 /* Sets the X focus to frame f. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 x_focus_on_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 XWindowAttributes xwa;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 Widget shell_widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 assert (FRAME_X_P (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 shell_widget = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 if (!XtWindow (shell_widget))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 if (FRAME_X_EXTERNAL_WINDOW_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 ExternalShellSetFocus (shell_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 /* Do the ICCCM focus change if the window is still visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 The s->visible flag might not be up-to-date, because we might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 not have processed magic events recently. So make a server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 round-trip to find out whether it's really mapped right now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 We grab the server to do this, because that's the only way to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 eliminate the race condition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 XGrabServer (XtDisplay (shell_widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 if (XGetWindowAttributes (XtDisplay (shell_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 XtWindow (shell_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 &xwa))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2346 f->visible = xwa.map_state == IsViewable;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
2348 if (f->visible)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 Window focus;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 int revert_to;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 XGetInputFocus (XtDisplay (shell_widget), &focus, &revert_to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 /* Don't explicitly set the focus on this window unless the focus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 was on some other window (not PointerRoot). Note that, even when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 running a point-to-type window manager like *twm, there is always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 a focus window; the window manager maintains that based on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 mouse position. If you set the "NoTitleFocus" option in these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 window managers, then the server itself maintains the focus via
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 PointerRoot, and changing that to focus on the window would make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 the window grab the focus. Very bad.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 if (focus != PointerRoot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 XSetInputFocus (XtDisplay (shell_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 XtWindow (shell_widget),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 RevertToParent,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 DEVICE_X_MOUSE_TIMESTAMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 (XDEVICE (FRAME_DEVICE (f))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 XFlush (XtDisplay (shell_widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 XUngrabServer (XtDisplay (shell_widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 XFlush (XtDisplay (shell_widget)); /* hey, I'd like to DEBUG this... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 /* Destroy the X window of frame S. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 x_delete_frame (struct frame *f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 Widget w = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 Lisp_Object popup, frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 if (FRAME_X_TOP_LEVEL_FRAME_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 x_wm_maybe_move_wm_command (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 /* Frames with the popup property are using other frames as their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 widget parent. Deleting them are their parent has already been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 deleted can lead to crashes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 popup = Fframe_property (frame, Qpopup, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 if (!NILP (popup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 /* If popup isn't nil then it means the frame has that property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 and the value is supposed to be the parent frame. The FRAMEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 check is to safeguard against it not being a frame. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 if (!FRAMEP (popup) || !FRAME_LIVE_P (XFRAME (popup)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 popup = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 popup = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 Display *dpy = XtDisplay (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 expect_x_error (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 /* for obscure reasons having (I think) to do with the internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 window-to-widget hierarchy maintained by Xt, we have to call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 XtUnrealizeWidget() here. Xt can really suck. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 if (f->being_deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 XtUnrealizeWidget (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 if (NILP (popup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 XtDestroyWidget (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 x_error_occurred_p (dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 if (NILP (popup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 XtDestroyWidget (w);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 if (FRAME_X_GEOM_FREE_ME_PLEASE (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 xfree (FRAME_X_GEOM_FREE_ME_PLEASE (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 xfree (f->frame_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 f->frame_data = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 syms_of_frame_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 defsymbol (&Qwindow_id, "window-id");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 defsymbol (&Qpopup, "popup");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 defsymbol (&Qx_resource_name, "x-resource-name");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2438 DEFSUBR (Fx_window_id);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2439 #ifdef HAVE_CDE
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2440 DEFSUBR (Fcde_start_drag_internal);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
2441 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 console_type_create_frame_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 /* frame methods */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 CONSOLE_HAS_METHOD (x, init_frame_1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 CONSOLE_HAS_METHOD (x, init_frame_2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 CONSOLE_HAS_METHOD (x, init_frame_3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 CONSOLE_HAS_METHOD (x, mark_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 CONSOLE_HAS_METHOD (x, focus_on_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 CONSOLE_HAS_METHOD (x, delete_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 CONSOLE_HAS_METHOD (x, get_mouse_position);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 CONSOLE_HAS_METHOD (x, set_mouse_position);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 CONSOLE_HAS_METHOD (x, raise_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 CONSOLE_HAS_METHOD (x, lower_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 CONSOLE_HAS_METHOD (x, make_frame_visible);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 CONSOLE_HAS_METHOD (x, make_frame_invisible);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 CONSOLE_HAS_METHOD (x, iconify_frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 CONSOLE_HAS_METHOD (x, set_frame_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 CONSOLE_HAS_METHOD (x, set_frame_position);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 CONSOLE_HAS_METHOD (x, frame_property);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 CONSOLE_HAS_METHOD (x, internal_frame_property_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 CONSOLE_HAS_METHOD (x, frame_properties);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 CONSOLE_HAS_METHOD (x, set_frame_properties);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2467 CONSOLE_HAS_METHOD (x, set_title_from_bufbyte);
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2468 CONSOLE_HAS_METHOD (x, set_icon_name_from_bufbyte);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 CONSOLE_HAS_METHOD (x, frame_visible_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 CONSOLE_HAS_METHOD (x, frame_totally_visible_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 CONSOLE_HAS_METHOD (x, frame_iconified_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 CONSOLE_HAS_METHOD (x, set_frame_pointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 CONSOLE_HAS_METHOD (x, set_frame_icon);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 CONSOLE_HAS_METHOD (x, get_frame_parent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 vars_of_frame_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 Fprovide (intern ("external-widget"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 /* this call uses only safe functions from emacs.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 init_x_prop_symbols ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 DEFVAR_LISP ("default-x-frame-plist", &Vdefault_x_frame_plist /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 Plist of default frame-creation properties for X frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 These override what is specified in the resource database and in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 `default-frame-plist', but are overridden by the arguments to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 particular call to `make-frame'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 Note: In many cases, properties of a frame are available as specifiers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 instead of through the frame-properties mechanism.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 Here is a list of recognized frame properties, other than those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 documented in `set-frame-properties' (they can be queried and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 set at any time, except as otherwise noted):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 window-id The X window ID corresponding to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 frame. May be set only at startup, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 only if external widget support was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 compiled in; doing so causes the frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 to be created as an \"external widget\"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 in another program that uses an existing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 window in the program rather than creating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 a new one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 initially-unmapped If non-nil, the frame will not be visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 when it is created. In this case, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 need to call `make-frame-visible' to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 the frame appear.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 popup If non-nil, it should be a frame, and this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 frame will be created as a \"popup\" frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 whose parent is the given frame. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 will make the window manager treat the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 frame as a dialog box, which may entail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 doing different things (e.g. not asking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 for positioning, and not iconifying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 separate from its parent).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 inter-line-space Not currently implemented.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 toolbar-shadow-thickness Thickness of toolbar shadows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 background-toolbar-color Color of toolbar background.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 bottom-toolbar-shadow-color Color of bottom shadows on toolbars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 (*Not* specific to the bottom-toolbar.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 top-toolbar-shadow-color Color of top shadows on toolbars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 (*Not* specifier to the top-toolbar.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 internal-border-width Width of internal border around text area.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 border-width Width of external border around text area.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 top Y position (in pixels) of the upper-left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 outermost corner of the frame (i.e. the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 upper-left of the window-manager
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 decorations).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 left X position (in pixels) of the upper-left
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 outermost corner of the frame (i.e. the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 upper-left of the window-manager
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 decorations).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 border-color Color of external border around text area.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 cursor-color Color of text cursor.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 See also `default-frame-plist', which specifies properties which apply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 to all frames, not just X frames.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 Vdefault_x_frame_plist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 x_console_methods->device_specific_frame_props = &Vdefault_x_frame_plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 }