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