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