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