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