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