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