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
|
179
|
369 #ifndef HAVE_SESSION
|
0
|
370 x_wm_maybe_store_wm_command (f);
|
179
|
371 #endif /* HAVE_SESSION */
|
177
|
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;
|
179
|
1181 Lisp_Object dnd_data = Qnil;
|
|
1182 Lisp_Object dnd_type = Qnil;
|
2
|
1183
|
179
|
1184 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
2
|
1185
|
|
1186 Type = DndDataType (event);
|
179
|
1187 if (Type < 0) /* pseudo event produces -1 as type */
|
|
1188 {
|
|
1189 stderr_out("DndDropHandler: pseudo drop received\n");
|
|
1190 return;
|
|
1191 }
|
|
1192
|
2
|
1193 DndGetData (&Data, &Size);
|
|
1194
|
179
|
1195 GCPRO4 (path, frame, dnd_data, dnd_type);
|
2
|
1196
|
|
1197 frame = make_frame ((struct frame *) data);
|
|
1198
|
179
|
1199 stderr_out("DndDropHandler: real drop received (T%d Sl%d)\n",Type,Size);
|
|
1200
|
|
1201 switch (Type)
|
2
|
1202 {
|
179
|
1203 case DndFiles:
|
2
|
1204 while (*Data)
|
|
1205 {
|
|
1206 len = strlen ((char*) Data);
|
179
|
1207 path = make_ext_string ((char*) Data, len, FORMAT_FILENAME);
|
2
|
1208 va_run_hook_with_args (Qdrag_and_drop_functions, 2, frame, path);
|
|
1209 Data += len+1;
|
|
1210 }
|
179
|
1211 break;
|
|
1212 case DndFile:
|
|
1213 path = make_ext_string ((char*) Data, strlen(Data), FORMAT_FILENAME);
|
2
|
1214 va_run_hook_with_args (Qdrag_and_drop_functions, 2, frame, path);
|
179
|
1215 break;
|
|
1216 case DndText:
|
|
1217 dnd_data = make_ext_string ((char *) Data, strlen(Data), FORMAT_FILENAME);
|
|
1218 va_run_hook_with_args (Qdrag_and_drop_functions, 3, frame, path, dnd_data);
|
|
1219 break;
|
|
1220 case DndDir:
|
|
1221 case DndLink:
|
|
1222 case DndExe:
|
|
1223 case DndURL:
|
|
1224 case DndMIME:
|
|
1225 dnd_type = make_int (Type);
|
|
1226 dnd_data = make_ext_string ((char*) Data, strlen(Data), FORMAT_FILENAME);
|
|
1227 va_run_hook_with_args (Qdrag_and_drop_functions, 4,
|
|
1228 frame, path, dnd_data, dnd_type);
|
|
1229 break;
|
|
1230 default: /* Unknown, RawData and any other type */
|
|
1231 dnd_type = make_int (Type);
|
|
1232 dnd_data = make_ext_string ((char*) Data, Size, FORMAT_BINARY);
|
|
1233 va_run_hook_with_args (Qdrag_and_drop_functions, 4,
|
|
1234 frame, path, dnd_data, dnd_type);
|
|
1235 break;
|
2
|
1236 }
|
|
1237
|
|
1238 UNGCPRO;
|
|
1239 return;
|
|
1240 }
|
|
1241 #endif /* HAVE_OFFIX_DND */
|
|
1242
|
0
|
1243
|
|
1244 /************************************************************************/
|
|
1245 /* widget creation */
|
|
1246 /************************************************************************/
|
|
1247
|
|
1248 /* The widget hierarchy is
|
|
1249
|
|
1250 argv[0] shell container FRAME-NAME
|
|
1251 ApplicationShell EmacsShell EmacsManager EmacsFrame
|
|
1252
|
|
1253 We accept geometry specs in this order:
|
|
1254
|
|
1255 *FRAME-NAME.geometry
|
|
1256 *EmacsFrame.geometry
|
|
1257 Emacs.geometry
|
|
1258
|
|
1259 Other possibilities for widget hierarchies might be
|
|
1260
|
|
1261 argv[0] frame container FRAME-NAME
|
|
1262 ApplicationShell EmacsShell EmacsManager EmacsFrame
|
|
1263 or
|
|
1264 argv[0] FRAME-NAME container FRAME-NAME
|
|
1265 ApplicationShell EmacsShell EmacsManager EmacsFrame
|
|
1266 or
|
|
1267 argv[0] FRAME-NAME container emacsTextPane
|
|
1268 ApplicationShell EmacsShell EmacsManager EmacsFrame
|
|
1269
|
|
1270 #ifdef EXTERNAL_WIDGET
|
|
1271 The ExternalShell widget is simply a replacement for the Shell widget
|
|
1272 which is able to deal with using an externally-supplied window instead
|
|
1273 of always creating its own.
|
|
1274 #endif
|
|
1275
|
|
1276 */
|
|
1277
|
|
1278 #ifdef EXTERNAL_WIDGET
|
|
1279
|
|
1280 static int
|
|
1281 is_valid_window (Window w, struct device *d)
|
|
1282 {
|
|
1283 XWindowAttributes xwa;
|
|
1284 Display *dpy = DEVICE_X_DISPLAY (d);
|
|
1285
|
|
1286 expect_x_error (dpy);
|
|
1287 XGetWindowAttributes (dpy, w, &xwa);
|
|
1288 return !x_error_occurred_p (dpy);
|
|
1289 }
|
|
1290
|
|
1291 #endif /* EXTERNAL_WIDGET */
|
|
1292
|
|
1293 /* This sends a synthetic mouse-motion event to the frame, if the mouse
|
|
1294 is over the frame. This ensures that the cursor gets set properly
|
|
1295 before the user moves the mouse for the first time. */
|
|
1296
|
|
1297 static void
|
|
1298 x_send_synthetic_mouse_event (struct frame *f)
|
|
1299 {
|
|
1300 /* #### write this function. */
|
|
1301 }
|
|
1302
|
|
1303 static int
|
|
1304 first_x_frame_p (struct frame *f)
|
|
1305 {
|
|
1306 Lisp_Object rest = DEVICE_FRAME_LIST (XDEVICE (f->device));
|
|
1307 while (!NILP (rest) &&
|
|
1308 (f == XFRAME (XCAR (rest)) ||
|
|
1309 !FRAME_X_P (XFRAME (XCAR (rest)))))
|
|
1310 rest = XCDR (rest);
|
|
1311 return (NILP (rest));
|
|
1312 }
|
|
1313
|
|
1314 /* Figure out what size the EmacsFrame widget should initially be,
|
|
1315 and set it. Should be called after the default font has been
|
|
1316 determined but before the widget has been realized. */
|
|
1317
|
|
1318 static void
|
|
1319 x_initialize_frame_size (struct frame *f)
|
|
1320 {
|
|
1321 /* Geometry of the AppShell */
|
|
1322 int app_flags = 0;
|
|
1323 int app_x = 0;
|
|
1324 int app_y = 0;
|
|
1325 unsigned int app_w = 0;
|
|
1326 unsigned int app_h = 0;
|
|
1327
|
|
1328 /* Geometry of the EmacsFrame */
|
|
1329 int frame_flags = 0;
|
|
1330 int frame_x = 0;
|
|
1331 int frame_y = 0;
|
|
1332 unsigned int frame_w = 0;
|
|
1333 unsigned int frame_h = 0;
|
|
1334
|
|
1335 /* Hairily merged geometry */
|
|
1336 int x = 0;
|
|
1337 int y = 0;
|
|
1338 unsigned int w = 80;
|
|
1339 unsigned int h = 40;
|
|
1340 int flags = 0;
|
|
1341
|
|
1342 char *geom = 0, *ew_geom = 0;
|
|
1343 Boolean iconic_p = False, ew_iconic_p = False;
|
165
|
1344 Arg al [2];
|
0
|
1345
|
|
1346 Widget wmshell = FRAME_X_SHELL_WIDGET (f);
|
|
1347 /* #### This may not be an ApplicationShell any more, with the 'popup
|
|
1348 frame property. */
|
|
1349 Widget app_shell = XtParent (wmshell);
|
|
1350 Widget ew = FRAME_X_TEXT_WIDGET (f);
|
|
1351
|
|
1352 /* set the position of the frame's root window now. When the
|
|
1353 frame was created, the position was initialized to (0,0). */
|
|
1354 {
|
|
1355 struct window *win = XWINDOW (f->root_window);
|
|
1356
|
|
1357 WINDOW_LEFT (win) = FRAME_LEFT_BORDER_END (f);
|
|
1358 WINDOW_TOP (win) = FRAME_TOP_BORDER_END (f);
|
|
1359
|
|
1360 if (!NILP (f->minibuffer_window))
|
|
1361 {
|
|
1362 win = XWINDOW (f->minibuffer_window);
|
|
1363 WINDOW_LEFT (win) = FRAME_LEFT_BORDER_END (f);
|
|
1364 }
|
|
1365 }
|
|
1366
|
|
1367 #ifdef EXTERNAL_WIDGET
|
|
1368 /* If we're an external widget, then the size of the frame is predetermined
|
|
1369 (by the client) and is not our decision to make. */
|
|
1370 if (FRAME_X_EXTERNAL_WINDOW_P (f))
|
|
1371 return;
|
|
1372 #endif
|
|
1373
|
|
1374 #if 0
|
|
1375 /* #### this junk has not been tested; therefore it's
|
|
1376 probably wrong. Doesn't really matter at this point because
|
|
1377 currently all frames are either top-level or external widgets. */
|
|
1378
|
|
1379 /* If we're not our own top-level window, then we shouldn't go messing around
|
|
1380 with top-level shells or "Emacs.geometry" or any such stuff. Therefore,
|
|
1381 we do as follows to determine the size of the frame:
|
|
1382
|
|
1383 1) If a value for the frame's "geometry" resource was specified, then
|
|
1384 use it. (This specifies a size in characters.)
|
|
1385 2) Else, if the "width" and "height" resources were specified, then
|
|
1386 leave them alone. (This is a value in pixels. Sorry, we can't break
|
|
1387 Xt conventions here.)
|
|
1388 3) Else, assume a size of 64x12. (This is somewhat arbitrary, but
|
|
1389 it's unlikely that a size of 80x40 is desirable because we're probably
|
|
1390 inside of a dialog box.)
|
|
1391
|
|
1392 Set the widget's x, y, height, and width as determined. Don't set the
|
|
1393 top-level container widget, because we don't necessarily know what it
|
|
1394 is. (Assume it is smart and pays attention to our values.)
|
|
1395 */
|
|
1396
|
|
1397 if (!FRAME_X_TOP_LEVEL_FRAME_P (f))
|
|
1398 {
|
165
|
1399 XtSetArg (al [0], XtNgeometry, &ew_geom);
|
|
1400 XtGetValues (ew, al, 1);
|
0
|
1401 if (ew_geom)
|
165
|
1402 frame_flags = XParseGeometry (ew_geom,
|
|
1403 &frame_x, &frame_y,
|
|
1404 &frame_w, &frame_h);
|
0
|
1405 if (! (frame_flags & (WidthValue | HeightValue)))
|
|
1406 {
|
165
|
1407 XtSetArg (al [0], XtNwidth, &frame_w);
|
|
1408 XtSetArg (al [1], XtNheight, &frame_h);
|
|
1409 XtGetValues (ew, al, 2);
|
0
|
1410 if (!frame_w && !frame_h)
|
|
1411 {
|
|
1412 frame_w = 64;
|
|
1413 frame_h = 12;
|
|
1414 frame_flags |= WidthValue | HeightValue;
|
|
1415 }
|
|
1416 }
|
|
1417 if (frame_flags & (WidthValue | HeightValue))
|
|
1418 EmacsFrameSetCharSize (ew, frame_w, frame_h);
|
|
1419 if (frame_flags & (XValue | YValue))
|
|
1420 {
|
165
|
1421 XtSetArg (al [0], XtNwidth, &frame_w);
|
|
1422 XtSetArg (al [1], XtNheight, &frame_h);
|
|
1423 XtGetValues (ew, al, 2);
|
|
1424
|
0
|
1425 if (frame_flags & XNegative)
|
|
1426 frame_x += frame_w;
|
|
1427 if (frame_flags & YNegative)
|
|
1428 frame_y += frame_h;
|
165
|
1429
|
|
1430 XtSetArg (al [0], XtNx, frame_x);
|
|
1431 XtSetArg (al [1], XtNy, frame_y);
|
|
1432 XtSetValues (ew, al, 2);
|
0
|
1433 }
|
|
1434 return;
|
|
1435 }
|
|
1436 #endif
|
|
1437
|
|
1438 /* OK, we're a top-level shell. */
|
|
1439
|
|
1440 if (!XtIsWMShell (wmshell))
|
|
1441 abort ();
|
|
1442
|
|
1443 /* If the EmacsFrame doesn't have a geometry but the shell does,
|
165
|
1444 treat that as the geometry of the frame.
|
|
1445 (Is this bogus? I'm not sure.) */
|
0
|
1446
|
165
|
1447 XtSetArg (al [0], XtNgeometry, &ew_geom);
|
|
1448 XtGetValues (ew, al, 1);
|
0
|
1449 if (!ew_geom)
|
|
1450 {
|
165
|
1451 XtSetArg (al [0], XtNgeometry, &geom);
|
|
1452 XtGetValues (wmshell, al, 1);
|
0
|
1453 if (geom)
|
|
1454 {
|
|
1455 ew_geom = geom;
|
165
|
1456 XtSetArg (al [0], XtNgeometry, ew_geom);
|
|
1457 XtSetValues (ew, al, 1);
|
0
|
1458 }
|
|
1459 }
|
|
1460
|
165
|
1461 /* If the Shell is iconic, then the EmacsFrame is iconic.
|
|
1462 (Is this bogus? I'm not sure.) */
|
|
1463 XtSetArg (al [0], XtNiconic, &ew_iconic_p);
|
|
1464 XtGetValues (ew, al, 1);
|
0
|
1465 if (!ew_iconic_p)
|
|
1466 {
|
165
|
1467 XtSetArg (al [0], XtNiconic, &iconic_p);
|
|
1468 XtGetValues (wmshell, al, 1);
|
0
|
1469 if (iconic_p)
|
|
1470 {
|
|
1471 ew_iconic_p = iconic_p;
|
165
|
1472 XtSetArg (al [0], XtNiconic, iconic_p);
|
|
1473 XtSetValues (ew, al, 1);
|
0
|
1474 }
|
|
1475 }
|
165
|
1476
|
|
1477 XtSetArg (al [0], XtNgeometry, &geom);
|
|
1478 XtGetValues (app_shell, al, 1);
|
0
|
1479 if (geom)
|
|
1480 app_flags = XParseGeometry (geom, &app_x, &app_y, &app_w, &app_h);
|
|
1481
|
|
1482 if (ew_geom)
|
165
|
1483 frame_flags = XParseGeometry (ew_geom,
|
|
1484 &frame_x, &frame_y,
|
|
1485 &frame_w, &frame_h);
|
0
|
1486
|
|
1487 if (first_x_frame_p (f))
|
|
1488 {
|
|
1489 /* If this is the first frame created:
|
|
1490 ====================================
|
|
1491
|
|
1492 - Use the ApplicationShell's size/position, if specified.
|
|
1493 (This is "Emacs.geometry", or the "-geometry" command line arg.)
|
|
1494 - Else use the EmacsFrame's size/position.
|
|
1495 (This is "*FRAME-NAME.geometry")
|
|
1496
|
|
1497 - If the AppShell is iconic, the frame should be iconic.
|
|
1498
|
|
1499 AppShell comes first so that -geometry always applies to the first
|
|
1500 frame created, even if there is an "every frame" entry in the
|
|
1501 resource database.
|
|
1502 */
|
|
1503 if (app_flags & (XValue | YValue))
|
|
1504 {
|
|
1505 x = app_x; y = app_y;
|
|
1506 flags |= (app_flags & (XValue | YValue | XNegative | YNegative));
|
|
1507 }
|
|
1508 else if (frame_flags & (XValue | YValue))
|
|
1509 {
|
|
1510 x = frame_x; y = frame_y;
|
|
1511 flags |= (frame_flags & (XValue | YValue | XNegative | YNegative));
|
|
1512 }
|
|
1513
|
|
1514 if (app_flags & (WidthValue | HeightValue))
|
|
1515 {
|
|
1516 w = app_w; h = app_h;
|
|
1517 flags |= (app_flags & (WidthValue | HeightValue));
|
|
1518 }
|
|
1519 else if (frame_flags & (WidthValue | HeightValue))
|
|
1520 {
|
|
1521 w = frame_w; h = frame_h;
|
|
1522 flags |= (frame_flags & (WidthValue | HeightValue));
|
|
1523 }
|
|
1524
|
|
1525 /* If the AppShell is iconic, then the EmacsFrame is iconic. */
|
|
1526 if (!ew_iconic_p)
|
|
1527 {
|
165
|
1528 XtSetArg (al [0], XtNiconic, &iconic_p);
|
|
1529 XtGetValues (app_shell, al, 1);
|
0
|
1530 if (iconic_p)
|
|
1531 {
|
|
1532 ew_iconic_p = iconic_p;
|
165
|
1533 XtSetArg (al [0], XtNiconic, iconic_p);
|
|
1534 XtSetValues (ew, al, 1);
|
0
|
1535 }
|
|
1536 }
|
|
1537 }
|
|
1538 else
|
|
1539 {
|
|
1540 /* If this is not the first frame created:
|
|
1541 ========================================
|
|
1542
|
|
1543 - use the EmacsFrame's size/position if specified
|
|
1544 - Otherwise, use the ApplicationShell's size, but not position.
|
|
1545
|
|
1546 So that means that one can specify the position of the first frame
|
|
1547 with "Emacs.geometry" or `-geometry'; but can only specify the
|
|
1548 position of subsequent frames with "*FRAME-NAME.geometry".
|
|
1549
|
|
1550 AppShell comes second so that -geometry does not apply to subsequent
|
|
1551 frames when there is an "every frame" entry in the resource db,
|
|
1552 but does apply to the first frame.
|
|
1553 */
|
|
1554 if (frame_flags & (XValue | YValue))
|
|
1555 {
|
|
1556 x = frame_x; y = frame_y;
|
|
1557 flags |= (frame_flags & (XValue | YValue | XNegative | YNegative));
|
|
1558 }
|
|
1559
|
|
1560 if (frame_flags & (WidthValue | HeightValue))
|
|
1561 {
|
|
1562 w = frame_w; h = frame_h;
|
|
1563 flags |= (frame_flags & (WidthValue | HeightValue));
|
|
1564 }
|
|
1565 else if (app_flags & (WidthValue | HeightValue))
|
|
1566 {
|
|
1567 w = app_w;
|
|
1568 h = app_h;
|
|
1569 flags |= (app_flags & (WidthValue | HeightValue));
|
|
1570 }
|
|
1571 }
|
|
1572
|
|
1573 x_set_initial_frame_size (f, flags, x, y, w, h);
|
|
1574 }
|
|
1575
|
|
1576 static void
|
|
1577 x_get_layout_sizes (struct frame *f, Dimension *topbreadth)
|
|
1578 {
|
|
1579 int i;
|
|
1580
|
|
1581 /* compute height of all top-area widgets */
|
|
1582 for (i=0, *topbreadth = 0; i<FRAME_X_NUM_TOP_WIDGETS (f); i++)
|
|
1583 {
|
|
1584 Widget wid = FRAME_X_TOP_WIDGETS (f)[i];
|
|
1585 if (wid && XtIsManaged (wid))
|
|
1586 *topbreadth += wid->core.height + 2*wid->core.border_width;
|
|
1587 }
|
|
1588 }
|
|
1589
|
|
1590 static void
|
|
1591 x_layout_widgets (Widget w, XtPointer client_data, XtPointer call_data)
|
|
1592 {
|
|
1593 struct frame *f = (struct frame *) client_data;
|
|
1594 EmacsManagerResizeStruct *emst = (EmacsManagerResizeStruct *) call_data;
|
|
1595 Dimension width = emst->width;
|
|
1596 Dimension height = emst->height;
|
|
1597 Widget text = FRAME_X_TEXT_WIDGET (f);
|
|
1598 Dimension textbord = text->core.border_width;
|
|
1599 Dimension topbreadth;
|
|
1600 Position text_x = 0, text_y = 0;
|
|
1601 int i;
|
|
1602
|
|
1603 x_get_layout_sizes (f, &topbreadth);
|
|
1604
|
|
1605 /* first the menubar and psheets ... */
|
|
1606 for (i=0; i<FRAME_X_NUM_TOP_WIDGETS (f); i++)
|
|
1607 {
|
|
1608 Widget wid = FRAME_X_TOP_WIDGETS (f)[i];
|
|
1609 if (wid && XtIsManaged (wid))
|
|
1610 {
|
|
1611 Dimension bord = wid->core.border_width;
|
|
1612 XtConfigureWidget (wid, 0, text_y,
|
|
1613 width - 2*bord, wid->core.height,
|
|
1614 bord);
|
|
1615 text_y += wid->core.height + 2*bord;
|
|
1616 }
|
|
1617 }
|
|
1618
|
|
1619 #ifdef HAVE_SCROLLBARS
|
|
1620 {
|
|
1621 /* The scrollbar positioning is completely handled by redisplay. We
|
|
1622 just need to know which sides they are supposed to go on. */
|
|
1623 unsigned char scrollbar_placement;
|
165
|
1624 Arg al [1];
|
|
1625
|
|
1626 XtSetArg (al [0], XtNscrollBarPlacement, &scrollbar_placement);
|
|
1627 XtGetValues (text, al, 1);
|
0
|
1628 f->scrollbar_on_left = (scrollbar_placement == XtTOP_LEFT ||
|
|
1629 scrollbar_placement == XtBOTTOM_LEFT);
|
|
1630 f->scrollbar_on_top = (scrollbar_placement == XtTOP_LEFT ||
|
|
1631 scrollbar_placement == XtTOP_RIGHT);
|
|
1632 f->scrollbar_y_offset = topbreadth + textbord;
|
|
1633 }
|
20
|
1634 #endif /* HAVE_SCROLLBARS */
|
0
|
1635
|
|
1636 /* finally the text area */
|
|
1637 XtConfigureWidget (text, text_x, text_y,
|
|
1638 width - 2*textbord,
|
|
1639 height - text_y - 2*textbord,
|
|
1640 textbord);
|
|
1641 }
|
|
1642
|
|
1643 static void
|
|
1644 x_do_query_geometry (Widget w, XtPointer client_data, XtPointer call_data)
|
|
1645 {
|
|
1646 struct frame *f = (struct frame *) client_data;
|
|
1647 EmacsManagerQueryGeometryStruct *emst =
|
|
1648 (EmacsManagerQueryGeometryStruct *) call_data;
|
|
1649 Widget text = FRAME_X_TEXT_WIDGET (f);
|
|
1650 Dimension textbord = text->core.border_width;
|
|
1651 Dimension topbreadth;
|
|
1652 XtWidgetGeometry req, repl;
|
|
1653 int mask = emst->request_mode & (CWWidth | CWHeight);
|
|
1654
|
|
1655 x_get_layout_sizes (f, &topbreadth);
|
|
1656
|
20
|
1657 /* Strip away menubar from suggested size, and ask the text widget
|
|
1658 what size it wants to be. */
|
0
|
1659 req.request_mode = mask;
|
|
1660 if (mask & CWWidth)
|
|
1661 req.width = emst->proposed_width - 2*textbord;
|
|
1662 if (mask & CWHeight)
|
|
1663 req.height = emst->proposed_height - topbreadth - 2*textbord;
|
|
1664 XtQueryGeometry (text, &req, &repl);
|
|
1665
|
|
1666 /* Now add the menubar back again */
|
20
|
1667 emst->proposed_width = repl.width + 2*textbord;
|
0
|
1668 emst->proposed_height = repl.height + topbreadth + 2*textbord;
|
|
1669 }
|
|
1670
|
|
1671 /* Creates the widgets for a frame.
|
|
1672 lisp_window_id is a Lisp description of an X window or Xt
|
|
1673 widget to parse.
|
|
1674
|
|
1675 This function does not create or map the windows. (That is
|
|
1676 done by x_popup_frame().)
|
|
1677 */
|
|
1678 static void
|
|
1679 x_create_widgets (struct frame *f, Lisp_Object lisp_window_id,
|
|
1680 Lisp_Object parent)
|
|
1681 {
|
|
1682 struct device *d = XDEVICE (f->device);
|
|
1683 #ifdef EXTERNAL_WIDGET
|
|
1684 Window window_id = 0;
|
|
1685 #endif
|
|
1686 CONST char *name;
|
165
|
1687 Arg al [25];
|
0
|
1688 int ac = 0;
|
|
1689 Widget text, container, shell;
|
|
1690 Widget parentwid = 0;
|
|
1691 #ifdef HAVE_MENUBARS
|
|
1692 int menubar_visible;
|
|
1693 Widget menubar;
|
|
1694 #endif
|
|
1695
|
|
1696 if (STRINGP (f->name))
|
|
1697 GET_C_STRING_CTEXT_DATA_ALLOCA (f->name, name);
|
|
1698 else
|
|
1699 name = "emacs";
|
|
1700
|
|
1701 /* The widget hierarchy is
|
|
1702
|
|
1703 argv[0] shell pane FRAME-NAME
|
|
1704 ApplicationShell EmacsShell EmacsManager EmacsFrame
|
|
1705
|
|
1706 (the type of the shell is ExternalShell if this frame is running
|
|
1707 in another client's window)
|
|
1708
|
|
1709 However the EmacsShell widget has WM_CLASS of FRAME-NAME/Emacs.
|
|
1710 Normally such shells have name/class shellname/appclass, which in this
|
|
1711 case would be "shell/Emacs" instead of "frame-name/Emacs". We could
|
|
1712 also get around this by naming the shell "frame-name", but that would
|
|
1713 be confusing because the text area (the EmacsFrame widget inferior of
|
|
1714 the shell) is also called that. So we just set the WM_CLASS property.
|
|
1715 */
|
|
1716
|
|
1717 #ifndef EXTERNAL_WIDGET
|
|
1718 if (!NILP (lisp_window_id))
|
|
1719 error ("support for external widgets was not enabled at compile-time");
|
|
1720 #else
|
|
1721 if (!NILP (lisp_window_id))
|
|
1722 {
|
|
1723 char *string;
|
|
1724
|
|
1725 CHECK_STRING (lisp_window_id);
|
70
|
1726 string = (char *) (XSTRING_DATA (lisp_window_id));
|
0
|
1727 if (string[0] == '0' && (string[1] == 'x' || string[1] == 'X'))
|
|
1728 sscanf (string+2, "%lxu", &window_id);
|
|
1729 #if 0
|
|
1730 else if (string[0] == 'w')
|
|
1731 {
|
|
1732 sscanf (string+1, "%x", &parent_widget);
|
|
1733 if (parent_widget)
|
|
1734 window_id = XtWindow (parent_widget);
|
|
1735 }
|
|
1736 #endif
|
|
1737 else
|
|
1738 sscanf (string, "%lu", &window_id);
|
|
1739 if (!is_valid_window (window_id, d))
|
|
1740 error ("Invalid window %lu", (unsigned long) window_id);
|
|
1741 FRAME_X_EXTERNAL_WINDOW_P (f) = 1;
|
|
1742 } else
|
|
1743 #endif /* EXTERNAL_WIDGET */
|
|
1744 FRAME_X_TOP_LEVEL_FRAME_P (f) = 1;
|
|
1745
|
|
1746 ac = 0;
|
165
|
1747 XtSetArg (al[ac], XtNallowShellResize, True); ac++;
|
0
|
1748 #ifdef LWLIB_USES_MOTIF
|
|
1749 /* Motif sucks beans. Without this in here, it will delete the window
|
|
1750 out from under us when it receives a WM_DESTROY_WINDOW message
|
|
1751 from the WM. */
|
165
|
1752 XtSetArg (al[ac], XmNdeleteResponse, XmDO_NOTHING); ac++;
|
0
|
1753 #endif
|
|
1754
|
|
1755 #ifdef EXTERNAL_WIDGET
|
|
1756 if (window_id)
|
|
1757 {
|
165
|
1758 XtSetArg (al[ac], XtNwindow, window_id); ac++;
|
0
|
1759 }
|
|
1760 else
|
20
|
1761 #endif /* EXTERNAL_WIDGET */
|
0
|
1762 {
|
165
|
1763 XtSetArg (al[ac], XtNinput, True); ac++;
|
|
1764 XtSetArg (al[ac], XtNminWidthCells, 10); ac++;
|
|
1765 XtSetArg (al[ac], XtNminHeightCells, 1); ac++;
|
0
|
1766 }
|
|
1767
|
|
1768 if (!NILP (parent))
|
|
1769 {
|
|
1770 parentwid = FRAME_X_SHELL_WIDGET (XFRAME (parent));
|
165
|
1771 XtSetArg (al[ac], XtNtransientFor, parentwid); ac++;
|
0
|
1772 }
|
|
1773
|
|
1774 shell = XtCreatePopupShell ("shell",
|
|
1775 (
|
|
1776 #ifdef EXTERNAL_WIDGET
|
|
1777 window_id ? externalShellWidgetClass :
|
|
1778 #endif
|
|
1779 parentwid ? transientEmacsShellWidgetClass :
|
|
1780 topLevelEmacsShellWidgetClass
|
|
1781 ),
|
|
1782 parentwid ? parentwid :
|
|
1783 DEVICE_XT_APP_SHELL (d),
|
165
|
1784 al, ac);
|
0
|
1785 FRAME_X_SHELL_WIDGET (f) = shell;
|
|
1786 maybe_set_frame_title_format (shell);
|
|
1787
|
|
1788 /* Create the manager widget */
|
165
|
1789 container = XtCreateWidget ("container",
|
|
1790 emacsManagerWidgetClass, shell, NULL, 0);
|
0
|
1791 FRAME_X_CONTAINER_WIDGET (f) = container;
|
|
1792 XtAddCallback (container, XtNresizeCallback, x_layout_widgets,
|
|
1793 (XtPointer) f);
|
|
1794 XtAddCallback (container, XtNqueryGeometryCallback, x_do_query_geometry,
|
|
1795 (XtPointer) f);
|
|
1796
|
|
1797 /* Create the text area */
|
165
|
1798 XtSetArg (al [0], XtNborderWidth, 0); /* should this be settable? */
|
|
1799 XtSetArg (al [1], XtNemacsFrame, f);
|
|
1800 text = XtCreateWidget (name, emacsFrameClass, container, al, 2);
|
0
|
1801 FRAME_X_TEXT_WIDGET (f) = text;
|
|
1802
|
|
1803 #ifdef HAVE_MENUBARS
|
|
1804 /* Create the initial menubar widget. */
|
|
1805 menubar_visible = x_initialize_frame_menubar (f);
|
|
1806 FRAME_X_TOP_WIDGETS (f)[0] = menubar = FRAME_X_MENUBAR_WIDGET (f);
|
|
1807 FRAME_X_NUM_TOP_WIDGETS (f) = 1;
|
|
1808
|
|
1809 if (menubar_visible)
|
|
1810 XtManageChild (menubar);
|
20
|
1811 #endif /* HAVE_MENUBARS */
|
0
|
1812 XtManageChild (text);
|
|
1813 XtManageChild (container);
|
|
1814 }
|
|
1815
|
|
1816 /* We used to call XtPopup() in x_popup_frame, but that doesn't give
|
|
1817 you control over whether the widget is initially mapped or not
|
|
1818 because XtPopup() makes an unconditional call to XMapRaised().
|
|
1819 Boy, those Xt designers were clever.
|
|
1820
|
|
1821 When we first removed it we only kept the XtRealizeWidget call in
|
|
1822 XtPopup. For everything except HP's that was enough. For HP's,
|
|
1823 though, the failure to call the popup callbacks resulted in XEmacs
|
|
1824 not accepting any input. Bizarre but true. Stupid but true.
|
|
1825
|
|
1826 So, in case there are any other gotches floating out there along
|
|
1827 the same lines I've duplicated the majority of XtPopup here. It
|
|
1828 assumes no grabs and that the widget is not already popped up, both
|
|
1829 valid assumptions for the one place this is called from. */
|
|
1830 static void
|
|
1831 xemacs_XtPopup (Widget widget)
|
|
1832 {
|
|
1833 ShellWidget shell_widget = (ShellWidget) widget;
|
|
1834 XtGrabKind call_data = XtGrabNone;
|
165
|
1835 Arg al [1];
|
0
|
1836
|
|
1837 XtCallCallbacks (widget, XtNpopupCallback, (XtPointer)&call_data);
|
|
1838
|
|
1839 shell_widget->shell.popped_up = TRUE;
|
|
1840 shell_widget->shell.grab_kind = XtGrabNone;
|
|
1841 shell_widget->shell.spring_loaded = False;
|
|
1842
|
|
1843 if (shell_widget->shell.create_popup_child_proc != NULL)
|
|
1844 (*(shell_widget->shell.create_popup_child_proc))(widget);
|
|
1845
|
165
|
1846 /* The XtSetValues below are not in XtPopup menu. We just want to
|
0
|
1847 make absolutely sure... */
|
165
|
1848 XtSetArg (al [0], XtNmappedWhenManaged, False);
|
|
1849 XtSetValues (widget, al, 1);
|
0
|
1850 XtRealizeWidget (widget);
|
165
|
1851 XtSetArg (al [0], XtNmappedWhenManaged, True);
|
|
1852 XtSetValues (widget, al, 1);
|
0
|
1853 }
|
|
1854
|
|
1855 #ifdef HAVE_CDE
|
|
1856 /* Does this have to be non-automatic? */
|
|
1857 /* hack frame to respond to dnd messages */
|
|
1858 static XtCallbackRec dnd_transfer_cb_rec[2];
|
20
|
1859 #endif /* HAVE_CDE */
|
0
|
1860
|
|
1861 /* create the windows for the specified frame and display them.
|
|
1862 Note that the widgets have already been created, and any
|
|
1863 necessary geometry calculations have already been done. */
|
|
1864 static void
|
|
1865 x_popup_frame (struct frame *f)
|
|
1866 {
|
|
1867 Widget shell_widget = FRAME_X_SHELL_WIDGET (f);
|
|
1868 Widget frame_widget = FRAME_X_TEXT_WIDGET (f);
|
|
1869 struct device *d = XDEVICE (FRAME_DEVICE (f));
|
|
1870
|
|
1871 /* Before mapping the window, make sure that the WMShell's notion of
|
|
1872 whether it should be iconified is synchronized with the EmacsFrame's
|
|
1873 notion.
|
|
1874 */
|
|
1875 if (FRAME_X_TOP_LEVEL_FRAME_P (f))
|
|
1876 x_wm_set_shell_iconic_p (shell_widget,
|
|
1877 ((EmacsFrame) frame_widget)
|
|
1878 ->emacs_frame.iconic);
|
|
1879
|
|
1880 xemacs_XtPopup (shell_widget);
|
|
1881
|
|
1882 if (!((EmacsFrame) frame_widget)->emacs_frame.initially_unmapped)
|
|
1883 XtMapWidget (shell_widget);
|
|
1884 else
|
|
1885 {
|
|
1886 /* We may have set f->visible to 1 in x_init_frame(), so undo
|
|
1887 that now. */
|
|
1888 FRAME_X_TOTALLY_VISIBLE_P (f) = 0;
|
|
1889 f->visible = 0;
|
|
1890 }
|
|
1891
|
|
1892 #ifdef EXTERNAL_WIDGET
|
|
1893 if (FRAME_X_EXTERNAL_WINDOW_P (f))
|
|
1894 ExternalShellReady (shell_widget, XtWindow (frame_widget), KeyPressMask);
|
|
1895 else
|
|
1896 #endif
|
|
1897 if (FRAME_X_TOP_LEVEL_FRAME_P (f))
|
|
1898 {
|
|
1899 /* tell the window manager about us. */
|
|
1900 x_wm_store_class_hints (shell_widget, XtName (frame_widget));
|
177
|
1901
|
179
|
1902 #ifndef HAVE_SESSION
|
0
|
1903 x_wm_maybe_store_wm_command (f);
|
179
|
1904 #endif /* HAVE_SESSION */
|
177
|
1905
|
0
|
1906 x_wm_hack_wm_protocols (shell_widget);
|
|
1907 }
|
|
1908
|
70
|
1909 #ifdef HAVE_XIM
|
|
1910 XIM_init_frame (f);
|
|
1911 #endif /* HAVE_XIM */
|
|
1912
|
0
|
1913 #ifdef HACK_EDITRES
|
|
1914 /* Allow XEmacs to respond to EditRes requests. See the O'Reilly Xt */
|
|
1915 /* Instrinsics Programming Manual, Motif Edition, Aug 1993, Sect 14.14, */
|
|
1916 /* pp. 483-493. */
|
|
1917 XtAddEventHandler (shell_widget, /* the shell widget in question */
|
|
1918 (EventMask) NoEventMask,/* OR with existing mask */
|
|
1919 True, /* called on non-maskable events? */
|
|
1920 _XEditResCheckMessages, /* the handler */
|
|
1921 NULL);
|
20
|
1922 #endif /* HACK_EDITRES */
|
0
|
1923
|
|
1924 #ifdef HAVE_CDE
|
|
1925 {
|
|
1926 dnd_transfer_cb_rec[0].callback = x_cde_transfer_callback;
|
|
1927 dnd_transfer_cb_rec[0].closure = (XtPointer) f;
|
|
1928 dnd_transfer_cb_rec[1].callback = NULL;
|
|
1929 dnd_transfer_cb_rec[1].closure = NULL;
|
|
1930
|
|
1931 DtDndVaDropRegister (FRAME_X_TEXT_WIDGET (f),
|
2
|
1932 DtDND_FILENAME_TRANSFER | DtDND_BUFFER_TRANSFER,
|
|
1933 XmDROP_COPY, dnd_transfer_cb_rec,
|
|
1934 DtNtextIsBuffer, True,
|
0
|
1935 DtNpreserveRegistration, False,
|
|
1936 NULL);
|
|
1937 }
|
20
|
1938 #endif /* HAVE_CDE */
|
0
|
1939
|
2
|
1940 #ifdef HAVE_OFFIX_DND
|
|
1941 {
|
|
1942 DndInitialize (FRAME_X_SHELL_WIDGET (f));
|
|
1943 DndRegisterDropWidget (FRAME_X_TEXT_WIDGET (f),
|
|
1944 x_offix_drop_event_handler,
|
|
1945 (XtPointer) f);
|
|
1946
|
|
1947 }
|
|
1948 #endif
|
|
1949
|
0
|
1950 /* Do a stupid property change to force the server to generate a
|
|
1951 propertyNotify event so that the event_stream server timestamp will
|
|
1952 be initialized to something relevant to the time we created the window.
|
|
1953 */
|
|
1954 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
|
|
1955 DEVICE_XATOM_WM_PROTOCOLS (d), XA_ATOM, 32, PropModeAppend,
|
|
1956 (unsigned char*) NULL, 0);
|
|
1957
|
|
1958 x_send_synthetic_mouse_event (f);
|
|
1959 }
|
|
1960
|
|
1961 static void
|
|
1962 allocate_x_frame_struct (struct frame *f)
|
|
1963 {
|
|
1964 /* zero out all slots. */
|
|
1965 f->frame_data = malloc_type_and_zero (struct x_frame);
|
|
1966
|
|
1967 /* yeah, except the lisp ones */
|
|
1968 FRAME_X_ICON_PIXMAP (f) = Qnil;
|
|
1969 FRAME_X_ICON_PIXMAP_MASK (f) = Qnil;
|
|
1970 #ifdef ENERGIZE
|
|
1971 FRAME_X_CURRENT_PSHEET_BUFFER (f) = Qnil;
|
|
1972 FRAME_X_DESIRED_PSHEET_BUFFER (f) = Qnil;
|
|
1973 #endif
|
|
1974 }
|
|
1975
|
|
1976
|
|
1977 /************************************************************************/
|
|
1978 /* Lisp functions */
|
|
1979 /************************************************************************/
|
|
1980
|
|
1981 static void
|
|
1982 x_init_frame_1 (struct frame *f, Lisp_Object props)
|
|
1983 {
|
|
1984 /* This function can GC */
|
|
1985 Lisp_Object device = FRAME_DEVICE (f);
|
|
1986 struct device *d = XDEVICE (device);
|
|
1987 Lisp_Object lisp_window_id;
|
|
1988 Lisp_Object popup;
|
|
1989
|
|
1990 lisp_window_id = Fplist_get (props, Qwindow_id, Qnil);
|
|
1991 popup = Fplist_get (props, Qpopup, Qnil);
|
|
1992 if (!NILP (popup))
|
|
1993 {
|
|
1994 if (EQ (popup, Qt))
|
|
1995 popup = Fselected_frame (device);
|
|
1996 CHECK_LIVE_FRAME (popup);
|
|
1997 if (!EQ (device, FRAME_DEVICE (XFRAME (popup))))
|
|
1998 signal_simple_error_2 ("Parent must be on same device as frame",
|
|
1999 device, popup);
|
|
2000 }
|
|
2001
|
|
2002 if (NILP (DEVICE_SELECTED_FRAME (d)))
|
|
2003 {
|
|
2004 /* This means that this is the first frame on the device.
|
|
2005 So short-ciruit the delay in processing the initial MapNotify
|
|
2006 event so that output on the first frame shows up right
|
|
2007 away... */
|
|
2008 f->visible = 1;
|
|
2009 }
|
|
2010
|
|
2011 allocate_x_frame_struct (f);
|
|
2012 x_create_widgets (f, lisp_window_id, popup);
|
|
2013 }
|
|
2014
|
|
2015 static void
|
|
2016 x_init_frame_2 (struct frame *f, Lisp_Object props)
|
|
2017 {
|
|
2018 /* Set up the values of the widget/frame. A case could be made for putting
|
|
2019 this inside of the widget's initialize method. */
|
|
2020
|
|
2021 update_frame_face_values (f);
|
|
2022 x_initialize_frame_size (f);
|
|
2023 update_frame_title (f);
|
|
2024 }
|
|
2025
|
|
2026 static void
|
|
2027 x_init_frame_3 (struct frame *f)
|
|
2028 {
|
|
2029 /* Pop up the frame. */
|
|
2030
|
|
2031 x_popup_frame (f);
|
|
2032 }
|
|
2033
|
|
2034 static void
|
|
2035 x_mark_frame (struct frame *f, void (*markobj) (Lisp_Object))
|
|
2036 {
|
|
2037 ((markobj) (FRAME_X_ICON_PIXMAP (f)));
|
|
2038 ((markobj) (FRAME_X_ICON_PIXMAP_MASK (f)));
|
|
2039 #ifdef ENERGIZE
|
|
2040 ((markobj) (FRAME_X_CURRENT_PSHEET_BUFFER (f)));
|
|
2041 ((markobj) (FRAME_X_DESIRED_PSHEET_BUFFER (f)));
|
|
2042 #endif
|
|
2043 }
|
|
2044
|
|
2045 static void
|
|
2046 x_set_frame_icon (struct frame *f)
|
|
2047 {
|
|
2048 Pixmap x_pixmap, x_mask;
|
|
2049
|
|
2050 if (IMAGE_INSTANCEP (f->icon)
|
|
2051 && IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (f->icon)))
|
|
2052 {
|
|
2053 x_pixmap = XIMAGE_INSTANCE_X_PIXMAP (f->icon);
|
|
2054 x_mask = XIMAGE_INSTANCE_X_MASK (f->icon);
|
|
2055 }
|
|
2056 else
|
|
2057 {
|
|
2058 x_pixmap = 0;
|
|
2059 x_mask = 0;
|
|
2060 }
|
|
2061
|
|
2062 /* Store the X data into the widget. */
|
|
2063 {
|
165
|
2064 Arg al [2];
|
|
2065 XtSetArg (al [0], XtNiconPixmap, x_pixmap);
|
|
2066 XtSetArg (al [1], XtNiconMask, x_mask);
|
|
2067 XtSetValues (FRAME_X_SHELL_WIDGET (f), al, 2);
|
0
|
2068 }
|
|
2069 }
|
|
2070
|
|
2071 static void
|
|
2072 x_set_frame_pointer (struct frame *f)
|
|
2073 {
|
|
2074 XDefineCursor (XtDisplay (FRAME_X_TEXT_WIDGET (f)),
|
|
2075 XtWindow (FRAME_X_TEXT_WIDGET (f)),
|
|
2076 XIMAGE_INSTANCE_X_CURSOR (f->pointer));
|
|
2077 XSync (XtDisplay (FRAME_X_TEXT_WIDGET (f)), 0);
|
|
2078 }
|
|
2079
|
|
2080 static Lisp_Object
|
|
2081 x_get_frame_parent (struct frame *f)
|
|
2082 {
|
|
2083 Widget parentwid = 0;
|
165
|
2084 Arg al[1];
|
0
|
2085
|
165
|
2086 XtSetArg (al[0], XtNtransientFor, &parentwid);
|
|
2087 XtGetValues (FRAME_X_SHELL_WIDGET (f), al, 1);
|
0
|
2088 /* find the frame whose wid is parentwid */
|
|
2089 if (parentwid)
|
|
2090 {
|
|
2091 Lisp_Object frmcons;
|
|
2092 DEVICE_FRAME_LOOP (frmcons, XDEVICE (FRAME_DEVICE (f)))
|
|
2093 {
|
|
2094 Lisp_Object frame = XCAR (frmcons);
|
|
2095 if (FRAME_X_SHELL_WIDGET (XFRAME (frame)) == parentwid)
|
|
2096 return frame;
|
|
2097 }
|
|
2098 }
|
|
2099 return Qnil;
|
|
2100 }
|
|
2101
|
20
|
2102 DEFUN ("x-window-id", Fx_window_id, 0, 1, 0, /*
|
0
|
2103 Get the ID of the X11 window.
|
|
2104 This gives us a chance to manipulate the Emacs window from within a
|
|
2105 different program. Since the ID is an unsigned long, we return it as
|
|
2106 a string.
|
20
|
2107 */
|
|
2108 (frame))
|
0
|
2109 {
|
|
2110 char str[255];
|
|
2111 struct frame *f = decode_x_frame (frame);
|
|
2112
|
|
2113 sprintf (str, "%lu", XtWindow (FRAME_X_TEXT_WIDGET (f)));
|
|
2114 return build_string (str);
|
|
2115 }
|
|
2116
|
|
2117
|
|
2118 /************************************************************************/
|
|
2119 /* manipulating the X window */
|
|
2120 /************************************************************************/
|
|
2121
|
|
2122 static void
|
|
2123 x_set_frame_position (struct frame *f, int xoff, int yoff)
|
|
2124 {
|
|
2125 Widget w = FRAME_X_SHELL_WIDGET (f);
|
|
2126 Display *dpy = XtDisplay (w);
|
20
|
2127 Dimension frame_w = DisplayWidth (dpy, DefaultScreen (dpy));
|
0
|
2128 Dimension frame_h = DisplayHeight (dpy, DefaultScreen (dpy));
|
|
2129 Dimension shell_w, shell_h, shell_bord;
|
|
2130 int win_gravity;
|
165
|
2131 Arg al [3];
|
0
|
2132
|
165
|
2133 XtSetArg (al [0], XtNwidth, &shell_w);
|
|
2134 XtSetArg (al [1], XtNheight, &shell_h);
|
|
2135 XtSetArg (al [2], XtNborderWidth, &shell_bord);
|
|
2136 XtGetValues (w, al, 3);
|
0
|
2137
|
|
2138 win_gravity =
|
|
2139 xoff >= 0 && yoff >= 0 ? NorthWestGravity :
|
|
2140 xoff >= 0 ? SouthWestGravity :
|
|
2141 yoff >= 0 ? NorthEastGravity :
|
|
2142 SouthEastGravity;
|
|
2143 if (xoff < 0)
|
|
2144 xoff += frame_w - shell_w - 2*shell_bord;
|
|
2145 if (yoff < 0)
|
|
2146 yoff += frame_h - shell_h - 2*shell_bord;
|
|
2147
|
|
2148 /* Update the hints so that, if this window is currently iconified, it will
|
|
2149 come back at the right place. We can't look at s->visible to determine
|
|
2150 whether it is iconified because it might not be up-to-date yet (the queue
|
|
2151 might not be processed). */
|
165
|
2152 XtSetArg (al [0], XtNwinGravity, win_gravity);
|
|
2153 XtSetArg (al [1], XtNx, xoff);
|
|
2154 XtSetArg (al [2], XtNy, yoff);
|
|
2155 XtSetValues (w, al, 3);
|
70
|
2156
|
0
|
2157 /* Sometimes you will find that
|
|
2158
|
|
2159 (set-frame-position (selected-frame) -50 -50)
|
|
2160
|
20
|
2161 doesn't put the frame where you expect it to: i.e. it's closer to
|
|
2162 the lower-right corner than it should be, and it appears that the
|
|
2163 size of the WM decorations was not taken into account. This is
|
|
2164 *not* a problem with this function. Both mwm and twm have bugs
|
|
2165 in handling this situation. (mwm ignores the window gravity and
|
|
2166 always assumes NorthWest, except the first time you map the
|
|
2167 window; twm gets things almost right, but forgets to account for
|
|
2168 the border width of the top-level window.) This function does
|
|
2169 what it's supposed to according to the ICCCM, and I'm not about
|
|
2170 to hack around window-manager bugs. */
|
0
|
2171
|
|
2172 #if 0
|
|
2173 /* This is not necessary under either mwm or twm */
|
|
2174 x_wm_mark_shell_position_user_specified (w);
|
|
2175 #endif
|
|
2176 }
|
|
2177
|
|
2178 /* Call this to change the size of frame S's x-window. */
|
|
2179
|
|
2180 static void
|
|
2181 x_set_frame_size (struct frame *f, int cols, int rows)
|
|
2182 {
|
|
2183 EmacsFrameSetCharSize (FRAME_X_TEXT_WIDGET (f), cols, rows);
|
|
2184 #if 0
|
|
2185 /* this is not correct. x_set_frame_size() is called from
|
|
2186 Fset_frame_size(), which may or may not have been called
|
|
2187 by the user (e.g. update_EmacsFrame() calls it when the font
|
|
2188 changes). For now, don't bother with getting this right. */
|
|
2189 x_wm_mark_shell_size_user_specified (FRAME_X_SHELL_WIDGET (f));
|
|
2190 #endif
|
|
2191 }
|
|
2192
|
|
2193 static void
|
|
2194 x_set_mouse_position (struct window *w, int x, int y)
|
|
2195 {
|
|
2196 struct frame *f = XFRAME (w->frame);
|
|
2197
|
|
2198 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2199 XWarpPointer (display, None, XtWindow (FRAME_X_TEXT_WIDGET (f)),
|
|
2200 0, 0, 0, 0, w->pixel_left + x, w->pixel_top + y);
|
|
2201 }
|
|
2202
|
|
2203 static int
|
|
2204 x_get_mouse_position (struct device *d, Lisp_Object *frame, int *x, int *y)
|
|
2205 {
|
|
2206 Display *display = DEVICE_X_DISPLAY (d);
|
|
2207 Window child_window;
|
|
2208 Window root_window;
|
|
2209 Window win;
|
|
2210 int root_x, root_y;
|
|
2211 int win_x, win_y;
|
|
2212 unsigned int keys_and_buttons;
|
|
2213 struct frame *f;
|
|
2214
|
|
2215 if (XQueryPointer (display, RootWindow (display, DefaultScreen (display)),
|
|
2216 &root_window, &child_window, &root_x, &root_y,
|
|
2217 &win_x, &win_y, &keys_and_buttons) == False)
|
|
2218 return 0;
|
|
2219
|
|
2220 if (child_window == None)
|
|
2221 return 0; /* not over any window. */
|
|
2222
|
|
2223 while (1)
|
|
2224 {
|
|
2225 win = child_window;
|
|
2226 if (XTranslateCoordinates (display, root_window, win, root_x, root_y,
|
|
2227 &win_x, &win_y, &child_window) == False)
|
|
2228 /* Huh? */
|
|
2229 return 0;
|
|
2230
|
|
2231 if (child_window == None)
|
|
2232 break;
|
|
2233 }
|
|
2234
|
|
2235 /* At this point, win is the innermost window containing the pointer
|
|
2236 and win_x and win_y are the coordinates of that window. */
|
|
2237 f = x_any_window_to_frame (d, win);
|
|
2238 if (!f)
|
|
2239 return 0;
|
|
2240 XSETFRAME (*frame, f);
|
|
2241
|
|
2242 if (XTranslateCoordinates (display, win,
|
|
2243 XtWindow (FRAME_X_TEXT_WIDGET (f)),
|
|
2244 win_x, win_y, x, y, &child_window) == False)
|
|
2245 /* Huh? */
|
|
2246 return 0;
|
|
2247
|
|
2248 return 1;
|
|
2249 }
|
|
2250
|
|
2251 static void
|
|
2252 x_cant_notify_wm_error (void)
|
|
2253 {
|
|
2254 error ("Can't notify window manager of iconification.");
|
|
2255 }
|
|
2256
|
|
2257 /* Raise frame F. */
|
|
2258 static void
|
|
2259 x_raise_frame_1 (struct frame *f, int force)
|
|
2260 {
|
|
2261 Widget bottom_dialog;
|
|
2262 Window emacs_window;
|
|
2263 XWindowChanges xwc;
|
|
2264 unsigned int flags;
|
|
2265 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2266
|
108
|
2267 if (FRAME_VISIBLE_P(f) || force)
|
0
|
2268 {
|
|
2269 emacs_window = XtWindow (FRAME_X_SHELL_WIDGET (f));
|
|
2270 /* first raises all the dialog boxes, then put emacs just below the
|
|
2271 * bottom most dialog box */
|
|
2272 bottom_dialog = lw_raise_all_pop_up_widgets ();
|
|
2273 if (bottom_dialog && XtWindow (bottom_dialog))
|
|
2274 {
|
|
2275 xwc.sibling = XtWindow (bottom_dialog);
|
|
2276 xwc.stack_mode = Below;
|
|
2277 flags = CWSibling | CWStackMode;
|
|
2278 }
|
|
2279 else
|
|
2280 {
|
|
2281 xwc.stack_mode = Above;
|
|
2282 flags = CWStackMode;
|
|
2283 }
|
|
2284
|
|
2285 if (!XReconfigureWMWindow (display, emacs_window,
|
|
2286 DefaultScreen (display),
|
|
2287 flags, &xwc))
|
|
2288 x_cant_notify_wm_error ();
|
|
2289 }
|
|
2290 }
|
|
2291
|
|
2292 static void
|
|
2293 x_raise_frame (struct frame *f)
|
|
2294 {
|
|
2295 x_raise_frame_1 (f, 1);
|
|
2296 }
|
|
2297
|
|
2298 /* Lower frame F. */
|
|
2299 static void
|
|
2300 x_lower_frame (struct frame *f)
|
|
2301 {
|
|
2302 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2303 XWindowChanges xwc;
|
|
2304 unsigned int flags;
|
|
2305
|
108
|
2306 if (FRAME_VISIBLE_P(f))
|
0
|
2307 {
|
|
2308 xwc.stack_mode = Below;
|
|
2309 flags = CWStackMode;
|
|
2310 if (!XReconfigureWMWindow (display, XtWindow (FRAME_X_SHELL_WIDGET (f)),
|
|
2311 DefaultScreen (display), flags, &xwc))
|
|
2312 x_cant_notify_wm_error ();
|
|
2313 }
|
|
2314 }
|
|
2315
|
|
2316 /* Change from withdrawn state to mapped state. */
|
|
2317 static void
|
|
2318 x_make_frame_visible (struct frame *f)
|
|
2319 {
|
|
2320 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2321
|
108
|
2322 if (!FRAME_VISIBLE_P(f))
|
0
|
2323 XMapRaised (display, XtWindow (FRAME_X_SHELL_WIDGET (f)));
|
|
2324 else
|
|
2325 x_raise_frame_1 (f, 0);
|
|
2326 }
|
|
2327
|
|
2328 /* Change from mapped state to withdrawn state. */
|
|
2329 static void
|
|
2330 x_make_frame_invisible (struct frame *f)
|
|
2331 {
|
|
2332 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2333
|
108
|
2334 if (!FRAME_VISIBLE_P(f))
|
0
|
2335 return;
|
|
2336
|
|
2337 if (!XWithdrawWindow (display,
|
|
2338 XtWindow (FRAME_X_SHELL_WIDGET (f)),
|
|
2339 DefaultScreen (display)))
|
|
2340 x_cant_notify_wm_error ();
|
|
2341 }
|
|
2342
|
|
2343 static int
|
|
2344 x_frame_visible_p (struct frame *f)
|
|
2345 {
|
175
|
2346 #if 0
|
0
|
2347 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2348 XWindowAttributes xwa;
|
|
2349 int result;
|
|
2350
|
108
|
2351 /* JV:
|
|
2352 This is bad, very bad :-(
|
|
2353 It is not compatible with our tristate visible and
|
|
2354 it should never ever change the visibility for us, this leads to
|
|
2355 the frame-freeze problem under fvwm because with the pager
|
|
2356
|
|
2357 Mappedness != Viewability != Visibility != Emacs f->visible
|
|
2358
|
|
2359 This first unequalness is the reason for the frame freezing problem
|
|
2360 under fvwm (it happens when the frame is another fvwm-page)
|
|
2361
|
|
2362 The second unequalness happen when it is on the same fvwm-page
|
|
2363 but in an invisible part of the visible screen.
|
|
2364
|
|
2365 For now we just return the XEmacs internal value --- which might not be up
|
|
2366 to date. Is that a problem? ---. Otherwise we should
|
|
2367 use async visibility like in standard Emacs.
|
|
2368 */
|
|
2369
|
0
|
2370 if (!XGetWindowAttributes (display,
|
|
2371 XtWindow (FRAME_X_SHELL_WIDGET (f)),
|
|
2372 &xwa))
|
|
2373 result = 0;
|
|
2374 else
|
|
2375 result = xwa.map_state == IsViewable;
|
108
|
2376 /* In this implementation it should at least be != IsUnmapped
|
|
2377 JV */
|
|
2378
|
0
|
2379 f->visible = result;
|
|
2380 return result;
|
175
|
2381 #endif /* 0 */
|
108
|
2382
|
|
2383 return f->visible;
|
0
|
2384 }
|
|
2385
|
|
2386 static int
|
|
2387 x_frame_totally_visible_p (struct frame *f)
|
|
2388 {
|
|
2389 return FRAME_X_TOTALLY_VISIBLE_P (f);
|
|
2390 }
|
|
2391
|
|
2392 /* Change window state from mapped to iconified. */
|
|
2393 static void
|
|
2394 x_iconify_frame (struct frame *f)
|
|
2395 {
|
|
2396 Display *display = DEVICE_X_DISPLAY (XDEVICE (f->device));
|
|
2397
|
|
2398 if (!XIconifyWindow (display,
|
|
2399 XtWindow (FRAME_X_SHELL_WIDGET (f)),
|
|
2400 DefaultScreen (display)))
|
|
2401 x_cant_notify_wm_error ();
|
|
2402
|
|
2403 f->iconified = 1;
|
|
2404 }
|
|
2405
|
|
2406 /* Sets the X focus to frame f. */
|
|
2407 static void
|
|
2408 x_focus_on_frame (struct frame *f)
|
|
2409 {
|
|
2410 XWindowAttributes xwa;
|
|
2411 Widget shell_widget;
|
169
|
2412 int viewable = 0;
|
0
|
2413
|
|
2414 assert (FRAME_X_P (f));
|
|
2415
|
|
2416 shell_widget = FRAME_X_SHELL_WIDGET (f);
|
|
2417 if (!XtWindow (shell_widget))
|
|
2418 return;
|
|
2419
|
|
2420 #ifdef EXTERNAL_WIDGET
|
|
2421 if (FRAME_X_EXTERNAL_WINDOW_P (f))
|
|
2422 ExternalShellSetFocus (shell_widget);
|
|
2423 #endif /* EXTERNAL_WIDGET */
|
|
2424
|
|
2425 /* Do the ICCCM focus change if the window is still visible.
|
|
2426 The s->visible flag might not be up-to-date, because we might
|
|
2427 not have processed magic events recently. So make a server
|
|
2428 round-trip to find out whether it's really mapped right now.
|
|
2429 We grab the server to do this, because that's the only way to
|
|
2430 eliminate the race condition.
|
|
2431 */
|
|
2432 XGrabServer (XtDisplay (shell_widget));
|
|
2433 if (XGetWindowAttributes (XtDisplay (shell_widget),
|
|
2434 XtWindow (shell_widget),
|
|
2435 &xwa))
|
108
|
2436 /* JV: it is bad to change the visibility like this, so we don't for the
|
|
2437 moment, at least change_frame_visibility should be called
|
169
|
2438 Note also that under fvwm a frame can be Viewable (and thus Mapped)
|
|
2439 but still X-invisible
|
108
|
2440 f->visible = xwa.map_state == IsViewable; */
|
|
2441 viewable = xwa.map_state == IsViewable;
|
|
2442
|
0
|
2443
|
108
|
2444 if (viewable)
|
0
|
2445 {
|
|
2446 Window focus;
|
|
2447 int revert_to;
|
|
2448 XGetInputFocus (XtDisplay (shell_widget), &focus, &revert_to);
|
|
2449 /* Don't explicitly set the focus on this window unless the focus
|
|
2450 was on some other window (not PointerRoot). Note that, even when
|
|
2451 running a point-to-type window manager like *twm, there is always
|
|
2452 a focus window; the window manager maintains that based on the
|
|
2453 mouse position. If you set the "NoTitleFocus" option in these
|
|
2454 window managers, then the server itself maintains the focus via
|
|
2455 PointerRoot, and changing that to focus on the window would make
|
|
2456 the window grab the focus. Very bad.
|
|
2457 */
|
|
2458 if (focus != PointerRoot)
|
|
2459 {
|
|
2460 XSetInputFocus (XtDisplay (shell_widget),
|
|
2461 XtWindow (shell_widget),
|
|
2462 RevertToParent,
|
|
2463 DEVICE_X_MOUSE_TIMESTAMP
|
|
2464 (XDEVICE (FRAME_DEVICE (f))));
|
|
2465 XFlush (XtDisplay (shell_widget));
|
|
2466 }
|
|
2467 }
|
|
2468 XUngrabServer (XtDisplay (shell_widget));
|
|
2469 XFlush (XtDisplay (shell_widget)); /* hey, I'd like to DEBUG this... */
|
|
2470 }
|
|
2471
|
|
2472 /* Destroy the X window of frame S. */
|
|
2473 static void
|
|
2474 x_delete_frame (struct frame *f)
|
|
2475 {
|
|
2476 Widget w = FRAME_X_SHELL_WIDGET (f);
|
|
2477 Lisp_Object popup, frame;
|
|
2478
|
179
|
2479 #ifndef HAVE_SESSION
|
0
|
2480 if (FRAME_X_TOP_LEVEL_FRAME_P (f))
|
|
2481 x_wm_maybe_move_wm_command (f);
|
179
|
2482 #endif /* HAVE_SESSION */
|
0
|
2483
|
|
2484 /* Frames with the popup property are using other frames as their
|
|
2485 widget parent. Deleting them are their parent has already been
|
|
2486 deleted can lead to crashes. */
|
|
2487 XSETFRAME (frame, f);
|
|
2488 popup = Fframe_property (frame, Qpopup, Qnil);
|
|
2489 if (!NILP (popup))
|
|
2490 {
|
|
2491 /* If popup isn't nil then it means the frame has that property
|
|
2492 and the value is supposed to be the parent frame. The FRAMEP
|
|
2493 check is to safeguard against it not being a frame. */
|
|
2494 if (!FRAMEP (popup) || !FRAME_LIVE_P (XFRAME (popup)))
|
|
2495 popup = Qt;
|
|
2496 else
|
|
2497 popup = Qnil;
|
|
2498 }
|
|
2499
|
|
2500 #ifdef EXTERNAL_WIDGET
|
|
2501 {
|
|
2502 Display *dpy = XtDisplay (w);
|
|
2503 expect_x_error (dpy);
|
|
2504 /* for obscure reasons having (I think) to do with the internal
|
|
2505 window-to-widget hierarchy maintained by Xt, we have to call
|
|
2506 XtUnrealizeWidget() here. Xt can really suck. */
|
|
2507 if (f->being_deleted)
|
|
2508 XtUnrealizeWidget (w);
|
|
2509 if (NILP (popup))
|
|
2510 XtDestroyWidget (w);
|
|
2511 x_error_occurred_p (dpy);
|
|
2512 }
|
|
2513 #else
|
|
2514 if (NILP (popup))
|
|
2515 XtDestroyWidget (w);
|
|
2516 #endif /* EXTERNAL_WIDGET */
|
|
2517
|
|
2518 if (FRAME_X_GEOM_FREE_ME_PLEASE (f))
|
|
2519 xfree (FRAME_X_GEOM_FREE_ME_PLEASE (f));
|
|
2520 xfree (f->frame_data);
|
|
2521 f->frame_data = 0;
|
|
2522 }
|
|
2523
|
|
2524
|
|
2525 /************************************************************************/
|
|
2526 /* initialization */
|
|
2527 /************************************************************************/
|
|
2528
|
|
2529 void
|
|
2530 syms_of_frame_x (void)
|
|
2531 {
|
|
2532 defsymbol (&Qwindow_id, "window-id");
|
|
2533 defsymbol (&Qpopup, "popup");
|
|
2534 defsymbol (&Qx_resource_name, "x-resource-name");
|
|
2535
|
20
|
2536 DEFSUBR (Fx_window_id);
|
|
2537 #ifdef HAVE_CDE
|
|
2538 DEFSUBR (Fcde_start_drag_internal);
|
|
2539 #endif
|
0
|
2540 }
|
|
2541
|
|
2542 void
|
|
2543 console_type_create_frame_x (void)
|
|
2544 {
|
|
2545 /* frame methods */
|
|
2546 CONSOLE_HAS_METHOD (x, init_frame_1);
|
|
2547 CONSOLE_HAS_METHOD (x, init_frame_2);
|
|
2548 CONSOLE_HAS_METHOD (x, init_frame_3);
|
|
2549 CONSOLE_HAS_METHOD (x, mark_frame);
|
|
2550 CONSOLE_HAS_METHOD (x, focus_on_frame);
|
|
2551 CONSOLE_HAS_METHOD (x, delete_frame);
|
|
2552 CONSOLE_HAS_METHOD (x, get_mouse_position);
|
|
2553 CONSOLE_HAS_METHOD (x, set_mouse_position);
|
|
2554 CONSOLE_HAS_METHOD (x, raise_frame);
|
|
2555 CONSOLE_HAS_METHOD (x, lower_frame);
|
|
2556 CONSOLE_HAS_METHOD (x, make_frame_visible);
|
|
2557 CONSOLE_HAS_METHOD (x, make_frame_invisible);
|
|
2558 CONSOLE_HAS_METHOD (x, iconify_frame);
|
|
2559 CONSOLE_HAS_METHOD (x, set_frame_size);
|
|
2560 CONSOLE_HAS_METHOD (x, set_frame_position);
|
|
2561 CONSOLE_HAS_METHOD (x, frame_property);
|
|
2562 CONSOLE_HAS_METHOD (x, internal_frame_property_p);
|
|
2563 CONSOLE_HAS_METHOD (x, frame_properties);
|
|
2564 CONSOLE_HAS_METHOD (x, set_frame_properties);
|
2
|
2565 CONSOLE_HAS_METHOD (x, set_title_from_bufbyte);
|
|
2566 CONSOLE_HAS_METHOD (x, set_icon_name_from_bufbyte);
|
0
|
2567 CONSOLE_HAS_METHOD (x, frame_visible_p);
|
|
2568 CONSOLE_HAS_METHOD (x, frame_totally_visible_p);
|
|
2569 CONSOLE_HAS_METHOD (x, frame_iconified_p);
|
|
2570 CONSOLE_HAS_METHOD (x, set_frame_pointer);
|
|
2571 CONSOLE_HAS_METHOD (x, set_frame_icon);
|
|
2572 CONSOLE_HAS_METHOD (x, get_frame_parent);
|
|
2573 }
|
|
2574
|
|
2575 void
|
|
2576 vars_of_frame_x (void)
|
|
2577 {
|
|
2578 #ifdef EXTERNAL_WIDGET
|
|
2579 Fprovide (intern ("external-widget"));
|
|
2580 #endif
|
|
2581
|
|
2582 /* this call uses only safe functions from emacs.c */
|
|
2583 init_x_prop_symbols ();
|
|
2584
|
|
2585 DEFVAR_LISP ("default-x-frame-plist", &Vdefault_x_frame_plist /*
|
|
2586 Plist of default frame-creation properties for X frames.
|
|
2587 These override what is specified in the resource database and in
|
|
2588 `default-frame-plist', but are overridden by the arguments to the
|
|
2589 particular call to `make-frame'.
|
|
2590
|
|
2591 Note: In many cases, properties of a frame are available as specifiers
|
|
2592 instead of through the frame-properties mechanism.
|
|
2593
|
|
2594 Here is a list of recognized frame properties, other than those
|
|
2595 documented in `set-frame-properties' (they can be queried and
|
|
2596 set at any time, except as otherwise noted):
|
|
2597
|
|
2598 window-id The X window ID corresponding to the
|
|
2599 frame. May be set only at startup, and
|
|
2600 only if external widget support was
|
|
2601 compiled in; doing so causes the frame
|
|
2602 to be created as an \"external widget\"
|
|
2603 in another program that uses an existing
|
|
2604 window in the program rather than creating
|
|
2605 a new one.
|
|
2606 initially-unmapped If non-nil, the frame will not be visible
|
|
2607 when it is created. In this case, you
|
|
2608 need to call `make-frame-visible' to make
|
|
2609 the frame appear.
|
|
2610 popup If non-nil, it should be a frame, and this
|
|
2611 frame will be created as a \"popup\" frame
|
|
2612 whose parent is the given frame. This
|
|
2613 will make the window manager treat the
|
|
2614 frame as a dialog box, which may entail
|
|
2615 doing different things (e.g. not asking
|
|
2616 for positioning, and not iconifying
|
|
2617 separate from its parent).
|
|
2618 inter-line-space Not currently implemented.
|
|
2619 toolbar-shadow-thickness Thickness of toolbar shadows.
|
|
2620 background-toolbar-color Color of toolbar background.
|
|
2621 bottom-toolbar-shadow-color Color of bottom shadows on toolbars.
|
|
2622 (*Not* specific to the bottom-toolbar.)
|
|
2623 top-toolbar-shadow-color Color of top shadows on toolbars.
|
|
2624 (*Not* specifier to the top-toolbar.)
|
|
2625 internal-border-width Width of internal border around text area.
|
|
2626 border-width Width of external border around text area.
|
|
2627 top Y position (in pixels) of the upper-left
|
|
2628 outermost corner of the frame (i.e. the
|
|
2629 upper-left of the window-manager
|
|
2630 decorations).
|
|
2631 left X position (in pixels) of the upper-left
|
|
2632 outermost corner of the frame (i.e. the
|
|
2633 upper-left of the window-manager
|
|
2634 decorations).
|
|
2635 border-color Color of external border around text area.
|
|
2636 cursor-color Color of text cursor.
|
|
2637
|
|
2638 See also `default-frame-plist', which specifies properties which apply
|
|
2639 to all frames, not just X frames.
|
|
2640 */ );
|
|
2641 Vdefault_x_frame_plist = Qnil;
|
|
2642
|
|
2643 x_console_methods->device_specific_frame_props = &Vdefault_x_frame_plist;
|
|
2644 }
|