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