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