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