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