Spelling fixes.
[bpt/emacs.git] / src / gtkutil.c
CommitLineData
f392e843 1/* Functions for creating and updating GTK widgets.
95df8112
GM
2
3Copyright (C) 2003-2011 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
130 multipe 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.
351 Otherwise the highlightning and dimming the tool bar code in GTK does
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;
f392e843 1093 GtkRcStyle *style;
f392e843 1094 char *title = 0;
177c0ea7 1095
f392e843
JD
1096 BLOCK_INPUT;
1097
0f0d223b
JD
1098 if (FRAME_X_EMBEDDED_P (f))
1099 wtop = gtk_plug_new (f->output_data.x->parent_desc);
1100 else
1101 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1102
810f2256
JD
1103 xg_set_screen (wtop, f);
1104
f392e843 1105 wvbox = gtk_vbox_new (FALSE, 0);
bfeabdc3 1106 whbox = gtk_hbox_new (FALSE, 0);
c195f2de
JD
1107
1108#ifdef HAVE_GTK3
c7e73be5 1109 wfixed = emacs_fixed_new (f);
c195f2de
JD
1110#else
1111 wfixed = gtk_fixed_new ();
1112#endif
177c0ea7 1113
bfeabdc3 1114 if (! wtop || ! wvbox || ! whbox || ! wfixed)
f392e843
JD
1115 {
1116 if (wtop) gtk_widget_destroy (wtop);
1117 if (wvbox) gtk_widget_destroy (wvbox);
bfeabdc3 1118 if (whbox) gtk_widget_destroy (whbox);
f392e843
JD
1119 if (wfixed) gtk_widget_destroy (wfixed);
1120
c43923ad 1121 UNBLOCK_INPUT;
f392e843
JD
1122 return 0;
1123 }
1124
1125 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1126 gtk_widget_set_name (wtop, EMACS_CLASS);
1127 gtk_widget_set_name (wvbox, "pane");
93c579e0 1128 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
f392e843
JD
1129
1130 /* If this frame has a title or name, set it in the title bar. */
93c579e0
JD
1131 if (! NILP (f->title)) title = SSDATA (ENCODE_UTF_8 (f->title));
1132 else if (! NILP (f->name)) title = SSDATA (ENCODE_UTF_8 (f->name));
f392e843
JD
1133
1134 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
177c0ea7 1135
f392e843
JD
1136 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1137 FRAME_GTK_WIDGET (f) = wfixed;
1138 f->output_data.x->vbox_widget = wvbox;
bfeabdc3 1139 f->output_data.x->hbox_widget = whbox;
f392e843 1140
e547b051 1141 gtk_widget_set_has_window (wfixed, TRUE);
f392e843 1142
f392e843 1143 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
bfeabdc3
JD
1144 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1145 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
f392e843
JD
1146
1147 if (FRAME_EXTERNAL_TOOL_BAR (f))
1148 update_frame_tool_bar (f);
1149
7863d625
JD
1150 /* We don't want this widget double buffered, because we draw on it
1151 with regular X drawing primitives, so from a GTK/GDK point of
1152 view, the widget is totally blank. When an expose comes, this
1153 will make the widget blank, and then Emacs redraws it. This flickers
1154 a lot, so we turn off double buffering. */
f392e843 1155 gtk_widget_set_double_buffered (wfixed, FALSE);
7863d625 1156
f392e843 1157 gtk_window_set_wmclass (GTK_WINDOW (wtop),
93c579e0
JD
1158 SSDATA (Vx_resource_name),
1159 SSDATA (Vx_resource_class));
f392e843
JD
1160
1161 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1162 GTK is to destroy the widget. We want Emacs to do that instead. */
1163 g_signal_connect (G_OBJECT (wtop), "delete-event",
0afb4571 1164 G_CALLBACK (delete_cb), f);
177c0ea7 1165
f392e843
JD
1166 /* Convert our geometry parameters into a geometry string
1167 and specify it.
1168 GTK will itself handle calculating the real position this way. */
1169 xg_set_geometry (f);
32e737d7
JD
1170 f->win_gravity
1171 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
f392e843
JD
1172
1173 gtk_widget_add_events (wfixed,
1174 GDK_POINTER_MOTION_MASK
1175 | GDK_EXPOSURE_MASK
1176 | GDK_BUTTON_PRESS_MASK
1177 | GDK_BUTTON_RELEASE_MASK
1178 | GDK_KEY_PRESS_MASK
1179 | GDK_ENTER_NOTIFY_MASK
1180 | GDK_LEAVE_NOTIFY_MASK
1181 | GDK_FOCUS_CHANGE_MASK
1182 | GDK_STRUCTURE_MASK
1183 | GDK_VISIBILITY_NOTIFY_MASK);
1184
1185 /* Must realize the windows so the X window gets created. It is used
1186 by callers of this function. */
1187 gtk_widget_realize (wfixed);
1188 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1189
1190 /* Since GTK clears its window by filling with the background color,
1191 we must keep X and GTK background in sync. */
0afb4571 1192 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
f392e843 1193
0afb4571 1194#ifndef HAVE_GTK3
f392e843
JD
1195 /* Also, do not let any background pixmap to be set, this looks very
1196 bad as Emacs overwrites the background pixmap with its own idea
1197 of background color. */
1198 style = gtk_widget_get_modifier_style (wfixed);
1199
1200 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1201 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1202 gtk_widget_modify_style (wfixed, style);
0afb4571
J
1203#else
1204 gtk_widget_set_can_focus (wfixed, TRUE);
c195f2de 1205 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
0afb4571 1206#endif
177c0ea7 1207
ac01763e 1208#ifdef USE_GTK_TOOLTIP
aa1859f5
J
1209 /* Steal a tool tip window we can move ourselves. */
1210 f->output_data.x->ttip_widget = 0;
1211 f->output_data.x->ttip_lbl = 0;
1212 f->output_data.x->ttip_window = 0;
088c8c09 1213 gtk_widget_set_tooltip_text (wtop, "Dummy text");
aa1859f5 1214 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
ac01763e 1215#endif
f392e843 1216
3a46642b
J
1217 {
1218 GdkScreen *screen = gtk_widget_get_screen (wtop);
1219 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1220 /* Only connect this signal once per screen. */
1221 if (! g_signal_handler_find (G_OBJECT (gs),
1222 G_SIGNAL_MATCH_FUNC,
1223 0, 0, 0,
1224 G_CALLBACK (style_changed_cb),
1225 0))
1226 {
1227 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1228 G_CALLBACK (style_changed_cb),
1229 gdk_screen_get_display (screen));
1230 }
1231 }
1232
f392e843
JD
1233 UNBLOCK_INPUT;
1234
1235 return 1;
1236}
1237
aa1859f5
J
1238void
1239xg_free_frame_widgets (FRAME_PTR f)
1240{
1241 if (FRAME_GTK_OUTER_WIDGET (f))
1242 {
b0afc268 1243#ifdef USE_GTK_TOOLTIP
aa1859f5 1244 struct x_output *x = f->output_data.x;
b0afc268 1245#endif
aa1859f5
J
1246 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1247 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1248 FRAME_GTK_OUTER_WIDGET (f) = 0;
ac01763e 1249#ifdef USE_GTK_TOOLTIP
aa1859f5
J
1250 if (x->ttip_lbl)
1251 gtk_widget_destroy (x->ttip_lbl);
1252 if (x->ttip_widget)
1253 g_object_unref (G_OBJECT (x->ttip_widget));
ac01763e 1254#endif
aa1859f5
J
1255 }
1256}
1257
f392e843
JD
1258/* Set the normal size hints for the window manager, for frame F.
1259 FLAGS is the flags word to use--or 0 meaning preserve the flags
1260 that the window now has.
1261 If USER_POSITION is nonzero, we set the User Position
1262 flag (this is useful when FLAGS is 0). */
71bacd48 1263
f392e843 1264void
971de7fb 1265x_wm_set_size_hint (FRAME_PTR f, long int flags, int user_position)
f392e843 1266{
3e5fc571
CY
1267 /* Must use GTK routines here, otherwise GTK resets the size hints
1268 to its own defaults. */
1269 GdkGeometry size_hints;
1270 gint hint_flags = 0;
1271 int base_width, base_height;
1272 int min_rows = 0, min_cols = 0;
1273 int win_gravity = f->win_gravity;
1274
32e737d7
JD
1275 /* Don't set size hints during initialization; that apparently leads
1276 to a race condition. See the thread at
1277 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1278 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1279 return;
1280
3e5fc571
CY
1281 if (flags)
1282 {
1283 memset (&size_hints, 0, sizeof (size_hints));
1284 f->output_data.x->size_hints = size_hints;
1285 f->output_data.x->hint_flags = hint_flags;
1286 }
1287 else
1288 flags = f->size_hint_flags;
1289
1290 size_hints = f->output_data.x->size_hints;
1291 hint_flags = f->output_data.x->hint_flags;
1292
1293 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1294 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
1295 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
1296
1297 hint_flags |= GDK_HINT_BASE_SIZE;
bfeabdc3 1298 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0) + FRAME_TOOLBAR_WIDTH (f);
3e5fc571
CY
1299 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0)
1300 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1301
1302 check_frame_size (f, &min_rows, &min_cols);
1303
1304 size_hints.base_width = base_width;
1305 size_hints.base_height = base_height;
1306 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
1307 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
1308
1309 /* These currently have a one to one mapping with the X values, but I
1310 don't think we should rely on that. */
1311 hint_flags |= GDK_HINT_WIN_GRAVITY;
1312 size_hints.win_gravity = 0;
1313 if (win_gravity == NorthWestGravity)
1314 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1315 else if (win_gravity == NorthGravity)
1316 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1317 else if (win_gravity == NorthEastGravity)
1318 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1319 else if (win_gravity == WestGravity)
1320 size_hints.win_gravity = GDK_GRAVITY_WEST;
1321 else if (win_gravity == CenterGravity)
1322 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1323 else if (win_gravity == EastGravity)
1324 size_hints.win_gravity = GDK_GRAVITY_EAST;
1325 else if (win_gravity == SouthWestGravity)
1326 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1327 else if (win_gravity == SouthGravity)
1328 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1329 else if (win_gravity == SouthEastGravity)
1330 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1331 else if (win_gravity == StaticGravity)
1332 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1333
22aa44a8
JD
1334 if (user_position)
1335 {
1336 hint_flags &= ~GDK_HINT_POS;
1337 hint_flags |= GDK_HINT_USER_POS;
1338 }
1339
3e5fc571
CY
1340 if (hint_flags != f->output_data.x->hint_flags
1341 || memcmp (&size_hints,
1342 &f->output_data.x->size_hints,
1343 sizeof (size_hints)) != 0)
1344 {
1345 BLOCK_INPUT;
1346 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
c7e73be5 1347 NULL, &size_hints, hint_flags);
3e5fc571
CY
1348 f->output_data.x->size_hints = size_hints;
1349 f->output_data.x->hint_flags = hint_flags;
1350 UNBLOCK_INPUT;
1351 }
f392e843
JD
1352}
1353
1354/* Change background color of a frame.
6772c8e1 1355 Since GTK uses the background color to clear the window, we must
f392e843
JD
1356 keep the GTK and X colors in sync.
1357 F is the frame to change,
1358 BG is the pixel value to change to. */
71bacd48 1359
f392e843 1360void
971de7fb 1361xg_set_background_color (FRAME_PTR f, long unsigned int bg)
f392e843
JD
1362{
1363 if (FRAME_GTK_WIDGET (f))
1364 {
f392e843 1365 BLOCK_INPUT;
0afb4571 1366 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
f392e843
JD
1367 UNBLOCK_INPUT;
1368 }
1369}
1370
1371
1001243b
JD
1372/* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1373 functions so GTK does not overwrite the icon. */
1374
1375void
971de7fb 1376xg_set_frame_icon (FRAME_PTR f, Pixmap icon_pixmap, Pixmap icon_mask)
1001243b 1377{
0afb4571
J
1378 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1379 icon_pixmap,
1380 icon_mask);
1381 if (gp)
1001243b
JD
1382 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1383}
1384
1385
f392e843
JD
1386\f
1387/***********************************************************************
1388 Dialog functions
1389 ***********************************************************************/
1390/* Return the dialog title to use for a dialog of type KEY.
1391 This is the encoding used by lwlib. We use the same for GTK. */
71bacd48 1392
8ea90aa3 1393static const char *
f392e843
JD
1394get_dialog_title (char key)
1395{
8ea90aa3 1396 const char *title = "";
177c0ea7 1397
f392e843
JD
1398 switch (key) {
1399 case 'E': case 'e':
1400 title = "Error";
1401 break;
1402
1403 case 'I': case 'i':
1404 title = "Information";
1405 break;
1406
1407 case 'L': case 'l':
1408 title = "Prompt";
1409 break;
1410
1411 case 'P': case 'p':
1412 title = "Prompt";
1413 break;
1414
1415 case 'Q': case 'q':
1416 title = "Question";
1417 break;
1418 }
1419
1420 return title;
1421}
1422
1423/* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1424 the dialog, but return TRUE so the event does not propagate further
1425 in GTK. This prevents GTK from destroying the dialog widget automatically
4c36be58 1426 and we can always destroy the widget manually, regardless of how
f392e843
JD
1427 it was popped down (button press or WM_DELETE_WINDOW).
1428 W is the dialog widget.
1429 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1430 user_data is NULL (not used).
1431
1432 Returns TRUE to end propagation of event. */
71bacd48 1433
f392e843 1434static gboolean
971de7fb 1435dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
f392e843
JD
1436{
1437 gtk_widget_unmap (w);
1438 return TRUE;
1439}
1440
1441/* Create a popup dialog window. See also xg_create_widget below.
1442 WV is a widget_value describing the dialog.
1443 SELECT_CB is the callback to use when a button has been pressed.
1444 DEACTIVATE_CB is the callback to use when the dialog pops down.
1445
1446 Returns the GTK dialog widget. */
71bacd48 1447
f392e843 1448static GtkWidget *
e4c8d29a
J
1449create_dialog (widget_value *wv,
1450 GCallback select_cb,
1451 GCallback deactivate_cb)
f392e843 1452{
8ea90aa3 1453 const char *title = get_dialog_title (wv->name[0]);
f392e843
JD
1454 int total_buttons = wv->name[1] - '0';
1455 int right_buttons = wv->name[4] - '0';
1456 int left_buttons;
1457 int button_nr = 0;
1458 int button_spacing = 10;
1459 GtkWidget *wdialog = gtk_dialog_new ();
e547b051
J
1460 GtkDialog *wd = GTK_DIALOG (wdialog);
1461 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
f392e843 1462 widget_value *item;
f392e843
JD
1463 GtkWidget *whbox_down;
1464
1465 /* If the number of buttons is greater than 4, make two rows of buttons
1466 instead. This looks better. */
1467 int make_two_rows = total_buttons > 4;
1468
1469 if (right_buttons == 0) right_buttons = total_buttons/2;
1470 left_buttons = total_buttons - right_buttons;
1471
1472 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1473 gtk_widget_set_name (wdialog, "emacs-dialog");
1474
f392e843
JD
1475
1476 if (make_two_rows)
1477 {
65dc836c
PE
1478 GtkWidget *wvbox = gtk_vbox_new (TRUE, button_spacing);
1479 GtkWidget *whbox_up = gtk_hbox_new (FALSE, 0);
f392e843
JD
1480 whbox_down = gtk_hbox_new (FALSE, 0);
1481
1482 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1483 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1484 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1485
1486 cur_box = GTK_BOX (whbox_up);
1487 }
1488
1489 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1490 G_CALLBACK (dialog_delete_callback), 0);
177c0ea7 1491
f392e843
JD
1492 if (deactivate_cb)
1493 {
1494 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1495 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1496 }
1497
1498 for (item = wv->contents; item; item = item->next)
1499 {
1500 char *utf8_label = get_utf8_string (item->value);
1501 GtkWidget *w;
1502 GtkRequisition req;
1503
0a1d6de0 1504 if (item->name && strcmp (item->name, "message") == 0)
f392e843 1505 {
e547b051 1506 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
f392e843
JD
1507 /* This is the text part of the dialog. */
1508 w = gtk_label_new (utf8_label);
e547b051
J
1509 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1510 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
f392e843
JD
1511 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1512
1513 /* Try to make dialog look better. Must realize first so
1514 the widget can calculate the size it needs. */
1515 gtk_widget_realize (w);
0afb4571 1516 gtk_widget_get_preferred_size (w, NULL, &req);
e547b051 1517 gtk_box_set_spacing (wvbox, req.height);
0a1d6de0 1518 if (item->value && strlen (item->value) > 0)
f392e843
JD
1519 button_spacing = 2*req.width/strlen (item->value);
1520 }
1521 else
1522 {
1523 /* This is one button to add to the dialog. */
4b1b4443 1524 w = gtk_button_new_with_label (utf8_label);
f392e843
JD
1525 if (! item->enabled)
1526 gtk_widget_set_sensitive (w, FALSE);
1527 if (select_cb)
1528 g_signal_connect (G_OBJECT (w), "clicked",
1529 select_cb, item->call_data);
1530
1531 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1532 if (++button_nr == left_buttons)
1533 {
1534 if (make_two_rows)
1535 cur_box = GTK_BOX (whbox_down);
1536 else
1537 gtk_box_pack_start (cur_box,
1538 gtk_label_new (""),
1539 TRUE, TRUE,
1540 button_spacing);
1541 }
1542 }
1543
42ca4633 1544 if (utf8_label)
f392e843
JD
1545 g_free (utf8_label);
1546 }
1547
1548 return wdialog;
1549}
1550
e90292a9 1551struct xg_dialog_data
90f2e16b 1552{
e90292a9
JD
1553 GMainLoop *loop;
1554 int response;
1555 GtkWidget *w;
1556 guint timerid;
1557};
90f2e16b 1558
3402c0a6 1559/* Function that is called when the file or font dialogs pop down.
457a8155 1560 W is the dialog widget, RESPONSE is the response code.
e90292a9 1561 USER_DATA is what we passed in to g_signal_connect. */
457a8155
JD
1562
1563static void
dd4c5104
DN
1564xg_dialog_response_cb (GtkDialog *w,
1565 gint response,
1566 gpointer user_data)
457a8155 1567{
e90292a9
JD
1568 struct xg_dialog_data *dd = (struct xg_dialog_data *)user_data;
1569 dd->response = response;
1570 g_main_loop_quit (dd->loop);
457a8155
JD
1571}
1572
1573
1574/* Destroy the dialog. This makes it pop down. */
1575
1576static Lisp_Object
971de7fb 1577pop_down_dialog (Lisp_Object arg)
457a8155
JD
1578{
1579 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
e90292a9
JD
1580 struct xg_dialog_data *dd = (struct xg_dialog_data *) p->pointer;
1581
cd2531db 1582 BLOCK_INPUT;
e90292a9
JD
1583 if (dd->w) gtk_widget_destroy (dd->w);
1584 if (dd->timerid != 0) g_source_remove (dd->timerid);
1585
1586 g_main_loop_quit (dd->loop);
1587 g_main_loop_unref (dd->loop);
088c8c09 1588
cd2531db 1589 UNBLOCK_INPUT;
e90292a9 1590
457a8155
JD
1591 return Qnil;
1592}
1593
e90292a9
JD
1594/* If there are any emacs timers pending, add a timeout to main loop in DATA.
1595 We pass in DATA as gpointer* so we can use this as a callback. */
1596
1597static gboolean
971de7fb 1598xg_maybe_add_timer (gpointer data)
e90292a9
JD
1599{
1600 struct xg_dialog_data *dd = (struct xg_dialog_data *) data;
f868cd8a 1601 EMACS_TIME next_time = timer_check ();
e90292a9
JD
1602 long secs = EMACS_SECS (next_time);
1603 long usecs = EMACS_USECS (next_time);
1604
1605 dd->timerid = 0;
1606
1607 if (secs >= 0 && usecs >= 0 && secs < ((guint)-1)/1000)
1608 {
1609 dd->timerid = g_timeout_add (secs * 1000 + usecs/1000,
1610 xg_maybe_add_timer,
1611 dd);
1612 }
1613 return FALSE;
1614}
1615
088c8c09 1616
e90292a9
JD
1617/* Pops up a modal dialog W and waits for response.
1618 We don't use gtk_dialog_run because we want to process emacs timers.
1619 The dialog W is not destroyed when this function returns. */
1620
1621static int
971de7fb 1622xg_dialog_run (FRAME_PTR f, GtkWidget *w)
e90292a9
JD
1623{
1624 int count = SPECPDL_INDEX ();
1625 struct xg_dialog_data dd;
1626
1627 xg_set_screen (w, f);
1628 gtk_window_set_transient_for (GTK_WINDOW (w),
1629 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1630 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1631 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1632
1633 dd.loop = g_main_loop_new (NULL, FALSE);
1634 dd.response = GTK_RESPONSE_CANCEL;
1635 dd.w = w;
1636 dd.timerid = 0;
1637
1638 g_signal_connect (G_OBJECT (w),
1639 "response",
1640 G_CALLBACK (xg_dialog_response_cb),
1641 &dd);
1642 /* Don't destroy the widget if closed by the window manager close button. */
1643 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1644 gtk_widget_show (w);
1645
1646 record_unwind_protect (pop_down_dialog, make_save_value (&dd, 0));
1647
1648 (void) xg_maybe_add_timer (&dd);
1649 g_main_loop_run (dd.loop);
088c8c09 1650
e90292a9
JD
1651 dd.w = 0;
1652 unbind_to (count, Qnil);
1653
1654 return dd.response;
1655}
1656
1657\f
1658/***********************************************************************
1659 File dialog functions
1660 ***********************************************************************/
1661/* Return non-zero if the old file selection dialog is being used.
1662 Return zero if not. */
1663
1664int
971de7fb 1665xg_uses_old_file_dialog (void)
e90292a9 1666{
e547b051 1667#ifdef HAVE_GTK_FILE_SELECTION_NEW
e90292a9 1668 return x_gtk_use_old_file_dialog;
e90292a9
JD
1669#else
1670 return 0;
1671#endif
e90292a9
JD
1672}
1673
1674
f57e2426 1675typedef char * (*xg_get_file_func) (GtkWidget *);
f9d64bb3 1676
457a8155
JD
1677/* Return the selected file for file chooser dialog W.
1678 The returned string must be free:d. */
1679
1680static char *
971de7fb 1681xg_get_file_name_from_chooser (GtkWidget *w)
457a8155
JD
1682{
1683 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1684}
1685
4c9ca1a3
JD
1686/* Callback called when the "Show hidden files" toggle is pressed.
1687 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1688
78c55a80 1689static void
971de7fb 1690xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
78c55a80
JD
1691{
1692 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1693 gboolean visible;
78c55a80
JD
1694 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1695 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
4c9ca1a3
JD
1696}
1697
1698
1699/* Callback called when a property changes in a file chooser.
1700 GOBJECT is the file chooser dialog, ARG1 describes the property.
1701 USER_DATA is the toggle widget in the file chooser dialog.
1702 We use this to update the "Show hidden files" toggle when the user
1703 changes that property by right clicking in the file list. */
1704
1705static void
971de7fb 1706xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
4c9ca1a3 1707{
4c9ca1a3
JD
1708 if (strcmp (arg1->name, "show-hidden") == 0)
1709 {
4c9ca1a3
JD
1710 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1711 gboolean visible, toggle_on;
1712
1713 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1714 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1715
1716 if (!!visible != !!toggle_on)
1717 {
1718 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1719 G_CALLBACK (xg_toggle_visibility_cb),
1720 gobject);
1721 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1722 g_signal_handlers_unblock_by_func
1723 (G_OBJECT (wtoggle),
1724 G_CALLBACK (xg_toggle_visibility_cb),
1725 gobject);
1726 }
1727 x_gtk_show_hidden_files = visible;
1728 }
78c55a80
JD
1729}
1730
f9d64bb3
JD
1731/* Read a file name from the user using a file chooser dialog.
1732 F is the current frame.
1733 PROMPT is a prompt to show to the user. May not be NULL.
1734 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1735 If MUSTMATCH_P is non-zero, the returned file name must be an existing
457a8155
JD
1736 file. *FUNC is set to a function that can be used to retrieve the
1737 selected file name from the returned widget.
f9d64bb3 1738
457a8155 1739 Returns the created widget. */
f9d64bb3 1740
457a8155 1741static GtkWidget *
dd4c5104
DN
1742xg_get_file_with_chooser (FRAME_PTR f,
1743 char *prompt,
1744 char *default_filename,
1745 int mustmatch_p, int only_dir_p,
1746 xg_get_file_func *func)
f9d64bb3 1747{
65dc836c 1748 char msgbuf[1024];
78c55a80 1749
a60e5f68 1750 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
f9d64bb3 1751 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
f9d64bb3
JD
1752 GtkFileChooserAction action = (mustmatch_p ?
1753 GTK_FILE_CHOOSER_ACTION_OPEN :
1754 GTK_FILE_CHOOSER_ACTION_SAVE);
1755
1756 if (only_dir_p)
1757 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1758
1759 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1760 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1761 (mustmatch_p || only_dir_p ?
8cfd0f36 1762 GTK_STOCK_OPEN : GTK_STOCK_OK),
f9d64bb3
JD
1763 GTK_RESPONSE_OK,
1764 NULL);
ded997c1 1765 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
f9d64bb3 1766
78c55a80
JD
1767 wbox = gtk_vbox_new (FALSE, 0);
1768 gtk_widget_show (wbox);
1769 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
8e5a8840
JB
1770
1771 if (x_gtk_show_hidden_files)
78c55a80
JD
1772 {
1773 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1774 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1775 }
1776 gtk_widget_show (wtoggle);
1777 g_signal_connect (G_OBJECT (wtoggle), "clicked",
4c9ca1a3
JD
1778 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1779 g_signal_connect (G_OBJECT (filewin), "notify",
1780 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
78c55a80 1781
a10fe834 1782 if (x_gtk_file_dialog_help_text)
cf1e295f 1783 {
65dc836c 1784 msgbuf[0] = '\0';
7b7d4a79
JD
1785 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1786 Show the C-l help text only for versions < 2.10. */
7adfb96e 1787 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
65dc836c
PE
1788 strcat (msgbuf, "\nType C-l to display a file name text entry box.\n");
1789 strcat (msgbuf, "\nIf you don't like this file selector, use the "
cf1e295f
JD
1790 "corresponding\nkey binding or customize "
1791 "use-file-dialog to turn it off.");
8e5a8840 1792
65dc836c 1793 wmessage = gtk_label_new (msgbuf);
cf1e295f
JD
1794 gtk_widget_show (wmessage);
1795 }
1796
78c55a80 1797 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
a10fe834 1798 if (x_gtk_file_dialog_help_text)
cf1e295f 1799 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
78c55a80
JD
1800 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1801
f9d64bb3 1802 if (default_filename)
a872928c
JD
1803 {
1804 Lisp_Object file;
1805 struct gcpro gcpro1;
4f3097d8 1806 char *utf8_filename;
45c94881 1807 GCPRO1 (file);
a872928c 1808
ded997c1
JD
1809 file = build_string (default_filename);
1810
a872928c
JD
1811 /* File chooser does not understand ~/... in the file name. It must be
1812 an absolute name starting with /. */
1813 if (default_filename[0] != '/')
ded997c1 1814 file = Fexpand_file_name (file, Qnil);
8e5a8840 1815
4f3097d8
JD
1816 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1817 if (! NILP (Ffile_directory_p (file)))
ded997c1 1818 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
4f3097d8 1819 utf8_filename);
ded997c1 1820 else
4f3097d8 1821 {
4f3097d8
JD
1822 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1823 utf8_filename);
ae6c1c19
JD
1824 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1825 {
1826 char *cp = strrchr (utf8_filename, '/');
1827 if (cp) ++cp;
1828 else cp = utf8_filename;
1829 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1830 }
4f3097d8 1831 }
a872928c
JD
1832
1833 UNGCPRO;
1834 }
f9d64bb3 1835
457a8155
JD
1836 *func = xg_get_file_name_from_chooser;
1837 return filewin;
f9d64bb3 1838}
f9d64bb3
JD
1839
1840#ifdef HAVE_GTK_FILE_SELECTION_NEW
f392e843 1841
457a8155
JD
1842/* Return the selected file for file selector dialog W.
1843 The returned string must be free:d. */
71bacd48 1844
457a8155 1845static char *
971de7fb 1846xg_get_file_name_from_selector (GtkWidget *w)
f392e843 1847{
457a8155
JD
1848 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1849 return xstrdup ((char*) gtk_file_selection_get_filename (filesel));
f392e843
JD
1850}
1851
457a8155 1852/* Create a file selection dialog.
f392e843
JD
1853 F is the current frame.
1854 PROMPT is a prompt to show to the user. May not be NULL.
1855 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1856 If MUSTMATCH_P is non-zero, the returned file name must be an existing
457a8155
JD
1857 file. *FUNC is set to a function that can be used to retrieve the
1858 selected file name from the returned widget.
f392e843 1859
457a8155 1860 Returns the created widget. */
71bacd48 1861
457a8155 1862static GtkWidget *
e4c8d29a
J
1863xg_get_file_with_selection (FRAME_PTR f,
1864 char *prompt,
1865 char *default_filename,
1866 int mustmatch_p, int only_dir_p,
1867 xg_get_file_func *func)
f392e843
JD
1868{
1869 GtkWidget *filewin;
1870 GtkFileSelection *filesel;
177c0ea7 1871
f392e843
JD
1872 filewin = gtk_file_selection_new (prompt);
1873 filesel = GTK_FILE_SELECTION (filewin);
1874
f392e843
JD
1875 if (default_filename)
1876 gtk_file_selection_set_filename (filesel, default_filename);
1877
1878 if (mustmatch_p)
1879 {
1880 /* The selection_entry part of filesel is not documented. */
1881 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1882 gtk_file_selection_hide_fileop_buttons (filesel);
1883 }
1884
457a8155 1885 *func = xg_get_file_name_from_selector;
177c0ea7 1886
457a8155 1887 return filewin;
f392e843 1888}
f9d64bb3
JD
1889#endif /* HAVE_GTK_FILE_SELECTION_NEW */
1890
1891/* Read a file name from the user using a file dialog, either the old
1892 file selection dialog, or the new file chooser dialog. Which to use
1893 depends on what the GTK version used has, and what the value of
1894 gtk-use-old-file-dialog.
1895 F is the current frame.
1896 PROMPT is a prompt to show to the user. May not be NULL.
1897 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1898 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1899 file.
1900
1901 Returns a file name or NULL if no file was selected.
1902 The returned string must be freed by the caller. */
1903
1904char *
e4c8d29a
J
1905xg_get_file_name (FRAME_PTR f,
1906 char *prompt,
1907 char *default_filename,
1908 int mustmatch_p,
1909 int only_dir_p)
f9d64bb3 1910{
724cde0d 1911 GtkWidget *w = 0;
457a8155
JD
1912 char *fn = 0;
1913 int filesel_done = 0;
1914 xg_get_file_func func;
1915
ae9e757a 1916#if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
aa477689
JD
1917 /* I really don't know why this is needed, but without this the GLIBC add on
1918 library linuxthreads hangs when the Gnome file chooser backend creates
1919 threads. */
1920 sigblock (sigmask (__SIGRTMIN));
ae9e757a 1921#endif /* HAVE_PTHREAD */
aa477689 1922
e547b051 1923#ifdef HAVE_GTK_FILE_SELECTION_NEW
255e4140 1924
90f2e16b 1925 if (xg_uses_old_file_dialog ())
457a8155
JD
1926 w = xg_get_file_with_selection (f, prompt, default_filename,
1927 mustmatch_p, only_dir_p, &func);
1928 else
1929 w = xg_get_file_with_chooser (f, prompt, default_filename,
1930 mustmatch_p, only_dir_p, &func);
f9d64bb3 1931
e547b051 1932#else /* not HAVE_GTK_FILE_SELECTION_NEW */
457a8155
JD
1933 w = xg_get_file_with_chooser (f, prompt, default_filename,
1934 mustmatch_p, only_dir_p, &func);
e547b051 1935#endif /* not HAVE_GTK_FILE_SELECTION_NEW */
457a8155 1936
457a8155 1937 gtk_widget_set_name (w, "emacs-filedialog");
457a8155 1938
e90292a9 1939 filesel_done = xg_dialog_run (f, w);
457a8155 1940
ae9e757a 1941#if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
aa477689
JD
1942 sigunblock (sigmask (__SIGRTMIN));
1943#endif
1944
457a8155
JD
1945 if (filesel_done == GTK_RESPONSE_OK)
1946 fn = (*func) (w);
1947
e90292a9 1948 gtk_widget_destroy (w);
457a8155 1949 return fn;
f9d64bb3 1950}
f392e843 1951
3402c0a6
CY
1952#ifdef HAVE_FREETYPE
1953/* Pop up a GTK font selector and return the name of the font the user
1954 selects, as a C string. The returned font name follows GTK's own
1955 format:
1956
1957 `FAMILY [VALUE1 VALUE2] SIZE'
1958
1959 This can be parsed using font_parse_fcname in font.c.
1960 DEFAULT_NAME, if non-zero, is the default font name. */
1961
1962char *
8ea90aa3 1963xg_get_font_name (FRAME_PTR f, const char *default_name)
3402c0a6 1964{
e90292a9 1965 GtkWidget *w;
3402c0a6
CY
1966 char *fontname = NULL;
1967 int done = 0;
1968
ae9e757a 1969#if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
3402c0a6 1970 sigblock (sigmask (__SIGRTMIN));
ae9e757a 1971#endif /* HAVE_PTHREAD */
3402c0a6
CY
1972
1973 w = gtk_font_selection_dialog_new ("Pick a font");
5c646d5a
JD
1974 if (!default_name)
1975 default_name = "Monospace 10";
1976 gtk_font_selection_dialog_set_font_name (GTK_FONT_SELECTION_DIALOG (w),
1977 default_name);
3402c0a6 1978
3402c0a6 1979 gtk_widget_set_name (w, "emacs-fontdialog");
3402c0a6 1980
e90292a9 1981 done = xg_dialog_run (f, w);
3402c0a6 1982
ae9e757a 1983#if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
3402c0a6
CY
1984 sigunblock (sigmask (__SIGRTMIN));
1985#endif
1986
1987 if (done == GTK_RESPONSE_OK)
1988 fontname = gtk_font_selection_dialog_get_font_name
e90292a9 1989 (GTK_FONT_SELECTION_DIALOG (w));
3402c0a6 1990
e90292a9 1991 gtk_widget_destroy (w);
3402c0a6
CY
1992 return fontname;
1993}
1994#endif /* HAVE_FREETYPE */
1995
1996
f392e843
JD
1997\f
1998/***********************************************************************
1999 Menu functions.
2000 ***********************************************************************/
2001
d1c38b57 2002/* The name of menu items that can be used for customization. Since GTK
f392e843 2003 RC files are very crude and primitive, we have to set this on all
d1c38b57 2004 menu item names so a user can easily customize menu items. */
f392e843
JD
2005
2006#define MENU_ITEM_NAME "emacs-menuitem"
2007
2008
2009/* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2010 during GC. The next member points to the items. */
2011static xg_list_node xg_menu_cb_list;
2012
2013/* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2014 during GC. The next member points to the items. */
2015static xg_list_node xg_menu_item_cb_list;
2016
2017/* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2018 F is the frame CL_DATA will be initialized for.
2019 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2020
2021 The menu bar and all sub menus under the menu bar in a frame
2022 share the same structure, hence the reference count.
177c0ea7 2023
f392e843
JD
2024 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2025 allocated xg_menu_cb_data if CL_DATA is NULL. */
71bacd48 2026
f392e843 2027static xg_menu_cb_data *
971de7fb 2028make_cl_data (xg_menu_cb_data *cl_data, FRAME_PTR f, GCallback highlight_cb)
f392e843
JD
2029{
2030 if (! cl_data)
2031 {
2032 cl_data = (xg_menu_cb_data*) xmalloc (sizeof (*cl_data));
2033 cl_data->f = f;
2034 cl_data->menu_bar_vector = f->menu_bar_vector;
2035 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2036 cl_data->highlight_cb = highlight_cb;
2037 cl_data->ref_count = 0;
2038
2039 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2040 }
2041
2042 cl_data->ref_count++;
2043
2044 return cl_data;
2045}
2046
2047/* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2048 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2049
2050 When the menu bar is updated, menu items may have been added and/or
2051 removed, so menu_bar_vector and menu_bar_items_used change. We must
2052 then update CL_DATA since it is used to determine which menu
2053 item that is invoked in the menu.
2054 HIGHLIGHT_CB could change, there is no check that the same
2055 function is given when modifying a menu bar as was given when
2056 creating the menu bar. */
71bacd48 2057
f392e843 2058static void
e4c8d29a
J
2059update_cl_data (xg_menu_cb_data *cl_data,
2060 FRAME_PTR f,
2061 GCallback highlight_cb)
f392e843
JD
2062{
2063 if (cl_data)
2064 {
2065 cl_data->f = f;
2066 cl_data->menu_bar_vector = f->menu_bar_vector;
2067 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2068 cl_data->highlight_cb = highlight_cb;
2069 }
2070}
2071
2072/* Decrease reference count for CL_DATA.
2073 If reference count is zero, free CL_DATA. */
71bacd48 2074
f392e843 2075static void
971de7fb 2076unref_cl_data (xg_menu_cb_data *cl_data)
f392e843
JD
2077{
2078 if (cl_data && cl_data->ref_count > 0)
2079 {
2080 cl_data->ref_count--;
2081 if (cl_data->ref_count == 0)
2082 {
2083 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2084 xfree (cl_data);
2085 }
2086 }
2087}
2088
2089/* Function that marks all lisp data during GC. */
71bacd48 2090
f392e843 2091void
971de7fb 2092xg_mark_data (void)
f392e843
JD
2093{
2094 xg_list_node *iter;
2095
2096 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
631f2082 2097 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
f392e843
JD
2098
2099 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2100 {
2101 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2102
2103 if (! NILP (cb_data->help))
631f2082 2104 mark_object (cb_data->help);
f392e843
JD
2105 }
2106}
2107
2108
2109/* Callback called when a menu item is destroyed. Used to free data.
2110 W is the widget that is being destroyed (not used).
2111 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
71bacd48 2112
f392e843 2113static void
971de7fb 2114menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
f392e843
JD
2115{
2116 if (client_data)
2117 {
2118 xg_menu_item_cb_data *data = (xg_menu_item_cb_data*) client_data;
2119 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2120 xfree (data);
2121 }
2122}
2123
2124/* Callback called when the pointer enters/leaves a menu item.
665c8f1c 2125 W is the parent of the menu item.
f392e843 2126 EVENT is either an enter event or leave event.
665c8f1c 2127 CLIENT_DATA is not used.
f392e843
JD
2128
2129 Returns FALSE to tell GTK to keep processing this event. */
71bacd48 2130
f392e843 2131static gboolean
e4c8d29a
J
2132menuitem_highlight_callback (GtkWidget *w,
2133 GdkEventCrossing *event,
2134 gpointer client_data)
f392e843 2135{
665c8f1c
JD
2136 GdkEvent ev;
2137 GtkWidget *subwidget;
2138 xg_menu_item_cb_data *data;
177c0ea7 2139
665c8f1c
JD
2140 ev.crossing = *event;
2141 subwidget = gtk_get_event_widget (&ev);
2142 data = (xg_menu_item_cb_data *) g_object_get_data (G_OBJECT (subwidget),
2143 XG_ITEM_DATA);
2144 if (data)
2145 {
f392e843
JD
2146 if (! NILP (data->help) && data->cl_data->highlight_cb)
2147 {
665c8f1c 2148 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
f392e843 2149 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
665c8f1c 2150 (*func) (subwidget, call_data);
f392e843
JD
2151 }
2152 }
2153
2154 return FALSE;
2155}
2156
2157/* Callback called when a menu is destroyed. Used to free data.
2158 W is the widget that is being destroyed (not used).
2159 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
71bacd48 2160
f392e843 2161static void
971de7fb 2162menu_destroy_callback (GtkWidget *w, gpointer client_data)
f392e843
JD
2163{
2164 unref_cl_data ((xg_menu_cb_data*) client_data);
2165}
2166
f392e843
JD
2167/* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2168 must be non-NULL) and can be inserted into a menu item.
2169
2170 Returns the GtkHBox. */
71bacd48 2171
f392e843 2172static GtkWidget *
8ea90aa3 2173make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
f392e843
JD
2174{
2175 GtkWidget *wlbl;
2176 GtkWidget *wkey;
2177 GtkWidget *wbox;
177c0ea7 2178
f392e843 2179 wbox = gtk_hbox_new (FALSE, 0);
4b1b4443 2180 wlbl = gtk_label_new (utf8_label);
f392e843
JD
2181 wkey = gtk_label_new (utf8_key);
2182
2183 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2184 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
177c0ea7 2185
f392e843
JD
2186 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2187 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2188
2189 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2190 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
7863d625 2191 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
f392e843
JD
2192
2193 return wbox;
2194}
2195
2196/* Make and return a menu item widget with the key to the right.
2197 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2198 UTF8_KEY is the text representing the key binding.
2199 ITEM is the widget_value describing the menu item.
177c0ea7 2200
f392e843
JD
2201 GROUP is an in/out parameter. If the menu item to be created is not
2202 part of any radio menu group, *GROUP contains NULL on entry and exit.
2203 If the menu item to be created is part of a radio menu group, on entry
2204 *GROUP contains the group to use, or NULL if this is the first item
2205 in the group. On exit, *GROUP contains the radio item group.
2206
2207 Unfortunately, keys don't line up as nicely as in Motif,
2208 but the MacOS X version doesn't either, so I guess that is OK. */
71bacd48 2209
f392e843 2210static GtkWidget *
8ea90aa3
DN
2211make_menu_item (const char *utf8_label,
2212 const char *utf8_key,
e4c8d29a
J
2213 widget_value *item,
2214 GSList **group)
f392e843
JD
2215{
2216 GtkWidget *w;
2217 GtkWidget *wtoadd = 0;
177c0ea7 2218
adcb132c
JD
2219 /* It has been observed that some menu items have a NULL name field.
2220 This will lead to this function being called with a NULL utf8_label.
2221 GTK crashes on that so we set a blank label. Why there is a NULL
2222 name remains to be investigated. */
2223 if (! utf8_label) utf8_label = " ";
2224
f392e843
JD
2225 if (utf8_key)
2226 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
177c0ea7 2227
f392e843
JD
2228 if (item->button_type == BUTTON_TYPE_TOGGLE)
2229 {
2230 *group = NULL;
2231 if (utf8_key) w = gtk_check_menu_item_new ();
4b1b4443 2232 else w = gtk_check_menu_item_new_with_label (utf8_label);
f392e843
JD
2233 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2234 }
2235 else if (item->button_type == BUTTON_TYPE_RADIO)
2236 {
2237 if (utf8_key) w = gtk_radio_menu_item_new (*group);
4b1b4443 2238 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
f392e843
JD
2239 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2240 if (item->selected)
2241 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2242 }
2243 else
2244 {
2245 *group = NULL;
2246 if (utf8_key) w = gtk_menu_item_new ();
4b1b4443 2247 else w = gtk_menu_item_new_with_label (utf8_label);
f392e843 2248 }
177c0ea7 2249
f392e843
JD
2250 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2251 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2252
2253 return w;
2254}
2255
da18b5ac
JD
2256static int xg_detached_menus;
2257
2258/* Returns non-zero if there are detached menus. */
71bacd48 2259
da18b5ac 2260int
971de7fb 2261xg_have_tear_offs (void)
da18b5ac
JD
2262{
2263 return xg_detached_menus > 0;
2264}
f392e843
JD
2265
2266/* Callback invoked when a detached menu window is removed. Here we
da18b5ac 2267 decrease the xg_detached_menus count.
f392e843 2268 WIDGET is the top level window that is removed (the parent of the menu).
da18b5ac 2269 CLIENT_DATA is not used. */
71bacd48 2270
da18b5ac 2271static void
971de7fb 2272tearoff_remove (GtkWidget *widget, gpointer client_data)
f392e843 2273{
da18b5ac 2274 if (xg_detached_menus > 0) --xg_detached_menus;
f392e843
JD
2275}
2276
da18b5ac
JD
2277/* Callback invoked when a menu is detached. It increases the
2278 xg_detached_menus count.
f392e843 2279 WIDGET is the GtkTearoffMenuItem.
177c0ea7 2280 CLIENT_DATA is not used. */
71bacd48 2281
f392e843 2282static void
971de7fb 2283tearoff_activate (GtkWidget *widget, gpointer client_data)
f392e843
JD
2284{
2285 GtkWidget *menu = gtk_widget_get_parent (widget);
da18b5ac
JD
2286 if (gtk_menu_get_tearoff_state (GTK_MENU (menu)))
2287 {
2288 ++xg_detached_menus;
2289 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget)),
2290 "destroy",
2291 G_CALLBACK (tearoff_remove), 0);
2292 }
f392e843
JD
2293}
2294
f392e843 2295
f392e843 2296/* Create a menu item widget, and connect the callbacks.
4c36be58 2297 ITEM describes the menu item.
f392e843
JD
2298 F is the frame the created menu belongs to.
2299 SELECT_CB is the callback to use when a menu item is selected.
2300 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2301 CL_DATA points to the callback data to be used for this menu.
2302 GROUP is an in/out parameter. If the menu item to be created is not
2303 part of any radio menu group, *GROUP contains NULL on entry and exit.
2304 If the menu item to be created is part of a radio menu group, on entry
2305 *GROUP contains the group to use, or NULL if this is the first item
2306 in the group. On exit, *GROUP contains the radio item group.
2307
2308 Returns the created GtkWidget. */
71bacd48 2309
f392e843 2310static GtkWidget *
e4c8d29a
J
2311xg_create_one_menuitem (widget_value *item,
2312 FRAME_PTR f,
2313 GCallback select_cb,
2314 GCallback highlight_cb,
2315 xg_menu_cb_data *cl_data,
2316 GSList **group)
f392e843
JD
2317{
2318 char *utf8_label;
2319 char *utf8_key;
2320 GtkWidget *w;
2321 xg_menu_item_cb_data *cb_data;
2322
2323 utf8_label = get_utf8_string (item->name);
2324 utf8_key = get_utf8_string (item->key);
2325
2326 w = make_menu_item (utf8_label, utf8_key, item, group);
2327
42ca4633
J
2328 if (utf8_label) g_free (utf8_label);
2329 if (utf8_key) g_free (utf8_key);
f392e843
JD
2330
2331 cb_data = xmalloc (sizeof (xg_menu_item_cb_data));
2332
2333 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2334
665c8f1c 2335 cb_data->select_id = 0;
f392e843
JD
2336 cb_data->help = item->help;
2337 cb_data->cl_data = cl_data;
2338 cb_data->call_data = item->call_data;
177c0ea7 2339
f392e843
JD
2340 g_signal_connect (G_OBJECT (w),
2341 "destroy",
2342 G_CALLBACK (menuitem_destroy_callback),
2343 cb_data);
2344
2345 /* Put cb_data in widget, so we can get at it when modifying menubar */
2346 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2347
2348 /* final item, not a submenu */
2349 if (item->call_data && ! item->contents)
2350 {
2351 if (select_cb)
2352 cb_data->select_id
2353 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2354 }
2355
f392e843
JD
2356 return w;
2357}
2358
2359/* Create a full menu tree specified by DATA.
2360 F is the frame the created menu belongs to.
2361 SELECT_CB is the callback to use when a menu item is selected.
2362 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2363 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2364 POP_UP_P is non-zero if we shall create a popup menu.
2365 MENU_BAR_P is non-zero if we shall create a menu bar.
2366 ADD_TEAROFF_P is non-zero if we shall add a teroff menu item. Ignored
2367 if MENU_BAR_P is non-zero.
2368 TOPMENU is the topmost GtkWidget that others shall be placed under.
2369 It may be NULL, in that case we create the appropriate widget
2370 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2371 CL_DATA is the callback data we shall use for this menu, or NULL
2372 if we haven't set the first callback yet.
2373 NAME is the name to give to the top level menu if this function
2374 creates it. May be NULL to not set any name.
2375
2376 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2377 not NULL.
2378
2379 This function calls itself to create submenus. */
2380
2381static GtkWidget *
e4c8d29a
J
2382create_menus (widget_value *data,
2383 FRAME_PTR f,
2384 GCallback select_cb,
2385 GCallback deactivate_cb,
2386 GCallback highlight_cb,
2387 int pop_up_p,
2388 int menu_bar_p,
2389 int add_tearoff_p,
2390 GtkWidget *topmenu,
2391 xg_menu_cb_data *cl_data,
8ea90aa3 2392 const char *name)
f392e843
JD
2393{
2394 widget_value *item;
2395 GtkWidget *wmenu = topmenu;
2396 GSList *group = NULL;
2397
2398 if (! topmenu)
2399 {
810f2256
JD
2400 if (! menu_bar_p)
2401 {
2402 wmenu = gtk_menu_new ();
2403 xg_set_screen (wmenu, f);
665c8f1c
JD
2404 /* Connect this to the menu instead of items so we get enter/leave for
2405 disabled items also. TODO: Still does not get enter/leave for
2406 disabled items in detached menus. */
2407 g_signal_connect (G_OBJECT (wmenu),
2408 "enter-notify-event",
2409 G_CALLBACK (menuitem_highlight_callback),
2410 NULL);
2411 g_signal_connect (G_OBJECT (wmenu),
2412 "leave-notify-event",
2413 G_CALLBACK (menuitem_highlight_callback),
2414 NULL);
810f2256 2415 }
5be883cd
JD
2416 else
2417 {
2418 wmenu = gtk_menu_bar_new ();
872870b2
JD
2419 /* Set width of menu bar to a small value so it doesn't enlarge
2420 a small initial frame size. The width will be set to the
2421 width of the frame later on when it is added to a container.
2422 height -1: Natural height. */
5be883cd
JD
2423 gtk_widget_set_size_request (wmenu, 1, -1);
2424 }
f392e843
JD
2425
2426 /* Put cl_data on the top menu for easier access. */
2427 cl_data = make_cl_data (cl_data, f, highlight_cb);
2428 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2429 g_signal_connect (G_OBJECT (wmenu), "destroy",
2430 G_CALLBACK (menu_destroy_callback), cl_data);
177c0ea7 2431
f392e843
JD
2432 if (name)
2433 gtk_widget_set_name (wmenu, name);
2434
2435 if (deactivate_cb)
2436 g_signal_connect (G_OBJECT (wmenu),
c8934d9d 2437 "selection-done", deactivate_cb, 0);
f392e843 2438 }
177c0ea7 2439
f392e843
JD
2440 if (! menu_bar_p && add_tearoff_p)
2441 {
2442 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
2443 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
2444
2445 g_signal_connect (G_OBJECT (tearoff), "activate",
2446 G_CALLBACK (tearoff_activate), 0);
2447 }
2448
2449 for (item = data; item; item = item->next)
2450 {
2451 GtkWidget *w;
177c0ea7 2452
f392e843 2453 if (pop_up_p && !item->contents && !item->call_data
4039c786 2454 && !menu_separator_name_p (item->name))
f392e843
JD
2455 {
2456 char *utf8_label;
2457 /* A title for a popup. We do the same as GTK does when
2458 creating titles, but it does not look good. */
2459 group = NULL;
2460 utf8_label = get_utf8_string (item->name);
2461
2462 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
4b1b4443 2463 w = gtk_menu_item_new_with_label (utf8_label);
f392e843 2464 gtk_widget_set_sensitive (w, FALSE);
42ca4633 2465 if (utf8_label) g_free (utf8_label);
f392e843 2466 }
4039c786 2467 else if (menu_separator_name_p (item->name))
f392e843
JD
2468 {
2469 group = NULL;
2470 /* GTK only have one separator type. */
2471 w = gtk_separator_menu_item_new ();
2472 }
2473 else
2474 {
2475 w = xg_create_one_menuitem (item,
2476 f,
2477 item->contents ? 0 : select_cb,
2478 highlight_cb,
2479 cl_data,
2480 &group);
2481
f56cff88
JD
2482 /* Create a possibly empty submenu for menu bar items, since some
2483 themes don't highlight items correctly without it. */
2484 if (item->contents || menu_bar_p)
f392e843
JD
2485 {
2486 GtkWidget *submenu = create_menus (item->contents,
2487 f,
2488 select_cb,
2489 deactivate_cb,
2490 highlight_cb,
2491 0,
2492 0,
da18b5ac 2493 add_tearoff_p,
f392e843
JD
2494 0,
2495 cl_data,
2496 0);
2497 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2498 }
f392e843
JD
2499 }
2500
2501 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2502 gtk_widget_set_name (w, MENU_ITEM_NAME);
2503 }
2504
2505 return wmenu;
2506}
2507
2508/* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2509 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2510 with some text and buttons.
2511 F is the frame the created item belongs to.
2512 NAME is the name to use for the top widget.
2513 VAL is a widget_value structure describing items to be created.
2514 SELECT_CB is the callback to use when a menu item is selected or
2515 a dialog button is pressed.
2516 DEACTIVATE_CB is the callback to use when an item is deactivated.
2517 For a menu, when a sub menu is not shown anymore, for a dialog it is
2518 called when the dialog is popped down.
2519 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2520
2521 Returns the widget created. */
71bacd48 2522
f392e843 2523GtkWidget *
675e2c69 2524xg_create_widget (const char *type, const char *name, FRAME_PTR f, widget_value *val,
d5a3eaaf
AS
2525 GCallback select_cb, GCallback deactivate_cb,
2526 GCallback highlight_cb)
f392e843
JD
2527{
2528 GtkWidget *w = 0;
da18b5ac
JD
2529 int menu_bar_p = strcmp (type, "menubar") == 0;
2530 int pop_up_p = strcmp (type, "popup") == 0;
2531
f392e843
JD
2532 if (strcmp (type, "dialog") == 0)
2533 {
2534 w = create_dialog (val, select_cb, deactivate_cb);
810f2256 2535 xg_set_screen (w, f);
f392e843
JD
2536 gtk_window_set_transient_for (GTK_WINDOW (w),
2537 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2538 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
810f2256 2539 gtk_widget_set_name (w, "emacs-dialog");
457a8155 2540 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
f392e843 2541 }
da18b5ac 2542 else if (menu_bar_p || pop_up_p)
f392e843
JD
2543 {
2544 w = create_menus (val->contents,
2545 f,
2546 select_cb,
2547 deactivate_cb,
2548 highlight_cb,
da18b5ac
JD
2549 pop_up_p,
2550 menu_bar_p,
2551 menu_bar_p,
f392e843
JD
2552 0,
2553 0,
2554 name);
2555
2556 /* Set the cursor to an arrow for popup menus when they are mapped.
2557 This is done by default for menu bar menus. */
da18b5ac 2558 if (pop_up_p)
f392e843
JD
2559 {
2560 /* Must realize so the GdkWindow inside the widget is created. */
2561 gtk_widget_realize (w);
810f2256 2562 xg_set_cursor (w, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
f392e843
JD
2563 }
2564 }
2565 else
2566 {
2567 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2568 type);
2569 }
2570
2571 return w;
2572}
2573
0a1d6de0 2574/* Return the label for menu item WITEM. */
71bacd48 2575
f392e843 2576static const char *
971de7fb 2577xg_get_menu_item_label (GtkMenuItem *witem)
f392e843 2578{
4039c786 2579 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
f392e843
JD
2580 return gtk_label_get_label (wlabel);
2581}
2582
0a1d6de0 2583/* Return non-zero if the menu item WITEM has the text LABEL. */
71bacd48 2584
f392e843 2585static int
42ca4633 2586xg_item_label_same_p (GtkMenuItem *witem, const char *label)
f392e843 2587{
0a1d6de0 2588 int is_same = 0;
f392e843 2589 char *utf8_label = get_utf8_string (label);
0a1d6de0
JD
2590 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2591
2592 if (! old_label && ! utf8_label)
2593 is_same = 1;
2594 else if (old_label && utf8_label)
2595 is_same = strcmp (utf8_label, old_label) == 0;
2596
42ca4633 2597 if (utf8_label) g_free (utf8_label);
f392e843
JD
2598
2599 return is_same;
2600}
2601
71bacd48
JD
2602/* Destroy widgets in LIST. */
2603
f392e843 2604static void
971de7fb 2605xg_destroy_widgets (GList *list)
f392e843 2606{
f392e843
JD
2607 GList *iter;
2608
49853a4d 2609 for (iter = list; iter; iter = g_list_next (iter))
f392e843
JD
2610 {
2611 GtkWidget *w = GTK_WIDGET (iter->data);
2612
71bacd48 2613 /* Destroying the widget will remove it from the container it is in. */
f392e843
JD
2614 gtk_widget_destroy (w);
2615 }
f392e843
JD
2616}
2617
2618/* Update the top level names in MENUBAR (i.e. not submenus).
2619 F is the frame the menu bar belongs to.
49853a4d
JD
2620 *LIST is a list with the current menu bar names (menu item widgets).
2621 ITER is the item within *LIST that shall be updated.
2622 POS is the numerical position, starting at 0, of ITER in *LIST.
f392e843
JD
2623 VAL describes what the menu bar shall look like after the update.
2624 SELECT_CB is the callback to use when a menu item is selected.
2625 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
49853a4d 2626 CL_DATA points to the callback data to be used for this menu bar.
f392e843
JD
2627
2628 This function calls itself to walk through the menu bar names. */
71bacd48 2629
f392e843 2630static void
dd4c5104
DN
2631xg_update_menubar (GtkWidget *menubar,
2632 FRAME_PTR f,
2633 GList **list,
2634 GList *iter,
2635 int pos,
2636 widget_value *val,
2637 GCallback select_cb,
2638 GCallback deactivate_cb,
2639 GCallback highlight_cb,
2640 xg_menu_cb_data *cl_data)
f392e843 2641{
49853a4d 2642 if (! iter && ! val)
f392e843 2643 return;
49853a4d 2644 else if (iter && ! val)
f392e843 2645 {
49853a4d 2646 /* Item(s) have been removed. Remove all remaining items. */
71bacd48 2647 xg_destroy_widgets (iter);
f392e843 2648
4a8e097d
JD
2649 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2650 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2651 gtk_menu_item_new_with_label (""),
2652 0);
f392e843
JD
2653 /* All updated. */
2654 val = 0;
49853a4d 2655 iter = 0;
f392e843 2656 }
49853a4d 2657 else if (! iter && val)
f392e843
JD
2658 {
2659 /* Item(s) added. Add all new items in one call. */
d1c38b57 2660 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
f392e843
JD
2661 0, 1, 0, menubar, cl_data, 0);
2662
2663 /* All updated. */
2664 val = 0;
49853a4d 2665 iter = 0;
f392e843 2666 }
49853a4d
JD
2667 /* Below this neither iter or val is NULL */
2668 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
f392e843
JD
2669 {
2670 /* This item is still the same, check next item. */
2671 val = val->next;
49853a4d
JD
2672 iter = g_list_next (iter);
2673 ++pos;
f392e843
JD
2674 }
2675 else /* This item is changed. */
2676 {
49853a4d 2677 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
f392e843 2678 GtkMenuItem *witem2 = 0;
f392e843 2679 int val_in_menubar = 0;
49853a4d
JD
2680 int iter_in_new_menubar = 0;
2681 GList *iter2;
f392e843
JD
2682 widget_value *cur;
2683
f392e843 2684 /* See if the changed entry (val) is present later in the menu bar */
49853a4d
JD
2685 for (iter2 = iter;
2686 iter2 && ! val_in_menubar;
2687 iter2 = g_list_next (iter2))
f392e843 2688 {
49853a4d 2689 witem2 = GTK_MENU_ITEM (iter2->data);
f392e843
JD
2690 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2691 }
2692
49853a4d 2693 /* See if the current entry (iter) is present later in the
f392e843 2694 specification for the new menu bar. */
49853a4d
JD
2695 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2696 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
f392e843 2697
49853a4d 2698 if (val_in_menubar && ! iter_in_new_menubar)
f392e843 2699 {
49853a4d
JD
2700 int nr = pos;
2701
f392e843
JD
2702 /* This corresponds to:
2703 Current: A B C
2704 New: A C
2705 Remove B. */
177c0ea7 2706
e547b051 2707 g_object_ref (G_OBJECT (witem));
f392e843
JD
2708 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2709 gtk_widget_destroy (GTK_WIDGET (witem));
2710
2711 /* Must get new list since the old changed. */
49853a4d
JD
2712 g_list_free (*list);
2713 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2714 while (nr-- > 0) iter = g_list_next (iter);
f392e843 2715 }
49853a4d 2716 else if (! val_in_menubar && ! iter_in_new_menubar)
f392e843
JD
2717 {
2718 /* This corresponds to:
2719 Current: A B C
2720 New: A X C
2721 Rename B to X. This might seem to be a strange thing to do,
2722 since if there is a menu under B it will be totally wrong for X.
2723 But consider editing a C file. Then there is a C-mode menu
2724 (corresponds to B above).
2725 If then doing C-x C-f the minibuf menu (X above) replaces the
2726 C-mode menu. When returning from the minibuffer, we get
2727 back the C-mode menu. Thus we do:
2728 Rename B to X (C-mode to minibuf menu)
2729 Rename X to B (minibuf to C-mode menu).
2730 If the X menu hasn't been invoked, the menu under B
2731 is up to date when leaving the minibuffer. */
4039c786 2732 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
f392e843 2733 char *utf8_label = get_utf8_string (val->name);
da18b5ac 2734 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
177c0ea7 2735
4b1b4443 2736 gtk_label_set_text (wlabel, utf8_label);
f392e843 2737
da18b5ac
JD
2738 /* If this item has a submenu that has been detached, change
2739 the title in the WM decorations also. */
2740 if (submenu && gtk_menu_get_tearoff_state (GTK_MENU (submenu)))
2741 /* Set the title of the detached window. */
2742 gtk_menu_set_title (GTK_MENU (submenu), utf8_label);
2743
42ca4633 2744 if (utf8_label) g_free (utf8_label);
49853a4d 2745 iter = g_list_next (iter);
f392e843 2746 val = val->next;
49853a4d 2747 ++pos;
f392e843 2748 }
49853a4d 2749 else if (! val_in_menubar && iter_in_new_menubar)
f392e843
JD
2750 {
2751 /* This corresponds to:
2752 Current: A B C
2753 New: A X B C
2754 Insert X. */
2755
49853a4d 2756 int nr = pos;
e4c8d29a 2757 GSList *group = 0;
f392e843
JD
2758 GtkWidget *w = xg_create_one_menuitem (val,
2759 f,
2760 select_cb,
2761 highlight_cb,
2762 cl_data,
2763 &group);
2764
f56cff88
JD
2765 /* Create a possibly empty submenu for menu bar items, since some
2766 themes don't highlight items correctly without it. */
2767 GtkWidget *submenu = create_menus (NULL, f,
d1c38b57
JD
2768 select_cb, deactivate_cb,
2769 highlight_cb,
f56cff88 2770 0, 0, 0, 0, cl_data, 0);
f392e843
JD
2771 gtk_widget_set_name (w, MENU_ITEM_NAME);
2772 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
f56cff88 2773 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
f392e843 2774
49853a4d
JD
2775 g_list_free (*list);
2776 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2777 while (nr-- > 0) iter = g_list_next (iter);
2778 iter = g_list_next (iter);
f392e843 2779 val = val->next;
49853a4d 2780 ++pos;
f392e843 2781 }
49853a4d 2782 else /* if (val_in_menubar && iter_in_new_menubar) */
f392e843 2783 {
49853a4d 2784 int nr = pos;
f392e843
JD
2785 /* This corresponds to:
2786 Current: A B C
2787 New: A C B
2788 Move C before B */
2789
e547b051 2790 g_object_ref (G_OBJECT (witem2));
f392e843
JD
2791 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2792 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2793 GTK_WIDGET (witem2), pos);
e547b051 2794 g_object_unref (G_OBJECT (witem2));
f392e843 2795
49853a4d
JD
2796 g_list_free (*list);
2797 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2798 while (nr-- > 0) iter = g_list_next (iter);
0a194c92 2799 if (iter) iter = g_list_next (iter);
f392e843 2800 val = val->next;
49853a4d 2801 ++pos;
f392e843 2802 }
f392e843
JD
2803 }
2804
2805 /* Update the rest of the menu bar. */
49853a4d 2806 xg_update_menubar (menubar, f, list, iter, pos, val,
d1c38b57 2807 select_cb, deactivate_cb, highlight_cb, cl_data);
f392e843
JD
2808}
2809
2810/* Update the menu item W so it corresponds to VAL.
2811 SELECT_CB is the callback to use when a menu item is selected.
2812 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
a8ce3d17 2813 CL_DATA is the data to set in the widget for menu invocation. */
71bacd48 2814
f392e843 2815static void
e4c8d29a
J
2816xg_update_menu_item (widget_value *val,
2817 GtkWidget *w,
2818 GCallback select_cb,
2819 GCallback highlight_cb,
2820 xg_menu_cb_data *cl_data)
f392e843
JD
2821{
2822 GtkWidget *wchild;
2823 GtkLabel *wlbl = 0;
2824 GtkLabel *wkey = 0;
2825 char *utf8_label;
2826 char *utf8_key;
0a1d6de0
JD
2827 const char *old_label = 0;
2828 const char *old_key = 0;
f392e843 2829 xg_menu_item_cb_data *cb_data;
177c0ea7 2830
4039c786 2831 wchild = XG_BIN_CHILD (w);
f392e843
JD
2832 utf8_label = get_utf8_string (val->name);
2833 utf8_key = get_utf8_string (val->key);
2834
2835 /* See if W is a menu item with a key. See make_menu_item above. */
2836 if (GTK_IS_HBOX (wchild))
2837 {
2838 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
2839
2840 wlbl = GTK_LABEL (list->data);
2841 wkey = GTK_LABEL (list->next->data);
49853a4d
JD
2842 g_list_free (list);
2843
f392e843
JD
2844 if (! utf8_key)
2845 {
2846 /* Remove the key and keep just the label. */
e547b051 2847 g_object_ref (G_OBJECT (wlbl));
f392e843
JD
2848 gtk_container_remove (GTK_CONTAINER (w), wchild);
2849 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
e547b051 2850 g_object_unref (G_OBJECT (wlbl));
f392e843
JD
2851 wkey = 0;
2852 }
49853a4d 2853
f392e843
JD
2854 }
2855 else /* Just a label. */
2856 {
2857 wlbl = GTK_LABEL (wchild);
2858
2859 /* Check if there is now a key. */
2860 if (utf8_key)
2861 {
2862 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2863 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
49853a4d 2864
f392e843
JD
2865 wlbl = GTK_LABEL (list->data);
2866 wkey = GTK_LABEL (list->next->data);
49853a4d 2867 g_list_free (list);
f392e843
JD
2868
2869 gtk_container_remove (GTK_CONTAINER (w), wchild);
2870 gtk_container_add (GTK_CONTAINER (w), wtoadd);
2871 }
2872 }
2873
177c0ea7 2874
0a1d6de0
JD
2875 if (wkey) old_key = gtk_label_get_label (wkey);
2876 if (wlbl) old_label = gtk_label_get_label (wlbl);
177c0ea7 2877
0a1d6de0 2878 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
f392e843
JD
2879 gtk_label_set_text (wkey, utf8_key);
2880
0a1d6de0 2881 if (! old_label || strcmp (utf8_label, old_label) != 0)
4b1b4443 2882 gtk_label_set_text (wlbl, utf8_label);
f392e843 2883
42ca4633
J
2884 if (utf8_key) g_free (utf8_key);
2885 if (utf8_label) g_free (utf8_label);
177c0ea7 2886
e547b051 2887 if (! val->enabled && gtk_widget_get_sensitive (w))
f392e843 2888 gtk_widget_set_sensitive (w, FALSE);
e547b051 2889 else if (val->enabled && ! gtk_widget_get_sensitive (w))
f392e843
JD
2890 gtk_widget_set_sensitive (w, TRUE);
2891
2892 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (w),
2893 XG_ITEM_DATA);
2894 if (cb_data)
2895 {
2896 cb_data->call_data = val->call_data;
2897 cb_data->help = val->help;
2898 cb_data->cl_data = cl_data;
177c0ea7 2899
f392e843
JD
2900 /* We assume the callback functions don't change. */
2901 if (val->call_data && ! val->contents)
2902 {
2903 /* This item shall have a select callback. */
2904 if (! cb_data->select_id)
2905 cb_data->select_id
2906 = g_signal_connect (G_OBJECT (w), "activate",
2907 select_cb, cb_data);
2908 }
2909 else if (cb_data->select_id)
2910 {
2911 g_signal_handler_disconnect (w, cb_data->select_id);
2912 cb_data->select_id = 0;
2913 }
f392e843
JD
2914 }
2915}
2916
2917/* Update the toggle menu item W so it corresponds to VAL. */
71bacd48 2918
f392e843 2919static void
971de7fb 2920xg_update_toggle_item (widget_value *val, GtkWidget *w)
f392e843
JD
2921{
2922 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2923}
2924
2925/* Update the radio menu item W so it corresponds to VAL. */
71bacd48 2926
f392e843 2927static void
971de7fb 2928xg_update_radio_item (widget_value *val, GtkWidget *w)
f392e843
JD
2929{
2930 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2931}
2932
2933/* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
2934 SUBMENU may be NULL, in that case a new menu is created.
2935 F is the frame the menu bar belongs to.
2936 VAL describes the contents of the menu bar.
2937 SELECT_CB is the callback to use when a menu item is selected.
2938 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2939 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2940 CL_DATA is the call back data to use for any newly created items.
2941
2942 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
2943 was NULL. */
2944
2945static GtkWidget *
dd4c5104
DN
2946xg_update_submenu (GtkWidget *submenu,
2947 FRAME_PTR f,
2948 widget_value *val,
2949 GCallback select_cb,
2950 GCallback deactivate_cb,
2951 GCallback highlight_cb,
2952 xg_menu_cb_data *cl_data)
f392e843
JD
2953{
2954 GtkWidget *newsub = submenu;
2955 GList *list = 0;
2956 GList *iter;
2957 widget_value *cur;
2958 int has_tearoff_p = 0;
2959 GList *first_radio = 0;
177c0ea7 2960
f392e843
JD
2961 if (submenu)
2962 list = gtk_container_get_children (GTK_CONTAINER (submenu));
177c0ea7 2963
f392e843
JD
2964 for (cur = val, iter = list;
2965 cur && iter;
2966 iter = g_list_next (iter), cur = cur->next)
2967 {
2968 GtkWidget *w = GTK_WIDGET (iter->data);
2969
2970 /* Skip tearoff items, they have no counterpart in val. */
2971 if (GTK_IS_TEAROFF_MENU_ITEM (w))
2972 {
2973 has_tearoff_p = 1;
2974 iter = g_list_next (iter);
2975 if (iter) w = GTK_WIDGET (iter->data);
2976 else break;
2977 }
2978
2979 /* Remember first radio button in a group. If we get a mismatch in
2980 a radio group we must rebuild the whole group so that the connections
2981 in GTK becomes correct. */
2982 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
2983 first_radio = iter;
2984 else if (cur->button_type != BUTTON_TYPE_RADIO
2985 && ! GTK_IS_RADIO_MENU_ITEM (w))
2986 first_radio = 0;
2987
2988 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
2989 {
4039c786 2990 if (! menu_separator_name_p (cur->name))
f392e843
JD
2991 break;
2992 }
2993 else if (GTK_IS_CHECK_MENU_ITEM (w))
2994 {
2995 if (cur->button_type != BUTTON_TYPE_TOGGLE)
2996 break;
2997 xg_update_toggle_item (cur, w);
2998 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2999 }
3000 else if (GTK_IS_RADIO_MENU_ITEM (w))
3001 {
3002 if (cur->button_type != BUTTON_TYPE_RADIO)
3003 break;
3004 xg_update_radio_item (cur, w);
3005 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3006 }
3007 else if (GTK_IS_MENU_ITEM (w))
3008 {
3009 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3010 GtkWidget *sub;
3011
3012 if (cur->button_type != BUTTON_TYPE_NONE ||
4039c786 3013 menu_separator_name_p (cur->name))
f392e843
JD
3014 break;
3015
3016 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3017
3018 sub = gtk_menu_item_get_submenu (witem);
3019 if (sub && ! cur->contents)
3020 {
3021 /* Not a submenu anymore. */
e547b051
J
3022 g_object_ref (G_OBJECT (sub));
3023 remove_submenu (witem);
f392e843
JD
3024 gtk_widget_destroy (sub);
3025 }
3026 else if (cur->contents)
3027 {
3028 GtkWidget *nsub;
3029
3030 nsub = xg_update_submenu (sub, f, cur->contents,
3031 select_cb, deactivate_cb,
3032 highlight_cb, cl_data);
3033
3034 /* If this item just became a submenu, we must set it. */
3035 if (nsub != sub)
3036 gtk_menu_item_set_submenu (witem, nsub);
3037 }
3038 }
3039 else
3040 {
3041 /* Structural difference. Remove everything from here and down
3042 in SUBMENU. */
3043 break;
3044 }
3045 }
3046
3047 /* Remove widgets from first structual change. */
3048 if (iter)
3049 {
3050 /* If we are adding new menu items below, we must remove from
3051 first radio button so that radio groups become correct. */
71bacd48
JD
3052 if (cur && first_radio) xg_destroy_widgets (first_radio);
3053 else xg_destroy_widgets (iter);
f392e843 3054 }
177c0ea7 3055
f392e843
JD
3056 if (cur)
3057 {
3058 /* More items added. Create them. */
3059 newsub = create_menus (cur,
3060 f,
3061 select_cb,
3062 deactivate_cb,
3063 highlight_cb,
3064 0,
3065 0,
3066 ! has_tearoff_p,
3067 submenu,
3068 cl_data,
3069 0);
3070 }
177c0ea7 3071
49853a4d
JD
3072 if (list) g_list_free (list);
3073
f392e843
JD
3074 return newsub;
3075}
3076
3077/* Update the MENUBAR.
3078 F is the frame the menu bar belongs to.
3079 VAL describes the contents of the menu bar.
3080 If DEEP_P is non-zero, rebuild all but the top level menu names in
3081 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3082 SELECT_CB is the callback to use when a menu item is selected.
3083 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3084 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
71bacd48 3085
f392e843 3086void
d5a3eaaf
AS
3087xg_modify_menubar_widgets (GtkWidget *menubar, FRAME_PTR f, widget_value *val,
3088 int deep_p,
3089 GCallback select_cb, GCallback deactivate_cb,
3090 GCallback highlight_cb)
f392e843
JD
3091{
3092 xg_menu_cb_data *cl_data;
3093 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
f392e843
JD
3094
3095 if (! list) return;
177c0ea7 3096
f392e843
JD
3097 cl_data = (xg_menu_cb_data*) g_object_get_data (G_OBJECT (menubar),
3098 XG_FRAME_DATA);
3099
da18b5ac 3100 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
d1c38b57 3101 select_cb, deactivate_cb, highlight_cb, cl_data);
da18b5ac 3102
aa41b0bf 3103 if (deep_p)
f392e843
JD
3104 {
3105 widget_value *cur;
3106
3107 /* Update all sub menus.
da18b5ac 3108 We must keep the submenus (GTK menu item widgets) since the
f392e843
JD
3109 X Window in the XEvent that activates the menu are those widgets. */
3110
3111 /* Update cl_data, menu_item things in F may have changed. */
3112 update_cl_data (cl_data, f, highlight_cb);
3113
3114 for (cur = val->contents; cur; cur = cur->next)
3115 {
49853a4d 3116 GList *iter;
f392e843
JD
3117 GtkWidget *sub = 0;
3118 GtkWidget *newsub;
e4c8d29a 3119 GtkMenuItem *witem = 0;
f392e843
JD
3120
3121 /* Find sub menu that corresponds to val and update it. */
3122 for (iter = list ; iter; iter = g_list_next (iter))
3123 {
3124 witem = GTK_MENU_ITEM (iter->data);
3125 if (xg_item_label_same_p (witem, cur->name))
3126 {
3127 sub = gtk_menu_item_get_submenu (witem);
3128 break;
3129 }
3130 }
177c0ea7 3131
f392e843
JD
3132 newsub = xg_update_submenu (sub,
3133 f,
3134 cur->contents,
3135 select_cb,
3136 deactivate_cb,
3137 highlight_cb,
3138 cl_data);
3139 /* sub may still be NULL. If we just updated non deep and added
3140 a new menu bar item, it has no sub menu yet. So we set the
3141 newly created sub menu under witem. */
e4c8d29a 3142 if (newsub != sub && witem != 0)
810f2256
JD
3143 {
3144 xg_set_screen (newsub, f);
3145 gtk_menu_item_set_submenu (witem, newsub);
3146 }
f392e843
JD
3147 }
3148 }
3149
49853a4d 3150 g_list_free (list);
f392e843
JD
3151 gtk_widget_show_all (menubar);
3152}
3153
8d7f026f
JD
3154/* Callback called when the menu bar W is mapped.
3155 Used to find the height of the menu bar if we didn't get it
3156 after showing the widget. */
3157
3158static void
3159menubar_map_cb (GtkWidget *w, gpointer user_data)
3160{
3161 GtkRequisition req;
3162 FRAME_PTR f = (FRAME_PTR) user_data;
0afb4571 3163 gtk_widget_get_preferred_size (w, NULL, &req);
088c8c09 3164 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
8d7f026f
JD
3165 {
3166 FRAME_MENUBAR_HEIGHT (f) = req.height;
088c8c09 3167 xg_height_or_width_changed (f);
8d7f026f
JD
3168 }
3169}
3170
f392e843
JD
3171/* Recompute all the widgets of frame F, when the menu bar has been
3172 changed. Value is non-zero if widgets were updated. */
3173
3174int
971de7fb 3175xg_update_frame_menubar (FRAME_PTR f)
f392e843
JD
3176{
3177 struct x_output *x = f->output_data.x;
3178 GtkRequisition req;
177c0ea7 3179
e547b051 3180 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
f392e843
JD
3181 return 0;
3182
473a99b7
JD
3183 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3184 return 0; /* Already done this, happens for frames created invisible. */
3185
f392e843
JD
3186 BLOCK_INPUT;
3187
3188 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3189 FALSE, FALSE, 0);
3190 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3191
8d7f026f 3192 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
f392e843 3193 gtk_widget_show_all (x->menubar_widget);
0afb4571 3194 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
07976ae3 3195
8d7f026f
JD
3196 /* If menu bar doesn't know its height yet, cheat a little so the frame
3197 doesn't jump so much when resized later in menubar_map_cb. */
3198 if (req.height == 0)
3199 req.height = 23;
3200
3201 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3202 {
3203 FRAME_MENUBAR_HEIGHT (f) = req.height;
07976ae3 3204 xg_height_or_width_changed (f);
8d7f026f 3205 }
f392e843 3206 UNBLOCK_INPUT;
a8303f92
AS
3207
3208 return 1;
f392e843
JD
3209}
3210
3211/* Get rid of the menu bar of frame F, and free its storage.
3212 This is used when deleting a frame, and when turning off the menu bar. */
3213
3214void
971de7fb 3215free_frame_menubar (FRAME_PTR f)
f392e843
JD
3216{
3217 struct x_output *x = f->output_data.x;
3218
3219 if (x->menubar_widget)
3220 {
3221 BLOCK_INPUT;
3222
3223 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3224 /* The menubar and its children shall be deleted when removed from
3225 the container. */
3226 x->menubar_widget = 0;
3227 FRAME_MENUBAR_HEIGHT (f) = 0;
bfeabdc3 3228 xg_height_or_width_changed (f);
f392e843
JD
3229 UNBLOCK_INPUT;
3230 }
3231}
3232
b78f9767
J
3233int
3234xg_event_is_for_menubar (FRAME_PTR f, XEvent *event)
3235{
3236 struct x_output *x = f->output_data.x;
499322ce
J
3237 GList *iter;
3238 GdkRectangle rec;
3239 GList *list;
3240 GdkDisplay *gdpy;
3241 GdkWindow *gw;
3242 GdkEvent gevent;
3243 GtkWidget *gwdesc;
b78f9767
J
3244
3245 if (! x->menubar_widget) return 0;
3246
3247 if (! (event->xbutton.x >= 0
3248 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3249 && event->xbutton.y >= 0
3250 && event->xbutton.y < f->output_data.x->menubar_height
3251 && event->xbutton.same_screen))
3252 return 0;
3253
499322ce 3254 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
0afb4571 3255 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
499322ce
J
3256 if (! gw) return 0;
3257 gevent.any.window = gw;
3b574623 3258 gevent.any.type = GDK_NOTHING;
499322ce
J
3259 gwdesc = gtk_get_event_widget (&gevent);
3260 if (! gwdesc) return 0;
3261 if (! GTK_IS_MENU_BAR (gwdesc)
3262 && ! GTK_IS_MENU_ITEM (gwdesc)
3263 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3264 return 0;
3265
3266 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
b78f9767 3267 if (! list) return 0;
b78f9767
J
3268 rec.x = event->xbutton.x;
3269 rec.y = event->xbutton.y;
3270 rec.width = 1;
3271 rec.height = 1;
499322ce 3272
b78f9767
J
3273 for (iter = list ; iter; iter = g_list_next (iter))
3274 {
3275 GtkWidget *w = GTK_WIDGET (iter->data);
ce6e9d7f 3276 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
b78f9767
J
3277 break;
3278 }
3279 g_list_free (list);
3280 return iter == 0 ? 0 : 1;
3281}
3282
f392e843
JD
3283
3284\f
3285/***********************************************************************
3286 Scroll bar functions
3287 ***********************************************************************/
3288
3289
3290/* Setting scroll bar values invokes the callback. Use this variable
3291 to indicate that callback should do nothing. */
71bacd48 3292
f392e843
JD
3293int xg_ignore_gtk_scrollbar;
3294
c195f2de
JD
3295/* The width of the scroll bar for the current theme. */
3296
3297static int scroll_bar_width_for_theme;
3298
056ce195
SM
3299/* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3300 may be larger than 32 bits. Keep a mapping from integer index to widget
3301 pointers to get around the 32 bit limitation. */
71bacd48 3302
f392e843
JD
3303static struct
3304{
3305 GtkWidget **widgets;
0eb0f318
PE
3306 ptrdiff_t max_size;
3307 ptrdiff_t used;
81e302ef 3308} id_to_widget;
f392e843
JD
3309
3310/* Grow this much every time we need to allocate more */
71bacd48 3311
f392e843
JD
3312#define ID_TO_WIDGET_INCR 32
3313
3314/* Store the widget pointer W in id_to_widget and return the integer index. */
71bacd48 3315
0eb0f318 3316static ptrdiff_t
971de7fb 3317xg_store_widget_in_map (GtkWidget *w)
f392e843 3318{
0eb0f318 3319 ptrdiff_t i;
f392e843
JD
3320
3321 if (id_to_widget.max_size == id_to_widget.used)
3322 {
0eb0f318 3323 ptrdiff_t new_size;
0065d054 3324 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
0eb0f318 3325 memory_full (SIZE_MAX);
f392e843 3326
0eb0f318 3327 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
0065d054
PE
3328 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3329 new_size, sizeof (GtkWidget *));
f392e843
JD
3330
3331 for (i = id_to_widget.max_size; i < new_size; ++i)
3332 id_to_widget.widgets[i] = 0;
3333 id_to_widget.max_size = new_size;
3334 }
3335
3336 /* Just loop over the array and find a free place. After all,
3337 how many scroll bars are we creating? Should be a small number.
3338 The check above guarantees we will find a free place. */
3339 for (i = 0; i < id_to_widget.max_size; ++i)
3340 {
3341 if (! id_to_widget.widgets[i])
3342 {
3343 id_to_widget.widgets[i] = w;
3344 ++id_to_widget.used;
3345
3346 return i;
3347 }
3348 }
3349
3350 /* Should never end up here */
3351 abort ();
3352}
3353
3354/* Remove pointer at IDX from id_to_widget.
3355 Called when scroll bar is destroyed. */
71bacd48 3356
f392e843 3357static void
0eb0f318 3358xg_remove_widget_from_map (ptrdiff_t idx)
f392e843
JD
3359{
3360 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3361 {
3362 id_to_widget.widgets[idx] = 0;
3363 --id_to_widget.used;
3364 }
3365}
3366
3367/* Get the widget pointer at IDX from id_to_widget. */
71bacd48 3368
f392e843 3369static GtkWidget *
0eb0f318 3370xg_get_widget_from_map (ptrdiff_t idx)
f392e843
JD
3371{
3372 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3373 return id_to_widget.widgets[idx];
3374
3375 return 0;
3376}
3377
c195f2de
JD
3378static void
3379update_theme_scrollbar_width (void)
a059fe24 3380{
43f862f7
AS
3381#ifdef HAVE_GTK3
3382 GtkAdjustment *vadj;
3383#else
3384 GtkObject *vadj;
3385#endif
3386 GtkWidget *wscroll;
a059fe24 3387 int w = 0, b = 0;
c195f2de 3388
43f862f7
AS
3389 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3390 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
c195f2de 3391 g_object_ref_sink (G_OBJECT (wscroll));
a059fe24
JD
3392 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3393 gtk_widget_destroy (wscroll);
c195f2de 3394 g_object_unref (G_OBJECT (wscroll));
a059fe24
JD
3395 w += 2*b;
3396 if (w < 16) w = 16;
c195f2de
JD
3397 scroll_bar_width_for_theme = w;
3398}
3399
3400int
3401xg_get_default_scrollbar_width (void)
3402{
3403 return scroll_bar_width_for_theme;
a059fe24
JD
3404}
3405
810f2256 3406/* Return the scrollbar id for X Window WID on display DPY.
3a8a22fc 3407 Return -1 if WID not in id_to_widget. */
71bacd48 3408
0eb0f318 3409ptrdiff_t
971de7fb 3410xg_get_scroll_id_for_window (Display *dpy, Window wid)
3a8a22fc 3411{
0eb0f318 3412 ptrdiff_t idx;
3a8a22fc
JD
3413 GtkWidget *w;
3414
810f2256 3415 w = xg_win_to_widget (dpy, wid);
3a8a22fc
JD
3416
3417 if (w)
3418 {
3419 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3420 if (id_to_widget.widgets[idx] == w)
3421 return idx;
3422 }
3423
3424 return -1;
3425}
3426
f392e843
JD
3427/* Callback invoked when scroll bar WIDGET is destroyed.
3428 DATA is the index into id_to_widget for WIDGET.
cea9be54 3429 We free pointer to last scroll bar values here and remove the index. */
71bacd48 3430
f392e843 3431static void
971de7fb 3432xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
f392e843 3433{
0eb0f318 3434 intptr_t id = (intptr_t) data;
f392e843
JD
3435 xg_remove_widget_from_map (id);
3436}
3437
f392e843
JD
3438/* Create a scroll bar widget for frame F. Store the scroll bar
3439 in BAR.
3440 SCROLL_CALLBACK is the callback to invoke when the value of the
3441 bar changes.
e5f0bc9a 3442 END_CALLBACK is the callback to invoke when scrolling ends.
f392e843
JD
3443 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3444 to set resources for the widget. */
71bacd48 3445
f392e843 3446void
e4c8d29a
J
3447xg_create_scroll_bar (FRAME_PTR f,
3448 struct scroll_bar *bar,
3449 GCallback scroll_callback,
3450 GCallback end_callback,
675e2c69 3451 const char *scroll_bar_name)
f392e843
JD
3452{
3453 GtkWidget *wscroll;
1755a397 3454 GtkWidget *webox;
d01a7826 3455 intptr_t scroll_id;
0afb4571
J
3456#ifdef HAVE_GTK3
3457 GtkAdjustment *vadj;
3458#else
3459 GtkObject *vadj;
3460#endif
177c0ea7 3461
f392e843
JD
3462 /* Page, step increment values are not so important here, they
3463 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3464 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3465 0.1, 0.1, 0.1);
3466
3467 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
1755a397 3468 webox = gtk_event_box_new ();
f392e843 3469 gtk_widget_set_name (wscroll, scroll_bar_name);
0afb4571 3470#ifndef HAVE_GTK3
f392e843 3471 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
0afb4571 3472#endif
e5f0bc9a 3473 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
177c0ea7 3474
f392e843 3475 scroll_id = xg_store_widget_in_map (wscroll);
177c0ea7 3476
f392e843
JD
3477 g_signal_connect (G_OBJECT (wscroll),
3478 "destroy",
3479 G_CALLBACK (xg_gtk_scroll_destroy),
8ac068ac 3480 (gpointer) scroll_id);
e5f0bc9a
JD
3481 g_signal_connect (G_OBJECT (wscroll),
3482 "change-value",
3483 scroll_callback,
3484 (gpointer) bar);
e8d7886a
JD
3485 g_signal_connect (G_OBJECT (wscroll),
3486 "button-release-event",
e5f0bc9a 3487 end_callback,
e8d7886a 3488 (gpointer) bar);
088c8c09 3489
1755a397
JD
3490 /* The scroll bar widget does not draw on a window of its own. Instead
3491 it draws on the parent window, in this case the edit widget. So
3492 whenever the edit widget is cleared, the scroll bar needs to redraw
3493 also, which causes flicker. Put an event box between the edit widget
3494 and the scroll bar, so the scroll bar instead draws itself on the
3495 event box window. */
3496 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3497 gtk_container_add (GTK_CONTAINER (webox), wscroll);
c43923ad 3498
f392e843
JD
3499
3500 /* Set the cursor to an arrow. */
1755a397 3501 xg_set_cursor (webox, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
f392e843 3502
056ce195 3503 bar->x_window = scroll_id;
f392e843
JD
3504}
3505
f392e843 3506/* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
71bacd48 3507
f392e843 3508void
0eb0f318 3509xg_remove_scroll_bar (FRAME_PTR f, ptrdiff_t scrollbar_id)
f392e843
JD
3510{
3511 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3512 if (w)
3513 {
1755a397 3514 GtkWidget *wparent = gtk_widget_get_parent (w);
f392e843 3515 gtk_widget_destroy (w);
1755a397 3516 gtk_widget_destroy (wparent);
f392e843
JD
3517 SET_FRAME_GARBAGED (f);
3518 }
3519}
3520
f392e843
JD
3521/* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3522 in frame F.
3523 TOP/LEFT are the new pixel positions where the bar shall appear.
3524 WIDTH, HEIGHT is the size in pixels the bar shall have. */
71bacd48 3525
f392e843 3526void
e4c8d29a 3527xg_update_scrollbar_pos (FRAME_PTR f,
0eb0f318 3528 ptrdiff_t scrollbar_id,
e4c8d29a
J
3529 int top,
3530 int left,
3531 int width,
3532 int height)
f392e843 3533{
f392e843 3534
49853a4d 3535 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
7863d625 3536
49853a4d
JD
3537 if (wscroll)
3538 {
cea9be54 3539 GtkWidget *wfixed = f->output_data.x->edit_widget;
1755a397 3540 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
8c079ebb 3541 gint msl;
7c583cd8
JD
3542
3543 /* Clear out old position. */
7c583cd8 3544 int oldx = -1, oldy = -1, oldw, oldh;
e547b051
J
3545 if (gtk_widget_get_parent (wparent) == wfixed)
3546 {
3547 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3548 "x", &oldx, "y", &oldy, NULL);
3549 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3550 }
7863d625 3551
ab2d724b 3552 /* Move and resize to new values. */
1755a397 3553 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
bc869eca
JD
3554 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3555 if (msl > height)
3556 {
3557 /* No room. Hide scroll bar as some themes output a warning if
3558 the height is less than the min size. */
3559 gtk_widget_hide (wparent);
3560 gtk_widget_hide (wscroll);
3561 }
3562 else
3563 {
3564 gtk_widget_show_all (wparent);
3565 gtk_widget_set_size_request (wscroll, width, height);
3566 }
7c583cd8 3567 gtk_widget_queue_draw (wfixed);
817d354b 3568 gdk_window_process_all_updates ();
bc869eca 3569 if (oldx != -1 && oldw > 0 && oldh > 0)
7c583cd8
JD
3570 {
3571 /* Clear under old scroll bar position. This must be done after
3572 the gtk_widget_queue_draw and gdk_window_process_all_updates
3573 above. */
3574 x_clear_area (FRAME_X_DISPLAY (f),
3575 FRAME_X_WINDOW (f),
3576 oldx, oldy, oldw, oldh, 0);
3577 }
088c8c09 3578
817d354b
JD
3579 /* GTK does not redraw until the main loop is entered again, but
3580 if there are no X events pending we will not enter it. So we sync
3581 here to get some events. */
088c8c09 3582
817d354b 3583 x_sync (f);
49853a4d
JD
3584 SET_FRAME_GARBAGED (f);
3585 cancel_mouse_face (f);
3586 }
f392e843
JD
3587}
3588
c195f2de
JD
3589/* Get the current value of the range, truncated to an integer. */
3590
3591static int
3592int_gtk_range_get_value (GtkRange *range)
3593{
3594 return gtk_range_get_value (range);
3595}
3596
3597
f392e843
JD
3598/* Set the thumb size and position of scroll bar BAR. We are currently
3599 displaying PORTION out of a whole WHOLE, and our position POSITION. */
71bacd48 3600
f392e843 3601void
e4c8d29a
J
3602xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3603 int portion,
3604 int position,
3605 int whole)
f392e843 3606{
056ce195 3607 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
f392e843
JD
3608
3609 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3610
17097258 3611 if (wscroll && NILP (bar->dragging))
f392e843
JD
3612 {
3613 GtkAdjustment *adj;
3614 gdouble shown;
3615 gdouble top;
3616 int size, value;
6048fb2a 3617 int old_size;
7863d625
JD
3618 int new_step;
3619 int changed = 0;
177c0ea7 3620
f392e843
JD
3621 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3622
17097258
JD
3623 /* We do the same as for MOTIF in xterm.c, assume 30 chars per line
3624 rather than the real portion value. This makes the thumb less likely
3625 to resize and that looks better. */
be786000 3626 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
17097258
JD
3627 /* When the thumb is at the bottom, position == whole.
3628 So we need to increase `whole' to make space for the thumb. */
3629 whole += portion;
3630
f392e843
JD
3631 if (whole <= 0)
3632 top = 0, shown = 1;
3633 else
3634 {
f392e843 3635 top = (gdouble) position / whole;
7863d625 3636 shown = (gdouble) portion / whole;
f392e843
JD
3637 }
3638
7863d625
JD
3639 size = shown * XG_SB_RANGE;
3640 size = min (size, XG_SB_RANGE);
f392e843
JD
3641 size = max (size, 1);
3642
7863d625
JD
3643 value = top * XG_SB_RANGE;
3644 value = min (value, XG_SB_MAX - size);
f392e843
JD
3645 value = max (value, XG_SB_MIN);
3646
7863d625 3647 /* Assume all lines are of equal size. */
be786000 3648 new_step = size / max (1, FRAME_LINES (f));
2a2071c3 3649
6048fb2a
PE
3650 old_size = gtk_adjustment_get_page_size (adj);
3651 if (old_size != size)
3652 {
3653 int old_step = gtk_adjustment_get_step_increment (adj);
3654 if (old_step != new_step)
3655 {
3656 gtk_adjustment_set_page_size (adj, size);
3657 gtk_adjustment_set_step_increment (adj, new_step);
3658 /* Assume a page increment is about 95% of the page size */
5f8f9cc2 3659 gtk_adjustment_set_page_increment (adj, size - size / 20);
6048fb2a
PE
3660 changed = 1;
3661 }
3662 }
17097258 3663
1e5524e7 3664 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
7863d625 3665 {
7863d625 3666 BLOCK_INPUT;
cea9be54 3667
7863d625
JD
3668 /* gtk_range_set_value invokes the callback. Set
3669 ignore_gtk_scrollbar to make the callback do nothing */
3670 xg_ignore_gtk_scrollbar = 1;
f392e843 3671
1e5524e7 3672 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
7863d625
JD
3673 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3674 else if (changed)
3675 gtk_adjustment_changed (adj);
3676
3677 xg_ignore_gtk_scrollbar = 0;
3678
3679 UNBLOCK_INPUT;
3680 }
3681 }
f392e843
JD
3682}
3683
e511451f
JD
3684/* Return non-zero if EVENT is for a scroll bar in frame F.
3685 When the same X window is used for several Gtk+ widgets, we cannot
3686 say for sure based on the X window alone if an event is for the
3687 frame. This function does additional checks.
3688
3689 Return non-zero if the event is for a scroll bar, zero otherwise. */
3690
3691int
971de7fb 3692xg_event_is_for_scrollbar (FRAME_PTR f, XEvent *event)
e511451f
JD
3693{
3694 int retval = 0;
3695
e5f0bc9a 3696 if (f && event->type == ButtonPress && event->xbutton.button < 4)
e511451f
JD
3697 {
3698 /* Check if press occurred outside the edit widget. */
3699 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3700 retval = gdk_display_get_window_at_pointer (gdpy, NULL, NULL)
e547b051 3701 != gtk_widget_get_window (f->output_data.x->edit_widget);
e511451f 3702 }
e5f0bc9a
JD
3703 else if (f
3704 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3705 || event->type == MotionNotify))
e511451f
JD
3706 {
3707 /* If we are releasing or moving the scroll bar, it has the grab. */
3bb49aaf
JD
3708 GtkWidget *w = gtk_grab_get_current ();
3709 retval = w != 0 && GTK_IS_SCROLLBAR (w);
e511451f 3710 }
088c8c09 3711
e511451f
JD
3712 return retval;
3713}
3714
3715
f392e843
JD
3716\f
3717/***********************************************************************
3718 Tool bar functions
3719 ***********************************************************************/
3720/* The key for the data we put in the GtkImage widgets. The data is
3721 the image used by Emacs. We use this to see if we need to update
3722 the GtkImage with a new image. */
3723#define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3724
2334f9e7
JD
3725/* The key for storing the latest modifiers so the activate callback can
3726 get them. */
3727#define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3728
1e0fe298
JD
3729/* The key for storing the button widget in its proxy menu item. */
3730#define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
2334f9e7 3731
98a92193
JD
3732/* The key for the data we put in the GtkImage widgets. The data is
3733 the stock name used by Emacs. We use this to see if we need to update
3734 the GtkImage with a new image. */
3735#define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3736
2154c964
JD
3737/* As above, but this is used for named theme widgets, as opposed to
3738 stock items. */
3739#define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3740
98a92193
JD
3741/* Callback function invoked when a tool bar item is pressed.
3742 W is the button widget in the tool bar that got pressed,
3743 CLIENT_DATA is an integer that is the index of the button in the
3744 tool bar. 0 is the first button. */
3745
2334f9e7 3746static gboolean
e4c8d29a
J
3747xg_tool_bar_button_cb (GtkWidget *widget,
3748 GdkEventButton *event,
3749 gpointer user_data)
2334f9e7 3750{
d01a7826 3751 intptr_t state = event->state;
8ac068ac 3752 gpointer ptr = (gpointer) state;
6e1440e6 3753 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
6d45d2a0 3754 return FALSE;
2334f9e7
JD
3755}
3756
3757
6e1440e6
JD
3758/* Callback function invoked when a tool bar item is pressed.
3759 W is the button widget in the tool bar that got pressed,
3760 CLIENT_DATA is an integer that is the index of the button in the
3761 tool bar. 0 is the first button. */
3762
f392e843 3763static void
971de7fb 3764xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
f392e843 3765{
d01a7826 3766 intptr_t idx = (intptr_t) client_data;
1e5524e7 3767 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
d01a7826 3768 intptr_t mod = (intptr_t) gmod;
2334f9e7 3769
f392e843
JD
3770 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3771 Lisp_Object key, frame;
3772 struct input_event event;
aa4ac494 3773 EVENT_INIT (event);
f392e843
JD
3774
3775 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3776 return;
3777
3778 idx *= TOOL_BAR_ITEM_NSLOTS;
177c0ea7 3779
f392e843
JD
3780 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
3781 XSETFRAME (frame, f);
991bde0d
JD
3782
3783 /* We generate two events here. The first one is to set the prefix
3784 to `(tool_bar)', see keyboard.c. */
f392e843
JD
3785 event.kind = TOOL_BAR_EVENT;
3786 event.frame_or_window = frame;
8e5a8840
JB
3787 event.arg = frame;
3788 kbd_buffer_store_event (&event);
3789
3790 event.kind = TOOL_BAR_EVENT;
991bde0d 3791 event.frame_or_window = frame;
f392e843 3792 event.arg = key;
2334f9e7 3793 /* Convert between the modifier bits GDK uses and the modifier bits
4a02423f 3794 Emacs uses. This assumes GDK and X masks are the same, which they are when
2334f9e7
JD
3795 this is written. */
3796 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), mod);
f392e843 3797 kbd_buffer_store_event (&event);
088c8c09 3798
4a02423f
JD
3799 /* Return focus to the frame after we have clicked on a detached
3800 tool bar button. */
3801 Fx_focus_frame (frame);
f392e843
JD
3802}
3803
1e0fe298
JD
3804/* Callback function invoked when a tool bar item is pressed in a detached
3805 tool bar or the overflow drop down menu.
3806 We just call xg_tool_bar_callback.
3807 W is the menu item widget that got pressed,
3808 CLIENT_DATA is an integer that is the index of the button in the
3809 tool bar. 0 is the first button. */
3810
3811static void
971de7fb 3812xg_tool_bar_proxy_callback (GtkWidget *w, gpointer client_data)
1e0fe298
JD
3813{
3814 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3815 XG_TOOL_BAR_PROXY_BUTTON));
3816 xg_tool_bar_callback (wbutton, client_data);
3817}
3818
69b16610
JD
3819
3820static gboolean
f57e2426
J
3821xg_tool_bar_help_callback (GtkWidget *w,
3822 GdkEventCrossing *event,
3823 gpointer client_data);
69b16610
JD
3824
3825/* This callback is called when a help is to be shown for an item in
3826 the detached tool bar when the detached tool bar it is not expanded. */
3827
3828static gboolean
e4c8d29a
J
3829xg_tool_bar_proxy_help_callback (GtkWidget *w,
3830 GdkEventCrossing *event,
3831 gpointer client_data)
69b16610
JD
3832{
3833 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3834 XG_TOOL_BAR_PROXY_BUTTON));
088c8c09 3835
eba5eb94 3836 return xg_tool_bar_help_callback (wbutton, event, client_data);
69b16610
JD
3837}
3838
e547b051
J
3839static GtkWidget *
3840xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
3841{
3842 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
3843 GtkWidget *c1 = (GtkWidget *) clist->data;
3afff00e
CY
3844 GtkWidget *c2 = clist->next ? (GtkWidget *) clist->next->data : NULL;
3845
e547b051
J
3846 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
3847 g_list_free (clist);
3848 return GTK_IS_LABEL (c1) ? c1 : c2;
3849}
3850
69b16610 3851
1e0fe298
JD
3852/* This callback is called when a tool item should create a proxy item,
3853 such as for the overflow menu. Also called when the tool bar is detached.
3854 If we don't create a proxy menu item, the detached tool bar will be
3855 blank. */
3856
3857static gboolean
971de7fb 3858xg_tool_bar_menu_proxy (GtkToolItem *toolitem, gpointer user_data)
1e0fe298 3859{
4039c786
CY
3860 GtkButton *wbutton = GTK_BUTTON (XG_BIN_CHILD (XG_BIN_CHILD (toolitem)));
3861 GtkWidget *vb = XG_BIN_CHILD (wbutton);
e547b051
J
3862 GtkWidget *c1;
3863 GtkLabel *wlbl = GTK_LABEL (xg_get_tool_bar_widgets (vb, &c1));
3864 GtkImage *wimage = GTK_IMAGE (c1);
f904c0f9 3865 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label
42f60557 3866 (wlbl ? gtk_label_get_text (wlbl) : "");
1e0fe298
JD
3867 GtkWidget *wmenuimage;
3868
e547b051 3869
8e5a8840 3870 if (gtk_button_get_use_stock (wbutton))
1e0fe298
JD
3871 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
3872 GTK_ICON_SIZE_MENU);
3873 else
3874 {
1e0fe298
JD
3875 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
3876 GtkImageType store_type = gtk_image_get_storage_type (wimage);
e624c3f9 3877
2b5b82db
J
3878 g_object_set (G_OBJECT (settings), "gtk-menu-images", TRUE, NULL);
3879
1e0fe298
JD
3880 if (store_type == GTK_IMAGE_STOCK)
3881 {
3882 gchar *stock_id;
3883 gtk_image_get_stock (wimage, &stock_id, NULL);
3884 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
3885 }
3886 else if (store_type == GTK_IMAGE_ICON_SET)
3887 {
3888 GtkIconSet *icon_set;
3889 gtk_image_get_icon_set (wimage, &icon_set, NULL);
3890 wmenuimage = gtk_image_new_from_icon_set (icon_set,
3891 GTK_ICON_SIZE_MENU);
3892 }
3893 else if (store_type == GTK_IMAGE_PIXBUF)
3894 {
3895 gint width, height;
8e5a8840 3896
1e0fe298
JD
3897 if (settings &&
3898 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
3899 &width, &height))
3900 {
3901 GdkPixbuf *src_pixbuf, *dest_pixbuf;
3902
3903 src_pixbuf = gtk_image_get_pixbuf (wimage);
3904 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
3905 GDK_INTERP_BILINEAR);
3906
3907 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
3908 }
e624c3f9
JD
3909 else
3910 {
3911 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
3912 abort ();
3913 }
3914 }
8e5a8840 3915 else if (store_type == GTK_IMAGE_ICON_NAME)
e624c3f9
JD
3916 {
3917 const gchar *icon_name;
3918 GtkIconSize icon_size;
3919
3920 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
3921 wmenuimage = gtk_image_new_from_icon_name (icon_name,
3922 GTK_ICON_SIZE_MENU);
3923 }
3924 else
3925 {
3926 fprintf (stderr, "internal error: store_type is %d\n", store_type);
3927 abort ();
1e0fe298
JD
3928 }
3929 }
3930 if (wmenuimage)
3931 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
3932
3933 g_signal_connect (G_OBJECT (wmenuitem),
3934 "activate",
dc2933eb 3935 G_CALLBACK (xg_tool_bar_proxy_callback),
1e0fe298
JD
3936 user_data);
3937
088c8c09 3938
1e0fe298
JD
3939 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
3940 (gpointer) wbutton);
3941 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
e547b051
J
3942 gtk_widget_set_sensitive (wmenuitem,
3943 gtk_widget_get_sensitive (GTK_WIDGET (wbutton)));
69b16610
JD
3944
3945 /* Use enter/leave notify to show help. We use the events
3946 rather than the GtkButton specific signals "enter" and
3947 "leave", so we can have only one callback. The event
3948 will tell us what kind of event it is. */
3949 g_signal_connect (G_OBJECT (wmenuitem),
3950 "enter-notify-event",
3951 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3952 user_data);
3953 g_signal_connect (G_OBJECT (wmenuitem),
3954 "leave-notify-event",
3955 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3956 user_data);
1e0fe298
JD
3957
3958 return TRUE;
3959}
3960
f392e843
JD
3961/* This callback is called when a tool bar is detached. We must set
3962 the height of the tool bar to zero when this happens so frame sizes
3963 are correctly calculated.
3964 WBOX is the handle box widget that enables detach/attach of the tool bar.
3965 W is the tool bar widget.
3966 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
71bacd48 3967
f392e843 3968static void
e4c8d29a
J
3969xg_tool_bar_detach_callback (GtkHandleBox *wbox,
3970 GtkWidget *w,
3971 gpointer client_data)
f392e843
JD
3972{
3973 FRAME_PTR f = (FRAME_PTR) client_data;
0f340cab
JD
3974
3975 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
3976 NULL);
f392e843
JD
3977
3978 if (f)
3979 {
bfeabdc3 3980 GtkRequisition req, req2;
e0910857 3981 FRAME_X_OUTPUT (f)->toolbar_detached = 1;
0afb4571
J
3982 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
3983 gtk_widget_get_preferred_size (w, NULL, &req2);
bfeabdc3
JD
3984 req.width -= req2.width;
3985 req.height -= req2.height;
3986 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
3987 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
3988 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
3989 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
3990 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
3991 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
3992 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
3993 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
3994 xg_height_or_width_changed (f);
f392e843
JD
3995 }
3996}
3997
3998/* This callback is called when a tool bar is reattached. We must set
3999 the height of the tool bar when this happens so frame sizes
4000 are correctly calculated.
4001 WBOX is the handle box widget that enables detach/attach of the tool bar.
4002 W is the tool bar widget.
4003 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
71bacd48 4004
f392e843 4005static void
e4c8d29a
J
4006xg_tool_bar_attach_callback (GtkHandleBox *wbox,
4007 GtkWidget *w,
4008 gpointer client_data)
f392e843
JD
4009{
4010 FRAME_PTR f = (FRAME_PTR) client_data;
0f340cab 4011 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
f392e843
JD
4012
4013 if (f)
4014 {
bfeabdc3 4015 GtkRequisition req, req2;
e0910857 4016 FRAME_X_OUTPUT (f)->toolbar_detached = 0;
0afb4571
J
4017 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4018 gtk_widget_get_preferred_size (w, NULL, &req2);
bfeabdc3
JD
4019 req.width += req2.width;
4020 req.height += req2.height;
4021 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4022 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4023 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4024 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4025 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4026 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4027 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4028 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4029 xg_height_or_width_changed (f);
f392e843
JD
4030 }
4031}
4032
4033/* This callback is called when the mouse enters or leaves a tool bar item.
4034 It is used for displaying and hiding the help text.
4035 W is the tool bar item, a button.
4036 EVENT is either an enter event or leave event.
4037 CLIENT_DATA is an integer that is the index of the button in the
4038 tool bar. 0 is the first button.
4039
4040 Returns FALSE to tell GTK to keep processing this event. */
71bacd48 4041
f392e843 4042static gboolean
e4c8d29a
J
4043xg_tool_bar_help_callback (GtkWidget *w,
4044 GdkEventCrossing *event,
4045 gpointer client_data)
f392e843 4046{
d01a7826 4047 intptr_t idx = (intptr_t) client_data;
f392e843
JD
4048 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4049 Lisp_Object help, frame;
4050
f392e843 4051 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
d9301435 4052 return FALSE;
f392e843
JD
4053
4054 if (event->type == GDK_ENTER_NOTIFY)
4055 {
4056 idx *= TOOL_BAR_ITEM_NSLOTS;
4057 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4058
4059 if (NILP (help))
4060 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4061 }
4062 else
4063 help = Qnil;
4064
4065 XSETFRAME (frame, f);
4066 kbd_buffer_store_help_event (frame, help);
4067
4068 return FALSE;
4069}
4070
4071
f098b121
JD
4072/* This callback is called when a tool bar item shall be redrawn.
4073 It modifies the expose event so that the GtkImage widget redraws the
4074 whole image. This to overcome a bug that makes GtkImage draw the image
4075 in the wrong place when it tries to redraw just a part of the image.
4076 W is the GtkImage to be redrawn.
4077 EVENT is the expose event for W.
4078 CLIENT_DATA is unused.
4079
4080 Returns FALSE to tell GTK to keep processing this event. */
71bacd48 4081
0afb4571 4082#ifndef HAVE_GTK3
f098b121 4083static gboolean
e4c8d29a
J
4084xg_tool_bar_item_expose_callback (GtkWidget *w,
4085 GdkEventExpose *event,
4086 gpointer client_data)
f098b121 4087{
b676f356
JD
4088 gint width, height;
4089
4090 gdk_drawable_get_size (event->window, &width, &height);
b676f356
JD
4091 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4092 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4093
810f2256
JD
4094 event->area.x = max (0, event->area.x);
4095 event->area.y = max (0, event->area.y);
c43923ad 4096
b676f356
JD
4097 event->area.width = max (width, event->area.width);
4098 event->area.height = max (height, event->area.height);
c43923ad 4099
f098b121
JD
4100 return FALSE;
4101}
0afb4571 4102#endif
f098b121 4103
bfeabdc3
JD
4104#ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4105#define toolbar_set_orientation(w, o) \
4106 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4107#else
4108#define toolbar_set_orientation(w, o) \
4109 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4110#endif
4111
1e39cbfb 4112/* Attach a tool bar to frame F. */
71bacd48 4113
f392e843 4114static void
bfeabdc3 4115xg_pack_tool_bar (FRAME_PTR f, Lisp_Object pos)
f392e843
JD
4116{
4117 struct x_output *x = f->output_data.x;
bfeabdc3 4118 int into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
177c0ea7 4119
bfeabdc3
JD
4120 toolbar_set_orientation (x->toolbar_widget,
4121 into_hbox
4122 ? GTK_ORIENTATION_VERTICAL
4123 : GTK_ORIENTATION_HORIZONTAL);
4124 if (!x->handlebox_widget)
4125 {
4126 x->handlebox_widget = gtk_handle_box_new ();
4127 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
4128 G_CALLBACK (xg_tool_bar_detach_callback), f);
4129 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
4130 G_CALLBACK (xg_tool_bar_attach_callback), f);
4131 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
4132 x->toolbar_widget);
4133 }
4721152c 4134
088c8c09 4135 if (into_hbox)
bfeabdc3 4136 {
318a04c6
J
4137 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4138 GTK_POS_TOP);
bfeabdc3
JD
4139 gtk_box_pack_start (GTK_BOX (x->hbox_widget), x->handlebox_widget,
4140 FALSE, FALSE, 0);
4141
4142 if (EQ (pos, Qleft))
4143 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4144 x->handlebox_widget,
4145 0);
4146 x->toolbar_in_hbox = 1;
4147 }
4148 else
4149 {
4150 int vbox_pos = x->menubar_widget ? 1 : 0;
318a04c6
J
4151 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4152 GTK_POS_LEFT);
bfeabdc3
JD
4153 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->handlebox_widget,
4154 FALSE, FALSE, 0);
4155
4156 if (EQ (pos, Qtop))
4157 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4158 x->handlebox_widget,
4159 vbox_pos);
4160 x->toolbar_in_hbox = 0;
4161 }
1e39cbfb
JD
4162}
4163
4164/* Create a tool bar for frame F. */
4165
4166static void
971de7fb 4167xg_create_tool_bar (FRAME_PTR f)
1e39cbfb
JD
4168{
4169 struct x_output *x = f->output_data.x;
1e39cbfb
JD
4170
4171 x->toolbar_widget = gtk_toolbar_new ();
4172 x->toolbar_detached = 0;
f392e843 4173
f098b121
JD
4174 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4175
f098b121 4176 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
8a52f00a 4177 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
1e39cbfb 4178}
f098b121 4179
177c0ea7 4180
1e39cbfb 4181#define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
f392e843 4182
98a92193
JD
4183/* Find the right-to-left image named by RTL in the tool bar images for F.
4184 Returns IMAGE if RTL is not found. */
4185
4186static Lisp_Object
971de7fb 4187find_rtl_image (FRAME_PTR f, Lisp_Object image, Lisp_Object rtl)
98a92193
JD
4188{
4189 int i;
4190 Lisp_Object file, rtl_name;
4191 struct gcpro gcpro1, gcpro2;
4192 GCPRO2 (file, rtl_name);
4193
4194 rtl_name = Ffile_name_nondirectory (rtl);
4195
4196 for (i = 0; i < f->n_tool_bar_items; ++i)
4197 {
4198 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
8e5a8840 4199 if (!NILP (file = file_for_image (rtl_image)))
98a92193
JD
4200 {
4201 file = call1 (intern ("file-name-sans-extension"),
4202 Ffile_name_nondirectory (file));
4203 if (EQ (Fequal (file, rtl_name), Qt))
4204 {
4205 image = rtl_image;
4206 break;
4207 }
4208 }
4209 }
4210
4211 return image;
4212}
4213
f904c0f9
JD
4214static GtkToolItem *
4215xg_make_tool_item (FRAME_PTR f,
4216 GtkWidget *wimage,
4217 GtkWidget **wbutton,
8ea90aa3 4218 const char *label,
3afff00e 4219 int i, int horiz, int text_image)
f904c0f9
JD
4220{
4221 GtkToolItem *ti = gtk_tool_item_new ();
3afff00e 4222 GtkWidget *vb = horiz ? gtk_hbox_new (FALSE, 0) : gtk_vbox_new (FALSE, 0);
f904c0f9 4223 GtkWidget *wb = gtk_button_new ();
115b96bd 4224 /* The eventbox is here so we can have tooltips on disabled items. */
f904c0f9
JD
4225 GtkWidget *weventbox = gtk_event_box_new ();
4226
3afff00e 4227 if (wimage && !text_image)
e547b051 4228 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
3afff00e
CY
4229 if (label)
4230 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
8a52f00a
JD
4231 if (wimage && text_image)
4232 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4233
f904c0f9
JD
4234 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4235 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4236 gtk_container_add (GTK_CONTAINER (wb), vb);
4237 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4238 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4239
fe0b6370 4240 if (wimage || label)
f904c0f9 4241 {
d01a7826 4242 intptr_t ii = i;
8ac068ac
PE
4243 gpointer gi = (gpointer) ii;
4244
f904c0f9
JD
4245 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4246 G_CALLBACK (xg_tool_bar_menu_proxy),
8ac068ac 4247 gi);
f904c0f9
JD
4248
4249 g_signal_connect (G_OBJECT (wb), "clicked",
4250 G_CALLBACK (xg_tool_bar_callback),
8ac068ac 4251 gi);
f904c0f9 4252
f904c0f9
JD
4253 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4254
0afb4571 4255#ifndef HAVE_GTK3
f904c0f9
JD
4256 /* Catch expose events to overcome an annoying redraw bug, see
4257 comment for xg_tool_bar_item_expose_callback. */
4258 g_signal_connect (G_OBJECT (ti),
4259 "expose-event",
4260 G_CALLBACK (xg_tool_bar_item_expose_callback),
4261 0);
0afb4571 4262#endif
f904c0f9
JD
4263 gtk_tool_item_set_homogeneous (ti, FALSE);
4264
4265 /* Callback to save modifyer mask (Shift/Control, etc). GTK makes
4266 no distinction based on modifiers in the activate callback,
4267 so we have to do it ourselves. */
4268 g_signal_connect (wb, "button-release-event",
4269 G_CALLBACK (xg_tool_bar_button_cb),
4270 NULL);
4271
4272 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
088c8c09 4273
f904c0f9
JD
4274 /* Use enter/leave notify to show help. We use the events
4275 rather than the GtkButton specific signals "enter" and
4276 "leave", so we can have only one callback. The event
4277 will tell us what kind of event it is. */
4278 /* The EMACS_INT cast avoids a warning. */
4279 g_signal_connect (G_OBJECT (weventbox),
4280 "enter-notify-event",
4281 G_CALLBACK (xg_tool_bar_help_callback),
8ac068ac 4282 gi);
f904c0f9
JD
4283 g_signal_connect (G_OBJECT (weventbox),
4284 "leave-notify-event",
4285 G_CALLBACK (xg_tool_bar_help_callback),
8ac068ac 4286 gi);
f904c0f9 4287 }
088c8c09 4288
f904c0f9
JD
4289 if (wbutton) *wbutton = wb;
4290
4291 return ti;
4292}
4293
3afff00e
CY
4294static int
4295xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4296 const char *icon_name, const struct image *img,
4297 const char *label, int horiz)
f904c0f9 4298{
3afff00e 4299 gpointer old;
e547b051 4300 GtkWidget *wimage;
3afff00e 4301 GtkWidget *vb = XG_BIN_CHILD (wbutton);
e547b051 4302 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
f904c0f9 4303
3afff00e 4304 /* Check if the tool icon matches. */
fe0b6370 4305 if (stock_name && wimage)
3afff00e
CY
4306 {
4307 old = g_object_get_data (G_OBJECT (wimage),
4308 XG_TOOL_BAR_STOCK_NAME);
4309 if (!old || strcmp (old, stock_name))
4310 return 1;
4311 }
fe0b6370 4312 else if (icon_name && wimage)
f904c0f9 4313 {
3afff00e
CY
4314 old = g_object_get_data (G_OBJECT (wimage),
4315 XG_TOOL_BAR_ICON_NAME);
4316 if (!old || strcmp (old, icon_name))
4317 return 1;
f904c0f9 4318 }
fe0b6370 4319 else if (wimage)
3afff00e 4320 {
1e5524e7
PE
4321 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4322 XG_TOOL_BAR_IMAGE_DATA);
4323 Pixmap old_img = (Pixmap) gold_img;
3afff00e
CY
4324 if (old_img != img->pixmap)
4325 return 1;
4326 }
4327
4328 /* Check button configuration and label. */
4329 if ((horiz ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb))
4330 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4331 return 1;
f904c0f9 4332
3afff00e 4333 /* Ensure label is correct. */
fe0b6370 4334 if (label && wlbl)
3afff00e
CY
4335 gtk_label_set_text (GTK_LABEL (wlbl), label);
4336 return 0;
f904c0f9
JD
4337}
4338
bfeabdc3
JD
4339static int
4340xg_update_tool_bar_sizes (FRAME_PTR f)
4341{
4342 struct x_output *x = f->output_data.x;
4343 GtkRequisition req;
4344 int nl = 0, nr = 0, nt = 0, nb = 0;
4345
0afb4571 4346 gtk_widget_get_preferred_size (GTK_WIDGET (x->handlebox_widget), NULL, &req);
bfeabdc3
JD
4347 if (x->toolbar_in_hbox)
4348 {
4349 int pos;
4350 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4351 x->handlebox_widget,
4352 "position", &pos, NULL);
4353 if (pos == 0) nl = req.width;
4354 else nr = req.width;
4355 }
4356 else
4357 {
4358 int pos;
4359 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4360 x->handlebox_widget,
4361 "position", &pos, NULL);
4362 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4363 else nb = req.height;
4364 }
088c8c09 4365
bfeabdc3
JD
4366 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4367 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4368 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4369 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4370 {
4371 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4372 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4373 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4374 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4375 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4376 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4377 return 1;
4378 }
4379
4380 return 0;
4381}
4382
f904c0f9 4383
71bacd48
JD
4384/* Update the tool bar for frame F. Add new buttons and remove old. */
4385
f392e843 4386void
971de7fb 4387update_frame_tool_bar (FRAME_PTR f)
f392e843 4388{
3afff00e 4389 int i, j;
f392e843 4390 struct x_output *x = f->output_data.x;
bfc2a7d1 4391 int hmargin = 0, vmargin = 0;
98a92193 4392 GtkToolbar *wtoolbar;
6e1440e6 4393 GtkToolItem *ti;
98a92193 4394 GtkTextDirection dir;
1e39cbfb 4395 int pack_tool_bar = x->handlebox_widget == NULL;
3afff00e
CY
4396 Lisp_Object style;
4397 int text_image, horiz;
4398
f392e843
JD
4399 if (! FRAME_GTK_WIDGET (f))
4400 return;
4401
4402 BLOCK_INPUT;
177c0ea7 4403
133c0116
JD
4404 if (INTEGERP (Vtool_bar_button_margin)
4405 && XINT (Vtool_bar_button_margin) > 0)
4406 {
4407 hmargin = XFASTINT (Vtool_bar_button_margin);
4408 vmargin = XFASTINT (Vtool_bar_button_margin);
4409 }
4410 else if (CONSP (Vtool_bar_button_margin))
4411 {
4412 if (INTEGERP (XCAR (Vtool_bar_button_margin))
4413 && XINT (XCAR (Vtool_bar_button_margin)) > 0)
4414 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4415
4416 if (INTEGERP (XCDR (Vtool_bar_button_margin))
4417 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
4418 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4419 }
4420
4421 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4422 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4423 i.e. zero. This means that margins less than
4424 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4425 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4426 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
c43923ad 4427
f392e843
JD
4428 if (! x->toolbar_widget)
4429 xg_create_tool_bar (f);
4430
98a92193 4431 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
f904c0f9 4432 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
088c8c09 4433
3afff00e
CY
4434 style = Ftool_bar_get_system_style ();
4435 text_image = EQ (style, Qtext_image_horiz);
4436 horiz = EQ (style, Qboth_horiz) || text_image;
4437
4438 for (i = j = 0; i < f->n_tool_bar_items; ++i)
f392e843 4439 {
f392e843
JD
4440 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4441 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4442 int idx;
13464394 4443 ptrdiff_t img_id;
98a92193
JD
4444 int icon_size = 0;
4445 struct image *img = NULL;
f392e843 4446 Lisp_Object image;
495effe5 4447 Lisp_Object stock = Qnil;
98a92193
JD
4448 GtkStockItem stock_item;
4449 char *stock_name = NULL;
2154c964 4450 char *icon_name = NULL;
98a92193 4451 Lisp_Object rtl;
b42ff099 4452 GtkWidget *wbutton = NULL;
d4ad8c04 4453 Lisp_Object specified_file;
d2bd5189 4454 int vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
3afff00e
CY
4455 const char *label
4456 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4457 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4458 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4459 : "";
d2bd5189 4460
3afff00e 4461 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
6e1440e6 4462
4039c786
CY
4463 /* If this is a separator, use a gtk separator item. */
4464 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4465 {
4466 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4467 {
4468 if (ti)
4469 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4470 GTK_WIDGET (ti));
4471 ti = gtk_separator_tool_item_new ();
3afff00e 4472 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4039c786 4473 }
3afff00e 4474 j++;
4039c786
CY
4475 continue;
4476 }
4477
4478 /* Otherwise, the tool-bar item is an ordinary button. */
4479
4480 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4481 {
4482 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4483 ti = NULL;
4484 }
f904c0f9 4485
3afff00e 4486 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
f392e843
JD
4487
4488 /* Ignore invalid image specifications. */
4039c786 4489 image = PROP (TOOL_BAR_ITEM_IMAGES);
f392e843
JD
4490 if (!valid_image_p (image))
4491 {
3afff00e
CY
4492 if (ti)
4493 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4494 GTK_WIDGET (ti));
f392e843
JD
4495 continue;
4496 }
4497
d4ad8c04 4498 specified_file = file_for_image (image);
4e6b227d
CY
4499 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4500 stock = call1 (Qx_gtk_map_stock, specified_file);
f392e843 4501
4e6b227d 4502 if (STRINGP (stock))
98a92193
JD
4503 {
4504 stock_name = SSDATA (stock);
2154c964
JD
4505 if (stock_name[0] == 'n' && stock_name[1] == ':')
4506 {
4507 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4508 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
4509
4510 icon_name = stock_name + 2;
4511 stock_name = NULL;
4512 stock = Qnil;
4513
4514 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
4515 icon_name = NULL;
4516 else
4517 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4518 }
4519 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
f904c0f9 4520 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
8e5a8840 4521 else
2154c964
JD
4522 {
4523 stock = Qnil;
4524 stock_name = NULL;
4525 }
98a92193 4526 }
2154c964
JD
4527
4528 if (stock_name == NULL && icon_name == NULL)
1d1885fc 4529 {
3afff00e
CY
4530 /* No stock image, or stock item not known. Try regular
4531 image. If image is a vector, choose it according to the
98a92193
JD
4532 button state. */
4533 if (dir == GTK_TEXT_DIR_RTL
4534 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4535 && STRINGP (rtl))
3afff00e 4536 image = find_rtl_image (f, image, rtl);
98a92193
JD
4537
4538 if (VECTORP (image))
4539 {
4540 if (enabled_p)
4541 idx = (selected_p
4542 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4543 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4544 else
4545 idx = (selected_p
4546 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4547 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4548
4549 xassert (ASIZE (image) >= idx);
4550 image = AREF (image, idx);
4551 }
4552 else
4553 idx = -1;
4554
4555 img_id = lookup_image (f, image);
4556 img = IMAGE_FROM_ID (f, img_id);
4557 prepare_image_for_display (f, img);
8e5a8840 4558
98a92193
JD
4559 if (img->load_failed_p || img->pixmap == None)
4560 {
f904c0f9 4561 if (ti)
3afff00e
CY
4562 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4563 GTK_WIDGET (ti));
f904c0f9 4564 continue;
6e1440e6 4565 }
1d1885fc 4566 }
177c0ea7 4567
3afff00e
CY
4568 /* If there is an existing widget, check if it's stale; if so,
4569 remove it and make a new tool item from scratch. */
4570 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4571 img, label, horiz))
4572 {
4573 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4574 GTK_WIDGET (ti));
4575 ti = NULL;
4576 }
4577
6e1440e6 4578 if (ti == NULL)
ff24abfe 4579 {
98a92193 4580 GtkWidget *w;
3afff00e
CY
4581
4582 /* Save the image so we can see if an update is needed the
4583 next time we call xg_tool_item_match_p. */
4584 if (EQ (style, Qtext))
4585 w = NULL;
4586 else if (stock_name)
98a92193
JD
4587 {
4588 w = gtk_image_new_from_stock (stock_name, icon_size);
4589 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4590 (gpointer) xstrdup (stock_name),
4591 (GDestroyNotify) xfree);
4592 }
8e5a8840 4593 else if (icon_name)
2154c964
JD
4594 {
4595 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4596 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4597 (gpointer) xstrdup (icon_name),
4598 (GDestroyNotify) xfree);
4599 }
98a92193
JD
4600 else
4601 {
4602 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
98a92193
JD
4603 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4604 (gpointer)img->pixmap);
4605 }
4606
3afff00e
CY
4607 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4608 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4609 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
f904c0f9 4610 }
177c0ea7 4611
f392e843 4612#undef PROP
3afff00e
CY
4613
4614 gtk_widget_set_sensitive (wbutton, enabled_p);
4615 j++;
f392e843
JD
4616 }
4617
3afff00e 4618 /* Remove buttons not longer needed. */
6e1440e6 4619 do
f392e843 4620 {
21a76236 4621 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
3afff00e
CY
4622 if (ti)
4623 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
6e1440e6 4624 } while (ti != NULL);
f392e843 4625
bfeabdc3 4626 if (f->n_tool_bar_items != 0)
f392e843 4627 {
bfeabdc3
JD
4628 if (pack_tool_bar)
4629 xg_pack_tool_bar (f, f->tool_bar_position);
3afff00e 4630 gtk_widget_show_all (GTK_WIDGET (x->handlebox_widget));
bfeabdc3
JD
4631 if (xg_update_tool_bar_sizes (f))
4632 xg_height_or_width_changed (f);
f392e843 4633 }
bfeabdc3 4634
f392e843
JD
4635 UNBLOCK_INPUT;
4636}
4637
71bacd48
JD
4638/* Deallocate all resources for the tool bar on frame F.
4639 Remove the tool bar. */
4640
f392e843 4641void
971de7fb 4642free_frame_tool_bar (FRAME_PTR f)
f392e843
JD
4643{
4644 struct x_output *x = f->output_data.x;
4645
4646 if (x->toolbar_widget)
4647 {
d3b2a6da 4648 int is_packed = x->handlebox_widget != 0;
f392e843 4649 BLOCK_INPUT;
d3b2a6da
JD
4650 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4651 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
088c8c09 4652 if (is_packed)
bfeabdc3
JD
4653 {
4654 if (x->toolbar_in_hbox)
4655 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4656 x->handlebox_widget);
4657 else
4658 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4659 x->handlebox_widget);
4660 }
d3b2a6da
JD
4661 else
4662 gtk_widget_destroy (x->toolbar_widget);
4663
f392e843
JD
4664 x->toolbar_widget = 0;
4665 x->handlebox_widget = 0;
bfeabdc3
JD
4666 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4667 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
4668
4669 xg_height_or_width_changed (f);
f392e843 4670
f392e843
JD
4671 UNBLOCK_INPUT;
4672 }
4673}
4674
bfeabdc3
JD
4675int
4676xg_change_toolbar_position (FRAME_PTR f, Lisp_Object pos)
4677{
4678 struct x_output *x = f->output_data.x;
4679
4680 if (! x->toolbar_widget || ! x->handlebox_widget)
4681 return 1;
4682
4683 BLOCK_INPUT;
4684 g_object_ref (x->handlebox_widget);
4685 if (x->toolbar_in_hbox)
4686 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4687 x->handlebox_widget);
4688 else
4689 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4690 x->handlebox_widget);
4691 xg_pack_tool_bar (f, pos);
4692 g_object_unref (x->handlebox_widget);
4693 if (xg_update_tool_bar_sizes (f))
4694 xg_height_or_width_changed (f);
4695
4696 UNBLOCK_INPUT;
4697 return 1;
4698}
4699
f392e843
JD
4700
4701\f
4702/***********************************************************************
4703 Initializing
f904c0f9 4704***********************************************************************/
f392e843 4705void
971de7fb 4706xg_initialize (void)
f392e843 4707{
9f6fcdc5
JD
4708 GtkBindingSet *binding_set;
4709
430e6c77
JD
4710#if HAVE_XFT
4711 /* Work around a bug with corrupted data if libXft gets unloaded. This way
4712 we keep it permanently linked in. */
4713 XftInit (0);
4714#endif
879ffad9
JD
4715
4716 gdpy_def = NULL;
f392e843 4717 xg_ignore_gtk_scrollbar = 0;
da18b5ac 4718 xg_detached_menus = 0;
f392e843
JD
4719 xg_menu_cb_list.prev = xg_menu_cb_list.next =
4720 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
4721
81e302ef
JD
4722 id_to_widget.max_size = id_to_widget.used = 0;
4723 id_to_widget.widgets = 0;
4724
f392e843
JD
4725 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
4726 bindings. It doesn't seem to be any way to remove properties,
4727 so we set it to VoidSymbol which in X means "no key". */
4728 gtk_settings_set_string_property (gtk_settings_get_default (),
4729 "gtk-menu-bar-accel",
4730 "VoidSymbol",
4731 EMACS_CLASS);
81e302ef
JD
4732
4733 /* Make GTK text input widgets use Emacs style keybindings. This is
4734 Emacs after all. */
4735 gtk_settings_set_string_property (gtk_settings_get_default (),
4736 "gtk-key-theme-name",
4737 "Emacs",
4738 EMACS_CLASS);
9f6fcdc5
JD
4739
4740 /* Make dialogs close on C-g. Since file dialog inherits from
4741 dialog, this works for them also. */
dc2933eb 4742 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
0afb4571 4743 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
9f6fcdc5
JD
4744 "close", 0);
4745
4746 /* Make menus close on C-g. */
dc2933eb
JD
4747 binding_set = gtk_binding_set_by_class (g_type_class_ref
4748 (GTK_TYPE_MENU_SHELL));
0afb4571 4749 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
9f6fcdc5 4750 "cancel", 0);
c195f2de 4751 update_theme_scrollbar_width ();
f392e843
JD
4752}
4753
4754#endif /* USE_GTK */