Bump version to 24.4.91
[emacs.git] / src / gtkutil.c
blobb23d84c8b825f638c00bf87cd5b59619ba5992e2
1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2015 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #ifdef USE_GTK
23 #include <float.h>
24 #include <stdio.h>
26 #include <c-ctype.h>
28 #include "lisp.h"
29 #include "xterm.h"
30 #include "blockinput.h"
31 #include "syssignal.h"
32 #include "window.h"
33 #include "gtkutil.h"
34 #include "termhooks.h"
35 #include "keyboard.h"
36 #include "charset.h"
37 #include "coding.h"
38 #include "font.h"
40 #include <gdk/gdkkeysyms.h>
41 #include "xsettings.h"
43 #ifdef HAVE_XFT
44 #include <X11/Xft/Xft.h>
45 #endif
47 #ifdef HAVE_GTK3
48 #include <gtk/gtkx.h>
49 #include "emacsgtkfixed.h"
50 #endif
52 #define FRAME_TOTAL_PIXEL_HEIGHT(f) \
53 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
55 #define FRAME_TOTAL_PIXEL_WIDTH(f) \
56 (FRAME_PIXEL_WIDTH (f) + FRAME_TOOLBAR_WIDTH (f))
58 #ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
59 #define gtk_widget_set_has_window(w, b) \
60 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
61 #endif
62 #ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
63 #define gtk_dialog_get_action_area(w) ((w)->action_area)
64 #define gtk_dialog_get_content_area(w) ((w)->vbox)
65 #endif
66 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
67 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
68 #endif
69 #ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
70 #define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
71 #define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
72 #define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
73 #define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
74 #endif
75 #if GTK_CHECK_VERSION (2, 12, 0)
76 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
77 #else
78 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
79 #endif
81 #ifdef HAVE_FREETYPE
82 #if GTK_CHECK_VERSION (3, 2, 0)
83 #define USE_NEW_GTK_FONT_CHOOSER 1
84 #else
85 #define USE_NEW_GTK_FONT_CHOOSER 0
86 #define gtk_font_chooser_dialog_new(x, y) \
87 gtk_font_selection_dialog_new (x)
88 #undef GTK_FONT_CHOOSER
89 #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
90 #define gtk_font_chooser_set_font(x, y) \
91 gtk_font_selection_dialog_set_font_name (x, y)
92 #endif
93 #endif /* HAVE_FREETYPE */
95 #ifndef HAVE_GTK3
96 #ifdef USE_GTK_TOOLTIP
97 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
98 #endif
99 #define gdk_window_get_geometry(w, a, b, c, d) \
100 gdk_window_get_geometry (w, a, b, c, d, 0)
101 #define gdk_x11_window_lookup_for_display(d, w) \
102 gdk_xid_table_lookup_for_display (d, w)
103 #define gtk_box_new(ori, spacing) \
104 ((ori) == GTK_ORIENTATION_HORIZONTAL \
105 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
106 #define gtk_scrollbar_new(ori, spacing) \
107 ((ori) == GTK_ORIENTATION_HORIZONTAL \
108 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
109 #ifndef GDK_KEY_g
110 #define GDK_KEY_g GDK_g
111 #endif
112 #endif /* HAVE_GTK3 */
114 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
116 static void update_theme_scrollbar_width (void);
118 #define TB_INFO_KEY "xg_frame_tb_info"
119 struct xg_frame_tb_info
121 Lisp_Object last_tool_bar;
122 Lisp_Object style;
123 int n_last_items;
124 int hmargin, vmargin;
125 GtkTextDirection dir;
129 /***********************************************************************
130 Display handling functions
131 ***********************************************************************/
133 /* Keep track of the default display, or NULL if there is none. Emacs
134 may close all its displays. */
136 static GdkDisplay *gdpy_def;
138 /* When the GTK widget W is to be created on a display for F that
139 is not the default display, set the display for W.
140 W can be a GtkMenu or a GtkWindow widget. */
142 static void
143 xg_set_screen (GtkWidget *w, struct frame *f)
145 if (FRAME_X_DISPLAY (f) != DEFAULT_GDK_DISPLAY ())
147 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
148 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
150 if (GTK_IS_MENU (w))
151 gtk_menu_set_screen (GTK_MENU (w), gscreen);
152 else
153 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
158 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
159 *DPY is set to NULL if the display can't be opened.
161 Returns non-zero if display could be opened, zero if display could not
162 be opened, and less than zero if the GTK version doesn't support
163 multiple displays. */
165 void
166 xg_display_open (char *display_name, Display **dpy)
168 GdkDisplay *gdpy;
170 gdpy = gdk_display_open (display_name);
171 if (!gdpy_def && gdpy)
173 gdpy_def = gdpy;
174 gdk_display_manager_set_default_display (gdk_display_manager_get (),
175 gdpy);
178 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
182 /* Close display DPY. */
184 void
185 xg_display_close (Display *dpy)
187 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
189 /* If this is the default display, try to change it before closing.
190 If there is no other display to use, gdpy_def is set to NULL, and
191 the next call to xg_display_open resets the default display. */
192 if (gdk_display_get_default () == gdpy)
194 struct x_display_info *dpyinfo;
195 GdkDisplay *gdpy_new = NULL;
197 /* Find another display. */
198 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
199 if (dpyinfo->display != dpy)
201 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
202 gdk_display_manager_set_default_display (gdk_display_manager_get (),
203 gdpy_new);
204 break;
206 gdpy_def = gdpy_new;
209 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
210 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
211 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
212 can continue running, but there will be memory leaks. */
213 g_object_run_dispose (G_OBJECT (gdpy));
214 #else
215 /* This seems to be fixed in GTK 2.10. */
216 gdk_display_close (gdpy);
217 #endif
221 /***********************************************************************
222 Utility functions
223 ***********************************************************************/
224 /* The next two variables and functions are taken from lwlib. */
225 static widget_value *widget_value_free_list;
226 static int malloc_cpt;
228 /* Allocate a widget_value structure, either by taking one from the
229 widget_value_free_list or by malloc:ing a new one.
231 Return a pointer to the allocated structure. */
233 widget_value *
234 malloc_widget_value (void)
236 widget_value *wv;
237 if (widget_value_free_list)
239 wv = widget_value_free_list;
240 widget_value_free_list = wv->free_list;
241 wv->free_list = 0;
243 else
245 wv = xmalloc (sizeof *wv);
246 malloc_cpt++;
248 memset (wv, 0, sizeof (widget_value));
249 return wv;
252 /* This is analogous to free. It frees only what was allocated
253 by malloc_widget_value, and no substructures. */
255 void
256 free_widget_value (widget_value *wv)
258 if (wv->free_list)
259 emacs_abort ();
261 if (malloc_cpt > 25)
263 /* When the number of already allocated cells is too big,
264 We free it. */
265 xfree (wv);
266 malloc_cpt--;
268 else
270 wv->free_list = widget_value_free_list;
271 widget_value_free_list = wv;
276 /* Create and return the cursor to be used for popup menus and
277 scroll bars on display DPY. */
279 GdkCursor *
280 xg_create_default_cursor (Display *dpy)
282 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
283 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
286 static GdkPixbuf *
287 xg_get_pixbuf_from_pixmap (struct frame *f, Pixmap pix)
289 int iunused;
290 GdkPixbuf *tmp_buf;
291 Window wunused;
292 unsigned int width, height, uunused;
293 XImage *xim;
295 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
296 &width, &height, &uunused, &uunused);
298 xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
299 ~0, XYPixmap);
300 if (!xim) return 0;
302 tmp_buf = gdk_pixbuf_new_from_data ((guchar *) xim->data,
303 GDK_COLORSPACE_RGB,
304 FALSE,
305 xim->bitmap_unit,
306 width,
307 height,
308 xim->bytes_per_line,
309 NULL,
310 NULL);
311 XDestroyImage (xim);
312 return tmp_buf;
315 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
317 static GdkPixbuf *
318 xg_get_pixbuf_from_pix_and_mask (struct frame *f,
319 Pixmap pix,
320 Pixmap mask)
322 int width, height;
323 GdkPixbuf *icon_buf, *tmp_buf;
325 tmp_buf = xg_get_pixbuf_from_pixmap (f, pix);
326 icon_buf = gdk_pixbuf_add_alpha (tmp_buf, FALSE, 0, 0, 0);
327 g_object_unref (G_OBJECT (tmp_buf));
329 width = gdk_pixbuf_get_width (icon_buf);
330 height = gdk_pixbuf_get_height (icon_buf);
332 if (mask)
334 GdkPixbuf *mask_buf = xg_get_pixbuf_from_pixmap (f, mask);
335 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
336 guchar *mask_pixels = gdk_pixbuf_get_pixels (mask_buf);
337 int rowstride = gdk_pixbuf_get_rowstride (icon_buf);
338 int mask_rowstride = gdk_pixbuf_get_rowstride (mask_buf);
339 int y;
341 for (y = 0; y < height; ++y)
343 guchar *iconptr, *maskptr;
344 int x;
346 iconptr = pixels + y * rowstride;
347 maskptr = mask_pixels + y * mask_rowstride;
349 for (x = 0; x < width; ++x)
351 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
352 just R is sufficient. */
353 if (maskptr[0] == 0)
354 iconptr[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
356 iconptr += rowstride/width;
357 maskptr += mask_rowstride/width;
361 g_object_unref (G_OBJECT (mask_buf));
364 return icon_buf;
367 static Lisp_Object
368 file_for_image (Lisp_Object image)
370 Lisp_Object specified_file = Qnil;
371 Lisp_Object tail;
373 for (tail = XCDR (image);
374 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
375 tail = XCDR (XCDR (tail)))
376 if (EQ (XCAR (tail), QCfile))
377 specified_file = XCAR (XCDR (tail));
379 return specified_file;
382 /* For the image defined in IMG, make and return a GtkImage. For displays with
383 8 planes or less we must make a GdkPixbuf and apply the mask manually.
384 Otherwise the highlighting and dimming the tool bar code in GTK does
385 will look bad. For display with more than 8 planes we just use the
386 pixmap and mask directly. For monochrome displays, GTK doesn't seem
387 able to use external pixmaps, it looks bad whatever we do.
388 The image is defined on the display where frame F is.
389 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
390 If OLD_WIDGET is NULL, a new widget is constructed and returned.
391 If OLD_WIDGET is not NULL, that widget is modified. */
393 static GtkWidget *
394 xg_get_image_for_pixmap (struct frame *f,
395 struct image *img,
396 GtkWidget *widget,
397 GtkImage *old_widget)
399 GdkPixbuf *icon_buf;
401 /* If we have a file, let GTK do all the image handling.
402 This seems to be the only way to make insensitive and activated icons
403 look good in all cases. */
404 Lisp_Object specified_file = file_for_image (img->spec);
405 Lisp_Object file;
407 /* We already loaded the image once before calling this
408 function, so this only fails if the image file has been removed.
409 In that case, use the pixmap already loaded. */
411 if (STRINGP (specified_file)
412 && STRINGP (file = x_find_image_file (specified_file)))
414 if (! old_widget)
415 old_widget = GTK_IMAGE (gtk_image_new_from_file (SSDATA (file)));
416 else
417 gtk_image_set_from_file (old_widget, SSDATA (file));
419 return GTK_WIDGET (old_widget);
422 /* No file, do the image handling ourselves. This will look very bad
423 on a monochrome display, and sometimes bad on all displays with
424 certain themes. */
426 /* This is a workaround to make icons look good on pseudo color
427 displays. Apparently GTK expects the images to have an alpha
428 channel. If they don't, insensitive and activated icons will
429 look bad. This workaround does not work on monochrome displays,
430 and is strictly not needed on true color/static color displays (i.e.
431 16 bits and higher). But we do it anyway so we get a pixbuf that is
432 not associated with the img->pixmap. The img->pixmap may be removed
433 by clearing the image cache and then the tool bar redraw fails, since
434 Gtk+ assumes the pixmap is always there. */
435 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
437 if (icon_buf)
439 if (! old_widget)
440 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
441 else
442 gtk_image_set_from_pixbuf (old_widget, icon_buf);
444 g_object_unref (G_OBJECT (icon_buf));
447 return GTK_WIDGET (old_widget);
451 /* Set CURSOR on W and all widgets W contain. We must do like this
452 for scroll bars and menu because they create widgets internally,
453 and it is those widgets that are visible. */
455 static void
456 xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
458 GdkWindow *window = gtk_widget_get_window (w);
459 GList *children = gdk_window_peek_children (window);
461 gdk_window_set_cursor (window, cursor);
463 /* The scroll bar widget has more than one GDK window (had to look at
464 the source to figure this out), and there is no way to set cursor
465 on widgets in GTK. So we must set the cursor for all GDK windows.
466 Ditto for menus. */
468 for ( ; children; children = g_list_next (children))
469 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
472 /* Insert NODE into linked LIST. */
474 static void
475 xg_list_insert (xg_list_node *list, xg_list_node *node)
477 xg_list_node *list_start = list->next;
479 if (list_start) list_start->prev = node;
480 node->next = list_start;
481 node->prev = 0;
482 list->next = node;
485 /* Remove NODE from linked LIST. */
487 static void
488 xg_list_remove (xg_list_node *list, xg_list_node *node)
490 xg_list_node *list_start = list->next;
491 if (node == list_start)
493 list->next = node->next;
494 if (list->next) list->next->prev = 0;
496 else
498 node->prev->next = node->next;
499 if (node->next) node->next->prev = node->prev;
503 /* Allocate and return a utf8 version of STR. If STR is already
504 utf8 or NULL, just return a copy of STR.
505 A new string is allocated and the caller must free the result
506 with g_free. */
508 static char *
509 get_utf8_string (const char *str)
511 char *utf8_str;
513 if (!str) return NULL;
515 /* If not UTF-8, try current locale. */
516 if (!g_utf8_validate (str, -1, NULL))
517 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
518 else
519 return g_strdup (str);
521 if (!utf8_str)
523 /* Probably some control characters in str. Escape them. */
524 ptrdiff_t len;
525 ptrdiff_t nr_bad = 0;
526 gsize bytes_read;
527 gsize bytes_written;
528 unsigned char *p = (unsigned char *)str;
529 char *cp, *up;
530 GError *err = NULL;
532 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
533 &bytes_written, &err))
534 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
536 ++nr_bad;
537 p += bytes_written+1;
538 g_error_free (err);
539 err = NULL;
542 if (err)
544 g_error_free (err);
545 err = NULL;
547 if (cp) g_free (cp);
549 len = strlen (str);
550 if ((min (PTRDIFF_MAX, SIZE_MAX) - len - 1) / 4 < nr_bad)
551 memory_full (SIZE_MAX);
552 up = utf8_str = xmalloc (len + nr_bad * 4 + 1);
553 p = (unsigned char *)str;
555 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
556 &bytes_written, &err))
557 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
559 memcpy (up, p, bytes_written);
560 sprintf (up + bytes_written, "\\%03o", p[bytes_written]);
561 up += bytes_written+4;
562 p += bytes_written+1;
563 g_error_free (err);
564 err = NULL;
567 if (cp)
569 strcat (utf8_str, cp);
570 g_free (cp);
572 if (err)
574 g_error_free (err);
575 err = NULL;
578 return utf8_str;
581 /* Check for special colors used in face spec for region face.
582 The colors are fetched from the Gtk+ theme.
583 Return true if color was found, false if not. */
585 bool
586 xg_check_special_colors (struct frame *f,
587 const char *color_name,
588 XColor *color)
590 bool success_p = 0;
591 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
592 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
594 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
595 return success_p;
597 block_input ();
599 #ifdef HAVE_GTK3
600 GtkStyleContext *gsty
601 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
602 GdkRGBA col;
603 char buf[sizeof "rgb://rrrr/gggg/bbbb"];
604 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
605 if (get_fg)
606 gtk_style_context_get_color (gsty, state, &col);
607 else
608 gtk_style_context_get_background_color (gsty, state, &col);
610 sprintf (buf, "rgb:%04x/%04x/%04x",
611 (int)(col.red * 65535),
612 (int)(col.green * 65535),
613 (int)(col.blue * 65535));
614 success_p = (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
615 buf, color)
616 != 0);
617 #else
618 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
619 GdkColor *grgb = get_bg
620 ? &gsty->bg[GTK_STATE_SELECTED]
621 : &gsty->fg[GTK_STATE_SELECTED];
623 color->red = grgb->red;
624 color->green = grgb->green;
625 color->blue = grgb->blue;
626 color->pixel = grgb->pixel;
627 success_p = 1;
628 #endif
631 unblock_input ();
632 return success_p;
637 /***********************************************************************
638 Tooltips
639 ***********************************************************************/
640 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
641 We use that to pop down the tooltip. This happens if Gtk+ for some
642 reason wants to change or hide the tooltip. */
644 #ifdef USE_GTK_TOOLTIP
646 static void
647 hierarchy_ch_cb (GtkWidget *widget,
648 GtkWidget *previous_toplevel,
649 gpointer user_data)
651 struct frame *f = user_data;
652 struct x_output *x = f->output_data.x;
653 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
655 if (! top || ! GTK_IS_WINDOW (top))
656 gtk_widget_hide (previous_toplevel);
659 /* Callback called when Gtk+ thinks a tooltip should be displayed.
660 We use it to get the tooltip window and the tooltip widget so
661 we can manipulate the ourselves.
663 Return FALSE ensures that the tooltip is not shown. */
665 static gboolean
666 qttip_cb (GtkWidget *widget,
667 gint xpos,
668 gint ypos,
669 gboolean keyboard_mode,
670 GtkTooltip *tooltip,
671 gpointer user_data)
673 struct frame *f = user_data;
674 struct x_output *x = f->output_data.x;
675 if (x->ttip_widget == NULL)
677 GtkWidget *p;
678 GList *list, *iter;
680 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
681 x->ttip_widget = tooltip;
682 g_object_ref (G_OBJECT (tooltip));
683 x->ttip_lbl = gtk_label_new ("");
684 g_object_ref (G_OBJECT (x->ttip_lbl));
685 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
686 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
688 /* Change stupid Gtk+ default line wrapping. */
689 p = gtk_widget_get_parent (x->ttip_lbl);
690 list = gtk_container_get_children (GTK_CONTAINER (p));
691 for (iter = list; iter; iter = g_list_next (iter))
693 GtkWidget *w = GTK_WIDGET (iter->data);
694 if (GTK_IS_LABEL (w))
695 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
697 g_list_free (list);
699 /* ATK needs an empty title for some reason. */
700 gtk_window_set_title (x->ttip_window, "");
701 /* Realize so we can safely get screen later on. */
702 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
703 gtk_widget_realize (x->ttip_lbl);
705 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
706 G_CALLBACK (hierarchy_ch_cb), f);
708 return FALSE;
711 #endif /* USE_GTK_TOOLTIP */
713 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
714 Return true if a system tooltip is available. */
716 bool
717 xg_prepare_tooltip (struct frame *f,
718 Lisp_Object string,
719 int *width,
720 int *height)
722 #ifndef USE_GTK_TOOLTIP
723 return 0;
724 #else
725 struct x_output *x = f->output_data.x;
726 GtkWidget *widget;
727 GdkWindow *gwin;
728 GdkScreen *screen;
729 GtkSettings *settings;
730 gboolean tt_enabled = TRUE;
731 GtkRequisition req;
732 Lisp_Object encoded_string;
734 if (!x->ttip_lbl) return 0;
736 block_input ();
737 encoded_string = ENCODE_UTF_8 (string);
738 widget = GTK_WIDGET (x->ttip_lbl);
739 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
740 screen = gdk_window_get_screen (gwin);
741 settings = gtk_settings_get_for_screen (screen);
742 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
743 if (tt_enabled)
745 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
746 /* Record that we disabled it so it can be enabled again. */
747 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
748 (gpointer)f);
751 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
752 g_object_set_data (G_OBJECT
753 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
754 "gdk-display-current-tooltip", NULL);
756 /* Put our dummy widget in so we can get callbacks for unrealize and
757 hierarchy-changed. */
758 gtk_tooltip_set_custom (x->ttip_widget, widget);
759 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
760 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
761 if (width) *width = req.width;
762 if (height) *height = req.height;
764 unblock_input ();
766 return 1;
767 #endif /* USE_GTK_TOOLTIP */
770 /* Show the tooltip at ROOT_X and ROOT_Y.
771 xg_prepare_tooltip must have been called before this function. */
773 void
774 xg_show_tooltip (struct frame *f, int root_x, int root_y)
776 #ifdef USE_GTK_TOOLTIP
777 struct x_output *x = f->output_data.x;
778 if (x->ttip_window)
780 block_input ();
781 gtk_window_move (x->ttip_window, root_x, root_y);
782 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
783 unblock_input ();
785 #endif
788 /* Hide tooltip if shown. Do nothing if not shown.
789 Return true if tip was hidden, false if not (i.e. not using
790 system tooltips). */
792 bool
793 xg_hide_tooltip (struct frame *f)
795 bool ret = 0;
796 #ifdef USE_GTK_TOOLTIP
797 if (f->output_data.x->ttip_window)
799 GtkWindow *win = f->output_data.x->ttip_window;
800 block_input ();
801 gtk_widget_hide (GTK_WIDGET (win));
803 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
805 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
806 GdkScreen *screen = gdk_window_get_screen (gwin);
807 GtkSettings *settings = gtk_settings_get_for_screen (screen);
808 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
810 unblock_input ();
812 ret = 1;
814 #endif
815 return ret;
819 /***********************************************************************
820 General functions for creating widgets, resizing, events, e.t.c.
821 ***********************************************************************/
823 static void
824 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
825 const gchar *msg, gpointer user_data)
827 if (!strstr (msg, "visible children"))
828 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
831 /* Make a geometry string and pass that to GTK. It seems this is the
832 only way to get geometry position right if the user explicitly
833 asked for a position when starting Emacs.
834 F is the frame we shall set geometry for. */
836 static void
837 xg_set_geometry (struct frame *f)
839 if (f->size_hint_flags & (USPosition | PPosition))
841 int left = f->left_pos;
842 int xneg = f->size_hint_flags & XNegative;
843 int top = f->top_pos;
844 int yneg = f->size_hint_flags & YNegative;
845 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
846 guint id;
848 if (xneg)
849 left = -left;
850 if (yneg)
851 top = -top;
853 sprintf (geom_str, "=%dx%d%c%d%c%d",
854 FRAME_PIXEL_WIDTH (f),
855 FRAME_PIXEL_HEIGHT (f),
856 (xneg ? '-' : '+'), left,
857 (yneg ? '-' : '+'), top);
859 /* Silence warning about visible children. */
860 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
861 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
863 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
864 geom_str))
865 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
867 g_log_remove_handler ("Gtk", id);
871 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
872 and use a GtkFixed widget, this doesn't happen automatically. */
874 static void
875 xg_clear_under_internal_border (struct frame *f)
877 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
879 GtkWidget *wfixed = f->output_data.x->edit_widget;
881 gtk_widget_queue_draw (wfixed);
882 gdk_window_process_all_updates ();
884 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 0, 0,
885 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
887 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 0, 0,
888 FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
890 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 0,
891 FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
892 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
894 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
895 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
896 0, FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
900 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
901 and a Gtk+ menu bar, we get resize events for the edit part of the
902 frame only. We let Gtk+ deal with the Gtk+ parts.
903 F is the frame to resize.
904 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
906 void
907 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
909 int width, height;
911 if (pixelwidth == -1 && pixelheight == -1)
913 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
914 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
915 0, 0,
916 &pixelwidth, &pixelheight);
917 else return;
921 width = FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth);
922 height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight);
924 if (width != FRAME_TEXT_WIDTH (f)
925 || height != FRAME_TEXT_HEIGHT (f)
926 || pixelwidth != FRAME_PIXEL_WIDTH (f)
927 || pixelheight != FRAME_PIXEL_HEIGHT (f))
929 FRAME_PIXEL_WIDTH (f) = pixelwidth;
930 FRAME_PIXEL_HEIGHT (f) = pixelheight;
932 xg_clear_under_internal_border (f);
933 change_frame_size (f, width, height, 0, 1, 0, 1);
934 SET_FRAME_GARBAGED (f);
935 cancel_mouse_face (f);
939 /* Resize the outer window of frame F after changing the height.
940 COLUMNS/ROWS is the size the edit area shall have after the resize. */
942 void
943 xg_frame_set_char_size (struct frame *f, int width, int height)
945 int pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
946 int pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
948 if (FRAME_PIXEL_HEIGHT (f) == 0)
949 return;
951 /* Do this before resize, as we don't know yet if we will be resized. */
952 xg_clear_under_internal_border (f);
954 /* Must resize our top level widget. Font size may have changed,
955 but not rows/cols. */
956 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
957 pixelwidth + FRAME_TOOLBAR_WIDTH (f),
958 pixelheight + FRAME_TOOLBAR_HEIGHT (f)
959 + FRAME_MENUBAR_HEIGHT (f));
960 x_wm_set_size_hint (f, 0, 0);
962 SET_FRAME_GARBAGED (f);
963 cancel_mouse_face (f);
965 /* We can not call change_frame_size for a mapped frame,
966 we can not set pixel width/height either. The window manager may
967 override our resize request, XMonad does this all the time.
968 The best we can do is try to sync, so lisp code sees the updated
969 size as fast as possible.
970 For unmapped windows, we can set rows/cols. When
971 the frame is mapped again we will (hopefully) get the correct size. */
972 if (FRAME_VISIBLE_P (f))
974 /* Must call this to flush out events */
975 (void)gtk_events_pending ();
976 gdk_flush ();
977 x_wait_for_event (f, ConfigureNotify);
979 else
980 change_frame_size (f, width, height, 0, 1, 0, 1);
983 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
984 The policy is to keep the number of editable lines. */
986 static void
987 xg_height_or_width_changed (struct frame *f)
989 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
990 FRAME_TOTAL_PIXEL_WIDTH (f),
991 FRAME_TOTAL_PIXEL_HEIGHT (f));
992 f->output_data.x->hint_flags = 0;
993 x_wm_set_size_hint (f, 0, 0);
996 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
997 Must be done like this, because GtkWidget:s can have "hidden"
998 X Window that aren't accessible.
1000 Return 0 if no widget match WDESC. */
1002 GtkWidget *
1003 xg_win_to_widget (Display *dpy, Window wdesc)
1005 gpointer gdkwin;
1006 GtkWidget *gwdesc = 0;
1008 block_input ();
1010 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1011 wdesc);
1012 if (gdkwin)
1014 GdkEvent event;
1015 event.any.window = gdkwin;
1016 event.any.type = GDK_NOTHING;
1017 gwdesc = gtk_get_event_widget (&event);
1020 unblock_input ();
1021 return gwdesc;
1024 /* Set the background of widget W to PIXEL. */
1026 static void
1027 xg_set_widget_bg (struct frame *f, GtkWidget *w, unsigned long pixel)
1029 #ifdef HAVE_GTK3
1030 GdkRGBA bg;
1031 XColor xbg;
1032 xbg.pixel = pixel;
1033 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1035 bg.red = (double)xbg.red/65535.0;
1036 bg.green = (double)xbg.green/65535.0;
1037 bg.blue = (double)xbg.blue/65535.0;
1038 bg.alpha = 1.0;
1039 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1041 #else
1042 GdkColor bg;
1043 GdkColormap *map = gtk_widget_get_colormap (w);
1044 gdk_colormap_query_color (map, pixel, &bg);
1045 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1046 #endif
1049 /* Callback called when the gtk theme changes.
1050 We notify lisp code so it can fix faces used for region for example. */
1052 static void
1053 style_changed_cb (GObject *go,
1054 GParamSpec *spec,
1055 gpointer user_data)
1057 struct input_event event;
1058 GdkDisplay *gdpy = user_data;
1059 const char *display_name = gdk_display_get_name (gdpy);
1060 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1062 EVENT_INIT (event);
1063 event.kind = CONFIG_CHANGED_EVENT;
1064 event.frame_or_window = build_string (display_name);
1065 /* Theme doesn't change often, so intern is called seldom. */
1066 event.arg = intern ("theme-name");
1067 kbd_buffer_store_event (&event);
1069 update_theme_scrollbar_width ();
1071 /* If scroll bar width changed, we need set the new size on all frames
1072 on this display. */
1073 if (dpy)
1075 Lisp_Object rest, frame;
1076 FOR_EACH_FRAME (rest, frame)
1078 struct frame *f = XFRAME (frame);
1079 if (FRAME_LIVE_P (f)
1080 && FRAME_X_P (f)
1081 && FRAME_X_DISPLAY (f) == dpy)
1083 x_set_scroll_bar_default_width (f);
1084 xg_frame_set_char_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f));
1090 /* Called when a delete-event occurs on WIDGET. */
1092 static gboolean
1093 delete_cb (GtkWidget *widget,
1094 GdkEvent *event,
1095 gpointer user_data)
1097 #ifdef HAVE_GTK3
1098 /* The event doesn't arrive in the normal event loop. Send event
1099 here. */
1100 struct frame *f = user_data;
1101 struct input_event ie;
1103 EVENT_INIT (ie);
1104 ie.kind = DELETE_WINDOW_EVENT;
1105 XSETFRAME (ie.frame_or_window, f);
1106 kbd_buffer_store_event (&ie);
1107 #endif
1109 return TRUE;
1112 /* Create and set up the GTK widgets for frame F.
1113 Return true if creation succeeded. */
1115 bool
1116 xg_create_frame_widgets (struct frame *f)
1118 GtkWidget *wtop;
1119 GtkWidget *wvbox, *whbox;
1120 GtkWidget *wfixed;
1121 #ifndef HAVE_GTK3
1122 GtkRcStyle *style;
1123 #endif
1124 char *title = 0;
1126 block_input ();
1128 if (FRAME_X_EMBEDDED_P (f))
1130 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1131 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1133 else
1134 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1136 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1137 has backported it to Gtk+ 2.0 and they add the resize grip for
1138 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1139 forever, so disable the grip. */
1140 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1141 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1142 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1143 #endif
1145 xg_set_screen (wtop, f);
1147 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1148 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1149 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1150 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1152 #ifdef HAVE_GTK3
1153 wfixed = emacs_fixed_new (f);
1154 #else
1155 wfixed = gtk_fixed_new ();
1156 #endif
1158 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1160 if (wtop) gtk_widget_destroy (wtop);
1161 if (wvbox) gtk_widget_destroy (wvbox);
1162 if (whbox) gtk_widget_destroy (whbox);
1163 if (wfixed) gtk_widget_destroy (wfixed);
1165 unblock_input ();
1166 return 0;
1169 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1170 gtk_widget_set_name (wtop, EMACS_CLASS);
1171 gtk_widget_set_name (wvbox, "pane");
1172 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1174 /* If this frame has a title or name, set it in the title bar. */
1175 if (! NILP (f->title))
1176 title = SSDATA (ENCODE_UTF_8 (f->title));
1177 else if (! NILP (f->name))
1178 title = SSDATA (ENCODE_UTF_8 (f->name));
1180 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
1182 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1183 FRAME_GTK_WIDGET (f) = wfixed;
1184 f->output_data.x->vbox_widget = wvbox;
1185 f->output_data.x->hbox_widget = whbox;
1187 gtk_widget_set_has_window (wfixed, TRUE);
1189 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1190 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1191 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1193 if (FRAME_EXTERNAL_TOOL_BAR (f))
1194 update_frame_tool_bar (f);
1196 /* We don't want this widget double buffered, because we draw on it
1197 with regular X drawing primitives, so from a GTK/GDK point of
1198 view, the widget is totally blank. When an expose comes, this
1199 will make the widget blank, and then Emacs redraws it. This flickers
1200 a lot, so we turn off double buffering. */
1201 gtk_widget_set_double_buffered (wfixed, FALSE);
1203 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1204 SSDATA (Vx_resource_name),
1205 SSDATA (Vx_resource_class));
1207 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1208 GTK is to destroy the widget. We want Emacs to do that instead. */
1209 g_signal_connect (G_OBJECT (wtop), "delete-event",
1210 G_CALLBACK (delete_cb), f);
1212 /* Convert our geometry parameters into a geometry string
1213 and specify it.
1214 GTK will itself handle calculating the real position this way. */
1215 xg_set_geometry (f);
1216 f->win_gravity
1217 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1219 gtk_widget_add_events (wfixed,
1220 GDK_POINTER_MOTION_MASK
1221 | GDK_EXPOSURE_MASK
1222 | GDK_BUTTON_PRESS_MASK
1223 | GDK_BUTTON_RELEASE_MASK
1224 | GDK_KEY_PRESS_MASK
1225 | GDK_ENTER_NOTIFY_MASK
1226 | GDK_LEAVE_NOTIFY_MASK
1227 | GDK_FOCUS_CHANGE_MASK
1228 | GDK_STRUCTURE_MASK
1229 | GDK_VISIBILITY_NOTIFY_MASK);
1231 /* Must realize the windows so the X window gets created. It is used
1232 by callers of this function. */
1233 gtk_widget_realize (wfixed);
1234 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1236 /* Since GTK clears its window by filling with the background color,
1237 we must keep X and GTK background in sync. */
1238 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1240 #ifndef HAVE_GTK3
1241 /* Also, do not let any background pixmap to be set, this looks very
1242 bad as Emacs overwrites the background pixmap with its own idea
1243 of background color. */
1244 style = gtk_widget_get_modifier_style (wfixed);
1246 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1247 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1248 gtk_widget_modify_style (wfixed, style);
1249 #else
1250 gtk_widget_set_can_focus (wfixed, TRUE);
1251 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1252 #endif
1254 #ifdef USE_GTK_TOOLTIP
1255 /* Steal a tool tip window we can move ourselves. */
1256 f->output_data.x->ttip_widget = 0;
1257 f->output_data.x->ttip_lbl = 0;
1258 f->output_data.x->ttip_window = 0;
1259 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1260 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1261 #endif
1264 GdkScreen *screen = gtk_widget_get_screen (wtop);
1265 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1266 /* Only connect this signal once per screen. */
1267 if (! g_signal_handler_find (G_OBJECT (gs),
1268 G_SIGNAL_MATCH_FUNC,
1269 0, 0, 0,
1270 G_CALLBACK (style_changed_cb),
1273 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1274 G_CALLBACK (style_changed_cb),
1275 gdk_screen_get_display (screen));
1279 unblock_input ();
1281 return 1;
1284 void
1285 xg_free_frame_widgets (struct frame *f)
1287 if (FRAME_GTK_OUTER_WIDGET (f))
1289 #ifdef USE_GTK_TOOLTIP
1290 struct x_output *x = f->output_data.x;
1291 #endif
1292 struct xg_frame_tb_info *tbinfo
1293 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1294 TB_INFO_KEY);
1295 if (tbinfo)
1296 xfree (tbinfo);
1298 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1299 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1300 FRAME_GTK_OUTER_WIDGET (f) = 0;
1301 #ifdef USE_GTK_TOOLTIP
1302 if (x->ttip_lbl)
1303 gtk_widget_destroy (x->ttip_lbl);
1304 if (x->ttip_widget)
1305 g_object_unref (G_OBJECT (x->ttip_widget));
1306 #endif
1310 /* Set the normal size hints for the window manager, for frame F.
1311 FLAGS is the flags word to use--or 0 meaning preserve the flags
1312 that the window now has.
1313 If USER_POSITION, set the User Position
1314 flag (this is useful when FLAGS is 0). */
1316 void
1317 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1319 /* Must use GTK routines here, otherwise GTK resets the size hints
1320 to its own defaults. */
1321 GdkGeometry size_hints;
1322 gint hint_flags = 0;
1323 int base_width, base_height;
1324 int min_rows = 0, min_cols = 0;
1325 int win_gravity = f->win_gravity;
1326 Lisp_Object fs_state, frame;
1328 /* Don't set size hints during initialization; that apparently leads
1329 to a race condition. See the thread at
1330 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1331 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1332 return;
1334 XSETFRAME (frame, f);
1335 fs_state = Fframe_parameter (frame, Qfullscreen);
1336 if (EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth))
1338 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1339 Gtk3 don't get along and the frame shrinks (!).
1341 return;
1344 if (flags)
1346 memset (&size_hints, 0, sizeof (size_hints));
1347 f->output_data.x->size_hints = size_hints;
1348 f->output_data.x->hint_flags = hint_flags;
1350 else
1351 flags = f->size_hint_flags;
1353 size_hints = f->output_data.x->size_hints;
1354 hint_flags = f->output_data.x->hint_flags;
1356 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1357 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
1358 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
1360 hint_flags |= GDK_HINT_BASE_SIZE;
1361 /* Use one row/col here so base_height/width does not become zero.
1362 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it. */
1363 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1364 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1365 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1367 check_frame_size (f, &min_cols, &min_rows, 0);
1368 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1369 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1371 size_hints.base_width = base_width;
1372 size_hints.base_height = base_height;
1373 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);;
1374 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
1376 /* These currently have a one to one mapping with the X values, but I
1377 don't think we should rely on that. */
1378 hint_flags |= GDK_HINT_WIN_GRAVITY;
1379 size_hints.win_gravity = 0;
1380 if (win_gravity == NorthWestGravity)
1381 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1382 else if (win_gravity == NorthGravity)
1383 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1384 else if (win_gravity == NorthEastGravity)
1385 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1386 else if (win_gravity == WestGravity)
1387 size_hints.win_gravity = GDK_GRAVITY_WEST;
1388 else if (win_gravity == CenterGravity)
1389 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1390 else if (win_gravity == EastGravity)
1391 size_hints.win_gravity = GDK_GRAVITY_EAST;
1392 else if (win_gravity == SouthWestGravity)
1393 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1394 else if (win_gravity == SouthGravity)
1395 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1396 else if (win_gravity == SouthEastGravity)
1397 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1398 else if (win_gravity == StaticGravity)
1399 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1401 if (user_position)
1403 hint_flags &= ~GDK_HINT_POS;
1404 hint_flags |= GDK_HINT_USER_POS;
1407 if (hint_flags != f->output_data.x->hint_flags
1408 || memcmp (&size_hints,
1409 &f->output_data.x->size_hints,
1410 sizeof (size_hints)) != 0)
1412 block_input ();
1413 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1414 NULL, &size_hints, hint_flags);
1415 f->output_data.x->size_hints = size_hints;
1416 f->output_data.x->hint_flags = hint_flags;
1417 unblock_input ();
1421 /* Change background color of a frame.
1422 Since GTK uses the background color to clear the window, we must
1423 keep the GTK and X colors in sync.
1424 F is the frame to change,
1425 BG is the pixel value to change to. */
1427 void
1428 xg_set_background_color (struct frame *f, unsigned long bg)
1430 if (FRAME_GTK_WIDGET (f))
1432 block_input ();
1433 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1434 unblock_input ();
1439 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1440 functions so GTK does not overwrite the icon. */
1442 void
1443 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1445 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1446 icon_pixmap,
1447 icon_mask);
1448 if (gp)
1449 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1454 /***********************************************************************
1455 Dialog functions
1456 ***********************************************************************/
1457 /* Return the dialog title to use for a dialog of type KEY.
1458 This is the encoding used by lwlib. We use the same for GTK. */
1460 static const char *
1461 get_dialog_title (char key)
1463 const char *title = "";
1465 switch (key) {
1466 case 'E': case 'e':
1467 title = "Error";
1468 break;
1470 case 'I': case 'i':
1471 title = "Information";
1472 break;
1474 case 'L': case 'l':
1475 title = "Prompt";
1476 break;
1478 case 'P': case 'p':
1479 title = "Prompt";
1480 break;
1482 case 'Q': case 'q':
1483 title = "Question";
1484 break;
1487 return title;
1490 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1491 the dialog, but return TRUE so the event does not propagate further
1492 in GTK. This prevents GTK from destroying the dialog widget automatically
1493 and we can always destroy the widget manually, regardless of how
1494 it was popped down (button press or WM_DELETE_WINDOW).
1495 W is the dialog widget.
1496 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1497 user_data is NULL (not used).
1499 Returns TRUE to end propagation of event. */
1501 static gboolean
1502 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1504 gtk_widget_unmap (w);
1505 return TRUE;
1508 /* Create a popup dialog window. See also xg_create_widget below.
1509 WV is a widget_value describing the dialog.
1510 SELECT_CB is the callback to use when a button has been pressed.
1511 DEACTIVATE_CB is the callback to use when the dialog pops down.
1513 Returns the GTK dialog widget. */
1515 static GtkWidget *
1516 create_dialog (widget_value *wv,
1517 GCallback select_cb,
1518 GCallback deactivate_cb)
1520 const char *title = get_dialog_title (wv->name[0]);
1521 int total_buttons = wv->name[1] - '0';
1522 int right_buttons = wv->name[4] - '0';
1523 int left_buttons;
1524 int button_nr = 0;
1525 int button_spacing = 10;
1526 GtkWidget *wdialog = gtk_dialog_new ();
1527 GtkDialog *wd = GTK_DIALOG (wdialog);
1528 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1529 widget_value *item;
1530 GtkWidget *whbox_down;
1532 /* If the number of buttons is greater than 4, make two rows of buttons
1533 instead. This looks better. */
1534 bool make_two_rows = total_buttons > 4;
1536 if (right_buttons == 0) right_buttons = total_buttons/2;
1537 left_buttons = total_buttons - right_buttons;
1539 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1540 gtk_widget_set_name (wdialog, "emacs-dialog");
1543 if (make_two_rows)
1545 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1546 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1547 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1548 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1549 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1550 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1552 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1553 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1554 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1556 cur_box = GTK_BOX (whbox_up);
1559 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1560 G_CALLBACK (dialog_delete_callback), 0);
1562 if (deactivate_cb)
1564 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1565 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1568 for (item = wv->contents; item; item = item->next)
1570 char *utf8_label = get_utf8_string (item->value);
1571 GtkWidget *w;
1572 GtkRequisition req;
1574 if (item->name && strcmp (item->name, "message") == 0)
1576 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1577 /* This is the text part of the dialog. */
1578 w = gtk_label_new (utf8_label);
1579 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1580 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1581 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1583 /* Try to make dialog look better. Must realize first so
1584 the widget can calculate the size it needs. */
1585 gtk_widget_realize (w);
1586 gtk_widget_get_preferred_size (w, NULL, &req);
1587 gtk_box_set_spacing (wvbox, req.height);
1588 if (item->value && strlen (item->value) > 0)
1589 button_spacing = 2*req.width/strlen (item->value);
1591 else
1593 /* This is one button to add to the dialog. */
1594 w = gtk_button_new_with_label (utf8_label);
1595 if (! item->enabled)
1596 gtk_widget_set_sensitive (w, FALSE);
1597 if (select_cb)
1598 g_signal_connect (G_OBJECT (w), "clicked",
1599 select_cb, item->call_data);
1601 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1602 if (++button_nr == left_buttons)
1604 if (make_two_rows)
1605 cur_box = GTK_BOX (whbox_down);
1606 else
1607 gtk_box_pack_start (cur_box,
1608 gtk_label_new (""),
1609 TRUE, TRUE,
1610 button_spacing);
1614 if (utf8_label)
1615 g_free (utf8_label);
1618 return wdialog;
1621 struct xg_dialog_data
1623 GMainLoop *loop;
1624 int response;
1625 GtkWidget *w;
1626 guint timerid;
1629 /* Function that is called when the file or font dialogs pop down.
1630 W is the dialog widget, RESPONSE is the response code.
1631 USER_DATA is what we passed in to g_signal_connect. */
1633 static void
1634 xg_dialog_response_cb (GtkDialog *w,
1635 gint response,
1636 gpointer user_data)
1638 struct xg_dialog_data *dd = user_data;
1639 dd->response = response;
1640 g_main_loop_quit (dd->loop);
1644 /* Destroy the dialog. This makes it pop down. */
1646 static void
1647 pop_down_dialog (void *arg)
1649 struct xg_dialog_data *dd = arg;
1651 block_input ();
1652 if (dd->w) gtk_widget_destroy (dd->w);
1653 if (dd->timerid != 0) g_source_remove (dd->timerid);
1655 g_main_loop_quit (dd->loop);
1656 g_main_loop_unref (dd->loop);
1658 unblock_input ();
1661 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1662 We pass in DATA as gpointer* so we can use this as a callback. */
1664 static gboolean
1665 xg_maybe_add_timer (gpointer data)
1667 struct xg_dialog_data *dd = data;
1668 struct timespec next_time = timer_check ();
1670 dd->timerid = 0;
1672 if (timespec_valid_p (next_time))
1674 time_t s = next_time.tv_sec;
1675 int per_ms = TIMESPEC_RESOLUTION / 1000;
1676 int ms = (next_time.tv_nsec + per_ms - 1) / per_ms;
1677 if (s <= ((guint) -1 - ms) / 1000)
1678 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1680 return FALSE;
1684 /* Pops up a modal dialog W and waits for response.
1685 We don't use gtk_dialog_run because we want to process emacs timers.
1686 The dialog W is not destroyed when this function returns. */
1688 static int
1689 xg_dialog_run (struct frame *f, GtkWidget *w)
1691 ptrdiff_t count = SPECPDL_INDEX ();
1692 struct xg_dialog_data dd;
1694 xg_set_screen (w, f);
1695 gtk_window_set_transient_for (GTK_WINDOW (w),
1696 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1697 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1698 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1700 dd.loop = g_main_loop_new (NULL, FALSE);
1701 dd.response = GTK_RESPONSE_CANCEL;
1702 dd.w = w;
1703 dd.timerid = 0;
1705 g_signal_connect (G_OBJECT (w),
1706 "response",
1707 G_CALLBACK (xg_dialog_response_cb),
1708 &dd);
1709 /* Don't destroy the widget if closed by the window manager close button. */
1710 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1711 gtk_widget_show (w);
1713 record_unwind_protect_ptr (pop_down_dialog, &dd);
1715 (void) xg_maybe_add_timer (&dd);
1716 g_main_loop_run (dd.loop);
1718 dd.w = 0;
1719 unbind_to (count, Qnil);
1721 return dd.response;
1725 /***********************************************************************
1726 File dialog functions
1727 ***********************************************************************/
1728 /* Return true if the old file selection dialog is being used. */
1730 bool
1731 xg_uses_old_file_dialog (void)
1733 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1734 return x_gtk_use_old_file_dialog;
1735 #else
1736 return 0;
1737 #endif
1741 typedef char * (*xg_get_file_func) (GtkWidget *);
1743 /* Return the selected file for file chooser dialog W.
1744 The returned string must be free:d. */
1746 static char *
1747 xg_get_file_name_from_chooser (GtkWidget *w)
1749 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1752 /* Callback called when the "Show hidden files" toggle is pressed.
1753 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1755 static void
1756 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1758 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1759 gboolean visible;
1760 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1761 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1765 /* Callback called when a property changes in a file chooser.
1766 GOBJECT is the file chooser dialog, ARG1 describes the property.
1767 USER_DATA is the toggle widget in the file chooser dialog.
1768 We use this to update the "Show hidden files" toggle when the user
1769 changes that property by right clicking in the file list. */
1771 static void
1772 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1774 if (strcmp (arg1->name, "show-hidden") == 0)
1776 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1777 gboolean visible, toggle_on;
1779 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1780 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1782 if (!!visible != !!toggle_on)
1784 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1785 G_CALLBACK (xg_toggle_visibility_cb),
1786 gobject);
1787 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1788 g_signal_handlers_unblock_by_func
1789 (G_OBJECT (wtoggle),
1790 G_CALLBACK (xg_toggle_visibility_cb),
1791 gobject);
1793 x_gtk_show_hidden_files = visible;
1797 /* Read a file name from the user using a file chooser dialog.
1798 F is the current frame.
1799 PROMPT is a prompt to show to the user. May not be NULL.
1800 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1801 If MUSTMATCH_P, the returned file name must be an existing
1802 file. (Actually, this only has cosmetic effects, the user can
1803 still enter a non-existing file.) *FUNC is set to a function that
1804 can be used to retrieve the selected file name from the returned widget.
1806 Returns the created widget. */
1808 static GtkWidget *
1809 xg_get_file_with_chooser (struct frame *f,
1810 char *prompt,
1811 char *default_filename,
1812 bool mustmatch_p, bool only_dir_p,
1813 xg_get_file_func *func)
1815 char msgbuf[1024];
1817 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
1818 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1819 GtkFileChooserAction action = (mustmatch_p ?
1820 GTK_FILE_CHOOSER_ACTION_OPEN :
1821 GTK_FILE_CHOOSER_ACTION_SAVE);
1823 if (only_dir_p)
1824 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1826 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1827 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1828 (mustmatch_p || only_dir_p ?
1829 GTK_STOCK_OPEN : GTK_STOCK_OK),
1830 GTK_RESPONSE_OK,
1831 NULL);
1832 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1834 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1835 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
1836 gtk_widget_show (wbox);
1837 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1839 if (x_gtk_show_hidden_files)
1841 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1842 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1844 gtk_widget_show (wtoggle);
1845 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1846 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1847 g_signal_connect (G_OBJECT (filewin), "notify",
1848 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1850 if (x_gtk_file_dialog_help_text)
1852 msgbuf[0] = '\0';
1853 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1854 Show the C-l help text only for versions < 2.10. */
1855 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1856 strcat (msgbuf, "\nType C-l to display a file name text entry box.\n");
1857 strcat (msgbuf, "\nIf you don't like this file selector, use the "
1858 "corresponding\nkey binding or customize "
1859 "use-file-dialog to turn it off.");
1861 wmessage = gtk_label_new (msgbuf);
1862 gtk_widget_show (wmessage);
1865 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1866 if (x_gtk_file_dialog_help_text)
1867 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1868 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1870 if (default_filename)
1872 Lisp_Object file;
1873 struct gcpro gcpro1;
1874 char *utf8_filename;
1875 GCPRO1 (file);
1877 file = build_string (default_filename);
1879 /* File chooser does not understand ~/... in the file name. It must be
1880 an absolute name starting with /. */
1881 if (default_filename[0] != '/')
1882 file = Fexpand_file_name (file, Qnil);
1884 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1885 if (! NILP (Ffile_directory_p (file)))
1886 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1887 utf8_filename);
1888 else
1890 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1891 utf8_filename);
1892 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1894 char *cp = strrchr (utf8_filename, '/');
1895 if (cp) ++cp;
1896 else cp = utf8_filename;
1897 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1901 UNGCPRO;
1904 *func = xg_get_file_name_from_chooser;
1905 return filewin;
1908 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1910 /* Return the selected file for file selector dialog W.
1911 The returned string must be free:d. */
1913 static char *
1914 xg_get_file_name_from_selector (GtkWidget *w)
1916 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1917 return xstrdup (gtk_file_selection_get_filename (filesel));
1920 /* Create a file selection dialog.
1921 F is the current frame.
1922 PROMPT is a prompt to show to the user. May not be NULL.
1923 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1924 If MUSTMATCH_P, the returned file name must be an existing
1925 file. *FUNC is set to a function that can be used to retrieve the
1926 selected file name from the returned widget.
1928 Returns the created widget. */
1930 static GtkWidget *
1931 xg_get_file_with_selection (struct frame *f,
1932 char *prompt,
1933 char *default_filename,
1934 bool mustmatch_p, bool only_dir_p,
1935 xg_get_file_func *func)
1937 GtkWidget *filewin;
1938 GtkFileSelection *filesel;
1940 filewin = gtk_file_selection_new (prompt);
1941 filesel = GTK_FILE_SELECTION (filewin);
1943 if (default_filename)
1944 gtk_file_selection_set_filename (filesel, default_filename);
1946 if (mustmatch_p)
1948 /* The selection_entry part of filesel is not documented. */
1949 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1950 gtk_file_selection_hide_fileop_buttons (filesel);
1953 *func = xg_get_file_name_from_selector;
1955 return filewin;
1957 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1959 /* Read a file name from the user using a file dialog, either the old
1960 file selection dialog, or the new file chooser dialog. Which to use
1961 depends on what the GTK version used has, and what the value of
1962 gtk-use-old-file-dialog.
1963 F is the current frame.
1964 PROMPT is a prompt to show to the user. May not be NULL.
1965 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1966 If MUSTMATCH_P, the returned file name must be an existing
1967 file.
1969 Returns a file name or NULL if no file was selected.
1970 The returned string must be freed by the caller. */
1972 char *
1973 xg_get_file_name (struct frame *f,
1974 char *prompt,
1975 char *default_filename,
1976 bool mustmatch_p,
1977 bool only_dir_p)
1979 GtkWidget *w = 0;
1980 char *fn = 0;
1981 int filesel_done = 0;
1982 xg_get_file_func func;
1984 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1986 if (xg_uses_old_file_dialog ())
1987 w = xg_get_file_with_selection (f, prompt, default_filename,
1988 mustmatch_p, only_dir_p, &func);
1989 else
1990 w = xg_get_file_with_chooser (f, prompt, default_filename,
1991 mustmatch_p, only_dir_p, &func);
1993 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
1994 w = xg_get_file_with_chooser (f, prompt, default_filename,
1995 mustmatch_p, only_dir_p, &func);
1996 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
1998 gtk_widget_set_name (w, "emacs-filedialog");
2000 filesel_done = xg_dialog_run (f, w);
2001 if (filesel_done == GTK_RESPONSE_OK)
2002 fn = (*func) (w);
2004 gtk_widget_destroy (w);
2005 return fn;
2008 /***********************************************************************
2009 GTK font chooser
2010 ***********************************************************************/
2012 #ifdef HAVE_FREETYPE
2014 #if USE_NEW_GTK_FONT_CHOOSER
2016 #define XG_WEIGHT_TO_SYMBOL(w) \
2017 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2018 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2019 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2020 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2021 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2022 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2023 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2024 : Qultra_bold)
2026 #define XG_STYLE_TO_SYMBOL(s) \
2027 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2028 : s == PANGO_STYLE_ITALIC ? Qitalic \
2029 : Qnormal)
2031 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2034 static char *x_last_font_name;
2036 /* Pop up a GTK font selector and return the name of the font the user
2037 selects, as a C string. The returned font name follows GTK's own
2038 format:
2040 `FAMILY [VALUE1 VALUE2] SIZE'
2042 This can be parsed using font_parse_fcname in font.c.
2043 DEFAULT_NAME, if non-zero, is the default font name. */
2045 Lisp_Object
2046 xg_get_font (struct frame *f, const char *default_name)
2048 GtkWidget *w;
2049 int done = 0;
2050 Lisp_Object font = Qnil;
2052 w = gtk_font_chooser_dialog_new
2053 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2055 if (default_name)
2057 /* Convert fontconfig names to Gtk names, i.e. remove - before
2058 number */
2059 char *p = strrchr (default_name, '-');
2060 if (p)
2062 char *ep = p+1;
2063 while (c_isdigit (*ep))
2064 ++ep;
2065 if (*ep == '\0') *p = ' ';
2068 else if (x_last_font_name)
2069 default_name = x_last_font_name;
2071 if (default_name)
2072 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2074 gtk_widget_set_name (w, "emacs-fontdialog");
2075 done = xg_dialog_run (f, w);
2076 if (done == GTK_RESPONSE_OK)
2078 #if USE_NEW_GTK_FONT_CHOOSER
2079 /* Use the GTK3 font chooser. */
2080 PangoFontDescription *desc
2081 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2083 if (desc)
2085 Lisp_Object args[10];
2086 const char *name = pango_font_description_get_family (desc);
2087 gint size = pango_font_description_get_size (desc);
2088 PangoWeight weight = pango_font_description_get_weight (desc);
2089 PangoStyle style = pango_font_description_get_style (desc);
2091 args[0] = QCname;
2092 args[1] = build_string (name);
2094 args[2] = QCsize;
2095 args[3] = make_float (pango_units_to_double (size));
2097 args[4] = QCweight;
2098 args[5] = XG_WEIGHT_TO_SYMBOL (weight);
2100 args[6] = QCslant;
2101 args[7] = XG_STYLE_TO_SYMBOL (style);
2103 args[8] = QCtype;
2104 args[9] = Qxft;
2106 font = Ffont_spec (10, args);
2108 pango_font_description_free (desc);
2109 dupstring (&x_last_font_name, name);
2112 #else /* Use old font selector, which just returns the font name. */
2114 char *font_name
2115 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2117 if (font_name)
2119 font = build_string (font_name);
2120 g_free (x_last_font_name);
2121 x_last_font_name = font_name;
2123 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2126 gtk_widget_destroy (w);
2127 return font;
2129 #endif /* HAVE_FREETYPE */
2133 /***********************************************************************
2134 Menu functions.
2135 ***********************************************************************/
2137 /* The name of menu items that can be used for customization. Since GTK
2138 RC files are very crude and primitive, we have to set this on all
2139 menu item names so a user can easily customize menu items. */
2141 #define MENU_ITEM_NAME "emacs-menuitem"
2144 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2145 during GC. The next member points to the items. */
2146 static xg_list_node xg_menu_cb_list;
2148 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2149 during GC. The next member points to the items. */
2150 static xg_list_node xg_menu_item_cb_list;
2152 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2153 F is the frame CL_DATA will be initialized for.
2154 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2156 The menu bar and all sub menus under the menu bar in a frame
2157 share the same structure, hence the reference count.
2159 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2160 allocated xg_menu_cb_data if CL_DATA is NULL. */
2162 static xg_menu_cb_data *
2163 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2165 if (! cl_data)
2167 cl_data = xmalloc (sizeof *cl_data);
2168 cl_data->f = f;
2169 cl_data->menu_bar_vector = f->menu_bar_vector;
2170 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2171 cl_data->highlight_cb = highlight_cb;
2172 cl_data->ref_count = 0;
2174 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2177 cl_data->ref_count++;
2179 return cl_data;
2182 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2183 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2185 When the menu bar is updated, menu items may have been added and/or
2186 removed, so menu_bar_vector and menu_bar_items_used change. We must
2187 then update CL_DATA since it is used to determine which menu
2188 item that is invoked in the menu.
2189 HIGHLIGHT_CB could change, there is no check that the same
2190 function is given when modifying a menu bar as was given when
2191 creating the menu bar. */
2193 static void
2194 update_cl_data (xg_menu_cb_data *cl_data,
2195 struct frame *f,
2196 GCallback highlight_cb)
2198 if (cl_data)
2200 cl_data->f = f;
2201 cl_data->menu_bar_vector = f->menu_bar_vector;
2202 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2203 cl_data->highlight_cb = highlight_cb;
2207 /* Decrease reference count for CL_DATA.
2208 If reference count is zero, free CL_DATA. */
2210 static void
2211 unref_cl_data (xg_menu_cb_data *cl_data)
2213 if (cl_data && cl_data->ref_count > 0)
2215 cl_data->ref_count--;
2216 if (cl_data->ref_count == 0)
2218 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2219 xfree (cl_data);
2224 /* Function that marks all lisp data during GC. */
2226 void
2227 xg_mark_data (void)
2229 xg_list_node *iter;
2230 Lisp_Object rest, frame;
2232 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2233 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2235 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2237 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2239 if (! NILP (cb_data->help))
2240 mark_object (cb_data->help);
2243 FOR_EACH_FRAME (rest, frame)
2245 struct frame *f = XFRAME (frame);
2247 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2249 struct xg_frame_tb_info *tbinfo
2250 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2251 TB_INFO_KEY);
2252 if (tbinfo)
2254 mark_object (tbinfo->last_tool_bar);
2255 mark_object (tbinfo->style);
2262 /* Callback called when a menu item is destroyed. Used to free data.
2263 W is the widget that is being destroyed (not used).
2264 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2266 static void
2267 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2269 if (client_data)
2271 xg_menu_item_cb_data *data = client_data;
2272 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2273 xfree (data);
2277 /* Callback called when the pointer enters/leaves a menu item.
2278 W is the parent of the menu item.
2279 EVENT is either an enter event or leave event.
2280 CLIENT_DATA is not used.
2282 Returns FALSE to tell GTK to keep processing this event. */
2284 static gboolean
2285 menuitem_highlight_callback (GtkWidget *w,
2286 GdkEventCrossing *event,
2287 gpointer client_data)
2289 GdkEvent ev;
2290 GtkWidget *subwidget;
2291 xg_menu_item_cb_data *data;
2293 ev.crossing = *event;
2294 subwidget = gtk_get_event_widget (&ev);
2295 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2296 if (data)
2298 if (! NILP (data->help) && data->cl_data->highlight_cb)
2300 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2301 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2302 (*func) (subwidget, call_data);
2306 return FALSE;
2309 /* Callback called when a menu is destroyed. Used to free data.
2310 W is the widget that is being destroyed (not used).
2311 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2313 static void
2314 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2316 unref_cl_data (client_data);
2319 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2320 must be non-NULL) and can be inserted into a menu item.
2322 Returns the GtkHBox. */
2324 static GtkWidget *
2325 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2327 GtkWidget *wlbl;
2328 GtkWidget *wkey;
2329 GtkWidget *wbox;
2331 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2332 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2333 wlbl = gtk_label_new (utf8_label);
2334 wkey = gtk_label_new (utf8_key);
2336 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2337 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2339 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2340 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2342 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2343 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2344 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2346 return wbox;
2349 /* Make and return a menu item widget with the key to the right.
2350 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2351 UTF8_KEY is the text representing the key binding.
2352 ITEM is the widget_value describing the menu item.
2354 GROUP is an in/out parameter. If the menu item to be created is not
2355 part of any radio menu group, *GROUP contains NULL on entry and exit.
2356 If the menu item to be created is part of a radio menu group, on entry
2357 *GROUP contains the group to use, or NULL if this is the first item
2358 in the group. On exit, *GROUP contains the radio item group.
2360 Unfortunately, keys don't line up as nicely as in Motif,
2361 but the MacOS X version doesn't either, so I guess that is OK. */
2363 static GtkWidget *
2364 make_menu_item (const char *utf8_label,
2365 const char *utf8_key,
2366 widget_value *item,
2367 GSList **group)
2369 GtkWidget *w;
2370 GtkWidget *wtoadd = 0;
2372 /* It has been observed that some menu items have a NULL name field.
2373 This will lead to this function being called with a NULL utf8_label.
2374 GTK crashes on that so we set a blank label. Why there is a NULL
2375 name remains to be investigated. */
2376 if (! utf8_label) utf8_label = " ";
2378 if (utf8_key)
2379 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2381 if (item->button_type == BUTTON_TYPE_TOGGLE)
2383 *group = NULL;
2384 if (utf8_key) w = gtk_check_menu_item_new ();
2385 else w = gtk_check_menu_item_new_with_label (utf8_label);
2386 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2388 else if (item->button_type == BUTTON_TYPE_RADIO)
2390 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2391 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2392 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2393 if (item->selected)
2394 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2396 else
2398 *group = NULL;
2399 if (utf8_key) w = gtk_menu_item_new ();
2400 else w = gtk_menu_item_new_with_label (utf8_label);
2403 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2404 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2406 return w;
2409 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2411 static int xg_detached_menus;
2413 /* Return true if there are detached menus. */
2415 bool
2416 xg_have_tear_offs (struct frame *f)
2418 /* If the frame's menubar height is zero, the menu bar is probably
2419 being redirected outside the window to some kind of global menu;
2420 this situation is the moral equivalent of a tear-off. */
2421 return FRAME_MENUBAR_HEIGHT (f) == 0 || xg_detached_menus > 0;
2424 /* Callback invoked when a detached menu window is removed. Here we
2425 decrease the xg_detached_menus count.
2426 WIDGET is the top level window that is removed (the parent of the menu).
2427 CLIENT_DATA is not used. */
2429 static void
2430 tearoff_remove (GtkWidget *widget, gpointer client_data)
2432 if (xg_detached_menus > 0) --xg_detached_menus;
2435 /* Callback invoked when a menu is detached. It increases the
2436 xg_detached_menus count.
2437 WIDGET is the GtkTearoffMenuItem.
2438 CLIENT_DATA is not used. */
2440 static void
2441 tearoff_activate (GtkWidget *widget, gpointer client_data)
2443 GtkWidget *menu = gtk_widget_get_parent (widget);
2444 if (gtk_menu_get_tearoff_state (GTK_MENU (menu)))
2446 ++xg_detached_menus;
2447 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget)),
2448 "destroy",
2449 G_CALLBACK (tearoff_remove), 0);
2452 #else /* ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW */
2453 bool
2454 xg_have_tear_offs (struct frame *f)
2456 return FRAME_MENUBAR_HEIGHT (f) == 0;
2458 #endif /* ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW */
2460 /* Create a menu item widget, and connect the callbacks.
2461 ITEM describes the menu item.
2462 F is the frame the created menu belongs to.
2463 SELECT_CB is the callback to use when a menu item is selected.
2464 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2465 CL_DATA points to the callback data to be used for this menu.
2466 GROUP is an in/out parameter. If the menu item to be created is not
2467 part of any radio menu group, *GROUP contains NULL on entry and exit.
2468 If the menu item to be created is part of a radio menu group, on entry
2469 *GROUP contains the group to use, or NULL if this is the first item
2470 in the group. On exit, *GROUP contains the radio item group.
2472 Returns the created GtkWidget. */
2474 static GtkWidget *
2475 xg_create_one_menuitem (widget_value *item,
2476 struct frame *f,
2477 GCallback select_cb,
2478 GCallback highlight_cb,
2479 xg_menu_cb_data *cl_data,
2480 GSList **group)
2482 char *utf8_label;
2483 char *utf8_key;
2484 GtkWidget *w;
2485 xg_menu_item_cb_data *cb_data;
2487 utf8_label = get_utf8_string (item->name);
2488 utf8_key = get_utf8_string (item->key);
2490 w = make_menu_item (utf8_label, utf8_key, item, group);
2492 if (utf8_label) g_free (utf8_label);
2493 if (utf8_key) g_free (utf8_key);
2495 cb_data = xmalloc (sizeof *cb_data);
2497 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2499 cb_data->select_id = 0;
2500 cb_data->help = item->help;
2501 cb_data->cl_data = cl_data;
2502 cb_data->call_data = item->call_data;
2504 g_signal_connect (G_OBJECT (w),
2505 "destroy",
2506 G_CALLBACK (menuitem_destroy_callback),
2507 cb_data);
2509 /* Put cb_data in widget, so we can get at it when modifying menubar */
2510 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2512 /* final item, not a submenu */
2513 if (item->call_data && ! item->contents)
2515 if (select_cb)
2516 cb_data->select_id
2517 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2520 return w;
2523 /* Create a full menu tree specified by DATA.
2524 F is the frame the created menu belongs to.
2525 SELECT_CB is the callback to use when a menu item is selected.
2526 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2527 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2528 If POP_UP_P, create a popup menu.
2529 If MENU_BAR_P, create a menu bar.
2530 If ADD_TEAROFF_P, add a tearoff menu item. Ignored if MENU_BAR_P or
2531 the Gtk+ version used does not have tearoffs.
2532 TOPMENU is the topmost GtkWidget that others shall be placed under.
2533 It may be NULL, in that case we create the appropriate widget
2534 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2535 CL_DATA is the callback data we shall use for this menu, or NULL
2536 if we haven't set the first callback yet.
2537 NAME is the name to give to the top level menu if this function
2538 creates it. May be NULL to not set any name.
2540 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2541 not NULL.
2543 This function calls itself to create submenus. */
2545 static GtkWidget *
2546 create_menus (widget_value *data,
2547 struct frame *f,
2548 GCallback select_cb,
2549 GCallback deactivate_cb,
2550 GCallback highlight_cb,
2551 bool pop_up_p,
2552 bool menu_bar_p,
2553 bool add_tearoff_p,
2554 GtkWidget *topmenu,
2555 xg_menu_cb_data *cl_data,
2556 const char *name)
2558 widget_value *item;
2559 GtkWidget *wmenu = topmenu;
2560 GSList *group = NULL;
2562 if (! topmenu)
2564 if (! menu_bar_p)
2566 wmenu = gtk_menu_new ();
2567 xg_set_screen (wmenu, f);
2568 /* Connect this to the menu instead of items so we get enter/leave for
2569 disabled items also. TODO: Still does not get enter/leave for
2570 disabled items in detached menus. */
2571 g_signal_connect (G_OBJECT (wmenu),
2572 "enter-notify-event",
2573 G_CALLBACK (menuitem_highlight_callback),
2574 NULL);
2575 g_signal_connect (G_OBJECT (wmenu),
2576 "leave-notify-event",
2577 G_CALLBACK (menuitem_highlight_callback),
2578 NULL);
2580 else
2582 wmenu = gtk_menu_bar_new ();
2583 /* Set width of menu bar to a small value so it doesn't enlarge
2584 a small initial frame size. The width will be set to the
2585 width of the frame later on when it is added to a container.
2586 height -1: Natural height. */
2587 gtk_widget_set_size_request (wmenu, 1, -1);
2590 /* Put cl_data on the top menu for easier access. */
2591 cl_data = make_cl_data (cl_data, f, highlight_cb);
2592 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2593 g_signal_connect (G_OBJECT (wmenu), "destroy",
2594 G_CALLBACK (menu_destroy_callback), cl_data);
2596 if (name)
2597 gtk_widget_set_name (wmenu, name);
2599 if (deactivate_cb)
2600 g_signal_connect (G_OBJECT (wmenu),
2601 "selection-done", deactivate_cb, 0);
2604 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2605 if (! menu_bar_p && add_tearoff_p)
2607 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
2608 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
2610 g_signal_connect (G_OBJECT (tearoff), "activate",
2611 G_CALLBACK (tearoff_activate), 0);
2613 #endif
2615 for (item = data; item; item = item->next)
2617 GtkWidget *w;
2619 if (pop_up_p && !item->contents && !item->call_data
2620 && !menu_separator_name_p (item->name))
2622 char *utf8_label;
2623 /* A title for a popup. We do the same as GTK does when
2624 creating titles, but it does not look good. */
2625 group = NULL;
2626 utf8_label = get_utf8_string (item->name);
2628 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
2629 w = gtk_menu_item_new_with_label (utf8_label);
2630 gtk_widget_set_sensitive (w, FALSE);
2631 if (utf8_label) g_free (utf8_label);
2633 else if (menu_separator_name_p (item->name))
2635 group = NULL;
2636 /* GTK only have one separator type. */
2637 w = gtk_separator_menu_item_new ();
2639 else
2641 w = xg_create_one_menuitem (item,
2643 item->contents ? 0 : select_cb,
2644 highlight_cb,
2645 cl_data,
2646 &group);
2648 /* Create a possibly empty submenu for menu bar items, since some
2649 themes don't highlight items correctly without it. */
2650 if (item->contents || menu_bar_p)
2652 GtkWidget *submenu = create_menus (item->contents,
2654 select_cb,
2655 deactivate_cb,
2656 highlight_cb,
2659 add_tearoff_p,
2661 cl_data,
2663 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2667 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2668 gtk_widget_set_name (w, MENU_ITEM_NAME);
2671 return wmenu;
2674 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2675 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2676 with some text and buttons.
2677 F is the frame the created item belongs to.
2678 NAME is the name to use for the top widget.
2679 VAL is a widget_value structure describing items to be created.
2680 SELECT_CB is the callback to use when a menu item is selected or
2681 a dialog button is pressed.
2682 DEACTIVATE_CB is the callback to use when an item is deactivated.
2683 For a menu, when a sub menu is not shown anymore, for a dialog it is
2684 called when the dialog is popped down.
2685 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2687 Returns the widget created. */
2689 GtkWidget *
2690 xg_create_widget (const char *type, const char *name, struct frame *f,
2691 widget_value *val, GCallback select_cb,
2692 GCallback deactivate_cb, GCallback highlight_cb)
2694 GtkWidget *w = 0;
2695 bool menu_bar_p = strcmp (type, "menubar") == 0;
2696 bool pop_up_p = strcmp (type, "popup") == 0;
2698 if (strcmp (type, "dialog") == 0)
2700 w = create_dialog (val, select_cb, deactivate_cb);
2701 xg_set_screen (w, f);
2702 gtk_window_set_transient_for (GTK_WINDOW (w),
2703 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2704 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2705 gtk_widget_set_name (w, "emacs-dialog");
2706 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2708 else if (menu_bar_p || pop_up_p)
2710 w = create_menus (val->contents,
2712 select_cb,
2713 deactivate_cb,
2714 highlight_cb,
2715 pop_up_p,
2716 menu_bar_p,
2717 menu_bar_p,
2720 name);
2722 /* Set the cursor to an arrow for popup menus when they are mapped.
2723 This is done by default for menu bar menus. */
2724 if (pop_up_p)
2726 /* Must realize so the GdkWindow inside the widget is created. */
2727 gtk_widget_realize (w);
2728 xg_set_cursor (w, FRAME_DISPLAY_INFO (f)->xg_cursor);
2731 else
2733 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2734 type);
2737 return w;
2740 /* Return the label for menu item WITEM. */
2742 static const char *
2743 xg_get_menu_item_label (GtkMenuItem *witem)
2745 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2746 return gtk_label_get_label (wlabel);
2749 /* Return true if the menu item WITEM has the text LABEL. */
2751 static bool
2752 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2754 bool is_same = 0;
2755 char *utf8_label = get_utf8_string (label);
2756 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2758 if (! old_label && ! utf8_label)
2759 is_same = 1;
2760 else if (old_label && utf8_label)
2761 is_same = strcmp (utf8_label, old_label) == 0;
2763 if (utf8_label) g_free (utf8_label);
2765 return is_same;
2768 /* Destroy widgets in LIST. */
2770 static void
2771 xg_destroy_widgets (GList *list)
2773 GList *iter;
2775 for (iter = list; iter; iter = g_list_next (iter))
2777 GtkWidget *w = GTK_WIDGET (iter->data);
2779 /* Destroying the widget will remove it from the container it is in. */
2780 gtk_widget_destroy (w);
2784 /* Update the top level names in MENUBAR (i.e. not submenus).
2785 F is the frame the menu bar belongs to.
2786 *LIST is a list with the current menu bar names (menu item widgets).
2787 ITER is the item within *LIST that shall be updated.
2788 POS is the numerical position, starting at 0, of ITER in *LIST.
2789 VAL describes what the menu bar shall look like after the update.
2790 SELECT_CB is the callback to use when a menu item is selected.
2791 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2792 CL_DATA points to the callback data to be used for this menu bar.
2794 This function calls itself to walk through the menu bar names. */
2796 static void
2797 xg_update_menubar (GtkWidget *menubar,
2798 struct frame *f,
2799 GList **list,
2800 GList *iter,
2801 int pos,
2802 widget_value *val,
2803 GCallback select_cb,
2804 GCallback deactivate_cb,
2805 GCallback highlight_cb,
2806 xg_menu_cb_data *cl_data)
2808 if (! iter && ! val)
2809 return;
2810 else if (iter && ! val)
2812 /* Item(s) have been removed. Remove all remaining items. */
2813 xg_destroy_widgets (iter);
2815 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2816 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2817 gtk_menu_item_new_with_label (""),
2819 /* All updated. */
2820 val = 0;
2821 iter = 0;
2823 else if (! iter && val)
2825 /* Item(s) added. Add all new items in one call. */
2826 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2827 0, 1, 0, menubar, cl_data, 0);
2829 /* All updated. */
2830 val = 0;
2831 iter = 0;
2833 /* Below this neither iter or val is NULL */
2834 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2836 /* This item is still the same, check next item. */
2837 val = val->next;
2838 iter = g_list_next (iter);
2839 ++pos;
2841 else /* This item is changed. */
2843 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2844 GtkMenuItem *witem2 = 0;
2845 bool val_in_menubar = 0;
2846 bool iter_in_new_menubar = 0;
2847 GList *iter2;
2848 widget_value *cur;
2850 /* See if the changed entry (val) is present later in the menu bar */
2851 for (iter2 = iter;
2852 iter2 && ! val_in_menubar;
2853 iter2 = g_list_next (iter2))
2855 witem2 = GTK_MENU_ITEM (iter2->data);
2856 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2859 /* See if the current entry (iter) is present later in the
2860 specification for the new menu bar. */
2861 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2862 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2864 if (val_in_menubar && ! iter_in_new_menubar)
2866 int nr = pos;
2868 /* This corresponds to:
2869 Current: A B C
2870 New: A C
2871 Remove B. */
2873 g_object_ref (G_OBJECT (witem));
2874 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2875 gtk_widget_destroy (GTK_WIDGET (witem));
2877 /* Must get new list since the old changed. */
2878 g_list_free (*list);
2879 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2880 while (nr-- > 0) iter = g_list_next (iter);
2882 else if (! val_in_menubar && ! iter_in_new_menubar)
2884 /* This corresponds to:
2885 Current: A B C
2886 New: A X C
2887 Rename B to X. This might seem to be a strange thing to do,
2888 since if there is a menu under B it will be totally wrong for X.
2889 But consider editing a C file. Then there is a C-mode menu
2890 (corresponds to B above).
2891 If then doing C-x C-f the minibuf menu (X above) replaces the
2892 C-mode menu. When returning from the minibuffer, we get
2893 back the C-mode menu. Thus we do:
2894 Rename B to X (C-mode to minibuf menu)
2895 Rename X to B (minibuf to C-mode menu).
2896 If the X menu hasn't been invoked, the menu under B
2897 is up to date when leaving the minibuffer. */
2898 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2899 char *utf8_label = get_utf8_string (val->name);
2900 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
2902 /* GTK menu items don't notice when their labels have been
2903 changed from underneath them, so we have to explicitly
2904 use g_object_notify to tell listeners (e.g., a GMenuModel
2905 bridge that might be loaded) that the item's label has
2906 changed. */
2907 gtk_label_set_text (wlabel, utf8_label);
2908 g_object_notify (G_OBJECT (witem), "label");
2910 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2911 /* If this item has a submenu that has been detached, change
2912 the title in the WM decorations also. */
2913 if (submenu && gtk_menu_get_tearoff_state (GTK_MENU (submenu)))
2914 /* Set the title of the detached window. */
2915 gtk_menu_set_title (GTK_MENU (submenu), utf8_label);
2916 #endif
2918 if (utf8_label) g_free (utf8_label);
2919 iter = g_list_next (iter);
2920 val = val->next;
2921 ++pos;
2923 else if (! val_in_menubar && iter_in_new_menubar)
2925 /* This corresponds to:
2926 Current: A B C
2927 New: A X B C
2928 Insert X. */
2930 int nr = pos;
2931 GSList *group = 0;
2932 GtkWidget *w = xg_create_one_menuitem (val,
2934 select_cb,
2935 highlight_cb,
2936 cl_data,
2937 &group);
2939 /* Create a possibly empty submenu for menu bar items, since some
2940 themes don't highlight items correctly without it. */
2941 GtkWidget *submenu = create_menus (NULL, f,
2942 select_cb, deactivate_cb,
2943 highlight_cb,
2944 0, 0, 0, 0, cl_data, 0);
2946 gtk_widget_set_name (w, MENU_ITEM_NAME);
2947 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2948 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2950 g_list_free (*list);
2951 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2952 while (nr-- > 0) iter = g_list_next (iter);
2953 iter = g_list_next (iter);
2954 val = val->next;
2955 ++pos;
2957 else /* if (val_in_menubar && iter_in_new_menubar) */
2959 int nr = pos;
2960 /* This corresponds to:
2961 Current: A B C
2962 New: A C B
2963 Move C before B */
2965 g_object_ref (G_OBJECT (witem2));
2966 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2967 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2968 GTK_WIDGET (witem2), pos);
2969 g_object_unref (G_OBJECT (witem2));
2971 g_list_free (*list);
2972 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2973 while (nr-- > 0) iter = g_list_next (iter);
2974 if (iter) iter = g_list_next (iter);
2975 val = val->next;
2976 ++pos;
2980 /* Update the rest of the menu bar. */
2981 xg_update_menubar (menubar, f, list, iter, pos, val,
2982 select_cb, deactivate_cb, highlight_cb, cl_data);
2985 /* Update the menu item W so it corresponds to VAL.
2986 SELECT_CB is the callback to use when a menu item is selected.
2987 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2988 CL_DATA is the data to set in the widget for menu invocation. */
2990 static void
2991 xg_update_menu_item (widget_value *val,
2992 GtkWidget *w,
2993 GCallback select_cb,
2994 GCallback highlight_cb,
2995 xg_menu_cb_data *cl_data)
2997 GtkWidget *wchild;
2998 GtkLabel *wlbl = 0;
2999 GtkLabel *wkey = 0;
3000 char *utf8_label;
3001 char *utf8_key;
3002 const char *old_label = 0;
3003 const char *old_key = 0;
3004 xg_menu_item_cb_data *cb_data;
3005 bool label_changed = false;
3007 wchild = XG_BIN_CHILD (w);
3008 utf8_label = get_utf8_string (val->name);
3009 utf8_key = get_utf8_string (val->key);
3011 /* See if W is a menu item with a key. See make_menu_item above. */
3012 if (GTK_IS_BOX (wchild))
3014 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
3016 wlbl = GTK_LABEL (list->data);
3017 wkey = GTK_LABEL (list->next->data);
3018 g_list_free (list);
3020 if (! utf8_key)
3022 /* Remove the key and keep just the label. */
3023 g_object_ref (G_OBJECT (wlbl));
3024 gtk_container_remove (GTK_CONTAINER (w), wchild);
3025 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
3026 g_object_unref (G_OBJECT (wlbl));
3027 wkey = 0;
3031 else /* Just a label. */
3033 wlbl = GTK_LABEL (wchild);
3035 /* Check if there is now a key. */
3036 if (utf8_key)
3038 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
3039 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
3041 wlbl = GTK_LABEL (list->data);
3042 wkey = GTK_LABEL (list->next->data);
3043 g_list_free (list);
3045 gtk_container_remove (GTK_CONTAINER (w), wchild);
3046 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3050 if (wkey) old_key = gtk_label_get_label (wkey);
3051 if (wlbl) old_label = gtk_label_get_label (wlbl);
3053 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
3055 label_changed = true;
3056 gtk_label_set_text (wkey, utf8_key);
3059 if (! old_label || strcmp (utf8_label, old_label) != 0)
3061 label_changed = true;
3062 gtk_label_set_text (wlbl, utf8_label);
3065 if (utf8_key) g_free (utf8_key);
3066 if (utf8_label) g_free (utf8_label);
3068 if (! val->enabled && gtk_widget_get_sensitive (w))
3069 gtk_widget_set_sensitive (w, FALSE);
3070 else if (val->enabled && ! gtk_widget_get_sensitive (w))
3071 gtk_widget_set_sensitive (w, TRUE);
3073 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
3074 if (cb_data)
3076 cb_data->call_data = val->call_data;
3077 cb_data->help = val->help;
3078 cb_data->cl_data = cl_data;
3080 /* We assume the callback functions don't change. */
3081 if (val->call_data && ! val->contents)
3083 /* This item shall have a select callback. */
3084 if (! cb_data->select_id)
3085 cb_data->select_id
3086 = g_signal_connect (G_OBJECT (w), "activate",
3087 select_cb, cb_data);
3089 else if (cb_data->select_id)
3091 g_signal_handler_disconnect (w, cb_data->select_id);
3092 cb_data->select_id = 0;
3096 if (label_changed) /* See comment in xg_update_menubar. */
3097 g_object_notify (G_OBJECT (w), "label");
3100 /* Update the toggle menu item W so it corresponds to VAL. */
3102 static void
3103 xg_update_toggle_item (widget_value *val, GtkWidget *w)
3105 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3108 /* Update the radio menu item W so it corresponds to VAL. */
3110 static void
3111 xg_update_radio_item (widget_value *val, GtkWidget *w)
3113 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3116 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3117 SUBMENU may be NULL, in that case a new menu is created.
3118 F is the frame the menu bar belongs to.
3119 VAL describes the contents of the menu bar.
3120 SELECT_CB is the callback to use when a menu item is selected.
3121 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3122 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3123 CL_DATA is the call back data to use for any newly created items.
3125 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3126 was NULL. */
3128 static GtkWidget *
3129 xg_update_submenu (GtkWidget *submenu,
3130 struct frame *f,
3131 widget_value *val,
3132 GCallback select_cb,
3133 GCallback deactivate_cb,
3134 GCallback highlight_cb,
3135 xg_menu_cb_data *cl_data)
3137 GtkWidget *newsub = submenu;
3138 GList *list = 0;
3139 GList *iter;
3140 widget_value *cur;
3141 bool has_tearoff_p = 0;
3142 GList *first_radio = 0;
3144 if (submenu)
3145 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3147 for (cur = val, iter = list;
3148 cur && iter;
3149 iter = g_list_next (iter), cur = cur->next)
3151 GtkWidget *w = GTK_WIDGET (iter->data);
3153 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
3154 /* Skip tearoff items, they have no counterpart in val. */
3155 if (GTK_IS_TEAROFF_MENU_ITEM (w))
3157 has_tearoff_p = 1;
3158 iter = g_list_next (iter);
3159 if (iter) w = GTK_WIDGET (iter->data);
3160 else break;
3162 #endif
3164 /* Remember first radio button in a group. If we get a mismatch in
3165 a radio group we must rebuild the whole group so that the connections
3166 in GTK becomes correct. */
3167 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3168 first_radio = iter;
3169 else if (cur->button_type != BUTTON_TYPE_RADIO
3170 && ! GTK_IS_RADIO_MENU_ITEM (w))
3171 first_radio = 0;
3173 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3175 if (! menu_separator_name_p (cur->name))
3176 break;
3178 else if (GTK_IS_CHECK_MENU_ITEM (w))
3180 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3181 break;
3182 xg_update_toggle_item (cur, w);
3183 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3185 else if (GTK_IS_RADIO_MENU_ITEM (w))
3187 if (cur->button_type != BUTTON_TYPE_RADIO)
3188 break;
3189 xg_update_radio_item (cur, w);
3190 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3192 else if (GTK_IS_MENU_ITEM (w))
3194 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3195 GtkWidget *sub;
3197 if (cur->button_type != BUTTON_TYPE_NONE ||
3198 menu_separator_name_p (cur->name))
3199 break;
3201 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3203 sub = gtk_menu_item_get_submenu (witem);
3204 if (sub && ! cur->contents)
3206 /* Not a submenu anymore. */
3207 g_object_ref (G_OBJECT (sub));
3208 remove_submenu (witem);
3209 gtk_widget_destroy (sub);
3211 else if (cur->contents)
3213 GtkWidget *nsub;
3215 nsub = xg_update_submenu (sub, f, cur->contents,
3216 select_cb, deactivate_cb,
3217 highlight_cb, cl_data);
3219 /* If this item just became a submenu, we must set it. */
3220 if (nsub != sub)
3221 gtk_menu_item_set_submenu (witem, nsub);
3224 else
3226 /* Structural difference. Remove everything from here and down
3227 in SUBMENU. */
3228 break;
3232 /* Remove widgets from first structural change. */
3233 if (iter)
3235 /* If we are adding new menu items below, we must remove from
3236 first radio button so that radio groups become correct. */
3237 if (cur && first_radio) xg_destroy_widgets (first_radio);
3238 else xg_destroy_widgets (iter);
3241 if (cur)
3243 /* More items added. Create them. */
3244 newsub = create_menus (cur,
3246 select_cb,
3247 deactivate_cb,
3248 highlight_cb,
3251 ! has_tearoff_p,
3252 submenu,
3253 cl_data,
3257 if (list) g_list_free (list);
3259 return newsub;
3262 /* Update the MENUBAR.
3263 F is the frame the menu bar belongs to.
3264 VAL describes the contents of the menu bar.
3265 If DEEP_P, rebuild all but the top level menu names in
3266 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3267 SELECT_CB is the callback to use when a menu item is selected.
3268 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3269 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3271 void
3272 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3273 widget_value *val, bool deep_p,
3274 GCallback select_cb, GCallback deactivate_cb,
3275 GCallback highlight_cb)
3277 xg_menu_cb_data *cl_data;
3278 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3280 if (! list) return;
3282 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3284 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3285 select_cb, deactivate_cb, highlight_cb, cl_data);
3287 if (deep_p)
3289 widget_value *cur;
3291 /* Update all sub menus.
3292 We must keep the submenus (GTK menu item widgets) since the
3293 X Window in the XEvent that activates the menu are those widgets. */
3295 /* Update cl_data, menu_item things in F may have changed. */
3296 update_cl_data (cl_data, f, highlight_cb);
3298 for (cur = val->contents; cur; cur = cur->next)
3300 GList *iter;
3301 GtkWidget *sub = 0;
3302 GtkWidget *newsub;
3303 GtkMenuItem *witem = 0;
3305 /* Find sub menu that corresponds to val and update it. */
3306 for (iter = list ; iter; iter = g_list_next (iter))
3308 witem = GTK_MENU_ITEM (iter->data);
3309 if (xg_item_label_same_p (witem, cur->name))
3311 sub = gtk_menu_item_get_submenu (witem);
3312 break;
3316 newsub = xg_update_submenu (sub,
3318 cur->contents,
3319 select_cb,
3320 deactivate_cb,
3321 highlight_cb,
3322 cl_data);
3323 /* sub may still be NULL. If we just updated non deep and added
3324 a new menu bar item, it has no sub menu yet. So we set the
3325 newly created sub menu under witem. */
3326 if (newsub != sub && witem != 0)
3328 xg_set_screen (newsub, f);
3329 gtk_menu_item_set_submenu (witem, newsub);
3334 g_list_free (list);
3335 gtk_widget_show_all (menubar);
3338 /* Callback called when the menu bar W is mapped.
3339 Used to find the height of the menu bar if we didn't get it
3340 after showing the widget. */
3342 static void
3343 menubar_map_cb (GtkWidget *w, gpointer user_data)
3345 GtkRequisition req;
3346 struct frame *f = user_data;
3347 gtk_widget_get_preferred_size (w, NULL, &req);
3348 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3350 FRAME_MENUBAR_HEIGHT (f) = req.height;
3351 xg_height_or_width_changed (f);
3355 /* Recompute all the widgets of frame F, when the menu bar has been
3356 changed. */
3358 void
3359 xg_update_frame_menubar (struct frame *f)
3361 struct x_output *x = f->output_data.x;
3362 GtkRequisition req;
3364 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3365 return;
3367 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3368 return; /* Already done this, happens for frames created invisible. */
3370 block_input ();
3372 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3373 FALSE, FALSE, 0);
3374 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3376 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3377 gtk_widget_show_all (x->menubar_widget);
3378 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3380 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3382 FRAME_MENUBAR_HEIGHT (f) = req.height;
3383 xg_height_or_width_changed (f);
3385 unblock_input ();
3388 /* Get rid of the menu bar of frame F, and free its storage.
3389 This is used when deleting a frame, and when turning off the menu bar. */
3391 void
3392 free_frame_menubar (struct frame *f)
3394 struct x_output *x = f->output_data.x;
3396 if (x->menubar_widget)
3398 block_input ();
3400 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3401 /* The menubar and its children shall be deleted when removed from
3402 the container. */
3403 x->menubar_widget = 0;
3404 FRAME_MENUBAR_HEIGHT (f) = 0;
3405 xg_height_or_width_changed (f);
3406 unblock_input ();
3410 bool
3411 xg_event_is_for_menubar (struct frame *f, const XEvent *event)
3413 struct x_output *x = f->output_data.x;
3414 GList *iter;
3415 GdkRectangle rec;
3416 GList *list;
3417 GdkDisplay *gdpy;
3418 GdkWindow *gw;
3419 GdkEvent gevent;
3420 GtkWidget *gwdesc;
3422 if (! x->menubar_widget) return 0;
3424 if (! (event->xbutton.x >= 0
3425 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3426 && event->xbutton.y >= 0
3427 && event->xbutton.y < f->output_data.x->menubar_height
3428 && event->xbutton.same_screen))
3429 return 0;
3431 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3432 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3433 if (! gw) return 0;
3434 gevent.any.window = gw;
3435 gevent.any.type = GDK_NOTHING;
3436 gwdesc = gtk_get_event_widget (&gevent);
3437 if (! gwdesc) return 0;
3438 if (! GTK_IS_MENU_BAR (gwdesc)
3439 && ! GTK_IS_MENU_ITEM (gwdesc)
3440 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3441 return 0;
3443 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3444 if (! list) return 0;
3445 rec.x = event->xbutton.x;
3446 rec.y = event->xbutton.y;
3447 rec.width = 1;
3448 rec.height = 1;
3450 for (iter = list ; iter; iter = g_list_next (iter))
3452 GtkWidget *w = GTK_WIDGET (iter->data);
3453 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3454 break;
3456 g_list_free (list);
3457 return iter != 0;
3462 /***********************************************************************
3463 Scroll bar functions
3464 ***********************************************************************/
3467 /* Setting scroll bar values invokes the callback. Use this variable
3468 to indicate that callback should do nothing. */
3470 bool xg_ignore_gtk_scrollbar;
3472 /* The width of the scroll bar for the current theme. */
3474 static int scroll_bar_width_for_theme;
3476 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3477 may be larger than 32 bits. Keep a mapping from integer index to widget
3478 pointers to get around the 32 bit limitation. */
3480 static struct
3482 GtkWidget **widgets;
3483 ptrdiff_t max_size;
3484 ptrdiff_t used;
3485 } id_to_widget;
3487 /* Grow this much every time we need to allocate more */
3489 #define ID_TO_WIDGET_INCR 32
3491 /* Store the widget pointer W in id_to_widget and return the integer index. */
3493 static ptrdiff_t
3494 xg_store_widget_in_map (GtkWidget *w)
3496 ptrdiff_t i;
3498 if (id_to_widget.max_size == id_to_widget.used)
3500 ptrdiff_t new_size;
3501 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3502 memory_full (SIZE_MAX);
3504 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3505 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3506 new_size, sizeof (GtkWidget *));
3508 for (i = id_to_widget.max_size; i < new_size; ++i)
3509 id_to_widget.widgets[i] = 0;
3510 id_to_widget.max_size = new_size;
3513 /* Just loop over the array and find a free place. After all,
3514 how many scroll bars are we creating? Should be a small number.
3515 The check above guarantees we will find a free place. */
3516 for (i = 0; i < id_to_widget.max_size; ++i)
3518 if (! id_to_widget.widgets[i])
3520 id_to_widget.widgets[i] = w;
3521 ++id_to_widget.used;
3523 return i;
3527 /* Should never end up here */
3528 emacs_abort ();
3531 /* Remove pointer at IDX from id_to_widget.
3532 Called when scroll bar is destroyed. */
3534 static void
3535 xg_remove_widget_from_map (ptrdiff_t idx)
3537 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3539 id_to_widget.widgets[idx] = 0;
3540 --id_to_widget.used;
3544 /* Get the widget pointer at IDX from id_to_widget. */
3546 static GtkWidget *
3547 xg_get_widget_from_map (ptrdiff_t idx)
3549 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3550 return id_to_widget.widgets[idx];
3552 return 0;
3555 static void
3556 update_theme_scrollbar_width (void)
3558 #ifdef HAVE_GTK3
3559 GtkAdjustment *vadj;
3560 #else
3561 GtkObject *vadj;
3562 #endif
3563 GtkWidget *wscroll;
3564 int w = 0, b = 0;
3566 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3567 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3568 g_object_ref_sink (G_OBJECT (wscroll));
3569 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3570 gtk_widget_destroy (wscroll);
3571 g_object_unref (G_OBJECT (wscroll));
3572 w += 2*b;
3573 if (w < 16) w = 16;
3574 scroll_bar_width_for_theme = w;
3578 xg_get_default_scrollbar_width (void)
3580 return scroll_bar_width_for_theme;
3583 /* Return the scrollbar id for X Window WID on display DPY.
3584 Return -1 if WID not in id_to_widget. */
3586 ptrdiff_t
3587 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3589 ptrdiff_t idx;
3590 GtkWidget *w;
3592 w = xg_win_to_widget (dpy, wid);
3594 if (w)
3596 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3597 if (id_to_widget.widgets[idx] == w)
3598 return idx;
3601 return -1;
3604 /* Callback invoked when scroll bar WIDGET is destroyed.
3605 DATA is the index into id_to_widget for WIDGET.
3606 We free pointer to last scroll bar values here and remove the index. */
3608 static void
3609 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3611 intptr_t id = (intptr_t) data;
3612 xg_remove_widget_from_map (id);
3615 /* Create a scroll bar widget for frame F. Store the scroll bar
3616 in BAR.
3617 SCROLL_CALLBACK is the callback to invoke when the value of the
3618 bar changes.
3619 END_CALLBACK is the callback to invoke when scrolling ends.
3620 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3621 to set resources for the widget. */
3623 void
3624 xg_create_scroll_bar (struct frame *f,
3625 struct scroll_bar *bar,
3626 GCallback scroll_callback,
3627 GCallback end_callback,
3628 const char *scroll_bar_name)
3630 GtkWidget *wscroll;
3631 GtkWidget *webox;
3632 intptr_t scroll_id;
3633 #ifdef HAVE_GTK3
3634 GtkAdjustment *vadj;
3635 #else
3636 GtkObject *vadj;
3637 #endif
3639 /* Page, step increment values are not so important here, they
3640 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3641 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3642 0.1, 0.1, 0.1);
3644 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3645 webox = gtk_event_box_new ();
3646 gtk_widget_set_name (wscroll, scroll_bar_name);
3647 #ifndef HAVE_GTK3
3648 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3649 #endif
3650 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3652 scroll_id = xg_store_widget_in_map (wscroll);
3654 g_signal_connect (G_OBJECT (wscroll),
3655 "destroy",
3656 G_CALLBACK (xg_gtk_scroll_destroy),
3657 (gpointer) scroll_id);
3658 g_signal_connect (G_OBJECT (wscroll),
3659 "change-value",
3660 scroll_callback,
3661 (gpointer) bar);
3662 g_signal_connect (G_OBJECT (wscroll),
3663 "button-release-event",
3664 end_callback,
3665 (gpointer) bar);
3667 /* The scroll bar widget does not draw on a window of its own. Instead
3668 it draws on the parent window, in this case the edit widget. So
3669 whenever the edit widget is cleared, the scroll bar needs to redraw
3670 also, which causes flicker. Put an event box between the edit widget
3671 and the scroll bar, so the scroll bar instead draws itself on the
3672 event box window. */
3673 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3674 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3677 /* Set the cursor to an arrow. */
3678 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3680 bar->x_window = scroll_id;
3683 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3685 void
3686 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3688 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3689 if (w)
3691 GtkWidget *wparent = gtk_widget_get_parent (w);
3692 gtk_widget_destroy (w);
3693 gtk_widget_destroy (wparent);
3694 SET_FRAME_GARBAGED (f);
3698 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3699 in frame F.
3700 TOP/LEFT are the new pixel positions where the bar shall appear.
3701 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3703 void
3704 xg_update_scrollbar_pos (struct frame *f,
3705 ptrdiff_t scrollbar_id,
3706 int top,
3707 int left,
3708 int width,
3709 int height)
3712 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3714 if (wscroll)
3716 GtkWidget *wfixed = f->output_data.x->edit_widget;
3717 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3718 gint msl;
3720 /* Clear out old position. */
3721 int oldx = -1, oldy = -1, oldw, oldh;
3722 if (gtk_widget_get_parent (wparent) == wfixed)
3724 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3725 "x", &oldx, "y", &oldy, NULL);
3726 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3729 /* Move and resize to new values. */
3730 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3731 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3732 if (msl > height)
3734 /* No room. Hide scroll bar as some themes output a warning if
3735 the height is less than the min size. */
3736 gtk_widget_hide (wparent);
3737 gtk_widget_hide (wscroll);
3739 else
3741 gtk_widget_show_all (wparent);
3742 gtk_widget_set_size_request (wscroll, width, height);
3744 gtk_widget_queue_draw (wfixed);
3745 gdk_window_process_all_updates ();
3746 if (oldx != -1 && oldw > 0 && oldh > 0)
3747 /* Clear under old scroll bar position. This must be done after
3748 the gtk_widget_queue_draw and gdk_window_process_all_updates
3749 above. */
3750 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3751 oldx, oldy, oldw, oldh);
3753 /* GTK does not redraw until the main loop is entered again, but
3754 if there are no X events pending we will not enter it. So we sync
3755 here to get some events. */
3757 x_sync (f);
3758 SET_FRAME_GARBAGED (f);
3759 cancel_mouse_face (f);
3763 /* Get the current value of the range, truncated to an integer. */
3765 static int
3766 int_gtk_range_get_value (GtkRange *range)
3768 return gtk_range_get_value (range);
3772 /* Set the thumb size and position of scroll bar BAR. We are currently
3773 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3775 void
3776 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3777 int portion,
3778 int position,
3779 int whole)
3781 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3783 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3785 if (wscroll && bar->dragging == -1)
3787 GtkAdjustment *adj;
3788 gdouble shown;
3789 gdouble top;
3790 int size, value;
3791 int old_size;
3792 int new_step;
3793 bool changed = 0;
3795 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3797 if (scroll_bar_adjust_thumb_portion_p)
3799 /* We do the same as for MOTIF in xterm.c, use 30 chars per
3800 line rather than the real portion value. This makes the
3801 thumb less likely to resize and that looks better. */
3802 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3804 /* When the thumb is at the bottom, position == whole.
3805 So we need to increase `whole' to make space for the thumb. */
3806 whole += portion;
3809 if (whole <= 0)
3810 top = 0, shown = 1;
3811 else
3813 top = (gdouble) position / whole;
3814 shown = (gdouble) portion / whole;
3817 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
3818 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
3820 /* Assume all lines are of equal size. */
3821 new_step = size / max (1, FRAME_LINES (f));
3823 old_size = gtk_adjustment_get_page_size (adj);
3824 if (old_size != size)
3826 int old_step = gtk_adjustment_get_step_increment (adj);
3827 if (old_step != new_step)
3829 gtk_adjustment_set_page_size (adj, size);
3830 gtk_adjustment_set_step_increment (adj, new_step);
3831 /* Assume a page increment is about 95% of the page size */
3832 gtk_adjustment_set_page_increment (adj, size - size / 20);
3833 changed = 1;
3837 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3839 block_input ();
3841 /* gtk_range_set_value invokes the callback. Set
3842 ignore_gtk_scrollbar to make the callback do nothing */
3843 xg_ignore_gtk_scrollbar = 1;
3845 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3846 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3847 else if (changed)
3848 gtk_adjustment_changed (adj);
3850 xg_ignore_gtk_scrollbar = 0;
3852 unblock_input ();
3857 /* Return true if EVENT is for a scroll bar in frame F.
3858 When the same X window is used for several Gtk+ widgets, we cannot
3859 say for sure based on the X window alone if an event is for the
3860 frame. This function does additional checks. */
3862 bool
3863 xg_event_is_for_scrollbar (struct frame *f, const XEvent *event)
3865 bool retval = 0;
3867 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3869 /* Check if press occurred outside the edit widget. */
3870 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3871 GdkWindow *gwin;
3872 #ifdef HAVE_GTK3
3873 GdkDevice *gdev = gdk_device_manager_get_client_pointer
3874 (gdk_display_get_device_manager (gdpy));
3875 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
3876 #else
3877 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
3878 #endif
3879 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
3881 else if (f
3882 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3883 || event->type == MotionNotify))
3885 /* If we are releasing or moving the scroll bar, it has the grab. */
3886 GtkWidget *w = gtk_grab_get_current ();
3887 retval = w != 0 && GTK_IS_SCROLLBAR (w);
3890 return retval;
3895 /***********************************************************************
3896 Tool bar functions
3897 ***********************************************************************/
3898 /* The key for the data we put in the GtkImage widgets. The data is
3899 the image used by Emacs. We use this to see if we need to update
3900 the GtkImage with a new image. */
3901 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3903 /* The key for storing the latest modifiers so the activate callback can
3904 get them. */
3905 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3907 /* The key for storing the button widget in its proxy menu item. */
3908 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3910 /* The key for the data we put in the GtkImage widgets. The data is
3911 the stock name used by Emacs. We use this to see if we need to update
3912 the GtkImage with a new image. */
3913 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3915 /* As above, but this is used for named theme widgets, as opposed to
3916 stock items. */
3917 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3919 /* Callback function invoked when a tool bar item is pressed.
3920 W is the button widget in the tool bar that got pressed,
3921 CLIENT_DATA is an integer that is the index of the button in the
3922 tool bar. 0 is the first button. */
3924 static gboolean
3925 xg_tool_bar_button_cb (GtkWidget *widget,
3926 GdkEventButton *event,
3927 gpointer user_data)
3929 intptr_t state = event->state;
3930 gpointer ptr = (gpointer) state;
3931 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
3932 return FALSE;
3936 /* Callback function invoked when a tool bar item is pressed.
3937 W is the button widget in the tool bar that got pressed,
3938 CLIENT_DATA is an integer that is the index of the button in the
3939 tool bar. 0 is the first button. */
3941 static void
3942 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
3944 intptr_t idx = (intptr_t) client_data;
3945 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
3946 intptr_t mod = (intptr_t) gmod;
3948 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3949 Lisp_Object key, frame;
3950 struct input_event event;
3951 EVENT_INIT (event);
3953 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3954 return;
3956 idx *= TOOL_BAR_ITEM_NSLOTS;
3958 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
3959 XSETFRAME (frame, f);
3961 /* We generate two events here. The first one is to set the prefix
3962 to `(tool_bar)', see keyboard.c. */
3963 event.kind = TOOL_BAR_EVENT;
3964 event.frame_or_window = frame;
3965 event.arg = frame;
3966 kbd_buffer_store_event (&event);
3968 event.kind = TOOL_BAR_EVENT;
3969 event.frame_or_window = frame;
3970 event.arg = key;
3971 /* Convert between the modifier bits GDK uses and the modifier bits
3972 Emacs uses. This assumes GDK and X masks are the same, which they are when
3973 this is written. */
3974 event.modifiers = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), mod);
3975 kbd_buffer_store_event (&event);
3977 /* Return focus to the frame after we have clicked on a detached
3978 tool bar button. */
3979 x_focus_frame (f);
3982 /* Callback function invoked when a tool bar item is pressed in a detached
3983 tool bar or the overflow drop down menu.
3984 We just call xg_tool_bar_callback.
3985 W is the menu item widget that got pressed,
3986 CLIENT_DATA is an integer that is the index of the button in the
3987 tool bar. 0 is the first button. */
3989 static void
3990 xg_tool_bar_proxy_callback (GtkWidget *w, gpointer client_data)
3992 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3993 XG_TOOL_BAR_PROXY_BUTTON));
3994 xg_tool_bar_callback (wbutton, client_data);
3998 static gboolean
3999 xg_tool_bar_help_callback (GtkWidget *w,
4000 GdkEventCrossing *event,
4001 gpointer client_data);
4003 /* This callback is called when a help is to be shown for an item in
4004 the detached tool bar when the detached tool bar it is not expanded. */
4006 static gboolean
4007 xg_tool_bar_proxy_help_callback (GtkWidget *w,
4008 GdkEventCrossing *event,
4009 gpointer client_data)
4011 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
4012 XG_TOOL_BAR_PROXY_BUTTON));
4014 return xg_tool_bar_help_callback (wbutton, event, client_data);
4017 static GtkWidget *
4018 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4020 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4021 GtkWidget *c1 = clist->data;
4022 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4024 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4025 g_list_free (clist);
4026 return GTK_IS_LABEL (c1) ? c1 : c2;
4030 /* This callback is called when a tool item should create a proxy item,
4031 such as for the overflow menu. Also called when the tool bar is detached.
4032 If we don't create a proxy menu item, the detached tool bar will be
4033 blank. */
4035 static gboolean
4036 xg_tool_bar_menu_proxy (GtkToolItem *toolitem, gpointer user_data)
4038 GtkButton *wbutton = GTK_BUTTON (XG_BIN_CHILD (XG_BIN_CHILD (toolitem)));
4039 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4040 GtkWidget *c1;
4041 GtkLabel *wlbl = GTK_LABEL (xg_get_tool_bar_widgets (vb, &c1));
4042 GtkImage *wimage = GTK_IMAGE (c1);
4043 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label
4044 (wlbl ? gtk_label_get_text (wlbl) : "");
4045 GtkWidget *wmenuimage;
4048 if (gtk_button_get_use_stock (wbutton))
4049 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
4050 GTK_ICON_SIZE_MENU);
4051 else
4053 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
4054 GtkImageType store_type = gtk_image_get_storage_type (wimage);
4056 g_object_set (G_OBJECT (settings), "gtk-menu-images", TRUE, NULL);
4058 if (store_type == GTK_IMAGE_STOCK)
4060 gchar *stock_id;
4061 gtk_image_get_stock (wimage, &stock_id, NULL);
4062 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
4064 else if (store_type == GTK_IMAGE_ICON_SET)
4066 GtkIconSet *icon_set;
4067 gtk_image_get_icon_set (wimage, &icon_set, NULL);
4068 wmenuimage = gtk_image_new_from_icon_set (icon_set,
4069 GTK_ICON_SIZE_MENU);
4071 else if (store_type == GTK_IMAGE_PIXBUF)
4073 gint width, height;
4075 if (settings &&
4076 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
4077 &width, &height))
4079 GdkPixbuf *src_pixbuf, *dest_pixbuf;
4081 src_pixbuf = gtk_image_get_pixbuf (wimage);
4082 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
4083 GDK_INTERP_BILINEAR);
4085 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
4087 else
4089 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
4090 emacs_abort ();
4093 else if (store_type == GTK_IMAGE_ICON_NAME)
4095 const gchar *icon_name;
4096 GtkIconSize icon_size;
4098 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
4099 wmenuimage = gtk_image_new_from_icon_name (icon_name,
4100 GTK_ICON_SIZE_MENU);
4102 else
4104 fprintf (stderr, "internal error: store_type is %d\n", store_type);
4105 emacs_abort ();
4108 if (wmenuimage)
4109 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
4111 g_signal_connect (G_OBJECT (wmenuitem),
4112 "activate",
4113 G_CALLBACK (xg_tool_bar_proxy_callback),
4114 user_data);
4117 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
4118 (gpointer) wbutton);
4119 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
4120 gtk_widget_set_sensitive (wmenuitem,
4121 gtk_widget_get_sensitive (GTK_WIDGET (wbutton)));
4123 /* Use enter/leave notify to show help. We use the events
4124 rather than the GtkButton specific signals "enter" and
4125 "leave", so we can have only one callback. The event
4126 will tell us what kind of event it is. */
4127 g_signal_connect (G_OBJECT (wmenuitem),
4128 "enter-notify-event",
4129 G_CALLBACK (xg_tool_bar_proxy_help_callback),
4130 user_data);
4131 g_signal_connect (G_OBJECT (wmenuitem),
4132 "leave-notify-event",
4133 G_CALLBACK (xg_tool_bar_proxy_help_callback),
4134 user_data);
4136 return TRUE;
4139 /* This callback is called when a tool bar is detached. We must set
4140 the height of the tool bar to zero when this happens so frame sizes
4141 are correctly calculated.
4142 WBOX is the handle box widget that enables detach/attach of the tool bar.
4143 W is the tool bar widget.
4144 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
4146 static void
4147 xg_tool_bar_detach_callback (GtkHandleBox *wbox,
4148 GtkWidget *w,
4149 gpointer client_data)
4151 struct frame *f = client_data;
4153 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
4154 NULL);
4156 if (f)
4158 GtkRequisition req, req2;
4160 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4161 gtk_widget_get_preferred_size (w, NULL, &req2);
4162 req.width -= req2.width;
4163 req.height -= req2.height;
4164 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4165 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4166 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4167 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4168 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4169 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4170 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4171 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4172 xg_height_or_width_changed (f);
4176 /* This callback is called when a tool bar is reattached. We must set
4177 the height of the tool bar when this happens so frame sizes
4178 are correctly calculated.
4179 WBOX is the handle box widget that enables detach/attach of the tool bar.
4180 W is the tool bar widget.
4181 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
4183 static void
4184 xg_tool_bar_attach_callback (GtkHandleBox *wbox,
4185 GtkWidget *w,
4186 gpointer client_data)
4188 struct frame *f = client_data;
4189 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
4191 if (f)
4193 GtkRequisition req, req2;
4195 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4196 gtk_widget_get_preferred_size (w, NULL, &req2);
4197 req.width += req2.width;
4198 req.height += req2.height;
4199 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4200 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4201 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4202 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4203 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4204 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4205 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4206 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4207 xg_height_or_width_changed (f);
4211 /* This callback is called when the mouse enters or leaves a tool bar item.
4212 It is used for displaying and hiding the help text.
4213 W is the tool bar item, a button.
4214 EVENT is either an enter event or leave event.
4215 CLIENT_DATA is an integer that is the index of the button in the
4216 tool bar. 0 is the first button.
4218 Returns FALSE to tell GTK to keep processing this event. */
4220 static gboolean
4221 xg_tool_bar_help_callback (GtkWidget *w,
4222 GdkEventCrossing *event,
4223 gpointer client_data)
4225 intptr_t idx = (intptr_t) client_data;
4226 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4227 Lisp_Object help, frame;
4229 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4230 return FALSE;
4232 if (event->type == GDK_ENTER_NOTIFY)
4234 idx *= TOOL_BAR_ITEM_NSLOTS;
4235 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4237 if (NILP (help))
4238 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4240 else
4241 help = Qnil;
4243 XSETFRAME (frame, f);
4244 kbd_buffer_store_help_event (frame, help);
4246 return FALSE;
4250 /* This callback is called when a tool bar item shall be redrawn.
4251 It modifies the expose event so that the GtkImage widget redraws the
4252 whole image. This to overcome a bug that makes GtkImage draw the image
4253 in the wrong place when it tries to redraw just a part of the image.
4254 W is the GtkImage to be redrawn.
4255 EVENT is the expose event for W.
4256 CLIENT_DATA is unused.
4258 Returns FALSE to tell GTK to keep processing this event. */
4260 #ifndef HAVE_GTK3
4261 static gboolean
4262 xg_tool_bar_item_expose_callback (GtkWidget *w,
4263 GdkEventExpose *event,
4264 gpointer client_data)
4266 gint width, height;
4268 gdk_drawable_get_size (event->window, &width, &height);
4269 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4270 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4272 event->area.x = max (0, event->area.x);
4273 event->area.y = max (0, event->area.y);
4275 event->area.width = max (width, event->area.width);
4276 event->area.height = max (height, event->area.height);
4278 return FALSE;
4280 #endif
4282 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4283 #define toolbar_set_orientation(w, o) \
4284 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4285 #else
4286 #define toolbar_set_orientation(w, o) \
4287 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4288 #endif
4290 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4291 #define TOOLBAR_TOP_WIDGET(x) ((x)->handlebox_widget)
4292 #else
4293 #define TOOLBAR_TOP_WIDGET(x) ((x)->toolbar_widget)
4294 #endif
4296 /* Attach a tool bar to frame F. */
4298 static void
4299 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4301 struct x_output *x = f->output_data.x;
4302 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4303 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4305 toolbar_set_orientation (x->toolbar_widget,
4306 into_hbox
4307 ? GTK_ORIENTATION_VERTICAL
4308 : GTK_ORIENTATION_HORIZONTAL);
4309 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4310 if (!x->handlebox_widget)
4312 top_widget = x->handlebox_widget = gtk_handle_box_new ();
4313 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
4314 G_CALLBACK (xg_tool_bar_detach_callback), f);
4315 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
4316 G_CALLBACK (xg_tool_bar_attach_callback), f);
4317 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
4318 x->toolbar_widget);
4320 #endif
4322 if (into_hbox)
4324 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4325 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4326 GTK_POS_TOP);
4327 #endif
4328 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4329 FALSE, FALSE, 0);
4331 if (EQ (pos, Qleft))
4332 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4333 top_widget,
4335 x->toolbar_in_hbox = true;
4337 else
4339 bool vbox_pos = x->menubar_widget != 0;
4340 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4341 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4342 GTK_POS_LEFT);
4343 #endif
4344 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4345 FALSE, FALSE, 0);
4347 if (EQ (pos, Qtop))
4348 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4349 top_widget,
4350 vbox_pos);
4351 x->toolbar_in_hbox = false;
4353 x->toolbar_is_packed = true;
4356 static bool xg_update_tool_bar_sizes (struct frame *f);
4358 static void
4359 tb_size_cb (GtkWidget *widget,
4360 GdkRectangle *allocation,
4361 gpointer user_data)
4363 /* When tool bar is created it has one preferred size. But when size is
4364 allocated between widgets, it may get another. So we must update
4365 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4366 struct frame *f = user_data;
4367 if (xg_update_tool_bar_sizes (f))
4368 xg_height_or_width_changed (f);
4371 /* Create a tool bar for frame F. */
4373 static void
4374 xg_create_tool_bar (struct frame *f)
4376 struct x_output *x = f->output_data.x;
4377 #if GTK_CHECK_VERSION (3, 3, 6)
4378 GtkStyleContext *gsty;
4379 #endif
4380 struct xg_frame_tb_info *tbinfo
4381 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4382 TB_INFO_KEY);
4383 if (! tbinfo)
4385 tbinfo = xmalloc (sizeof (*tbinfo));
4386 tbinfo->last_tool_bar = Qnil;
4387 tbinfo->style = Qnil;
4388 tbinfo->hmargin = tbinfo->vmargin = 0;
4389 tbinfo->dir = GTK_TEXT_DIR_NONE;
4390 tbinfo->n_last_items = 0;
4391 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4392 TB_INFO_KEY,
4393 tbinfo);
4396 x->toolbar_widget = gtk_toolbar_new ();
4398 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4400 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4401 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4402 g_signal_connect (x->toolbar_widget, "size-allocate",
4403 G_CALLBACK (tb_size_cb), f);
4404 #if GTK_CHECK_VERSION (3, 3, 6)
4405 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4406 gtk_style_context_add_class (gsty, "primary-toolbar");
4407 #endif
4411 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4413 /* Find the right-to-left image named by RTL in the tool bar images for F.
4414 Returns IMAGE if RTL is not found. */
4416 static Lisp_Object
4417 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4419 int i;
4420 Lisp_Object file, rtl_name;
4421 struct gcpro gcpro1, gcpro2;
4422 GCPRO2 (file, rtl_name);
4424 rtl_name = Ffile_name_nondirectory (rtl);
4426 for (i = 0; i < f->n_tool_bar_items; ++i)
4428 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4429 if (!NILP (file = file_for_image (rtl_image)))
4431 file = call1 (intern ("file-name-sans-extension"),
4432 Ffile_name_nondirectory (file));
4433 if (! NILP (Fequal (file, rtl_name)))
4435 image = rtl_image;
4436 break;
4441 return image;
4444 static GtkToolItem *
4445 xg_make_tool_item (struct frame *f,
4446 GtkWidget *wimage,
4447 GtkWidget **wbutton,
4448 const char *label,
4449 int i, bool horiz, bool text_image)
4451 GtkToolItem *ti = gtk_tool_item_new ();
4452 GtkWidget *vb = gtk_box_new (horiz
4453 ? GTK_ORIENTATION_HORIZONTAL
4454 : GTK_ORIENTATION_VERTICAL,
4456 GtkWidget *wb = gtk_button_new ();
4457 /* The eventbox is here so we can have tooltips on disabled items. */
4458 GtkWidget *weventbox = gtk_event_box_new ();
4459 #if GTK_CHECK_VERSION (3, 3, 6)
4460 GtkCssProvider *css_prov = gtk_css_provider_new ();
4461 GtkStyleContext *gsty;
4463 gtk_css_provider_load_from_data (css_prov,
4464 "GtkEventBox {"
4465 " background-color: transparent;"
4466 "}",
4467 -1, NULL);
4469 gsty = gtk_widget_get_style_context (weventbox);
4470 gtk_style_context_add_provider (gsty,
4471 GTK_STYLE_PROVIDER (css_prov),
4472 GTK_STYLE_PROVIDER_PRIORITY_USER);
4473 g_object_unref (css_prov);
4474 #endif
4476 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4478 if (wimage && !text_image)
4479 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4480 if (label)
4481 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4482 if (wimage && text_image)
4483 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4485 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4486 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4487 gtk_container_add (GTK_CONTAINER (wb), vb);
4488 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4489 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4491 if (wimage || label)
4493 intptr_t ii = i;
4494 gpointer gi = (gpointer) ii;
4496 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4497 G_CALLBACK (xg_tool_bar_menu_proxy),
4498 gi);
4500 g_signal_connect (G_OBJECT (wb), "clicked",
4501 G_CALLBACK (xg_tool_bar_callback),
4502 gi);
4504 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4506 #ifndef HAVE_GTK3
4507 /* Catch expose events to overcome an annoying redraw bug, see
4508 comment for xg_tool_bar_item_expose_callback. */
4509 g_signal_connect (G_OBJECT (ti),
4510 "expose-event",
4511 G_CALLBACK (xg_tool_bar_item_expose_callback),
4513 #endif
4514 gtk_tool_item_set_homogeneous (ti, FALSE);
4516 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4517 no distinction based on modifiers in the activate callback,
4518 so we have to do it ourselves. */
4519 g_signal_connect (wb, "button-release-event",
4520 G_CALLBACK (xg_tool_bar_button_cb),
4521 NULL);
4523 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4525 /* Use enter/leave notify to show help. We use the events
4526 rather than the GtkButton specific signals "enter" and
4527 "leave", so we can have only one callback. The event
4528 will tell us what kind of event it is. */
4529 g_signal_connect (G_OBJECT (weventbox),
4530 "enter-notify-event",
4531 G_CALLBACK (xg_tool_bar_help_callback),
4532 gi);
4533 g_signal_connect (G_OBJECT (weventbox),
4534 "leave-notify-event",
4535 G_CALLBACK (xg_tool_bar_help_callback),
4536 gi);
4539 if (wbutton) *wbutton = wb;
4541 return ti;
4544 static bool
4545 is_box_type (GtkWidget *vb, bool is_horizontal)
4547 #ifdef HAVE_GTK3
4548 bool ret = 0;
4549 if (GTK_IS_BOX (vb))
4551 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4552 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4553 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4555 return ret;
4556 #else
4557 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4558 #endif
4562 static bool
4563 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4564 const char *icon_name, const struct image *img,
4565 const char *label, bool horiz)
4567 gpointer old;
4568 GtkWidget *wimage;
4569 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4570 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4572 /* Check if the tool icon matches. */
4573 if (stock_name && wimage)
4575 old = g_object_get_data (G_OBJECT (wimage),
4576 XG_TOOL_BAR_STOCK_NAME);
4577 if (!old || strcmp (old, stock_name))
4578 return 1;
4580 else if (icon_name && wimage)
4582 old = g_object_get_data (G_OBJECT (wimage),
4583 XG_TOOL_BAR_ICON_NAME);
4584 if (!old || strcmp (old, icon_name))
4585 return 1;
4587 else if (wimage)
4589 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4590 XG_TOOL_BAR_IMAGE_DATA);
4591 Pixmap old_img = (Pixmap) gold_img;
4592 if (old_img != img->pixmap)
4593 return 1;
4596 /* Check button configuration and label. */
4597 if (is_box_type (vb, horiz)
4598 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4599 return 1;
4601 /* Ensure label is correct. */
4602 if (label && wlbl)
4603 gtk_label_set_text (GTK_LABEL (wlbl), label);
4604 return 0;
4607 static bool
4608 xg_update_tool_bar_sizes (struct frame *f)
4610 struct x_output *x = f->output_data.x;
4611 GtkRequisition req;
4612 int nl = 0, nr = 0, nt = 0, nb = 0;
4613 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4615 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4616 if (x->toolbar_in_hbox)
4618 int pos;
4619 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4620 top_widget,
4621 "position", &pos, NULL);
4622 if (pos == 0) nl = req.width;
4623 else nr = req.width;
4625 else
4627 int pos;
4628 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4629 top_widget,
4630 "position", &pos, NULL);
4631 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4632 else nb = req.height;
4635 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4636 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4637 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4638 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4640 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4641 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4642 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4643 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4644 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4645 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4646 return 1;
4649 return 0;
4653 /* Update the tool bar for frame F. Add new buttons and remove old. */
4655 void
4656 update_frame_tool_bar (struct frame *f)
4658 int i, j;
4659 struct x_output *x = f->output_data.x;
4660 int hmargin = 0, vmargin = 0;
4661 GtkToolbar *wtoolbar;
4662 GtkToolItem *ti;
4663 GtkTextDirection dir;
4664 Lisp_Object style;
4665 bool text_image, horiz;
4666 struct xg_frame_tb_info *tbinfo;
4668 if (! FRAME_GTK_WIDGET (f))
4669 return;
4671 block_input ();
4673 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4675 hmargin = XFASTINT (Vtool_bar_button_margin);
4676 vmargin = XFASTINT (Vtool_bar_button_margin);
4678 else if (CONSP (Vtool_bar_button_margin))
4680 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4681 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4683 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4684 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4687 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4688 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4689 i.e. zero. This means that margins less than
4690 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4691 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4692 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4694 if (! x->toolbar_widget)
4695 xg_create_tool_bar (f);
4697 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4698 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4700 style = Ftool_bar_get_system_style ();
4702 /* Are we up to date? */
4703 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4704 TB_INFO_KEY);
4706 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4707 && tbinfo->n_last_items == f->n_tool_bar_items
4708 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4709 && tbinfo->dir == dir
4710 && ! NILP (Fequal (tbinfo->style, style))
4711 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4713 unblock_input ();
4714 return;
4717 tbinfo->last_tool_bar = f->tool_bar_items;
4718 tbinfo->n_last_items = f->n_tool_bar_items;
4719 tbinfo->style = style;
4720 tbinfo->hmargin = hmargin;
4721 tbinfo->vmargin = vmargin;
4722 tbinfo->dir = dir;
4724 text_image = EQ (style, Qtext_image_horiz);
4725 horiz = EQ (style, Qboth_horiz) || text_image;
4727 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4729 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4730 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4731 int idx;
4732 ptrdiff_t img_id;
4733 int icon_size = 0;
4734 struct image *img = NULL;
4735 Lisp_Object image;
4736 Lisp_Object stock = Qnil;
4737 GtkStockItem stock_item;
4738 char *stock_name = NULL;
4739 char *icon_name = NULL;
4740 Lisp_Object rtl;
4741 GtkWidget *wbutton = NULL;
4742 Lisp_Object specified_file;
4743 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4744 const char *label
4745 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4746 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4747 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4748 : "";
4750 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4752 /* If this is a separator, use a gtk separator item. */
4753 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4755 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4757 if (ti)
4758 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4759 GTK_WIDGET (ti));
4760 ti = gtk_separator_tool_item_new ();
4761 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4763 j++;
4764 continue;
4767 /* Otherwise, the tool-bar item is an ordinary button. */
4769 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4771 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4772 ti = NULL;
4775 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4777 /* Ignore invalid image specifications. */
4778 image = PROP (TOOL_BAR_ITEM_IMAGES);
4779 if (!valid_image_p (image))
4781 if (ti)
4782 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4783 GTK_WIDGET (ti));
4784 continue;
4787 specified_file = file_for_image (image);
4788 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4789 stock = call1 (Qx_gtk_map_stock, specified_file);
4791 if (STRINGP (stock))
4793 stock_name = SSDATA (stock);
4794 if (stock_name[0] == 'n' && stock_name[1] == ':')
4796 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4797 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
4799 icon_name = stock_name + 2;
4800 stock_name = NULL;
4801 stock = Qnil;
4803 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
4804 icon_name = NULL;
4805 else
4806 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4808 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
4809 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4810 else
4812 stock = Qnil;
4813 stock_name = NULL;
4817 if (stock_name == NULL && icon_name == NULL)
4819 /* No stock image, or stock item not known. Try regular
4820 image. If image is a vector, choose it according to the
4821 button state. */
4822 if (dir == GTK_TEXT_DIR_RTL
4823 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4824 && STRINGP (rtl))
4825 image = find_rtl_image (f, image, rtl);
4827 if (VECTORP (image))
4829 if (enabled_p)
4830 idx = (selected_p
4831 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4832 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4833 else
4834 idx = (selected_p
4835 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4836 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4838 eassert (ASIZE (image) >= idx);
4839 image = AREF (image, idx);
4841 else
4842 idx = -1;
4844 img_id = lookup_image (f, image);
4845 img = IMAGE_FROM_ID (f, img_id);
4846 prepare_image_for_display (f, img);
4848 if (img->load_failed_p || img->pixmap == None)
4850 if (ti)
4851 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4852 GTK_WIDGET (ti));
4853 continue;
4857 /* If there is an existing widget, check if it's stale; if so,
4858 remove it and make a new tool item from scratch. */
4859 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4860 img, label, horiz))
4862 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4863 GTK_WIDGET (ti));
4864 ti = NULL;
4867 if (ti == NULL)
4869 GtkWidget *w;
4871 /* Save the image so we can see if an update is needed the
4872 next time we call xg_tool_item_match_p. */
4873 if (EQ (style, Qtext))
4874 w = NULL;
4875 else if (stock_name)
4877 w = gtk_image_new_from_stock (stock_name, icon_size);
4878 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4879 (gpointer) xstrdup (stock_name),
4880 (GDestroyNotify) xfree);
4882 else if (icon_name)
4884 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4885 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4886 (gpointer) xstrdup (icon_name),
4887 (GDestroyNotify) xfree);
4889 else
4891 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4892 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4893 (gpointer)img->pixmap);
4896 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4897 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4898 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4901 #undef PROP
4903 gtk_widget_set_sensitive (wbutton, enabled_p);
4904 j++;
4907 /* Remove buttons not longer needed. */
4910 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4911 if (ti)
4912 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4913 } while (ti != NULL);
4915 if (f->n_tool_bar_items != 0)
4917 if (! x->toolbar_is_packed)
4918 xg_pack_tool_bar (f, f->tool_bar_position);
4919 gtk_widget_show_all (TOOLBAR_TOP_WIDGET (x));
4920 if (xg_update_tool_bar_sizes (f))
4921 xg_height_or_width_changed (f);
4924 unblock_input ();
4927 /* Deallocate all resources for the tool bar on frame F.
4928 Remove the tool bar. */
4930 void
4931 free_frame_tool_bar (struct frame *f)
4933 struct x_output *x = f->output_data.x;
4935 if (x->toolbar_widget)
4937 struct xg_frame_tb_info *tbinfo;
4938 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4940 block_input ();
4941 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4942 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
4943 if (x->toolbar_is_packed)
4945 if (x->toolbar_in_hbox)
4946 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4947 top_widget);
4948 else
4949 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4950 top_widget);
4952 else
4953 gtk_widget_destroy (x->toolbar_widget);
4955 x->toolbar_widget = 0;
4956 TOOLBAR_TOP_WIDGET (x) = 0;
4957 x->toolbar_is_packed = false;
4958 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4959 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
4961 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4962 TB_INFO_KEY);
4963 if (tbinfo)
4965 xfree (tbinfo);
4966 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4967 TB_INFO_KEY,
4968 NULL);
4971 xg_height_or_width_changed (f);
4973 unblock_input ();
4977 void
4978 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
4980 struct x_output *x = f->output_data.x;
4981 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4983 if (! x->toolbar_widget || ! top_widget)
4984 return;
4986 block_input ();
4987 g_object_ref (top_widget);
4988 if (x->toolbar_is_packed)
4990 if (x->toolbar_in_hbox)
4991 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4992 top_widget);
4993 else
4994 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4995 top_widget);
4998 xg_pack_tool_bar (f, pos);
4999 g_object_unref (top_widget);
5000 if (xg_update_tool_bar_sizes (f))
5001 xg_height_or_width_changed (f);
5003 unblock_input ();
5008 /***********************************************************************
5009 Initializing
5010 ***********************************************************************/
5011 void
5012 xg_initialize (void)
5014 GtkBindingSet *binding_set;
5015 GtkSettings *settings;
5017 #if HAVE_XFT
5018 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5019 we keep it permanently linked in. */
5020 XftInit (0);
5021 #endif
5023 gdpy_def = NULL;
5024 xg_ignore_gtk_scrollbar = 0;
5025 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
5026 xg_detached_menus = 0;
5027 #endif
5028 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5029 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5031 id_to_widget.max_size = id_to_widget.used = 0;
5032 id_to_widget.widgets = 0;
5034 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5035 (gdk_display_get_default ()));
5036 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5037 bindings. It doesn't seem to be any way to remove properties,
5038 so we set it to "" which in means "no key". */
5039 gtk_settings_set_string_property (settings,
5040 "gtk-menu-bar-accel",
5042 EMACS_CLASS);
5044 /* Make GTK text input widgets use Emacs style keybindings. This is
5045 Emacs after all. */
5046 gtk_settings_set_string_property (settings,
5047 "gtk-key-theme-name",
5048 "Emacs",
5049 EMACS_CLASS);
5051 /* Make dialogs close on C-g. Since file dialog inherits from
5052 dialog, this works for them also. */
5053 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
5054 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5055 "close", 0);
5057 /* Make menus close on C-g. */
5058 binding_set = gtk_binding_set_by_class (g_type_class_ref
5059 (GTK_TYPE_MENU_SHELL));
5060 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5061 "cancel", 0);
5062 update_theme_scrollbar_width ();
5064 #ifdef HAVE_FREETYPE
5065 x_last_font_name = NULL;
5066 #endif
5069 #endif /* USE_GTK */