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