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