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