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