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