(mouse-drag-region-1): When remapping mouse-1 to mouse-2, go back to
[bpt/emacs.git] / src / xfns.c
CommitLineData
01f1ba30 1/* Functions for the X window system.
97f4312d 2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
0b5538bd 3 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
01f1ba30
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
1113d9db 9the Free Software Foundation; either version 2, or (at your option)
01f1ba30
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
01f1ba30 21
c389a86d 22#include <config.h>
333b20bb 23#include <stdio.h>
d62c8769 24#include <math.h>
c389a86d 25
3ecaf7e5
RS
26#ifdef HAVE_UNISTD_H
27#include <unistd.h>
28#endif
29
40e6f148 30/* This makes the fields of a Display accessible, in Xlib header files. */
333b20bb 31
40e6f148
RS
32#define XLIB_ILLEGAL_ACCESS
33
01f1ba30
JB
34#include "lisp.h"
35#include "xterm.h"
f676886a 36#include "frame.h"
01f1ba30
JB
37#include "window.h"
38#include "buffer.h"
58cad5ed 39#include "intervals.h"
01f1ba30 40#include "dispextern.h"
1f98fa48 41#include "keyboard.h"
9ac0d9e0 42#include "blockinput.h"
57bda87a 43#include <epaths.h>
942ea06d 44#include "charset.h"
96db09e4 45#include "coding.h"
942ea06d 46#include "fontset.h"
333b20bb
GM
47#include "systime.h"
48#include "termhooks.h"
4ae9a85e 49#include "atimer.h"
01f1ba30
JB
50
51#ifdef HAVE_X_WINDOWS
67ba84d1 52
67ba84d1 53#include <ctype.h>
63cec32f
GM
54#include <sys/types.h>
55#include <sys/stat.h>
01f1ba30 56
0a93081c 57#ifndef VMS
0505a740 58#if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
ef493a27
RS
59#include "bitmaps/gray.xbm"
60#else
dbc4e1c1 61#include <X11/bitmaps/gray>
ef493a27 62#endif
0a93081c
JB
63#else
64#include "[.bitmaps]gray.xbm"
65#endif
dbc4e1c1 66
488dd4c4
JD
67#ifdef USE_GTK
68#include "gtkutil.h"
69#endif
70
9ef48a9d
RS
71#ifdef USE_X_TOOLKIT
72#include <X11/Shell.h>
73
398ffa92 74#ifndef USE_MOTIF
9ef48a9d
RS
75#include <X11/Xaw/Paned.h>
76#include <X11/Xaw/Label.h>
398ffa92 77#endif /* USE_MOTIF */
9ef48a9d
RS
78
79#ifdef USG
80#undef USG /* ####KLUDGE for Solaris 2.2 and up */
81#include <X11/Xos.h>
82#define USG
83#else
84#include <X11/Xos.h>
85#endif
86
87#include "widget.h"
88
89#include "../lwlib/lwlib.h"
90
333b20bb
GM
91#ifdef USE_MOTIF
92#include <Xm/Xm.h>
93#include <Xm/DialogS.h>
94#include <Xm/FileSB.h>
95#endif
96
3b882b1d
RS
97/* Do the EDITRES protocol if running X11R5
98 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
333b20bb 99
3b882b1d 100#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
6c32dd68 101#define HACK_EDITRES
b9dc4443 102extern void _XEditResCheckMessages ();
6c32dd68
PR
103#endif /* R5 + Athena */
104
333b20bb
GM
105/* Unique id counter for widgets created by the Lucid Widget Library. */
106
6c32dd68
PR
107extern LWLIB_ID widget_id_tick;
108
e3881aa0 109#ifdef USE_LUCID
82c90203 110/* This is part of a kludge--see lwlib/xlwmenu.c. */
03e2c340 111extern XFontStruct *xlwmenu_default_font;
e3881aa0 112#endif
9ef48a9d 113
6bc20398 114extern void free_frame_menubar ();
d62c8769 115extern double atof ();
333b20bb 116
fc2cdd9a
GM
117#ifdef USE_MOTIF
118
119/* LessTif/Motif version info. */
120
121static Lisp_Object Vmotif_version_string;
122
123#endif /* USE_MOTIF */
124
9ef48a9d
RS
125#endif /* USE_X_TOOLKIT */
126
8a16bd4f
LK
127#ifdef USE_GTK
128
129/* GTK+ version info */
130
131static Lisp_Object Vgtk_version_string;
132
133#endif /* USE_GTK */
134
9d317b2c
RS
135#ifdef HAVE_X11R4
136#define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
137#else
138#define MAXREQUEST(dpy) ((dpy)->max_request_size)
139#endif
140
333b20bb
GM
141/* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
142 it, and including `bitmaps/gray' more than once is a problem when
143 config.h defines `static' as an empty replacement string. */
144
145int gray_bitmap_width = gray_width;
146int gray_bitmap_height = gray_height;
62906360 147char *gray_bitmap_bits = gray_bits;
333b20bb 148
0af913d7 149/* Non-zero means we're allowed to display an hourglass cursor. */
333b20bb 150
0af913d7 151int display_hourglass_p;
333b20bb 152
255e4140
JD
153/* Non-zero means prompt with the old GTK file selection dialog. */
154
155int x_use_old_gtk_file_dialog;
156
a8a35720
JD
157/* If non-zero, by default show hidden files in the GTK file chooser. */
158
159int x_gtk_show_hidden_files;
160
01f1ba30 161/* The background and shape of the mouse pointer, and shape when not
b9dc4443 162 over text or in the modeline. */
333b20bb 163
01f1ba30 164Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
0af913d7 165Lisp_Object Vx_hourglass_pointer_shape;
333b20bb 166
ca0ecbf5 167/* The shape when over mouse-sensitive text. */
333b20bb 168
ca0ecbf5 169Lisp_Object Vx_sensitive_text_pointer_shape;
01f1ba30 170
8fb4ec9c
GM
171/* If non-nil, the pointer shape to indicate that windows can be
172 dragged horizontally. */
173
174Lisp_Object Vx_window_horizontal_drag_shape;
175
b9dc4443 176/* Color of chars displayed in cursor box. */
333b20bb 177
01f1ba30
JB
178Lisp_Object Vx_cursor_fore_pixel;
179
b9dc4443 180/* Nonzero if using X. */
333b20bb 181
b9dc4443 182static int x_in_use;
01f1ba30 183
b9dc4443 184/* Non nil if no window manager is in use. */
333b20bb 185
01f1ba30
JB
186Lisp_Object Vx_no_window_manager;
187
942ea06d 188/* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
333b20bb 189
942ea06d
KH
190Lisp_Object Vx_pixel_size_width_font_regexp;
191
baaed68e 192Lisp_Object Qnone;
8af1d7ca 193Lisp_Object Qsuppress_icon;
01f1ba30 194Lisp_Object Qundefined_color;
ae782866 195Lisp_Object Qcompound_text, Qcancel_timer;
01f1ba30 196
7c0d3ed8 197/* In dispnew.c */
f9942c9e 198
01f1ba30
JB
199extern Lisp_Object Vwindow_system_version;
200
7c0d3ed8 201/* The below are defined in frame.c. */
333b20bb 202
f1d2ce7f 203#if GLYPH_DEBUG
eaf1eea9
GM
204int image_cache_refcount, dpyinfo_refcount;
205#endif
206
207
01f1ba30 208\f
11ae94fe 209/* Error if we are not connected to X. */
333b20bb 210
7fc9de26 211void
11ae94fe
RS
212check_x ()
213{
b9dc4443 214 if (! x_in_use)
11ae94fe
RS
215 error ("X windows are not in use or not initialized");
216}
217
1c59f5df
RS
218/* Nonzero if we can use mouse menus.
219 You should not call this unless HAVE_MENUS is defined. */
75cc8ee5
RS
220
221int
1c59f5df 222have_menus_p ()
75cc8ee5 223{
b9dc4443
RS
224 return x_in_use;
225}
226
227/* Extract a frame as a FRAME_PTR, defaulting to the selected frame
228 and checking validity for X. */
229
230FRAME_PTR
231check_x_frame (frame)
232 Lisp_Object frame;
233{
234 FRAME_PTR f;
235
236 if (NILP (frame))
0fe92f72 237 frame = selected_frame;
b7826503 238 CHECK_LIVE_FRAME (frame);
0fe92f72 239 f = XFRAME (frame);
b9dc4443 240 if (! FRAME_X_P (f))
1c59f5df 241 error ("Non-X frame used");
b9dc4443 242 return f;
75cc8ee5
RS
243}
244
b9dc4443
RS
245/* Let the user specify an X display with a frame.
246 nil stands for the selected frame--or, if that is not an X frame,
247 the first X display on the list. */
248
7c0d3ed8 249struct x_display_info *
b9dc4443
RS
250check_x_display_info (frame)
251 Lisp_Object frame;
252{
8ec8a5ec 253 struct x_display_info *dpyinfo = NULL;
177c0ea7 254
b9dc4443
RS
255 if (NILP (frame))
256 {
0fe92f72 257 struct frame *sf = XFRAME (selected_frame);
177c0ea7 258
0fe92f72 259 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
8ec8a5ec 260 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
b9dc4443 261 else if (x_display_list != 0)
8ec8a5ec 262 dpyinfo = x_display_list;
b9dc4443
RS
263 else
264 error ("X windows are not in use or not initialized");
265 }
266 else if (STRINGP (frame))
8ec8a5ec 267 dpyinfo = x_display_info_for_name (frame);
b9dc4443
RS
268 else
269 {
ba4c10fd 270 FRAME_PTR f = check_x_frame (frame);
8ec8a5ec 271 dpyinfo = FRAME_X_DISPLAY_INFO (f);
b9dc4443 272 }
8ec8a5ec
GM
273
274 return dpyinfo;
b9dc4443 275}
333b20bb 276
b9dc4443 277\f
f676886a
JB
278/* Return the Emacs frame-object corresponding to an X window.
279 It could be the frame's main window or an icon window. */
01f1ba30 280
34ca5317 281/* This function can be called during GC, so use GC_xxx type test macros. */
bcb2db92 282
f676886a 283struct frame *
2d271e2e
KH
284x_window_to_frame (dpyinfo, wdesc)
285 struct x_display_info *dpyinfo;
01f1ba30
JB
286 int wdesc;
287{
f676886a
JB
288 Lisp_Object tail, frame;
289 struct frame *f;
01f1ba30 290
10b43ac3
JD
291 if (wdesc == None) return 0;
292
8e713be6 293 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
01f1ba30 294 {
8e713be6 295 frame = XCAR (tail);
34ca5317 296 if (!GC_FRAMEP (frame))
01f1ba30 297 continue;
f676886a 298 f = XFRAME (frame);
2d764c78 299 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
2d271e2e 300 continue;
0af913d7 301 if (f->output_data.x->hourglass_window == wdesc)
17cbbf95 302 return f;
9ef48a9d 303#ifdef USE_X_TOOLKIT
177c0ea7 304 if ((f->output_data.x->edit_widget
7556890b 305 && XtWindow (f->output_data.x->edit_widget) == wdesc)
333b20bb
GM
306 /* A tooltip frame? */
307 || (!f->output_data.x->edit_widget
308 && FRAME_X_WINDOW (f) == wdesc)
7556890b 309 || f->output_data.x->icon_desc == wdesc)
9ef48a9d
RS
310 return f;
311#else /* not USE_X_TOOLKIT */
488dd4c4
JD
312#ifdef USE_GTK
313 if (f->output_data.x->edit_widget)
314 {
810f2256 315 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
488dd4c4
JD
316 struct x_output *x = f->output_data.x;
317 if (gwdesc != 0 && gwdesc == x->edit_widget)
318 return f;
319 }
320#endif /* USE_GTK */
fe24a618 321 if (FRAME_X_WINDOW (f) == wdesc
7556890b 322 || f->output_data.x->icon_desc == wdesc)
f676886a 323 return f;
9ef48a9d
RS
324#endif /* not USE_X_TOOLKIT */
325 }
326 return 0;
327}
328
488dd4c4 329#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
9ef48a9d
RS
330/* Like x_window_to_frame but also compares the window with the widget's
331 windows. */
332
333struct frame *
2d271e2e
KH
334x_any_window_to_frame (dpyinfo, wdesc)
335 struct x_display_info *dpyinfo;
9ef48a9d
RS
336 int wdesc;
337{
338 Lisp_Object tail, frame;
17cbbf95 339 struct frame *f, *found;
7556890b 340 struct x_output *x;
9ef48a9d 341
10b43ac3
JD
342 if (wdesc == None) return NULL;
343
17cbbf95
GM
344 found = NULL;
345 for (tail = Vframe_list; GC_CONSP (tail) && !found; tail = XCDR (tail))
9ef48a9d 346 {
8e713be6 347 frame = XCAR (tail);
34ca5317 348 if (!GC_FRAMEP (frame))
9ef48a9d 349 continue;
177c0ea7 350
9ef48a9d 351 f = XFRAME (frame);
17cbbf95 352 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
333b20bb 353 {
17cbbf95
GM
354 /* This frame matches if the window is any of its widgets. */
355 x = f->output_data.x;
0af913d7 356 if (x->hourglass_window == wdesc)
17cbbf95
GM
357 found = f;
358 else if (x->widget)
359 {
488dd4c4 360#ifdef USE_GTK
810f2256 361 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
488dd4c4
JD
362 if (gwdesc != 0
363 && (gwdesc == x->widget
364 || gwdesc == x->edit_widget
365 || gwdesc == x->vbox_widget
366 || gwdesc == x->menubar_widget))
367 found = f;
368#else
177c0ea7
JB
369 if (wdesc == XtWindow (x->widget)
370 || wdesc == XtWindow (x->column_widget)
17cbbf95
GM
371 || wdesc == XtWindow (x->edit_widget))
372 found = f;
373 /* Match if the window is this frame's menubar. */
374 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
375 found = f;
488dd4c4 376#endif
17cbbf95
GM
377 }
378 else if (FRAME_X_WINDOW (f) == wdesc)
379 /* A tooltip frame. */
380 found = f;
333b20bb 381 }
01f1ba30 382 }
177c0ea7 383
17cbbf95 384 return found;
01f1ba30 385}
5e65b9ab 386
5fbc3f3a
KH
387/* Likewise, but exclude the menu bar widget. */
388
389struct frame *
390x_non_menubar_window_to_frame (dpyinfo, wdesc)
391 struct x_display_info *dpyinfo;
392 int wdesc;
393{
394 Lisp_Object tail, frame;
395 struct frame *f;
7556890b 396 struct x_output *x;
5fbc3f3a 397
10b43ac3
JD
398 if (wdesc == None) return 0;
399
8e713be6 400 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
5fbc3f3a 401 {
8e713be6 402 frame = XCAR (tail);
5fbc3f3a
KH
403 if (!GC_FRAMEP (frame))
404 continue;
405 f = XFRAME (frame);
2d764c78 406 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
5fbc3f3a 407 continue;
7556890b 408 x = f->output_data.x;
5fbc3f3a 409 /* This frame matches if the window is any of its widgets. */
0af913d7 410 if (x->hourglass_window == wdesc)
17cbbf95
GM
411 return f;
412 else if (x->widget)
333b20bb 413 {
488dd4c4 414#ifdef USE_GTK
810f2256 415 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
488dd4c4
JD
416 if (gwdesc != 0
417 && (gwdesc == x->widget
418 || gwdesc == x->edit_widget
419 || gwdesc == x->vbox_widget))
420 return f;
421#else
177c0ea7
JB
422 if (wdesc == XtWindow (x->widget)
423 || wdesc == XtWindow (x->column_widget)
333b20bb
GM
424 || wdesc == XtWindow (x->edit_widget))
425 return f;
488dd4c4 426#endif
333b20bb
GM
427 }
428 else if (FRAME_X_WINDOW (f) == wdesc)
429 /* A tooltip frame. */
5fbc3f3a
KH
430 return f;
431 }
432 return 0;
433}
434
fd3a3022
RS
435/* Likewise, but consider only the menu bar widget. */
436
437struct frame *
438x_menubar_window_to_frame (dpyinfo, wdesc)
439 struct x_display_info *dpyinfo;
440 int wdesc;
441{
442 Lisp_Object tail, frame;
443 struct frame *f;
7556890b 444 struct x_output *x;
fd3a3022 445
10b43ac3
JD
446 if (wdesc == None) return 0;
447
8e713be6 448 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
fd3a3022 449 {
8e713be6 450 frame = XCAR (tail);
fd3a3022
RS
451 if (!GC_FRAMEP (frame))
452 continue;
453 f = XFRAME (frame);
2d764c78 454 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
fd3a3022 455 continue;
7556890b 456 x = f->output_data.x;
fd3a3022 457 /* Match if the window is this frame's menubar. */
488dd4c4
JD
458#ifdef USE_GTK
459 if (x->menubar_widget)
460 {
810f2256 461 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
488dd4c4 462 int found = 0;
177c0ea7 463
488dd4c4
JD
464 BLOCK_INPUT;
465 if (gwdesc != 0
466 && (gwdesc == x->menubar_widget
467 || gtk_widget_get_parent (gwdesc) == x->menubar_widget))
468 found = 1;
469 UNBLOCK_INPUT;
470 if (found) return f;
471 }
472#else
333b20bb
GM
473 if (x->menubar_widget
474 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
fd3a3022 475 return f;
488dd4c4 476#endif
fd3a3022
RS
477 }
478 return 0;
479}
480
5e65b9ab
RS
481/* Return the frame whose principal (outermost) window is WDESC.
482 If WDESC is some other (smaller) window, we return 0. */
483
484struct frame *
2d271e2e
KH
485x_top_window_to_frame (dpyinfo, wdesc)
486 struct x_display_info *dpyinfo;
5e65b9ab
RS
487 int wdesc;
488{
489 Lisp_Object tail, frame;
490 struct frame *f;
7556890b 491 struct x_output *x;
5e65b9ab 492
10b43ac3
JD
493 if (wdesc == None) return 0;
494
8e713be6 495 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
5e65b9ab 496 {
8e713be6 497 frame = XCAR (tail);
34ca5317 498 if (!GC_FRAMEP (frame))
5e65b9ab
RS
499 continue;
500 f = XFRAME (frame);
2d764c78 501 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
2d271e2e 502 continue;
7556890b 503 x = f->output_data.x;
333b20bb
GM
504
505 if (x->widget)
506 {
507 /* This frame matches if the window is its topmost widget. */
488dd4c4 508#ifdef USE_GTK
810f2256 509 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
488dd4c4
JD
510 if (gwdesc == x->widget)
511 return f;
512#else
333b20bb
GM
513 if (wdesc == XtWindow (x->widget))
514 return f;
7a994728
KH
515#if 0 /* I don't know why it did this,
516 but it seems logically wrong,
517 and it causes trouble for MapNotify events. */
333b20bb 518 /* Match if the window is this frame's menubar. */
177c0ea7 519 if (x->menubar_widget
333b20bb
GM
520 && wdesc == XtWindow (x->menubar_widget))
521 return f;
488dd4c4 522#endif
7a994728 523#endif
333b20bb
GM
524 }
525 else if (FRAME_X_WINDOW (f) == wdesc)
526 /* Tooltip frame. */
527 return f;
5e65b9ab
RS
528 }
529 return 0;
530}
488dd4c4 531#endif /* USE_X_TOOLKIT || USE_GTK */
01f1ba30 532
01f1ba30 533\f
203c1d73 534
eaf1eea9
GM
535static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
536static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
7c0d3ed8 537
d62c8769 538void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
ea0a1f53 539static void x_set_wait_for_wm P_ ((struct frame *, Lisp_Object, Lisp_Object));
d62c8769
GM
540void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
541void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
542void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
543void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
544void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
545void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
546void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
d62c8769 547void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
d62c8769 548void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
d62c8769 549void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
9ea173e8 550void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
333b20bb
GM
551void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object,
552 Lisp_Object));
553void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object,
554 Lisp_Object));
555static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *,
556 Lisp_Object,
557 Lisp_Object,
558 char *, char *,
559 int));
01f1ba30 560\f
49d41073 561
08a90d6a 562/* Store the screen positions of frame F into XPTR and YPTR.
e9445337
RS
563 These are the positions of the containing window manager window,
564 not Emacs's own window. */
565
566void
567x_real_positions (f, xptr, yptr)
568 FRAME_PTR f;
569 int *xptr, *yptr;
570{
49d41073
EZ
571 int win_x, win_y, outer_x, outer_y;
572 int real_x = 0, real_y = 0;
573 int had_errors = 0;
574 Window win = f->output_data.x->parent_desc;
e9445337 575
49d41073 576 int count;
043835a3 577
49d41073
EZ
578 BLOCK_INPUT;
579
580 count = x_catch_errors (FRAME_X_DISPLAY (f));
043835a3 581
49d41073
EZ
582 if (win == FRAME_X_DISPLAY_INFO (f)->root_window)
583 win = FRAME_OUTER_WINDOW (f);
584
585 /* This loop traverses up the containment tree until we hit the root
586 window. Window managers may intersect many windows between our window
587 and the root window. The window we find just before the root window
588 should be the outer WM window. */
589 for (;;)
e9445337 590 {
49d41073
EZ
591 Window wm_window, rootw;
592 Window *tmp_children;
593 unsigned int tmp_nchildren;
e7161ad9 594 int success;
ca7bac79 595
e7161ad9
RS
596 success = XQueryTree (FRAME_X_DISPLAY (f), win, &rootw,
597 &wm_window, &tmp_children, &tmp_nchildren);
08a90d6a 598
49d41073 599 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
08a90d6a 600
e7161ad9
RS
601 /* Don't free tmp_children if XQueryTree failed. */
602 if (! success)
603 break;
604
605 XFree ((char *) tmp_children);
606
49d41073
EZ
607 if (wm_window == rootw || had_errors)
608 break;
08a90d6a 609
49d41073
EZ
610 win = wm_window;
611 }
177c0ea7 612
49d41073
EZ
613 if (! had_errors)
614 {
47c53789 615 unsigned int ign;
49d41073 616 Window child, rootw;
177c0ea7 617
49d41073
EZ
618 /* Get the real coordinates for the WM window upper left corner */
619 XGetGeometry (FRAME_X_DISPLAY (f), win,
620 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
621
622 /* Translate real coordinates to coordinates relative to our
623 window. For our window, the upper left corner is 0, 0.
624 Since the upper left corner of the WM window is outside
625 our window, win_x and win_y will be negative:
626
627 ------------------ ---> x
628 | title |
629 | ----------------- v y
630 | | our window
631 */
8a07bba0 632 XTranslateCoordinates (FRAME_X_DISPLAY (f),
e9445337 633
8a07bba0 634 /* From-window, to-window. */
8a07bba0 635 FRAME_X_DISPLAY_INFO (f)->root_window,
49d41073 636 FRAME_X_WINDOW (f),
e9445337 637
8a07bba0 638 /* From-position, to-position. */
49d41073 639 real_x, real_y, &win_x, &win_y,
08a90d6a 640
8a07bba0
RS
641 /* Child of win. */
642 &child);
e9445337 643
49d41073 644 if (FRAME_X_WINDOW (f) == FRAME_OUTER_WINDOW (f))
845e9d85 645 {
49d41073
EZ
646 outer_x = win_x;
647 outer_y = win_y;
845e9d85 648 }
49d41073
EZ
649 else
650 {
651 XTranslateCoordinates (FRAME_X_DISPLAY (f),
ca7bac79 652
49d41073
EZ
653 /* From-window, to-window. */
654 FRAME_X_DISPLAY_INFO (f)->root_window,
655 FRAME_OUTER_WINDOW (f),
177c0ea7 656
49d41073
EZ
657 /* From-position, to-position. */
658 real_x, real_y, &outer_x, &outer_y,
177c0ea7 659
49d41073
EZ
660 /* Child of win. */
661 &child);
be786000 662 }
08a90d6a 663
49d41073
EZ
664 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
665 }
177c0ea7 666
49d41073 667 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
177c0ea7 668
49d41073
EZ
669 UNBLOCK_INPUT;
670
671 if (had_errors) return;
177c0ea7 672
be786000
KS
673 f->x_pixels_diff = -win_x;
674 f->y_pixels_diff = -win_y;
675
676 FRAME_X_OUTPUT (f)->x_pixels_outer_diff = -outer_x;
677 FRAME_X_OUTPUT (f)->y_pixels_outer_diff = -outer_y;
49d41073
EZ
678
679 *xptr = real_x;
680 *yptr = real_y;
e9445337
RS
681}
682
01f1ba30 683\f
82978295 684
d62c8769
GM
685
686/* Gamma-correct COLOR on frame F. */
687
688void
689gamma_correct (f, color)
690 struct frame *f;
691 XColor *color;
692{
693 if (f->gamma)
694 {
695 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
696 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
697 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
698 }
699}
700
701
7b746c38
GM
702/* Decide if color named COLOR_NAME is valid for use on frame F. If
703 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
704 allocate the color. Value is zero if COLOR_NAME is invalid, or
705 no color could be allocated. */
e12d55b2 706
01f1ba30 707int
7b746c38
GM
708x_defined_color (f, color_name, color, alloc_p)
709 struct frame *f;
710 char *color_name;
711 XColor *color;
712 int alloc_p;
01f1ba30 713{
7b746c38
GM
714 int success_p;
715 Display *dpy = FRAME_X_DISPLAY (f);
716 Colormap cmap = FRAME_X_COLORMAP (f);
01f1ba30
JB
717
718 BLOCK_INPUT;
7b746c38
GM
719 success_p = XParseColor (dpy, cmap, color_name, color);
720 if (success_p && alloc_p)
721 success_p = x_alloc_nearest_color (f, cmap, color);
01f1ba30
JB
722 UNBLOCK_INPUT;
723
7b746c38 724 return success_p;
01f1ba30
JB
725}
726
9b2956e2
GM
727
728/* Return the pixel color value for color COLOR_NAME on frame F. If F
729 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
730 Signal an error if color can't be allocated. */
01f1ba30
JB
731
732int
9b2956e2 733x_decode_color (f, color_name, mono_color)
b9dc4443 734 FRAME_PTR f;
9b2956e2
GM
735 Lisp_Object color_name;
736 int mono_color;
01f1ba30 737{
b9dc4443 738 XColor cdef;
01f1ba30 739
b7826503 740 CHECK_STRING (color_name);
01f1ba30 741
9b2956e2
GM
742#if 0 /* Don't do this. It's wrong when we're not using the default
743 colormap, it makes freeing difficult, and it's probably not
744 an important optimization. */
d5db4077 745 if (strcmp (SDATA (color_name), "black") == 0)
b9dc4443 746 return BLACK_PIX_DEFAULT (f);
d5db4077 747 else if (strcmp (SDATA (color_name), "white") == 0)
b9dc4443 748 return WHITE_PIX_DEFAULT (f);
9b2956e2 749#endif
01f1ba30 750
9b2956e2 751 /* Return MONO_COLOR for monochrome frames. */
b9dc4443 752 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
9b2956e2 753 return mono_color;
01f1ba30 754
2d764c78 755 /* x_defined_color is responsible for coping with failures
95626e11 756 by looking for a near-miss. */
d5db4077 757 if (x_defined_color (f, SDATA (color_name), &cdef, 1))
95626e11
RS
758 return cdef.pixel;
759
c301be26
GM
760 Fsignal (Qerror, Fcons (build_string ("Undefined color"),
761 Fcons (color_name, Qnil)));
762 return 0;
01f1ba30 763}
9b2956e2
GM
764
765
01f1ba30 766\f
ea0a1f53
GM
767/* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
768 the previous value of that parameter, NEW_VALUE is the new value.
769 See also the comment of wait_for_wm in struct x_output. */
770
771static void
772x_set_wait_for_wm (f, new_value, old_value)
773 struct frame *f;
774 Lisp_Object new_value, old_value;
775{
776 f->output_data.x->wait_for_wm = !NILP (new_value);
777}
778
993d0721
JB
779#ifdef USE_GTK
780
465aa50a
JD
781/* Set icon from FILE for frame F. By using GTK functions the icon
782 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
993d0721
JB
783
784int
810f2256 785xg_set_icon (f, file)
465aa50a 786 FRAME_PTR f;
993d0721
JB
787 Lisp_Object file;
788{
465aa50a
JD
789 struct gcpro gcpro1;
790 int result = 0;
791 Lisp_Object found;
993d0721 792
465aa50a 793 GCPRO1 (found);
993d0721 794
465aa50a
JD
795 found = x_find_image_file (file);
796
797 if (! NILP (found))
798 {
799 GdkPixbuf *pixbuf;
800 GError *err = NULL;
47c53789 801 char *filename = (char *) SDATA (found);
465aa50a
JD
802 BLOCK_INPUT;
803
804 pixbuf = gdk_pixbuf_new_from_file (filename, &err);
805
806 if (pixbuf)
807 {
808 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
809 pixbuf);
810 g_object_unref (pixbuf);
811
812 result = 1;
813 }
814 else
815 g_error_free (err);
816
817 UNBLOCK_INPUT;
818 }
819
820 UNGCPRO;
821 return result;
993d0721 822}
9f7b984b
CY
823
824int
825xg_set_icon_from_xpm_data (f, data)
826 FRAME_PTR f;
827 char **data;
828{
829 int result = 0;
47c53789 830 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_xpm_data ((const char **) data);
9f7b984b
CY
831
832 if (!pixbuf)
47c53789 833 return 0;
9f7b984b 834
47c53789 835 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), pixbuf);
9f7b984b
CY
836 g_object_unref (pixbuf);
837 return 1;
838}
993d0721
JB
839#endif /* USE_GTK */
840
ea0a1f53 841
f676886a 842/* Functions called only from `x_set_frame_param'
01f1ba30
JB
843 to set individual parameters.
844
fe24a618 845 If FRAME_X_WINDOW (f) is 0,
f676886a 846 the frame is being created and its X-window does not exist yet.
01f1ba30
JB
847 In that case, just record the parameter's new value
848 in the standard place; do not attempt to change the window. */
849
850void
f676886a
JB
851x_set_foreground_color (f, arg, oldval)
852 struct frame *f;
01f1ba30
JB
853 Lisp_Object arg, oldval;
854{
09393d07
GM
855 struct x_output *x = f->output_data.x;
856 unsigned long fg, old_fg;
a76206dc 857
09393d07
GM
858 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
859 old_fg = x->foreground_pixel;
860 x->foreground_pixel = fg;
a76206dc 861
fe24a618 862 if (FRAME_X_WINDOW (f) != 0)
01f1ba30 863 {
09393d07 864 Display *dpy = FRAME_X_DISPLAY (f);
177c0ea7 865
09393d07
GM
866 BLOCK_INPUT;
867 XSetForeground (dpy, x->normal_gc, fg);
868 XSetBackground (dpy, x->reverse_gc, fg);
36d42089 869
09393d07
GM
870 if (x->cursor_pixel == old_fg)
871 {
872 unload_color (f, x->cursor_pixel);
873 x->cursor_pixel = x_copy_color (f, fg);
874 XSetBackground (dpy, x->cursor_gc, x->cursor_pixel);
875 }
177c0ea7 876
01f1ba30 877 UNBLOCK_INPUT;
177c0ea7 878
05c8abbe 879 update_face_from_frame_parameter (f, Qforeground_color, arg);
177c0ea7 880
179956b9 881 if (FRAME_VISIBLE_P (f))
f676886a 882 redraw_frame (f);
01f1ba30 883 }
177c0ea7 884
09393d07 885 unload_color (f, old_fg);
01f1ba30
JB
886}
887
888void
f676886a
JB
889x_set_background_color (f, arg, oldval)
890 struct frame *f;
01f1ba30
JB
891 Lisp_Object arg, oldval;
892{
09393d07
GM
893 struct x_output *x = f->output_data.x;
894 unsigned long bg;
01f1ba30 895
09393d07
GM
896 bg = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
897 unload_color (f, x->background_pixel);
898 x->background_pixel = bg;
a76206dc 899
fe24a618 900 if (FRAME_X_WINDOW (f) != 0)
01f1ba30 901 {
09393d07 902 Display *dpy = FRAME_X_DISPLAY (f);
177c0ea7 903
09393d07
GM
904 BLOCK_INPUT;
905 XSetBackground (dpy, x->normal_gc, bg);
906 XSetForeground (dpy, x->reverse_gc, bg);
907 XSetWindowBackground (dpy, FRAME_X_WINDOW (f), bg);
908 XSetForeground (dpy, x->cursor_gc, bg);
909
488dd4c4
JD
910#ifdef USE_GTK
911 xg_set_background_color (f, bg);
912#endif
913
f76e0368
GM
914#ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
915 toolkit scroll bars. */
916 {
917 Lisp_Object bar;
918 for (bar = FRAME_SCROLL_BARS (f);
919 !NILP (bar);
920 bar = XSCROLL_BAR (bar)->next)
921 {
922 Window window = SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar));
923 XSetWindowBackground (dpy, window, bg);
924 }
925 }
926#endif /* USE_TOOLKIT_SCROLL_BARS */
01f1ba30 927
09393d07 928 UNBLOCK_INPUT;
05c8abbe 929 update_face_from_frame_parameter (f, Qbackground_color, arg);
ea96210c 930
179956b9 931 if (FRAME_VISIBLE_P (f))
f676886a 932 redraw_frame (f);
01f1ba30
JB
933 }
934}
935
936void
f676886a
JB
937x_set_mouse_color (f, arg, oldval)
938 struct frame *f;
01f1ba30
JB
939 Lisp_Object arg, oldval;
940{
09393d07
GM
941 struct x_output *x = f->output_data.x;
942 Display *dpy = FRAME_X_DISPLAY (f);
3d970f28 943 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
0af913d7 944 Cursor hourglass_cursor, horizontal_drag_cursor;
1dc6cfa6 945 int count;
51a1d2d8 946 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
09393d07 947 unsigned long mask_color = x->background_pixel;
a76206dc 948
51a1d2d8 949 /* Don't let pointers be invisible. */
09393d07 950 if (mask_color == pixel)
bcf26b38
GM
951 {
952 x_free_colors (f, &pixel, 1);
09393d07 953 pixel = x_copy_color (f, x->foreground_pixel);
bcf26b38 954 }
a76206dc 955
09393d07
GM
956 unload_color (f, x->mouse_pixel);
957 x->mouse_pixel = pixel;
01f1ba30
JB
958
959 BLOCK_INPUT;
fe24a618 960
eb8c3be9 961 /* It's not okay to crash if the user selects a screwy cursor. */
09393d07 962 count = x_catch_errors (dpy);
fe24a618 963
09393d07 964 if (!NILP (Vx_pointer_shape))
01f1ba30 965 {
b7826503 966 CHECK_NUMBER (Vx_pointer_shape);
09393d07 967 cursor = XCreateFontCursor (dpy, XINT (Vx_pointer_shape));
01f1ba30
JB
968 }
969 else
09393d07
GM
970 cursor = XCreateFontCursor (dpy, XC_xterm);
971 x_check_errors (dpy, "bad text pointer cursor: %s");
01f1ba30 972
09393d07 973 if (!NILP (Vx_nontext_pointer_shape))
01f1ba30 974 {
b7826503 975 CHECK_NUMBER (Vx_nontext_pointer_shape);
09393d07
GM
976 nontext_cursor
977 = XCreateFontCursor (dpy, XINT (Vx_nontext_pointer_shape));
01f1ba30
JB
978 }
979 else
09393d07
GM
980 nontext_cursor = XCreateFontCursor (dpy, XC_left_ptr);
981 x_check_errors (dpy, "bad nontext pointer cursor: %s");
01f1ba30 982
09393d07 983 if (!NILP (Vx_hourglass_pointer_shape))
333b20bb 984 {
b7826503 985 CHECK_NUMBER (Vx_hourglass_pointer_shape);
09393d07
GM
986 hourglass_cursor
987 = XCreateFontCursor (dpy, XINT (Vx_hourglass_pointer_shape));
333b20bb
GM
988 }
989 else
09393d07
GM
990 hourglass_cursor = XCreateFontCursor (dpy, XC_watch);
991 x_check_errors (dpy, "bad hourglass pointer cursor: %s");
177c0ea7 992
09393d07 993 if (!NILP (Vx_mode_pointer_shape))
01f1ba30 994 {
b7826503 995 CHECK_NUMBER (Vx_mode_pointer_shape);
09393d07 996 mode_cursor = XCreateFontCursor (dpy, XINT (Vx_mode_pointer_shape));
01f1ba30
JB
997 }
998 else
09393d07
GM
999 mode_cursor = XCreateFontCursor (dpy, XC_xterm);
1000 x_check_errors (dpy, "bad modeline pointer cursor: %s");
95f80c78 1001
09393d07 1002 if (!NILP (Vx_sensitive_text_pointer_shape))
95f80c78 1003 {
b7826503 1004 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
3d970f28 1005 hand_cursor
09393d07 1006 = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape));
95f80c78
FP
1007 }
1008 else
3d970f28 1009 hand_cursor = XCreateFontCursor (dpy, XC_hand2);
01f1ba30 1010
8fb4ec9c
GM
1011 if (!NILP (Vx_window_horizontal_drag_shape))
1012 {
b7826503 1013 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
8fb4ec9c 1014 horizontal_drag_cursor
09393d07 1015 = XCreateFontCursor (dpy, XINT (Vx_window_horizontal_drag_shape));
8fb4ec9c
GM
1016 }
1017 else
1018 horizontal_drag_cursor
09393d07 1019 = XCreateFontCursor (dpy, XC_sb_h_double_arrow);
8fb4ec9c 1020
fe24a618 1021 /* Check and report errors with the above calls. */
09393d07
GM
1022 x_check_errors (dpy, "can't set cursor shape: %s");
1023 x_uncatch_errors (dpy, count);
fe24a618 1024
01f1ba30
JB
1025 {
1026 XColor fore_color, back_color;
1027
09393d07 1028 fore_color.pixel = x->mouse_pixel;
a31fedb7 1029 x_query_color (f, &fore_color);
01f1ba30 1030 back_color.pixel = mask_color;
a31fedb7 1031 x_query_color (f, &back_color);
177c0ea7 1032
09393d07
GM
1033 XRecolorCursor (dpy, cursor, &fore_color, &back_color);
1034 XRecolorCursor (dpy, nontext_cursor, &fore_color, &back_color);
1035 XRecolorCursor (dpy, mode_cursor, &fore_color, &back_color);
3d970f28 1036 XRecolorCursor (dpy, hand_cursor, &fore_color, &back_color);
09393d07
GM
1037 XRecolorCursor (dpy, hourglass_cursor, &fore_color, &back_color);
1038 XRecolorCursor (dpy, horizontal_drag_cursor, &fore_color, &back_color);
01f1ba30 1039 }
01f1ba30 1040
fe24a618 1041 if (FRAME_X_WINDOW (f) != 0)
09393d07
GM
1042 XDefineCursor (dpy, FRAME_X_WINDOW (f), cursor);
1043
1044 if (cursor != x->text_cursor
1045 && x->text_cursor != 0)
1046 XFreeCursor (dpy, x->text_cursor);
1047 x->text_cursor = cursor;
1048
1049 if (nontext_cursor != x->nontext_cursor
1050 && x->nontext_cursor != 0)
1051 XFreeCursor (dpy, x->nontext_cursor);
1052 x->nontext_cursor = nontext_cursor;
1053
1054 if (hourglass_cursor != x->hourglass_cursor
1055 && x->hourglass_cursor != 0)
1056 XFreeCursor (dpy, x->hourglass_cursor);
1057 x->hourglass_cursor = hourglass_cursor;
1058
1059 if (mode_cursor != x->modeline_cursor
1060 && x->modeline_cursor != 0)
1061 XFreeCursor (dpy, f->output_data.x->modeline_cursor);
1062 x->modeline_cursor = mode_cursor;
177c0ea7 1063
3d970f28
KS
1064 if (hand_cursor != x->hand_cursor
1065 && x->hand_cursor != 0)
1066 XFreeCursor (dpy, x->hand_cursor);
1067 x->hand_cursor = hand_cursor;
01f1ba30 1068
09393d07
GM
1069 if (horizontal_drag_cursor != x->horizontal_drag_cursor
1070 && x->horizontal_drag_cursor != 0)
1071 XFreeCursor (dpy, x->horizontal_drag_cursor);
1072 x->horizontal_drag_cursor = horizontal_drag_cursor;
8fb4ec9c 1073
09393d07 1074 XFlush (dpy);
01f1ba30 1075 UNBLOCK_INPUT;
05c8abbe
GM
1076
1077 update_face_from_frame_parameter (f, Qmouse_color, arg);
01f1ba30
JB
1078}
1079
1080void
f676886a
JB
1081x_set_cursor_color (f, arg, oldval)
1082 struct frame *f;
01f1ba30
JB
1083 Lisp_Object arg, oldval;
1084{
a76206dc 1085 unsigned long fore_pixel, pixel;
10168ebb 1086 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
09393d07 1087 struct x_output *x = f->output_data.x;
01f1ba30 1088
10168ebb
GM
1089 if (!NILP (Vx_cursor_fore_pixel))
1090 {
1091 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1092 WHITE_PIX_DEFAULT (f));
1093 fore_pixel_allocated_p = 1;
1094 }
01f1ba30 1095 else
09393d07 1096 fore_pixel = x->background_pixel;
177c0ea7 1097
a76206dc 1098 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
10168ebb 1099 pixel_allocated_p = 1;
a76206dc 1100
f9942c9e 1101 /* Make sure that the cursor color differs from the background color. */
09393d07 1102 if (pixel == x->background_pixel)
01f1ba30 1103 {
10168ebb
GM
1104 if (pixel_allocated_p)
1105 {
1106 x_free_colors (f, &pixel, 1);
1107 pixel_allocated_p = 0;
1108 }
177c0ea7 1109
09393d07 1110 pixel = x->mouse_pixel;
a76206dc 1111 if (pixel == fore_pixel)
10168ebb
GM
1112 {
1113 if (fore_pixel_allocated_p)
1114 {
1115 x_free_colors (f, &fore_pixel, 1);
1116 fore_pixel_allocated_p = 0;
1117 }
09393d07 1118 fore_pixel = x->background_pixel;
10168ebb 1119 }
01f1ba30 1120 }
a76206dc 1121
09393d07 1122 unload_color (f, x->cursor_foreground_pixel);
10168ebb
GM
1123 if (!fore_pixel_allocated_p)
1124 fore_pixel = x_copy_color (f, fore_pixel);
09393d07 1125 x->cursor_foreground_pixel = fore_pixel;
01f1ba30 1126
09393d07 1127 unload_color (f, x->cursor_pixel);
10168ebb
GM
1128 if (!pixel_allocated_p)
1129 pixel = x_copy_color (f, pixel);
09393d07 1130 x->cursor_pixel = pixel;
a76206dc 1131
fe24a618 1132 if (FRAME_X_WINDOW (f) != 0)
01f1ba30 1133 {
01f1ba30 1134 BLOCK_INPUT;
09393d07
GM
1135 XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel);
1136 XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel);
01f1ba30 1137 UNBLOCK_INPUT;
01f1ba30 1138
179956b9 1139 if (FRAME_VISIBLE_P (f))
01f1ba30 1140 {
cedadcfa
RS
1141 x_update_cursor (f, 0);
1142 x_update_cursor (f, 1);
01f1ba30
JB
1143 }
1144 }
05c8abbe
GM
1145
1146 update_face_from_frame_parameter (f, Qcursor_color, arg);
01f1ba30 1147}
943b580d 1148\f
f676886a 1149/* Set the border-color of frame F to pixel value PIX.
01f1ba30 1150 Note that this does not fully take effect if done before
f676886a 1151 F has an x-window. */
01f1ba30 1152
968b1234 1153void
f676886a
JB
1154x_set_border_pixel (f, pix)
1155 struct frame *f;
01f1ba30
JB
1156 int pix;
1157{
a76206dc 1158 unload_color (f, f->output_data.x->border_pixel);
7556890b 1159 f->output_data.x->border_pixel = pix;
01f1ba30 1160
be786000 1161 if (FRAME_X_WINDOW (f) != 0 && f->border_width > 0)
01f1ba30 1162 {
01f1ba30 1163 BLOCK_INPUT;
b9dc4443 1164 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
270958e8 1165 (unsigned long)pix);
01f1ba30
JB
1166 UNBLOCK_INPUT;
1167
179956b9 1168 if (FRAME_VISIBLE_P (f))
f676886a 1169 redraw_frame (f);
01f1ba30
JB
1170 }
1171}
1172
7c0d3ed8
KS
1173/* Set the border-color of frame F to value described by ARG.
1174 ARG can be a string naming a color.
1175 The border-color is used for the border that is drawn by the X server.
1176 Note that this does not fully take effect if done before
1177 F has an x-window; it must be redone when the window is created.
1178
1179 Note: this is done in two routines because of the way X10 works.
1180
1181 Note: under X11, this is normally the province of the window manager,
1182 and so emacs' border colors may be overridden. */
1183
1184void
1185x_set_border_color (f, arg, oldval)
1186 struct frame *f;
1187 Lisp_Object arg, oldval;
1188{
1189 int pix;
1190
1191 CHECK_STRING (arg);
1192 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1193 x_set_border_pixel (f, pix);
1194 update_face_from_frame_parameter (f, Qborder_color, arg);
1195}
0d1469d6 1196
0d1469d6
GM
1197
1198void
1199x_set_cursor_type (f, arg, oldval)
1200 FRAME_PTR f;
1201 Lisp_Object arg, oldval;
1202{
33b2311e 1203 set_frame_cursor_types (f, arg);
dbc4e1c1 1204
75691005
RS
1205 /* Make sure the cursor gets redrawn. */
1206 cursor_type_changed = 1;
dbc4e1c1 1207}
943b580d 1208\f
01f1ba30 1209void
f676886a
JB
1210x_set_icon_type (f, arg, oldval)
1211 struct frame *f;
01f1ba30
JB
1212 Lisp_Object arg, oldval;
1213{
01f1ba30
JB
1214 int result;
1215
203c1d73
RS
1216 if (STRINGP (arg))
1217 {
1218 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1219 return;
1220 }
1221 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
01f1ba30
JB
1222 return;
1223
1224 BLOCK_INPUT;
265a9e55 1225 if (NILP (arg))
80534dd6 1226 result = x_text_icon (f,
d5db4077 1227 (char *) SDATA ((!NILP (f->icon_name)
f468da95 1228 ? f->icon_name
d5db4077 1229 : f->name)));
f1c7b5a6
RS
1230 else
1231 result = x_bitmap_icon (f, arg);
01f1ba30
JB
1232
1233 if (result)
1234 {
01f1ba30 1235 UNBLOCK_INPUT;
0fb53770 1236 error ("No icon window available");
01f1ba30
JB
1237 }
1238
b9dc4443 1239 XFlush (FRAME_X_DISPLAY (f));
01f1ba30
JB
1240 UNBLOCK_INPUT;
1241}
1242
80534dd6
KH
1243void
1244x_set_icon_name (f, arg, oldval)
1245 struct frame *f;
1246 Lisp_Object arg, oldval;
1247{
80534dd6
KH
1248 int result;
1249
1250 if (STRINGP (arg))
1251 {
1252 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1253 return;
1254 }
1255 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1256 return;
1257
f468da95 1258 f->icon_name = arg;
80534dd6 1259
7556890b 1260 if (f->output_data.x->icon_bitmap != 0)
80534dd6
KH
1261 return;
1262
1263 BLOCK_INPUT;
1264
1265 result = x_text_icon (f,
d5db4077
KR
1266 (char *) SDATA ((!NILP (f->icon_name)
1267 ? f->icon_name
1268 : !NILP (f->title)
1269 ? f->title
1270 : f->name)));
80534dd6
KH
1271
1272 if (result)
1273 {
1274 UNBLOCK_INPUT;
1275 error ("No icon window available");
1276 }
1277
80534dd6
KH
1278 XFlush (FRAME_X_DISPLAY (f));
1279 UNBLOCK_INPUT;
1280}
7c0d3ed8 1281
943b580d 1282\f
01f1ba30 1283void
7c0d3ed8 1284x_set_menu_bar_lines (f, value, oldval)
f676886a 1285 struct frame *f;
7c0d3ed8 1286 Lisp_Object value, oldval;
01f1ba30 1287{
7c0d3ed8 1288 int nlines;
121e8a82 1289#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
7c0d3ed8
KS
1290 int olines = FRAME_MENU_BAR_LINES (f);
1291#endif
177c0ea7 1292
7c0d3ed8
KS
1293 /* Right now, menu bars don't work properly in minibuf-only frames;
1294 most of the commands try to apply themselves to the minibuffer
1295 frame itself, and get an error because you can't switch buffers
1296 in or split the minibuffer window. */
1297 if (FRAME_MINIBUF_ONLY_P (f))
1298 return;
177c0ea7 1299
7c0d3ed8
KS
1300 if (INTEGERP (value))
1301 nlines = XINT (value);
ea96210c 1302 else
7c0d3ed8 1303 nlines = 0;
a367641f 1304
7c0d3ed8
KS
1305 /* Make sure we redisplay all windows in this frame. */
1306 windows_or_buffers_changed++;
3d09b6be 1307
488dd4c4 1308#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
9ef48a9d
RS
1309 FRAME_MENU_BAR_LINES (f) = 0;
1310 if (nlines)
0d8ef3f4
RS
1311 {
1312 FRAME_EXTERNAL_MENU_BAR (f) = 1;
97a1ff91 1313 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
0d8ef3f4
RS
1314 /* Make sure next redisplay shows the menu bar. */
1315 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1316 }
9ef48a9d
RS
1317 else
1318 {
6bc20398
FP
1319 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1320 free_frame_menubar (f);
9ef48a9d 1321 FRAME_EXTERNAL_MENU_BAR (f) = 0;
97a1ff91
RS
1322 if (FRAME_X_P (f))
1323 f->output_data.x->menubar_widget = 0;
9ef48a9d 1324 }
488dd4c4 1325#else /* not USE_X_TOOLKIT && not USE_GTK */
d043f1a4 1326 FRAME_MENU_BAR_LINES (f) = nlines;
7c0d3ed8 1327 change_window_heights (f->root_window, nlines - olines);
9ef48a9d 1328#endif /* not USE_X_TOOLKIT */
333b20bb
GM
1329 adjust_glyphs (f);
1330}
1331
1332
1333/* Set the number of lines used for the tool bar of frame F to VALUE.
1334 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1335 is the old number of tool bar lines. This function changes the
1336 height of all windows on frame F to match the new tool bar height.
1337 The frame's height doesn't change. */
1338
1339void
9ea173e8 1340x_set_tool_bar_lines (f, value, oldval)
333b20bb
GM
1341 struct frame *f;
1342 Lisp_Object value, oldval;
1343{
52de7ce9
GM
1344 int delta, nlines, root_height;
1345 Lisp_Object root_window;
333b20bb 1346
e870b7ba
GM
1347 /* Treat tool bars like menu bars. */
1348 if (FRAME_MINIBUF_ONLY_P (f))
1349 return;
1350
333b20bb
GM
1351 /* Use VALUE only if an integer >= 0. */
1352 if (INTEGERP (value) && XINT (value) >= 0)
1353 nlines = XFASTINT (value);
1354 else
1355 nlines = 0;
1356
488dd4c4
JD
1357#ifdef USE_GTK
1358 FRAME_TOOL_BAR_LINES (f) = 0;
1359 if (nlines)
1360 {
1361 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
1362 if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
1363 /* Make sure next redisplay shows the tool bar. */
1364 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1365 update_frame_tool_bar (f);
1366 }
1367 else
1368 {
1369 if (FRAME_EXTERNAL_TOOL_BAR (f))
1370 free_frame_tool_bar (f);
1371 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
1372 }
1373
1374 return;
1375#endif
177c0ea7 1376
488dd4c4 1377 /* Make sure we redisplay all windows in this frame. */
333b20bb
GM
1378 ++windows_or_buffers_changed;
1379
9ea173e8 1380 delta = nlines - FRAME_TOOL_BAR_LINES (f);
52de7ce9
GM
1381
1382 /* Don't resize the tool-bar to more than we have room for. */
1383 root_window = FRAME_ROOT_WINDOW (f);
be786000 1384 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
52de7ce9
GM
1385 if (root_height - delta < 1)
1386 {
1387 delta = root_height - 1;
1388 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1389 }
1390
9ea173e8 1391 FRAME_TOOL_BAR_LINES (f) = nlines;
7c0d3ed8 1392 change_window_heights (root_window, delta);
333b20bb 1393 adjust_glyphs (f);
177c0ea7 1394
ccba751c
GM
1395 /* We also have to make sure that the internal border at the top of
1396 the frame, below the menu bar or tool bar, is redrawn when the
1397 tool bar disappears. This is so because the internal border is
1398 below the tool bar if one is displayed, but is below the menu bar
1399 if there isn't a tool bar. The tool bar draws into the area
1400 below the menu bar. */
1401 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1402 {
1403 updating_frame = f;
1404 clear_frame ();
fb3cd89b 1405 clear_current_matrices (f);
ccba751c
GM
1406 updating_frame = NULL;
1407 }
b6f91066
GM
1408
1409 /* If the tool bar gets smaller, the internal border below it
1410 has to be cleared. It was formerly part of the display
1411 of the larger tool bar, and updating windows won't clear it. */
1412 if (delta < 0)
1413 {
1414 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
be786000
KS
1415 int width = FRAME_PIXEL_WIDTH (f);
1416 int y = nlines * FRAME_LINE_HEIGHT (f);
b6f91066 1417
caacfeb8
JD
1418 /* height can be zero here. */
1419 if (height > 0 && width > 0)
1420 {
1421 BLOCK_INPUT;
1422 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1423 0, y, width, height, False);
1424 UNBLOCK_INPUT;
1425 }
ddc24747
GM
1426
1427 if (WINDOWP (f->tool_bar_window))
1428 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
b6f91066 1429 }
333b20bb
GM
1430}
1431
1432
1433/* Set the foreground color for scroll bars on frame F to VALUE.
1434 VALUE should be a string, a color name. If it isn't a string or
1435 isn't a valid color name, do nothing. OLDVAL is the old value of
1436 the frame parameter. */
1437
1438void
1439x_set_scroll_bar_foreground (f, value, oldval)
1440 struct frame *f;
1441 Lisp_Object value, oldval;
1442{
1443 unsigned long pixel;
177c0ea7 1444
333b20bb
GM
1445 if (STRINGP (value))
1446 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
1447 else
1448 pixel = -1;
1449
1450 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
1451 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
177c0ea7 1452
333b20bb
GM
1453 f->output_data.x->scroll_bar_foreground_pixel = pixel;
1454 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1455 {
1456 /* Remove all scroll bars because they have wrong colors. */
1457 if (condemn_scroll_bars_hook)
1458 (*condemn_scroll_bars_hook) (f);
1459 if (judge_scroll_bars_hook)
1460 (*judge_scroll_bars_hook) (f);
05c8abbe
GM
1461
1462 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
333b20bb
GM
1463 redraw_frame (f);
1464 }
1465}
1466
1467
1468/* Set the background color for scroll bars on frame F to VALUE VALUE
1469 should be a string, a color name. If it isn't a string or isn't a
1470 valid color name, do nothing. OLDVAL is the old value of the frame
1471 parameter. */
1472
1473void
1474x_set_scroll_bar_background (f, value, oldval)
1475 struct frame *f;
1476 Lisp_Object value, oldval;
1477{
1478 unsigned long pixel;
1479
1480 if (STRINGP (value))
1481 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
1482 else
1483 pixel = -1;
177c0ea7 1484
333b20bb
GM
1485 if (f->output_data.x->scroll_bar_background_pixel != -1)
1486 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
177c0ea7 1487
f15340b7
MB
1488#ifdef USE_TOOLKIT_SCROLL_BARS
1489 /* Scrollbar shadow colors. */
1490 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
1491 {
1492 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
1493 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
1494 }
1495 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
1496 {
1497 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
1498 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
1499 }
1500#endif /* USE_TOOLKIT_SCROLL_BARS */
1501
333b20bb
GM
1502 f->output_data.x->scroll_bar_background_pixel = pixel;
1503 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1504 {
1505 /* Remove all scroll bars because they have wrong colors. */
1506 if (condemn_scroll_bars_hook)
1507 (*condemn_scroll_bars_hook) (f);
1508 if (judge_scroll_bars_hook)
1509 (*judge_scroll_bars_hook) (f);
177c0ea7 1510
05c8abbe 1511 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
333b20bb
GM
1512 redraw_frame (f);
1513 }
d043f1a4 1514}
333b20bb 1515
943b580d 1516\f
3a258507 1517/* Encode Lisp string STRING as a text in a format appropriate for
96db09e4
KH
1518 XICCC (X Inter Client Communication Conventions).
1519
1520 If STRING contains only ASCII characters, do no conversion and
1521 return the string data of STRING. Otherwise, encode the text by
1522 CODING_SYSTEM, and return a newly allocated memory area which
1523 should be freed by `xfree' by a caller.
1524
37323f34
EZ
1525 SELECTIONP non-zero means the string is being encoded for an X
1526 selection, so it is safe to run pre-write conversions (which
1527 may run Lisp code).
1528
96db09e4
KH
1529 Store the byte length of resulting text in *TEXT_BYTES.
1530
d60660d6 1531 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
96db09e4 1532 which means that the `encoding' of the result can be `STRING'.
d60660d6 1533 Otherwise store 0 in *STRINGP, which means that the `encoding' of
96db09e4
KH
1534 the result should be `COMPOUND_TEXT'. */
1535
df630496
KS
1536static unsigned char *
1537x_encode_text (string, coding_system, selectionp, text_bytes, stringp, freep)
96db09e4 1538 Lisp_Object string, coding_system;
d60660d6 1539 int *text_bytes, *stringp;
37323f34 1540 int selectionp;
df630496 1541 int *freep;
96db09e4 1542{
d5db4077
KR
1543 unsigned char *str = SDATA (string);
1544 int chars = SCHARS (string);
1545 int bytes = SBYTES (string);
96db09e4
KH
1546 int charset_info;
1547 int bufsize;
1548 unsigned char *buf;
1549 struct coding_system coding;
43dc73f1 1550 extern Lisp_Object Qcompound_text_with_extensions;
96db09e4
KH
1551
1552 charset_info = find_charset_in_text (str, chars, bytes, NULL, Qnil);
1553 if (charset_info == 0)
1554 {
1555 /* No multibyte character in OBJ. We need not encode it. */
1556 *text_bytes = bytes;
d60660d6 1557 *stringp = 1;
df630496 1558 *freep = 0;
96db09e4
KH
1559 return str;
1560 }
1561
1562 setup_coding_system (coding_system, &coding);
37323f34
EZ
1563 if (selectionp
1564 && SYMBOLP (coding.pre_write_conversion)
1565 && !NILP (Ffboundp (coding.pre_write_conversion)))
1566 {
1567 string = run_pre_post_conversion_on_str (string, &coding, 1);
d5db4077
KR
1568 str = SDATA (string);
1569 chars = SCHARS (string);
1570 bytes = SBYTES (string);
37323f34 1571 }
96db09e4
KH
1572 coding.src_multibyte = 1;
1573 coding.dst_multibyte = 0;
1574 coding.mode |= CODING_MODE_LAST_BLOCK;
d60660d6
KH
1575 if (coding.type == coding_type_iso2022)
1576 coding.flags |= CODING_FLAG_ISO_SAFE;
35bc5887
KH
1577 /* We suppress producing escape sequences for composition. */
1578 coding.composing = COMPOSITION_DISABLED;
96db09e4
KH
1579 bufsize = encoding_buffer_size (&coding, bytes);
1580 buf = (unsigned char *) xmalloc (bufsize);
1581 encode_coding (&coding, str, buf, bytes, bufsize);
1582 *text_bytes = coding.produced;
43dc73f1
EZ
1583 *stringp = (charset_info == 1
1584 || (!EQ (coding_system, Qcompound_text)
1585 && !EQ (coding_system, Qcompound_text_with_extensions)));
df630496 1586 *freep = 1;
96db09e4
KH
1587 return buf;
1588}
1589
1590\f
b10daec7
JD
1591/* Set the WM name to NAME for frame F. Also set the icon name.
1592 If the frame already has an icon name, use that, otherwise set the
1593 icon name to NAME. */
f945b920 1594
b10daec7
JD
1595static void
1596x_set_name_internal (f, name)
1597 FRAME_PTR f;
f945b920 1598 Lisp_Object name;
f945b920 1599{
fe24a618 1600 if (FRAME_X_WINDOW (f))
01f1ba30 1601 {
01f1ba30 1602 BLOCK_INPUT;
fe24a618
JB
1603#ifdef HAVE_X11R4
1604 {
80534dd6 1605 XTextProperty text, icon;
d60660d6 1606 int bytes, stringp;
b10daec7 1607 int do_free_icon_value = 0, do_free_text_value = 0;
11270583 1608 Lisp_Object coding_system;
80534dd6 1609
b10daec7 1610 coding_system = Qcompound_text;
3201ea57
KH
1611 /* Note: Encoding strategy
1612
1613 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1614 text.encoding. But, there are non-internationalized window
1615 managers which don't support that encoding. So, if NAME
1616 contains only ASCII and 8859-1 characters, encode it by
1617 iso-latin-1, and use "STRING" in text.encoding hoping that
34e8c597 1618 such window managers at least analyze this format correctly,
3201ea57
KH
1619 i.e. treat 8-bit bytes as 8859-1 characters.
1620
1621 We may also be able to use "UTF8_STRING" in text.encoding
34e8c597 1622 in the future which can encode all Unicode characters.
3201ea57
KH
1623 But, for the moment, there's no way to know that the
1624 current window manager supports it or not. */
df630496
KS
1625 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp,
1626 &do_free_text_value);
d60660d6 1627 text.encoding = (stringp ? XA_STRING
96db09e4 1628 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
fe24a618 1629 text.format = 8;
96db09e4 1630 text.nitems = bytes;
80534dd6 1631
96db09e4
KH
1632 if (NILP (f->icon_name))
1633 {
1634 icon = text;
1635 }
1636 else
1637 {
3201ea57 1638 /* See the above comment "Note: Encoding strategy". */
37323f34 1639 icon.value = x_encode_text (f->icon_name, coding_system, 0,
df630496 1640 &bytes, &stringp, &do_free_icon_value);
d60660d6 1641 icon.encoding = (stringp ? XA_STRING
96db09e4
KH
1642 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1643 icon.format = 8;
1644 icon.nitems = bytes;
1645 }
b10daec7 1646
488dd4c4
JD
1647#ifdef USE_GTK
1648 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
47c53789 1649 (char *) SDATA (ENCODE_UTF_8 (name)));
488dd4c4 1650#else /* not USE_GTK */
2436a4e4 1651 XSetWMName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7c0d3ed8 1652#endif /* not USE_GTK */
abb4b7ec 1653
7c0d3ed8 1654 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &icon);
abb4b7ec 1655
b10daec7 1656 if (do_free_icon_value)
7c0d3ed8 1657 xfree (icon.value);
b10daec7 1658 if (do_free_text_value)
7c0d3ed8
KS
1659 xfree (text.value);
1660 }
1661#else /* not HAVE_X11R4 */
1662 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1663 SDATA (name));
1664 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1665 SDATA (name));
1666#endif /* not HAVE_X11R4 */
1667 UNBLOCK_INPUT;
1668 }
abb4b7ec
RS
1669}
1670
b10daec7
JD
1671/* Change the name of frame F to NAME. If NAME is nil, set F's name to
1672 x_id_name.
1673
1674 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1675 name; if NAME is a string, set F's name to NAME and set
1676 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1677
1678 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1679 suggesting a new name, which lisp code should override; if
1680 F->explicit_name is set, ignore the new name; otherwise, set it. */
1681
1682void
1683x_set_name (f, name, explicit)
1684 struct frame *f;
1685 Lisp_Object name;
1686 int explicit;
1687{
1688 /* Make sure that requests from lisp code override requests from
1689 Emacs redisplay code. */
1690 if (explicit)
1691 {
1692 /* If we're switching from explicit to implicit, we had better
1693 update the mode lines and thereby update the title. */
1694 if (f->explicit_name && NILP (name))
1695 update_mode_lines = 1;
1696
1697 f->explicit_name = ! NILP (name);
1698 }
1699 else if (f->explicit_name)
1700 return;
1701
1702 /* If NAME is nil, set the name to the x_id_name. */
1703 if (NILP (name))
1704 {
1705 /* Check for no change needed in this very common case
1706 before we do any consing. */
1707 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
1708 SDATA (f->name)))
1709 return;
1710 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
1711 }
1712 else
1713 CHECK_STRING (name);
1714
1715 /* Don't change the name if it's already NAME. */
1716 if (! NILP (Fstring_equal (name, f->name)))
1717 return;
1718
1719 f->name = name;
1720
1721 /* For setting the frame title, the title parameter should override
1722 the name parameter. */
1723 if (! NILP (f->title))
1724 name = f->title;
1725
1726 x_set_name_internal (f, name);
1727}
1728
7c0d3ed8
KS
1729/* This function should be called when the user's lisp code has
1730 specified a name for the frame; the name will override any set by the
1731 redisplay code. */
1732void
1733x_explicitly_set_name (f, arg, oldval)
1734 FRAME_PTR f;
1735 Lisp_Object arg, oldval;
3402e1a4 1736{
7c0d3ed8 1737 x_set_name (f, arg, 1);
3402e1a4
RS
1738}
1739
7c0d3ed8
KS
1740/* This function should be called by Emacs redisplay code to set the
1741 name; names set this way will never override names set by the user's
1742 lisp code. */
1743void
1744x_implicitly_set_name (f, arg, oldval)
1745 FRAME_PTR f;
1746 Lisp_Object arg, oldval;
333b20bb 1747{
7c0d3ed8
KS
1748 x_set_name (f, arg, 0);
1749}
1750\f
1751/* Change the title of frame F to NAME.
1752 If NAME is nil, use the frame name as the title.
60fb3ee1 1753
7c0d3ed8
KS
1754 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1755 name; if NAME is a string, set F's name to NAME and set
1756 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
60fb3ee1 1757
7c0d3ed8
KS
1758 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1759 suggesting a new name, which lisp code should override; if
1760 F->explicit_name is set, ignore the new name; otherwise, set it. */
01f1ba30 1761
7c0d3ed8
KS
1762void
1763x_set_title (f, name, old_name)
1764 struct frame *f;
1765 Lisp_Object name, old_name;
01f1ba30 1766{
7c0d3ed8
KS
1767 /* Don't change the title if it's already NAME. */
1768 if (EQ (name, f->title))
1769 return;
01f1ba30 1770
7c0d3ed8 1771 update_mode_lines = 1;
60fb3ee1 1772
7c0d3ed8 1773 f->title = name;
f9942c9e 1774
7c0d3ed8
KS
1775 if (NILP (name))
1776 name = f->name;
1777 else
1778 CHECK_STRING (name);
f9942c9e 1779
b10daec7 1780 x_set_name_internal (f, name);
01f1ba30
JB
1781}
1782
7c0d3ed8
KS
1783void
1784x_set_scroll_bar_default_width (f)
e4f79258 1785 struct frame *f;
e4f79258 1786{
be786000 1787 int wid = FRAME_COLUMN_WIDTH (f);
01f1ba30 1788
7c0d3ed8
KS
1789#ifdef USE_TOOLKIT_SCROLL_BARS
1790 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1791 int width = 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
be786000
KS
1792 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
1793 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = width;
7c0d3ed8
KS
1794#else
1795 /* Make the actual width at least 14 pixels and a multiple of a
1796 character width. */
be786000 1797 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
01f1ba30 1798
7c0d3ed8
KS
1799 /* Use all of that space (aside from required margins) for the
1800 scroll bar. */
be786000 1801 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 0;
7c0d3ed8 1802#endif
01f1ba30 1803}
333b20bb 1804
7c0d3ed8 1805\f
333b20bb
GM
1806/* Record in frame F the specified or default value according to ALIST
1807 of the parameter named PROP (a Lisp symbol). If no value is
1808 specified for PROP, look for an X default for XPROP on the frame
1809 named NAME. If that is not found either, use the value DEFLT. */
1810
1811static Lisp_Object
1812x_default_scroll_bar_color_parameter (f, alist, prop, xprop, xclass,
1813 foreground_p)
1814 struct frame *f;
1815 Lisp_Object alist;
1816 Lisp_Object prop;
1817 char *xprop;
1818 char *xclass;
1819 int foreground_p;
1820{
1821 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1822 Lisp_Object tem;
1823
1824 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
1825 if (EQ (tem, Qunbound))
1826 {
1827#ifdef USE_TOOLKIT_SCROLL_BARS
1828
1829 /* See if an X resource for the scroll bar color has been
1830 specified. */
1831 tem = display_x_get_resource (dpyinfo,
1832 build_string (foreground_p
1833 ? "foreground"
1834 : "background"),
c0ec53ad 1835 empty_string,
333b20bb 1836 build_string ("verticalScrollBar"),
c0ec53ad 1837 empty_string);
333b20bb
GM
1838 if (!STRINGP (tem))
1839 {
1840 /* If nothing has been specified, scroll bars will use a
1841 toolkit-dependent default. Because these defaults are
1842 difficult to get at without actually creating a scroll
1843 bar, use nil to indicate that no color has been
1844 specified. */
1845 tem = Qnil;
1846 }
177c0ea7 1847
333b20bb 1848#else /* not USE_TOOLKIT_SCROLL_BARS */
177c0ea7 1849
333b20bb 1850 tem = Qnil;
177c0ea7 1851
333b20bb
GM
1852#endif /* not USE_TOOLKIT_SCROLL_BARS */
1853 }
1854
1855 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
1856 return tem;
1857}
1858
1859
01f1ba30 1860
f58534a3
RS
1861#if !defined (HAVE_X11R4) && !defined (HAVE_XSETWMPROTOCOLS)
1862
1863Status
1864XSetWMProtocols (dpy, w, protocols, count)
1865 Display *dpy;
1866 Window w;
1867 Atom *protocols;
1868 int count;
1869{
1870 Atom prop;
1871 prop = XInternAtom (dpy, "WM_PROTOCOLS", False);
1872 if (prop == None) return False;
1873 XChangeProperty (dpy, w, prop, XA_ATOM, 32, PropModeReplace,
1874 (unsigned char *) protocols, count);
1875 return True;
1876}
9ef48a9d
RS
1877#endif /* not HAVE_X11R4 && not HAVE_XSETWMPROTOCOLS */
1878\f
1879#ifdef USE_X_TOOLKIT
1880
8e3d10a9
RS
1881/* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1882 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
59aa6c90
RS
1883 already be present because of the toolkit (Motif adds some of them,
1884 for example, but Xt doesn't). */
9ef48a9d
RS
1885
1886static void
b9dc4443
RS
1887hack_wm_protocols (f, widget)
1888 FRAME_PTR f;
9ef48a9d
RS
1889 Widget widget;
1890{
1891 Display *dpy = XtDisplay (widget);
1892 Window w = XtWindow (widget);
1893 int need_delete = 1;
1894 int need_focus = 1;
59aa6c90 1895 int need_save = 1;
9ef48a9d
RS
1896
1897 BLOCK_INPUT;
1898 {
a3db4b26
AS
1899 Atom type;
1900 unsigned char *catoms;
9ef48a9d
RS
1901 int format = 0;
1902 unsigned long nitems = 0;
1903 unsigned long bytes_after;
1904
270958e8
KH
1905 if ((XGetWindowProperty (dpy, w,
1906 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
34d5ae1e 1907 (long)0, (long)100, False, XA_ATOM,
270958e8 1908 &type, &format, &nitems, &bytes_after,
a3db4b26 1909 &catoms)
270958e8 1910 == Success)
9ef48a9d 1911 && format == 32 && type == XA_ATOM)
a3db4b26
AS
1912 {
1913 Atom *atoms = (Atom *) catoms;
1914 while (nitems > 0)
1915 {
1916 nitems--;
1917 if (atoms[nitems]
1918 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
1919 need_delete = 0;
1920 else if (atoms[nitems]
1921 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
1922 need_focus = 0;
1923 else if (atoms[nitems]
1924 == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
1925 need_save = 0;
1926 }
1927 }
1928 if (catoms)
1929 XFree (catoms);
9ef48a9d
RS
1930 }
1931 {
1932 Atom props [10];
1933 int count = 0;
b9dc4443
RS
1934 if (need_delete)
1935 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
1936 if (need_focus)
1937 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
1938 if (need_save)
1939 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
9ef48a9d 1940 if (count)
b9dc4443
RS
1941 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
1942 XA_ATOM, 32, PropModeAppend,
9ef48a9d
RS
1943 (unsigned char *) props, count);
1944 }
1945 UNBLOCK_INPUT;
1946}
1947#endif
86779fac
GM
1948
1949
5a7df7d7
GM
1950\f
1951/* Support routines for XIC (X Input Context). */
86779fac 1952
5a7df7d7
GM
1953#ifdef HAVE_X_I18N
1954
1955static XFontSet xic_create_xfontset P_ ((struct frame *, char *));
1956static XIMStyle best_xim_style P_ ((XIMStyles *, XIMStyles *));
1957
1958
1576f1ad 1959/* Supported XIM styles, ordered by preference. */
5a7df7d7
GM
1960
1961static XIMStyle supported_xim_styles[] =
1962{
1963 XIMPreeditPosition | XIMStatusArea,
1964 XIMPreeditPosition | XIMStatusNothing,
1965 XIMPreeditPosition | XIMStatusNone,
1966 XIMPreeditNothing | XIMStatusArea,
1967 XIMPreeditNothing | XIMStatusNothing,
1968 XIMPreeditNothing | XIMStatusNone,
1969 XIMPreeditNone | XIMStatusArea,
1970 XIMPreeditNone | XIMStatusNothing,
1971 XIMPreeditNone | XIMStatusNone,
1972 0,
1973};
1974
1975
c27ed90a 1976/* Create an X fontset on frame F with base font name BASE_FONTNAME. */
5a7df7d7 1977
bb07fa29
SM
1978char xic_defaut_fontset[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1979
c28e7ae8
SM
1980/* Create an Xt fontset spec from the name of a base font.
1981 If `motif' is True use the Motif syntax. */
bb07fa29 1982char *
c28e7ae8 1983xic_create_fontsetname (base_fontname, motif)
bb07fa29 1984 char *base_fontname;
c28e7ae8 1985 Bool motif;
bb07fa29 1986{
c28e7ae8
SM
1987 const char *sep = motif ? ";" : ",";
1988 char *fontsetname;
1989
bb07fa29
SM
1990 /* Make a fontset name from the base font name. */
1991 if (xic_defaut_fontset == base_fontname)
c28e7ae8
SM
1992 { /* There is no base font name, use the default. */
1993 int len = strlen (base_fontname) + 2;
1994 fontsetname = xmalloc (len);
1995 bzero (fontsetname, len);
1996 strcpy (fontsetname, base_fontname);
1997 }
bb07fa29
SM
1998 else
1999 {
2000 /* Make a fontset name from the base font name.
2001 The font set will be made of the following elements:
2002 - the base font.
2003 - the base font where the charset spec is replaced by -*-*.
2004 - the same but with the family also replaced with -*-*-. */
2005 char *p = base_fontname;
bb07fa29 2006 int i;
df630496 2007
bb07fa29
SM
2008 for (i = 0; *p; p++)
2009 if (*p == '-') i++;
2010 if (i != 14)
2011 { /* As the font name doesn't conform to XLFD, we can't
2012 modify it to generalize it to allcs and allfamilies.
2013 Use the specified font plus the default. */
c28e7ae8 2014 int len = strlen (base_fontname) + strlen (xic_defaut_fontset) + 3;
bb07fa29
SM
2015 fontsetname = xmalloc (len);
2016 bzero (fontsetname, len);
2017 strcpy (fontsetname, base_fontname);
c28e7ae8 2018 strcat (fontsetname, sep);
bb07fa29
SM
2019 strcat (fontsetname, xic_defaut_fontset);
2020 }
2021 else
2022 {
2023 int len;
968a6679 2024 char *p1 = NULL, *p2 = NULL;
bb07fa29
SM
2025 char *font_allcs = NULL;
2026 char *font_allfamilies = NULL;
968a6679 2027 char *font_all = NULL;
bb07fa29
SM
2028 char *allcs = "*-*-*-*-*-*-*";
2029 char *allfamilies = "-*-*-";
968a6679 2030 char *all = "*-*-*-*-";
df630496 2031
bb07fa29
SM
2032 for (i = 0, p = base_fontname; i < 8; p++)
2033 {
2034 if (*p == '-')
2035 {
2036 i++;
2037 if (i == 3)
2038 p1 = p + 1;
968a6679
SM
2039 else if (i == 7)
2040 p2 = p + 1;
bb07fa29
SM
2041 }
2042 }
2043 /* Build the font spec that matches all charsets. */
2044 len = p - base_fontname + strlen (allcs) + 1;
2045 font_allcs = (char *) alloca (len);
2046 bzero (font_allcs, len);
2047 bcopy (base_fontname, font_allcs, p - base_fontname);
2048 strcat (font_allcs, allcs);
2049
2050 /* Build the font spec that matches all families. */
2051 len = p - p1 + strlen (allcs) + strlen (allfamilies) + 1;
2052 font_allfamilies = (char *) alloca (len);
2053 bzero (font_allfamilies, len);
2054 strcpy (font_allfamilies, allfamilies);
968a6679 2055 bcopy (p1, font_allfamilies + strlen (allfamilies), p - p1);
bb07fa29
SM
2056 strcat (font_allfamilies, allcs);
2057
968a6679
SM
2058 /* Build the font spec that matches all. */
2059 len = p - p2 + strlen (allcs) + strlen (all) + strlen (allfamilies) + 1;
2060 font_all = (char *) alloca (len);
2061 bzero (font_all, len);
2062 strcpy (font_all, allfamilies);
2063 strcat (font_all, all);
2064 bcopy (p2, font_all + strlen (all) + strlen (allfamilies), p - p2);
2065 strcat (font_all, allcs);
2066
bb07fa29
SM
2067 /* Build the actual font set name. */
2068 len = strlen (base_fontname) + strlen (font_allcs)
968a6679 2069 + strlen (font_allfamilies) + strlen (font_all) + 5;
bb07fa29
SM
2070 fontsetname = xmalloc (len);
2071 bzero (fontsetname, len);
2072 strcpy (fontsetname, base_fontname);
c28e7ae8 2073 strcat (fontsetname, sep);
bb07fa29 2074 strcat (fontsetname, font_allcs);
c28e7ae8 2075 strcat (fontsetname, sep);
bb07fa29 2076 strcat (fontsetname, font_allfamilies);
968a6679
SM
2077 strcat (fontsetname, sep);
2078 strcat (fontsetname, font_all);
bb07fa29 2079 }
bb07fa29 2080 }
c28e7ae8
SM
2081 if (motif)
2082 strcat (fontsetname, ":");
2083 return fontsetname;
bb07fa29
SM
2084}
2085
5a7df7d7
GM
2086static XFontSet
2087xic_create_xfontset (f, base_fontname)
86779fac 2088 struct frame *f;
5a7df7d7 2089 char *base_fontname;
86779fac 2090{
c27ed90a 2091 XFontSet xfs = NULL;
63ea8ea5 2092 char **missing_list = NULL;
5a7df7d7
GM
2093 int missing_count;
2094 char *def_string;
c27ed90a
JD
2095 Lisp_Object rest, frame;
2096
bb07fa29
SM
2097 if (!base_fontname)
2098 base_fontname = xic_defaut_fontset;
2099
c27ed90a
JD
2100 /* See if there is another frame already using same fontset. */
2101 FOR_EACH_FRAME (rest, frame)
2102 {
2103 struct frame *cf = XFRAME (frame);
2104 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2105 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
9db6ae81 2106 && FRAME_XIC_BASE_FONTNAME (cf)
c27ed90a
JD
2107 && !strcmp (FRAME_XIC_BASE_FONTNAME (cf), base_fontname))
2108 {
2109 xfs = FRAME_XIC_FONTSET (cf);
2110 break;
2111 }
2112 }
177c0ea7 2113
c27ed90a 2114 if (!xfs)
63ea8ea5 2115 {
c28e7ae8 2116 char *fontsetname = xic_create_fontsetname (base_fontname, False);
bb07fa29 2117
63ea8ea5
JD
2118 /* New fontset. */
2119 xfs = XCreateFontSet (FRAME_X_DISPLAY (f),
bb07fa29 2120 fontsetname, &missing_list,
63ea8ea5
JD
2121 &missing_count, &def_string);
2122 if (missing_list)
2123 XFreeStringList (missing_list);
c28e7ae8 2124 xfree (fontsetname);
63ea8ea5 2125 }
177c0ea7 2126
c27ed90a
JD
2127 if (FRAME_XIC_BASE_FONTNAME (f))
2128 xfree (FRAME_XIC_BASE_FONTNAME (f));
2129 FRAME_XIC_BASE_FONTNAME (f) = xstrdup (base_fontname);
2130
2131 /* No need to free def_string. */
5a7df7d7
GM
2132 return xfs;
2133}
2134
c27ed90a
JD
2135/* Free the X fontset of frame F if it is the last frame using it. */
2136
2137void
2138xic_free_xfontset (f)
2139 struct frame *f;
2140{
2141 Lisp_Object rest, frame;
2142 int shared_p = 0;
2143
2144 if (!FRAME_XIC_FONTSET (f))
2145 return;
2146
2147 /* See if there is another frame sharing the same fontset. */
2148 FOR_EACH_FRAME (rest, frame)
2149 {
2150 struct frame *cf = XFRAME (frame);
2151 if (cf != f && FRAME_LIVE_P (f) && FRAME_X_P (cf)
2152 && FRAME_X_DISPLAY_INFO (cf) == FRAME_X_DISPLAY_INFO (f)
2153 && FRAME_XIC_FONTSET (cf) == FRAME_XIC_FONTSET (f))
2154 {
2155 shared_p = 1;
2156 break;
2157 }
2158 }
2159
2160 if (!shared_p)
2161 /* The fontset is not used anymore. It is safe to free it. */
2162 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
2163
2164 if (FRAME_XIC_BASE_FONTNAME (f))
2165 xfree (FRAME_XIC_BASE_FONTNAME (f));
2166 FRAME_XIC_BASE_FONTNAME (f) = NULL;
2167 FRAME_XIC_FONTSET (f) = NULL;
2168}
2169
5a7df7d7
GM
2170
2171/* Value is the best input style, given user preferences USER (already
2172 checked to be supported by Emacs), and styles supported by the
2173 input method XIM. */
2174
2175static XIMStyle
2176best_xim_style (user, xim)
2177 XIMStyles *user;
2178 XIMStyles *xim;
2179{
2180 int i, j;
2181
2182 for (i = 0; i < user->count_styles; ++i)
2183 for (j = 0; j < xim->count_styles; ++j)
2184 if (user->supported_styles[i] == xim->supported_styles[j])
2185 return user->supported_styles[i];
2186
2187 /* Return the default style. */
2188 return XIMPreeditNothing | XIMStatusNothing;
2189}
2190
2191/* Create XIC for frame F. */
2192
5df79d3d
GM
2193static XIMStyle xic_style;
2194
5a7df7d7
GM
2195void
2196create_frame_xic (f)
2197 struct frame *f;
2198{
5a7df7d7
GM
2199 XIM xim;
2200 XIC xic = NULL;
2201 XFontSet xfs = NULL;
86779fac 2202
5a7df7d7
GM
2203 if (FRAME_XIC (f))
2204 return;
177c0ea7 2205
bb07fa29
SM
2206 /* Create X fontset. */
2207 xfs = xic_create_xfontset
2208 (f, (FRAME_FONTSET (f) < 0) ? NULL
2209 : (char *) SDATA (fontset_ascii (FRAME_FONTSET (f))));
2210
5a7df7d7
GM
2211 xim = FRAME_X_XIM (f);
2212 if (xim)
2213 {
d9d57cb2
DL
2214 XRectangle s_area;
2215 XPoint spot;
5a7df7d7
GM
2216 XVaNestedList preedit_attr;
2217 XVaNestedList status_attr;
5a7df7d7 2218
d9d57cb2
DL
2219 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
2220 spot.x = 0; spot.y = 1;
86779fac 2221
5a7df7d7
GM
2222 /* Determine XIC style. */
2223 if (xic_style == 0)
2224 {
2225 XIMStyles supported_list;
2226 supported_list.count_styles = (sizeof supported_xim_styles
2227 / sizeof supported_xim_styles[0]);
2228 supported_list.supported_styles = supported_xim_styles;
2229 xic_style = best_xim_style (&supported_list,
2230 FRAME_X_XIM_STYLES (f));
2231 }
86779fac 2232
5a7df7d7
GM
2233 preedit_attr = XVaCreateNestedList (0,
2234 XNFontSet, xfs,
2235 XNForeground,
2236 FRAME_FOREGROUND_PIXEL (f),
2237 XNBackground,
2238 FRAME_BACKGROUND_PIXEL (f),
2239 (xic_style & XIMPreeditPosition
2240 ? XNSpotLocation
2241 : NULL),
2242 &spot,
2243 NULL);
2244 status_attr = XVaCreateNestedList (0,
2245 XNArea,
2246 &s_area,
2247 XNFontSet,
2248 xfs,
2249 XNForeground,
2250 FRAME_FOREGROUND_PIXEL (f),
2251 XNBackground,
2252 FRAME_BACKGROUND_PIXEL (f),
2253 NULL);
2254
2255 xic = XCreateIC (xim,
2256 XNInputStyle, xic_style,
810f2256
JD
2257 XNClientWindow, FRAME_X_WINDOW (f),
2258 XNFocusWindow, FRAME_X_WINDOW (f),
5a7df7d7
GM
2259 XNStatusAttributes, status_attr,
2260 XNPreeditAttributes, preedit_attr,
2261 NULL);
2262 XFree (preedit_attr);
2263 XFree (status_attr);
2264 }
177c0ea7 2265
5a7df7d7
GM
2266 FRAME_XIC (f) = xic;
2267 FRAME_XIC_STYLE (f) = xic_style;
2268 FRAME_XIC_FONTSET (f) = xfs;
86779fac
GM
2269}
2270
5a7df7d7
GM
2271
2272/* Destroy XIC and free XIC fontset of frame F, if any. */
2273
2274void
2275free_frame_xic (f)
2276 struct frame *f;
2277{
2278 if (FRAME_XIC (f) == NULL)
2279 return;
177c0ea7 2280
5a7df7d7 2281 XDestroyIC (FRAME_XIC (f));
c27ed90a 2282 xic_free_xfontset (f);
5a7df7d7
GM
2283
2284 FRAME_XIC (f) = NULL;
5a7df7d7
GM
2285}
2286
2287
2288/* Place preedit area for XIC of window W's frame to specified
2289 pixel position X/Y. X and Y are relative to window W. */
2290
2291void
2292xic_set_preeditarea (w, x, y)
2293 struct window *w;
2294 int x, y;
2295{
2296 struct frame *f = XFRAME (w->frame);
2297 XVaNestedList attr;
2298 XPoint spot;
177c0ea7 2299
17e6d491 2300 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w);
5a7df7d7
GM
2301 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
2302 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
2303 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2304 XFree (attr);
2305}
2306
2307
2308/* Place status area for XIC in bottom right corner of frame F.. */
2309
2310void
2311xic_set_statusarea (f)
2312 struct frame *f;
2313{
2314 XIC xic = FRAME_XIC (f);
2315 XVaNestedList attr;
2316 XRectangle area;
2317 XRectangle *needed;
2318
2319 /* Negotiate geometry of status area. If input method has existing
2320 status area, use its current size. */
2321 area.x = area.y = area.width = area.height = 0;
2322 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
2323 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2324 XFree (attr);
177c0ea7 2325
5a7df7d7
GM
2326 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
2327 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2328 XFree (attr);
2329
2330 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
2331 {
2332 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
2333 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2334 XFree (attr);
2335 }
2336
2337 area.width = needed->width;
2338 area.height = needed->height;
be786000
KS
2339 area.x = FRAME_PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
2340 area.y = (FRAME_PIXEL_HEIGHT (f) - area.height
488dd4c4
JD
2341 - FRAME_MENUBAR_HEIGHT (f)
2342 - FRAME_TOOLBAR_HEIGHT (f)
2343 - FRAME_INTERNAL_BORDER_WIDTH (f));
5a7df7d7
GM
2344 XFree (needed);
2345
2346 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
810f2256 2347 XSetICValues (xic, XNStatusAttributes, attr, NULL);
5a7df7d7
GM
2348 XFree (attr);
2349}
2350
2351
2352/* Set X fontset for XIC of frame F, using base font name
2353 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2354
2355void
2356xic_set_xfontset (f, base_fontname)
2357 struct frame *f;
2358 char *base_fontname;
2359{
2360 XVaNestedList attr;
2361 XFontSet xfs;
2362
c27ed90a
JD
2363 xic_free_xfontset (f);
2364
5a7df7d7
GM
2365 xfs = xic_create_xfontset (f, base_fontname);
2366
2367 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
2368 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
2369 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2370 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
2371 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
2372 XFree (attr);
177c0ea7 2373
5a7df7d7
GM
2374 FRAME_XIC_FONTSET (f) = xfs;
2375}
2376
2377#endif /* HAVE_X_I18N */
2378
2379
9ef48a9d 2380\f
8fc2766b
RS
2381#ifdef USE_X_TOOLKIT
2382
2383/* Create and set up the X widget for frame F. */
f58534a3 2384
01f1ba30 2385static void
a7f7d550
FP
2386x_window (f, window_prompting, minibuffer_only)
2387 struct frame *f;
2388 long window_prompting;
2389 int minibuffer_only;
01f1ba30 2390{
9ef48a9d 2391 XClassHint class_hints;
31ac8d8c
FP
2392 XSetWindowAttributes attributes;
2393 unsigned long attribute_mask;
9ef48a9d
RS
2394 Widget shell_widget;
2395 Widget pane_widget;
6c32dd68 2396 Widget frame_widget;
9ef48a9d
RS
2397 Arg al [25];
2398 int ac;
2399
2400 BLOCK_INPUT;
2401
b7975ee4
KH
2402 /* Use the resource name as the top-level widget name
2403 for looking up resources. Make a non-Lisp copy
2404 for the window manager, so GC relocation won't bother it.
2405
2406 Elsewhere we specify the window name for the window manager. */
177c0ea7 2407
cca176a0 2408 {
d5db4077 2409 char *str = (char *) SDATA (Vx_resource_name);
b7975ee4 2410 f->namebuf = (char *) xmalloc (strlen (str) + 1);
cca176a0
KH
2411 strcpy (f->namebuf, str);
2412 }
9ef48a9d
RS
2413
2414 ac = 0;
2415 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
2416 XtSetArg (al[ac], XtNinput, 1); ac++;
97787173 2417 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
be786000 2418 XtSetArg (al[ac], XtNborderWidth, f->border_width); ac++;
9b2956e2
GM
2419 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2420 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2421 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
cca176a0 2422 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
7a994728 2423 applicationShellWidgetClass,
82c90203 2424 FRAME_X_DISPLAY (f), al, ac);
9ef48a9d 2425
7556890b 2426 f->output_data.x->widget = shell_widget;
9ef48a9d
RS
2427 /* maybe_set_screen_title_format (shell_widget); */
2428
6c32dd68
PR
2429 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
2430 (widget_value *) NULL,
2431 shell_widget, False,
2432 (lw_callback) NULL,
2433 (lw_callback) NULL,
b6e11efd 2434 (lw_callback) NULL,
6c32dd68 2435 (lw_callback) NULL);
9ef48a9d 2436
9b2956e2
GM
2437 ac = 0;
2438 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2439 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2440 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2441 XtSetValues (pane_widget, al, ac);
7556890b 2442 f->output_data.x->column_widget = pane_widget;
a7f7d550 2443
177c0ea7 2444 /* mappedWhenManaged to false tells to the paned window to not map/unmap
5e65b9ab 2445 the emacs screen when changing menubar. This reduces flickering. */
9ef48a9d
RS
2446
2447 ac = 0;
2448 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2449 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
2450 XtSetArg (al[ac], XtNallowResize, 1); ac++;
2451 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
2452 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
9b2956e2
GM
2453 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2454 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2455 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2456 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
2457 al, ac);
177c0ea7 2458
7556890b 2459 f->output_data.x->edit_widget = frame_widget;
177c0ea7
JB
2460
2461 XtManageChild (frame_widget);
a7f7d550
FP
2462
2463 /* Do some needed geometry management. */
2464 {
2465 int len;
2466 char *tem, shell_position[32];
74305183 2467 Arg al[10];
a7f7d550 2468 int ac = 0;
5031cc10 2469 int extra_borders = 0;
177c0ea7 2470 int menubar_size
7556890b
RS
2471 = (f->output_data.x->menubar_widget
2472 ? (f->output_data.x->menubar_widget->core.height
2473 + f->output_data.x->menubar_widget->core.border_width)
8fc2766b 2474 : 0);
a7f7d550 2475
f7008aff
RS
2476#if 0 /* Experimentally, we now get the right results
2477 for -geometry -0-0 without this. 24 Aug 96, rms. */
01cbdba5
RS
2478 if (FRAME_EXTERNAL_MENU_BAR (f))
2479 {
dd254b21 2480 Dimension ibw = 0;
01cbdba5
RS
2481 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
2482 menubar_size += ibw;
2483 }
f7008aff 2484#endif
01cbdba5 2485
7556890b 2486 f->output_data.x->menubar_height = menubar_size;
00983aba 2487
440b0bfd 2488#ifndef USE_LUCID
5031cc10
KH
2489 /* Motif seems to need this amount added to the sizes
2490 specified for the shell widget. The Athena/Lucid widgets don't.
2491 Both conclusions reached experimentally. -- rms. */
440b0bfd
RS
2492 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
2493 &extra_borders, NULL);
2494 extra_borders *= 2;
2495#endif
5031cc10 2496
97787173
RS
2497 /* Convert our geometry parameters into a geometry string
2498 and specify it.
2499 Note that we do not specify here whether the position
2500 is a user-specified or program-specified one.
2501 We pass that information later, in x_wm_set_size_hints. */
2502 {
be786000 2503 int left = f->left_pos;
97787173 2504 int xneg = window_prompting & XNegative;
be786000 2505 int top = f->top_pos;
97787173
RS
2506 int yneg = window_prompting & YNegative;
2507 if (xneg)
2508 left = -left;
2509 if (yneg)
2510 top = -top;
c760f47e
KH
2511
2512 if (window_prompting & USPosition)
5031cc10 2513 sprintf (shell_position, "=%dx%d%c%d%c%d",
be786000
KS
2514 FRAME_PIXEL_WIDTH (f) + extra_borders,
2515 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders,
c760f47e
KH
2516 (xneg ? '-' : '+'), left,
2517 (yneg ? '-' : '+'), top);
2518 else
74305183
JD
2519 {
2520 sprintf (shell_position, "=%dx%d",
2521 FRAME_PIXEL_WIDTH (f) + extra_borders,
2522 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders);
2523
2524 /* Setting x and y when the position is not specified in
2525 the geometry string will set program position in the WM hints.
2526 If Emacs had just one program position, we could set it in
2527 fallback resources, but since each make-frame call can specify
2528 different program positions, this is easier. */
2529 XtSetArg (al[ac], XtNx, left); ac++;
2530 XtSetArg (al[ac], XtNy, top); ac++;
2531 }
97787173
RS
2532 }
2533
a7f7d550 2534 len = strlen (shell_position) + 1;
77110caa
RS
2535 /* We don't free this because we don't know whether
2536 it is safe to free it while the frame exists.
2537 It isn't worth the trouble of arranging to free it
2538 when the frame is deleted. */
a7f7d550
FP
2539 tem = (char *) xmalloc (len);
2540 strncpy (tem, shell_position, len);
2541 XtSetArg (al[ac], XtNgeometry, tem); ac++;
2542 XtSetValues (shell_widget, al, ac);
2543 }
2544
9ef48a9d
RS
2545 XtManageChild (pane_widget);
2546 XtRealizeWidget (shell_widget);
2547
177c0ea7 2548 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
9ef48a9d
RS
2549
2550 validate_x_resource_name ();
b7975ee4 2551
d5db4077
KR
2552 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2553 class_hints.res_class = (char *) SDATA (Vx_resource_class);
b9dc4443 2554 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
5a7df7d7
GM
2555
2556#ifdef HAVE_X_I18N
2557 FRAME_XIC (f) = NULL;
1576f1ad
DL
2558 if (use_xim)
2559 create_frame_xic (f);
5a7df7d7 2560#endif
64d16748 2561
7556890b
RS
2562 f->output_data.x->wm_hints.input = True;
2563 f->output_data.x->wm_hints.flags |= InputHint;
b9dc4443 2564 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 2565 &f->output_data.x->wm_hints);
b8228beb 2566
c4ec904f 2567 hack_wm_protocols (f, shell_widget);
9ef48a9d 2568
6c32dd68
PR
2569#ifdef HACK_EDITRES
2570 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
2571#endif
2572
9ef48a9d 2573 /* Do a stupid property change to force the server to generate a
333b20bb 2574 PropertyNotify event so that the event_stream server timestamp will
9ef48a9d
RS
2575 be initialized to something relevant to the time we created the window.
2576 */
6c32dd68 2577 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
b9dc4443
RS
2578 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2579 XA_ATOM, 32, PropModeAppend,
9ef48a9d
RS
2580 (unsigned char*) NULL, 0);
2581
5a7df7d7 2582 /* Make all the standard events reach the Emacs frame. */
31ac8d8c 2583 attributes.event_mask = STANDARD_EVENT_SET;
5a7df7d7
GM
2584
2585#ifdef HAVE_X_I18N
2586 if (FRAME_XIC (f))
2587 {
2588 /* XIM server might require some X events. */
2589 unsigned long fevent = NoEventMask;
810f2256 2590 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
5a7df7d7
GM
2591 attributes.event_mask |= fevent;
2592 }
2593#endif /* HAVE_X_I18N */
177c0ea7 2594
31ac8d8c
FP
2595 attribute_mask = CWEventMask;
2596 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
2597 attribute_mask, &attributes);
2598
6c32dd68 2599 XtMapWidget (frame_widget);
9ef48a9d 2600
8fc2766b
RS
2601 /* x_set_name normally ignores requests to set the name if the
2602 requested name is the same as the current name. This is the one
2603 place where that assumption isn't correct; f->name is set, but
2604 the X server hasn't been told. */
2605 {
2606 Lisp_Object name;
2607 int explicit = f->explicit_name;
2608
2609 f->explicit_name = 0;
2610 name = f->name;
2611 f->name = Qnil;
2612 x_set_name (f, name, explicit);
2613 }
2614
b9dc4443 2615 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 2616 f->output_data.x->text_cursor);
8fc2766b
RS
2617
2618 UNBLOCK_INPUT;
2619
495fa05e
GM
2620 /* This is a no-op, except under Motif. Make sure main areas are
2621 set to something reasonable, in case we get an error later. */
2622 lw_set_main_areas (pane_widget, 0, frame_widget);
8fc2766b
RS
2623}
2624
9ef48a9d 2625#else /* not USE_X_TOOLKIT */
488dd4c4
JD
2626#ifdef USE_GTK
2627void
2628x_window (f)
2629 FRAME_PTR f;
2630{
2631 if (! xg_create_frame_widgets (f))
2632 error ("Unable to create window");
1fcfb866
JD
2633
2634#ifdef HAVE_X_I18N
2635 FRAME_XIC (f) = NULL;
b59dd9c8 2636 if (use_xim)
1576f1ad
DL
2637 {
2638 BLOCK_INPUT;
2639 create_frame_xic (f);
2640 if (FRAME_XIC (f))
2641 {
2642 /* XIM server might require some X events. */
2643 unsigned long fevent = NoEventMask;
810f2256 2644 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
1fcfb866 2645
1576f1ad
DL
2646 if (fevent != NoEventMask)
2647 {
2648 XSetWindowAttributes attributes;
2649 XWindowAttributes wattr;
2650 unsigned long attribute_mask;
2651
2652 XGetWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2653 &wattr);
2654 attributes.event_mask = wattr.your_event_mask | fevent;
2655 attribute_mask = CWEventMask;
2656 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2657 attribute_mask, &attributes);
2658 }
2659 }
2660 UNBLOCK_INPUT;
2661 }
1fcfb866 2662#endif
488dd4c4 2663}
9ef48a9d 2664
488dd4c4 2665#else /*! USE_GTK */
8fc2766b
RS
2666/* Create and set up the X window for frame F. */
2667
201d8c78 2668void
8fc2766b
RS
2669x_window (f)
2670 struct frame *f;
2671
2672{
2673 XClassHint class_hints;
2674 XSetWindowAttributes attributes;
2675 unsigned long attribute_mask;
2676
7556890b
RS
2677 attributes.background_pixel = f->output_data.x->background_pixel;
2678 attributes.border_pixel = f->output_data.x->border_pixel;
01f1ba30
JB
2679 attributes.bit_gravity = StaticGravity;
2680 attributes.backing_store = NotUseful;
2681 attributes.save_under = True;
2682 attributes.event_mask = STANDARD_EVENT_SET;
9b2956e2
GM
2683 attributes.colormap = FRAME_X_COLORMAP (f);
2684 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
2685 | CWColormap);
01f1ba30
JB
2686
2687 BLOCK_INPUT;
fe24a618 2688 FRAME_X_WINDOW (f)
b9dc4443 2689 = XCreateWindow (FRAME_X_DISPLAY (f),
7556890b 2690 f->output_data.x->parent_desc,
be786000
KS
2691 f->left_pos,
2692 f->top_pos,
2693 FRAME_PIXEL_WIDTH (f), FRAME_PIXEL_HEIGHT (f),
2694 f->border_width,
01f1ba30
JB
2695 CopyFromParent, /* depth */
2696 InputOutput, /* class */
383d6ffc 2697 FRAME_X_VISUAL (f),
01f1ba30 2698 attribute_mask, &attributes);
5a7df7d7
GM
2699
2700#ifdef HAVE_X_I18N
4dacadcc 2701 if (use_xim)
5a7df7d7 2702 {
1576f1ad
DL
2703 create_frame_xic (f);
2704 if (FRAME_XIC (f))
2705 {
2706 /* XIM server might require some X events. */
2707 unsigned long fevent = NoEventMask;
810f2256 2708 XGetICValues (FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
1576f1ad
DL
2709 attributes.event_mask |= fevent;
2710 attribute_mask = CWEventMask;
2711 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2712 attribute_mask, &attributes);
2713 }
5a7df7d7
GM
2714 }
2715#endif /* HAVE_X_I18N */
177c0ea7 2716
d387c960 2717 validate_x_resource_name ();
b7975ee4 2718
d5db4077
KR
2719 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2720 class_hints.res_class = (char *) SDATA (Vx_resource_class);
b9dc4443 2721 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
01f1ba30 2722
00983aba
KH
2723 /* The menubar is part of the ordinary display;
2724 it does not count in addition to the height of the window. */
7556890b 2725 f->output_data.x->menubar_height = 0;
00983aba 2726
179956b9
JB
2727 /* This indicates that we use the "Passive Input" input model.
2728 Unless we do this, we don't get the Focus{In,Out} events that we
2729 need to draw the cursor correctly. Accursed bureaucrats.
b9dc4443 2730 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
179956b9 2731
7556890b
RS
2732 f->output_data.x->wm_hints.input = True;
2733 f->output_data.x->wm_hints.flags |= InputHint;
b9dc4443 2734 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 2735 &f->output_data.x->wm_hints);
6d078211 2736 f->output_data.x->wm_hints.icon_pixmap = None;
179956b9 2737
032e4ebe
RS
2738 /* Request "save yourself" and "delete window" commands from wm. */
2739 {
2740 Atom protocols[2];
b9dc4443
RS
2741 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
2742 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
2743 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
032e4ebe 2744 }
9ef48a9d 2745
e373f201
JB
2746 /* x_set_name normally ignores requests to set the name if the
2747 requested name is the same as the current name. This is the one
2748 place where that assumption isn't correct; f->name is set, but
2749 the X server hasn't been told. */
2750 {
98381190 2751 Lisp_Object name;
cf177271 2752 int explicit = f->explicit_name;
e373f201 2753
cf177271 2754 f->explicit_name = 0;
98381190
KH
2755 name = f->name;
2756 f->name = Qnil;
cf177271 2757 x_set_name (f, name, explicit);
e373f201
JB
2758 }
2759
b9dc4443 2760 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 2761 f->output_data.x->text_cursor);
9ef48a9d 2762
01f1ba30
JB
2763 UNBLOCK_INPUT;
2764
fe24a618 2765 if (FRAME_X_WINDOW (f) == 0)
9ef48a9d 2766 error ("Unable to create window");
01f1ba30
JB
2767}
2768
488dd4c4 2769#endif /* not USE_GTK */
8fc2766b
RS
2770#endif /* not USE_X_TOOLKIT */
2771
289978b5
LT
2772/* Verify that the icon position args for this window are valid. */
2773
2774static void
2775x_icon_verify (f, parms)
2776 struct frame *f;
2777 Lisp_Object parms;
2778{
2779 Lisp_Object icon_x, icon_y;
2780
2781 /* Set the position of the icon. Note that twm groups all
2782 icons in an icon window. */
2783 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2784 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2785 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2786 {
2787 CHECK_NUMBER (icon_x);
2788 CHECK_NUMBER (icon_y);
2789 }
2790 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2791 error ("Both left and top icon corners of icon must be specified");
2792}
2793
01f1ba30
JB
2794/* Handle the icon stuff for this window. Perhaps later we might
2795 want an x_set_icon_position which can be called interactively as
b9dc4443 2796 well. */
01f1ba30
JB
2797
2798static void
f676886a
JB
2799x_icon (f, parms)
2800 struct frame *f;
01f1ba30
JB
2801 Lisp_Object parms;
2802{
f9942c9e 2803 Lisp_Object icon_x, icon_y;
abb4b7ec 2804 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
01f1ba30
JB
2805
2806 /* Set the position of the icon. Note that twm groups all
b9dc4443 2807 icons in an icon window. */
7c0d3ed8
KS
2808 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2809 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
f9942c9e 2810 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
01f1ba30 2811 {
b7826503
PJ
2812 CHECK_NUMBER (icon_x);
2813 CHECK_NUMBER (icon_y);
01f1ba30 2814 }
f9942c9e 2815 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
01f1ba30 2816 error ("Both left and top icon corners of icon must be specified");
01f1ba30 2817
f9942c9e
JB
2818 BLOCK_INPUT;
2819
fe24a618
JB
2820 if (! EQ (icon_x, Qunbound))
2821 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
f9942c9e 2822
01f1ba30 2823 /* Start up iconic or window? */
49795535 2824 x_wm_set_window_state
333b20bb
GM
2825 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
2826 Qicon)
49795535
JB
2827 ? IconicState
2828 : NormalState));
01f1ba30 2829
d5db4077 2830 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
f468da95 2831 ? f->icon_name
d5db4077 2832 : f->name)));
80534dd6 2833
01f1ba30
JB
2834 UNBLOCK_INPUT;
2835}
2836
b243755a 2837/* Make the GCs needed for this window, setting the
01f1ba30
JB
2838 background, border and mouse colors; also create the
2839 mouse cursor and the gray border tile. */
2840
f945b920
JB
2841static char cursor_bits[] =
2842 {
2843 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2844 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2845 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2846 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2847 };
2848
01f1ba30 2849static void
f676886a
JB
2850x_make_gc (f)
2851 struct frame *f;
01f1ba30
JB
2852{
2853 XGCValues gc_values;
01f1ba30 2854
6afb1d07
JB
2855 BLOCK_INPUT;
2856
b243755a 2857 /* Create the GCs of this frame.
9ef48a9d 2858 Note that many default values are used. */
01f1ba30
JB
2859
2860 /* Normal video */
be786000 2861 gc_values.font = FRAME_FONT (f)->fid;
7556890b
RS
2862 gc_values.foreground = f->output_data.x->foreground_pixel;
2863 gc_values.background = f->output_data.x->background_pixel;
9ef48a9d 2864 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
959e647d
GM
2865 f->output_data.x->normal_gc
2866 = XCreateGC (FRAME_X_DISPLAY (f),
2867 FRAME_X_WINDOW (f),
2868 GCLineWidth | GCFont | GCForeground | GCBackground,
2869 &gc_values);
01f1ba30 2870
b9dc4443 2871 /* Reverse video style. */
7556890b
RS
2872 gc_values.foreground = f->output_data.x->background_pixel;
2873 gc_values.background = f->output_data.x->foreground_pixel;
959e647d
GM
2874 f->output_data.x->reverse_gc
2875 = XCreateGC (FRAME_X_DISPLAY (f),
2876 FRAME_X_WINDOW (f),
2877 GCFont | GCForeground | GCBackground | GCLineWidth,
2878 &gc_values);
01f1ba30 2879
9ef48a9d 2880 /* Cursor has cursor-color background, background-color foreground. */
7556890b
RS
2881 gc_values.foreground = f->output_data.x->background_pixel;
2882 gc_values.background = f->output_data.x->cursor_pixel;
01f1ba30
JB
2883 gc_values.fill_style = FillOpaqueStippled;
2884 gc_values.stipple
b9dc4443
RS
2885 = XCreateBitmapFromData (FRAME_X_DISPLAY (f),
2886 FRAME_X_DISPLAY_INFO (f)->root_window,
01f1ba30 2887 cursor_bits, 16, 16);
7556890b 2888 f->output_data.x->cursor_gc
b9dc4443 2889 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
01f1ba30 2890 (GCFont | GCForeground | GCBackground
ac1f48a4 2891 | GCFillStyle /* | GCStipple */ | GCLineWidth),
01f1ba30
JB
2892 &gc_values);
2893
333b20bb
GM
2894 /* Reliefs. */
2895 f->output_data.x->white_relief.gc = 0;
2896 f->output_data.x->black_relief.gc = 0;
2897
01f1ba30 2898 /* Create the gray border tile used when the pointer is not in
f676886a 2899 the frame. Since this depends on the frame's pixel values,
9ef48a9d 2900 this must be done on a per-frame basis. */
7556890b 2901 f->output_data.x->border_tile
d043f1a4 2902 = (XCreatePixmapFromBitmapData
177c0ea7 2903 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
d043f1a4 2904 gray_bits, gray_width, gray_height,
7556890b
RS
2905 f->output_data.x->foreground_pixel,
2906 f->output_data.x->background_pixel,
ab452f99 2907 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
6afb1d07
JB
2908
2909 UNBLOCK_INPUT;
01f1ba30 2910}
01f1ba30 2911
959e647d
GM
2912
2913/* Free what was was allocated in x_make_gc. */
2914
2915void
2916x_free_gcs (f)
2917 struct frame *f;
2918{
2919 Display *dpy = FRAME_X_DISPLAY (f);
2920
2921 BLOCK_INPUT;
177c0ea7 2922
959e647d
GM
2923 if (f->output_data.x->normal_gc)
2924 {
2925 XFreeGC (dpy, f->output_data.x->normal_gc);
2926 f->output_data.x->normal_gc = 0;
2927 }
2928
2929 if (f->output_data.x->reverse_gc)
2930 {
2931 XFreeGC (dpy, f->output_data.x->reverse_gc);
2932 f->output_data.x->reverse_gc = 0;
2933 }
177c0ea7 2934
959e647d
GM
2935 if (f->output_data.x->cursor_gc)
2936 {
2937 XFreeGC (dpy, f->output_data.x->cursor_gc);
2938 f->output_data.x->cursor_gc = 0;
2939 }
2940
2941 if (f->output_data.x->border_tile)
2942 {
2943 XFreePixmap (dpy, f->output_data.x->border_tile);
2944 f->output_data.x->border_tile = 0;
2945 }
2946
2947 UNBLOCK_INPUT;
2948}
2949
2950
eaf1eea9
GM
2951/* Handler for signals raised during x_create_frame and
2952 x_create_top_frame. FRAME is the frame which is partially
2953 constructed. */
2954
2955static Lisp_Object
2956unwind_create_frame (frame)
2957 Lisp_Object frame;
2958{
2959 struct frame *f = XFRAME (frame);
2960
2961 /* If frame is ``official'', nothing to do. */
2962 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
2963 {
f1d2ce7f 2964#if GLYPH_DEBUG
eaf1eea9
GM
2965 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2966#endif
177c0ea7 2967
eaf1eea9
GM
2968 x_free_frame_resources (f);
2969
5b3f8550 2970#if GLYPH_DEBUG
eaf1eea9
GM
2971 /* Check that reference counts are indeed correct. */
2972 xassert (dpyinfo->reference_count == dpyinfo_refcount);
2973 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
5b3f8550 2974#endif
c844a81a 2975 return Qt;
eaf1eea9 2976 }
177c0ea7 2977
eaf1eea9
GM
2978 return Qnil;
2979}
2980
2981
f676886a 2982DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
01f1ba30 2983 1, 1, 0,
7ee72033 2984 doc: /* Make a new X window, which is called a "frame" in Emacs terms.
c061c855
GM
2985Returns an Emacs frame object.
2986ALIST is an alist of frame parameters.
2987If the parameters specify that the frame should not have a minibuffer,
2988and do not specify a specific minibuffer window to use,
2989then `default-minibuffer-frame' must be a frame whose minibuffer can
2990be shared by the new frame.
2991
7ee72033
MB
2992This function is an internal primitive--use `make-frame' instead. */)
2993 (parms)
01f1ba30
JB
2994 Lisp_Object parms;
2995{
f676886a 2996 struct frame *f;
2365c027 2997 Lisp_Object frame, tem;
01f1ba30
JB
2998 Lisp_Object name;
2999 int minibuffer_only = 0;
3000 long window_prompting = 0;
3001 int width, height;
331379bf 3002 int count = SPECPDL_INDEX ();
ecaca587 3003 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
b9dc4443 3004 Lisp_Object display;
333b20bb 3005 struct x_display_info *dpyinfo = NULL;
a59e4f3d 3006 Lisp_Object parent;
e557f19d 3007 struct kboard *kb;
01f1ba30 3008
11ae94fe 3009 check_x ();
01f1ba30 3010
b7975ee4
KH
3011 /* Use this general default value to start with
3012 until we know if this frame has a specified name. */
3013 Vx_resource_name = Vinvocation_name;
3014
333b20bb 3015 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
b9dc4443
RS
3016 if (EQ (display, Qunbound))
3017 display = Qnil;
3018 dpyinfo = check_x_display_info (display);
e557f19d
KH
3019#ifdef MULTI_KBOARD
3020 kb = dpyinfo->kboard;
3021#else
3022 kb = &the_only_kboard;
3023#endif
b9dc4443 3024
333b20bb 3025 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
6a5e54e2 3026 if (!STRINGP (name)
cf177271
JB
3027 && ! EQ (name, Qunbound)
3028 && ! NILP (name))
08a90d6a 3029 error ("Invalid frame name--not a string or nil");
01f1ba30 3030
b7975ee4
KH
3031 if (STRINGP (name))
3032 Vx_resource_name = name;
3033
a59e4f3d 3034 /* See if parent window is specified. */
333b20bb 3035 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
a59e4f3d
RS
3036 if (EQ (parent, Qunbound))
3037 parent = Qnil;
3038 if (! NILP (parent))
b7826503 3039 CHECK_NUMBER (parent);
a59e4f3d 3040
ecaca587
RS
3041 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3042 /* No need to protect DISPLAY because that's not used after passing
3043 it to make_frame_without_minibuffer. */
3044 frame = Qnil;
3045 GCPRO4 (parms, parent, name, frame);
333b20bb
GM
3046 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
3047 RES_TYPE_SYMBOL);
f9942c9e 3048 if (EQ (tem, Qnone) || NILP (tem))
2526c290 3049 f = make_frame_without_minibuffer (Qnil, kb, display);
f9942c9e 3050 else if (EQ (tem, Qonly))
01f1ba30 3051 {
f676886a 3052 f = make_minibuffer_frame ();
01f1ba30
JB
3053 minibuffer_only = 1;
3054 }
6a5e54e2 3055 else if (WINDOWP (tem))
2526c290 3056 f = make_frame_without_minibuffer (tem, kb, display);
f9942c9e
JB
3057 else
3058 f = make_frame (1);
01f1ba30 3059
ecaca587
RS
3060 XSETFRAME (frame, f);
3061
a3c87d4e
JB
3062 /* Note that X Windows does support scroll bars. */
3063 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
179956b9 3064
08a90d6a 3065 f->output_method = output_x_window;
7556890b
RS
3066 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
3067 bzero (f->output_data.x, sizeof (struct x_output));
3068 f->output_data.x->icon_bitmap = -1;
be786000 3069 FRAME_FONTSET (f) = -1;
333b20bb
GM
3070 f->output_data.x->scroll_bar_foreground_pixel = -1;
3071 f->output_data.x->scroll_bar_background_pixel = -1;
f15340b7
MB
3072#ifdef USE_TOOLKIT_SCROLL_BARS
3073 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
3074 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
3075#endif /* USE_TOOLKIT_SCROLL_BARS */
eaf1eea9 3076 record_unwind_protect (unwind_create_frame, frame);
08a90d6a 3077
f468da95 3078 f->icon_name
333b20bb
GM
3079 = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
3080 RES_TYPE_STRING);
f468da95
RS
3081 if (! STRINGP (f->icon_name))
3082 f->icon_name = Qnil;
80534dd6 3083
08a90d6a 3084 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
f1d2ce7f 3085#if GLYPH_DEBUG
eaf1eea9
GM
3086 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
3087 dpyinfo_refcount = dpyinfo->reference_count;
3088#endif /* GLYPH_DEBUG */
73410c76 3089#ifdef MULTI_KBOARD
e557f19d 3090 FRAME_KBOARD (f) = kb;
73410c76 3091#endif
08a90d6a 3092
9b2956e2
GM
3093 /* These colors will be set anyway later, but it's important
3094 to get the color reference counts right, so initialize them! */
3095 {
3096 Lisp_Object black;
3097 struct gcpro gcpro1;
cefecbcf
GM
3098
3099 /* Function x_decode_color can signal an error. Make
3100 sure to initialize color slots so that we won't try
3101 to free colors we haven't allocated. */
3102 f->output_data.x->foreground_pixel = -1;
3103 f->output_data.x->background_pixel = -1;
3104 f->output_data.x->cursor_pixel = -1;
3105 f->output_data.x->cursor_foreground_pixel = -1;
3106 f->output_data.x->border_pixel = -1;
3107 f->output_data.x->mouse_pixel = -1;
177c0ea7 3108
9b2956e2
GM
3109 black = build_string ("black");
3110 GCPRO1 (black);
3111 f->output_data.x->foreground_pixel
3112 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3113 f->output_data.x->background_pixel
3114 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3115 f->output_data.x->cursor_pixel
3116 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3117 f->output_data.x->cursor_foreground_pixel
3118 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3119 f->output_data.x->border_pixel
3120 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3121 f->output_data.x->mouse_pixel
3122 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3123 UNGCPRO;
3124 }
3125
a59e4f3d
RS
3126 /* Specify the parent under which to make this X window. */
3127
3128 if (!NILP (parent))
3129 {
8c239ac3 3130 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
7556890b 3131 f->output_data.x->explicit_parent = 1;
a59e4f3d
RS
3132 }
3133 else
3134 {
7556890b
RS
3135 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
3136 f->output_data.x->explicit_parent = 0;
a59e4f3d
RS
3137 }
3138
cf177271
JB
3139 /* Set the name; the functions to which we pass f expect the name to
3140 be set. */
3141 if (EQ (name, Qunbound) || NILP (name))
3142 {
08a90d6a 3143 f->name = build_string (dpyinfo->x_id_name);
cf177271
JB
3144 f->explicit_name = 0;
3145 }
3146 else
3147 {
3148 f->name = name;
3149 f->explicit_name = 1;
9ef48a9d
RS
3150 /* use the frame's title when getting resources for this frame. */
3151 specbind (Qx_resource_name, name);
cf177271 3152 }
01f1ba30 3153
01f1ba30
JB
3154 /* Extract the window parameters from the supplied values
3155 that are needed to determine window geometry. */
d387c960
JB
3156 {
3157 Lisp_Object font;
3158
333b20bb 3159 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
2ee3abaa 3160
6817eab4 3161 BLOCK_INPUT;
e5e548e3
RS
3162 /* First, try whatever font the caller has specified. */
3163 if (STRINGP (font))
942ea06d 3164 {
49965a29 3165 tem = Fquery_fontset (font, Qnil);
477f8642 3166 if (STRINGP (tem))
d5db4077 3167 font = x_new_fontset (f, SDATA (tem));
942ea06d 3168 else
d5db4077 3169 font = x_new_font (f, SDATA (font));
942ea06d 3170 }
177c0ea7 3171
e5e548e3 3172 /* Try out a font which we hope has bold and italic variations. */
333b20bb
GM
3173 if (!STRINGP (font))
3174 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
e5e548e3 3175 if (!STRINGP (font))
a6ac02af 3176 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
e5e548e3 3177 if (! STRINGP (font))
a6ac02af 3178 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
e5e548e3
RS
3179 if (! STRINGP (font))
3180 /* This was formerly the first thing tried, but it finds too many fonts
3181 and takes too long. */
3182 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
3183 /* If those didn't work, look for something which will at least work. */
3184 if (! STRINGP (font))
a6ac02af 3185 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
6817eab4
JB
3186 UNBLOCK_INPUT;
3187 if (! STRINGP (font))
e5e548e3
RS
3188 font = build_string ("fixed");
3189
477f8642 3190 x_default_parameter (f, parms, Qfont, font,
333b20bb 3191 "font", "Font", RES_TYPE_STRING);
d387c960 3192 }
9ef48a9d 3193
e3881aa0 3194#ifdef USE_LUCID
82c90203
RS
3195 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
3196 whereby it fails to get any font. */
be786000 3197 xlwmenu_default_font = FRAME_FONT (f);
dd254b21 3198#endif
82c90203 3199
cf177271 3200 x_default_parameter (f, parms, Qborder_width, make_number (2),
333b20bb 3201 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
177c0ea7 3202
4e397688 3203 /* This defaults to 1 in order to match xterm. We recognize either
ddf768c3
JB
3204 internalBorderWidth or internalBorder (which is what xterm calls
3205 it). */
3206 if (NILP (Fassq (Qinternal_border_width, parms)))
3207 {
3208 Lisp_Object value;
3209
abb4b7ec 3210 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
333b20bb 3211 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
ddf768c3
JB
3212 if (! EQ (value, Qunbound))
3213 parms = Fcons (Fcons (Qinternal_border_width, value),
3214 parms);
3215 }
dca97592 3216 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
333b20bb
GM
3217 "internalBorderWidth", "internalBorderWidth",
3218 RES_TYPE_NUMBER);
1ab3d87e 3219 x_default_parameter (f, parms, Qvertical_scroll_bars, Qleft,
333b20bb
GM
3220 "verticalScrollBars", "ScrollBars",
3221 RES_TYPE_SYMBOL);
01f1ba30 3222
b9dc4443 3223 /* Also do the stuff which must be set before the window exists. */
cf177271 3224 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
333b20bb 3225 "foreground", "Foreground", RES_TYPE_STRING);
cf177271 3226 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
0b60fc91 3227 "background", "Background", RES_TYPE_STRING);
cf177271 3228 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
333b20bb 3229 "pointerColor", "Foreground", RES_TYPE_STRING);
cf177271 3230 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
333b20bb 3231 "cursorColor", "Foreground", RES_TYPE_STRING);
cf177271 3232 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
333b20bb 3233 "borderColor", "BorderColor", RES_TYPE_STRING);
d62c8769
GM
3234 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
3235 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
563b67aa
GM
3236 x_default_parameter (f, parms, Qline_spacing, Qnil,
3237 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
b3ba0aa8
KS
3238 x_default_parameter (f, parms, Qleft_fringe, Qnil,
3239 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
3240 x_default_parameter (f, parms, Qright_fringe, Qnil,
3241 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
333b20bb
GM
3242
3243 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
3244 "scrollBarForeground",
3245 "ScrollBarForeground", 1);
3246 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
3247 "scrollBarBackground",
3248 "ScrollBarBackground", 0);
3249
3250 /* Init faces before x_default_parameter is called for scroll-bar
3251 parameters because that function calls x_set_scroll_bar_width,
3252 which calls change_frame_size, which calls Fset_window_buffer,
3253 which runs hooks, which call Fvertical_motion. At the end, we
3254 end up in init_iterator with a null face cache, which should not
3255 happen. */
3256 init_frame_faces (f);
177c0ea7 3257
c7bcb20d 3258 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
333b20bb 3259 "menuBar", "MenuBar", RES_TYPE_NUMBER);
e33455ca 3260 x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
333b20bb 3261 "toolBar", "ToolBar", RES_TYPE_NUMBER);
79873d50 3262 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
333b20bb
GM
3263 "bufferPredicate", "BufferPredicate",
3264 RES_TYPE_SYMBOL);
c2304e02 3265 x_default_parameter (f, parms, Qtitle, Qnil,
333b20bb 3266 "title", "Title", RES_TYPE_STRING);
ea0a1f53
GM
3267 x_default_parameter (f, parms, Qwait_for_wm, Qt,
3268 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN);
49d41073
EZ
3269 x_default_parameter (f, parms, Qfullscreen, Qnil,
3270 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
90eb1019 3271
7556890b 3272 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
35f59f6b 3273
35f59f6b 3274 /* Compute the size of the X window. */
7c0d3ed8 3275 window_prompting = x_figure_window_size (f, parms, 1);
38d22040 3276
495fa05e
GM
3277 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
3278 f->no_split = minibuffer_only || EQ (tem, Qt);
3279
289978b5
LT
3280 x_icon_verify (f, parms);
3281
6a1bcd01 3282 /* Create the X widget or window. */
a7f7d550
FP
3283#ifdef USE_X_TOOLKIT
3284 x_window (f, window_prompting, minibuffer_only);
3285#else
f676886a 3286 x_window (f);
a7f7d550 3287#endif
177c0ea7 3288
f676886a
JB
3289 x_icon (f, parms);
3290 x_make_gc (f);
01f1ba30 3291
495fa05e
GM
3292 /* Now consider the frame official. */
3293 FRAME_X_DISPLAY_INFO (f)->reference_count++;
3294 Vframe_list = Fcons (frame, Vframe_list);
3295
f9942c9e
JB
3296 /* We need to do this after creating the X window, so that the
3297 icon-creation functions can say whose icon they're describing. */
84f25880 3298 x_default_parameter (f, parms, Qicon_type, Qt,
333b20bb 3299 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
f9942c9e 3300
cf177271 3301 x_default_parameter (f, parms, Qauto_raise, Qnil,
333b20bb 3302 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
cf177271 3303 x_default_parameter (f, parms, Qauto_lower, Qnil,
333b20bb 3304 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
dbc4e1c1 3305 x_default_parameter (f, parms, Qcursor_type, Qbox,
333b20bb 3306 "cursorType", "CursorType", RES_TYPE_SYMBOL);
28d7281d
GM
3307 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
3308 "scrollBarWidth", "ScrollBarWidth",
3309 RES_TYPE_NUMBER);
f9942c9e 3310
be786000 3311 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
01f1ba30 3312 Change will not be effected unless different from the current
be786000
KS
3313 FRAME_LINES (f). */
3314 width = FRAME_COLS (f);
3315 height = FRAME_LINES (f);
177c0ea7 3316
be786000
KS
3317 SET_FRAME_COLS (f, 0);
3318 FRAME_LINES (f) = 0;
8938a4fb 3319 change_frame_size (f, height, width, 1, 0, 0);
d043f1a4 3320
488dd4c4 3321#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
495fa05e
GM
3322 /* Create the menu bar. */
3323 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
3324 {
3325 /* If this signals an error, we haven't set size hints for the
3326 frame and we didn't make it visible. */
3327 initialize_frame_menubar (f);
3328
488dd4c4 3329#ifndef USE_GTK
495fa05e
GM
3330 /* This is a no-op, except under Motif where it arranges the
3331 main window for the widgets on it. */
3332 lw_set_main_areas (f->output_data.x->column_widget,
3333 f->output_data.x->menubar_widget,
3334 f->output_data.x->edit_widget);
488dd4c4 3335#endif /* not USE_GTK */
495fa05e 3336 }
488dd4c4 3337#endif /* USE_X_TOOLKIT || USE_GTK */
495fa05e
GM
3338
3339 /* Tell the server what size and position, etc, we want, and how
3340 badly we want them. This should be done after we have the menu
3341 bar so that its size can be taken into account. */
01f1ba30 3342 BLOCK_INPUT;
7989f084 3343 x_wm_set_size_hint (f, window_prompting, 0);
01f1ba30
JB
3344 UNBLOCK_INPUT;
3345
495fa05e
GM
3346 /* Make the window appear on the frame and enable display, unless
3347 the caller says not to. However, with explicit parent, Emacs
3348 cannot control visibility, so don't try. */
7556890b 3349 if (! f->output_data.x->explicit_parent)
a59e4f3d
RS
3350 {
3351 Lisp_Object visibility;
49795535 3352
333b20bb
GM
3353 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
3354 RES_TYPE_SYMBOL);
a59e4f3d
RS
3355 if (EQ (visibility, Qunbound))
3356 visibility = Qt;
49795535 3357
a59e4f3d
RS
3358 if (EQ (visibility, Qicon))
3359 x_iconify_frame (f);
3360 else if (! NILP (visibility))
3361 x_make_frame_visible (f);
3362 else
3363 /* Must have been Qnil. */
3364 ;
3365 }
01f1ba30 3366
231d6cfb
JD
3367 /* Set the WM leader property. GTK does this itself, so this is not
3368 needed when using GTK. */
3369 if (dpyinfo->client_leader_window != 0)
3370 {
3371 BLOCK_INPUT;
3372 XChangeProperty (FRAME_X_DISPLAY (f),
3373 FRAME_OUTER_WINDOW (f),
3374 dpyinfo->Xatom_wm_client_leader,
3375 XA_WINDOW, 32, PropModeReplace,
47c53789 3376 (unsigned char *) &dpyinfo->client_leader_window, 1);
231d6cfb
JD
3377 UNBLOCK_INPUT;
3378 }
3379
225c13a5
KL
3380 /* Initialize `default-minibuffer-frame' in case this is the first
3381 frame on this display device. */
3382 if (FRAME_HAS_MINIBUF_P (f)
3383 && (!FRAMEP (kb->Vdefault_minibuffer_frame)
3384 || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame))))
3385 kb->Vdefault_minibuffer_frame = frame;
3386
495fa05e 3387 UNGCPRO;
9e57df62
GM
3388
3389 /* Make sure windows on this frame appear in calls to next-window
3390 and similar functions. */
3391 Vwindow_list = Qnil;
177c0ea7 3392
9ef48a9d 3393 return unbind_to (count, frame);
01f1ba30
JB
3394}
3395
eaf1eea9 3396
0d17d282
KH
3397/* FRAME is used only to get a handle on the X display. We don't pass the
3398 display info directly because we're called from frame.c, which doesn't
3399 know about that structure. */
e4f79258 3400
87498171 3401Lisp_Object
0d17d282
KH
3402x_get_focus_frame (frame)
3403 struct frame *frame;
87498171 3404{
0d17d282 3405 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
87498171 3406 Lisp_Object xfocus;
0d17d282 3407 if (! dpyinfo->x_focus_frame)
87498171
KH
3408 return Qnil;
3409
0d17d282 3410 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
87498171
KH
3411 return xfocus;
3412}
f0614854 3413
3decc1e7
GM
3414
3415/* In certain situations, when the window manager follows a
3416 click-to-focus policy, there seems to be no way around calling
3417 XSetInputFocus to give another frame the input focus .
3418
3419 In an ideal world, XSetInputFocus should generally be avoided so
3420 that applications don't interfere with the window manager's focus
3421 policy. But I think it's okay to use when it's clearly done
3422 following a user-command. */
3423
3424DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
7ee72033
MB
3425 doc: /* Set the input focus to FRAME.
3426FRAME nil means use the selected frame. */)
3427 (frame)
3decc1e7
GM
3428 Lisp_Object frame;
3429{
3430 struct frame *f = check_x_frame (frame);
3431 Display *dpy = FRAME_X_DISPLAY (f);
3432 int count;
3433
3434 BLOCK_INPUT;
3435 count = x_catch_errors (dpy);
3436 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3437 RevertToParent, CurrentTime);
3438 x_uncatch_errors (dpy, count);
3439 UNBLOCK_INPUT;
177c0ea7 3440
3decc1e7
GM
3441 return Qnil;
3442}
3443
f0614854 3444\f
2d764c78 3445DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
7ee72033
MB
3446 doc: /* Internal function called by `color-defined-p', which see. */)
3447 (color, frame)
b9dc4443 3448 Lisp_Object color, frame;
e12d55b2 3449{
b9dc4443
RS
3450 XColor foo;
3451 FRAME_PTR f = check_x_frame (frame);
e12d55b2 3452
b7826503 3453 CHECK_STRING (color);
b9dc4443 3454
d5db4077 3455 if (x_defined_color (f, SDATA (color), &foo, 0))
e12d55b2
RS
3456 return Qt;
3457 else
3458 return Qnil;
3459}
3460
2d764c78 3461DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
7ee72033
MB
3462 doc: /* Internal function called by `color-values', which see. */)
3463 (color, frame)
b9dc4443 3464 Lisp_Object color, frame;
01f1ba30 3465{
b9dc4443
RS
3466 XColor foo;
3467 FRAME_PTR f = check_x_frame (frame);
3468
b7826503 3469 CHECK_STRING (color);
01f1ba30 3470
d5db4077 3471 if (x_defined_color (f, SDATA (color), &foo, 0))
57c82a63
RS
3472 {
3473 Lisp_Object rgb[3];
3474
3475 rgb[0] = make_number (foo.red);
3476 rgb[1] = make_number (foo.green);
3477 rgb[2] = make_number (foo.blue);
3478 return Flist (3, rgb);
3479 }
01f1ba30
JB
3480 else
3481 return Qnil;
3482}
3483
2d764c78 3484DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
7ee72033
MB
3485 doc: /* Internal function called by `display-color-p', which see. */)
3486 (display)
08a90d6a 3487 Lisp_Object display;
01f1ba30 3488{
08a90d6a 3489 struct x_display_info *dpyinfo = check_x_display_info (display);
11ae94fe 3490
b9dc4443 3491 if (dpyinfo->n_planes <= 2)
01f1ba30
JB
3492 return Qnil;
3493
b9dc4443 3494 switch (dpyinfo->visual->class)
01f1ba30
JB
3495 {
3496 case StaticColor:
3497 case PseudoColor:
3498 case TrueColor:
3499 case DirectColor:
3500 return Qt;
3501
3502 default:
3503 return Qnil;
3504 }
3505}
3506
d0c9d219 3507DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
c061c855 3508 0, 1, 0,
7ee72033 3509 doc: /* Return t if the X display supports shades of gray.
c061c855
GM
3510Note that color displays do support shades of gray.
3511The optional argument DISPLAY specifies which display to ask about.
3512DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3513If omitted or nil, that stands for the selected frame's display. */)
3514 (display)
08a90d6a 3515 Lisp_Object display;
d0c9d219 3516{
08a90d6a 3517 struct x_display_info *dpyinfo = check_x_display_info (display);
d0c9d219 3518
ae6b58f9 3519 if (dpyinfo->n_planes <= 1)
b9dc4443
RS
3520 return Qnil;
3521
ae6b58f9
RS
3522 switch (dpyinfo->visual->class)
3523 {
3524 case StaticColor:
3525 case PseudoColor:
3526 case TrueColor:
3527 case DirectColor:
3528 case StaticGray:
3529 case GrayScale:
3530 return Qt;
3531
3532 default:
3533 return Qnil;
3534 }
d0c9d219
RS
3535}
3536
41beb8fc 3537DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
c061c855 3538 0, 1, 0,
7ee72033 3539 doc: /* Returns the width in pixels of the X display DISPLAY.
c061c855
GM
3540The optional argument DISPLAY specifies which display to ask about.
3541DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3542If omitted or nil, that stands for the selected frame's display. */)
3543 (display)
08a90d6a 3544 Lisp_Object display;
41beb8fc 3545{
08a90d6a 3546 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3547
3548 return make_number (dpyinfo->width);
41beb8fc
RS
3549}
3550
3551DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
c061c855 3552 Sx_display_pixel_height, 0, 1, 0,
7ee72033 3553 doc: /* Returns the height in pixels of the X display DISPLAY.
c061c855
GM
3554The optional argument DISPLAY specifies which display to ask about.
3555DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3556If omitted or nil, that stands for the selected frame's display. */)
3557 (display)
08a90d6a 3558 Lisp_Object display;
41beb8fc 3559{
08a90d6a 3560 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3561
3562 return make_number (dpyinfo->height);
41beb8fc
RS
3563}
3564
3565DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
c061c855 3566 0, 1, 0,
7ee72033 3567 doc: /* Returns the number of bitplanes of the X display DISPLAY.
c061c855
GM
3568The optional argument DISPLAY specifies which display to ask about.
3569DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3570If omitted or nil, that stands for the selected frame's display. */)
3571 (display)
08a90d6a 3572 Lisp_Object display;
41beb8fc 3573{
08a90d6a 3574 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3575
3576 return make_number (dpyinfo->n_planes);
41beb8fc
RS
3577}
3578
3579DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
c061c855 3580 0, 1, 0,
7ee72033 3581 doc: /* Returns the number of color cells of the X display DISPLAY.
c061c855
GM
3582The optional argument DISPLAY specifies which display to ask about.
3583DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3584If omitted or nil, that stands for the selected frame's display. */)
3585 (display)
08a90d6a 3586 Lisp_Object display;
41beb8fc 3587{
08a90d6a 3588 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443 3589
334faa08
JD
3590 int nr_planes = DisplayPlanes (dpyinfo->display,
3591 XScreenNumberOfScreen (dpyinfo->screen));
3592
3593 /* Truncate nr_planes to 24 to avoid integer overflow.
3594 Some displays says 32, but only 24 bits are actually significant.
3595 There are only very few and rare video cards that have more than
3596 24 significant bits. Also 24 bits is more than 16 million colors,
3597 it "should be enough for everyone". */
3598 if (nr_planes > 24) nr_planes = 24;
3599
3600 return make_number (1 << nr_planes);
41beb8fc
RS
3601}
3602
9d317b2c
RS
3603DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
3604 Sx_server_max_request_size,
c061c855 3605 0, 1, 0,
7ee72033 3606 doc: /* Returns the maximum request size of the X server of display DISPLAY.
c061c855
GM
3607The optional argument DISPLAY specifies which display to ask about.
3608DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3609If omitted or nil, that stands for the selected frame's display. */)
3610 (display)
08a90d6a 3611 Lisp_Object display;
9d317b2c 3612{
08a90d6a 3613 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3614
3615 return make_number (MAXREQUEST (dpyinfo->display));
9d317b2c
RS
3616}
3617
41beb8fc 3618DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
95d62d8a
RS
3619 doc: /* Returns the "vendor ID" string of the X server of display DISPLAY.
3620\(Labelling every distributor as a "vendor" embodies the false assumption
3621that operating systems cannot be developed and distributed noncommercially.)
c061c855
GM
3622The optional argument DISPLAY specifies which display to ask about.
3623DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3624If omitted or nil, that stands for the selected frame's display. */)
3625 (display)
08a90d6a 3626 Lisp_Object display;
41beb8fc 3627{
08a90d6a 3628 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3629 char *vendor = ServerVendor (dpyinfo->display);
3630
41beb8fc
RS
3631 if (! vendor) vendor = "";
3632 return build_string (vendor);
3633}
3634
3635DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
7ee72033 3636 doc: /* Returns the version numbers of the X server of display DISPLAY.
c061c855 3637The value is a list of three integers: the major and minor
95d62d8a 3638version numbers of the X Protocol in use, and the distributor-specific release
c061c855
GM
3639number. See also the function `x-server-vendor'.
3640
3641The optional argument DISPLAY specifies which display to ask about.
3642DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3643If omitted or nil, that stands for the selected frame's display. */)
3644 (display)
08a90d6a 3645 Lisp_Object display;
41beb8fc 3646{
08a90d6a 3647 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443 3648 Display *dpy = dpyinfo->display;
11ae94fe 3649
41beb8fc
RS
3650 return Fcons (make_number (ProtocolVersion (dpy)),
3651 Fcons (make_number (ProtocolRevision (dpy)),
3652 Fcons (make_number (VendorRelease (dpy)), Qnil)));
3653}
3654
3655DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
7ee72033 3656 doc: /* Return the number of screens on the X server of display DISPLAY.
c061c855
GM
3657The optional argument DISPLAY specifies which display to ask about.
3658DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3659If omitted or nil, that stands for the selected frame's display. */)
3660 (display)
08a90d6a 3661 Lisp_Object display;
41beb8fc 3662{
08a90d6a 3663 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3664
3665 return make_number (ScreenCount (dpyinfo->display));
41beb8fc
RS
3666}
3667
3668DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
7ee72033 3669 doc: /* Return the height in millimeters of the X display DISPLAY.
c061c855
GM
3670The optional argument DISPLAY specifies which display to ask about.
3671DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3672If omitted or nil, that stands for the selected frame's display. */)
3673 (display)
08a90d6a 3674 Lisp_Object display;
41beb8fc 3675{
08a90d6a 3676 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3677
3678 return make_number (HeightMMOfScreen (dpyinfo->screen));
41beb8fc
RS
3679}
3680
3681DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
7ee72033 3682 doc: /* Return the width in millimeters of the X display DISPLAY.
c061c855
GM
3683The optional argument DISPLAY specifies which display to ask about.
3684DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3685If omitted or nil, that stands for the selected frame's display. */)
3686 (display)
08a90d6a 3687 Lisp_Object display;
41beb8fc 3688{
08a90d6a 3689 struct x_display_info *dpyinfo = check_x_display_info (display);
b9dc4443
RS
3690
3691 return make_number (WidthMMOfScreen (dpyinfo->screen));
41beb8fc
RS
3692}
3693
3694DEFUN ("x-display-backing-store", Fx_display_backing_store,
c061c855 3695 Sx_display_backing_store, 0, 1, 0,
7ee72033 3696 doc: /* Returns an indication of whether X display DISPLAY does backing store.
c061c855
GM
3697The value may be `always', `when-mapped', or `not-useful'.
3698The optional argument DISPLAY specifies which display to ask about.
3699DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3700If omitted or nil, that stands for the selected frame's display. */)
3701 (display)
08a90d6a 3702 Lisp_Object display;
41beb8fc 3703{
08a90d6a 3704 struct x_display_info *dpyinfo = check_x_display_info (display);
8ec8a5ec 3705 Lisp_Object result;
11ae94fe 3706
b9dc4443 3707 switch (DoesBackingStore (dpyinfo->screen))
41beb8fc
RS
3708 {
3709 case Always:
8ec8a5ec
GM
3710 result = intern ("always");
3711 break;
41beb8fc
RS
3712
3713 case WhenMapped:
8ec8a5ec
GM
3714 result = intern ("when-mapped");
3715 break;
41beb8fc
RS
3716
3717 case NotUseful:
8ec8a5ec
GM
3718 result = intern ("not-useful");
3719 break;
41beb8fc
RS
3720
3721 default:
3722 error ("Strange value for BackingStore parameter of screen");
8ec8a5ec 3723 result = Qnil;
41beb8fc 3724 }
8ec8a5ec
GM
3725
3726 return result;
41beb8fc
RS
3727}
3728
3729DEFUN ("x-display-visual-class", Fx_display_visual_class,
c061c855 3730 Sx_display_visual_class, 0, 1, 0,
7ee72033 3731 doc: /* Return the visual class of the X display DISPLAY.
c061c855
GM
3732The value is one of the symbols `static-gray', `gray-scale',
3733`static-color', `pseudo-color', `true-color', or `direct-color'.
3734
3735The optional argument DISPLAY specifies which display to ask about.
3736DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3737If omitted or nil, that stands for the selected frame's display. */)
3738 (display)
08a90d6a 3739 Lisp_Object display;
41beb8fc 3740{
08a90d6a 3741 struct x_display_info *dpyinfo = check_x_display_info (display);
8ec8a5ec 3742 Lisp_Object result;
11ae94fe 3743
b9dc4443 3744 switch (dpyinfo->visual->class)
41beb8fc 3745 {
8ec8a5ec
GM
3746 case StaticGray:
3747 result = intern ("static-gray");
3748 break;
3749 case GrayScale:
3750 result = intern ("gray-scale");
3751 break;
3752 case StaticColor:
3753 result = intern ("static-color");
3754 break;
3755 case PseudoColor:
3756 result = intern ("pseudo-color");
3757 break;
3758 case TrueColor:
3759 result = intern ("true-color");
3760 break;
3761 case DirectColor:
3762 result = intern ("direct-color");
3763 break;
41beb8fc
RS
3764 default:
3765 error ("Display has an unknown visual class");
8ec8a5ec 3766 result = Qnil;
41beb8fc 3767 }
177c0ea7 3768
8ec8a5ec 3769 return result;
41beb8fc
RS
3770}
3771
3772DEFUN ("x-display-save-under", Fx_display_save_under,
c061c855 3773 Sx_display_save_under, 0, 1, 0,
7ee72033 3774 doc: /* Returns t if the X display DISPLAY supports the save-under feature.
c061c855
GM
3775The optional argument DISPLAY specifies which display to ask about.
3776DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
3777If omitted or nil, that stands for the selected frame's display. */)
3778 (display)
08a90d6a 3779 Lisp_Object display;
41beb8fc 3780{
08a90d6a 3781 struct x_display_info *dpyinfo = check_x_display_info (display);
11ae94fe 3782
b9dc4443 3783 if (DoesSaveUnders (dpyinfo->screen) == True)
41beb8fc
RS
3784 return Qt;
3785 else
3786 return Qnil;
3787}
3788\f
b9dc4443 3789int
55caf99c
RS
3790x_pixel_width (f)
3791 register struct frame *f;
01f1ba30 3792{
be786000 3793 return FRAME_PIXEL_WIDTH (f);
01f1ba30
JB
3794}
3795
b9dc4443 3796int
55caf99c
RS
3797x_pixel_height (f)
3798 register struct frame *f;
01f1ba30 3799{
be786000 3800 return FRAME_PIXEL_HEIGHT (f);
55caf99c
RS
3801}
3802
b9dc4443 3803int
55caf99c
RS
3804x_char_width (f)
3805 register struct frame *f;
3806{
be786000 3807 return FRAME_COLUMN_WIDTH (f);
55caf99c
RS
3808}
3809
b9dc4443 3810int
55caf99c
RS
3811x_char_height (f)
3812 register struct frame *f;
3813{
be786000 3814 return FRAME_LINE_HEIGHT (f);
01f1ba30 3815}
b9dc4443
RS
3816
3817int
f03f2489
RS
3818x_screen_planes (f)
3819 register struct frame *f;
b9dc4443 3820{
f03f2489 3821 return FRAME_X_DISPLAY_INFO (f)->n_planes;
b9dc4443 3822}
01f1ba30 3823
a6ad00c0
GM
3824
3825\f
3826/************************************************************************
3827 X Displays
3828 ************************************************************************/
3829
01f1ba30 3830\f
a6ad00c0
GM
3831/* Mapping visual names to visuals. */
3832
3833static struct visual_class
3834{
3835 char *name;
3836 int class;
3837}
3838visual_classes[] =
3839{
3840 {"StaticGray", StaticGray},
3841 {"GrayScale", GrayScale},
3842 {"StaticColor", StaticColor},
3843 {"PseudoColor", PseudoColor},
3844 {"TrueColor", TrueColor},
3845 {"DirectColor", DirectColor},
9908a324 3846 {NULL, 0}
a6ad00c0
GM
3847};
3848
3849
404daac1 3850#ifndef HAVE_XSCREENNUMBEROFSCREEN
a6ad00c0
GM
3851
3852/* Value is the screen number of screen SCR. This is a substitute for
3853 the X function with the same name when that doesn't exist. */
3854
404daac1
RS
3855int
3856XScreenNumberOfScreen (scr)
3857 register Screen *scr;
3858{
a6ad00c0
GM
3859 Display *dpy = scr->display;
3860 int i;
3df34fdb 3861
a6ad00c0 3862 for (i = 0; i < dpy->nscreens; ++i)
fbd5ceb2 3863 if (scr == dpy->screens + i)
a6ad00c0 3864 break;
404daac1 3865
a6ad00c0 3866 return i;
404daac1 3867}
a6ad00c0 3868
404daac1
RS
3869#endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3870
01f1ba30 3871
a6ad00c0
GM
3872/* Select the visual that should be used on display DPYINFO. Set
3873 members of DPYINFO appropriately. Called from x_term_init. */
fe24a618 3874
a6ad00c0
GM
3875void
3876select_visual (dpyinfo)
3877 struct x_display_info *dpyinfo;
3878{
3879 Display *dpy = dpyinfo->display;
3880 Screen *screen = dpyinfo->screen;
3881 Lisp_Object value;
fe24a618 3882
a6ad00c0
GM
3883 /* See if a visual is specified. */
3884 value = display_x_get_resource (dpyinfo,
3885 build_string ("visualClass"),
3886 build_string ("VisualClass"),
3887 Qnil, Qnil);
3888 if (STRINGP (value))
3889 {
3890 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
3891 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
3892 depth, a decimal number. NAME is compared with case ignored. */
d5db4077 3893 char *s = (char *) alloca (SBYTES (value) + 1);
a6ad00c0
GM
3894 char *dash;
3895 int i, class = -1;
3896 XVisualInfo vinfo;
3897
d5db4077 3898 strcpy (s, SDATA (value));
a6ad00c0
GM
3899 dash = index (s, '-');
3900 if (dash)
3901 {
3902 dpyinfo->n_planes = atoi (dash + 1);
3903 *dash = '\0';
3904 }
3905 else
3906 /* We won't find a matching visual with depth 0, so that
3907 an error will be printed below. */
3908 dpyinfo->n_planes = 0;
f0614854 3909
a6ad00c0
GM
3910 /* Determine the visual class. */
3911 for (i = 0; visual_classes[i].name; ++i)
3912 if (xstricmp (s, visual_classes[i].name) == 0)
3913 {
3914 class = visual_classes[i].class;
3915 break;
3916 }
01f1ba30 3917
a6ad00c0
GM
3918 /* Look up a matching visual for the specified class. */
3919 if (class == -1
3920 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
3921 dpyinfo->n_planes, class, &vinfo))
d5db4077 3922 fatal ("Invalid visual specification `%s'", SDATA (value));
177c0ea7 3923
a6ad00c0
GM
3924 dpyinfo->visual = vinfo.visual;
3925 }
01f1ba30
JB
3926 else
3927 {
a6ad00c0
GM
3928 int n_visuals;
3929 XVisualInfo *vinfo, vinfo_template;
177c0ea7 3930
a6ad00c0
GM
3931 dpyinfo->visual = DefaultVisualOfScreen (screen);
3932
3933#ifdef HAVE_X11R4
3934 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
3935#else
3936 vinfo_template.visualid = dpyinfo->visual->visualid;
3937#endif
3938 vinfo_template.screen = XScreenNumberOfScreen (screen);
3939 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
3940 &vinfo_template, &n_visuals);
3941 if (n_visuals != 1)
3942 fatal ("Can't get proper X visual info");
3943
94ac875b 3944 dpyinfo->n_planes = vinfo->depth;
a6ad00c0
GM
3945 XFree ((char *) vinfo);
3946 }
01f1ba30 3947}
01f1ba30 3948
a6ad00c0 3949
b9dc4443
RS
3950/* Return the X display structure for the display named NAME.
3951 Open a new connection if necessary. */
3952
3953struct x_display_info *
3954x_display_info_for_name (name)
3955 Lisp_Object name;
3956{
08a90d6a 3957 Lisp_Object names;
b9dc4443
RS
3958 struct x_display_info *dpyinfo;
3959
b7826503 3960 CHECK_STRING (name);
b9dc4443 3961
806048df
RS
3962 if (! EQ (Vwindow_system, intern ("x")))
3963 error ("Not using X Windows");
3964
08a90d6a
RS
3965 for (dpyinfo = x_display_list, names = x_display_name_list;
3966 dpyinfo;
8e713be6 3967 dpyinfo = dpyinfo->next, names = XCDR (names))
b9dc4443
RS
3968 {
3969 Lisp_Object tem;
8e713be6 3970 tem = Fstring_equal (XCAR (XCAR (names)), name);
08a90d6a 3971 if (!NILP (tem))
b9dc4443
RS
3972 return dpyinfo;
3973 }
3974
b7975ee4
KH
3975 /* Use this general default value to start with. */
3976 Vx_resource_name = Vinvocation_name;
3977
b9dc4443
RS
3978 validate_x_resource_name ();
3979
9b207e8e 3980 dpyinfo = x_term_init (name, (char *)0,
d5db4077 3981 (char *) SDATA (Vx_resource_name));
b9dc4443 3982
08a90d6a 3983 if (dpyinfo == 0)
d5db4077 3984 error ("Cannot connect to X server %s", SDATA (name));
08a90d6a 3985
b9dc4443
RS
3986 x_in_use = 1;
3987 XSETFASTINT (Vwindow_system_version, 11);
3988
3989 return dpyinfo;
3990}
3991
a6ad00c0 3992
01f1ba30 3993DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
c061c855 3994 1, 3, 0,
7ee72033 3995 doc: /* Open a connection to an X server.
c061c855
GM
3996DISPLAY is the name of the display to connect to.
3997Optional second arg XRM-STRING is a string of resources in xrdb format.
3998If the optional third arg MUST-SUCCEED is non-nil,
7ee72033
MB
3999terminate Emacs if we can't open the connection. */)
4000 (display, xrm_string, must_succeed)
08a90d6a 4001 Lisp_Object display, xrm_string, must_succeed;
01f1ba30 4002{
01f1ba30 4003 unsigned char *xrm_option;
b9dc4443 4004 struct x_display_info *dpyinfo;
01f1ba30 4005
b7826503 4006 CHECK_STRING (display);
d387c960 4007 if (! NILP (xrm_string))
b7826503 4008 CHECK_STRING (xrm_string);
01f1ba30 4009
806048df
RS
4010 if (! EQ (Vwindow_system, intern ("x")))
4011 error ("Not using X Windows");
4012
d387c960 4013 if (! NILP (xrm_string))
d5db4077 4014 xrm_option = (unsigned char *) SDATA (xrm_string);
01f1ba30
JB
4015 else
4016 xrm_option = (unsigned char *) 0;
d387c960
JB
4017
4018 validate_x_resource_name ();
4019
e1b1bee8 4020 /* This is what opens the connection and sets x_current_display.
b9dc4443
RS
4021 This also initializes many symbols, such as those used for input. */
4022 dpyinfo = x_term_init (display, xrm_option,
d5db4077 4023 (char *) SDATA (Vx_resource_name));
f1c16f36 4024
08a90d6a
RS
4025 if (dpyinfo == 0)
4026 {
4027 if (!NILP (must_succeed))
10ffbc14
GM
4028 fatal ("Cannot connect to X server %s.\n\
4029Check the DISPLAY environment variable or use `-d'.\n\
842a9389
JB
4030Also use the `xauth' program to verify that you have the proper\n\
4031authorization information needed to connect the X server.\n\
bf770132 4032An insecure way to solve the problem may be to use `xhost'.\n",
d5db4077 4033 SDATA (display));
08a90d6a 4034 else
d5db4077 4035 error ("Cannot connect to X server %s", SDATA (display));
08a90d6a
RS
4036 }
4037
b9dc4443 4038 x_in_use = 1;
01f1ba30 4039
b9dc4443 4040 XSETFASTINT (Vwindow_system_version, 11);
01f1ba30
JB
4041 return Qnil;
4042}
4043
08a90d6a
RS
4044DEFUN ("x-close-connection", Fx_close_connection,
4045 Sx_close_connection, 1, 1, 0,
7ee72033 4046 doc: /* Close the connection to DISPLAY's X server.
c061c855 4047For DISPLAY, specify either a frame or a display name (a string).
7ee72033
MB
4048If DISPLAY is nil, that stands for the selected frame's display. */)
4049 (display)
c061c855 4050 Lisp_Object display;
01f1ba30 4051{
08a90d6a 4052 struct x_display_info *dpyinfo = check_x_display_info (display);
08a90d6a 4053 int i;
3457bc6e 4054
08a90d6a
RS
4055 if (dpyinfo->reference_count > 0)
4056 error ("Display still has frames on it");
01f1ba30 4057
08a90d6a
RS
4058 BLOCK_INPUT;
4059 /* Free the fonts in the font table. */
4060 for (i = 0; i < dpyinfo->n_fonts; i++)
333b20bb
GM
4061 if (dpyinfo->font_table[i].name)
4062 {
333b20bb
GM
4063 XFreeFont (dpyinfo->display, dpyinfo->font_table[i].font);
4064 }
4065
08a90d6a
RS
4066 x_destroy_all_bitmaps (dpyinfo);
4067 XSetCloseDownMode (dpyinfo->display, DestroyAll);
82c90203
RS
4068
4069#ifdef USE_X_TOOLKIT
4070 XtCloseDisplay (dpyinfo->display);
4071#else
08a90d6a 4072 XCloseDisplay (dpyinfo->display);
82c90203 4073#endif
08a90d6a
RS
4074
4075 x_delete_display (dpyinfo);
4076 UNBLOCK_INPUT;
3457bc6e 4077
01f1ba30
JB
4078 return Qnil;
4079}
4080
08a90d6a 4081DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
7ee72033
MB
4082 doc: /* Return the list of display names that Emacs has connections to. */)
4083 ()
08a90d6a
RS
4084{
4085 Lisp_Object tail, result;
4086
4087 result = Qnil;
8e713be6
KR
4088 for (tail = x_display_name_list; ! NILP (tail); tail = XCDR (tail))
4089 result = Fcons (XCAR (XCAR (tail)), result);
08a90d6a
RS
4090
4091 return result;
4092}
4093
4094DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
7ee72033 4095 doc: /* If ON is non-nil, report X errors as soon as the erring request is made.
c061c855
GM
4096If ON is nil, allow buffering of requests.
4097Turning on synchronization prohibits the Xlib routines from buffering
4098requests and seriously degrades performance, but makes debugging much
4099easier.
4100The optional second argument DISPLAY specifies which display to act on.
4101DISPLAY should be either a frame or a display name (a string).
7ee72033
MB
4102If DISPLAY is omitted or nil, that stands for the selected frame's display. */)
4103 (on, display)
08a90d6a 4104 Lisp_Object display, on;
01f1ba30 4105{
08a90d6a 4106 struct x_display_info *dpyinfo = check_x_display_info (display);
11ae94fe 4107
b9dc4443 4108 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
01f1ba30
JB
4109
4110 return Qnil;
4111}
4112
b9dc4443 4113/* Wait for responses to all X commands issued so far for frame F. */
6b7b1820
RS
4114
4115void
b9dc4443
RS
4116x_sync (f)
4117 FRAME_PTR f;
6b7b1820 4118{
4e87f4d2 4119 BLOCK_INPUT;
b9dc4443 4120 XSync (FRAME_X_DISPLAY (f), False);
4e87f4d2 4121 UNBLOCK_INPUT;
6b7b1820 4122}
333b20bb 4123
01f1ba30 4124\f
333b20bb 4125/***********************************************************************
7a060cd4 4126 Window properties
333b20bb 4127 ***********************************************************************/
f1c16f36 4128
7a060cd4
KS
4129DEFUN ("x-change-window-property", Fx_change_window_property,
4130 Sx_change_window_property, 2, 6, 0,
4131 doc: /* Change window property PROP to VALUE on the X window of FRAME.
4132PROP must be a string.
4133VALUE may be a string or a list of conses, numbers and/or strings.
4134If an element in the list is a string, it is converted to
4135an Atom and the value of the Atom is used. If an element is a cons,
4136it is converted to a 32 bit number where the car is the 16 top bits and the
4137cdr is the lower 16 bits.
4138FRAME nil or omitted means use the selected frame.
4139If TYPE is given and non-nil, it is the name of the type of VALUE.
4140If TYPE is not given or nil, the type is STRING.
4141FORMAT gives the size in bits of each element if VALUE is a list.
4142It must be one of 8, 16 or 32.
4143If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4144If OUTER_P is non-nil, the property is changed for the outer X window of
4145FRAME. Default is to change on the edit X window.
333b20bb 4146
7a060cd4
KS
4147Value is VALUE. */)
4148 (prop, value, frame, type, format, outer_p)
4149 Lisp_Object prop, value, frame, type, format, outer_p;
4150{
4151 struct frame *f = check_x_frame (frame);
4152 Atom prop_atom;
4153 Atom target_type = XA_STRING;
4154 int element_format = 8;
4155 unsigned char *data;
4156 int nelements;
4157 Window w;
333b20bb 4158
7a060cd4 4159 CHECK_STRING (prop);
333b20bb 4160
7a060cd4
KS
4161 if (! NILP (format))
4162 {
4163 CHECK_NUMBER (format);
4164 element_format = XFASTINT (format);
333b20bb 4165
7a060cd4
KS
4166 if (element_format != 8 && element_format != 16
4167 && element_format != 32)
4168 error ("FORMAT must be one of 8, 16 or 32");
4169 }
333b20bb 4170
7a060cd4
KS
4171 if (CONSP (value))
4172 {
4173 nelements = x_check_property_data (value);
4174 if (nelements == -1)
4175 error ("Bad data in VALUE, must be number, string or cons");
333b20bb 4176
7a060cd4
KS
4177 if (element_format == 8)
4178 data = (unsigned char *) xmalloc (nelements);
4179 else if (element_format == 16)
4180 data = (unsigned char *) xmalloc (nelements*2);
fede04ef
JD
4181 else /* format == 32 */
4182 /* The man page for XChangeProperty:
4183 "If the specified format is 32, the property data must be a
4184 long array."
4185 This applies even if long is more than 64 bits. The X library
4186 converts to 32 bits before sending to the X server. */
4187 data = (unsigned char *) xmalloc (nelements * sizeof(long));
333b20bb 4188
7a060cd4
KS
4189 x_fill_property_data (FRAME_X_DISPLAY (f), value, data, element_format);
4190 }
4191 else
4192 {
4193 CHECK_STRING (value);
4194 data = SDATA (value);
4195 nelements = SCHARS (value);
4196 }
333b20bb 4197
7a060cd4
KS
4198 BLOCK_INPUT;
4199 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4200 if (! NILP (type))
4201 {
4202 CHECK_STRING (type);
4203 target_type = XInternAtom (FRAME_X_DISPLAY (f), SDATA (type), False);
4204 }
333b20bb 4205
7a060cd4
KS
4206 if (! NILP (outer_p)) w = FRAME_OUTER_WINDOW (f);
4207 else w = FRAME_X_WINDOW (f);
5b3f8550 4208
7a060cd4
KS
4209 XChangeProperty (FRAME_X_DISPLAY (f), w,
4210 prop_atom, target_type, element_format, PropModeReplace,
4211 data, nelements);
333b20bb 4212
7a060cd4 4213 if (CONSP (value)) xfree (data);
333b20bb 4214
7a060cd4
KS
4215 /* Make sure the property is set when we return. */
4216 XFlush (FRAME_X_DISPLAY (f));
4217 UNBLOCK_INPUT;
333b20bb 4218
7a060cd4 4219 return value;
333b20bb
GM
4220}
4221
4222
7a060cd4
KS
4223DEFUN ("x-delete-window-property", Fx_delete_window_property,
4224 Sx_delete_window_property, 1, 2, 0,
4225 doc: /* Remove window property PROP from X window of FRAME.
4226FRAME nil or omitted means use the selected frame. Value is PROP. */)
4227 (prop, frame)
4228 Lisp_Object prop, frame;
333b20bb 4229{
7a060cd4
KS
4230 struct frame *f = check_x_frame (frame);
4231 Atom prop_atom;
333b20bb 4232
7a060cd4
KS
4233 CHECK_STRING (prop);
4234 BLOCK_INPUT;
4235 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
4236 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
4237
4238 /* Make sure the property is removed when we return. */
4239 XFlush (FRAME_X_DISPLAY (f));
4240 UNBLOCK_INPUT;
333b20bb 4241
7a060cd4 4242 return prop;
333b20bb
GM
4243}
4244
4245
7a060cd4
KS
4246DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
4247 1, 6, 0,
4248 doc: /* Value is the value of window property PROP on FRAME.
4249If FRAME is nil or omitted, use the selected frame.
4250If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4251is the name of the Atom that denotes the type expected.
4252If SOURCE is non-nil, get the property on that window instead of from
4253FRAME. The number 0 denotes the root window.
4254If DELETE_P is non-nil, delete the property after retreiving it.
4255If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
b4715a72
JD
4256
4257Value is nil if FRAME hasn't a property with name PROP or if PROP has
4258no value of TYPE. */)
4259 (prop, frame, type, source, delete_p, vector_ret_p)
4260 Lisp_Object prop, frame, type, source, delete_p, vector_ret_p;
333b20bb
GM
4261{
4262 struct frame *f = check_x_frame (frame);
4263 Atom prop_atom;
4264 int rc;
4265 Lisp_Object prop_value = Qnil;
a3db4b26 4266 unsigned char *tmp_data = NULL;
333b20bb 4267 Atom actual_type;
b4715a72 4268 Atom target_type = XA_STRING;
333b20bb
GM
4269 int actual_format;
4270 unsigned long actual_size, bytes_remaining;
b4715a72
JD
4271 Window target_window = FRAME_X_WINDOW (f);
4272 struct gcpro gcpro1;
333b20bb 4273
b4715a72 4274 GCPRO1 (prop_value);
b7826503 4275 CHECK_STRING (prop);
b4715a72
JD
4276
4277 if (! NILP (source))
4278 {
4279 if (NUMBERP (source))
4280 {
4281 if (FLOATP (source))
4282 target_window = (Window) XFLOAT (source);
4283 else
4284 target_window = XFASTINT (source);
4285
4286 if (target_window == 0)
4287 target_window = FRAME_X_DISPLAY_INFO (f)->root_window;
4288 }
4289 else if (CONSP (source))
4290 target_window = cons_to_long (source);
4291 }
4292
333b20bb 4293 BLOCK_INPUT;
b4715a72
JD
4294 if (STRINGP (type))
4295 {
4296 if (strcmp ("AnyPropertyType", SDATA (type)) == 0)
4297 target_type = AnyPropertyType;
4298 else
4299 target_type = XInternAtom (FRAME_X_DISPLAY (f), SDATA (type), False);
4300 }
4301
d5db4077 4302 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
b4715a72
JD
4303 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
4304 prop_atom, 0, 0, False, target_type,
333b20bb 4305 &actual_type, &actual_format, &actual_size,
a3db4b26 4306 &bytes_remaining, &tmp_data);
333b20bb
GM
4307 if (rc == Success)
4308 {
4309 int size = bytes_remaining;
4310
4311 XFree (tmp_data);
4312 tmp_data = NULL;
4313
b4715a72 4314 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), target_window,
333b20bb 4315 prop_atom, 0, bytes_remaining,
b4715a72 4316 ! NILP (delete_p), target_type,
177c0ea7
JB
4317 &actual_type, &actual_format,
4318 &actual_size, &bytes_remaining,
a3db4b26 4319 &tmp_data);
4c8c7926 4320 if (rc == Success && tmp_data)
b4715a72 4321 {
fede04ef
JD
4322 /* The man page for XGetWindowProperty says:
4323 "If the returned format is 32, the returned data is represented
4324 as a long array and should be cast to that type to obtain the
4325 elements."
4326 This applies even if long is more than 32 bits, the X library
4327 converts from 32 bit elements received from the X server to long
4328 and passes the long array to us. Thus, for that case bcopy can not
4329 be used. We convert to a 32 bit type here, because so much code
4330 assume on that.
4331
4332 The bytes and offsets passed to XGetWindowProperty refers to the
4333 property and those are indeed in 32 bit quantities if format is
4334 32. */
4335
4336 if (actual_format == 32 && actual_format < BITS_PER_LONG)
4337 {
4338 unsigned long i;
4339 int *idata = (int *) tmp_data;
4340 long *ldata = (long *) tmp_data;
4341
4342 for (i = 0; i < actual_size; ++i)
a3db4b26 4343 idata[i] = (int) ldata[i];
fede04ef
JD
4344 }
4345
b4715a72
JD
4346 if (NILP (vector_ret_p))
4347 prop_value = make_string (tmp_data, size);
4348 else
4349 prop_value = x_property_data_to_lisp (f,
a3db4b26 4350 tmp_data,
b4715a72
JD
4351 actual_type,
4352 actual_format,
4353 actual_size);
4354 }
333b20bb 4355
b4715a72 4356 if (tmp_data) XFree (tmp_data);
333b20bb
GM
4357 }
4358
4359 UNBLOCK_INPUT;
b4715a72 4360 UNGCPRO;
333b20bb
GM
4361 return prop_value;
4362}
4363
4364
4365\f
4366/***********************************************************************
4367 Busy cursor
4368 ***********************************************************************/
4369
4ae9a85e 4370/* If non-null, an asynchronous timer that, when it expires, displays
0af913d7 4371 an hourglass cursor on all frames. */
333b20bb 4372
0af913d7 4373static struct atimer *hourglass_atimer;
333b20bb 4374
0af913d7 4375/* Non-zero means an hourglass cursor is currently shown. */
333b20bb 4376
0af913d7 4377static int hourglass_shown_p;
333b20bb 4378
0af913d7 4379/* Number of seconds to wait before displaying an hourglass cursor. */
333b20bb 4380
0af913d7 4381static Lisp_Object Vhourglass_delay;
333b20bb 4382
0af913d7 4383/* Default number of seconds to wait before displaying an hourglass
4ae9a85e
GM
4384 cursor. */
4385
0af913d7 4386#define DEFAULT_HOURGLASS_DELAY 1
4ae9a85e
GM
4387
4388/* Function prototypes. */
4389
0af913d7
GM
4390static void show_hourglass P_ ((struct atimer *));
4391static void hide_hourglass P_ ((void));
4ae9a85e 4392
83c31c8d
JD
4393/* Return non-zero if houglass timer has been started or hourglass is shown. */
4394
4395int
4396hourglass_started ()
4397{
4398 return hourglass_shown_p || hourglass_atimer != NULL;
4399}
4400
4ae9a85e 4401
0af913d7 4402/* Cancel a currently active hourglass timer, and start a new one. */
4ae9a85e
GM
4403
4404void
0af913d7 4405start_hourglass ()
333b20bb 4406{
4ae9a85e 4407 EMACS_TIME delay;
3caa99d3 4408 int secs, usecs = 0;
177c0ea7 4409
a790bcd4
TTN
4410 /* Don't bother for ttys. */
4411 if (NILP (Vwindow_system))
4412 return;
4413
0af913d7 4414 cancel_hourglass ();
4ae9a85e 4415
0af913d7
GM
4416 if (INTEGERP (Vhourglass_delay)
4417 && XINT (Vhourglass_delay) > 0)
4418 secs = XFASTINT (Vhourglass_delay);
4419 else if (FLOATP (Vhourglass_delay)
4420 && XFLOAT_DATA (Vhourglass_delay) > 0)
3caa99d3
GM
4421 {
4422 Lisp_Object tem;
0af913d7 4423 tem = Ftruncate (Vhourglass_delay, Qnil);
3caa99d3 4424 secs = XFASTINT (tem);
0af913d7 4425 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
3caa99d3 4426 }
4ae9a85e 4427 else
0af913d7 4428 secs = DEFAULT_HOURGLASS_DELAY;
177c0ea7 4429
3caa99d3 4430 EMACS_SET_SECS_USECS (delay, secs, usecs);
0af913d7
GM
4431 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
4432 show_hourglass, NULL);
4ae9a85e
GM
4433}
4434
4435
0af913d7 4436/* Cancel the hourglass cursor timer if active, hide a busy cursor if
4ae9a85e
GM
4437 shown. */
4438
4439void
0af913d7 4440cancel_hourglass ()
4ae9a85e 4441{
0af913d7 4442 if (hourglass_atimer)
99f01f62 4443 {
0af913d7
GM
4444 cancel_atimer (hourglass_atimer);
4445 hourglass_atimer = NULL;
99f01f62 4446 }
177c0ea7 4447
0af913d7
GM
4448 if (hourglass_shown_p)
4449 hide_hourglass ();
4ae9a85e
GM
4450}
4451
4452
0af913d7
GM
4453/* Timer function of hourglass_atimer. TIMER is equal to
4454 hourglass_atimer.
4ae9a85e 4455
0af913d7
GM
4456 Display an hourglass pointer on all frames by mapping the frames'
4457 hourglass_window. Set the hourglass_p flag in the frames'
4458 output_data.x structure to indicate that an hourglass cursor is
4459 shown on the frames. */
4ae9a85e
GM
4460
4461static void
0af913d7 4462show_hourglass (timer)
4ae9a85e
GM
4463 struct atimer *timer;
4464{
4465 /* The timer implementation will cancel this timer automatically
0af913d7 4466 after this function has run. Set hourglass_atimer to null
4ae9a85e 4467 so that we know the timer doesn't have to be canceled. */
0af913d7 4468 hourglass_atimer = NULL;
4ae9a85e 4469
0af913d7 4470 if (!hourglass_shown_p)
333b20bb
GM
4471 {
4472 Lisp_Object rest, frame;
177c0ea7 4473
4ae9a85e 4474 BLOCK_INPUT;
177c0ea7 4475
333b20bb 4476 FOR_EACH_FRAME (rest, frame)
5f7a1890
GM
4477 {
4478 struct frame *f = XFRAME (frame);
177c0ea7 4479
5f7a1890
GM
4480 if (FRAME_LIVE_P (f) && FRAME_X_P (f) && FRAME_X_DISPLAY (f))
4481 {
4482 Display *dpy = FRAME_X_DISPLAY (f);
177c0ea7 4483
5f7a1890
GM
4484#ifdef USE_X_TOOLKIT
4485 if (f->output_data.x->widget)
4486#else
4487 if (FRAME_OUTER_WINDOW (f))
4488#endif
4489 {
0af913d7 4490 f->output_data.x->hourglass_p = 1;
177c0ea7 4491
0af913d7 4492 if (!f->output_data.x->hourglass_window)
5f7a1890
GM
4493 {
4494 unsigned long mask = CWCursor;
4495 XSetWindowAttributes attrs;
49b8b5dc
JD
4496#ifdef USE_GTK
4497 Window parent = FRAME_X_WINDOW (f);
4498#else
4499 Window parent = FRAME_OUTER_WINDOW (f);
4500#endif
0af913d7 4501 attrs.cursor = f->output_data.x->hourglass_cursor;
177c0ea7 4502
0af913d7 4503 f->output_data.x->hourglass_window
49b8b5dc 4504 = XCreateWindow (dpy, parent,
5f7a1890
GM
4505 0, 0, 32000, 32000, 0, 0,
4506 InputOnly,
4507 CopyFromParent,
4508 mask, &attrs);
4509 }
177c0ea7 4510
0af913d7 4511 XMapRaised (dpy, f->output_data.x->hourglass_window);
5f7a1890
GM
4512 XFlush (dpy);
4513 }
4514 }
4515 }
333b20bb 4516
0af913d7 4517 hourglass_shown_p = 1;
4ae9a85e
GM
4518 UNBLOCK_INPUT;
4519 }
333b20bb
GM
4520}
4521
4522
0af913d7
GM
4523/* Hide the hourglass pointer on all frames, if it is currently
4524 shown. */
333b20bb 4525
4ae9a85e 4526static void
0af913d7 4527hide_hourglass ()
4ae9a85e 4528{
0af913d7 4529 if (hourglass_shown_p)
333b20bb 4530 {
4ae9a85e
GM
4531 Lisp_Object rest, frame;
4532
4533 BLOCK_INPUT;
4534 FOR_EACH_FRAME (rest, frame)
333b20bb 4535 {
4ae9a85e 4536 struct frame *f = XFRAME (frame);
177c0ea7 4537
4ae9a85e
GM
4538 if (FRAME_X_P (f)
4539 /* Watch out for newly created frames. */
0af913d7 4540 && f->output_data.x->hourglass_window)
4ae9a85e 4541 {
0af913d7
GM
4542 XUnmapWindow (FRAME_X_DISPLAY (f),
4543 f->output_data.x->hourglass_window);
4544 /* Sync here because XTread_socket looks at the
4545 hourglass_p flag that is reset to zero below. */
4ae9a85e 4546 XSync (FRAME_X_DISPLAY (f), False);
0af913d7 4547 f->output_data.x->hourglass_p = 0;
4ae9a85e 4548 }
333b20bb 4549 }
333b20bb 4550
0af913d7 4551 hourglass_shown_p = 0;
4ae9a85e
GM
4552 UNBLOCK_INPUT;
4553 }
333b20bb
GM
4554}
4555
4556
4557\f
4558/***********************************************************************
4559 Tool tips
4560 ***********************************************************************/
4561
4562static Lisp_Object x_create_tip_frame P_ ((struct x_display_info *,
275841bf 4563 Lisp_Object, Lisp_Object));
06d62053 4564static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
ab452f99 4565 Lisp_Object, int, int, int *, int *));
177c0ea7 4566
44b5a125 4567/* The frame of a currently visible tooltip. */
333b20bb 4568
44b5a125 4569Lisp_Object tip_frame;
333b20bb
GM
4570
4571/* If non-nil, a timer started that hides the last tooltip when it
4572 fires. */
4573
4574Lisp_Object tip_timer;
4575Window tip_window;
4576
06d62053
GM
4577/* If non-nil, a vector of 3 elements containing the last args
4578 with which x-show-tip was called. See there. */
4579
4580Lisp_Object last_show_tip_args;
4581
d63931a2
GM
4582/* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4583
4584Lisp_Object Vx_max_tooltip_size;
4585
eaf1eea9
GM
4586
4587static Lisp_Object
4588unwind_create_tip_frame (frame)
4589 Lisp_Object frame;
4590{
c844a81a
GM
4591 Lisp_Object deleted;
4592
4593 deleted = unwind_create_frame (frame);
4594 if (EQ (deleted, Qt))
4595 {
4596 tip_window = None;
4597 tip_frame = Qnil;
4598 }
177c0ea7 4599
c844a81a 4600 return deleted;
eaf1eea9
GM
4601}
4602
4603
333b20bb 4604/* Create a frame for a tooltip on the display described by DPYINFO.
275841bf
GM
4605 PARMS is a list of frame parameters. TEXT is the string to
4606 display in the tip frame. Value is the frame.
eaf1eea9
GM
4607
4608 Note that functions called here, esp. x_default_parameter can
4609 signal errors, for instance when a specified color name is
4610 undefined. We have to make sure that we're in a consistent state
4611 when this happens. */
333b20bb
GM
4612
4613static Lisp_Object
275841bf 4614x_create_tip_frame (dpyinfo, parms, text)
333b20bb 4615 struct x_display_info *dpyinfo;
275841bf 4616 Lisp_Object parms, text;
333b20bb
GM
4617{
4618 struct frame *f;
4619 Lisp_Object frame, tem;
4620 Lisp_Object name;
333b20bb
GM
4621 long window_prompting = 0;
4622 int width, height;
331379bf 4623 int count = SPECPDL_INDEX ();
b6d7acec 4624 struct gcpro gcpro1, gcpro2, gcpro3;
333b20bb 4625 struct kboard *kb;
06d62053 4626 int face_change_count_before = face_change_count;
275841bf
GM
4627 Lisp_Object buffer;
4628 struct buffer *old_buffer;
333b20bb
GM
4629
4630 check_x ();
4631
333b20bb
GM
4632
4633#ifdef MULTI_KBOARD
4634 kb = dpyinfo->kboard;
4635#else
4636 kb = &the_only_kboard;
4637#endif
4638
4639 /* Get the name of the frame to use for resource lookup. */
4640 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
4641 if (!STRINGP (name)
4642 && !EQ (name, Qunbound)
4643 && !NILP (name))
4644 error ("Invalid frame name--not a string or nil");
333b20bb
GM
4645
4646 frame = Qnil;
4647 GCPRO3 (parms, name, frame);
44b5a125 4648 f = make_frame (1);
333b20bb 4649 XSETFRAME (frame, f);
275841bf
GM
4650
4651 buffer = Fget_buffer_create (build_string (" *tip*"));
be786000 4652 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer, Qnil);
275841bf
GM
4653 old_buffer = current_buffer;
4654 set_buffer_internal_1 (XBUFFER (buffer));
d63931a2 4655 current_buffer->truncate_lines = Qnil;
5c2a995d
KH
4656 specbind (Qinhibit_read_only, Qt);
4657 specbind (Qinhibit_modification_hooks, Qt);
275841bf
GM
4658 Ferase_buffer ();
4659 Finsert (1, &text);
4660 set_buffer_internal_1 (old_buffer);
177c0ea7 4661
333b20bb 4662 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
8a1a7743 4663 record_unwind_protect (unwind_create_tip_frame, frame);
333b20bb 4664
eaf1eea9
GM
4665 /* By setting the output method, we're essentially saying that
4666 the frame is live, as per FRAME_LIVE_P. If we get a signal
4667 from this point on, x_destroy_window might screw up reference
4668 counts etc. */
333b20bb
GM
4669 f->output_method = output_x_window;
4670 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
4671 bzero (f->output_data.x, sizeof (struct x_output));
4672 f->output_data.x->icon_bitmap = -1;
be786000 4673 FRAME_FONTSET (f) = -1;
61d461a8
GM
4674 f->output_data.x->scroll_bar_foreground_pixel = -1;
4675 f->output_data.x->scroll_bar_background_pixel = -1;
f15340b7
MB
4676#ifdef USE_TOOLKIT_SCROLL_BARS
4677 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
4678 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
4679#endif /* USE_TOOLKIT_SCROLL_BARS */
333b20bb
GM
4680 f->icon_name = Qnil;
4681 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
f1d2ce7f 4682#if GLYPH_DEBUG
eaf1eea9
GM
4683 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
4684 dpyinfo_refcount = dpyinfo->reference_count;
4685#endif /* GLYPH_DEBUG */
333b20bb
GM
4686#ifdef MULTI_KBOARD
4687 FRAME_KBOARD (f) = kb;
4688#endif
4689 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4690 f->output_data.x->explicit_parent = 0;
4691
61d461a8
GM
4692 /* These colors will be set anyway later, but it's important
4693 to get the color reference counts right, so initialize them! */
4694 {
4695 Lisp_Object black;
4696 struct gcpro gcpro1;
177c0ea7 4697
61d461a8
GM
4698 black = build_string ("black");
4699 GCPRO1 (black);
4700 f->output_data.x->foreground_pixel
4701 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4702 f->output_data.x->background_pixel
4703 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4704 f->output_data.x->cursor_pixel
4705 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4706 f->output_data.x->cursor_foreground_pixel
4707 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4708 f->output_data.x->border_pixel
4709 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4710 f->output_data.x->mouse_pixel
4711 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4712 UNGCPRO;
4713 }
4714
333b20bb
GM
4715 /* Set the name; the functions to which we pass f expect the name to
4716 be set. */
4717 if (EQ (name, Qunbound) || NILP (name))
4718 {
4719 f->name = build_string (dpyinfo->x_id_name);
4720 f->explicit_name = 0;
4721 }
4722 else
4723 {
4724 f->name = name;
4725 f->explicit_name = 1;
4726 /* use the frame's title when getting resources for this frame. */
4727 specbind (Qx_resource_name, name);
4728 }
4729
eaf1eea9
GM
4730 /* Extract the window parameters from the supplied values that are
4731 needed to determine window geometry. */
333b20bb
GM
4732 {
4733 Lisp_Object font;
4734
4735 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
4736
4737 BLOCK_INPUT;
4738 /* First, try whatever font the caller has specified. */
4739 if (STRINGP (font))
4740 {
4741 tem = Fquery_fontset (font, Qnil);
4742 if (STRINGP (tem))
d5db4077 4743 font = x_new_fontset (f, SDATA (tem));
333b20bb 4744 else
d5db4077 4745 font = x_new_font (f, SDATA (font));
333b20bb 4746 }
177c0ea7 4747
333b20bb
GM
4748 /* Try out a font which we hope has bold and italic variations. */
4749 if (!STRINGP (font))
4750 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
4751 if (!STRINGP (font))
4752 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4753 if (! STRINGP (font))
4754 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4755 if (! STRINGP (font))
4756 /* This was formerly the first thing tried, but it finds too many fonts
4757 and takes too long. */
4758 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
4759 /* If those didn't work, look for something which will at least work. */
4760 if (! STRINGP (font))
4761 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
4762 UNBLOCK_INPUT;
4763 if (! STRINGP (font))
4764 font = build_string ("fixed");
4765
4766 x_default_parameter (f, parms, Qfont, font,
4767 "font", "Font", RES_TYPE_STRING);
4768 }
4769
4770 x_default_parameter (f, parms, Qborder_width, make_number (2),
4771 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
177c0ea7 4772
333b20bb
GM
4773 /* This defaults to 2 in order to match xterm. We recognize either
4774 internalBorderWidth or internalBorder (which is what xterm calls
4775 it). */
4776 if (NILP (Fassq (Qinternal_border_width, parms)))
4777 {
4778 Lisp_Object value;
4779
4780 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
4781 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
4782 if (! EQ (value, Qunbound))
4783 parms = Fcons (Fcons (Qinternal_border_width, value),
4784 parms);
4785 }
4786
4787 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
4788 "internalBorderWidth", "internalBorderWidth",
4789 RES_TYPE_NUMBER);
4790
4791 /* Also do the stuff which must be set before the window exists. */
4792 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
4793 "foreground", "Foreground", RES_TYPE_STRING);
4794 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
4795 "background", "Background", RES_TYPE_STRING);
4796 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
4797 "pointerColor", "Foreground", RES_TYPE_STRING);
4798 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
4799 "cursorColor", "Foreground", RES_TYPE_STRING);
4800 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
4801 "borderColor", "BorderColor", RES_TYPE_STRING);
4802
4803 /* Init faces before x_default_parameter is called for scroll-bar
4804 parameters because that function calls x_set_scroll_bar_width,
4805 which calls change_frame_size, which calls Fset_window_buffer,
4806 which runs hooks, which call Fvertical_motion. At the end, we
4807 end up in init_iterator with a null face cache, which should not
4808 happen. */
4809 init_frame_faces (f);
177c0ea7 4810
333b20bb 4811 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
333b20bb 4812
7c0d3ed8 4813 window_prompting = x_figure_window_size (f, parms, 0);
333b20bb 4814
333b20bb
GM
4815 {
4816 XSetWindowAttributes attrs;
4817 unsigned long mask;
177c0ea7 4818
333b20bb 4819 BLOCK_INPUT;
c51d2b5e
GM
4820 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
4821 if (DoesSaveUnders (dpyinfo->screen))
4822 mask |= CWSaveUnder;
177c0ea7 4823
9b2956e2
GM
4824 /* Window managers look at the override-redirect flag to determine
4825 whether or net to give windows a decoration (Xlib spec, chapter
333b20bb
GM
4826 3.2.8). */
4827 attrs.override_redirect = True;
4828 attrs.save_under = True;
4829 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4830 /* Arrange for getting MapNotify and UnmapNotify events. */
4831 attrs.event_mask = StructureNotifyMask;
4832 tip_window
4833 = FRAME_X_WINDOW (f)
4834 = XCreateWindow (FRAME_X_DISPLAY (f),
4835 FRAME_X_DISPLAY_INFO (f)->root_window,
4836 /* x, y, width, height */
4837 0, 0, 1, 1,
4838 /* Border. */
4839 1,
4840 CopyFromParent, InputOutput, CopyFromParent,
4841 mask, &attrs);
4842 UNBLOCK_INPUT;
4843 }
4844
4845 x_make_gc (f);
4846
333b20bb
GM
4847 x_default_parameter (f, parms, Qauto_raise, Qnil,
4848 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4849 x_default_parameter (f, parms, Qauto_lower, Qnil,
4850 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4851 x_default_parameter (f, parms, Qcursor_type, Qbox,
4852 "cursorType", "CursorType", RES_TYPE_SYMBOL);
4853
be786000 4854 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
333b20bb 4855 Change will not be effected unless different from the current
be786000
KS
4856 FRAME_LINES (f). */
4857 width = FRAME_COLS (f);
4858 height = FRAME_LINES (f);
4859 SET_FRAME_COLS (f, 0);
4860 FRAME_LINES (f) = 0;
8938a4fb 4861 change_frame_size (f, height, width, 1, 0, 0);
177c0ea7 4862
cd1d850f
JPW
4863 /* Add `tooltip' frame parameter's default value. */
4864 if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
4865 Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
4866 Qnil));
177c0ea7 4867
035d5114 4868 /* Set up faces after all frame parameters are known. This call
6801a572
GM
4869 also merges in face attributes specified for new frames.
4870
4871 Frame parameters may be changed if .Xdefaults contains
4872 specifications for the default font. For example, if there is an
4873 `Emacs.default.attributeBackground: pink', the `background-color'
4874 attribute of the frame get's set, which let's the internal border
4875 of the tooltip frame appear in pink. Prevent this. */
4876 {
4877 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
4878
4879 /* Set tip_frame here, so that */
4880 tip_frame = frame;
4881 call1 (Qface_set_after_frame_default, frame);
177c0ea7 4882
6801a572
GM
4883 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
4884 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
4885 Qnil));
4886 }
177c0ea7 4887
333b20bb
GM
4888 f->no_split = 1;
4889
4890 UNGCPRO;
4891
4892 /* It is now ok to make the frame official even if we get an error
4893 below. And the frame needs to be on Vframe_list or making it
4894 visible won't work. */
4895 Vframe_list = Fcons (frame, Vframe_list);
4896
4897 /* Now that the frame is official, it counts as a reference to
4898 its display. */
4899 FRAME_X_DISPLAY_INFO (f)->reference_count++;
4900
06d62053
GM
4901 /* Setting attributes of faces of the tooltip frame from resources
4902 and similar will increment face_change_count, which leads to the
4903 clearing of all current matrices. Since this isn't necessary
4904 here, avoid it by resetting face_change_count to the value it
4905 had before we created the tip frame. */
4906 face_change_count = face_change_count_before;
4907
eaf1eea9 4908 /* Discard the unwind_protect. */
333b20bb
GM
4909 return unbind_to (count, frame);
4910}
4911
4912
06d62053
GM
4913/* Compute where to display tip frame F. PARMS is the list of frame
4914 parameters for F. DX and DY are specified offsets from the current
ab452f99
GM
4915 location of the mouse. WIDTH and HEIGHT are the width and height
4916 of the tooltip. Return coordinates relative to the root window of
4917 the display in *ROOT_X, and *ROOT_Y. */
06d62053
GM
4918
4919static void
ab452f99 4920compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
06d62053
GM
4921 struct frame *f;
4922 Lisp_Object parms, dx, dy;
ab452f99 4923 int width, height;
06d62053
GM
4924 int *root_x, *root_y;
4925{
4926 Lisp_Object left, top;
4927 int win_x, win_y;
4928 Window root, child;
4929 unsigned pmask;
177c0ea7 4930
06d62053
GM
4931 /* User-specified position? */
4932 left = Fcdr (Fassq (Qleft, parms));
4933 top = Fcdr (Fassq (Qtop, parms));
177c0ea7 4934
06d62053
GM
4935 /* Move the tooltip window where the mouse pointer is. Resize and
4936 show it. */
570d22b0 4937 if (!INTEGERP (left) || !INTEGERP (top))
ab452f99
GM
4938 {
4939 BLOCK_INPUT;
4940 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
4941 &root, &child, root_x, root_y, &win_x, &win_y, &pmask);
4942 UNBLOCK_INPUT;
4943 }
06d62053 4944
06d62053
GM
4945 if (INTEGERP (top))
4946 *root_y = XINT (top);
bf63eb69
JD
4947 else if (*root_y + XINT (dy) <= 0)
4948 *root_y = 0; /* Can happen for negative dy */
7e8410d1
JD
4949 else if (*root_y + XINT (dy) + height <= FRAME_X_DISPLAY_INFO (f)->height)
4950 /* It fits below the pointer */
ab452f99 4951 *root_y += XINT (dy);
7e8410d1
JD
4952 else if (height + XINT (dy) <= *root_y)
4953 /* It fits above the pointer. */
4954 *root_y -= height + XINT (dy);
4955 else
4956 /* Put it on the top. */
4957 *root_y = 0;
ab452f99
GM
4958
4959 if (INTEGERP (left))
4960 *root_x = XINT (left);
bf63eb69
JD
4961 else if (*root_x + XINT (dx) <= 0)
4962 *root_x = 0; /* Can happen for negative dx */
d682d3df
RS
4963 else if (*root_x + XINT (dx) + width <= FRAME_X_DISPLAY_INFO (f)->width)
4964 /* It fits to the right of the pointer. */
4965 *root_x += XINT (dx);
4966 else if (width + XINT (dx) <= *root_x)
4967 /* It fits to the left of the pointer. */
ab452f99
GM
4968 *root_x -= width + XINT (dx);
4969 else
d682d3df
RS
4970 /* Put it left-justified on the screen--it ought to fit that way. */
4971 *root_x = 0;
06d62053
GM
4972}
4973
4974
0634ce98 4975DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
7ee72033 4976 doc: /* Show STRING in a "tooltip" window on frame FRAME.
c061c855
GM
4977A tooltip window is a small X window displaying a string.
4978
4979FRAME nil or omitted means use the selected frame.
4980
4981PARMS is an optional list of frame parameters which can be used to
4982change the tooltip's appearance.
4983
4984Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
4985means use the default timeout of 5 seconds.
4986
4987If the list of frame parameters PARAMS contains a `left' parameters,
4988the tooltip is displayed at that x-position. Otherwise it is
4989displayed at the mouse position, with offset DX added (default is 5 if
4990DX isn't specified). Likewise for the y-position; if a `top' frame
4991parameter is specified, it determines the y-position of the tooltip
4992window, otherwise it is displayed at the mouse position, with offset
4993DY added (default is -10).
4994
4995A tooltip's maximum size is specified by `x-max-tooltip-size'.
7ee72033
MB
4996Text larger than the specified size is clipped. */)
4997 (string, frame, parms, timeout, dx, dy)
0634ce98 4998 Lisp_Object string, frame, parms, timeout, dx, dy;
333b20bb
GM
4999{
5000 struct frame *f;
5001 struct window *w;
06d62053 5002 int root_x, root_y;
333b20bb
GM
5003 struct buffer *old_buffer;
5004 struct text_pos pos;
5005 int i, width, height;
393f2d14 5006 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
333b20bb 5007 int old_windows_or_buffers_changed = windows_or_buffers_changed;
331379bf 5008 int count = SPECPDL_INDEX ();
177c0ea7 5009
333b20bb
GM
5010 specbind (Qinhibit_redisplay, Qt);
5011
393f2d14 5012 GCPRO4 (string, parms, frame, timeout);
333b20bb 5013
b7826503 5014 CHECK_STRING (string);
333b20bb
GM
5015 f = check_x_frame (frame);
5016 if (NILP (timeout))
5017 timeout = make_number (5);
5018 else
b7826503 5019 CHECK_NATNUM (timeout);
177c0ea7 5020
0634ce98
GM
5021 if (NILP (dx))
5022 dx = make_number (5);
5023 else
b7826503 5024 CHECK_NUMBER (dx);
177c0ea7 5025
0634ce98 5026 if (NILP (dy))
12c67a7f 5027 dy = make_number (-10);
0634ce98 5028 else
b7826503 5029 CHECK_NUMBER (dy);
333b20bb 5030
06d62053
GM
5031 if (NILP (last_show_tip_args))
5032 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
5033
5034 if (!NILP (tip_frame))
5035 {
5036 Lisp_Object last_string = AREF (last_show_tip_args, 0);
5037 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
5038 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
5039
5040 if (EQ (frame, last_frame)
5041 && !NILP (Fequal (last_string, string))
5042 && !NILP (Fequal (last_parms, parms)))
5043 {
5044 struct frame *f = XFRAME (tip_frame);
177c0ea7 5045
06d62053
GM
5046 /* Only DX and DY have changed. */
5047 if (!NILP (tip_timer))
ae782866
GM
5048 {
5049 Lisp_Object timer = tip_timer;
5050 tip_timer = Qnil;
5051 call1 (Qcancel_timer, timer);
5052 }
06d62053
GM
5053
5054 BLOCK_INPUT;
be786000
KS
5055 compute_tip_xy (f, parms, dx, dy, FRAME_PIXEL_WIDTH (f),
5056 FRAME_PIXEL_HEIGHT (f), &root_x, &root_y);
06d62053 5057 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
ab452f99 5058 root_x, root_y);
06d62053
GM
5059 UNBLOCK_INPUT;
5060 goto start_timer;
5061 }
5062 }
5063
333b20bb
GM
5064 /* Hide a previous tip, if any. */
5065 Fx_hide_tip ();
5066
06d62053
GM
5067 ASET (last_show_tip_args, 0, string);
5068 ASET (last_show_tip_args, 1, frame);
5069 ASET (last_show_tip_args, 2, parms);
5070
333b20bb
GM
5071 /* Add default values to frame parameters. */
5072 if (NILP (Fassq (Qname, parms)))
5073 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
5074 if (NILP (Fassq (Qinternal_border_width, parms)))
5075 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
5076 if (NILP (Fassq (Qborder_width, parms)))
5077 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
5078 if (NILP (Fassq (Qborder_color, parms)))
5079 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
5080 if (NILP (Fassq (Qbackground_color, parms)))
5081 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
5082 parms);
5083
5084 /* Create a frame for the tooltip, and record it in the global
5085 variable tip_frame. */
275841bf 5086 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms, string);
44b5a125 5087 f = XFRAME (frame);
333b20bb 5088
d63931a2 5089 /* Set up the frame's root window. */
333b20bb 5090 w = XWINDOW (FRAME_ROOT_WINDOW (f));
be786000 5091 w->left_col = w->top_line = make_number (0);
177c0ea7 5092
d63931a2
GM
5093 if (CONSP (Vx_max_tooltip_size)
5094 && INTEGERP (XCAR (Vx_max_tooltip_size))
5095 && XINT (XCAR (Vx_max_tooltip_size)) > 0
5096 && INTEGERP (XCDR (Vx_max_tooltip_size))
5097 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
5098 {
be786000
KS
5099 w->total_cols = XCAR (Vx_max_tooltip_size);
5100 w->total_lines = XCDR (Vx_max_tooltip_size);
d63931a2
GM
5101 }
5102 else
5103 {
be786000
KS
5104 w->total_cols = make_number (80);
5105 w->total_lines = make_number (40);
d63931a2 5106 }
177c0ea7 5107
be786000 5108 FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
333b20bb
GM
5109 adjust_glyphs (f);
5110 w->pseudo_window_p = 1;
5111
5112 /* Display the tooltip text in a temporary buffer. */
333b20bb 5113 old_buffer = current_buffer;
275841bf 5114 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
d63931a2 5115 current_buffer->truncate_lines = Qnil;
333b20bb
GM
5116 clear_glyph_matrix (w->desired_matrix);
5117 clear_glyph_matrix (w->current_matrix);
5118 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
29e95254 5119 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
333b20bb
GM
5120
5121 /* Compute width and height of the tooltip. */
5122 width = height = 0;
5123 for (i = 0; i < w->desired_matrix->nrows; ++i)
5124 {
5125 struct glyph_row *row = &w->desired_matrix->rows[i];
5126 struct glyph *last;
5127 int row_width;
5128
5129 /* Stop at the first empty row at the end. */
5130 if (!row->enabled_p || !row->displays_text_p)
5131 break;
5132
d7bf0342
GM
5133 /* Let the row go over the full width of the frame. */
5134 row->full_width_p = 1;
333b20bb 5135
e3130015 5136 /* There's a glyph at the end of rows that is used to place
333b20bb
GM
5137 the cursor there. Don't include the width of this glyph. */
5138 if (row->used[TEXT_AREA])
5139 {
5140 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
5141 row_width = row->pixel_width - last->pixel_width;
5142 }
5143 else
5144 row_width = row->pixel_width;
177c0ea7 5145
333b20bb
GM
5146 height += row->height;
5147 width = max (width, row_width);
5148 }
5149
5150 /* Add the frame's internal border to the width and height the X
5151 window should have. */
5152 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5153 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5154
5155 /* Move the tooltip window where the mouse pointer is. Resize and
5156 show it. */
ab452f99 5157 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
0634ce98 5158
0634ce98 5159 BLOCK_INPUT;
333b20bb 5160 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
ab452f99 5161 root_x, root_y, width, height);
333b20bb
GM
5162 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5163 UNBLOCK_INPUT;
177c0ea7 5164
333b20bb
GM
5165 /* Draw into the window. */
5166 w->must_be_updated_p = 1;
5167 update_single_window (w, 1);
5168
5169 /* Restore original current buffer. */
5170 set_buffer_internal_1 (old_buffer);
5171 windows_or_buffers_changed = old_windows_or_buffers_changed;
5172
06d62053 5173 start_timer:
333b20bb
GM
5174 /* Let the tip disappear after timeout seconds. */
5175 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
5176 intern ("x-hide-tip"));
a744a2ec
DL
5177
5178 UNGCPRO;
333b20bb
GM
5179 return unbind_to (count, Qnil);
5180}
5181
5182
5183DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
7ee72033
MB
5184 doc: /* Hide the current tooltip window, if there is any.
5185Value is t if tooltip was open, nil otherwise. */)
5186 ()
333b20bb 5187{
44b5a125 5188 int count;
c0006262
GM
5189 Lisp_Object deleted, frame, timer;
5190 struct gcpro gcpro1, gcpro2;
44b5a125
GM
5191
5192 /* Return quickly if nothing to do. */
c0006262 5193 if (NILP (tip_timer) && NILP (tip_frame))
44b5a125 5194 return Qnil;
177c0ea7 5195
c0006262
GM
5196 frame = tip_frame;
5197 timer = tip_timer;
5198 GCPRO2 (frame, timer);
5199 tip_frame = tip_timer = deleted = Qnil;
177c0ea7 5200
331379bf 5201 count = SPECPDL_INDEX ();
333b20bb 5202 specbind (Qinhibit_redisplay, Qt);
44b5a125 5203 specbind (Qinhibit_quit, Qt);
177c0ea7 5204
c0006262 5205 if (!NILP (timer))
ae782866 5206 call1 (Qcancel_timer, timer);
333b20bb 5207
c0006262 5208 if (FRAMEP (frame))
333b20bb 5209 {
44b5a125
GM
5210 Fdelete_frame (frame, Qnil);
5211 deleted = Qt;
f6c44811
GM
5212
5213#ifdef USE_LUCID
5214 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5215 redisplay procedure is not called when a tip frame over menu
5216 items is unmapped. Redisplay the menu manually... */
5217 {
5218 struct frame *f = SELECTED_FRAME ();
5219 Widget w = f->output_data.x->menubar_widget;
5220 extern void xlwmenu_redisplay P_ ((Widget));
9180dc8c 5221
f6c44811 5222 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
dbc64aa7 5223 && w != NULL)
f6c44811
GM
5224 {
5225 BLOCK_INPUT;
5226 xlwmenu_redisplay (w);
5227 UNBLOCK_INPUT;
5228 }
5229 }
5230#endif /* USE_LUCID */
333b20bb
GM
5231 }
5232
c0006262 5233 UNGCPRO;
44b5a125 5234 return unbind_to (count, deleted);
333b20bb
GM
5235}
5236
5237
5238\f
5239/***********************************************************************
5240 File selection dialog
5241 ***********************************************************************/
5242
90f2e16b
JD
5243DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog,
5244 Sx_uses_old_gtk_dialog,
5245 0, 0, 0,
5246 doc: /* Return t if the old Gtk+ file selection dialog is used. */)
5247 ()
5248{
5249#ifdef USE_GTK
5250 extern int use_dialog_box;
5251 extern int use_file_dialog;
333b20bb 5252
90f2e16b
JD
5253 if (use_dialog_box
5254 && use_file_dialog
5255 && have_menus_p ()
5256 && xg_uses_old_file_dialog ())
5257 return Qt;
5258#endif
5259 return Qnil;
5260}
5261
5262
5263#ifdef USE_MOTIF
333b20bb
GM
5264/* Callback for "OK" and "Cancel" on file selection dialog. */
5265
5266static void
5267file_dialog_cb (widget, client_data, call_data)
5268 Widget widget;
5269 XtPointer call_data, client_data;
5270{
5271 int *result = (int *) client_data;
5272 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
5273 *result = cb->reason;
5274}
5275
5276
a779d213
GM
5277/* Callback for unmapping a file selection dialog. This is used to
5278 capture the case where a dialog is closed via a window manager's
5279 closer button, for example. Using a XmNdestroyCallback didn't work
5280 in this case. */
5281
5282static void
5283file_dialog_unmap_cb (widget, client_data, call_data)
5284 Widget widget;
5285 XtPointer call_data, client_data;
5286{
5287 int *result = (int *) client_data;
5288 *result = XmCR_CANCEL;
5289}
5290
24ca7c5a
JD
5291static Lisp_Object
5292clean_up_file_dialog (arg)
5293 Lisp_Object arg;
5294{
5295 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
5296 Widget dialog = (Widget) p->pointer;
5297
5298 /* Clean up. */
5299 BLOCK_INPUT;
5300 XtUnmanageChild (dialog);
5301 XtDestroyWidget (dialog);
5302 x_menu_set_in_use (0);
5303 UNBLOCK_INPUT;
5304
5305 return Qnil;
5306}
5307
a779d213 5308
f9d64bb3 5309DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
7ee72033 5310 doc: /* Read file name, prompting with PROMPT in directory DIR.
f9d64bb3
JD
5311Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5312selection box, if specified. If MUSTMATCH is non-nil, the returned file
5313or directory must exist. ONLY-DIR-P is ignored." */)
5314 (prompt, dir, default_filename, mustmatch, only_dir_p)
5315 Lisp_Object prompt, dir, default_filename, mustmatch, only_dir_p;
333b20bb
GM
5316{
5317 int result;
0fe92f72 5318 struct frame *f = SELECTED_FRAME ();
333b20bb 5319 Lisp_Object file = Qnil;
f9d64bb3 5320 Widget dialog, text, help;
333b20bb
GM
5321 Arg al[10];
5322 int ac = 0;
5323 extern XtAppContext Xt_app_con;
333b20bb 5324 XmString dir_xmstring, pattern_xmstring;
65b21658 5325 int count = SPECPDL_INDEX ();
f9d64bb3 5326 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
333b20bb 5327
f9d64bb3 5328 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
24ca7c5a 5329
5ae53dcf 5330 if (popup_activated ())
24ca7c5a
JD
5331 error ("Trying to use a menu from within a menu-entry");
5332
b7826503
PJ
5333 CHECK_STRING (prompt);
5334 CHECK_STRING (dir);
333b20bb
GM
5335
5336 /* Prevent redisplay. */
5337 specbind (Qinhibit_redisplay, Qt);
5338
5339 BLOCK_INPUT;
5340
5341 /* Create the dialog with PROMPT as title, using DIR as initial
5342 directory and using "*" as pattern. */
5343 dir = Fexpand_file_name (dir, Qnil);
d5db4077 5344 dir_xmstring = XmStringCreateLocalized (SDATA (dir));
333b20bb 5345 pattern_xmstring = XmStringCreateLocalized ("*");
177c0ea7 5346
d5db4077 5347 XtSetArg (al[ac], XmNtitle, SDATA (prompt)); ++ac;
333b20bb
GM
5348 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
5349 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
5350 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
5351 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
5352 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
5353 "fsb", al, ac);
5354 XmStringFree (dir_xmstring);
5355 XmStringFree (pattern_xmstring);
5356
5357 /* Add callbacks for OK and Cancel. */
5358 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
5359 (XtPointer) &result);
5360 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
5361 (XtPointer) &result);
a779d213
GM
5362 XtAddCallback (dialog, XmNunmapCallback, file_dialog_unmap_cb,
5363 (XtPointer) &result);
333b20bb 5364
f9d64bb3 5365 /* Remove the help button since we can't display help. */
333b20bb 5366 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
f9d64bb3 5367 XtUnmanageChild (help);
333b20bb 5368
177c0ea7 5369 /* Mark OK button as default. */
333b20bb
GM
5370 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
5371 XmNshowAsDefault, True, NULL);
5372
5373 /* If MUSTMATCH is non-nil, disable the file entry field of the
5374 dialog, so that the user must select a file from the files list
5375 box. We can't remove it because we wouldn't have a way to get at
5376 the result file name, then. */
5377 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5378 if (!NILP (mustmatch))
5379 {
5380 Widget label;
5381 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
5382 XtSetSensitive (text, False);
5383 XtSetSensitive (label, False);
5384 }
5385
5386 /* Manage the dialog, so that list boxes get filled. */
5387 XtManageChild (dialog);
5388
333b20bb
GM
5389 if (STRINGP (default_filename))
5390 {
5391 XmString default_xmstring;
f9d64bb3
JD
5392 Widget wtext = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
5393 Widget list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
333b20bb 5394
f9d64bb3
JD
5395 XmTextPosition last_pos = XmTextFieldGetLastPosition (wtext);
5396 XmTextFieldReplace (wtext, 0, last_pos,
5397 (SDATA (Ffile_name_nondirectory (default_filename))));
333b20bb 5398
f9d64bb3
JD
5399 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5400 must include the path for this to work. */
5401
5402 default_xmstring = XmStringCreateLocalized (SDATA (default_filename));
333b20bb 5403
f9d64bb3
JD
5404 if (XmListItemExists (list, default_xmstring))
5405 {
5406 int item_pos = XmListItemPos (list, default_xmstring);
5407 /* Select the item and scroll it into view. */
5408 XmListSelectPos (list, item_pos, True);
5409 XmListSetPos (list, item_pos);
5410 }
5411
5412 XmStringFree (default_xmstring);
333b20bb
GM
5413 }
5414
24ca7c5a
JD
5415 record_unwind_protect (clean_up_file_dialog, make_save_value (dialog, 0));
5416
bf338245 5417 /* Process events until the user presses Cancel or OK. */
5ae53dcf 5418 x_menu_set_in_use (1);
03100098 5419 result = 0;
a779d213 5420 while (result == 0)
563b384d 5421 {
bf338245 5422 XEvent event;
24ca7c5a 5423 x_menu_wait_for_event (0);
bf338245 5424 XtAppNextEvent (Xt_app_con, &event);
9f6fcdc5
JD
5425 if (event.type == KeyPress
5426 && FRAME_X_DISPLAY (f) == event.xkey.display)
5427 {
5428 KeySym keysym = XLookupKeysym (&event.xkey, 0);
5429
5430 /* Pop down on C-g. */
5431 if (keysym == XK_g && (event.xkey.state & ControlMask) != 0)
5432 XtUnmanageChild (dialog);
5433 }
5b3f8550 5434
24ca7c5a 5435 (void) x_dispatch_event (&event, FRAME_X_DISPLAY (f));
563b384d 5436 }
03100098 5437
333b20bb
GM
5438 /* Get the result. */
5439 if (result == XmCR_OK)
5440 {
5441 XmString text;
5442 String data;
177c0ea7 5443
d1670063 5444 XtVaGetValues (dialog, XmNtextString, &text, NULL);
333b20bb
GM
5445 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
5446 XmStringFree (text);
5447 file = build_string (data);
5448 XtFree (data);
5449 }
5450 else
5451 file = Qnil;
5452
333b20bb
GM
5453 UNBLOCK_INPUT;
5454 UNGCPRO;
5455
5456 /* Make "Cancel" equivalent to C-g. */
5457 if (NILP (file))
5458 Fsignal (Qquit, Qnil);
177c0ea7 5459
333b20bb
GM
5460 return unbind_to (count, file);
5461}
5462
5463#endif /* USE_MOTIF */
5464
488dd4c4
JD
5465#ifdef USE_GTK
5466
24ca7c5a
JD
5467static Lisp_Object
5468clean_up_dialog (arg)
5469 Lisp_Object arg;
5470{
5471 x_menu_set_in_use (0);
5472
5473 return Qnil;
5474}
5475
f9d64bb3
JD
5476DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
5477 doc: /* Read file name, prompting with PROMPT in directory DIR.
5478Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5479selection box, if specified. If MUSTMATCH is non-nil, the returned file
5480or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5481directories. */)
5482 (prompt, dir, default_filename, mustmatch, only_dir_p)
5483 Lisp_Object prompt, dir, default_filename, mustmatch, only_dir_p;
488dd4c4
JD
5484{
5485 FRAME_PTR f = SELECTED_FRAME ();
5486 char *fn;
5487 Lisp_Object file = Qnil;
24ca7c5a 5488 int count = SPECPDL_INDEX ();
f9d64bb3 5489 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
488dd4c4 5490 char *cdef_file;
177c0ea7 5491
f9d64bb3 5492 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
24ca7c5a 5493
5ae53dcf 5494 if (popup_activated ())
24ca7c5a
JD
5495 error ("Trying to use a menu from within a menu-entry");
5496
488dd4c4
JD
5497 CHECK_STRING (prompt);
5498 CHECK_STRING (dir);
5499
5500 /* Prevent redisplay. */
5501 specbind (Qinhibit_redisplay, Qt);
24ca7c5a 5502 record_unwind_protect (clean_up_dialog, Qnil);
488dd4c4
JD
5503
5504 BLOCK_INPUT;
5505
5506 if (STRINGP (default_filename))
5507 cdef_file = SDATA (default_filename);
5508 else
5509 cdef_file = SDATA (dir);
5510
f9d64bb3
JD
5511 fn = xg_get_file_name (f, SDATA (prompt), cdef_file,
5512 ! NILP (mustmatch),
5513 ! NILP (only_dir_p));
177c0ea7 5514
488dd4c4
JD
5515 if (fn)
5516 {
5517 file = build_string (fn);
5518 xfree (fn);
5519 }
5520
5521 UNBLOCK_INPUT;
5522 UNGCPRO;
5523
5524 /* Make "Cancel" equivalent to C-g. */
5525 if (NILP (file))
5526 Fsignal (Qquit, Qnil);
177c0ea7 5527
488dd4c4
JD
5528 return unbind_to (count, file);
5529}
5530
5531#endif /* USE_GTK */
333b20bb
GM
5532
5533\f
82bab41c
GM
5534/***********************************************************************
5535 Keyboard
5536 ***********************************************************************/
5537
5538#ifdef HAVE_XKBGETKEYBOARD
5539#include <X11/XKBlib.h>
5540#include <X11/keysym.h>
5541#endif
5542
5543DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p,
5544 Sx_backspace_delete_keys_p, 0, 1, 0,
7ee72033 5545 doc: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
c061c855
GM
5546FRAME nil means use the selected frame.
5547Value is t if we know that both keys are present, and are mapped to the
20d1c5c5
DN
5548usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5549present and mapped to the usual X keysyms. */)
7ee72033 5550 (frame)
82bab41c
GM
5551 Lisp_Object frame;
5552{
5553#ifdef HAVE_XKBGETKEYBOARD
5554 XkbDescPtr kb;
5555 struct frame *f = check_x_frame (frame);
5556 Display *dpy = FRAME_X_DISPLAY (f);
5557 Lisp_Object have_keys;
46f6a258 5558 int major, minor, op, event, error;
82bab41c
GM
5559
5560 BLOCK_INPUT;
46f6a258
GM
5561
5562 /* Check library version in case we're dynamically linked. */
5563 major = XkbMajorVersion;
5564 minor = XkbMinorVersion;
5565 if (!XkbLibraryVersion (&major, &minor))
c1efd260
GM
5566 {
5567 UNBLOCK_INPUT;
20d1c5c5 5568 return Qlambda;
c1efd260 5569 }
46f6a258
GM
5570
5571 /* Check that the server supports XKB. */
5572 major = XkbMajorVersion;
5573 minor = XkbMinorVersion;
5574 if (!XkbQueryExtension (dpy, &op, &event, &error, &major, &minor))
c1efd260
GM
5575 {
5576 UNBLOCK_INPUT;
20d1c5c5 5577 return Qlambda;
c1efd260 5578 }
177c0ea7 5579
3a441526
JD
5580 /* In this code we check that the keyboard has physical keys with names
5581 that start with BKSP (Backspace) and DELE (Delete), and that they
5582 generate keysym XK_BackSpace and XK_Delete respectively.
5583 This function is used to test if normal-erase-is-backspace should be
5584 turned on.
5585 An alternative approach would be to just check if XK_BackSpace and
5586 XK_Delete are mapped to any key. But if any of those are mapped to
5587 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5588 user doesn't know about it, it is better to return false here.
5589 It is more obvious to the user what to do if she/he has two keys
5590 clearly marked with names/symbols and one key does something not
5591 expected (i.e. she/he then tries the other).
5592 The cases where Backspace/Delete is mapped to some other key combination
5593 are rare, and in those cases, normal-erase-is-backspace can be turned on
5594 manually. */
5595
46f6a258 5596 have_keys = Qnil;
c1efd260 5597 kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
82bab41c
GM
5598 if (kb)
5599 {
5600 int delete_keycode = 0, backspace_keycode = 0, i;
c1efd260
GM
5601
5602 if (XkbGetNames (dpy, XkbAllNamesMask, kb) == Success)
82bab41c 5603 {
c1efd260
GM
5604 for (i = kb->min_key_code;
5605 (i < kb->max_key_code
5606 && (delete_keycode == 0 || backspace_keycode == 0));
5607 ++i)
5608 {
d63931a2
GM
5609 /* The XKB symbolic key names can be seen most easily in
5610 the PS file generated by `xkbprint -label name
5611 $DISPLAY'. */
c1efd260
GM
5612 if (bcmp ("DELE", kb->names->keys[i].name, 4) == 0)
5613 delete_keycode = i;
5614 else if (bcmp ("BKSP", kb->names->keys[i].name, 4) == 0)
5615 backspace_keycode = i;
5616 }
5617
5618 XkbFreeNames (kb, 0, True);
82bab41c
GM
5619 }
5620
c1efd260 5621 XkbFreeClientMap (kb, 0, True);
177c0ea7 5622
82bab41c
GM
5623 if (delete_keycode
5624 && backspace_keycode
5625 && XKeysymToKeycode (dpy, XK_Delete) == delete_keycode
5626 && XKeysymToKeycode (dpy, XK_BackSpace) == backspace_keycode)
5627 have_keys = Qt;
5628 }
5629 UNBLOCK_INPUT;
5630 return have_keys;
5631#else /* not HAVE_XKBGETKEYBOARD */
20d1c5c5 5632 return Qlambda;
82bab41c
GM
5633#endif /* not HAVE_XKBGETKEYBOARD */
5634}
5635
5636
5637\f
333b20bb
GM
5638/***********************************************************************
5639 Initialization
5640 ***********************************************************************/
5641
4dacadcc 5642/* Keep this list in the same order as frame_parms in frame.c.
7c0d3ed8
KS
5643 Use 0 for unsupported frame parameters. */
5644
5645frame_parm_handler x_frame_parm_handlers[] =
5646{
5647 x_set_autoraise,
5648 x_set_autolower,
5649 x_set_background_color,
5650 x_set_border_color,
5651 x_set_border_width,
5652 x_set_cursor_color,
5653 x_set_cursor_type,
5654 x_set_font,
5655 x_set_foreground_color,
5656 x_set_icon_name,
5657 x_set_icon_type,
5658 x_set_internal_border_width,
5659 x_set_menu_bar_lines,
5660 x_set_mouse_color,
5661 x_explicitly_set_name,
5662 x_set_scroll_bar_width,
5663 x_set_title,
5664 x_set_unsplittable,
5665 x_set_vertical_scroll_bars,
5666 x_set_visibility,
5667 x_set_tool_bar_lines,
5668 x_set_scroll_bar_foreground,
5669 x_set_scroll_bar_background,
5670 x_set_screen_gamma,
5671 x_set_line_spacing,
5672 x_set_fringe_width,
5673 x_set_fringe_width,
5674 x_set_wait_for_wm,
5675 x_set_fullscreen,
5676};
5677
333b20bb
GM
5678void
5679syms_of_xfns ()
5680{
5681 /* This is zero if not using X windows. */
5682 x_in_use = 0;
5683
5684 /* The section below is built by the lisp expression at the top of the file,
5685 just above where these variables are declared. */
5686 /*&&& init symbols here &&&*/
baaed68e
JB
5687 Qnone = intern ("none");
5688 staticpro (&Qnone);
8af1d7ca
JB
5689 Qsuppress_icon = intern ("suppress-icon");
5690 staticpro (&Qsuppress_icon);
01f1ba30 5691 Qundefined_color = intern ("undefined-color");
f9942c9e 5692 staticpro (&Qundefined_color);
96db09e4
KH
5693 Qcompound_text = intern ("compound-text");
5694 staticpro (&Qcompound_text);
ae782866
GM
5695 Qcancel_timer = intern ("cancel-timer");
5696 staticpro (&Qcancel_timer);
f9942c9e
JB
5697 /* This is the end of symbol initialization. */
5698
58cad5ed
KH
5699 /* Text property `display' should be nonsticky by default. */
5700 Vtext_property_default_nonsticky
5701 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
5702
5703
01f1ba30
JB
5704 Fput (Qundefined_color, Qerror_conditions,
5705 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
5706 Fput (Qundefined_color, Qerror_message,
5707 build_string ("Undefined color"));
5708
7ee72033
MB
5709 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
5710 doc: /* The shape of the pointer when over text.
c061c855
GM
5711Changing the value does not affect existing frames
5712unless you set the mouse color. */);
01f1ba30
JB
5713 Vx_pointer_shape = Qnil;
5714
ca0ecbf5 5715#if 0 /* This doesn't really do anything. */
7ee72033
MB
5716 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
5717 doc: /* The shape of the pointer when not over text.
c061c855
GM
5718This variable takes effect when you create a new frame
5719or when you set the mouse color. */);
af01ef26 5720#endif
01f1ba30
JB
5721 Vx_nontext_pointer_shape = Qnil;
5722
7ee72033
MB
5723 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
5724 doc: /* The shape of the pointer when Emacs is busy.
c061c855
GM
5725This variable takes effect when you create a new frame
5726or when you set the mouse color. */);
0af913d7 5727 Vx_hourglass_pointer_shape = Qnil;
333b20bb 5728
7ee72033
MB
5729 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
5730 doc: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
0af913d7 5731 display_hourglass_p = 1;
177c0ea7 5732
7ee72033
MB
5733 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
5734 doc: /* *Seconds to wait before displaying an hourglass pointer.
c061c855 5735Value must be an integer or float. */);
0af913d7 5736 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
4ae9a85e 5737
ca0ecbf5 5738#if 0 /* This doesn't really do anything. */
7ee72033
MB
5739 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
5740 doc: /* The shape of the pointer when over the mode line.
c061c855
GM
5741This variable takes effect when you create a new frame
5742or when you set the mouse color. */);
af01ef26 5743#endif
01f1ba30
JB
5744 Vx_mode_pointer_shape = Qnil;
5745
d3b06468 5746 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
7ee72033
MB
5747 &Vx_sensitive_text_pointer_shape,
5748 doc: /* The shape of the pointer when over mouse-sensitive text.
c061c855
GM
5749This variable takes effect when you create a new frame
5750or when you set the mouse color. */);
ca0ecbf5 5751 Vx_sensitive_text_pointer_shape = Qnil;
95f80c78 5752
8fb4ec9c 5753 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
7ee72033
MB
5754 &Vx_window_horizontal_drag_shape,
5755 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
c061c855
GM
5756This variable takes effect when you create a new frame
5757or when you set the mouse color. */);
8fb4ec9c
GM
5758 Vx_window_horizontal_drag_shape = Qnil;
5759
7ee72033
MB
5760 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
5761 doc: /* A string indicating the foreground color of the cursor box. */);
01f1ba30
JB
5762 Vx_cursor_fore_pixel = Qnil;
5763
7ee72033
MB
5764 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
5765 doc: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
c061c855 5766Text larger than this is clipped. */);
d63931a2 5767 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
177c0ea7 5768
7ee72033
MB
5769 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
5770 doc: /* Non-nil if no X window manager is in use.
c061c855
GM
5771Emacs doesn't try to figure this out; this is always nil
5772unless you set it to something else. */);
2d38195d
RS
5773 /* We don't have any way to find this out, so set it to nil
5774 and maybe the user would like to set it to t. */
5775 Vx_no_window_manager = Qnil;
1d3dac41 5776
942ea06d 5777 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
7ee72033
MB
5778 &Vx_pixel_size_width_font_regexp,
5779 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
c061c855
GM
5780
5781Since Emacs gets width of a font matching with this regexp from
5782PIXEL_SIZE field of the name, font finding mechanism gets faster for
5783such a font. This is especially effective for such large fonts as
5784Chinese, Japanese, and Korean. */);
942ea06d
KH
5785 Vx_pixel_size_width_font_regexp = Qnil;
5786
255e4140
JD
5787/* This is not ifdef:ed, so other builds than GTK can customize it. */
5788 DEFVAR_BOOL ("x-use-old-gtk-file-dialog", &x_use_old_gtk_file_dialog,
5789 doc: /* *Non-nil means prompt with the old GTK file selection dialog.
5790If nil or if the file selection dialog is not available, the new GTK file
5791chooser is used instead. To turn off all file dialogs set the
5792variable `use-file-dialog'. */);
5793 x_use_old_gtk_file_dialog = 0;
5794
a8a35720
JD
5795 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files,
5796 doc: /* *If non-nil, the GTK file chooser will by default show hidden files.
5797Note that this is just the default, there is a toggle button on the file
5798chooser to show or not show hidden files on a case by case basis. */);
5799 x_gtk_show_hidden_files = 0;
5800
49be9d28
RS
5801 Fprovide (intern ("x"), Qnil);
5802
1d3dac41 5803#ifdef USE_X_TOOLKIT
6f3f6a8d 5804 Fprovide (intern ("x-toolkit"), Qnil);
5b827abb 5805#ifdef USE_MOTIF
6f3f6a8d 5806 Fprovide (intern ("motif"), Qnil);
fc2cdd9a 5807
7ee72033
MB
5808 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string,
5809 doc: /* Version info for LessTif/Motif. */);
fc2cdd9a
GM
5810 Vmotif_version_string = build_string (XmVERSION_STRING);
5811#endif /* USE_MOTIF */
5812#endif /* USE_X_TOOLKIT */
01f1ba30 5813
8a16bd4f 5814#ifdef USE_GTK
1ec2a572
JD
5815 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
5816 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
5817 But for a user it is a toolkit for X, and indeed, configure
5818 accepts --with-x-toolkit=gtk. */
5819 Fprovide (intern ("x-toolkit"), Qnil);
8a16bd4f
LK
5820 Fprovide (intern ("gtk"), Qnil);
5821
5822 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string,
5823 doc: /* Version info for GTK+. */);
5824 {
5825 char gtk_version[40];
5826 g_snprintf (gtk_version, sizeof (gtk_version), "%u.%u.%u",
5827 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
5828 Vgtk_version_string = build_string (gtk_version);
5829 }
5830#endif /* USE_GTK */
5831
333b20bb
GM
5832 /* X window properties. */
5833 defsubr (&Sx_change_window_property);
5834 defsubr (&Sx_delete_window_property);
5835 defsubr (&Sx_window_property);
5836
2d764c78 5837 defsubr (&Sxw_display_color_p);
d0c9d219 5838 defsubr (&Sx_display_grayscale_p);
2d764c78
EZ
5839 defsubr (&Sxw_color_defined_p);
5840 defsubr (&Sxw_color_values);
9d317b2c 5841 defsubr (&Sx_server_max_request_size);
41beb8fc
RS
5842 defsubr (&Sx_server_vendor);
5843 defsubr (&Sx_server_version);
5844 defsubr (&Sx_display_pixel_width);
5845 defsubr (&Sx_display_pixel_height);
5846 defsubr (&Sx_display_mm_width);
5847 defsubr (&Sx_display_mm_height);
5848 defsubr (&Sx_display_screens);
5849 defsubr (&Sx_display_planes);
5850 defsubr (&Sx_display_color_cells);
5851 defsubr (&Sx_display_visual_class);
5852 defsubr (&Sx_display_backing_store);
5853 defsubr (&Sx_display_save_under);
f676886a 5854 defsubr (&Sx_create_frame);
01f1ba30 5855 defsubr (&Sx_open_connection);
08a90d6a
RS
5856 defsubr (&Sx_close_connection);
5857 defsubr (&Sx_display_list);
01f1ba30 5858 defsubr (&Sx_synchronize);
3decc1e7 5859 defsubr (&Sx_focus_frame);
82bab41c 5860 defsubr (&Sx_backspace_delete_keys_p);
177c0ea7 5861
942ea06d
KH
5862 /* Setting callback functions for fontset handler. */
5863 get_font_info_func = x_get_font_info;
333b20bb
GM
5864
5865#if 0 /* This function pointer doesn't seem to be used anywhere.
5866 And the pointer assigned has the wrong type, anyway. */
942ea06d 5867 list_fonts_func = x_list_fonts;
333b20bb 5868#endif
177c0ea7 5869
942ea06d 5870 load_font_func = x_load_font;
bc1958c4 5871 find_ccl_program_func = x_find_ccl_program;
942ea06d
KH
5872 query_font_func = x_query_font;
5873 set_frame_fontset_func = x_set_font;
5874 check_window_system_func = check_x;
333b20bb 5875
0af913d7
GM
5876 hourglass_atimer = NULL;
5877 hourglass_shown_p = 0;
333b20bb
GM
5878
5879 defsubr (&Sx_show_tip);
5880 defsubr (&Sx_hide_tip);
333b20bb 5881 tip_timer = Qnil;
44b5a125
GM
5882 staticpro (&tip_timer);
5883 tip_frame = Qnil;
5884 staticpro (&tip_frame);
333b20bb 5885
06d62053
GM
5886 last_show_tip_args = Qnil;
5887 staticpro (&last_show_tip_args);
5888
90f2e16b 5889 defsubr (&Sx_uses_old_gtk_dialog);
29fabd8c 5890#if defined (USE_MOTIF) || defined (USE_GTK)
333b20bb
GM
5891 defsubr (&Sx_file_dialog);
5892#endif
5893}
5894
01f1ba30 5895#endif /* HAVE_X_WINDOWS */
ab5796a9
MB
5896
5897/* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
5898 (do not change this comment) */