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