* xterm.h (GTK_PREREQ): New macro.
[bpt/emacs.git] / src / gtkutil.c
CommitLineData
f392e843 1/* Functions for creating and updating GTK widgets.
95df8112 2
ab422c4d 3Copyright (C) 2003-2013 Free Software Foundation, Inc.
f392e843
JD
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
f392e843 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.
f392e843
JD
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/>. */
f392e843 19
f3bbb3b5 20#include <config.h>
f392e843
JD
21
22#ifdef USE_GTK
6e1a67fb 23#include <float.h>
e8794476 24#include <stdio.h>
620f13b0
PE
25
26#include <c-ctype.h>
27
f392e843
JD
28#include "lisp.h"
29#include "xterm.h"
30#include "blockinput.h"
aa477689 31#include "syssignal.h"
f392e843 32#include "window.h"
f392e843
JD
33#include "gtkutil.h"
34#include "termhooks.h"
5b07197a
DL
35#include "keyboard.h"
36#include "charset.h"
37#include "coding.h"
f392e843 38#include <gdk/gdkkeysyms.h>
ff5dec5c 39#include "xsettings.h"
f392e843 40
ddaa36e1
AS
41#ifdef HAVE_XFT
42#include <X11/Xft/Xft.h>
43#endif
810f2256 44
0afb4571
J
45#ifdef HAVE_GTK3
46#include <gtk/gtkx.h>
c195f2de 47#include "emacsgtkfixed.h"
0afb4571
J
48#endif
49
f392e843 50#define FRAME_TOTAL_PIXEL_HEIGHT(f) \
be786000 51 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
cea9be54 52
bfeabdc3
JD
53#define FRAME_TOTAL_PIXEL_WIDTH(f) \
54 (FRAME_PIXEL_WIDTH (f) + FRAME_TOOLBAR_WIDTH (f))
55
e547b051
J
56#ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
57#define gtk_widget_set_has_window(w, b) \
58 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
59#endif
60#ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
61#define gtk_dialog_get_action_area(w) ((w)->action_area)
62#define gtk_dialog_get_content_area(w) ((w)->vbox)
63#endif
64#ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
65#define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
66#endif
67#ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
68#define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
69#define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
70#define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
71#define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
72#endif
ad75d77e 73#if GTK_PREREQ (2, 12)
e547b051
J
74#define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
75#else
76#define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
77#endif
78
ad75d77e 79#if GTK_PREREQ (3, 2)
f2045622
CY
80#define USE_NEW_GTK_FONT_CHOOSER 1
81#else
82#define USE_NEW_GTK_FONT_CHOOSER 0
32bcadb4
JD
83#define gtk_font_chooser_dialog_new(x, y) \
84 gtk_font_selection_dialog_new (x)
85#undef GTK_FONT_CHOOSER
86#define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
87#define gtk_font_chooser_set_font(x, y) \
88 gtk_font_selection_dialog_set_font_name (x, y)
32bcadb4
JD
89#endif
90
0afb4571 91#ifndef HAVE_GTK3
01e0b5ad 92#ifdef USE_GTK_TOOLTIP
0afb4571 93#define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
01e0b5ad 94#endif
0afb4571 95#define gdk_window_get_geometry(w, a, b, c, d) \
7c86ee98 96 gdk_window_get_geometry (w, a, b, c, d, 0)
0afb4571
J
97#define gdk_x11_window_lookup_for_display(d, w) \
98 gdk_xid_table_lookup_for_display (d, w)
383b7c95
JD
99#define gtk_box_new(ori, spacing) \
100 ((ori) == GTK_ORIENTATION_HORIZONTAL \
101 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
102#define gtk_scrollbar_new(ori, spacing) \
103 ((ori) == GTK_ORIENTATION_HORIZONTAL \
104 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
6048fb2a 105#ifndef GDK_KEY_g
0afb4571
J
106#define GDK_KEY_g GDK_g
107#endif
383b7c95 108#endif /* HAVE_GTK3 */
0afb4571 109
4039c786
CY
110#define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
111
c195f2de 112static void update_theme_scrollbar_width (void);
1e5524e7 113
ca06f160
JD
114#define TB_INFO_KEY "xg_frame_tb_info"
115struct xg_frame_tb_info
116{
117 Lisp_Object last_tool_bar;
118 Lisp_Object style;
119 int n_last_items;
120 int hmargin, vmargin;
121 GtkTextDirection dir;
122};
123
810f2256
JD
124\f
125/***********************************************************************
126 Display handling functions
127 ***********************************************************************/
128
c1ffddfc
CY
129/* Keep track of the default display, or NULL if there is none. Emacs
130 may close all its displays. */
879ffad9
JD
131
132static GdkDisplay *gdpy_def;
133
810f2256
JD
134/* When the GTK widget W is to be created on a display for F that
135 is not the default display, set the display for W.
136 W can be a GtkMenu or a GtkWindow widget. */
71bacd48 137
810f2256 138static void
971de7fb 139xg_set_screen (GtkWidget *w, FRAME_PTR f)
810f2256 140{
0afb4571 141 if (FRAME_X_DISPLAY (f) != DEFAULT_GDK_DISPLAY ())
810f2256
JD
142 {
143 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
144 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
145
146 if (GTK_IS_MENU (w))
147 gtk_menu_set_screen (GTK_MENU (w), gscreen);
148 else
149 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
150 }
151}
152
153
810f2256
JD
154/* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
155 *DPY is set to NULL if the display can't be opened.
156
157 Returns non-zero if display could be opened, zero if display could not
158 be opened, and less than zero if the GTK version doesn't support
e1dbe924 159 multiple displays. */
71bacd48 160
e547b051 161void
971de7fb 162xg_display_open (char *display_name, Display **dpy)
810f2256 163{
810f2256
JD
164 GdkDisplay *gdpy;
165
166 gdpy = gdk_display_open (display_name);
c39ea606
JD
167 if (!gdpy_def && gdpy)
168 {
169 gdpy_def = gdpy;
170 gdk_display_manager_set_default_display (gdk_display_manager_get (),
171 gdpy);
172 }
810f2256 173
c1ffddfc 174 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
810f2256
JD
175}
176
177
71bacd48
JD
178/* Close display DPY. */
179
810f2256
JD
180void
181xg_display_close (Display *dpy)
182{
810f2256
JD
183 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
184
c1ffddfc
CY
185 /* If this is the default display, try to change it before closing.
186 If there is no other display to use, gdpy_def is set to NULL, and
187 the next call to xg_display_open resets the default display. */
810f2256
JD
188 if (gdk_display_get_default () == gdpy)
189 {
190 struct x_display_info *dpyinfo;
c1ffddfc 191 GdkDisplay *gdpy_new = NULL;
810f2256
JD
192
193 /* Find another display. */
194 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
195 if (dpyinfo->display != dpy)
196 {
c1ffddfc
CY
197 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
198 gdk_display_manager_set_default_display (gdk_display_manager_get (),
199 gdpy_new);
810f2256
JD
200 break;
201 }
c1ffddfc 202 gdpy_def = gdpy_new;
810f2256
JD
203 }
204
9d7dda8a 205#if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION < 10
c1ffddfc
CY
206 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
207 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
208 can continue running, but there will be memory leaks. */
9d7dda8a 209 g_object_run_dispose (G_OBJECT (gdpy));
810f2256 210#else
9d7dda8a 211 /* This seems to be fixed in GTK 2.10. */
810f2256
JD
212 gdk_display_close (gdpy);
213#endif
810f2256 214}
cea9be54 215
f392e843
JD
216\f
217/***********************************************************************
218 Utility functions
219 ***********************************************************************/
f392e843
JD
220/* The next two variables and functions are taken from lwlib. */
221static widget_value *widget_value_free_list;
222static int malloc_cpt;
223
224/* Allocate a widget_value structure, either by taking one from the
225 widget_value_free_list or by malloc:ing a new one.
226
227 Return a pointer to the allocated structure. */
71bacd48 228
f392e843 229widget_value *
971de7fb 230malloc_widget_value (void)
f392e843
JD
231{
232 widget_value *wv;
233 if (widget_value_free_list)
234 {
235 wv = widget_value_free_list;
236 widget_value_free_list = wv->free_list;
237 wv->free_list = 0;
238 }
239 else
240 {
38182d90 241 wv = xmalloc (sizeof *wv);
f392e843
JD
242 malloc_cpt++;
243 }
244 memset (wv, 0, sizeof (widget_value));
245 return wv;
246}
247
248/* This is analogous to free. It frees only what was allocated
249 by malloc_widget_value, and no substructures. */
71bacd48 250
f392e843 251void
971de7fb 252free_widget_value (widget_value *wv)
f392e843
JD
253{
254 if (wv->free_list)
1088b922 255 emacs_abort ();
f392e843
JD
256
257 if (malloc_cpt > 25)
258 {
259 /* When the number of already allocated cells is too big,
260 We free it. */
8b146312 261 xfree (wv);
f392e843
JD
262 malloc_cpt--;
263 }
264 else
265 {
266 wv->free_list = widget_value_free_list;
267 widget_value_free_list = wv;
268 }
269}
270
f392e843 271
810f2256
JD
272/* Create and return the cursor to be used for popup menus and
273 scroll bars on display DPY. */
71bacd48 274
810f2256 275GdkCursor *
971de7fb 276xg_create_default_cursor (Display *dpy)
810f2256
JD
277{
278 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
279 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
280}
281
0afb4571
J
282static GdkPixbuf *
283xg_get_pixbuf_from_pixmap (FRAME_PTR f, Pixmap pix)
284{
285 int iunused;
286 GdkPixbuf *tmp_buf;
287 Window wunused;
288 unsigned int width, height, uunused;
289 XImage *xim;
290
291 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
292 &width, &height, &uunused, &uunused);
293
294 xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
295 ~0, XYPixmap);
296 if (!xim) return 0;
297
7c86ee98 298 tmp_buf = gdk_pixbuf_new_from_data ((guchar *) xim->data,
0afb4571
J
299 GDK_COLORSPACE_RGB,
300 FALSE,
301 xim->bitmap_unit,
5f8f9cc2
PE
302 width,
303 height,
0afb4571
J
304 xim->bytes_per_line,
305 NULL,
306 NULL);
307 XDestroyImage (xim);
308 return tmp_buf;
309}
310
5695f1b4
JD
311/* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
312
1001243b 313static GdkPixbuf *
0afb4571
J
314xg_get_pixbuf_from_pix_and_mask (FRAME_PTR f,
315 Pixmap pix,
316 Pixmap mask)
5695f1b4 317{
32e737d7 318 int width, height;
5695f1b4 319 GdkPixbuf *icon_buf, *tmp_buf;
5695f1b4 320
0afb4571 321 tmp_buf = xg_get_pixbuf_from_pixmap (f, pix);
5695f1b4
JD
322 icon_buf = gdk_pixbuf_add_alpha (tmp_buf, FALSE, 0, 0, 0);
323 g_object_unref (G_OBJECT (tmp_buf));
324
0afb4571
J
325 width = gdk_pixbuf_get_width (icon_buf);
326 height = gdk_pixbuf_get_height (icon_buf);
7c86ee98 327
0afb4571 328 if (mask)
5695f1b4 329 {
0afb4571 330 GdkPixbuf *mask_buf = xg_get_pixbuf_from_pixmap (f, mask);
5695f1b4
JD
331 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
332 guchar *mask_pixels = gdk_pixbuf_get_pixels (mask_buf);
333 int rowstride = gdk_pixbuf_get_rowstride (icon_buf);
334 int mask_rowstride = gdk_pixbuf_get_rowstride (mask_buf);
335 int y;
336
337 for (y = 0; y < height; ++y)
338 {
339 guchar *iconptr, *maskptr;
340 int x;
341
342 iconptr = pixels + y * rowstride;
343 maskptr = mask_pixels + y * mask_rowstride;
344
345 for (x = 0; x < width; ++x)
346 {
347 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
348 just R is sufficient. */
349 if (maskptr[0] == 0)
350 iconptr[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
351
352 iconptr += rowstride/width;
353 maskptr += mask_rowstride/width;
354 }
355 }
356
357 g_object_unref (G_OBJECT (mask_buf));
358 }
359
360 return icon_buf;
361}
362
98a92193 363static Lisp_Object
971de7fb 364file_for_image (Lisp_Object image)
98a92193
JD
365{
366 Lisp_Object specified_file = Qnil;
367 Lisp_Object tail;
98a92193
JD
368
369 for (tail = XCDR (image);
370 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
371 tail = XCDR (XCDR (tail)))
372 if (EQ (XCAR (tail), QCfile))
373 specified_file = XCAR (XCDR (tail));
374
375 return specified_file;
376}
377
5b166323
JD
378/* For the image defined in IMG, make and return a GtkImage. For displays with
379 8 planes or less we must make a GdkPixbuf and apply the mask manually.
3ed8598c 380 Otherwise the highlighting and dimming the tool bar code in GTK does
5b166323
JD
381 will look bad. For display with more than 8 planes we just use the
382 pixmap and mask directly. For monochrome displays, GTK doesn't seem
383 able to use external pixmaps, it looks bad whatever we do.
384 The image is defined on the display where frame F is.
385 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
386 If OLD_WIDGET is NULL, a new widget is constructed and returned.
387 If OLD_WIDGET is not NULL, that widget is modified. */
71bacd48 388
5b166323 389static GtkWidget *
e4c8d29a
J
390xg_get_image_for_pixmap (FRAME_PTR f,
391 struct image *img,
392 GtkWidget *widget,
393 GtkImage *old_widget)
810f2256 394{
45c94881 395 GdkPixbuf *icon_buf;
03ecb80f 396
0facd9c3 397 /* If we have a file, let GTK do all the image handling.
03ecb80f 398 This seems to be the only way to make insensitive and activated icons
0facd9c3 399 look good in all cases. */
98a92193 400 Lisp_Object specified_file = file_for_image (img->spec);
a821c035 401 Lisp_Object file;
0facd9c3 402
a821c035
JD
403 /* We already loaded the image once before calling this
404 function, so this only fails if the image file has been removed.
405 In that case, use the pixmap already loaded. */
0facd9c3 406
a821c035
JD
407 if (STRINGP (specified_file)
408 && STRINGP (file = x_find_image_file (specified_file)))
409 {
0facd9c3
JD
410 if (! old_widget)
411 old_widget = GTK_IMAGE (gtk_image_new_from_file (SSDATA (file)));
412 else
413 gtk_image_set_from_file (old_widget, SSDATA (file));
414
0facd9c3 415 return GTK_WIDGET (old_widget);
03ecb80f 416 }
810f2256 417
0facd9c3
JD
418 /* No file, do the image handling ourselves. This will look very bad
419 on a monochrome display, and sometimes bad on all displays with
420 certain themes. */
421
45c94881
JD
422 /* This is a workaround to make icons look good on pseudo color
423 displays. Apparently GTK expects the images to have an alpha
424 channel. If they don't, insensitive and activated icons will
425 look bad. This workaround does not work on monochrome displays,
426 and is strictly not needed on true color/static color displays (i.e.
427 16 bits and higher). But we do it anyway so we get a pixbuf that is
428 not associated with the img->pixmap. The img->pixmap may be removed
429 by clearing the image cache and then the tool bar redraw fails, since
430 Gtk+ assumes the pixmap is always there. */
0afb4571 431 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
5695f1b4 432
7c86ee98 433 if (icon_buf)
0afb4571
J
434 {
435 if (! old_widget)
436 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
437 else
438 gtk_image_set_from_pixbuf (old_widget, icon_buf);
5b166323 439
0afb4571
J
440 g_object_unref (G_OBJECT (icon_buf));
441 }
74cdfe05 442
5b166323 443 return GTK_WIDGET (old_widget);
810f2256
JD
444}
445
446
447/* Set CURSOR on W and all widgets W contain. We must do like this
448 for scroll bars and menu because they create widgets internally,
449 and it is those widgets that are visible. */
71bacd48 450
810f2256 451static void
971de7fb 452xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
f392e843 453{
5e617bc2 454 GdkWindow *window = gtk_widget_get_window (w);
e547b051 455 GList *children = gdk_window_peek_children (window);
f392e843 456
e547b051 457 gdk_window_set_cursor (window, cursor);
f392e843
JD
458
459 /* The scroll bar widget has more than one GDK window (had to look at
460 the source to figure this out), and there is no way to set cursor
461 on widgets in GTK. So we must set the cursor for all GDK windows.
462 Ditto for menus. */
463
464 for ( ; children; children = g_list_next (children))
810f2256 465 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
f392e843
JD
466}
467
f392e843 468/* Insert NODE into linked LIST. */
71bacd48 469
f392e843
JD
470static void
471xg_list_insert (xg_list_node *list, xg_list_node *node)
472{
473 xg_list_node *list_start = list->next;
177c0ea7 474
f392e843
JD
475 if (list_start) list_start->prev = node;
476 node->next = list_start;
477 node->prev = 0;
478 list->next = node;
479}
480
481/* Remove NODE from linked LIST. */
71bacd48 482
f392e843
JD
483static void
484xg_list_remove (xg_list_node *list, xg_list_node *node)
485{
486 xg_list_node *list_start = list->next;
487 if (node == list_start)
488 {
489 list->next = node->next;
490 if (list->next) list->next->prev = 0;
491 }
492 else
493 {
494 node->prev->next = node->next;
495 if (node->next) node->next->prev = node->prev;
496 }
497}
498
499/* Allocate and return a utf8 version of STR. If STR is already
42ca4633
J
500 utf8 or NULL, just return a copy of STR.
501 A new string is allocated and the caller must free the result
f392e843 502 with g_free. */
71bacd48 503
f392e843 504static char *
42ca4633 505get_utf8_string (const char *str)
f392e843 506{
42ca4633 507 char *utf8_str;
177c0ea7 508
241ad3ca
JD
509 if (!str) return NULL;
510
f392e843 511 /* If not UTF-8, try current locale. */
241ad3ca 512 if (!g_utf8_validate (str, -1, NULL))
f392e843 513 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
42ca4633
J
514 else
515 return g_strdup (str);
f392e843 516
8e5a8840 517 if (!utf8_str)
241ad3ca
JD
518 {
519 /* Probably some control characters in str. Escape them. */
0eb0f318
PE
520 ptrdiff_t len;
521 ptrdiff_t nr_bad = 0;
241ad3ca
JD
522 gsize bytes_read;
523 gsize bytes_written;
524 unsigned char *p = (unsigned char *)str;
525 char *cp, *up;
65dc836c 526 GError *err = NULL;
241ad3ca 527
b43da352 528 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
65dc836c
PE
529 &bytes_written, &err))
530 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
241ad3ca
JD
531 {
532 ++nr_bad;
533 p += bytes_written+1;
65dc836c
PE
534 g_error_free (err);
535 err = NULL;
241ad3ca
JD
536 }
537
65dc836c 538 if (err)
241ad3ca 539 {
65dc836c
PE
540 g_error_free (err);
541 err = NULL;
241ad3ca
JD
542 }
543 if (cp) g_free (cp);
544
0eb0f318 545 len = strlen (str);
7216e43b 546 if ((min (PTRDIFF_MAX, SIZE_MAX) - len - 1) / 4 < nr_bad)
0eb0f318
PE
547 memory_full (SIZE_MAX);
548 up = utf8_str = xmalloc (len + nr_bad * 4 + 1);
b43da352 549 p = (unsigned char *)str;
241ad3ca 550
b43da352 551 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
65dc836c
PE
552 &bytes_written, &err))
553 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
241ad3ca 554 {
e99a530f 555 memcpy (up, p, bytes_written);
241ad3ca 556 sprintf (up + bytes_written, "\\%03o", p[bytes_written]);
241ad3ca
JD
557 up += bytes_written+4;
558 p += bytes_written+1;
65dc836c
PE
559 g_error_free (err);
560 err = NULL;
241ad3ca
JD
561 }
562
8e5a8840 563 if (cp)
241ad3ca
JD
564 {
565 strcat (utf8_str, cp);
566 g_free (cp);
567 }
65dc836c 568 if (err)
241ad3ca 569 {
65dc836c
PE
570 g_error_free (err);
571 err = NULL;
241ad3ca
JD
572 }
573 }
f392e843
JD
574 return utf8_str;
575}
576
3a46642b
J
577/* Check for special colors used in face spec for region face.
578 The colors are fetched from the Gtk+ theme.
18e27ea8 579 Return true if color was found, false if not. */
3a46642b 580
18e27ea8 581bool
3a46642b
J
582xg_check_special_colors (struct frame *f,
583 const char *color_name,
584 XColor *color)
585{
18e27ea8
PE
586 bool success_p = 0;
587 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
588 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
0afb4571
J
589
590 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
591 return success_p;
592
4d7e6e51 593 block_input ();
0afb4571
J
594 {
595#ifdef HAVE_GTK3
596 GtkStyleContext *gsty
597 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
598 GdkRGBA col;
84722b3d 599 char buf[sizeof "rgbi://" + 3 * (DBL_MAX_10_EXP + sizeof "-1.000000" - 1)];
0afb4571
J
600 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
601 if (get_fg)
602 gtk_style_context_get_color (gsty, state, &col);
603 else
604 gtk_style_context_get_background_color (gsty, state, &col);
605
606 sprintf (buf, "rgbi:%lf/%lf/%lf", col.red, col.green, col.blue);
18e27ea8
PE
607 success_p = (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
608 buf, color)
609 != 0);
0afb4571
J
610#else
611 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
612 GdkColor *grgb = get_bg
613 ? &gsty->bg[GTK_STATE_SELECTED]
614 : &gsty->fg[GTK_STATE_SELECTED];
615
616 color->red = grgb->red;
617 color->green = grgb->green;
618 color->blue = grgb->blue;
619 color->pixel = grgb->pixel;
620 success_p = 1;
621#endif
3a46642b 622
0afb4571 623 }
4d7e6e51 624 unblock_input ();
3a46642b
J
625 return success_p;
626}
627
f392e843
JD
628
629\f
aa1859f5
J
630/***********************************************************************
631 Tooltips
632 ***********************************************************************/
633/* Gtk+ calls this callback when the parent of our tooltip dummy changes.
634 We use that to pop down the tooltip. This happens if Gtk+ for some
635 reason wants to change or hide the tooltip. */
636
ac01763e
JD
637#ifdef USE_GTK_TOOLTIP
638
aa1859f5
J
639static void
640hierarchy_ch_cb (GtkWidget *widget,
641 GtkWidget *previous_toplevel,
642 gpointer user_data)
643{
644 FRAME_PTR f = (FRAME_PTR) user_data;
645 struct x_output *x = f->output_data.x;
646 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
088c8c09 647
aa1859f5
J
648 if (! top || ! GTK_IS_WINDOW (top))
649 gtk_widget_hide (previous_toplevel);
650}
651
652/* Callback called when Gtk+ thinks a tooltip should be displayed.
653 We use it to get the tooltip window and the tooltip widget so
654 we can manipulate the ourselves.
655
656 Return FALSE ensures that the tooltip is not shown. */
657
658static gboolean
659qttip_cb (GtkWidget *widget,
660 gint xpos,
661 gint ypos,
662 gboolean keyboard_mode,
663 GtkTooltip *tooltip,
664 gpointer user_data)
665{
666 FRAME_PTR f = (FRAME_PTR) user_data;
667 struct x_output *x = f->output_data.x;
088c8c09 668 if (x->ttip_widget == NULL)
aa1859f5 669 {
1b854618
JD
670 GtkWidget *p;
671 GList *list, *iter;
672
aa1859f5
J
673 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
674 x->ttip_widget = tooltip;
675 g_object_ref (G_OBJECT (tooltip));
676 x->ttip_lbl = gtk_label_new ("");
677 g_object_ref (G_OBJECT (x->ttip_lbl));
678 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
679 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
1b854618
JD
680
681 /* Change stupid Gtk+ default line wrapping. */
682 p = gtk_widget_get_parent (x->ttip_lbl);
683 list = gtk_container_get_children (GTK_CONTAINER (p));
1b854618
JD
684 for (iter = list; iter; iter = g_list_next (iter))
685 {
686 GtkWidget *w = GTK_WIDGET (iter->data);
687 if (GTK_IS_LABEL (w))
688 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
689 }
690 g_list_free (list);
691
8daaeda6
J
692 /* ATK needs an empty title for some reason. */
693 gtk_window_set_title (x->ttip_window, "");
aa1859f5
J
694 /* Realize so we can safely get screen later on. */
695 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
696 gtk_widget_realize (x->ttip_lbl);
697
698 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
699 G_CALLBACK (hierarchy_ch_cb), f);
700 }
701 return FALSE;
702}
703
ac01763e
JD
704#endif /* USE_GTK_TOOLTIP */
705
aa1859f5 706/* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
18e27ea8 707 Return true if a system tooltip is available. */
aa1859f5 708
18e27ea8 709bool
aa1859f5 710xg_prepare_tooltip (FRAME_PTR f,
0ce7e563
JD
711 Lisp_Object string,
712 int *width,
aa1859f5
J
713 int *height)
714{
ac01763e
JD
715#ifndef USE_GTK_TOOLTIP
716 return 0;
717#else
aa1859f5
J
718 struct x_output *x = f->output_data.x;
719 GtkWidget *widget;
720 GdkWindow *gwin;
721 GdkScreen *screen;
722 GtkSettings *settings;
723 gboolean tt_enabled = TRUE;
724 GtkRequisition req;
725 Lisp_Object encoded_string;
726
727 if (!x->ttip_lbl) return 0;
728
4d7e6e51 729 block_input ();
aa1859f5
J
730 encoded_string = ENCODE_UTF_8 (string);
731 widget = GTK_WIDGET (x->ttip_lbl);
732 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
0afb4571 733 screen = gdk_window_get_screen (gwin);
aa1859f5
J
734 settings = gtk_settings_get_for_screen (screen);
735 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
088c8c09 736 if (tt_enabled)
aa1859f5
J
737 {
738 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
739 /* Record that we disabled it so it can be enabled again. */
740 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
741 (gpointer)f);
742 }
088c8c09 743
aa1859f5
J
744 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
745 g_object_set_data (G_OBJECT
746 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
747 "gdk-display-current-tooltip", NULL);
748
0ce7e563 749 /* Put our dummy widget in so we can get callbacks for unrealize and
aa1859f5
J
750 hierarchy-changed. */
751 gtk_tooltip_set_custom (x->ttip_widget, widget);
1b854618 752 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
0afb4571 753 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
aa1859f5
J
754 if (width) *width = req.width;
755 if (height) *height = req.height;
088c8c09 756
4d7e6e51 757 unblock_input ();
aa1859f5
J
758
759 return 1;
ac01763e 760#endif /* USE_GTK_TOOLTIP */
aa1859f5
J
761}
762
763/* Show the tooltip at ROOT_X and ROOT_Y.
764 xg_prepare_tooltip must have been called before this function. */
765
766void
767xg_show_tooltip (FRAME_PTR f, int root_x, int root_y)
768{
ac01763e 769#ifdef USE_GTK_TOOLTIP
aa1859f5
J
770 struct x_output *x = f->output_data.x;
771 if (x->ttip_window)
772 {
4d7e6e51 773 block_input ();
aa1859f5
J
774 gtk_window_move (x->ttip_window, root_x, root_y);
775 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
4d7e6e51 776 unblock_input ();
aa1859f5 777 }
ac01763e 778#endif
aa1859f5
J
779}
780
781/* Hide tooltip if shown. Do nothing if not shown.
18e27ea8 782 Return true if tip was hidden, false if not (i.e. not using
aa1859f5
J
783 system tooltips). */
784
18e27ea8 785bool
aa1859f5
J
786xg_hide_tooltip (FRAME_PTR f)
787{
18e27ea8 788 bool ret = 0;
ac01763e 789#ifdef USE_GTK_TOOLTIP
aa1859f5
J
790 if (f->output_data.x->ttip_window)
791 {
792 GtkWindow *win = f->output_data.x->ttip_window;
4d7e6e51 793 block_input ();
aa1859f5
J
794 gtk_widget_hide (GTK_WIDGET (win));
795
796 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
797 {
798 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
0afb4571 799 GdkScreen *screen = gdk_window_get_screen (gwin);
aa1859f5
J
800 GtkSettings *settings = gtk_settings_get_for_screen (screen);
801 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
802 }
4d7e6e51 803 unblock_input ();
aa1859f5
J
804
805 ret = 1;
806 }
ac01763e 807#endif
aa1859f5
J
808 return ret;
809}
810
811\f
f392e843
JD
812/***********************************************************************
813 General functions for creating widgets, resizing, events, e.t.c.
814 ***********************************************************************/
815
005c8d13
JD
816static void
817my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
818 const gchar *msg, gpointer user_data)
819{
820 if (!strstr (msg, "visible children"))
821 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
822}
823
f392e843
JD
824/* Make a geometry string and pass that to GTK. It seems this is the
825 only way to get geometry position right if the user explicitly
826 asked for a position when starting Emacs.
827 F is the frame we shall set geometry for. */
71bacd48 828
f392e843 829static void
971de7fb 830xg_set_geometry (FRAME_PTR f)
f392e843 831{
92848133 832 if (f->size_hint_flags & (USPosition | PPosition))
1c9c1270
JD
833 {
834 int left = f->left_pos;
835 int xneg = f->size_hint_flags & XNegative;
836 int top = f->top_pos;
837 int yneg = f->size_hint_flags & YNegative;
84722b3d 838 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
005c8d13 839 guint id;
1c9c1270
JD
840
841 if (xneg)
842 left = -left;
843 if (yneg)
844 top = -top;
845
22aa44a8
JD
846 sprintf (geom_str, "=%dx%d%c%d%c%d",
847 FRAME_PIXEL_WIDTH (f),
848 FRAME_PIXEL_HEIGHT (f),
1c9c1270
JD
849 (xneg ? '-' : '+'), left,
850 (yneg ? '-' : '+'), top);
851
005c8d13
JD
852 /* Silence warning about visible children. */
853 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
854 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
855
1c9c1270
JD
856 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
857 geom_str))
858 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
005c8d13
JD
859
860 g_log_remove_handler ("Gtk", id);
1c9c1270 861 }
f392e843
JD
862}
863
7c583cd8
JD
864/* Clear under internal border if any. As we use a mix of Gtk+ and X calls
865 and use a GtkFixed widget, this doesn't happen automatically. */
866
867static void
971de7fb 868xg_clear_under_internal_border (FRAME_PTR f)
7c583cd8
JD
869{
870 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
871 {
872 GtkWidget *wfixed = f->output_data.x->edit_widget;
873 gtk_widget_queue_draw (wfixed);
874 gdk_window_process_all_updates ();
875 x_clear_area (FRAME_X_DISPLAY (f),
876 FRAME_X_WINDOW (f),
877 0, 0,
878 FRAME_PIXEL_WIDTH (f),
879 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
880 x_clear_area (FRAME_X_DISPLAY (f),
881 FRAME_X_WINDOW (f),
882 0, 0,
883 FRAME_INTERNAL_BORDER_WIDTH (f),
884 FRAME_PIXEL_HEIGHT (f), 0);
885 x_clear_area (FRAME_X_DISPLAY (f),
886 FRAME_X_WINDOW (f),
887 0, FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
888 FRAME_PIXEL_WIDTH (f),
889 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
890 x_clear_area (FRAME_X_DISPLAY (f),
891 FRAME_X_WINDOW (f),
892 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
893 0,
894 FRAME_INTERNAL_BORDER_WIDTH (f),
895 FRAME_PIXEL_HEIGHT (f), 0);
896 }
897}
898
1e39cbfb
JD
899/* Function to handle resize of our frame. As we have a Gtk+ tool bar
900 and a Gtk+ menu bar, we get resize events for the edit part of the
901 frame only. We let Gtk+ deal with the Gtk+ parts.
f392e843
JD
902 F is the frame to resize.
903 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
71bacd48 904
f392e843 905void
971de7fb 906xg_frame_resized (FRAME_PTR f, int pixelwidth, int pixelheight)
f392e843 907{
7b507248
JD
908 int rows, columns;
909
910 if (pixelwidth == -1 && pixelheight == -1)
911 {
e547b051
J
912 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
913 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
914 0, 0,
0afb4571 915 &pixelwidth, &pixelheight);
7b507248
JD
916 else return;
917 }
088c8c09 918
7b507248
JD
919
920 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelheight);
921 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pixelwidth);
922
923 if (columns != FRAME_COLS (f)
924 || rows != FRAME_LINES (f)
925 || pixelwidth != FRAME_PIXEL_WIDTH (f)
926 || pixelheight != FRAME_PIXEL_HEIGHT (f))
f392e843 927 {
1e39cbfb
JD
928 FRAME_PIXEL_WIDTH (f) = pixelwidth;
929 FRAME_PIXEL_HEIGHT (f) = pixelheight;
f392e843 930
7c583cd8 931 xg_clear_under_internal_border (f);
5a130941
JD
932 change_frame_size (f, rows, columns, 0, 1, 0);
933 SET_FRAME_GARBAGED (f);
934 cancel_mouse_face (f);
1e39cbfb
JD
935 }
936}
f392e843 937
da6062e6 938/* Resize the outer window of frame F after changing the height.
1c9c1270 939 COLUMNS/ROWS is the size the edit area shall have after the resize. */
71bacd48 940
f392e843 941void
971de7fb 942xg_frame_set_char_size (FRAME_PTR f, int cols, int rows)
f392e843 943{
be786000 944 int pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
f392e843 945 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
5fd6f727 946 int pixelwidth;
177c0ea7 947
1e39cbfb
JD
948 if (FRAME_PIXEL_HEIGHT (f) == 0)
949 return;
950
f392e843
JD
951 /* Take into account the size of the scroll bar. Always use the
952 number of columns occupied by the scroll bar here otherwise we
953 might end up with a frame width that is not a multiple of the
954 frame's character width which is bad for vertically split
955 windows. */
be786000
KS
956 f->scroll_bar_actual_width
957 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
f392e843 958
055d3c98 959 compute_fringe_widths (f, 0);
f392e843 960
be786000 961 /* FRAME_TEXT_COLS_TO_PIXEL_WIDTH uses scroll_bar_actual_width, so call it
5fd6f727 962 after calculating that value. */
bfeabdc3
JD
963 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols)
964 + FRAME_TOOLBAR_WIDTH (f);
5fd6f727 965
7c583cd8
JD
966
967 /* Do this before resize, as we don't know yet if we will be resized. */
968 xg_clear_under_internal_border (f);
969
f392e843 970 /* Must resize our top level widget. Font size may have changed,
3f1c6666 971 but not rows/cols. */
f392e843
JD
972 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
973 pixelwidth, pixelheight);
3f1c6666 974 x_wm_set_size_hint (f, 0, 0);
47a6002f 975
5c646d5a
JD
976 SET_FRAME_GARBAGED (f);
977 cancel_mouse_face (f);
978
7b507248
JD
979 /* We can not call change_frame_size for a mapped frame,
980 we can not set pixel width/height either. The window manager may
981 override our resize request, XMonad does this all the time.
982 The best we can do is try to sync, so lisp code sees the updated
983 size as fast as possible.
984 For unmapped windows, we can set rows/cols. When
985 the frame is mapped again we will (hopefully) get the correct size. */
edfa7fa0 986 if (FRAME_VISIBLE_P (f))
5c646d5a
JD
987 {
988 /* Must call this to flush out events */
989 (void)gtk_events_pending ();
990 gdk_flush ();
991 x_wait_for_event (f, ConfigureNotify);
992 }
7b507248
JD
993 else
994 {
5c646d5a 995 change_frame_size (f, rows, cols, 0, 1, 0);
7b507248
JD
996 FRAME_PIXEL_WIDTH (f) = pixelwidth;
997 FRAME_PIXEL_HEIGHT (f) = pixelheight;
7b507248 998 }
3f1c6666
JD
999}
1000
bfeabdc3 1001/* Handle height/width changes (i.e. add/remove/move menu/toolbar).
3f1c6666
JD
1002 The policy is to keep the number of editable lines. */
1003
1004static void
bfeabdc3 1005xg_height_or_width_changed (FRAME_PTR f)
3f1c6666
JD
1006{
1007 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
bfeabdc3
JD
1008 FRAME_TOTAL_PIXEL_WIDTH (f),
1009 FRAME_TOTAL_PIXEL_HEIGHT (f));
3f1c6666 1010 f->output_data.x->hint_flags = 0;
f26fab36 1011 x_wm_set_size_hint (f, 0, 0);
f392e843
JD
1012}
1013
810f2256 1014/* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
f392e843
JD
1015 Must be done like this, because GtkWidget:s can have "hidden"
1016 X Window that aren't accessible.
1017
1018 Return 0 if no widget match WDESC. */
71bacd48 1019
f392e843 1020GtkWidget *
971de7fb 1021xg_win_to_widget (Display *dpy, Window wdesc)
f392e843
JD
1022{
1023 gpointer gdkwin;
1024 GtkWidget *gwdesc = 0;
1025
4d7e6e51 1026 block_input ();
810f2256 1027
0afb4571
J
1028 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1029 wdesc);
f392e843
JD
1030 if (gdkwin)
1031 {
1032 GdkEvent event;
1033 event.any.window = gdkwin;
3b574623 1034 event.any.type = GDK_NOTHING;
f392e843
JD
1035 gwdesc = gtk_get_event_widget (&event);
1036 }
177c0ea7 1037
4d7e6e51 1038 unblock_input ();
f392e843
JD
1039 return gwdesc;
1040}
1041
0afb4571 1042/* Set the background of widget W to PIXEL. */
71bacd48 1043
f392e843 1044static void
0afb4571 1045xg_set_widget_bg (FRAME_PTR f, GtkWidget *w, long unsigned int pixel)
f392e843 1046{
0afb4571
J
1047#ifdef HAVE_GTK3
1048 GdkRGBA bg;
1049 XColor xbg;
1050 xbg.pixel = pixel;
1051 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1052 {
537f336d
JD
1053 bg.red = (double)xbg.red/65535.0;
1054 bg.green = (double)xbg.green/65535.0;
1055 bg.blue = (double)xbg.blue/65535.0;
0afb4571
J
1056 bg.alpha = 1.0;
1057 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1058 }
1059#else
1060 GdkColor bg;
f392e843 1061 GdkColormap *map = gtk_widget_get_colormap (w);
0afb4571
J
1062 gdk_colormap_query_color (map, pixel, &bg);
1063 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1064#endif
f392e843
JD
1065}
1066
3a46642b
J
1067/* Callback called when the gtk theme changes.
1068 We notify lisp code so it can fix faces used for region for example. */
1069
1070static void
1071style_changed_cb (GObject *go,
1072 GParamSpec *spec,
1073 gpointer user_data)
1074{
1075 struct input_event event;
1076 GdkDisplay *gdpy = (GdkDisplay *) user_data;
1077 const char *display_name = gdk_display_get_name (gdpy);
c195f2de 1078 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
3a46642b
J
1079
1080 EVENT_INIT (event);
1081 event.kind = CONFIG_CHANGED_EVENT;
9bda3520 1082 event.frame_or_window = build_string (display_name);
3a46642b
J
1083 /* Theme doesn't change often, so intern is called seldom. */
1084 event.arg = intern ("theme-name");
1085 kbd_buffer_store_event (&event);
c195f2de
JD
1086
1087 update_theme_scrollbar_width ();
1088
1089 /* If scroll bar width changed, we need set the new size on all frames
1090 on this display. */
9bda3520 1091 if (dpy)
c195f2de
JD
1092 {
1093 Lisp_Object rest, frame;
1094 FOR_EACH_FRAME (rest, frame)
1095 {
1096 FRAME_PTR f = XFRAME (frame);
54e95010
JD
1097 if (FRAME_LIVE_P (f)
1098 && FRAME_X_P (f)
1099 && FRAME_X_DISPLAY (f) == dpy)
c195f2de
JD
1100 {
1101 x_set_scroll_bar_default_width (f);
1102 xg_frame_set_char_size (f, FRAME_COLS (f), FRAME_LINES (f));
1103 }
1104 }
1105 }
3a46642b
J
1106}
1107
0afb4571
J
1108/* Called when a delete-event occurs on WIDGET. */
1109
1110static gboolean
1111delete_cb (GtkWidget *widget,
1112 GdkEvent *event,
1113 gpointer user_data)
1114{
1115#ifdef HAVE_GTK3
1116 /* The event doesn't arrive in the normal event loop. Send event
1117 here. */
1118 FRAME_PTR f = (FRAME_PTR) user_data;
1119 struct input_event ie;
1120
1121 EVENT_INIT (ie);
1122 ie.kind = DELETE_WINDOW_EVENT;
1123 XSETFRAME (ie.frame_or_window, f);
1124 kbd_buffer_store_event (&ie);
1125#endif
1126
1127 return TRUE;
1128}
1129
f392e843 1130/* Create and set up the GTK widgets for frame F.
18e27ea8 1131 Return true if creation succeeded. */
71bacd48 1132
18e27ea8 1133bool
971de7fb 1134xg_create_frame_widgets (FRAME_PTR f)
f392e843
JD
1135{
1136 GtkWidget *wtop;
bfeabdc3 1137 GtkWidget *wvbox, *whbox;
f392e843 1138 GtkWidget *wfixed;
1068fe4d 1139#ifndef HAVE_GTK3
f392e843 1140 GtkRcStyle *style;
1068fe4d 1141#endif
f392e843 1142 char *title = 0;
177c0ea7 1143
4d7e6e51 1144 block_input ();
f392e843 1145
0f0d223b 1146 if (FRAME_X_EMBEDDED_P (f))
383b7c95
JD
1147 {
1148 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1149 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1150 }
0f0d223b
JD
1151 else
1152 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1153
54e9e3bf
JD
1154 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1155 has backported it to Gtk+ 2.0 and they add the resize grip for
1156 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1157 forever, so disable the grip. */
1158#if GTK_MAJOR_VERSION < 3 && defined (HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1159 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1160#endif
1161
810f2256
JD
1162 xg_set_screen (wtop, f);
1163
383b7c95
JD
1164 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1165 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1166 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1167 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
c195f2de
JD
1168
1169#ifdef HAVE_GTK3
c7e73be5 1170 wfixed = emacs_fixed_new (f);
c195f2de
JD
1171#else
1172 wfixed = gtk_fixed_new ();
1173#endif
177c0ea7 1174
bfeabdc3 1175 if (! wtop || ! wvbox || ! whbox || ! wfixed)
f392e843
JD
1176 {
1177 if (wtop) gtk_widget_destroy (wtop);
1178 if (wvbox) gtk_widget_destroy (wvbox);
bfeabdc3 1179 if (whbox) gtk_widget_destroy (whbox);
f392e843
JD
1180 if (wfixed) gtk_widget_destroy (wfixed);
1181
4d7e6e51 1182 unblock_input ();
f392e843
JD
1183 return 0;
1184 }
1185
1186 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1187 gtk_widget_set_name (wtop, EMACS_CLASS);
1188 gtk_widget_set_name (wvbox, "pane");
93c579e0 1189 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
f392e843
JD
1190
1191 /* If this frame has a title or name, set it in the title bar. */
e69b0960
DA
1192 if (! NILP (f->title))
1193 title = SSDATA (ENCODE_UTF_8 (f->title));
1194 else if (! NILP (f->name))
1195 title = SSDATA (ENCODE_UTF_8 (f->name));
f392e843
JD
1196
1197 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
177c0ea7 1198
f392e843
JD
1199 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1200 FRAME_GTK_WIDGET (f) = wfixed;
1201 f->output_data.x->vbox_widget = wvbox;
bfeabdc3 1202 f->output_data.x->hbox_widget = whbox;
f392e843 1203
e547b051 1204 gtk_widget_set_has_window (wfixed, TRUE);
f392e843 1205
f392e843 1206 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
bfeabdc3
JD
1207 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1208 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
f392e843
JD
1209
1210 if (FRAME_EXTERNAL_TOOL_BAR (f))
1211 update_frame_tool_bar (f);
1212
7863d625
JD
1213 /* We don't want this widget double buffered, because we draw on it
1214 with regular X drawing primitives, so from a GTK/GDK point of
1215 view, the widget is totally blank. When an expose comes, this
1216 will make the widget blank, and then Emacs redraws it. This flickers
1217 a lot, so we turn off double buffering. */
f392e843 1218 gtk_widget_set_double_buffered (wfixed, FALSE);
7863d625 1219
f392e843 1220 gtk_window_set_wmclass (GTK_WINDOW (wtop),
93c579e0
JD
1221 SSDATA (Vx_resource_name),
1222 SSDATA (Vx_resource_class));
f392e843
JD
1223
1224 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1225 GTK is to destroy the widget. We want Emacs to do that instead. */
1226 g_signal_connect (G_OBJECT (wtop), "delete-event",
0afb4571 1227 G_CALLBACK (delete_cb), f);
177c0ea7 1228
f392e843
JD
1229 /* Convert our geometry parameters into a geometry string
1230 and specify it.
1231 GTK will itself handle calculating the real position this way. */
1232 xg_set_geometry (f);
32e737d7
JD
1233 f->win_gravity
1234 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
f392e843
JD
1235
1236 gtk_widget_add_events (wfixed,
1237 GDK_POINTER_MOTION_MASK
1238 | GDK_EXPOSURE_MASK
1239 | GDK_BUTTON_PRESS_MASK
1240 | GDK_BUTTON_RELEASE_MASK
1241 | GDK_KEY_PRESS_MASK
1242 | GDK_ENTER_NOTIFY_MASK
1243 | GDK_LEAVE_NOTIFY_MASK
1244 | GDK_FOCUS_CHANGE_MASK
1245 | GDK_STRUCTURE_MASK
1246 | GDK_VISIBILITY_NOTIFY_MASK);
1247
1248 /* Must realize the windows so the X window gets created. It is used
1249 by callers of this function. */
1250 gtk_widget_realize (wfixed);
1251 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1252
1253 /* Since GTK clears its window by filling with the background color,
1254 we must keep X and GTK background in sync. */
0afb4571 1255 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
f392e843 1256
0afb4571 1257#ifndef HAVE_GTK3
f392e843
JD
1258 /* Also, do not let any background pixmap to be set, this looks very
1259 bad as Emacs overwrites the background pixmap with its own idea
1260 of background color. */
1261 style = gtk_widget_get_modifier_style (wfixed);
1262
1263 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1264 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1265 gtk_widget_modify_style (wfixed, style);
0afb4571
J
1266#else
1267 gtk_widget_set_can_focus (wfixed, TRUE);
c195f2de 1268 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
0afb4571 1269#endif
177c0ea7 1270
ac01763e 1271#ifdef USE_GTK_TOOLTIP
aa1859f5
J
1272 /* Steal a tool tip window we can move ourselves. */
1273 f->output_data.x->ttip_widget = 0;
1274 f->output_data.x->ttip_lbl = 0;
1275 f->output_data.x->ttip_window = 0;
088c8c09 1276 gtk_widget_set_tooltip_text (wtop, "Dummy text");
aa1859f5 1277 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
ac01763e 1278#endif
f392e843 1279
3a46642b
J
1280 {
1281 GdkScreen *screen = gtk_widget_get_screen (wtop);
1282 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1283 /* Only connect this signal once per screen. */
1284 if (! g_signal_handler_find (G_OBJECT (gs),
1285 G_SIGNAL_MATCH_FUNC,
1286 0, 0, 0,
1287 G_CALLBACK (style_changed_cb),
1288 0))
1289 {
1290 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1291 G_CALLBACK (style_changed_cb),
1292 gdk_screen_get_display (screen));
1293 }
1294 }
1295
4d7e6e51 1296 unblock_input ();
f392e843
JD
1297
1298 return 1;
1299}
1300
aa1859f5
J
1301void
1302xg_free_frame_widgets (FRAME_PTR f)
1303{
1304 if (FRAME_GTK_OUTER_WIDGET (f))
1305 {
b0afc268 1306#ifdef USE_GTK_TOOLTIP
aa1859f5 1307 struct x_output *x = f->output_data.x;
b0afc268 1308#endif
ca06f160
JD
1309 struct xg_frame_tb_info *tbinfo
1310 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1311 TB_INFO_KEY);
1312 if (tbinfo)
1313 xfree (tbinfo);
1314
aa1859f5
J
1315 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1316 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1317 FRAME_GTK_OUTER_WIDGET (f) = 0;
ac01763e 1318#ifdef USE_GTK_TOOLTIP
aa1859f5
J
1319 if (x->ttip_lbl)
1320 gtk_widget_destroy (x->ttip_lbl);
1321 if (x->ttip_widget)
1322 g_object_unref (G_OBJECT (x->ttip_widget));
ac01763e 1323#endif
aa1859f5
J
1324 }
1325}
1326
f392e843
JD
1327/* Set the normal size hints for the window manager, for frame F.
1328 FLAGS is the flags word to use--or 0 meaning preserve the flags
1329 that the window now has.
18e27ea8 1330 If USER_POSITION, set the User Position
f392e843 1331 flag (this is useful when FLAGS is 0). */
71bacd48 1332
f392e843 1333void
18e27ea8 1334x_wm_set_size_hint (FRAME_PTR f, long int flags, bool user_position)
f392e843 1335{
3e5fc571
CY
1336 /* Must use GTK routines here, otherwise GTK resets the size hints
1337 to its own defaults. */
1338 GdkGeometry size_hints;
1339 gint hint_flags = 0;
1340 int base_width, base_height;
1341 int min_rows = 0, min_cols = 0;
1342 int win_gravity = f->win_gravity;
1343
32e737d7
JD
1344 /* Don't set size hints during initialization; that apparently leads
1345 to a race condition. See the thread at
1346 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1347 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1348 return;
1349
3e5fc571
CY
1350 if (flags)
1351 {
1352 memset (&size_hints, 0, sizeof (size_hints));
1353 f->output_data.x->size_hints = size_hints;
1354 f->output_data.x->hint_flags = hint_flags;
1355 }
1356 else
1357 flags = f->size_hint_flags;
1358
1359 size_hints = f->output_data.x->size_hints;
1360 hint_flags = f->output_data.x->hint_flags;
1361
1362 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1363 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
1364 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
1365
1366 hint_flags |= GDK_HINT_BASE_SIZE;
b4444c8a 1367 /* Use one row/col here so base_height/width does not become zero.
89c94350 1368 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it. */
b4444c8a 1369 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
89c94350 1370 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
3e5fc571
CY
1371 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1372
1373 check_frame_size (f, &min_rows, &min_cols);
b4444c8a 1374 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
89c94350 1375 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
3e5fc571
CY
1376
1377 size_hints.base_width = base_width;
1378 size_hints.base_height = base_height;
1379 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
1380 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
1381
1382 /* These currently have a one to one mapping with the X values, but I
1383 don't think we should rely on that. */
1384 hint_flags |= GDK_HINT_WIN_GRAVITY;
1385 size_hints.win_gravity = 0;
1386 if (win_gravity == NorthWestGravity)
1387 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1388 else if (win_gravity == NorthGravity)
1389 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1390 else if (win_gravity == NorthEastGravity)
1391 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1392 else if (win_gravity == WestGravity)
1393 size_hints.win_gravity = GDK_GRAVITY_WEST;
1394 else if (win_gravity == CenterGravity)
1395 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1396 else if (win_gravity == EastGravity)
1397 size_hints.win_gravity = GDK_GRAVITY_EAST;
1398 else if (win_gravity == SouthWestGravity)
1399 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1400 else if (win_gravity == SouthGravity)
1401 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1402 else if (win_gravity == SouthEastGravity)
1403 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1404 else if (win_gravity == StaticGravity)
1405 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1406
22aa44a8
JD
1407 if (user_position)
1408 {
1409 hint_flags &= ~GDK_HINT_POS;
1410 hint_flags |= GDK_HINT_USER_POS;
1411 }
1412
3e5fc571
CY
1413 if (hint_flags != f->output_data.x->hint_flags
1414 || memcmp (&size_hints,
1415 &f->output_data.x->size_hints,
1416 sizeof (size_hints)) != 0)
1417 {
4d7e6e51 1418 block_input ();
3e5fc571 1419 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
c7e73be5 1420 NULL, &size_hints, hint_flags);
3e5fc571
CY
1421 f->output_data.x->size_hints = size_hints;
1422 f->output_data.x->hint_flags = hint_flags;
4d7e6e51 1423 unblock_input ();
3e5fc571 1424 }
f392e843
JD
1425}
1426
1427/* Change background color of a frame.
6772c8e1 1428 Since GTK uses the background color to clear the window, we must
f392e843
JD
1429 keep the GTK and X colors in sync.
1430 F is the frame to change,
1431 BG is the pixel value to change to. */
71bacd48 1432
f392e843 1433void
971de7fb 1434xg_set_background_color (FRAME_PTR f, long unsigned int bg)
f392e843
JD
1435{
1436 if (FRAME_GTK_WIDGET (f))
1437 {
4d7e6e51 1438 block_input ();
0afb4571 1439 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
4d7e6e51 1440 unblock_input ();
f392e843
JD
1441 }
1442}
1443
1444
1001243b
JD
1445/* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1446 functions so GTK does not overwrite the icon. */
1447
1448void
971de7fb 1449xg_set_frame_icon (FRAME_PTR f, Pixmap icon_pixmap, Pixmap icon_mask)
1001243b 1450{
0afb4571
J
1451 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1452 icon_pixmap,
1453 icon_mask);
1454 if (gp)
1001243b
JD
1455 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1456}
1457
1458
f392e843
JD
1459\f
1460/***********************************************************************
1461 Dialog functions
1462 ***********************************************************************/
1463/* Return the dialog title to use for a dialog of type KEY.
1464 This is the encoding used by lwlib. We use the same for GTK. */
71bacd48 1465
8ea90aa3 1466static const char *
f392e843
JD
1467get_dialog_title (char key)
1468{
8ea90aa3 1469 const char *title = "";
177c0ea7 1470
f392e843
JD
1471 switch (key) {
1472 case 'E': case 'e':
1473 title = "Error";
1474 break;
1475
1476 case 'I': case 'i':
1477 title = "Information";
1478 break;
1479
1480 case 'L': case 'l':
1481 title = "Prompt";
1482 break;
1483
1484 case 'P': case 'p':
1485 title = "Prompt";
1486 break;
1487
1488 case 'Q': case 'q':
1489 title = "Question";
1490 break;
1491 }
1492
1493 return title;
1494}
1495
1496/* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1497 the dialog, but return TRUE so the event does not propagate further
1498 in GTK. This prevents GTK from destroying the dialog widget automatically
4c36be58 1499 and we can always destroy the widget manually, regardless of how
f392e843
JD
1500 it was popped down (button press or WM_DELETE_WINDOW).
1501 W is the dialog widget.
1502 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1503 user_data is NULL (not used).
1504
1505 Returns TRUE to end propagation of event. */
71bacd48 1506
f392e843 1507static gboolean
971de7fb 1508dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
f392e843
JD
1509{
1510 gtk_widget_unmap (w);
1511 return TRUE;
1512}
1513
1514/* Create a popup dialog window. See also xg_create_widget below.
1515 WV is a widget_value describing the dialog.
1516 SELECT_CB is the callback to use when a button has been pressed.
1517 DEACTIVATE_CB is the callback to use when the dialog pops down.
1518
1519 Returns the GTK dialog widget. */
71bacd48 1520
f392e843 1521static GtkWidget *
e4c8d29a
J
1522create_dialog (widget_value *wv,
1523 GCallback select_cb,
1524 GCallback deactivate_cb)
f392e843 1525{
8ea90aa3 1526 const char *title = get_dialog_title (wv->name[0]);
f392e843
JD
1527 int total_buttons = wv->name[1] - '0';
1528 int right_buttons = wv->name[4] - '0';
1529 int left_buttons;
1530 int button_nr = 0;
1531 int button_spacing = 10;
1532 GtkWidget *wdialog = gtk_dialog_new ();
e547b051
J
1533 GtkDialog *wd = GTK_DIALOG (wdialog);
1534 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
f392e843 1535 widget_value *item;
f392e843
JD
1536 GtkWidget *whbox_down;
1537
1538 /* If the number of buttons is greater than 4, make two rows of buttons
1539 instead. This looks better. */
18e27ea8 1540 bool make_two_rows = total_buttons > 4;
f392e843
JD
1541
1542 if (right_buttons == 0) right_buttons = total_buttons/2;
1543 left_buttons = total_buttons - right_buttons;
1544
1545 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1546 gtk_widget_set_name (wdialog, "emacs-dialog");
1547
f392e843
JD
1548
1549 if (make_two_rows)
1550 {
383b7c95
JD
1551 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1552 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1553 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1554 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1555 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1556 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
f392e843
JD
1557
1558 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1559 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1560 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1561
1562 cur_box = GTK_BOX (whbox_up);
1563 }
1564
1565 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1566 G_CALLBACK (dialog_delete_callback), 0);
177c0ea7 1567
f392e843
JD
1568 if (deactivate_cb)
1569 {
1570 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1571 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1572 }
1573
1574 for (item = wv->contents; item; item = item->next)
1575 {
1576 char *utf8_label = get_utf8_string (item->value);
1577 GtkWidget *w;
1578 GtkRequisition req;
1579
0a1d6de0 1580 if (item->name && strcmp (item->name, "message") == 0)
f392e843 1581 {
e547b051 1582 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
f392e843
JD
1583 /* This is the text part of the dialog. */
1584 w = gtk_label_new (utf8_label);
e547b051
J
1585 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1586 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
f392e843
JD
1587 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1588
1589 /* Try to make dialog look better. Must realize first so
1590 the widget can calculate the size it needs. */
1591 gtk_widget_realize (w);
0afb4571 1592 gtk_widget_get_preferred_size (w, NULL, &req);
e547b051 1593 gtk_box_set_spacing (wvbox, req.height);
0a1d6de0 1594 if (item->value && strlen (item->value) > 0)
f392e843
JD
1595 button_spacing = 2*req.width/strlen (item->value);
1596 }
1597 else
1598 {
1599 /* This is one button to add to the dialog. */
4b1b4443 1600 w = gtk_button_new_with_label (utf8_label);
f392e843
JD
1601 if (! item->enabled)
1602 gtk_widget_set_sensitive (w, FALSE);
1603 if (select_cb)
1604 g_signal_connect (G_OBJECT (w), "clicked",
1605 select_cb, item->call_data);
1606
1607 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1608 if (++button_nr == left_buttons)
1609 {
1610 if (make_two_rows)
1611 cur_box = GTK_BOX (whbox_down);
1612 else
1613 gtk_box_pack_start (cur_box,
1614 gtk_label_new (""),
1615 TRUE, TRUE,
1616 button_spacing);
1617 }
1618 }
1619
42ca4633 1620 if (utf8_label)
f392e843
JD
1621 g_free (utf8_label);
1622 }
1623
1624 return wdialog;
1625}
1626
e90292a9 1627struct xg_dialog_data
90f2e16b 1628{
e90292a9
JD
1629 GMainLoop *loop;
1630 int response;
1631 GtkWidget *w;
1632 guint timerid;
1633};
90f2e16b 1634
3402c0a6 1635/* Function that is called when the file or font dialogs pop down.
457a8155 1636 W is the dialog widget, RESPONSE is the response code.
e90292a9 1637 USER_DATA is what we passed in to g_signal_connect. */
457a8155
JD
1638
1639static void
dd4c5104
DN
1640xg_dialog_response_cb (GtkDialog *w,
1641 gint response,
1642 gpointer user_data)
457a8155 1643{
e90292a9
JD
1644 struct xg_dialog_data *dd = (struct xg_dialog_data *)user_data;
1645 dd->response = response;
1646 g_main_loop_quit (dd->loop);
457a8155
JD
1647}
1648
1649
1650/* Destroy the dialog. This makes it pop down. */
1651
1652static Lisp_Object
971de7fb 1653pop_down_dialog (Lisp_Object arg)
457a8155 1654{
2b30549c 1655 struct xg_dialog_data *dd = XSAVE_POINTER (arg, 0);
e90292a9 1656
4d7e6e51 1657 block_input ();
e90292a9
JD
1658 if (dd->w) gtk_widget_destroy (dd->w);
1659 if (dd->timerid != 0) g_source_remove (dd->timerid);
1660
1661 g_main_loop_quit (dd->loop);
1662 g_main_loop_unref (dd->loop);
088c8c09 1663
4d7e6e51 1664 unblock_input ();
e90292a9 1665
457a8155
JD
1666 return Qnil;
1667}
1668
e90292a9
JD
1669/* If there are any emacs timers pending, add a timeout to main loop in DATA.
1670 We pass in DATA as gpointer* so we can use this as a callback. */
1671
1672static gboolean
971de7fb 1673xg_maybe_add_timer (gpointer data)
e90292a9
JD
1674{
1675 struct xg_dialog_data *dd = (struct xg_dialog_data *) data;
f868cd8a 1676 EMACS_TIME next_time = timer_check ();
e90292a9
JD
1677
1678 dd->timerid = 0;
1679
d35af63c 1680 if (EMACS_TIME_VALID_P (next_time))
e90292a9 1681 {
d35af63c
PE
1682 time_t s = EMACS_SECS (next_time);
1683 int per_ms = EMACS_TIME_RESOLUTION / 1000;
1684 int ms = (EMACS_NSECS (next_time) + per_ms - 1) / per_ms;
1685 if (s <= ((guint) -1 - ms) / 1000)
1686 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
e90292a9
JD
1687 }
1688 return FALSE;
1689}
1690
088c8c09 1691
e90292a9
JD
1692/* Pops up a modal dialog W and waits for response.
1693 We don't use gtk_dialog_run because we want to process emacs timers.
1694 The dialog W is not destroyed when this function returns. */
1695
1696static int
971de7fb 1697xg_dialog_run (FRAME_PTR f, GtkWidget *w)
e90292a9 1698{
d311d28c 1699 ptrdiff_t count = SPECPDL_INDEX ();
e90292a9
JD
1700 struct xg_dialog_data dd;
1701
1702 xg_set_screen (w, f);
1703 gtk_window_set_transient_for (GTK_WINDOW (w),
1704 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1705 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1706 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1707
1708 dd.loop = g_main_loop_new (NULL, FALSE);
1709 dd.response = GTK_RESPONSE_CANCEL;
1710 dd.w = w;
1711 dd.timerid = 0;
1712
1713 g_signal_connect (G_OBJECT (w),
1714 "response",
1715 G_CALLBACK (xg_dialog_response_cb),
1716 &dd);
1717 /* Don't destroy the widget if closed by the window manager close button. */
1718 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1719 gtk_widget_show (w);
1720
468afbac 1721 record_unwind_protect (pop_down_dialog, make_save_pointer (&dd));
e90292a9
JD
1722
1723 (void) xg_maybe_add_timer (&dd);
1724 g_main_loop_run (dd.loop);
088c8c09 1725
e90292a9
JD
1726 dd.w = 0;
1727 unbind_to (count, Qnil);
1728
1729 return dd.response;
1730}
1731
1732\f
1733/***********************************************************************
1734 File dialog functions
1735 ***********************************************************************/
18e27ea8 1736/* Return true if the old file selection dialog is being used. */
e90292a9 1737
18e27ea8 1738bool
971de7fb 1739xg_uses_old_file_dialog (void)
e90292a9 1740{
e547b051 1741#ifdef HAVE_GTK_FILE_SELECTION_NEW
e90292a9 1742 return x_gtk_use_old_file_dialog;
e90292a9
JD
1743#else
1744 return 0;
1745#endif
e90292a9
JD
1746}
1747
1748
f57e2426 1749typedef char * (*xg_get_file_func) (GtkWidget *);
f9d64bb3 1750
457a8155
JD
1751/* Return the selected file for file chooser dialog W.
1752 The returned string must be free:d. */
1753
1754static char *
971de7fb 1755xg_get_file_name_from_chooser (GtkWidget *w)
457a8155
JD
1756{
1757 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1758}
1759
4c9ca1a3
JD
1760/* Callback called when the "Show hidden files" toggle is pressed.
1761 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1762
78c55a80 1763static void
971de7fb 1764xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
78c55a80
JD
1765{
1766 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1767 gboolean visible;
78c55a80
JD
1768 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1769 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
4c9ca1a3
JD
1770}
1771
1772
1773/* Callback called when a property changes in a file chooser.
1774 GOBJECT is the file chooser dialog, ARG1 describes the property.
1775 USER_DATA is the toggle widget in the file chooser dialog.
1776 We use this to update the "Show hidden files" toggle when the user
1777 changes that property by right clicking in the file list. */
1778
1779static void
971de7fb 1780xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
4c9ca1a3 1781{
4c9ca1a3
JD
1782 if (strcmp (arg1->name, "show-hidden") == 0)
1783 {
4c9ca1a3
JD
1784 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1785 gboolean visible, toggle_on;
1786
1787 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1788 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1789
1790 if (!!visible != !!toggle_on)
1791 {
1792 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1793 G_CALLBACK (xg_toggle_visibility_cb),
1794 gobject);
1795 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1796 g_signal_handlers_unblock_by_func
1797 (G_OBJECT (wtoggle),
1798 G_CALLBACK (xg_toggle_visibility_cb),
1799 gobject);
1800 }
1801 x_gtk_show_hidden_files = visible;
1802 }
78c55a80
JD
1803}
1804
f9d64bb3
JD
1805/* Read a file name from the user using a file chooser dialog.
1806 F is the current frame.
1807 PROMPT is a prompt to show to the user. May not be NULL.
1808 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
18e27ea8 1809 If MUSTMATCH_P, the returned file name must be an existing
2605051a
GM
1810 file. (Actually, this only has cosmetic effects, the user can
1811 still enter a non-existing file.) *FUNC is set to a function that
1812 can be used to retrieve the selected file name from the returned widget.
f9d64bb3 1813
457a8155 1814 Returns the created widget. */
f9d64bb3 1815
457a8155 1816static GtkWidget *
dd4c5104
DN
1817xg_get_file_with_chooser (FRAME_PTR f,
1818 char *prompt,
1819 char *default_filename,
18e27ea8 1820 bool mustmatch_p, bool only_dir_p,
dd4c5104 1821 xg_get_file_func *func)
f9d64bb3 1822{
65dc836c 1823 char msgbuf[1024];
78c55a80 1824
a60e5f68 1825 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
f9d64bb3 1826 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
f9d64bb3
JD
1827 GtkFileChooserAction action = (mustmatch_p ?
1828 GTK_FILE_CHOOSER_ACTION_OPEN :
1829 GTK_FILE_CHOOSER_ACTION_SAVE);
1830
1831 if (only_dir_p)
1832 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1833
1834 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1835 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1836 (mustmatch_p || only_dir_p ?
8cfd0f36 1837 GTK_STOCK_OPEN : GTK_STOCK_OK),
f9d64bb3
JD
1838 GTK_RESPONSE_OK,
1839 NULL);
ded997c1 1840 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
f9d64bb3 1841
383b7c95
JD
1842 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1843 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
78c55a80
JD
1844 gtk_widget_show (wbox);
1845 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
8e5a8840
JB
1846
1847 if (x_gtk_show_hidden_files)
78c55a80
JD
1848 {
1849 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1850 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1851 }
1852 gtk_widget_show (wtoggle);
1853 g_signal_connect (G_OBJECT (wtoggle), "clicked",
4c9ca1a3
JD
1854 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1855 g_signal_connect (G_OBJECT (filewin), "notify",
1856 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
78c55a80 1857
a10fe834 1858 if (x_gtk_file_dialog_help_text)
cf1e295f 1859 {
65dc836c 1860 msgbuf[0] = '\0';
7b7d4a79
JD
1861 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1862 Show the C-l help text only for versions < 2.10. */
7adfb96e 1863 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
65dc836c
PE
1864 strcat (msgbuf, "\nType C-l to display a file name text entry box.\n");
1865 strcat (msgbuf, "\nIf you don't like this file selector, use the "
cf1e295f
JD
1866 "corresponding\nkey binding or customize "
1867 "use-file-dialog to turn it off.");
8e5a8840 1868
65dc836c 1869 wmessage = gtk_label_new (msgbuf);
cf1e295f
JD
1870 gtk_widget_show (wmessage);
1871 }
1872
78c55a80 1873 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
a10fe834 1874 if (x_gtk_file_dialog_help_text)
cf1e295f 1875 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
78c55a80
JD
1876 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1877
f9d64bb3 1878 if (default_filename)
a872928c
JD
1879 {
1880 Lisp_Object file;
1881 struct gcpro gcpro1;
4f3097d8 1882 char *utf8_filename;
45c94881 1883 GCPRO1 (file);
a872928c 1884
ded997c1
JD
1885 file = build_string (default_filename);
1886
a872928c
JD
1887 /* File chooser does not understand ~/... in the file name. It must be
1888 an absolute name starting with /. */
1889 if (default_filename[0] != '/')
ded997c1 1890 file = Fexpand_file_name (file, Qnil);
8e5a8840 1891
4f3097d8
JD
1892 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1893 if (! NILP (Ffile_directory_p (file)))
ded997c1 1894 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
4f3097d8 1895 utf8_filename);
ded997c1 1896 else
4f3097d8 1897 {
4f3097d8
JD
1898 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1899 utf8_filename);
ae6c1c19
JD
1900 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1901 {
1902 char *cp = strrchr (utf8_filename, '/');
1903 if (cp) ++cp;
1904 else cp = utf8_filename;
1905 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1906 }
4f3097d8 1907 }
a872928c
JD
1908
1909 UNGCPRO;
1910 }
f9d64bb3 1911
457a8155
JD
1912 *func = xg_get_file_name_from_chooser;
1913 return filewin;
f9d64bb3 1914}
f9d64bb3
JD
1915
1916#ifdef HAVE_GTK_FILE_SELECTION_NEW
f392e843 1917
457a8155
JD
1918/* Return the selected file for file selector dialog W.
1919 The returned string must be free:d. */
71bacd48 1920
457a8155 1921static char *
971de7fb 1922xg_get_file_name_from_selector (GtkWidget *w)
f392e843 1923{
457a8155
JD
1924 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1925 return xstrdup ((char*) gtk_file_selection_get_filename (filesel));
f392e843
JD
1926}
1927
457a8155 1928/* Create a file selection dialog.
f392e843
JD
1929 F is the current frame.
1930 PROMPT is a prompt to show to the user. May not be NULL.
1931 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
18e27ea8 1932 If MUSTMATCH_P, the returned file name must be an existing
457a8155
JD
1933 file. *FUNC is set to a function that can be used to retrieve the
1934 selected file name from the returned widget.
f392e843 1935
457a8155 1936 Returns the created widget. */
71bacd48 1937
457a8155 1938static GtkWidget *
e4c8d29a
J
1939xg_get_file_with_selection (FRAME_PTR f,
1940 char *prompt,
1941 char *default_filename,
18e27ea8 1942 bool mustmatch_p, bool only_dir_p,
e4c8d29a 1943 xg_get_file_func *func)
f392e843
JD
1944{
1945 GtkWidget *filewin;
1946 GtkFileSelection *filesel;
177c0ea7 1947
f392e843
JD
1948 filewin = gtk_file_selection_new (prompt);
1949 filesel = GTK_FILE_SELECTION (filewin);
1950
f392e843
JD
1951 if (default_filename)
1952 gtk_file_selection_set_filename (filesel, default_filename);
1953
1954 if (mustmatch_p)
1955 {
1956 /* The selection_entry part of filesel is not documented. */
1957 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1958 gtk_file_selection_hide_fileop_buttons (filesel);
1959 }
1960
457a8155 1961 *func = xg_get_file_name_from_selector;
177c0ea7 1962
457a8155 1963 return filewin;
f392e843 1964}
f9d64bb3
JD
1965#endif /* HAVE_GTK_FILE_SELECTION_NEW */
1966
1967/* Read a file name from the user using a file dialog, either the old
1968 file selection dialog, or the new file chooser dialog. Which to use
1969 depends on what the GTK version used has, and what the value of
1970 gtk-use-old-file-dialog.
1971 F is the current frame.
1972 PROMPT is a prompt to show to the user. May not be NULL.
1973 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
18e27ea8 1974 If MUSTMATCH_P, the returned file name must be an existing
f9d64bb3
JD
1975 file.
1976
1977 Returns a file name or NULL if no file was selected.
1978 The returned string must be freed by the caller. */
1979
1980char *
e4c8d29a
J
1981xg_get_file_name (FRAME_PTR f,
1982 char *prompt,
1983 char *default_filename,
18e27ea8
PE
1984 bool mustmatch_p,
1985 bool only_dir_p)
f9d64bb3 1986{
724cde0d 1987 GtkWidget *w = 0;
457a8155
JD
1988 char *fn = 0;
1989 int filesel_done = 0;
1990 xg_get_file_func func;
1991
e547b051 1992#ifdef HAVE_GTK_FILE_SELECTION_NEW
255e4140 1993
90f2e16b 1994 if (xg_uses_old_file_dialog ())
457a8155
JD
1995 w = xg_get_file_with_selection (f, prompt, default_filename,
1996 mustmatch_p, only_dir_p, &func);
1997 else
1998 w = xg_get_file_with_chooser (f, prompt, default_filename,
1999 mustmatch_p, only_dir_p, &func);
f9d64bb3 2000
e547b051 2001#else /* not HAVE_GTK_FILE_SELECTION_NEW */
457a8155
JD
2002 w = xg_get_file_with_chooser (f, prompt, default_filename,
2003 mustmatch_p, only_dir_p, &func);
e547b051 2004#endif /* not HAVE_GTK_FILE_SELECTION_NEW */
457a8155 2005
457a8155 2006 gtk_widget_set_name (w, "emacs-filedialog");
457a8155 2007
e90292a9 2008 filesel_done = xg_dialog_run (f, w);
457a8155
JD
2009 if (filesel_done == GTK_RESPONSE_OK)
2010 fn = (*func) (w);
2011
e90292a9 2012 gtk_widget_destroy (w);
457a8155 2013 return fn;
f9d64bb3 2014}
f392e843 2015
f2045622
CY
2016/***********************************************************************
2017 GTK font chooser
2018 ***********************************************************************/
2019
3402c0a6 2020#ifdef HAVE_FREETYPE
f2045622
CY
2021
2022#if USE_NEW_GTK_FONT_CHOOSER
2023
f2045622
CY
2024#define XG_WEIGHT_TO_SYMBOL(w) \
2025 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2026 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2027 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2028 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2029 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2030 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2031 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2032 : Qultra_bold)
2033
2034#define XG_STYLE_TO_SYMBOL(s) \
2035 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2036 : s == PANGO_STYLE_ITALIC ? Qitalic \
2037 : Qnormal)
2038
2039#endif /* USE_NEW_GTK_FONT_CHOOSER */
2040
2041
2042static char *x_last_font_name;
3eab3ca9 2043extern Lisp_Object Qxft;
f2045622 2044
3402c0a6
CY
2045/* Pop up a GTK font selector and return the name of the font the user
2046 selects, as a C string. The returned font name follows GTK's own
2047 format:
2048
2049 `FAMILY [VALUE1 VALUE2] SIZE'
2050
2051 This can be parsed using font_parse_fcname in font.c.
2052 DEFAULT_NAME, if non-zero, is the default font name. */
2053
f2045622
CY
2054Lisp_Object
2055xg_get_font (FRAME_PTR f, const char *default_name)
3402c0a6 2056{
e90292a9 2057 GtkWidget *w;
3402c0a6 2058 int done = 0;
f2045622 2059 Lisp_Object font = Qnil;
3402c0a6 2060
32bcadb4
JD
2061 w = gtk_font_chooser_dialog_new
2062 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2063
f2045622
CY
2064 if (default_name)
2065 {
2066 /* Convert fontconfig names to Gtk names, i.e. remove - before
2067 number */
2068 char *p = strrchr (default_name, '-');
2069 if (p)
2070 {
2071 char *ep = p+1;
620f13b0 2072 while (c_isdigit (*ep))
f2045622
CY
2073 ++ep;
2074 if (*ep == '\0') *p = ' ';
2075 }
2076 }
2077 else if (x_last_font_name)
2078 default_name = x_last_font_name;
3402c0a6 2079
f2045622
CY
2080 if (default_name)
2081 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
3402c0a6 2082
f2045622 2083 gtk_widget_set_name (w, "emacs-fontdialog");
e90292a9 2084 done = xg_dialog_run (f, w);
3402c0a6 2085 if (done == GTK_RESPONSE_OK)
f2045622
CY
2086 {
2087#if USE_NEW_GTK_FONT_CHOOSER
2088 /* Use the GTK3 font chooser. */
2089 PangoFontDescription *desc
2090 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2091
2092 if (desc)
2093 {
a2d19368 2094 Lisp_Object args[10];
f2045622 2095 const char *name = pango_font_description_get_family (desc);
5bf192ca 2096 gint size = pango_font_description_get_size (desc);
f2045622 2097 PangoWeight weight = pango_font_description_get_weight (desc);
5bf192ca 2098 PangoStyle style = pango_font_description_get_style (desc);
f2045622
CY
2099
2100 args[0] = QCname;
2101 args[1] = build_string (name);
2102
2103 args[2] = QCsize;
5bf192ca 2104 args[3] = make_float (pango_units_to_double (size));
f2045622
CY
2105
2106 args[4] = QCweight;
2107 args[5] = XG_WEIGHT_TO_SYMBOL (weight);
2108
2109 args[6] = QCslant;
2110 args[7] = XG_STYLE_TO_SYMBOL (style);
2111
a2d19368
CY
2112 args[8] = QCtype;
2113 args[9] = Qxft;
2114
f2045622
CY
2115 font = Ffont_spec (8, args);
2116
2117 pango_font_description_free (desc);
2118 xfree (x_last_font_name);
2119 x_last_font_name = xstrdup (name);
2120 }
2121
2122#else /* Use old font selector, which just returns the font name. */
2123
2124 char *font_name
2125 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2126
2127 if (font_name)
2128 {
2129 font = build_string (font_name);
2130 g_free (x_last_font_name);
2131 x_last_font_name = font_name;
2132 }
2133#endif /* USE_NEW_GTK_FONT_CHOOSER */
2134 }
3402c0a6 2135
e90292a9 2136 gtk_widget_destroy (w);
f2045622 2137 return font;
3402c0a6
CY
2138}
2139#endif /* HAVE_FREETYPE */
2140
2141
f392e843
JD
2142\f
2143/***********************************************************************
2144 Menu functions.
2145 ***********************************************************************/
2146
d1c38b57 2147/* The name of menu items that can be used for customization. Since GTK
f392e843 2148 RC files are very crude and primitive, we have to set this on all
d1c38b57 2149 menu item names so a user can easily customize menu items. */
f392e843
JD
2150
2151#define MENU_ITEM_NAME "emacs-menuitem"
2152
2153
2154/* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2155 during GC. The next member points to the items. */
2156static xg_list_node xg_menu_cb_list;
2157
2158/* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2159 during GC. The next member points to the items. */
2160static xg_list_node xg_menu_item_cb_list;
2161
2162/* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2163 F is the frame CL_DATA will be initialized for.
2164 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2165
2166 The menu bar and all sub menus under the menu bar in a frame
2167 share the same structure, hence the reference count.
177c0ea7 2168
f392e843
JD
2169 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2170 allocated xg_menu_cb_data if CL_DATA is NULL. */
71bacd48 2171
f392e843 2172static xg_menu_cb_data *
971de7fb 2173make_cl_data (xg_menu_cb_data *cl_data, FRAME_PTR f, GCallback highlight_cb)
f392e843
JD
2174{
2175 if (! cl_data)
2176 {
38182d90 2177 cl_data = xmalloc (sizeof *cl_data);
f392e843 2178 cl_data->f = f;
e69b0960 2179 cl_data->menu_bar_vector = f->menu_bar_vector;
f392e843
JD
2180 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2181 cl_data->highlight_cb = highlight_cb;
2182 cl_data->ref_count = 0;
2183
2184 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2185 }
2186
2187 cl_data->ref_count++;
2188
2189 return cl_data;
2190}
2191
2192/* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2193 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2194
2195 When the menu bar is updated, menu items may have been added and/or
2196 removed, so menu_bar_vector and menu_bar_items_used change. We must
2197 then update CL_DATA since it is used to determine which menu
2198 item that is invoked in the menu.
2199 HIGHLIGHT_CB could change, there is no check that the same
2200 function is given when modifying a menu bar as was given when
2201 creating the menu bar. */
71bacd48 2202
f392e843 2203static void
e4c8d29a
J
2204update_cl_data (xg_menu_cb_data *cl_data,
2205 FRAME_PTR f,
2206 GCallback highlight_cb)
f392e843
JD
2207{
2208 if (cl_data)
2209 {
2210 cl_data->f = f;
e69b0960 2211 cl_data->menu_bar_vector = f->menu_bar_vector;
f392e843
JD
2212 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2213 cl_data->highlight_cb = highlight_cb;
2214 }
2215}
2216
2217/* Decrease reference count for CL_DATA.
2218 If reference count is zero, free CL_DATA. */
71bacd48 2219
f392e843 2220static void
971de7fb 2221unref_cl_data (xg_menu_cb_data *cl_data)
f392e843
JD
2222{
2223 if (cl_data && cl_data->ref_count > 0)
2224 {
2225 cl_data->ref_count--;
2226 if (cl_data->ref_count == 0)
2227 {
2228 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2229 xfree (cl_data);
2230 }
2231 }
2232}
2233
2234/* Function that marks all lisp data during GC. */
71bacd48 2235
f392e843 2236void
971de7fb 2237xg_mark_data (void)
f392e843
JD
2238{
2239 xg_list_node *iter;
5884c324 2240 Lisp_Object rest, frame;
f392e843
JD
2241
2242 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
631f2082 2243 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
f392e843
JD
2244
2245 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2246 {
2247 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2248
2249 if (! NILP (cb_data->help))
631f2082 2250 mark_object (cb_data->help);
f392e843 2251 }
ca06f160 2252
ca06f160
JD
2253 FOR_EACH_FRAME (rest, frame)
2254 {
2255 FRAME_PTR f = XFRAME (frame);
2256
ac4845a6 2257 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
ca06f160
JD
2258 {
2259 struct xg_frame_tb_info *tbinfo
2260 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2261 TB_INFO_KEY);
2262 if (tbinfo)
2263 {
2264 mark_object (tbinfo->last_tool_bar);
2265 mark_object (tbinfo->style);
2266 }
2267 }
2268 }
f392e843
JD
2269}
2270
2271
2272/* Callback called when a menu item is destroyed. Used to free data.
2273 W is the widget that is being destroyed (not used).
2274 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
71bacd48 2275
f392e843 2276static void
971de7fb 2277menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
f392e843
JD
2278{
2279 if (client_data)
2280 {
2281 xg_menu_item_cb_data *data = (xg_menu_item_cb_data*) client_data;
2282 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2283 xfree (data);
2284 }
2285}
2286
2287/* Callback called when the pointer enters/leaves a menu item.
665c8f1c 2288 W is the parent of the menu item.
f392e843 2289 EVENT is either an enter event or leave event.
665c8f1c 2290 CLIENT_DATA is not used.
f392e843
JD
2291
2292 Returns FALSE to tell GTK to keep processing this event. */
71bacd48 2293
f392e843 2294static gboolean
e4c8d29a
J
2295menuitem_highlight_callback (GtkWidget *w,
2296 GdkEventCrossing *event,
2297 gpointer client_data)
f392e843 2298{
665c8f1c
JD
2299 GdkEvent ev;
2300 GtkWidget *subwidget;
2301 xg_menu_item_cb_data *data;
177c0ea7 2302
665c8f1c
JD
2303 ev.crossing = *event;
2304 subwidget = gtk_get_event_widget (&ev);
2305 data = (xg_menu_item_cb_data *) g_object_get_data (G_OBJECT (subwidget),
2306 XG_ITEM_DATA);
2307 if (data)
2308 {
f392e843
JD
2309 if (! NILP (data->help) && data->cl_data->highlight_cb)
2310 {
665c8f1c 2311 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
f392e843 2312 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
665c8f1c 2313 (*func) (subwidget, call_data);
f392e843
JD
2314 }
2315 }
2316
2317 return FALSE;
2318}
2319
2320/* Callback called when a menu is destroyed. Used to free data.
2321 W is the widget that is being destroyed (not used).
2322 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
71bacd48 2323
f392e843 2324static void
971de7fb 2325menu_destroy_callback (GtkWidget *w, gpointer client_data)
f392e843
JD
2326{
2327 unref_cl_data ((xg_menu_cb_data*) client_data);
2328}
2329
f392e843
JD
2330/* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2331 must be non-NULL) and can be inserted into a menu item.
2332
2333 Returns the GtkHBox. */
71bacd48 2334
f392e843 2335static GtkWidget *
8ea90aa3 2336make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
f392e843
JD
2337{
2338 GtkWidget *wlbl;
2339 GtkWidget *wkey;
2340 GtkWidget *wbox;
177c0ea7 2341
383b7c95
JD
2342 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2343 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
4b1b4443 2344 wlbl = gtk_label_new (utf8_label);
f392e843
JD
2345 wkey = gtk_label_new (utf8_key);
2346
2347 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2348 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
177c0ea7 2349
f392e843
JD
2350 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2351 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2352
2353 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2354 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
7863d625 2355 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
f392e843
JD
2356
2357 return wbox;
2358}
2359
2360/* Make and return a menu item widget with the key to the right.
2361 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2362 UTF8_KEY is the text representing the key binding.
2363 ITEM is the widget_value describing the menu item.
177c0ea7 2364
f392e843
JD
2365 GROUP is an in/out parameter. If the menu item to be created is not
2366 part of any radio menu group, *GROUP contains NULL on entry and exit.
2367 If the menu item to be created is part of a radio menu group, on entry
2368 *GROUP contains the group to use, or NULL if this is the first item
2369 in the group. On exit, *GROUP contains the radio item group.
2370
2371 Unfortunately, keys don't line up as nicely as in Motif,
2372 but the MacOS X version doesn't either, so I guess that is OK. */
71bacd48 2373
f392e843 2374static GtkWidget *
8ea90aa3
DN
2375make_menu_item (const char *utf8_label,
2376 const char *utf8_key,
e4c8d29a
J
2377 widget_value *item,
2378 GSList **group)
f392e843
JD
2379{
2380 GtkWidget *w;
2381 GtkWidget *wtoadd = 0;
177c0ea7 2382
adcb132c
JD
2383 /* It has been observed that some menu items have a NULL name field.
2384 This will lead to this function being called with a NULL utf8_label.
2385 GTK crashes on that so we set a blank label. Why there is a NULL
2386 name remains to be investigated. */
2387 if (! utf8_label) utf8_label = " ";
2388
f392e843
JD
2389 if (utf8_key)
2390 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
177c0ea7 2391
f392e843
JD
2392 if (item->button_type == BUTTON_TYPE_TOGGLE)
2393 {
2394 *group = NULL;
2395 if (utf8_key) w = gtk_check_menu_item_new ();
4b1b4443 2396 else w = gtk_check_menu_item_new_with_label (utf8_label);
f392e843
JD
2397 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2398 }
2399 else if (item->button_type == BUTTON_TYPE_RADIO)
2400 {
2401 if (utf8_key) w = gtk_radio_menu_item_new (*group);
4b1b4443 2402 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
f392e843
JD
2403 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2404 if (item->selected)
2405 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2406 }
2407 else
2408 {
2409 *group = NULL;
2410 if (utf8_key) w = gtk_menu_item_new ();
4b1b4443 2411 else w = gtk_menu_item_new_with_label (utf8_label);
f392e843 2412 }
177c0ea7 2413
f392e843
JD
2414 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2415 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2416
2417 return w;
2418}
2419
8b745d92
JD
2420#ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2421
da18b5ac
JD
2422static int xg_detached_menus;
2423
18e27ea8 2424/* Return true if there are detached menus. */
71bacd48 2425
18e27ea8 2426bool
971de7fb 2427xg_have_tear_offs (void)
da18b5ac
JD
2428{
2429 return xg_detached_menus > 0;
2430}
f392e843
JD
2431
2432/* Callback invoked when a detached menu window is removed. Here we
da18b5ac 2433 decrease the xg_detached_menus count.
f392e843 2434 WIDGET is the top level window that is removed (the parent of the menu).
da18b5ac 2435 CLIENT_DATA is not used. */
71bacd48 2436
da18b5ac 2437static void
971de7fb 2438tearoff_remove (GtkWidget *widget, gpointer client_data)
f392e843 2439{
da18b5ac 2440 if (xg_detached_menus > 0) --xg_detached_menus;
f392e843
JD
2441}
2442
da18b5ac
JD
2443/* Callback invoked when a menu is detached. It increases the
2444 xg_detached_menus count.
f392e843 2445 WIDGET is the GtkTearoffMenuItem.
177c0ea7 2446 CLIENT_DATA is not used. */
71bacd48 2447
f392e843 2448static void
971de7fb 2449tearoff_activate (GtkWidget *widget, gpointer client_data)
f392e843
JD
2450{
2451 GtkWidget *menu = gtk_widget_get_parent (widget);
da18b5ac
JD
2452 if (gtk_menu_get_tearoff_state (GTK_MENU (menu)))
2453 {
2454 ++xg_detached_menus;
2455 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget)),
2456 "destroy",
2457 G_CALLBACK (tearoff_remove), 0);
2458 }
f392e843 2459}
8b745d92
JD
2460#else /* ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW */
2461bool
2462xg_have_tear_offs (void)
2463{
2464 return false;
2465}
2466#endif /* ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW */
f392e843 2467
f392e843 2468/* Create a menu item widget, and connect the callbacks.
4c36be58 2469 ITEM describes the menu item.
f392e843
JD
2470 F is the frame the created menu belongs to.
2471 SELECT_CB is the callback to use when a menu item is selected.
2472 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2473 CL_DATA points to the callback data to be used for this menu.
2474 GROUP is an in/out parameter. If the menu item to be created is not
2475 part of any radio menu group, *GROUP contains NULL on entry and exit.
2476 If the menu item to be created is part of a radio menu group, on entry
2477 *GROUP contains the group to use, or NULL if this is the first item
2478 in the group. On exit, *GROUP contains the radio item group.
2479
2480 Returns the created GtkWidget. */
71bacd48 2481
f392e843 2482static GtkWidget *
e4c8d29a
J
2483xg_create_one_menuitem (widget_value *item,
2484 FRAME_PTR f,
2485 GCallback select_cb,
2486 GCallback highlight_cb,
2487 xg_menu_cb_data *cl_data,
2488 GSList **group)
f392e843
JD
2489{
2490 char *utf8_label;
2491 char *utf8_key;
2492 GtkWidget *w;
2493 xg_menu_item_cb_data *cb_data;
2494
2495 utf8_label = get_utf8_string (item->name);
2496 utf8_key = get_utf8_string (item->key);
2497
2498 w = make_menu_item (utf8_label, utf8_key, item, group);
2499
42ca4633
J
2500 if (utf8_label) g_free (utf8_label);
2501 if (utf8_key) g_free (utf8_key);
f392e843 2502
38182d90 2503 cb_data = xmalloc (sizeof *cb_data);
f392e843
JD
2504
2505 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2506
665c8f1c 2507 cb_data->select_id = 0;
f392e843
JD
2508 cb_data->help = item->help;
2509 cb_data->cl_data = cl_data;
2510 cb_data->call_data = item->call_data;
177c0ea7 2511
f392e843
JD
2512 g_signal_connect (G_OBJECT (w),
2513 "destroy",
2514 G_CALLBACK (menuitem_destroy_callback),
2515 cb_data);
2516
2517 /* Put cb_data in widget, so we can get at it when modifying menubar */
2518 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2519
2520 /* final item, not a submenu */
2521 if (item->call_data && ! item->contents)
2522 {
2523 if (select_cb)
2524 cb_data->select_id
2525 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2526 }
2527
f392e843
JD
2528 return w;
2529}
2530
2531/* Create a full menu tree specified by DATA.
2532 F is the frame the created menu belongs to.
2533 SELECT_CB is the callback to use when a menu item is selected.
2534 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2535 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
18e27ea8
PE
2536 If POP_UP_P, create a popup menu.
2537 If MENU_BAR_P, create a menu bar.
8b745d92
JD
2538 If ADD_TEAROFF_P, add a tearoff menu item. Ignored if MENU_BAR_P or
2539 the Gtk+ version used does not have tearoffs.
f392e843
JD
2540 TOPMENU is the topmost GtkWidget that others shall be placed under.
2541 It may be NULL, in that case we create the appropriate widget
2542 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2543 CL_DATA is the callback data we shall use for this menu, or NULL
2544 if we haven't set the first callback yet.
2545 NAME is the name to give to the top level menu if this function
2546 creates it. May be NULL to not set any name.
2547
2548 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2549 not NULL.
2550
2551 This function calls itself to create submenus. */
2552
2553static GtkWidget *
e4c8d29a
J
2554create_menus (widget_value *data,
2555 FRAME_PTR f,
2556 GCallback select_cb,
2557 GCallback deactivate_cb,
2558 GCallback highlight_cb,
18e27ea8
PE
2559 bool pop_up_p,
2560 bool menu_bar_p,
2561 bool add_tearoff_p,
e4c8d29a
J
2562 GtkWidget *topmenu,
2563 xg_menu_cb_data *cl_data,
8ea90aa3 2564 const char *name)
f392e843
JD
2565{
2566 widget_value *item;
2567 GtkWidget *wmenu = topmenu;
2568 GSList *group = NULL;
2569
2570 if (! topmenu)
2571 {
810f2256
JD
2572 if (! menu_bar_p)
2573 {
2574 wmenu = gtk_menu_new ();
2575 xg_set_screen (wmenu, f);
665c8f1c
JD
2576 /* Connect this to the menu instead of items so we get enter/leave for
2577 disabled items also. TODO: Still does not get enter/leave for
2578 disabled items in detached menus. */
2579 g_signal_connect (G_OBJECT (wmenu),
2580 "enter-notify-event",
2581 G_CALLBACK (menuitem_highlight_callback),
2582 NULL);
2583 g_signal_connect (G_OBJECT (wmenu),
2584 "leave-notify-event",
2585 G_CALLBACK (menuitem_highlight_callback),
2586 NULL);
810f2256 2587 }
5be883cd
JD
2588 else
2589 {
2590 wmenu = gtk_menu_bar_new ();
872870b2
JD
2591 /* Set width of menu bar to a small value so it doesn't enlarge
2592 a small initial frame size. The width will be set to the
2593 width of the frame later on when it is added to a container.
2594 height -1: Natural height. */
5be883cd
JD
2595 gtk_widget_set_size_request (wmenu, 1, -1);
2596 }
f392e843
JD
2597
2598 /* Put cl_data on the top menu for easier access. */
2599 cl_data = make_cl_data (cl_data, f, highlight_cb);
2600 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2601 g_signal_connect (G_OBJECT (wmenu), "destroy",
2602 G_CALLBACK (menu_destroy_callback), cl_data);
177c0ea7 2603
f392e843
JD
2604 if (name)
2605 gtk_widget_set_name (wmenu, name);
2606
2607 if (deactivate_cb)
2608 g_signal_connect (G_OBJECT (wmenu),
c8934d9d 2609 "selection-done", deactivate_cb, 0);
f392e843 2610 }
177c0ea7 2611
8b745d92 2612#ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
f392e843
JD
2613 if (! menu_bar_p && add_tearoff_p)
2614 {
2615 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
2616 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
2617
2618 g_signal_connect (G_OBJECT (tearoff), "activate",
2619 G_CALLBACK (tearoff_activate), 0);
2620 }
8b745d92 2621#endif
f392e843
JD
2622
2623 for (item = data; item; item = item->next)
2624 {
2625 GtkWidget *w;
177c0ea7 2626
f392e843 2627 if (pop_up_p && !item->contents && !item->call_data
4039c786 2628 && !menu_separator_name_p (item->name))
f392e843
JD
2629 {
2630 char *utf8_label;
2631 /* A title for a popup. We do the same as GTK does when
2632 creating titles, but it does not look good. */
2633 group = NULL;
2634 utf8_label = get_utf8_string (item->name);
2635
2636 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
4b1b4443 2637 w = gtk_menu_item_new_with_label (utf8_label);
f392e843 2638 gtk_widget_set_sensitive (w, FALSE);
42ca4633 2639 if (utf8_label) g_free (utf8_label);
f392e843 2640 }
4039c786 2641 else if (menu_separator_name_p (item->name))
f392e843
JD
2642 {
2643 group = NULL;
2644 /* GTK only have one separator type. */
2645 w = gtk_separator_menu_item_new ();
2646 }
2647 else
2648 {
2649 w = xg_create_one_menuitem (item,
2650 f,
2651 item->contents ? 0 : select_cb,
2652 highlight_cb,
2653 cl_data,
2654 &group);
2655
f56cff88
JD
2656 /* Create a possibly empty submenu for menu bar items, since some
2657 themes don't highlight items correctly without it. */
2658 if (item->contents || menu_bar_p)
f392e843
JD
2659 {
2660 GtkWidget *submenu = create_menus (item->contents,
2661 f,
2662 select_cb,
2663 deactivate_cb,
2664 highlight_cb,
2665 0,
2666 0,
da18b5ac 2667 add_tearoff_p,
f392e843
JD
2668 0,
2669 cl_data,
2670 0);
2671 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2672 }
f392e843
JD
2673 }
2674
2675 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2676 gtk_widget_set_name (w, MENU_ITEM_NAME);
2677 }
2678
2679 return wmenu;
2680}
2681
2682/* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2683 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2684 with some text and buttons.
2685 F is the frame the created item belongs to.
2686 NAME is the name to use for the top widget.
2687 VAL is a widget_value structure describing items to be created.
2688 SELECT_CB is the callback to use when a menu item is selected or
2689 a dialog button is pressed.
2690 DEACTIVATE_CB is the callback to use when an item is deactivated.
2691 For a menu, when a sub menu is not shown anymore, for a dialog it is
2692 called when the dialog is popped down.
2693 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2694
2695 Returns the widget created. */
71bacd48 2696
f392e843 2697GtkWidget *
675e2c69 2698xg_create_widget (const char *type, const char *name, FRAME_PTR f, widget_value *val,
d5a3eaaf
AS
2699 GCallback select_cb, GCallback deactivate_cb,
2700 GCallback highlight_cb)
f392e843
JD
2701{
2702 GtkWidget *w = 0;
18e27ea8
PE
2703 bool menu_bar_p = strcmp (type, "menubar") == 0;
2704 bool pop_up_p = strcmp (type, "popup") == 0;
da18b5ac 2705
f392e843
JD
2706 if (strcmp (type, "dialog") == 0)
2707 {
2708 w = create_dialog (val, select_cb, deactivate_cb);
810f2256 2709 xg_set_screen (w, f);
f392e843
JD
2710 gtk_window_set_transient_for (GTK_WINDOW (w),
2711 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2712 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
810f2256 2713 gtk_widget_set_name (w, "emacs-dialog");
457a8155 2714 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
f392e843 2715 }
da18b5ac 2716 else if (menu_bar_p || pop_up_p)
f392e843
JD
2717 {
2718 w = create_menus (val->contents,
2719 f,
2720 select_cb,
2721 deactivate_cb,
2722 highlight_cb,
da18b5ac
JD
2723 pop_up_p,
2724 menu_bar_p,
2725 menu_bar_p,
f392e843
JD
2726 0,
2727 0,
2728 name);
2729
2730 /* Set the cursor to an arrow for popup menus when they are mapped.
2731 This is done by default for menu bar menus. */
da18b5ac 2732 if (pop_up_p)
f392e843
JD
2733 {
2734 /* Must realize so the GdkWindow inside the widget is created. */
2735 gtk_widget_realize (w);
810f2256 2736 xg_set_cursor (w, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
f392e843
JD
2737 }
2738 }
2739 else
2740 {
2741 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2742 type);
2743 }
2744
2745 return w;
2746}
2747
0a1d6de0 2748/* Return the label for menu item WITEM. */
71bacd48 2749
f392e843 2750static const char *
971de7fb 2751xg_get_menu_item_label (GtkMenuItem *witem)
f392e843 2752{
4039c786 2753 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
f392e843
JD
2754 return gtk_label_get_label (wlabel);
2755}
2756
18e27ea8 2757/* Return true if the menu item WITEM has the text LABEL. */
71bacd48 2758
18e27ea8 2759static bool
42ca4633 2760xg_item_label_same_p (GtkMenuItem *witem, const char *label)
f392e843 2761{
18e27ea8 2762 bool is_same = 0;
f392e843 2763 char *utf8_label = get_utf8_string (label);
0a1d6de0
JD
2764 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2765
2766 if (! old_label && ! utf8_label)
2767 is_same = 1;
2768 else if (old_label && utf8_label)
2769 is_same = strcmp (utf8_label, old_label) == 0;
2770
42ca4633 2771 if (utf8_label) g_free (utf8_label);
f392e843
JD
2772
2773 return is_same;
2774}
2775
71bacd48
JD
2776/* Destroy widgets in LIST. */
2777
f392e843 2778static void
971de7fb 2779xg_destroy_widgets (GList *list)
f392e843 2780{
f392e843
JD
2781 GList *iter;
2782
49853a4d 2783 for (iter = list; iter; iter = g_list_next (iter))
f392e843
JD
2784 {
2785 GtkWidget *w = GTK_WIDGET (iter->data);
2786
71bacd48 2787 /* Destroying the widget will remove it from the container it is in. */
f392e843
JD
2788 gtk_widget_destroy (w);
2789 }
f392e843
JD
2790}
2791
2792/* Update the top level names in MENUBAR (i.e. not submenus).
2793 F is the frame the menu bar belongs to.
49853a4d
JD
2794 *LIST is a list with the current menu bar names (menu item widgets).
2795 ITER is the item within *LIST that shall be updated.
2796 POS is the numerical position, starting at 0, of ITER in *LIST.
f392e843
JD
2797 VAL describes what the menu bar shall look like after the update.
2798 SELECT_CB is the callback to use when a menu item is selected.
2799 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
49853a4d 2800 CL_DATA points to the callback data to be used for this menu bar.
f392e843
JD
2801
2802 This function calls itself to walk through the menu bar names. */
71bacd48 2803
f392e843 2804static void
dd4c5104
DN
2805xg_update_menubar (GtkWidget *menubar,
2806 FRAME_PTR f,
2807 GList **list,
2808 GList *iter,
2809 int pos,
2810 widget_value *val,
2811 GCallback select_cb,
2812 GCallback deactivate_cb,
2813 GCallback highlight_cb,
2814 xg_menu_cb_data *cl_data)
f392e843 2815{
49853a4d 2816 if (! iter && ! val)
f392e843 2817 return;
49853a4d 2818 else if (iter && ! val)
f392e843 2819 {
49853a4d 2820 /* Item(s) have been removed. Remove all remaining items. */
71bacd48 2821 xg_destroy_widgets (iter);
f392e843 2822
4a8e097d
JD
2823 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2824 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2825 gtk_menu_item_new_with_label (""),
2826 0);
f392e843
JD
2827 /* All updated. */
2828 val = 0;
49853a4d 2829 iter = 0;
f392e843 2830 }
49853a4d 2831 else if (! iter && val)
f392e843
JD
2832 {
2833 /* Item(s) added. Add all new items in one call. */
d1c38b57 2834 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
f392e843
JD
2835 0, 1, 0, menubar, cl_data, 0);
2836
2837 /* All updated. */
2838 val = 0;
49853a4d 2839 iter = 0;
f392e843 2840 }
49853a4d
JD
2841 /* Below this neither iter or val is NULL */
2842 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
f392e843
JD
2843 {
2844 /* This item is still the same, check next item. */
2845 val = val->next;
49853a4d
JD
2846 iter = g_list_next (iter);
2847 ++pos;
f392e843
JD
2848 }
2849 else /* This item is changed. */
2850 {
49853a4d 2851 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
f392e843 2852 GtkMenuItem *witem2 = 0;
18e27ea8
PE
2853 bool val_in_menubar = 0;
2854 bool iter_in_new_menubar = 0;
49853a4d 2855 GList *iter2;
f392e843
JD
2856 widget_value *cur;
2857
f392e843 2858 /* See if the changed entry (val) is present later in the menu bar */
49853a4d
JD
2859 for (iter2 = iter;
2860 iter2 && ! val_in_menubar;
2861 iter2 = g_list_next (iter2))
f392e843 2862 {
49853a4d 2863 witem2 = GTK_MENU_ITEM (iter2->data);
f392e843
JD
2864 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2865 }
2866
49853a4d 2867 /* See if the current entry (iter) is present later in the
f392e843 2868 specification for the new menu bar. */
49853a4d
JD
2869 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2870 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
f392e843 2871
49853a4d 2872 if (val_in_menubar && ! iter_in_new_menubar)
f392e843 2873 {
49853a4d
JD
2874 int nr = pos;
2875
f392e843
JD
2876 /* This corresponds to:
2877 Current: A B C
2878 New: A C
2879 Remove B. */
177c0ea7 2880
e547b051 2881 g_object_ref (G_OBJECT (witem));
f392e843
JD
2882 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2883 gtk_widget_destroy (GTK_WIDGET (witem));
2884
2885 /* Must get new list since the old changed. */
49853a4d
JD
2886 g_list_free (*list);
2887 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2888 while (nr-- > 0) iter = g_list_next (iter);
f392e843 2889 }
49853a4d 2890 else if (! val_in_menubar && ! iter_in_new_menubar)
f392e843
JD
2891 {
2892 /* This corresponds to:
2893 Current: A B C
2894 New: A X C
2895 Rename B to X. This might seem to be a strange thing to do,
2896 since if there is a menu under B it will be totally wrong for X.
2897 But consider editing a C file. Then there is a C-mode menu
2898 (corresponds to B above).
2899 If then doing C-x C-f the minibuf menu (X above) replaces the
2900 C-mode menu. When returning from the minibuffer, we get
2901 back the C-mode menu. Thus we do:
2902 Rename B to X (C-mode to minibuf menu)
2903 Rename X to B (minibuf to C-mode menu).
2904 If the X menu hasn't been invoked, the menu under B
2905 is up to date when leaving the minibuffer. */
4039c786 2906 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
f392e843 2907 char *utf8_label = get_utf8_string (val->name);
da18b5ac 2908 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
177c0ea7 2909
4b1b4443 2910 gtk_label_set_text (wlabel, utf8_label);
f392e843 2911
8b745d92 2912#ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
da18b5ac
JD
2913 /* If this item has a submenu that has been detached, change
2914 the title in the WM decorations also. */
2915 if (submenu && gtk_menu_get_tearoff_state (GTK_MENU (submenu)))
2916 /* Set the title of the detached window. */
2917 gtk_menu_set_title (GTK_MENU (submenu), utf8_label);
8b745d92 2918#endif
da18b5ac 2919
42ca4633 2920 if (utf8_label) g_free (utf8_label);
49853a4d 2921 iter = g_list_next (iter);
f392e843 2922 val = val->next;
49853a4d 2923 ++pos;
f392e843 2924 }
49853a4d 2925 else if (! val_in_menubar && iter_in_new_menubar)
f392e843
JD
2926 {
2927 /* This corresponds to:
2928 Current: A B C
2929 New: A X B C
2930 Insert X. */
2931
49853a4d 2932 int nr = pos;
e4c8d29a 2933 GSList *group = 0;
f392e843
JD
2934 GtkWidget *w = xg_create_one_menuitem (val,
2935 f,
2936 select_cb,
2937 highlight_cb,
2938 cl_data,
2939 &group);
2940
f56cff88
JD
2941 /* Create a possibly empty submenu for menu bar items, since some
2942 themes don't highlight items correctly without it. */
2943 GtkWidget *submenu = create_menus (NULL, f,
d1c38b57
JD
2944 select_cb, deactivate_cb,
2945 highlight_cb,
f56cff88 2946 0, 0, 0, 0, cl_data, 0);
f392e843
JD
2947 gtk_widget_set_name (w, MENU_ITEM_NAME);
2948 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
f56cff88 2949 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
f392e843 2950
49853a4d
JD
2951 g_list_free (*list);
2952 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2953 while (nr-- > 0) iter = g_list_next (iter);
2954 iter = g_list_next (iter);
f392e843 2955 val = val->next;
49853a4d 2956 ++pos;
f392e843 2957 }
49853a4d 2958 else /* if (val_in_menubar && iter_in_new_menubar) */
f392e843 2959 {
49853a4d 2960 int nr = pos;
f392e843
JD
2961 /* This corresponds to:
2962 Current: A B C
2963 New: A C B
2964 Move C before B */
2965
e547b051 2966 g_object_ref (G_OBJECT (witem2));
f392e843
JD
2967 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2968 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2969 GTK_WIDGET (witem2), pos);
e547b051 2970 g_object_unref (G_OBJECT (witem2));
f392e843 2971
49853a4d
JD
2972 g_list_free (*list);
2973 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2974 while (nr-- > 0) iter = g_list_next (iter);
0a194c92 2975 if (iter) iter = g_list_next (iter);
f392e843 2976 val = val->next;
49853a4d 2977 ++pos;
f392e843 2978 }
f392e843
JD
2979 }
2980
2981 /* Update the rest of the menu bar. */
49853a4d 2982 xg_update_menubar (menubar, f, list, iter, pos, val,
d1c38b57 2983 select_cb, deactivate_cb, highlight_cb, cl_data);
f392e843
JD
2984}
2985
2986/* Update the menu item W so it corresponds to VAL.
2987 SELECT_CB is the callback to use when a menu item is selected.
2988 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
a8ce3d17 2989 CL_DATA is the data to set in the widget for menu invocation. */
71bacd48 2990
f392e843 2991static void
e4c8d29a
J
2992xg_update_menu_item (widget_value *val,
2993 GtkWidget *w,
2994 GCallback select_cb,
2995 GCallback highlight_cb,
2996 xg_menu_cb_data *cl_data)
f392e843
JD
2997{
2998 GtkWidget *wchild;
2999 GtkLabel *wlbl = 0;
3000 GtkLabel *wkey = 0;
3001 char *utf8_label;
3002 char *utf8_key;
0a1d6de0
JD
3003 const char *old_label = 0;
3004 const char *old_key = 0;
f392e843 3005 xg_menu_item_cb_data *cb_data;
177c0ea7 3006
4039c786 3007 wchild = XG_BIN_CHILD (w);
f392e843
JD
3008 utf8_label = get_utf8_string (val->name);
3009 utf8_key = get_utf8_string (val->key);
3010
3011 /* See if W is a menu item with a key. See make_menu_item above. */
383b7c95 3012 if (GTK_IS_BOX (wchild))
f392e843
JD
3013 {
3014 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
3015
3016 wlbl = GTK_LABEL (list->data);
3017 wkey = GTK_LABEL (list->next->data);
49853a4d
JD
3018 g_list_free (list);
3019
f392e843
JD
3020 if (! utf8_key)
3021 {
3022 /* Remove the key and keep just the label. */
e547b051 3023 g_object_ref (G_OBJECT (wlbl));
f392e843
JD
3024 gtk_container_remove (GTK_CONTAINER (w), wchild);
3025 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
e547b051 3026 g_object_unref (G_OBJECT (wlbl));
f392e843
JD
3027 wkey = 0;
3028 }
49853a4d 3029
f392e843
JD
3030 }
3031 else /* Just a label. */
3032 {
3033 wlbl = GTK_LABEL (wchild);
3034
3035 /* Check if there is now a key. */
3036 if (utf8_key)
3037 {
3038 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
3039 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
49853a4d 3040
f392e843
JD
3041 wlbl = GTK_LABEL (list->data);
3042 wkey = GTK_LABEL (list->next->data);
49853a4d 3043 g_list_free (list);
f392e843
JD
3044
3045 gtk_container_remove (GTK_CONTAINER (w), wchild);
3046 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3047 }
3048 }
3049
177c0ea7 3050
0a1d6de0
JD
3051 if (wkey) old_key = gtk_label_get_label (wkey);
3052 if (wlbl) old_label = gtk_label_get_label (wlbl);
177c0ea7 3053
0a1d6de0 3054 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
f392e843
JD
3055 gtk_label_set_text (wkey, utf8_key);
3056
0a1d6de0 3057 if (! old_label || strcmp (utf8_label, old_label) != 0)
4b1b4443 3058 gtk_label_set_text (wlbl, utf8_label);
f392e843 3059
42ca4633
J
3060 if (utf8_key) g_free (utf8_key);
3061 if (utf8_label) g_free (utf8_label);
177c0ea7 3062
e547b051 3063 if (! val->enabled && gtk_widget_get_sensitive (w))
f392e843 3064 gtk_widget_set_sensitive (w, FALSE);
e547b051 3065 else if (val->enabled && ! gtk_widget_get_sensitive (w))
f392e843
JD
3066 gtk_widget_set_sensitive (w, TRUE);
3067
3068 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (w),
3069 XG_ITEM_DATA);
3070 if (cb_data)
3071 {
3072 cb_data->call_data = val->call_data;
3073 cb_data->help = val->help;
3074 cb_data->cl_data = cl_data;
177c0ea7 3075
f392e843
JD
3076 /* We assume the callback functions don't change. */
3077 if (val->call_data && ! val->contents)
3078 {
3079 /* This item shall have a select callback. */
3080 if (! cb_data->select_id)
3081 cb_data->select_id
3082 = g_signal_connect (G_OBJECT (w), "activate",
3083 select_cb, cb_data);
3084 }
3085 else if (cb_data->select_id)
3086 {
3087 g_signal_handler_disconnect (w, cb_data->select_id);
3088 cb_data->select_id = 0;
3089 }
f392e843
JD
3090 }
3091}
3092
3093/* Update the toggle menu item W so it corresponds to VAL. */
71bacd48 3094
f392e843 3095static void
971de7fb 3096xg_update_toggle_item (widget_value *val, GtkWidget *w)
f392e843
JD
3097{
3098 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3099}
3100
3101/* Update the radio menu item W so it corresponds to VAL. */
71bacd48 3102
f392e843 3103static void
971de7fb 3104xg_update_radio_item (widget_value *val, GtkWidget *w)
f392e843
JD
3105{
3106 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3107}
3108
3109/* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3110 SUBMENU may be NULL, in that case a new menu is created.
3111 F is the frame the menu bar belongs to.
3112 VAL describes the contents of the menu bar.
3113 SELECT_CB is the callback to use when a menu item is selected.
3114 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3115 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3116 CL_DATA is the call back data to use for any newly created items.
3117
3118 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3119 was NULL. */
3120
3121static GtkWidget *
dd4c5104
DN
3122xg_update_submenu (GtkWidget *submenu,
3123 FRAME_PTR f,
3124 widget_value *val,
3125 GCallback select_cb,
3126 GCallback deactivate_cb,
3127 GCallback highlight_cb,
3128 xg_menu_cb_data *cl_data)
f392e843
JD
3129{
3130 GtkWidget *newsub = submenu;
3131 GList *list = 0;
3132 GList *iter;
3133 widget_value *cur;
18e27ea8 3134 bool has_tearoff_p = 0;
f392e843 3135 GList *first_radio = 0;
177c0ea7 3136
f392e843
JD
3137 if (submenu)
3138 list = gtk_container_get_children (GTK_CONTAINER (submenu));
177c0ea7 3139
f392e843
JD
3140 for (cur = val, iter = list;
3141 cur && iter;
3142 iter = g_list_next (iter), cur = cur->next)
3143 {
3144 GtkWidget *w = GTK_WIDGET (iter->data);
3145
8b745d92
JD
3146#ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
3147 /* Skip tearoff items, they have no counterpart in val. */
f392e843
JD
3148 if (GTK_IS_TEAROFF_MENU_ITEM (w))
3149 {
3150 has_tearoff_p = 1;
3151 iter = g_list_next (iter);
3152 if (iter) w = GTK_WIDGET (iter->data);
3153 else break;
3154 }
8b745d92 3155#endif
f392e843
JD
3156
3157 /* Remember first radio button in a group. If we get a mismatch in
3158 a radio group we must rebuild the whole group so that the connections
3159 in GTK becomes correct. */
3160 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3161 first_radio = iter;
3162 else if (cur->button_type != BUTTON_TYPE_RADIO
3163 && ! GTK_IS_RADIO_MENU_ITEM (w))
3164 first_radio = 0;
3165
3166 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3167 {
4039c786 3168 if (! menu_separator_name_p (cur->name))
f392e843
JD
3169 break;
3170 }
3171 else if (GTK_IS_CHECK_MENU_ITEM (w))
3172 {
3173 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3174 break;
3175 xg_update_toggle_item (cur, w);
3176 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3177 }
3178 else if (GTK_IS_RADIO_MENU_ITEM (w))
3179 {
3180 if (cur->button_type != BUTTON_TYPE_RADIO)
3181 break;
3182 xg_update_radio_item (cur, w);
3183 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3184 }
3185 else if (GTK_IS_MENU_ITEM (w))
3186 {
3187 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3188 GtkWidget *sub;
3189
3190 if (cur->button_type != BUTTON_TYPE_NONE ||
4039c786 3191 menu_separator_name_p (cur->name))
f392e843
JD
3192 break;
3193
3194 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3195
3196 sub = gtk_menu_item_get_submenu (witem);
3197 if (sub && ! cur->contents)
3198 {
3199 /* Not a submenu anymore. */
e547b051
J
3200 g_object_ref (G_OBJECT (sub));
3201 remove_submenu (witem);
f392e843
JD
3202 gtk_widget_destroy (sub);
3203 }
3204 else if (cur->contents)
3205 {
3206 GtkWidget *nsub;
3207
3208 nsub = xg_update_submenu (sub, f, cur->contents,
3209 select_cb, deactivate_cb,
3210 highlight_cb, cl_data);
3211
3212 /* If this item just became a submenu, we must set it. */
3213 if (nsub != sub)
3214 gtk_menu_item_set_submenu (witem, nsub);
3215 }
3216 }
3217 else
3218 {
3219 /* Structural difference. Remove everything from here and down
3220 in SUBMENU. */
3221 break;
3222 }
3223 }
3224
22bcf204 3225 /* Remove widgets from first structural change. */
f392e843
JD
3226 if (iter)
3227 {
3228 /* If we are adding new menu items below, we must remove from
3229 first radio button so that radio groups become correct. */
71bacd48
JD
3230 if (cur && first_radio) xg_destroy_widgets (first_radio);
3231 else xg_destroy_widgets (iter);
f392e843 3232 }
177c0ea7 3233
f392e843
JD
3234 if (cur)
3235 {
3236 /* More items added. Create them. */
3237 newsub = create_menus (cur,
3238 f,
3239 select_cb,
3240 deactivate_cb,
3241 highlight_cb,
3242 0,
3243 0,
3244 ! has_tearoff_p,
3245 submenu,
3246 cl_data,
3247 0);
3248 }
177c0ea7 3249
49853a4d
JD
3250 if (list) g_list_free (list);
3251
f392e843
JD
3252 return newsub;
3253}
3254
3255/* Update the MENUBAR.
3256 F is the frame the menu bar belongs to.
3257 VAL describes the contents of the menu bar.
18e27ea8 3258 If DEEP_P, rebuild all but the top level menu names in
f392e843
JD
3259 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3260 SELECT_CB is the callback to use when a menu item is selected.
3261 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3262 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
71bacd48 3263
f392e843 3264void
d5a3eaaf 3265xg_modify_menubar_widgets (GtkWidget *menubar, FRAME_PTR f, widget_value *val,
18e27ea8 3266 bool deep_p,
d5a3eaaf
AS
3267 GCallback select_cb, GCallback deactivate_cb,
3268 GCallback highlight_cb)
f392e843
JD
3269{
3270 xg_menu_cb_data *cl_data;
3271 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
f392e843
JD
3272
3273 if (! list) return;
177c0ea7 3274
f392e843
JD
3275 cl_data = (xg_menu_cb_data*) g_object_get_data (G_OBJECT (menubar),
3276 XG_FRAME_DATA);
3277
da18b5ac 3278 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
d1c38b57 3279 select_cb, deactivate_cb, highlight_cb, cl_data);
da18b5ac 3280
aa41b0bf 3281 if (deep_p)
f392e843
JD
3282 {
3283 widget_value *cur;
3284
3285 /* Update all sub menus.
da18b5ac 3286 We must keep the submenus (GTK menu item widgets) since the
f392e843
JD
3287 X Window in the XEvent that activates the menu are those widgets. */
3288
3289 /* Update cl_data, menu_item things in F may have changed. */
3290 update_cl_data (cl_data, f, highlight_cb);
3291
3292 for (cur = val->contents; cur; cur = cur->next)
3293 {
49853a4d 3294 GList *iter;
f392e843
JD
3295 GtkWidget *sub = 0;
3296 GtkWidget *newsub;
e4c8d29a 3297 GtkMenuItem *witem = 0;
f392e843
JD
3298
3299 /* Find sub menu that corresponds to val and update it. */
3300 for (iter = list ; iter; iter = g_list_next (iter))
3301 {
3302 witem = GTK_MENU_ITEM (iter->data);
3303 if (xg_item_label_same_p (witem, cur->name))
3304 {
3305 sub = gtk_menu_item_get_submenu (witem);
3306 break;
3307 }
3308 }
177c0ea7 3309
f392e843
JD
3310 newsub = xg_update_submenu (sub,
3311 f,
3312 cur->contents,
3313 select_cb,
3314 deactivate_cb,
3315 highlight_cb,
3316 cl_data);
3317 /* sub may still be NULL. If we just updated non deep and added
3318 a new menu bar item, it has no sub menu yet. So we set the
3319 newly created sub menu under witem. */
e4c8d29a 3320 if (newsub != sub && witem != 0)
810f2256
JD
3321 {
3322 xg_set_screen (newsub, f);
3323 gtk_menu_item_set_submenu (witem, newsub);
3324 }
f392e843
JD
3325 }
3326 }
3327
49853a4d 3328 g_list_free (list);
f392e843
JD
3329 gtk_widget_show_all (menubar);
3330}
3331
8d7f026f
JD
3332/* Callback called when the menu bar W is mapped.
3333 Used to find the height of the menu bar if we didn't get it
3334 after showing the widget. */
3335
3336static void
3337menubar_map_cb (GtkWidget *w, gpointer user_data)
3338{
3339 GtkRequisition req;
3340 FRAME_PTR f = (FRAME_PTR) user_data;
0afb4571 3341 gtk_widget_get_preferred_size (w, NULL, &req);
088c8c09 3342 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
8d7f026f
JD
3343 {
3344 FRAME_MENUBAR_HEIGHT (f) = req.height;
088c8c09 3345 xg_height_or_width_changed (f);
8d7f026f
JD
3346 }
3347}
3348
f392e843 3349/* Recompute all the widgets of frame F, when the menu bar has been
18e27ea8 3350 changed. */
f392e843 3351
18e27ea8 3352void
971de7fb 3353xg_update_frame_menubar (FRAME_PTR f)
f392e843
JD
3354{
3355 struct x_output *x = f->output_data.x;
3356 GtkRequisition req;
177c0ea7 3357
e547b051 3358 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
18e27ea8 3359 return;
f392e843 3360
473a99b7 3361 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
18e27ea8 3362 return; /* Already done this, happens for frames created invisible. */
473a99b7 3363
4d7e6e51 3364 block_input ();
f392e843
JD
3365
3366 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3367 FALSE, FALSE, 0);
3368 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3369
8d7f026f 3370 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
f392e843 3371 gtk_widget_show_all (x->menubar_widget);
0afb4571 3372 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
07976ae3 3373
8d7f026f
JD
3374 /* If menu bar doesn't know its height yet, cheat a little so the frame
3375 doesn't jump so much when resized later in menubar_map_cb. */
3376 if (req.height == 0)
3377 req.height = 23;
3378
3379 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3380 {
3381 FRAME_MENUBAR_HEIGHT (f) = req.height;
07976ae3 3382 xg_height_or_width_changed (f);
8d7f026f 3383 }
4d7e6e51 3384 unblock_input ();
f392e843
JD
3385}
3386
3387/* Get rid of the menu bar of frame F, and free its storage.
3388 This is used when deleting a frame, and when turning off the menu bar. */
3389
3390void
971de7fb 3391free_frame_menubar (FRAME_PTR f)
f392e843
JD
3392{
3393 struct x_output *x = f->output_data.x;
3394
3395 if (x->menubar_widget)
3396 {
4d7e6e51 3397 block_input ();
f392e843
JD
3398
3399 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3400 /* The menubar and its children shall be deleted when removed from
3401 the container. */
3402 x->menubar_widget = 0;
3403 FRAME_MENUBAR_HEIGHT (f) = 0;
bfeabdc3 3404 xg_height_or_width_changed (f);
4d7e6e51 3405 unblock_input ();
f392e843
JD
3406 }
3407}
3408
18e27ea8 3409bool
b78f9767
J
3410xg_event_is_for_menubar (FRAME_PTR f, XEvent *event)
3411{
3412 struct x_output *x = f->output_data.x;
499322ce
J
3413 GList *iter;
3414 GdkRectangle rec;
3415 GList *list;
3416 GdkDisplay *gdpy;
3417 GdkWindow *gw;
3418 GdkEvent gevent;
3419 GtkWidget *gwdesc;
b78f9767
J
3420
3421 if (! x->menubar_widget) return 0;
3422
3423 if (! (event->xbutton.x >= 0
3424 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3425 && event->xbutton.y >= 0
3426 && event->xbutton.y < f->output_data.x->menubar_height
3427 && event->xbutton.same_screen))
3428 return 0;
3429
499322ce 3430 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
0afb4571 3431 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
499322ce
J
3432 if (! gw) return 0;
3433 gevent.any.window = gw;
3b574623 3434 gevent.any.type = GDK_NOTHING;
499322ce
J
3435 gwdesc = gtk_get_event_widget (&gevent);
3436 if (! gwdesc) return 0;
3437 if (! GTK_IS_MENU_BAR (gwdesc)
3438 && ! GTK_IS_MENU_ITEM (gwdesc)
3439 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3440 return 0;
3441
3442 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
b78f9767 3443 if (! list) return 0;
b78f9767
J
3444 rec.x = event->xbutton.x;
3445 rec.y = event->xbutton.y;
3446 rec.width = 1;
3447 rec.height = 1;
499322ce 3448
b78f9767
J
3449 for (iter = list ; iter; iter = g_list_next (iter))
3450 {
3451 GtkWidget *w = GTK_WIDGET (iter->data);
ce6e9d7f 3452 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
b78f9767
J
3453 break;
3454 }
3455 g_list_free (list);
18e27ea8 3456 return iter != 0;
b78f9767
J
3457}
3458
f392e843
JD
3459
3460\f
3461/***********************************************************************
3462 Scroll bar functions
3463 ***********************************************************************/
3464
3465
3466/* Setting scroll bar values invokes the callback. Use this variable
3467 to indicate that callback should do nothing. */
71bacd48 3468
18e27ea8 3469bool xg_ignore_gtk_scrollbar;
f392e843 3470
c195f2de
JD
3471/* The width of the scroll bar for the current theme. */
3472
3473static int scroll_bar_width_for_theme;
3474
056ce195
SM
3475/* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3476 may be larger than 32 bits. Keep a mapping from integer index to widget
3477 pointers to get around the 32 bit limitation. */
71bacd48 3478
f392e843
JD
3479static struct
3480{
3481 GtkWidget **widgets;
0eb0f318
PE
3482 ptrdiff_t max_size;
3483 ptrdiff_t used;
81e302ef 3484} id_to_widget;
f392e843
JD
3485
3486/* Grow this much every time we need to allocate more */
71bacd48 3487
f392e843
JD
3488#define ID_TO_WIDGET_INCR 32
3489
3490/* Store the widget pointer W in id_to_widget and return the integer index. */
71bacd48 3491
0eb0f318 3492static ptrdiff_t
971de7fb 3493xg_store_widget_in_map (GtkWidget *w)
f392e843 3494{
0eb0f318 3495 ptrdiff_t i;
f392e843
JD
3496
3497 if (id_to_widget.max_size == id_to_widget.used)
3498 {
0eb0f318 3499 ptrdiff_t new_size;
0065d054 3500 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
0eb0f318 3501 memory_full (SIZE_MAX);
f392e843 3502
0eb0f318 3503 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
0065d054
PE
3504 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3505 new_size, sizeof (GtkWidget *));
f392e843
JD
3506
3507 for (i = id_to_widget.max_size; i < new_size; ++i)
3508 id_to_widget.widgets[i] = 0;
3509 id_to_widget.max_size = new_size;
3510 }
3511
3512 /* Just loop over the array and find a free place. After all,
3513 how many scroll bars are we creating? Should be a small number.
3514 The check above guarantees we will find a free place. */
3515 for (i = 0; i < id_to_widget.max_size; ++i)
3516 {
3517 if (! id_to_widget.widgets[i])
3518 {
3519 id_to_widget.widgets[i] = w;
3520 ++id_to_widget.used;
3521
3522 return i;
3523 }
3524 }
3525
3526 /* Should never end up here */
1088b922 3527 emacs_abort ();
f392e843
JD
3528}
3529
3530/* Remove pointer at IDX from id_to_widget.
3531 Called when scroll bar is destroyed. */
71bacd48 3532
f392e843 3533static void
0eb0f318 3534xg_remove_widget_from_map (ptrdiff_t idx)
f392e843
JD
3535{
3536 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3537 {
3538 id_to_widget.widgets[idx] = 0;
3539 --id_to_widget.used;
3540 }
3541}
3542
3543/* Get the widget pointer at IDX from id_to_widget. */
71bacd48 3544
f392e843 3545static GtkWidget *
0eb0f318 3546xg_get_widget_from_map (ptrdiff_t idx)
f392e843
JD
3547{
3548 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3549 return id_to_widget.widgets[idx];
3550
3551 return 0;
3552}
3553
c195f2de
JD
3554static void
3555update_theme_scrollbar_width (void)
a059fe24 3556{
43f862f7
AS
3557#ifdef HAVE_GTK3
3558 GtkAdjustment *vadj;
3559#else
3560 GtkObject *vadj;
3561#endif
3562 GtkWidget *wscroll;
a059fe24 3563 int w = 0, b = 0;
c195f2de 3564
43f862f7 3565 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
383b7c95 3566 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
c195f2de 3567 g_object_ref_sink (G_OBJECT (wscroll));
a059fe24
JD
3568 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3569 gtk_widget_destroy (wscroll);
c195f2de 3570 g_object_unref (G_OBJECT (wscroll));
a059fe24
JD
3571 w += 2*b;
3572 if (w < 16) w = 16;
c195f2de
JD
3573 scroll_bar_width_for_theme = w;
3574}
3575
3576int
3577xg_get_default_scrollbar_width (void)
3578{
3579 return scroll_bar_width_for_theme;
a059fe24
JD
3580}
3581
810f2256 3582/* Return the scrollbar id for X Window WID on display DPY.
3a8a22fc 3583 Return -1 if WID not in id_to_widget. */
71bacd48 3584
0eb0f318 3585ptrdiff_t
971de7fb 3586xg_get_scroll_id_for_window (Display *dpy, Window wid)
3a8a22fc 3587{
0eb0f318 3588 ptrdiff_t idx;
3a8a22fc
JD
3589 GtkWidget *w;
3590
810f2256 3591 w = xg_win_to_widget (dpy, wid);
3a8a22fc
JD
3592
3593 if (w)
3594 {
3595 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3596 if (id_to_widget.widgets[idx] == w)
3597 return idx;
3598 }
3599
3600 return -1;
3601}
3602
f392e843
JD
3603/* Callback invoked when scroll bar WIDGET is destroyed.
3604 DATA is the index into id_to_widget for WIDGET.
cea9be54 3605 We free pointer to last scroll bar values here and remove the index. */
71bacd48 3606
f392e843 3607static void
971de7fb 3608xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
f392e843 3609{
0eb0f318 3610 intptr_t id = (intptr_t) data;
f392e843
JD
3611 xg_remove_widget_from_map (id);
3612}
3613
f392e843
JD
3614/* Create a scroll bar widget for frame F. Store the scroll bar
3615 in BAR.
3616 SCROLL_CALLBACK is the callback to invoke when the value of the
3617 bar changes.
e5f0bc9a 3618 END_CALLBACK is the callback to invoke when scrolling ends.
f392e843
JD
3619 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3620 to set resources for the widget. */
71bacd48 3621
f392e843 3622void
e4c8d29a
J
3623xg_create_scroll_bar (FRAME_PTR f,
3624 struct scroll_bar *bar,
3625 GCallback scroll_callback,
3626 GCallback end_callback,
675e2c69 3627 const char *scroll_bar_name)
f392e843
JD
3628{
3629 GtkWidget *wscroll;
1755a397 3630 GtkWidget *webox;
d01a7826 3631 intptr_t scroll_id;
0afb4571
J
3632#ifdef HAVE_GTK3
3633 GtkAdjustment *vadj;
3634#else
3635 GtkObject *vadj;
3636#endif
177c0ea7 3637
f392e843
JD
3638 /* Page, step increment values are not so important here, they
3639 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3640 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3641 0.1, 0.1, 0.1);
3642
383b7c95 3643 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
1755a397 3644 webox = gtk_event_box_new ();
f392e843 3645 gtk_widget_set_name (wscroll, scroll_bar_name);
0afb4571 3646#ifndef HAVE_GTK3
f392e843 3647 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
0afb4571 3648#endif
e5f0bc9a 3649 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
177c0ea7 3650
f392e843 3651 scroll_id = xg_store_widget_in_map (wscroll);
177c0ea7 3652
f392e843
JD
3653 g_signal_connect (G_OBJECT (wscroll),
3654 "destroy",
3655 G_CALLBACK (xg_gtk_scroll_destroy),
8ac068ac 3656 (gpointer) scroll_id);
e5f0bc9a
JD
3657 g_signal_connect (G_OBJECT (wscroll),
3658 "change-value",
3659 scroll_callback,
3660 (gpointer) bar);
e8d7886a
JD
3661 g_signal_connect (G_OBJECT (wscroll),
3662 "button-release-event",
e5f0bc9a 3663 end_callback,
e8d7886a 3664 (gpointer) bar);
088c8c09 3665
1755a397
JD
3666 /* The scroll bar widget does not draw on a window of its own. Instead
3667 it draws on the parent window, in this case the edit widget. So
3668 whenever the edit widget is cleared, the scroll bar needs to redraw
3669 also, which causes flicker. Put an event box between the edit widget
3670 and the scroll bar, so the scroll bar instead draws itself on the
3671 event box window. */
3672 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3673 gtk_container_add (GTK_CONTAINER (webox), wscroll);
c43923ad 3674
f392e843
JD
3675
3676 /* Set the cursor to an arrow. */
1755a397 3677 xg_set_cursor (webox, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
f392e843 3678
056ce195 3679 bar->x_window = scroll_id;
f392e843
JD
3680}
3681
f392e843 3682/* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
71bacd48 3683
f392e843 3684void
0eb0f318 3685xg_remove_scroll_bar (FRAME_PTR f, ptrdiff_t scrollbar_id)
f392e843
JD
3686{
3687 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3688 if (w)
3689 {
1755a397 3690 GtkWidget *wparent = gtk_widget_get_parent (w);
f392e843 3691 gtk_widget_destroy (w);
1755a397 3692 gtk_widget_destroy (wparent);
f392e843
JD
3693 SET_FRAME_GARBAGED (f);
3694 }
3695}
3696
f392e843
JD
3697/* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3698 in frame F.
3699 TOP/LEFT are the new pixel positions where the bar shall appear.
3700 WIDTH, HEIGHT is the size in pixels the bar shall have. */
71bacd48 3701
f392e843 3702void
e4c8d29a 3703xg_update_scrollbar_pos (FRAME_PTR f,
0eb0f318 3704 ptrdiff_t scrollbar_id,
e4c8d29a
J
3705 int top,
3706 int left,
3707 int width,
3708 int height)
f392e843 3709{
f392e843 3710
49853a4d 3711 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
7863d625 3712
49853a4d
JD
3713 if (wscroll)
3714 {
cea9be54 3715 GtkWidget *wfixed = f->output_data.x->edit_widget;
1755a397 3716 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
8c079ebb 3717 gint msl;
7c583cd8
JD
3718
3719 /* Clear out old position. */
7c583cd8 3720 int oldx = -1, oldy = -1, oldw, oldh;
e547b051
J
3721 if (gtk_widget_get_parent (wparent) == wfixed)
3722 {
3723 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3724 "x", &oldx, "y", &oldy, NULL);
3725 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3726 }
7863d625 3727
ab2d724b 3728 /* Move and resize to new values. */
1755a397 3729 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
bc869eca
JD
3730 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3731 if (msl > height)
3732 {
3733 /* No room. Hide scroll bar as some themes output a warning if
3734 the height is less than the min size. */
3735 gtk_widget_hide (wparent);
3736 gtk_widget_hide (wscroll);
3737 }
3738 else
3739 {
3740 gtk_widget_show_all (wparent);
3741 gtk_widget_set_size_request (wscroll, width, height);
3742 }
7c583cd8 3743 gtk_widget_queue_draw (wfixed);
817d354b 3744 gdk_window_process_all_updates ();
bc869eca 3745 if (oldx != -1 && oldw > 0 && oldh > 0)
7c583cd8
JD
3746 {
3747 /* Clear under old scroll bar position. This must be done after
3748 the gtk_widget_queue_draw and gdk_window_process_all_updates
3749 above. */
3750 x_clear_area (FRAME_X_DISPLAY (f),
3751 FRAME_X_WINDOW (f),
3752 oldx, oldy, oldw, oldh, 0);
3753 }
088c8c09 3754
817d354b
JD
3755 /* GTK does not redraw until the main loop is entered again, but
3756 if there are no X events pending we will not enter it. So we sync
3757 here to get some events. */
088c8c09 3758
817d354b 3759 x_sync (f);
49853a4d
JD
3760 SET_FRAME_GARBAGED (f);
3761 cancel_mouse_face (f);
3762 }
f392e843
JD
3763}
3764
c195f2de
JD
3765/* Get the current value of the range, truncated to an integer. */
3766
3767static int
3768int_gtk_range_get_value (GtkRange *range)
3769{
3770 return gtk_range_get_value (range);
3771}
3772
3773
f392e843
JD
3774/* Set the thumb size and position of scroll bar BAR. We are currently
3775 displaying PORTION out of a whole WHOLE, and our position POSITION. */
71bacd48 3776
f392e843 3777void
e4c8d29a
J
3778xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3779 int portion,
3780 int position,
3781 int whole)
f392e843 3782{
056ce195 3783 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
f392e843
JD
3784
3785 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3786
17097258 3787 if (wscroll && NILP (bar->dragging))
f392e843
JD
3788 {
3789 GtkAdjustment *adj;
3790 gdouble shown;
3791 gdouble top;
3792 int size, value;
6048fb2a 3793 int old_size;
7863d625 3794 int new_step;
18e27ea8 3795 bool changed = 0;
177c0ea7 3796
f392e843
JD
3797 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3798
ec782c5f
JD
3799 if (scroll_bar_adjust_thumb_portion_p)
3800 {
3801 /* We do the same as for MOTIF in xterm.c, use 30 chars per
3802 line rather than the real portion value. This makes the
3803 thumb less likely to resize and that looks better. */
3804 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3805
3806 /* When the thumb is at the bottom, position == whole.
3807 So we need to increase `whole' to make space for the thumb. */
3808 whole += portion;
3809 }
17097258 3810
f392e843
JD
3811 if (whole <= 0)
3812 top = 0, shown = 1;
3813 else
3814 {
f392e843 3815 top = (gdouble) position / whole;
7863d625 3816 shown = (gdouble) portion / whole;
f392e843
JD
3817 }
3818
2dd61a9b
DA
3819 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
3820 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
f392e843 3821
7863d625 3822 /* Assume all lines are of equal size. */
be786000 3823 new_step = size / max (1, FRAME_LINES (f));
2a2071c3 3824
6048fb2a
PE
3825 old_size = gtk_adjustment_get_page_size (adj);
3826 if (old_size != size)
3827 {
3828 int old_step = gtk_adjustment_get_step_increment (adj);
3829 if (old_step != new_step)
3830 {
3831 gtk_adjustment_set_page_size (adj, size);
3832 gtk_adjustment_set_step_increment (adj, new_step);
3833 /* Assume a page increment is about 95% of the page size */
5f8f9cc2 3834 gtk_adjustment_set_page_increment (adj, size - size / 20);
6048fb2a
PE
3835 changed = 1;
3836 }
3837 }
17097258 3838
1e5524e7 3839 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
7863d625 3840 {
4d7e6e51 3841 block_input ();
cea9be54 3842
7863d625
JD
3843 /* gtk_range_set_value invokes the callback. Set
3844 ignore_gtk_scrollbar to make the callback do nothing */
3845 xg_ignore_gtk_scrollbar = 1;
f392e843 3846
1e5524e7 3847 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
7863d625
JD
3848 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3849 else if (changed)
3850 gtk_adjustment_changed (adj);
3851
3852 xg_ignore_gtk_scrollbar = 0;
3853
4d7e6e51 3854 unblock_input ();
7863d625
JD
3855 }
3856 }
f392e843
JD
3857}
3858
18e27ea8 3859/* Return true if EVENT is for a scroll bar in frame F.
e511451f
JD
3860 When the same X window is used for several Gtk+ widgets, we cannot
3861 say for sure based on the X window alone if an event is for the
18e27ea8 3862 frame. This function does additional checks. */
e511451f 3863
18e27ea8 3864bool
971de7fb 3865xg_event_is_for_scrollbar (FRAME_PTR f, XEvent *event)
e511451f 3866{
18e27ea8 3867 bool retval = 0;
e511451f 3868
e5f0bc9a 3869 if (f && event->type == ButtonPress && event->xbutton.button < 4)
e511451f
JD
3870 {
3871 /* Check if press occurred outside the edit widget. */
3872 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
383b7c95
JD
3873 GdkWindow *gwin;
3874#ifdef HAVE_GTK3
3875 GdkDevice *gdev = gdk_device_manager_get_client_pointer
3876 (gdk_display_get_device_manager (gdpy));
bdd091e4 3877 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
383b7c95
JD
3878#else
3879 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
3880#endif
3881 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
e511451f 3882 }
e5f0bc9a
JD
3883 else if (f
3884 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3885 || event->type == MotionNotify))
e511451f
JD
3886 {
3887 /* If we are releasing or moving the scroll bar, it has the grab. */
3bb49aaf
JD
3888 GtkWidget *w = gtk_grab_get_current ();
3889 retval = w != 0 && GTK_IS_SCROLLBAR (w);
e511451f 3890 }
088c8c09 3891
e511451f
JD
3892 return retval;
3893}
3894
3895
f392e843
JD
3896\f
3897/***********************************************************************
3898 Tool bar functions
3899 ***********************************************************************/
3900/* The key for the data we put in the GtkImage widgets. The data is
3901 the image used by Emacs. We use this to see if we need to update
3902 the GtkImage with a new image. */
3903#define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3904
2334f9e7
JD
3905/* The key for storing the latest modifiers so the activate callback can
3906 get them. */
3907#define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3908
1e0fe298
JD
3909/* The key for storing the button widget in its proxy menu item. */
3910#define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
2334f9e7 3911
98a92193
JD
3912/* The key for the data we put in the GtkImage widgets. The data is
3913 the stock name used by Emacs. We use this to see if we need to update
3914 the GtkImage with a new image. */
3915#define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3916
2154c964
JD
3917/* As above, but this is used for named theme widgets, as opposed to
3918 stock items. */
3919#define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3920
98a92193
JD
3921/* Callback function invoked when a tool bar item is pressed.
3922 W is the button widget in the tool bar that got pressed,
3923 CLIENT_DATA is an integer that is the index of the button in the
3924 tool bar. 0 is the first button. */
3925
2334f9e7 3926static gboolean
e4c8d29a
J
3927xg_tool_bar_button_cb (GtkWidget *widget,
3928 GdkEventButton *event,
3929 gpointer user_data)
2334f9e7 3930{
d01a7826 3931 intptr_t state = event->state;
8ac068ac 3932 gpointer ptr = (gpointer) state;
6e1440e6 3933 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
6d45d2a0 3934 return FALSE;
2334f9e7
JD
3935}
3936
3937
6e1440e6
JD
3938/* Callback function invoked when a tool bar item is pressed.
3939 W is the button widget in the tool bar that got pressed,
3940 CLIENT_DATA is an integer that is the index of the button in the
3941 tool bar. 0 is the first button. */
3942
f392e843 3943static void
971de7fb 3944xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
f392e843 3945{
d01a7826 3946 intptr_t idx = (intptr_t) client_data;
1e5524e7 3947 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
d01a7826 3948 intptr_t mod = (intptr_t) gmod;
2334f9e7 3949
f392e843
JD
3950 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3951 Lisp_Object key, frame;
3952 struct input_event event;
aa4ac494 3953 EVENT_INIT (event);
f392e843 3954
e69b0960 3955 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
f392e843
JD
3956 return;
3957
3958 idx *= TOOL_BAR_ITEM_NSLOTS;
177c0ea7 3959
e69b0960 3960 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
f392e843 3961 XSETFRAME (frame, f);
991bde0d
JD
3962
3963 /* We generate two events here. The first one is to set the prefix
3964 to `(tool_bar)', see keyboard.c. */
f392e843
JD
3965 event.kind = TOOL_BAR_EVENT;
3966 event.frame_or_window = frame;
8e5a8840
JB
3967 event.arg = frame;
3968 kbd_buffer_store_event (&event);
3969
3970 event.kind = TOOL_BAR_EVENT;
991bde0d 3971 event.frame_or_window = frame;
f392e843 3972 event.arg = key;
2334f9e7 3973 /* Convert between the modifier bits GDK uses and the modifier bits
4a02423f 3974 Emacs uses. This assumes GDK and X masks are the same, which they are when
2334f9e7
JD
3975 this is written. */
3976 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), mod);
f392e843 3977 kbd_buffer_store_event (&event);
088c8c09 3978
4a02423f
JD
3979 /* Return focus to the frame after we have clicked on a detached
3980 tool bar button. */
3981 Fx_focus_frame (frame);
f392e843
JD
3982}
3983
1e0fe298
JD
3984/* Callback function invoked when a tool bar item is pressed in a detached
3985 tool bar or the overflow drop down menu.
3986 We just call xg_tool_bar_callback.
3987 W is the menu item widget that got pressed,
3988 CLIENT_DATA is an integer that is the index of the button in the
3989 tool bar. 0 is the first button. */
3990
3991static void
971de7fb 3992xg_tool_bar_proxy_callback (GtkWidget *w, gpointer client_data)
1e0fe298
JD
3993{
3994 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3995 XG_TOOL_BAR_PROXY_BUTTON));
3996 xg_tool_bar_callback (wbutton, client_data);
3997}
3998
69b16610
JD
3999
4000static gboolean
f57e2426
J
4001xg_tool_bar_help_callback (GtkWidget *w,
4002 GdkEventCrossing *event,
4003 gpointer client_data);
69b16610
JD
4004
4005/* This callback is called when a help is to be shown for an item in
4006 the detached tool bar when the detached tool bar it is not expanded. */
4007
4008static gboolean
e4c8d29a
J
4009xg_tool_bar_proxy_help_callback (GtkWidget *w,
4010 GdkEventCrossing *event,
4011 gpointer client_data)
69b16610
JD
4012{
4013 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
4014 XG_TOOL_BAR_PROXY_BUTTON));
088c8c09 4015
eba5eb94 4016 return xg_tool_bar_help_callback (wbutton, event, client_data);
69b16610
JD
4017}
4018
e547b051
J
4019static GtkWidget *
4020xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4021{
4022 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4023 GtkWidget *c1 = (GtkWidget *) clist->data;
3afff00e
CY
4024 GtkWidget *c2 = clist->next ? (GtkWidget *) clist->next->data : NULL;
4025
e547b051
J
4026 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4027 g_list_free (clist);
4028 return GTK_IS_LABEL (c1) ? c1 : c2;
4029}
4030
69b16610 4031
1e0fe298
JD
4032/* This callback is called when a tool item should create a proxy item,
4033 such as for the overflow menu. Also called when the tool bar is detached.
4034 If we don't create a proxy menu item, the detached tool bar will be
4035 blank. */
4036
4037static gboolean
971de7fb 4038xg_tool_bar_menu_proxy (GtkToolItem *toolitem, gpointer user_data)
1e0fe298 4039{
4039c786
CY
4040 GtkButton *wbutton = GTK_BUTTON (XG_BIN_CHILD (XG_BIN_CHILD (toolitem)));
4041 GtkWidget *vb = XG_BIN_CHILD (wbutton);
e547b051
J
4042 GtkWidget *c1;
4043 GtkLabel *wlbl = GTK_LABEL (xg_get_tool_bar_widgets (vb, &c1));
4044 GtkImage *wimage = GTK_IMAGE (c1);
f904c0f9 4045 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label
42f60557 4046 (wlbl ? gtk_label_get_text (wlbl) : "");
1e0fe298
JD
4047 GtkWidget *wmenuimage;
4048
e547b051 4049
8e5a8840 4050 if (gtk_button_get_use_stock (wbutton))
1e0fe298
JD
4051 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
4052 GTK_ICON_SIZE_MENU);
4053 else
4054 {
1e0fe298
JD
4055 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
4056 GtkImageType store_type = gtk_image_get_storage_type (wimage);
e624c3f9 4057
2b5b82db
J
4058 g_object_set (G_OBJECT (settings), "gtk-menu-images", TRUE, NULL);
4059
1e0fe298
JD
4060 if (store_type == GTK_IMAGE_STOCK)
4061 {
4062 gchar *stock_id;
4063 gtk_image_get_stock (wimage, &stock_id, NULL);
4064 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
4065 }
4066 else if (store_type == GTK_IMAGE_ICON_SET)
4067 {
4068 GtkIconSet *icon_set;
4069 gtk_image_get_icon_set (wimage, &icon_set, NULL);
4070 wmenuimage = gtk_image_new_from_icon_set (icon_set,
4071 GTK_ICON_SIZE_MENU);
4072 }
4073 else if (store_type == GTK_IMAGE_PIXBUF)
4074 {
4075 gint width, height;
8e5a8840 4076
1e0fe298
JD
4077 if (settings &&
4078 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
4079 &width, &height))
4080 {
4081 GdkPixbuf *src_pixbuf, *dest_pixbuf;
4082
4083 src_pixbuf = gtk_image_get_pixbuf (wimage);
4084 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
4085 GDK_INTERP_BILINEAR);
4086
4087 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
4088 }
e624c3f9
JD
4089 else
4090 {
4091 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
1088b922 4092 emacs_abort ();
e624c3f9
JD
4093 }
4094 }
8e5a8840 4095 else if (store_type == GTK_IMAGE_ICON_NAME)
e624c3f9
JD
4096 {
4097 const gchar *icon_name;
4098 GtkIconSize icon_size;
4099
4100 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
4101 wmenuimage = gtk_image_new_from_icon_name (icon_name,
4102 GTK_ICON_SIZE_MENU);
4103 }
4104 else
4105 {
4106 fprintf (stderr, "internal error: store_type is %d\n", store_type);
1088b922 4107 emacs_abort ();
1e0fe298
JD
4108 }
4109 }
4110 if (wmenuimage)
4111 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
4112
4113 g_signal_connect (G_OBJECT (wmenuitem),
4114 "activate",
dc2933eb 4115 G_CALLBACK (xg_tool_bar_proxy_callback),
1e0fe298
JD
4116 user_data);
4117
088c8c09 4118
1e0fe298
JD
4119 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
4120 (gpointer) wbutton);
4121 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
e547b051
J
4122 gtk_widget_set_sensitive (wmenuitem,
4123 gtk_widget_get_sensitive (GTK_WIDGET (wbutton)));
69b16610
JD
4124
4125 /* Use enter/leave notify to show help. We use the events
4126 rather than the GtkButton specific signals "enter" and
4127 "leave", so we can have only one callback. The event
4128 will tell us what kind of event it is. */
4129 g_signal_connect (G_OBJECT (wmenuitem),
4130 "enter-notify-event",
4131 G_CALLBACK (xg_tool_bar_proxy_help_callback),
4132 user_data);
4133 g_signal_connect (G_OBJECT (wmenuitem),
4134 "leave-notify-event",
4135 G_CALLBACK (xg_tool_bar_proxy_help_callback),
4136 user_data);
1e0fe298
JD
4137
4138 return TRUE;
4139}
4140
f392e843
JD
4141/* This callback is called when a tool bar is detached. We must set
4142 the height of the tool bar to zero when this happens so frame sizes
4143 are correctly calculated.
4144 WBOX is the handle box widget that enables detach/attach of the tool bar.
4145 W is the tool bar widget.
4146 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
71bacd48 4147
f392e843 4148static void
e4c8d29a
J
4149xg_tool_bar_detach_callback (GtkHandleBox *wbox,
4150 GtkWidget *w,
4151 gpointer client_data)
f392e843
JD
4152{
4153 FRAME_PTR f = (FRAME_PTR) client_data;
0f340cab
JD
4154
4155 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
4156 NULL);
f392e843
JD
4157
4158 if (f)
4159 {
bfeabdc3 4160 GtkRequisition req, req2;
cd78d9b1 4161
0afb4571
J
4162 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4163 gtk_widget_get_preferred_size (w, NULL, &req2);
bfeabdc3
JD
4164 req.width -= req2.width;
4165 req.height -= req2.height;
4166 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4167 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4168 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4169 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4170 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4171 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4172 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4173 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4174 xg_height_or_width_changed (f);
f392e843
JD
4175 }
4176}
4177
4178/* This callback is called when a tool bar is reattached. We must set
4179 the height of the tool bar when this happens so frame sizes
4180 are correctly calculated.
4181 WBOX is the handle box widget that enables detach/attach of the tool bar.
4182 W is the tool bar widget.
4183 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
71bacd48 4184
f392e843 4185static void
e4c8d29a
J
4186xg_tool_bar_attach_callback (GtkHandleBox *wbox,
4187 GtkWidget *w,
4188 gpointer client_data)
f392e843
JD
4189{
4190 FRAME_PTR f = (FRAME_PTR) client_data;
0f340cab 4191 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
f392e843
JD
4192
4193 if (f)
4194 {
bfeabdc3 4195 GtkRequisition req, req2;
cd78d9b1 4196
0afb4571
J
4197 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4198 gtk_widget_get_preferred_size (w, NULL, &req2);
bfeabdc3
JD
4199 req.width += req2.width;
4200 req.height += req2.height;
4201 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4202 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4203 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4204 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4205 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4206 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4207 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4208 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4209 xg_height_or_width_changed (f);
f392e843
JD
4210 }
4211}
4212
4213/* This callback is called when the mouse enters or leaves a tool bar item.
4214 It is used for displaying and hiding the help text.
4215 W is the tool bar item, a button.
4216 EVENT is either an enter event or leave event.
4217 CLIENT_DATA is an integer that is the index of the button in the
4218 tool bar. 0 is the first button.
4219
4220 Returns FALSE to tell GTK to keep processing this event. */
71bacd48 4221
f392e843 4222static gboolean
e4c8d29a
J
4223xg_tool_bar_help_callback (GtkWidget *w,
4224 GdkEventCrossing *event,
4225 gpointer client_data)
f392e843 4226{
d01a7826 4227 intptr_t idx = (intptr_t) client_data;
f392e843
JD
4228 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4229 Lisp_Object help, frame;
4230
e69b0960 4231 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
d9301435 4232 return FALSE;
f392e843
JD
4233
4234 if (event->type == GDK_ENTER_NOTIFY)
4235 {
4236 idx *= TOOL_BAR_ITEM_NSLOTS;
e69b0960 4237 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
f392e843
JD
4238
4239 if (NILP (help))
e69b0960 4240 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
f392e843
JD
4241 }
4242 else
4243 help = Qnil;
4244
4245 XSETFRAME (frame, f);
4246 kbd_buffer_store_help_event (frame, help);
4247
4248 return FALSE;
4249}
4250
4251
f098b121
JD
4252/* This callback is called when a tool bar item shall be redrawn.
4253 It modifies the expose event so that the GtkImage widget redraws the
4254 whole image. This to overcome a bug that makes GtkImage draw the image
4255 in the wrong place when it tries to redraw just a part of the image.
4256 W is the GtkImage to be redrawn.
4257 EVENT is the expose event for W.
4258 CLIENT_DATA is unused.
4259
4260 Returns FALSE to tell GTK to keep processing this event. */
71bacd48 4261
0afb4571 4262#ifndef HAVE_GTK3
f098b121 4263static gboolean
e4c8d29a
J
4264xg_tool_bar_item_expose_callback (GtkWidget *w,
4265 GdkEventExpose *event,
4266 gpointer client_data)
f098b121 4267{
b676f356
JD
4268 gint width, height;
4269
4270 gdk_drawable_get_size (event->window, &width, &height);
b676f356
JD
4271 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4272 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4273
810f2256
JD
4274 event->area.x = max (0, event->area.x);
4275 event->area.y = max (0, event->area.y);
c43923ad 4276
b676f356
JD
4277 event->area.width = max (width, event->area.width);
4278 event->area.height = max (height, event->area.height);
c43923ad 4279
f098b121
JD
4280 return FALSE;
4281}
0afb4571 4282#endif
f098b121 4283
bfeabdc3
JD
4284#ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4285#define toolbar_set_orientation(w, o) \
4286 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4287#else
4288#define toolbar_set_orientation(w, o) \
4289 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4290#endif
4291
5a1d858b
JD
4292#ifdef HAVE_GTK_HANDLE_BOX_NEW
4293#define TOOLBAR_TOP_WIDGET(x) ((x)->handlebox_widget)
4294#else
4295#define TOOLBAR_TOP_WIDGET(x) ((x)->toolbar_widget)
4296#endif
4297
1e39cbfb 4298/* Attach a tool bar to frame F. */
71bacd48 4299
f392e843 4300static void
bfeabdc3 4301xg_pack_tool_bar (FRAME_PTR f, Lisp_Object pos)
f392e843
JD
4302{
4303 struct x_output *x = f->output_data.x;
18e27ea8 4304 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
5a1d858b 4305 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
177c0ea7 4306
bfeabdc3
JD
4307 toolbar_set_orientation (x->toolbar_widget,
4308 into_hbox
4309 ? GTK_ORIENTATION_VERTICAL
4310 : GTK_ORIENTATION_HORIZONTAL);
5a1d858b 4311#ifdef HAVE_GTK_HANDLE_BOX_NEW
bfeabdc3
JD
4312 if (!x->handlebox_widget)
4313 {
5a1d858b 4314 top_widget = x->handlebox_widget = gtk_handle_box_new ();
bfeabdc3
JD
4315 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
4316 G_CALLBACK (xg_tool_bar_detach_callback), f);
4317 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
4318 G_CALLBACK (xg_tool_bar_attach_callback), f);
4319 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
4320 x->toolbar_widget);
4321 }
5a1d858b 4322#endif
4721152c 4323
088c8c09 4324 if (into_hbox)
bfeabdc3 4325 {
5a1d858b 4326#ifdef HAVE_GTK_HANDLE_BOX_NEW
318a04c6
J
4327 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4328 GTK_POS_TOP);
5a1d858b
JD
4329#endif
4330 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
bfeabdc3
JD
4331 FALSE, FALSE, 0);
4332
4333 if (EQ (pos, Qleft))
4334 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
5a1d858b 4335 top_widget,
bfeabdc3 4336 0);
5a1d858b 4337 x->toolbar_in_hbox = true;
bfeabdc3
JD
4338 }
4339 else
4340 {
18e27ea8 4341 bool vbox_pos = x->menubar_widget != 0;
5a1d858b 4342#ifdef HAVE_GTK_HANDLE_BOX_NEW
318a04c6
J
4343 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4344 GTK_POS_LEFT);
5a1d858b
JD
4345#endif
4346 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
bfeabdc3
JD
4347 FALSE, FALSE, 0);
4348
4349 if (EQ (pos, Qtop))
4350 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
5a1d858b 4351 top_widget,
bfeabdc3 4352 vbox_pos);
5a1d858b 4353 x->toolbar_in_hbox = false;
bfeabdc3 4354 }
5a1d858b 4355 x->toolbar_is_packed = true;
1e39cbfb
JD
4356}
4357
51b3a99c
JD
4358static bool xg_update_tool_bar_sizes (FRAME_PTR f);
4359
4360static void
4361tb_size_cb (GtkWidget *widget,
4362 GdkRectangle *allocation,
4363 gpointer user_data)
4364{
4365 /* When tool bar is created it has one preferred size. But when size is
4366 allocated between widgets, it may get another. So we must update
4367 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4368 FRAME_PTR f = (FRAME_PTR) user_data;
4369 if (xg_update_tool_bar_sizes (f))
4370 x_wm_set_size_hint (f, 0, 0);
4371}
4372
1e39cbfb
JD
4373/* Create a tool bar for frame F. */
4374
4375static void
971de7fb 4376xg_create_tool_bar (FRAME_PTR f)
1e39cbfb
JD
4377{
4378 struct x_output *x = f->output_data.x;
c9adfeaa
SF
4379#if GTK_CHECK_VERSION (3, 3, 6)
4380 GtkStyleContext *gsty;
4381#endif
ca06f160
JD
4382 struct xg_frame_tb_info *tbinfo
4383 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4384 TB_INFO_KEY);
4385 if (! tbinfo)
4386 {
4387 tbinfo = xmalloc (sizeof (*tbinfo));
4388 tbinfo->last_tool_bar = Qnil;
4389 tbinfo->style = Qnil;
4390 tbinfo->hmargin = tbinfo->vmargin = 0;
4391 tbinfo->dir = GTK_TEXT_DIR_NONE;
4392 tbinfo->n_last_items = 0;
4393 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4394 TB_INFO_KEY,
4395 tbinfo);
4396 }
1e39cbfb
JD
4397
4398 x->toolbar_widget = gtk_toolbar_new ();
f392e843 4399
f098b121
JD
4400 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4401
f098b121 4402 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
8a52f00a 4403 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
51b3a99c
JD
4404 g_signal_connect (x->toolbar_widget, "size-allocate",
4405 G_CALLBACK (tb_size_cb), f);
c9adfeaa
SF
4406#if GTK_CHECK_VERSION (3, 3, 6)
4407 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4408 gtk_style_context_add_class (gsty, "primary-toolbar");
4409#endif
1e39cbfb 4410}
f098b121 4411
177c0ea7 4412
e69b0960 4413#define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
f392e843 4414
98a92193
JD
4415/* Find the right-to-left image named by RTL in the tool bar images for F.
4416 Returns IMAGE if RTL is not found. */
4417
4418static Lisp_Object
971de7fb 4419find_rtl_image (FRAME_PTR f, Lisp_Object image, Lisp_Object rtl)
98a92193
JD
4420{
4421 int i;
4422 Lisp_Object file, rtl_name;
4423 struct gcpro gcpro1, gcpro2;
4424 GCPRO2 (file, rtl_name);
4425
4426 rtl_name = Ffile_name_nondirectory (rtl);
4427
4428 for (i = 0; i < f->n_tool_bar_items; ++i)
4429 {
4430 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
8e5a8840 4431 if (!NILP (file = file_for_image (rtl_image)))
98a92193
JD
4432 {
4433 file = call1 (intern ("file-name-sans-extension"),
4434 Ffile_name_nondirectory (file));
67b77c0b 4435 if (! NILP (Fequal (file, rtl_name)))
98a92193
JD
4436 {
4437 image = rtl_image;
4438 break;
4439 }
4440 }
4441 }
4442
4443 return image;
4444}
4445
f904c0f9
JD
4446static GtkToolItem *
4447xg_make_tool_item (FRAME_PTR f,
4448 GtkWidget *wimage,
4449 GtkWidget **wbutton,
8ea90aa3 4450 const char *label,
18e27ea8 4451 int i, bool horiz, bool text_image)
f904c0f9
JD
4452{
4453 GtkToolItem *ti = gtk_tool_item_new ();
383b7c95
JD
4454 GtkWidget *vb = gtk_box_new (horiz
4455 ? GTK_ORIENTATION_HORIZONTAL
4456 : GTK_ORIENTATION_VERTICAL,
4457 0);
f904c0f9 4458 GtkWidget *wb = gtk_button_new ();
115b96bd 4459 /* The eventbox is here so we can have tooltips on disabled items. */
f904c0f9 4460 GtkWidget *weventbox = gtk_event_box_new ();
c9adfeaa
SF
4461#if GTK_CHECK_VERSION (3, 3, 6)
4462 GtkCssProvider *css_prov = gtk_css_provider_new ();
4463 GtkStyleContext *gsty;
4464
4465 gtk_css_provider_load_from_data (css_prov,
4466 "GtkEventBox {"
4467 " background-color: transparent;"
4468 "}",
4469 -1, NULL);
4470
4471 gsty = gtk_widget_get_style_context (weventbox);
4472 gtk_style_context_add_provider (gsty,
4473 GTK_STYLE_PROVIDER (css_prov),
4474 GTK_STYLE_PROVIDER_PRIORITY_USER);
4475 g_object_unref (css_prov);
4476#endif
f904c0f9 4477
383b7c95
JD
4478 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4479
3afff00e 4480 if (wimage && !text_image)
e547b051 4481 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
3afff00e
CY
4482 if (label)
4483 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
8a52f00a
JD
4484 if (wimage && text_image)
4485 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4486
f904c0f9
JD
4487 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4488 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4489 gtk_container_add (GTK_CONTAINER (wb), vb);
4490 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4491 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4492
fe0b6370 4493 if (wimage || label)
f904c0f9 4494 {
d01a7826 4495 intptr_t ii = i;
8ac068ac
PE
4496 gpointer gi = (gpointer) ii;
4497
f904c0f9
JD
4498 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4499 G_CALLBACK (xg_tool_bar_menu_proxy),
8ac068ac 4500 gi);
f904c0f9
JD
4501
4502 g_signal_connect (G_OBJECT (wb), "clicked",
4503 G_CALLBACK (xg_tool_bar_callback),
8ac068ac 4504 gi);
f904c0f9 4505
f904c0f9
JD
4506 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4507
0afb4571 4508#ifndef HAVE_GTK3
f904c0f9
JD
4509 /* Catch expose events to overcome an annoying redraw bug, see
4510 comment for xg_tool_bar_item_expose_callback. */
4511 g_signal_connect (G_OBJECT (ti),
4512 "expose-event",
4513 G_CALLBACK (xg_tool_bar_item_expose_callback),
4514 0);
0afb4571 4515#endif
f904c0f9
JD
4516 gtk_tool_item_set_homogeneous (ti, FALSE);
4517
e1dbe924 4518 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
f904c0f9
JD
4519 no distinction based on modifiers in the activate callback,
4520 so we have to do it ourselves. */
4521 g_signal_connect (wb, "button-release-event",
4522 G_CALLBACK (xg_tool_bar_button_cb),
4523 NULL);
4524
4525 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
088c8c09 4526
f904c0f9
JD
4527 /* Use enter/leave notify to show help. We use the events
4528 rather than the GtkButton specific signals "enter" and
4529 "leave", so we can have only one callback. The event
4530 will tell us what kind of event it is. */
f904c0f9
JD
4531 g_signal_connect (G_OBJECT (weventbox),
4532 "enter-notify-event",
4533 G_CALLBACK (xg_tool_bar_help_callback),
8ac068ac 4534 gi);
f904c0f9
JD
4535 g_signal_connect (G_OBJECT (weventbox),
4536 "leave-notify-event",
4537 G_CALLBACK (xg_tool_bar_help_callback),
8ac068ac 4538 gi);
f904c0f9 4539 }
088c8c09 4540
f904c0f9
JD
4541 if (wbutton) *wbutton = wb;
4542
4543 return ti;
4544}
4545
18e27ea8
PE
4546static bool
4547is_box_type (GtkWidget *vb, bool is_horizontal)
383b7c95
JD
4548{
4549#ifdef HAVE_GTK3
18e27ea8 4550 bool ret = 0;
38182d90 4551 if (GTK_IS_BOX (vb))
383b7c95
JD
4552 {
4553 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4554 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4555 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4556 }
4557 return ret;
4558#else
4559 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4560#endif
4561}
4562
4563
18e27ea8 4564static bool
3afff00e
CY
4565xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4566 const char *icon_name, const struct image *img,
18e27ea8 4567 const char *label, bool horiz)
f904c0f9 4568{
3afff00e 4569 gpointer old;
e547b051 4570 GtkWidget *wimage;
3afff00e 4571 GtkWidget *vb = XG_BIN_CHILD (wbutton);
e547b051 4572 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
f904c0f9 4573
3afff00e 4574 /* Check if the tool icon matches. */
fe0b6370 4575 if (stock_name && wimage)
3afff00e
CY
4576 {
4577 old = g_object_get_data (G_OBJECT (wimage),
4578 XG_TOOL_BAR_STOCK_NAME);
4579 if (!old || strcmp (old, stock_name))
4580 return 1;
4581 }
fe0b6370 4582 else if (icon_name && wimage)
f904c0f9 4583 {
3afff00e
CY
4584 old = g_object_get_data (G_OBJECT (wimage),
4585 XG_TOOL_BAR_ICON_NAME);
4586 if (!old || strcmp (old, icon_name))
4587 return 1;
f904c0f9 4588 }
fe0b6370 4589 else if (wimage)
3afff00e 4590 {
1e5524e7 4591 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
383b7c95 4592 XG_TOOL_BAR_IMAGE_DATA);
1e5524e7 4593 Pixmap old_img = (Pixmap) gold_img;
3afff00e
CY
4594 if (old_img != img->pixmap)
4595 return 1;
4596 }
4597
4598 /* Check button configuration and label. */
383b7c95 4599 if (is_box_type (vb, horiz)
3afff00e
CY
4600 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4601 return 1;
f904c0f9 4602
3afff00e 4603 /* Ensure label is correct. */
fe0b6370 4604 if (label && wlbl)
3afff00e
CY
4605 gtk_label_set_text (GTK_LABEL (wlbl), label);
4606 return 0;
f904c0f9
JD
4607}
4608
18e27ea8 4609static bool
bfeabdc3
JD
4610xg_update_tool_bar_sizes (FRAME_PTR f)
4611{
4612 struct x_output *x = f->output_data.x;
4613 GtkRequisition req;
4614 int nl = 0, nr = 0, nt = 0, nb = 0;
5a1d858b 4615 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
bfeabdc3 4616
5a1d858b 4617 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
bfeabdc3
JD
4618 if (x->toolbar_in_hbox)
4619 {
4620 int pos;
4621 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
5a1d858b 4622 top_widget,
bfeabdc3
JD
4623 "position", &pos, NULL);
4624 if (pos == 0) nl = req.width;
4625 else nr = req.width;
4626 }
4627 else
4628 {
4629 int pos;
4630 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
5a1d858b 4631 top_widget,
bfeabdc3
JD
4632 "position", &pos, NULL);
4633 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4634 else nb = req.height;
4635 }
088c8c09 4636
bfeabdc3
JD
4637 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4638 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4639 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4640 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4641 {
4642 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4643 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4644 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4645 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4646 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4647 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4648 return 1;
4649 }
4650
4651 return 0;
4652}
4653
f904c0f9 4654
71bacd48
JD
4655/* Update the tool bar for frame F. Add new buttons and remove old. */
4656
f392e843 4657void
971de7fb 4658update_frame_tool_bar (FRAME_PTR f)
f392e843 4659{
3afff00e 4660 int i, j;
f392e843 4661 struct x_output *x = f->output_data.x;
bfc2a7d1 4662 int hmargin = 0, vmargin = 0;
98a92193 4663 GtkToolbar *wtoolbar;
6e1440e6 4664 GtkToolItem *ti;
98a92193 4665 GtkTextDirection dir;
3afff00e 4666 Lisp_Object style;
18e27ea8 4667 bool text_image, horiz;
ca06f160 4668 struct xg_frame_tb_info *tbinfo;
3afff00e 4669
f392e843
JD
4670 if (! FRAME_GTK_WIDGET (f))
4671 return;
4672
4d7e6e51 4673 block_input ();
177c0ea7 4674
d311d28c 4675 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
133c0116
JD
4676 {
4677 hmargin = XFASTINT (Vtool_bar_button_margin);
4678 vmargin = XFASTINT (Vtool_bar_button_margin);
4679 }
4680 else if (CONSP (Vtool_bar_button_margin))
4681 {
d311d28c 4682 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
133c0116
JD
4683 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4684
d311d28c 4685 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
133c0116
JD
4686 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4687 }
4688
4689 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4690 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4691 i.e. zero. This means that margins less than
4692 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4693 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4694 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
c43923ad 4695
f392e843
JD
4696 if (! x->toolbar_widget)
4697 xg_create_tool_bar (f);
4698
98a92193 4699 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
f904c0f9 4700 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
088c8c09 4701
3afff00e 4702 style = Ftool_bar_get_system_style ();
ca06f160
JD
4703
4704 /* Are we up to date? */
4705 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4706 TB_INFO_KEY);
4707
4708 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4709 && tbinfo->n_last_items == f->n_tool_bar_items
4710 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4711 && tbinfo->dir == dir
67b77c0b
AS
4712 && ! NILP (Fequal (tbinfo->style, style))
4713 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
ca06f160 4714 {
4d7e6e51 4715 unblock_input ();
ca06f160
JD
4716 return;
4717 }
4718
4719 tbinfo->last_tool_bar = f->tool_bar_items;
4720 tbinfo->n_last_items = f->n_tool_bar_items;
4721 tbinfo->style = style;
4722 tbinfo->hmargin = hmargin;
4723 tbinfo->vmargin = vmargin;
4724 tbinfo->dir = dir;
4725
3afff00e
CY
4726 text_image = EQ (style, Qtext_image_horiz);
4727 horiz = EQ (style, Qboth_horiz) || text_image;
4728
4729 for (i = j = 0; i < f->n_tool_bar_items; ++i)
f392e843 4730 {
18e27ea8
PE
4731 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4732 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
f392e843 4733 int idx;
13464394 4734 ptrdiff_t img_id;
98a92193
JD
4735 int icon_size = 0;
4736 struct image *img = NULL;
f392e843 4737 Lisp_Object image;
495effe5 4738 Lisp_Object stock = Qnil;
98a92193
JD
4739 GtkStockItem stock_item;
4740 char *stock_name = NULL;
2154c964 4741 char *icon_name = NULL;
98a92193 4742 Lisp_Object rtl;
b42ff099 4743 GtkWidget *wbutton = NULL;
d4ad8c04 4744 Lisp_Object specified_file;
18e27ea8 4745 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
3afff00e
CY
4746 const char *label
4747 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4748 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4749 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4750 : "";
d2bd5189 4751
3afff00e 4752 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
6e1440e6 4753
4039c786
CY
4754 /* If this is a separator, use a gtk separator item. */
4755 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4756 {
4757 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4758 {
4759 if (ti)
4760 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4761 GTK_WIDGET (ti));
4762 ti = gtk_separator_tool_item_new ();
3afff00e 4763 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4039c786 4764 }
3afff00e 4765 j++;
4039c786
CY
4766 continue;
4767 }
4768
4769 /* Otherwise, the tool-bar item is an ordinary button. */
4770
4771 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4772 {
4773 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4774 ti = NULL;
4775 }
f904c0f9 4776
3afff00e 4777 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
f392e843
JD
4778
4779 /* Ignore invalid image specifications. */
4039c786 4780 image = PROP (TOOL_BAR_ITEM_IMAGES);
f392e843
JD
4781 if (!valid_image_p (image))
4782 {
3afff00e
CY
4783 if (ti)
4784 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4785 GTK_WIDGET (ti));
f392e843
JD
4786 continue;
4787 }
4788
d4ad8c04 4789 specified_file = file_for_image (image);
4e6b227d
CY
4790 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4791 stock = call1 (Qx_gtk_map_stock, specified_file);
f392e843 4792
4e6b227d 4793 if (STRINGP (stock))
98a92193
JD
4794 {
4795 stock_name = SSDATA (stock);
2154c964
JD
4796 if (stock_name[0] == 'n' && stock_name[1] == ':')
4797 {
4798 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4799 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
4800
4801 icon_name = stock_name + 2;
4802 stock_name = NULL;
4803 stock = Qnil;
4804
4805 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
4806 icon_name = NULL;
4807 else
4808 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4809 }
4810 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
f904c0f9 4811 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
8e5a8840 4812 else
2154c964
JD
4813 {
4814 stock = Qnil;
4815 stock_name = NULL;
4816 }
98a92193 4817 }
2154c964
JD
4818
4819 if (stock_name == NULL && icon_name == NULL)
1d1885fc 4820 {
3afff00e
CY
4821 /* No stock image, or stock item not known. Try regular
4822 image. If image is a vector, choose it according to the
98a92193
JD
4823 button state. */
4824 if (dir == GTK_TEXT_DIR_RTL
4825 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4826 && STRINGP (rtl))
3afff00e 4827 image = find_rtl_image (f, image, rtl);
98a92193
JD
4828
4829 if (VECTORP (image))
4830 {
4831 if (enabled_p)
4832 idx = (selected_p
4833 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4834 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4835 else
4836 idx = (selected_p
4837 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4838 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4839
a54e2c05 4840 eassert (ASIZE (image) >= idx);
98a92193
JD
4841 image = AREF (image, idx);
4842 }
4843 else
4844 idx = -1;
4845
4846 img_id = lookup_image (f, image);
4847 img = IMAGE_FROM_ID (f, img_id);
4848 prepare_image_for_display (f, img);
8e5a8840 4849
98a92193
JD
4850 if (img->load_failed_p || img->pixmap == None)
4851 {
f904c0f9 4852 if (ti)
3afff00e
CY
4853 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4854 GTK_WIDGET (ti));
f904c0f9 4855 continue;
6e1440e6 4856 }
1d1885fc 4857 }
177c0ea7 4858
3afff00e
CY
4859 /* If there is an existing widget, check if it's stale; if so,
4860 remove it and make a new tool item from scratch. */
4861 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4862 img, label, horiz))
4863 {
4864 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4865 GTK_WIDGET (ti));
4866 ti = NULL;
4867 }
4868
6e1440e6 4869 if (ti == NULL)
ff24abfe 4870 {
98a92193 4871 GtkWidget *w;
3afff00e
CY
4872
4873 /* Save the image so we can see if an update is needed the
4874 next time we call xg_tool_item_match_p. */
4875 if (EQ (style, Qtext))
4876 w = NULL;
4877 else if (stock_name)
98a92193
JD
4878 {
4879 w = gtk_image_new_from_stock (stock_name, icon_size);
4880 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4881 (gpointer) xstrdup (stock_name),
4882 (GDestroyNotify) xfree);
4883 }
8e5a8840 4884 else if (icon_name)
2154c964
JD
4885 {
4886 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4887 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4888 (gpointer) xstrdup (icon_name),
4889 (GDestroyNotify) xfree);
4890 }
98a92193
JD
4891 else
4892 {
4893 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
98a92193
JD
4894 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4895 (gpointer)img->pixmap);
4896 }
4897
3afff00e
CY
4898 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4899 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4900 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
f904c0f9 4901 }
177c0ea7 4902
f392e843 4903#undef PROP
3afff00e
CY
4904
4905 gtk_widget_set_sensitive (wbutton, enabled_p);
4906 j++;
f392e843
JD
4907 }
4908
3afff00e 4909 /* Remove buttons not longer needed. */
6e1440e6 4910 do
f392e843 4911 {
21a76236 4912 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
3afff00e
CY
4913 if (ti)
4914 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
6e1440e6 4915 } while (ti != NULL);
f392e843 4916
bfeabdc3 4917 if (f->n_tool_bar_items != 0)
f392e843 4918 {
5a1d858b 4919 if (! x->toolbar_is_packed)
e69b0960 4920 xg_pack_tool_bar (f, f->tool_bar_position);
5a1d858b 4921 gtk_widget_show_all (TOOLBAR_TOP_WIDGET (x));
bfeabdc3
JD
4922 if (xg_update_tool_bar_sizes (f))
4923 xg_height_or_width_changed (f);
f392e843 4924 }
bfeabdc3 4925
4d7e6e51 4926 unblock_input ();
f392e843
JD
4927}
4928
71bacd48
JD
4929/* Deallocate all resources for the tool bar on frame F.
4930 Remove the tool bar. */
4931
f392e843 4932void
971de7fb 4933free_frame_tool_bar (FRAME_PTR f)
f392e843
JD
4934{
4935 struct x_output *x = f->output_data.x;
4936
4937 if (x->toolbar_widget)
4938 {
ca06f160 4939 struct xg_frame_tb_info *tbinfo;
5a1d858b
JD
4940 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4941
4d7e6e51 4942 block_input ();
d3b2a6da
JD
4943 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4944 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
5a1d858b 4945 if (x->toolbar_is_packed)
bfeabdc3
JD
4946 {
4947 if (x->toolbar_in_hbox)
4948 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5a1d858b 4949 top_widget);
bfeabdc3
JD
4950 else
4951 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5a1d858b 4952 top_widget);
bfeabdc3 4953 }
d3b2a6da
JD
4954 else
4955 gtk_widget_destroy (x->toolbar_widget);
4956
f392e843 4957 x->toolbar_widget = 0;
5a1d858b
JD
4958 TOOLBAR_TOP_WIDGET (x) = 0;
4959 x->toolbar_is_packed = false;
bfeabdc3
JD
4960 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4961 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
4962
ca06f160
JD
4963 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4964 TB_INFO_KEY);
4965 if (tbinfo)
4966 {
4967 xfree (tbinfo);
4968 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4969 TB_INFO_KEY,
4970 NULL);
4971 }
4972
bfeabdc3 4973 xg_height_or_width_changed (f);
f392e843 4974
4d7e6e51 4975 unblock_input ();
f392e843
JD
4976 }
4977}
4978
18e27ea8 4979void
bfeabdc3
JD
4980xg_change_toolbar_position (FRAME_PTR f, Lisp_Object pos)
4981{
4982 struct x_output *x = f->output_data.x;
5a1d858b 4983 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
bfeabdc3 4984
5a1d858b 4985 if (! x->toolbar_widget || ! top_widget)
18e27ea8 4986 return;
bfeabdc3 4987
4d7e6e51 4988 block_input ();
5a1d858b
JD
4989 g_object_ref (top_widget);
4990 if (x->toolbar_is_packed)
4991 {
4992 if (x->toolbar_in_hbox)
4993 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4994 top_widget);
4995 else
4996 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4997 top_widget);
4998 }
4999
bfeabdc3 5000 xg_pack_tool_bar (f, pos);
5a1d858b 5001 g_object_unref (top_widget);
bfeabdc3
JD
5002 if (xg_update_tool_bar_sizes (f))
5003 xg_height_or_width_changed (f);
5004
4d7e6e51 5005 unblock_input ();
bfeabdc3
JD
5006}
5007
f392e843
JD
5008
5009\f
5010/***********************************************************************
5011 Initializing
f904c0f9 5012***********************************************************************/
f392e843 5013void
971de7fb 5014xg_initialize (void)
f392e843 5015{
9f6fcdc5 5016 GtkBindingSet *binding_set;
383b7c95 5017 GtkSettings *settings;
9f6fcdc5 5018
430e6c77
JD
5019#if HAVE_XFT
5020 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5021 we keep it permanently linked in. */
5022 XftInit (0);
5023#endif
879ffad9
JD
5024
5025 gdpy_def = NULL;
f392e843 5026 xg_ignore_gtk_scrollbar = 0;
8b745d92 5027#ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
da18b5ac 5028 xg_detached_menus = 0;
8b745d92 5029#endif
f392e843
JD
5030 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5031 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5032
81e302ef
JD
5033 id_to_widget.max_size = id_to_widget.used = 0;
5034 id_to_widget.widgets = 0;
5035
383b7c95
JD
5036 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5037 (gdk_display_get_default ()));
f392e843
JD
5038 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5039 bindings. It doesn't seem to be any way to remove properties,
5040 so we set it to VoidSymbol which in X means "no key". */
383b7c95 5041 gtk_settings_set_string_property (settings,
f392e843
JD
5042 "gtk-menu-bar-accel",
5043 "VoidSymbol",
5044 EMACS_CLASS);
81e302ef
JD
5045
5046 /* Make GTK text input widgets use Emacs style keybindings. This is
5047 Emacs after all. */
383b7c95 5048 gtk_settings_set_string_property (settings,
81e302ef
JD
5049 "gtk-key-theme-name",
5050 "Emacs",
5051 EMACS_CLASS);
9f6fcdc5
JD
5052
5053 /* Make dialogs close on C-g. Since file dialog inherits from
5054 dialog, this works for them also. */
dc2933eb 5055 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
0afb4571 5056 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
9f6fcdc5
JD
5057 "close", 0);
5058
5059 /* Make menus close on C-g. */
dc2933eb
JD
5060 binding_set = gtk_binding_set_by_class (g_type_class_ref
5061 (GTK_TYPE_MENU_SHELL));
0afb4571 5062 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
9f6fcdc5 5063 "cancel", 0);
c195f2de 5064 update_theme_scrollbar_width ();
f2045622 5065
48660ca5 5066#ifdef HAVE_FREETYPE
f2045622 5067 x_last_font_name = NULL;
48660ca5 5068#endif
f392e843
JD
5069}
5070
5071#endif /* USE_GTK */