Don't unnecessarily use non-ASCII characters in C sources
[emacs.git] / src / gtkutil.c
blob123236f5f08ae442db4f230a5996e6cfd4c84395
1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2018 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 (at
10 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 <https://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 "dispextern.h"
30 #include "frame.h"
31 #include "systime.h"
32 #include "xterm.h"
33 #include "blockinput.h"
34 #include "window.h"
35 #include "gtkutil.h"
36 #include "termhooks.h"
37 #include "keyboard.h"
38 #include "coding.h"
40 #include <gdk/gdkkeysyms.h>
42 #ifdef HAVE_XFT
43 #include <X11/Xft/Xft.h>
44 #endif
46 #ifdef HAVE_GTK3
47 #include <gtk/gtkx.h>
48 #include "emacsgtkfixed.h"
49 #endif
51 #ifdef HAVE_XDBE
52 #include <X11/extensions/Xdbe.h>
53 #endif
55 #ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
56 #define gtk_widget_set_has_window(w, b) \
57 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
58 #endif
59 #ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
60 #define gtk_dialog_get_action_area(w) ((w)->action_area)
61 #define gtk_dialog_get_content_area(w) ((w)->vbox)
62 #endif
63 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
64 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
65 #endif
66 #ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
67 #define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
68 #define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
69 #define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
70 #define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
71 #endif
72 #if GTK_CHECK_VERSION (2, 12, 0)
73 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
74 #else
75 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
76 #endif
78 #if ! GTK_CHECK_VERSION (2, 14, 0)
79 #define gtk_adjustment_configure(adj, xvalue, xlower, \
80 xupper, xstep_increment, \
81 xpage_increment, xpagesize) \
82 do { \
83 adj->lower = xlower; \
84 adj->upper = xupper; \
85 adj->page_size = xpagesize; \
86 gtk_adjustment_set_value (adj, xvalue); \
87 adj->page_increment = xpage_increment; \
88 adj->step_increment = xstep_increment; \
89 } while (0)
90 #endif /* < Gtk+ 2.14 */
92 #ifdef HAVE_FREETYPE
93 #if GTK_CHECK_VERSION (3, 2, 0)
94 #define USE_NEW_GTK_FONT_CHOOSER 1
95 #else
96 #define USE_NEW_GTK_FONT_CHOOSER 0
97 #define gtk_font_chooser_dialog_new(x, y) \
98 gtk_font_selection_dialog_new (x)
99 #undef GTK_FONT_CHOOSER
100 #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
101 #define gtk_font_chooser_set_font(x, y) \
102 gtk_font_selection_dialog_set_font_name (x, y)
103 #endif
104 #endif /* HAVE_FREETYPE */
106 #if GTK_CHECK_VERSION (3, 10, 0)
107 #define XG_TEXT_CANCEL "Cancel"
108 #define XG_TEXT_OK "OK"
109 #define XG_TEXT_OPEN "Open"
110 #else
111 #define XG_TEXT_CANCEL GTK_STOCK_CANCEL
112 #define XG_TEXT_OK GTK_STOCK_OK
113 #define XG_TEXT_OPEN GTK_STOCK_OPEN
114 #endif
116 #ifndef HAVE_GTK3
117 #ifdef USE_GTK_TOOLTIP
118 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
119 #endif
120 #define gdk_window_get_geometry(w, a, b, c, d) \
121 gdk_window_get_geometry (w, a, b, c, d, 0)
122 #define gdk_x11_window_lookup_for_display(d, w) \
123 gdk_xid_table_lookup_for_display (d, w)
124 #define gtk_box_new(ori, spacing) \
125 ((ori) == GTK_ORIENTATION_HORIZONTAL \
126 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
127 #define gtk_scrollbar_new(ori, spacing) \
128 ((ori) == GTK_ORIENTATION_HORIZONTAL \
129 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
130 #ifndef GDK_KEY_g
131 #define GDK_KEY_g GDK_g
132 #endif
133 #endif /* HAVE_GTK3 */
135 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
137 static void update_theme_scrollbar_width (void);
138 static void update_theme_scrollbar_height (void);
140 #define TB_INFO_KEY "xg_frame_tb_info"
141 struct xg_frame_tb_info
143 Lisp_Object last_tool_bar;
144 Lisp_Object style;
145 int n_last_items;
146 int hmargin, vmargin;
147 GtkTextDirection dir;
150 static GtkWidget * xg_get_widget_from_map (ptrdiff_t idx);
153 /***********************************************************************
154 Display handling functions
155 ***********************************************************************/
157 /* Keep track of the default display, or NULL if there is none. Emacs
158 may close all its displays. */
160 static GdkDisplay *gdpy_def;
162 /* When the GTK widget W is to be created on a display for F that
163 is not the default display, set the display for W.
164 W can be a GtkMenu or a GtkWindow widget. */
166 static void
167 xg_set_screen (GtkWidget *w, struct frame *f)
169 if (FRAME_X_DISPLAY (f) != DEFAULT_GDK_DISPLAY ())
171 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
172 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
174 if (GTK_IS_MENU (w))
175 gtk_menu_set_screen (GTK_MENU (w), gscreen);
176 else
177 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
182 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
183 *DPY is set to NULL if the display can't be opened.
185 Returns non-zero if display could be opened, zero if display could not
186 be opened, and less than zero if the GTK version doesn't support
187 multiple displays. */
189 void
190 xg_display_open (char *display_name, Display **dpy)
192 GdkDisplay *gdpy;
194 unrequest_sigio (); /* See comment in x_display_ok, xterm.c. */
195 gdpy = gdk_display_open (display_name);
196 request_sigio ();
197 if (!gdpy_def && gdpy)
199 gdpy_def = gdpy;
200 gdk_display_manager_set_default_display (gdk_display_manager_get (),
201 gdpy);
204 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
207 /* Scaling/HiDPI functions. */
208 static int
209 xg_get_gdk_scale (void)
211 const char *sscale = getenv ("GDK_SCALE");
213 if (sscale)
215 long scale = atol (sscale);
216 if (0 < scale)
217 return min (scale, INT_MAX);
220 return 1;
224 xg_get_scale (struct frame *f)
226 #if GTK_CHECK_VERSION (3, 10, 0)
227 if (FRAME_GTK_WIDGET (f))
228 return gtk_widget_get_scale_factor (FRAME_GTK_WIDGET (f));
229 #endif
230 return xg_get_gdk_scale ();
233 /* Close display DPY. */
235 void
236 xg_display_close (Display *dpy)
238 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
240 /* If this is the default display, try to change it before closing.
241 If there is no other display to use, gdpy_def is set to NULL, and
242 the next call to xg_display_open resets the default display. */
243 if (gdk_display_get_default () == gdpy)
245 struct x_display_info *dpyinfo;
246 GdkDisplay *gdpy_new = NULL;
248 /* Find another display. */
249 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
250 if (dpyinfo->display != dpy)
252 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
253 gdk_display_manager_set_default_display (gdk_display_manager_get (),
254 gdpy_new);
255 break;
257 gdpy_def = gdpy_new;
260 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
261 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
262 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
263 can continue running, but there will be memory leaks. */
264 g_object_run_dispose (G_OBJECT (gdpy));
265 #else
266 /* This seems to be fixed in GTK 2.10. */
267 gdk_display_close (gdpy);
268 #endif
272 /***********************************************************************
273 Utility functions
274 ***********************************************************************/
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 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
288 static GdkPixbuf *
289 xg_get_pixbuf_from_pix_and_mask (struct frame *f,
290 Pixmap pix,
291 Pixmap mask)
293 GdkPixbuf *icon_buf = 0;
294 int iunused;
295 Window wunused;
296 unsigned int width, height, depth, uunused;
298 if (FRAME_DISPLAY_INFO (f)->red_bits != 8)
299 return 0;
300 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
301 &width, &height, &uunused, &depth);
302 if (depth != 24)
303 return 0;
304 XImage *xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
305 ~0, XYPixmap);
306 if (xim)
308 XImage *xmm = (! mask ? 0
309 : XGetImage (FRAME_X_DISPLAY (f), mask, 0, 0,
310 width, height, ~0, XYPixmap));
311 icon_buf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, width, height);
312 if (icon_buf)
314 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
315 int rowjunkwidth = gdk_pixbuf_get_rowstride (icon_buf) - width * 4;
316 for (int y = 0; y < height; y++, pixels += rowjunkwidth)
317 for (int x = 0; x < width; x++)
319 unsigned long rgb = XGetPixel (xim, x, y);
320 *pixels++ = (rgb >> 16) & 255;
321 *pixels++ = (rgb >> 8) & 255;
322 *pixels++ = rgb & 255;
323 *pixels++ = xmm && !XGetPixel (xmm, x, y) ? 0 : 255;
327 if (xmm)
328 XDestroyImage (xmm);
329 XDestroyImage (xim);
332 return icon_buf;
335 static Lisp_Object
336 file_for_image (Lisp_Object image)
338 Lisp_Object specified_file = Qnil;
339 Lisp_Object tail;
341 for (tail = XCDR (image);
342 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
343 tail = XCDR (XCDR (tail)))
344 if (EQ (XCAR (tail), QCfile))
345 specified_file = XCAR (XCDR (tail));
347 return specified_file;
350 /* For the image defined in IMG, make and return a GtkImage. For displays with
351 8 planes or less we must make a GdkPixbuf and apply the mask manually.
352 Otherwise the highlighting and dimming the tool bar code in GTK does
353 will look bad. For display with more than 8 planes we just use the
354 pixmap and mask directly. For monochrome displays, GTK doesn't seem
355 able to use external pixmaps, it looks bad whatever we do.
356 The image is defined on the display where frame F is.
357 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
358 If OLD_WIDGET is NULL, a new widget is constructed and returned.
359 If OLD_WIDGET is not NULL, that widget is modified. */
361 static GtkWidget *
362 xg_get_image_for_pixmap (struct frame *f,
363 struct image *img,
364 GtkWidget *widget,
365 GtkImage *old_widget)
367 GdkPixbuf *icon_buf;
369 /* If we have a file, let GTK do all the image handling.
370 This seems to be the only way to make insensitive and activated icons
371 look good in all cases. */
372 Lisp_Object specified_file = file_for_image (img->spec);
373 Lisp_Object file;
375 /* We already loaded the image once before calling this
376 function, so this only fails if the image file has been removed.
377 In that case, use the pixmap already loaded. */
379 if (STRINGP (specified_file)
380 && STRINGP (file = x_find_image_file (specified_file)))
382 char *encoded_file = SSDATA (ENCODE_FILE (file));
383 if (! old_widget)
384 old_widget = GTK_IMAGE (gtk_image_new_from_file (encoded_file));
385 else
386 gtk_image_set_from_file (old_widget, encoded_file);
388 return GTK_WIDGET (old_widget);
391 /* No file, do the image handling ourselves. This will look very bad
392 on a monochrome display, and sometimes bad on all displays with
393 certain themes. */
395 /* This is a workaround to make icons look good on pseudo color
396 displays. Apparently GTK expects the images to have an alpha
397 channel. If they don't, insensitive and activated icons will
398 look bad. This workaround does not work on monochrome displays,
399 and is strictly not needed on true color/static color displays (i.e.
400 16 bits and higher). But we do it anyway so we get a pixbuf that is
401 not associated with the img->pixmap. The img->pixmap may be removed
402 by clearing the image cache and then the tool bar redraw fails, since
403 Gtk+ assumes the pixmap is always there. */
404 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
406 if (icon_buf)
408 if (! old_widget)
409 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
410 else
411 gtk_image_set_from_pixbuf (old_widget, icon_buf);
413 g_object_unref (G_OBJECT (icon_buf));
416 return GTK_WIDGET (old_widget);
420 /* Set CURSOR on W and all widgets W contain. We must do like this
421 for scroll bars and menu because they create widgets internally,
422 and it is those widgets that are visible. */
424 static void
425 xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
427 GdkWindow *window = gtk_widget_get_window (w);
428 GList *children = gdk_window_peek_children (window);
430 gdk_window_set_cursor (window, cursor);
432 /* The scroll bar widget has more than one GDK window (had to look at
433 the source to figure this out), and there is no way to set cursor
434 on widgets in GTK. So we must set the cursor for all GDK windows.
435 Ditto for menus. */
437 for ( ; children; children = g_list_next (children))
438 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
441 /* Insert NODE into linked LIST. */
443 static void
444 xg_list_insert (xg_list_node *list, xg_list_node *node)
446 xg_list_node *list_start = list->next;
448 if (list_start) list_start->prev = node;
449 node->next = list_start;
450 node->prev = 0;
451 list->next = node;
454 /* Remove NODE from linked LIST. */
456 static void
457 xg_list_remove (xg_list_node *list, xg_list_node *node)
459 xg_list_node *list_start = list->next;
460 if (node == list_start)
462 list->next = node->next;
463 if (list->next) list->next->prev = 0;
465 else
467 node->prev->next = node->next;
468 if (node->next) node->next->prev = node->prev;
472 /* Allocate and return a utf8 version of STR. If STR is already
473 utf8 or NULL, just return a copy of STR.
474 A new string is allocated and the caller must free the result
475 with g_free. */
477 static char *
478 get_utf8_string (const char *str)
480 char *utf8_str;
482 if (!str) return NULL;
484 /* If not UTF-8, try current locale. */
485 if (!g_utf8_validate (str, -1, NULL))
486 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
487 else
488 return g_strdup (str);
490 if (!utf8_str)
492 /* Probably some control characters in str. Escape them. */
493 ptrdiff_t len;
494 ptrdiff_t nr_bad = 0;
495 gsize bytes_read;
496 gsize bytes_written;
497 unsigned char *p = (unsigned char *)str;
498 char *cp, *up;
499 GError *err = NULL;
501 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
502 &bytes_written, &err))
503 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
505 ++nr_bad;
506 p += bytes_written+1;
507 g_error_free (err);
508 err = NULL;
511 if (err)
513 g_error_free (err);
514 err = NULL;
516 if (cp) g_free (cp);
518 len = strlen (str);
519 ptrdiff_t alloc;
520 if (INT_MULTIPLY_WRAPV (nr_bad, 4, &alloc)
521 || INT_ADD_WRAPV (len + 1, alloc, &alloc)
522 || SIZE_MAX < alloc)
523 memory_full (SIZE_MAX);
524 up = utf8_str = xmalloc (alloc);
525 p = (unsigned char *)str;
527 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
528 &bytes_written, &err))
529 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
531 memcpy (up, p, bytes_written);
532 up += bytes_written;
533 up += sprintf (up, "\\%03o", p[bytes_written]);
534 p += bytes_written + 1;
535 g_error_free (err);
536 err = NULL;
539 if (cp)
541 strcpy (up, cp);
542 g_free (cp);
544 if (err)
546 g_error_free (err);
547 err = NULL;
550 return utf8_str;
553 /* Check for special colors used in face spec for region face.
554 The colors are fetched from the Gtk+ theme.
555 Return true if color was found, false if not. */
557 bool
558 xg_check_special_colors (struct frame *f,
559 const char *color_name,
560 XColor *color)
562 bool success_p = 0;
563 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
564 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
566 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
567 return success_p;
569 block_input ();
571 #ifdef HAVE_GTK3
572 GtkStyleContext *gsty
573 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
574 GdkRGBA col;
575 char buf[sizeof "rgb://rrrr/gggg/bbbb"];
576 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
577 if (get_fg)
578 gtk_style_context_get_color (gsty, state, &col);
579 else
581 GdkRGBA *c;
582 /* FIXME: Retrieving the background color is deprecated in
583 GTK+ 3.16. New versions of GTK+ don't use the concept of a
584 single background color any more, so we shouldn't query for
585 it. */
586 gtk_style_context_get (gsty, state,
587 GTK_STYLE_PROPERTY_BACKGROUND_COLOR, &c,
588 NULL);
589 col = *c;
590 gdk_rgba_free (c);
593 unsigned short
594 r = col.red * 65535,
595 g = col.green * 65535,
596 b = col.blue * 65535;
597 sprintf (buf, "rgb:%04x/%04x/%04x", r, g, b);
598 success_p = x_parse_color (f, buf, color) != 0;
599 #else
600 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
601 GdkColor *grgb = get_bg
602 ? &gsty->bg[GTK_STATE_SELECTED]
603 : &gsty->fg[GTK_STATE_SELECTED];
605 color->red = grgb->red;
606 color->green = grgb->green;
607 color->blue = grgb->blue;
608 color->pixel = grgb->pixel;
609 success_p = 1;
610 #endif
613 unblock_input ();
614 return success_p;
619 /***********************************************************************
620 Tooltips
621 ***********************************************************************/
622 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
623 We use that to pop down the tooltip. This happens if Gtk+ for some
624 reason wants to change or hide the tooltip. */
626 #ifdef USE_GTK_TOOLTIP
628 static void
629 hierarchy_ch_cb (GtkWidget *widget,
630 GtkWidget *previous_toplevel,
631 gpointer user_data)
633 struct frame *f = user_data;
634 struct x_output *x = f->output_data.x;
635 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
637 if (! top || ! GTK_IS_WINDOW (top))
638 gtk_widget_hide (previous_toplevel);
641 /* Callback called when Gtk+ thinks a tooltip should be displayed.
642 We use it to get the tooltip window and the tooltip widget so
643 we can manipulate the ourselves.
645 Return FALSE ensures that the tooltip is not shown. */
647 static gboolean
648 qttip_cb (GtkWidget *widget,
649 gint xpos,
650 gint ypos,
651 gboolean keyboard_mode,
652 GtkTooltip *tooltip,
653 gpointer user_data)
655 struct frame *f = user_data;
656 struct x_output *x = f->output_data.x;
657 if (x->ttip_widget == NULL)
659 GtkWidget *p;
660 GList *list, *iter;
662 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
663 x->ttip_widget = tooltip;
664 g_object_ref (G_OBJECT (tooltip));
665 x->ttip_lbl = gtk_label_new ("");
666 g_object_ref (G_OBJECT (x->ttip_lbl));
667 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
668 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
670 /* Change stupid Gtk+ default line wrapping. */
671 p = gtk_widget_get_parent (x->ttip_lbl);
672 list = gtk_container_get_children (GTK_CONTAINER (p));
673 for (iter = list; iter; iter = g_list_next (iter))
675 GtkWidget *w = GTK_WIDGET (iter->data);
676 if (GTK_IS_LABEL (w))
677 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
679 g_list_free (list);
681 /* ATK needs an empty title for some reason. */
682 gtk_window_set_title (x->ttip_window, "");
683 /* Realize so we can safely get screen later on. */
684 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
685 gtk_widget_realize (x->ttip_lbl);
687 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
688 G_CALLBACK (hierarchy_ch_cb), f);
690 return FALSE;
693 #endif /* USE_GTK_TOOLTIP */
695 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
696 Return true if a system tooltip is available. */
698 bool
699 xg_prepare_tooltip (struct frame *f,
700 Lisp_Object string,
701 int *width,
702 int *height)
704 #ifndef USE_GTK_TOOLTIP
705 return 0;
706 #else
707 struct x_output *x = f->output_data.x;
708 GtkWidget *widget;
709 GdkWindow *gwin;
710 GdkScreen *screen;
711 GtkSettings *settings;
712 gboolean tt_enabled = TRUE;
713 GtkRequisition req;
714 Lisp_Object encoded_string;
716 if (!x->ttip_lbl) return 0;
718 block_input ();
719 encoded_string = ENCODE_UTF_8 (string);
720 widget = GTK_WIDGET (x->ttip_lbl);
721 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
722 screen = gdk_window_get_screen (gwin);
723 settings = gtk_settings_get_for_screen (screen);
724 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
725 if (tt_enabled)
727 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
728 /* Record that we disabled it so it can be enabled again. */
729 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
730 (gpointer)f);
733 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
734 g_object_set_data (G_OBJECT
735 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
736 "gdk-display-current-tooltip", NULL);
738 /* Put our dummy widget in so we can get callbacks for unrealize and
739 hierarchy-changed. */
740 gtk_tooltip_set_custom (x->ttip_widget, widget);
741 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
742 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
743 if (width) *width = req.width;
744 if (height) *height = req.height;
746 unblock_input ();
748 return 1;
749 #endif /* USE_GTK_TOOLTIP */
752 /* Show the tooltip at ROOT_X and ROOT_Y.
753 xg_prepare_tooltip must have been called before this function. */
755 void
756 xg_show_tooltip (struct frame *f, int root_x, int root_y)
758 #ifdef USE_GTK_TOOLTIP
759 struct x_output *x = f->output_data.x;
760 if (x->ttip_window)
762 block_input ();
763 gtk_window_move (x->ttip_window, root_x / xg_get_scale (f),
764 root_y / xg_get_scale (f));
765 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
766 unblock_input ();
768 #endif
771 /* Hide tooltip if shown. Do nothing if not shown.
772 Return true if tip was hidden, false if not (i.e. not using
773 system tooltips). */
775 bool
776 xg_hide_tooltip (struct frame *f)
778 bool ret = 0;
779 #ifdef USE_GTK_TOOLTIP
780 if (f->output_data.x->ttip_window)
782 GtkWindow *win = f->output_data.x->ttip_window;
783 block_input ();
784 gtk_widget_hide (GTK_WIDGET (win));
786 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
788 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
789 GdkScreen *screen = gdk_window_get_screen (gwin);
790 GtkSettings *settings = gtk_settings_get_for_screen (screen);
791 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
793 unblock_input ();
795 ret = 1;
797 #endif
798 return ret;
802 /***********************************************************************
803 General functions for creating widgets, resizing, events, e.t.c.
804 ***********************************************************************/
806 #if ! GTK_CHECK_VERSION (3, 22, 0)
807 static void
808 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
809 const gchar *msg, gpointer user_data)
811 if (!strstr (msg, "visible children"))
812 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
814 #endif
816 /* Make a geometry string and pass that to GTK. It seems this is the
817 only way to get geometry position right if the user explicitly
818 asked for a position when starting Emacs.
819 F is the frame we shall set geometry for. */
821 static void
822 xg_set_geometry (struct frame *f)
824 if (f->size_hint_flags & (USPosition | PPosition))
826 #if ! GTK_CHECK_VERSION (3, 22, 0)
827 if (x_gtk_use_window_move)
829 #endif
830 /* Handle negative positions without consulting
831 gtk_window_parse_geometry (Bug#25851). The position will
832 be off by scrollbar width + window manager decorations. */
833 if (f->size_hint_flags & XNegative)
834 f->left_pos = (x_display_pixel_width (FRAME_DISPLAY_INFO (f))
835 - FRAME_PIXEL_WIDTH (f) + f->left_pos);
837 if (f->size_hint_flags & YNegative)
838 f->top_pos = (x_display_pixel_height (FRAME_DISPLAY_INFO (f))
839 - FRAME_PIXEL_HEIGHT (f) + f->top_pos);
841 gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
842 f->left_pos, f->top_pos);
844 /* Reset size hint flags. */
845 f->size_hint_flags &= ~ (XNegative | YNegative);
846 # if ! GTK_CHECK_VERSION (3, 22, 0)
848 else
850 int left = f->left_pos;
851 int xneg = f->size_hint_flags & XNegative;
852 int top = f->top_pos;
853 int yneg = f->size_hint_flags & YNegative;
854 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
855 guint id;
857 if (xneg)
858 left = -left;
859 if (yneg)
860 top = -top;
862 sprintf (geom_str, "=%dx%d%c%d%c%d",
863 FRAME_PIXEL_WIDTH (f),
864 FRAME_PIXEL_HEIGHT (f),
865 (xneg ? '-' : '+'), left,
866 (yneg ? '-' : '+'), top);
868 /* Silence warning about visible children. */
869 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
870 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
872 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
873 geom_str))
874 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
876 g_log_remove_handler ("Gtk", id);
878 #endif
882 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
883 and a Gtk+ menu bar, we get resize events for the edit part of the
884 frame only. We let Gtk+ deal with the Gtk+ parts.
885 F is the frame to resize.
886 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
888 void
889 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
891 int width, height;
893 if (pixelwidth == -1 && pixelheight == -1)
895 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
896 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
897 0, 0, &pixelwidth, &pixelheight);
898 else
899 return;
902 width = FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth);
903 height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight);
905 frame_size_history_add
906 (f, Qxg_frame_resized, width, height, Qnil);
908 if (width != FRAME_TEXT_WIDTH (f)
909 || height != FRAME_TEXT_HEIGHT (f)
910 || pixelwidth != FRAME_PIXEL_WIDTH (f)
911 || pixelheight != FRAME_PIXEL_HEIGHT (f))
913 x_clear_under_internal_border (f);
914 change_frame_size (f, width, height, 0, 1, 0, 1);
915 SET_FRAME_GARBAGED (f);
916 cancel_mouse_face (f);
920 /* Resize the outer window of frame F after changing the height.
921 COLUMNS/ROWS is the size the edit area shall have after the resize. */
923 void
924 xg_frame_set_char_size (struct frame *f, int width, int height)
926 int pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
927 int pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
928 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
929 gint gwidth, gheight;
930 int totalheight
931 = pixelheight + FRAME_TOOLBAR_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f);
932 int totalwidth = pixelwidth + FRAME_TOOLBAR_WIDTH (f);
934 if (FRAME_PIXEL_HEIGHT (f) == 0)
935 return;
937 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
938 &gwidth, &gheight);
940 /* Do this before resize, as we don't know yet if we will be resized. */
941 x_clear_under_internal_border (f);
943 totalheight /= xg_get_scale (f);
944 totalwidth /= xg_get_scale (f);
946 x_wm_set_size_hint (f, 0, 0);
948 /* Resize the top level widget so rows and columns remain constant.
950 When the frame is fullheight and we only want to change the width
951 or it is fullwidth and we only want to change the height we should
952 be able to preserve the fullscreen property. However, due to the
953 fact that we have to send a resize request anyway, the window
954 manager will abolish it. At least the respective size should
955 remain unchanged but giving the frame back its normal size will
956 be broken ... */
957 if (EQ (fullscreen, Qfullwidth) && width == FRAME_TEXT_WIDTH (f))
959 frame_size_history_add
960 (f, Qxg_frame_set_char_size_1, width, height,
961 list2 (make_number (gheight), make_number (totalheight)));
963 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
964 gwidth, totalheight);
966 else if (EQ (fullscreen, Qfullheight) && height == FRAME_TEXT_HEIGHT (f))
968 frame_size_history_add
969 (f, Qxg_frame_set_char_size_2, width, height,
970 list2 (make_number (gwidth), make_number (totalwidth)));
972 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
973 totalwidth, gheight);
975 else
977 frame_size_history_add
978 (f, Qxg_frame_set_char_size_3, width, height,
979 list2 (make_number (totalwidth), make_number (totalheight)));
981 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
982 totalwidth, totalheight);
983 fullscreen = Qnil;
986 SET_FRAME_GARBAGED (f);
987 cancel_mouse_face (f);
989 /* We can not call change_frame_size for a mapped frame,
990 we can not set pixel width/height either. The window manager may
991 override our resize request, XMonad does this all the time.
992 The best we can do is try to sync, so lisp code sees the updated
993 size as fast as possible.
994 For unmapped windows, we can set rows/cols. When
995 the frame is mapped again we will (hopefully) get the correct size. */
996 if (FRAME_VISIBLE_P (f))
998 /* Must call this to flush out events */
999 (void)gtk_events_pending ();
1000 gdk_flush ();
1001 x_wait_for_event (f, ConfigureNotify);
1003 if (!NILP (fullscreen))
1004 /* Try to restore fullscreen state. */
1006 store_frame_param (f, Qfullscreen, fullscreen);
1007 x_set_fullscreen (f, fullscreen, fullscreen);
1010 else
1011 adjust_frame_size (f, width, height, 5, 0, Qxg_frame_set_char_size);
1015 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
1016 The policy is to keep the number of editable lines. */
1018 #if 0
1019 static void
1020 xg_height_or_width_changed (struct frame *f)
1022 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1023 FRAME_TOTAL_PIXEL_WIDTH (f),
1024 FRAME_TOTAL_PIXEL_HEIGHT (f));
1025 f->output_data.x->hint_flags = 0;
1026 x_wm_set_size_hint (f, 0, 0);
1028 #endif
1030 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1031 Must be done like this, because GtkWidget:s can have "hidden"
1032 X Window that aren't accessible.
1034 Return 0 if no widget match WDESC. */
1036 GtkWidget *
1037 xg_win_to_widget (Display *dpy, Window wdesc)
1039 gpointer gdkwin;
1040 GtkWidget *gwdesc = 0;
1042 block_input ();
1044 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1045 wdesc);
1046 if (gdkwin)
1048 GdkEvent event;
1049 event.any.window = gdkwin;
1050 event.any.type = GDK_NOTHING;
1051 gwdesc = gtk_get_event_widget (&event);
1054 unblock_input ();
1055 return gwdesc;
1058 /* Set the background of widget W to PIXEL. */
1060 static void
1061 xg_set_widget_bg (struct frame *f, GtkWidget *w, unsigned long pixel)
1063 #ifdef HAVE_GTK3
1064 GdkRGBA bg;
1065 XColor xbg;
1066 xbg.pixel = pixel;
1067 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1069 bg.red = (double)xbg.red/65535.0;
1070 bg.green = (double)xbg.green/65535.0;
1071 bg.blue = (double)xbg.blue/65535.0;
1072 bg.alpha = 1.0;
1073 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1075 #else
1076 GdkColor bg;
1077 GdkColormap *map = gtk_widget_get_colormap (w);
1078 gdk_colormap_query_color (map, pixel, &bg);
1079 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1080 #endif
1083 /* Callback called when the gtk theme changes.
1084 We notify lisp code so it can fix faces used for region for example. */
1086 static void
1087 style_changed_cb (GObject *go,
1088 GParamSpec *spec,
1089 gpointer user_data)
1091 struct input_event event;
1092 GdkDisplay *gdpy = user_data;
1093 const char *display_name = gdk_display_get_name (gdpy);
1094 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1096 EVENT_INIT (event);
1097 event.kind = CONFIG_CHANGED_EVENT;
1098 event.frame_or_window = build_string (display_name);
1099 /* Theme doesn't change often, so intern is called seldom. */
1100 event.arg = intern ("theme-name");
1101 kbd_buffer_store_event (&event);
1103 update_theme_scrollbar_width ();
1104 update_theme_scrollbar_height ();
1106 /* If scroll bar width changed, we need set the new size on all frames
1107 on this display. */
1108 if (dpy)
1110 Lisp_Object rest, frame;
1111 FOR_EACH_FRAME (rest, frame)
1113 struct frame *f = XFRAME (frame);
1114 if (FRAME_LIVE_P (f)
1115 && FRAME_X_P (f)
1116 && FRAME_X_DISPLAY (f) == dpy)
1118 x_set_scroll_bar_default_width (f);
1119 x_set_scroll_bar_default_height (f);
1120 xg_frame_set_char_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f));
1126 /* Called when a delete-event occurs on WIDGET. */
1128 static gboolean
1129 delete_cb (GtkWidget *widget,
1130 GdkEvent *event,
1131 gpointer user_data)
1133 return TRUE;
1136 /* Create and set up the GTK widgets for frame F.
1137 Return true if creation succeeded. */
1139 bool
1140 xg_create_frame_widgets (struct frame *f)
1142 GtkWidget *wtop;
1143 GtkWidget *wvbox, *whbox;
1144 GtkWidget *wfixed;
1145 #ifndef HAVE_GTK3
1146 GtkRcStyle *style;
1147 #endif
1148 char *title = 0;
1150 block_input ();
1152 if (FRAME_X_EMBEDDED_P (f))
1154 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1155 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1157 else
1158 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1160 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1161 has backported it to Gtk+ 2.0 and they add the resize grip for
1162 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1163 forever, so disable the grip. */
1164 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1165 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1166 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1167 #endif
1169 xg_set_screen (wtop, f);
1171 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1172 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1173 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1174 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1176 #ifdef HAVE_GTK3
1177 wfixed = emacs_fixed_new (f);
1178 #else
1179 wfixed = gtk_fixed_new ();
1180 #endif
1182 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1184 if (wtop) gtk_widget_destroy (wtop);
1185 if (wvbox) gtk_widget_destroy (wvbox);
1186 if (whbox) gtk_widget_destroy (whbox);
1187 if (wfixed) gtk_widget_destroy (wfixed);
1189 unblock_input ();
1190 return 0;
1193 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1194 gtk_widget_set_name (wtop, EMACS_CLASS);
1195 gtk_widget_set_name (wvbox, "pane");
1196 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1198 /* If this frame has a title or name, set it in the title bar. */
1199 if (! NILP (f->title))
1200 title = SSDATA (ENCODE_UTF_8 (f->title));
1201 else if (! NILP (f->name))
1202 title = SSDATA (ENCODE_UTF_8 (f->name));
1204 if (title)
1205 gtk_window_set_title (GTK_WINDOW (wtop), title);
1207 if (FRAME_UNDECORATED (f))
1209 gtk_window_set_decorated (GTK_WINDOW (wtop), FALSE);
1210 store_frame_param (f, Qundecorated, Qt);
1213 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1214 FRAME_GTK_WIDGET (f) = wfixed;
1215 f->output_data.x->vbox_widget = wvbox;
1216 f->output_data.x->hbox_widget = whbox;
1218 gtk_widget_set_has_window (wfixed, TRUE);
1220 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1221 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1222 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1224 if (FRAME_EXTERNAL_TOOL_BAR (f))
1225 update_frame_tool_bar (f);
1227 /* We don't want this widget double buffered, because we draw on it
1228 with regular X drawing primitives, so from a GTK/GDK point of
1229 view, the widget is totally blank. When an expose comes, this
1230 will make the widget blank, and then Emacs redraws it. This flickers
1231 a lot, so we turn off double buffering.
1232 FIXME: gtk_widget_set_double_buffered is deprecated and might stop
1233 working in the future. We need to migrate away from combining
1234 X and GTK+ drawing to a pure GTK+ build. */
1235 gtk_widget_set_double_buffered (wfixed, FALSE);
1237 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1238 SSDATA (Vx_resource_name),
1239 SSDATA (Vx_resource_class));
1241 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1242 GTK is to destroy the widget. We want Emacs to do that instead. */
1243 g_signal_connect (G_OBJECT (wtop), "delete-event",
1244 G_CALLBACK (delete_cb), f);
1246 /* Convert our geometry parameters into a geometry string
1247 and specify it.
1248 GTK will itself handle calculating the real position this way. */
1249 xg_set_geometry (f);
1250 f->win_gravity
1251 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1253 gtk_widget_add_events (wfixed,
1254 GDK_POINTER_MOTION_MASK
1255 | GDK_EXPOSURE_MASK
1256 | GDK_BUTTON_PRESS_MASK
1257 | GDK_BUTTON_RELEASE_MASK
1258 | GDK_KEY_PRESS_MASK
1259 | GDK_ENTER_NOTIFY_MASK
1260 | GDK_LEAVE_NOTIFY_MASK
1261 | GDK_FOCUS_CHANGE_MASK
1262 | GDK_STRUCTURE_MASK
1263 | GDK_VISIBILITY_NOTIFY_MASK);
1265 /* Must realize the windows so the X window gets created. It is used
1266 by callers of this function. */
1267 gtk_widget_realize (wfixed);
1268 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1269 initial_set_up_x_back_buffer (f);
1271 /* Since GTK clears its window by filling with the background color,
1272 we must keep X and GTK background in sync. */
1273 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1275 #ifndef HAVE_GTK3
1276 /* Also, do not let any background pixmap to be set, this looks very
1277 bad as Emacs overwrites the background pixmap with its own idea
1278 of background color. */
1279 style = gtk_widget_get_modifier_style (wfixed);
1281 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1282 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1283 gtk_widget_modify_style (wfixed, style);
1284 #else
1285 gtk_widget_set_can_focus (wfixed, TRUE);
1286 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1287 #endif
1289 if (FRAME_OVERRIDE_REDIRECT (f))
1291 GdkWindow *gwin = gtk_widget_get_window (wtop);
1293 if (gwin)
1294 gdk_window_set_override_redirect (gwin, TRUE);
1297 #ifdef USE_GTK_TOOLTIP
1298 /* Steal a tool tip window we can move ourselves. */
1299 f->output_data.x->ttip_widget = 0;
1300 f->output_data.x->ttip_lbl = 0;
1301 f->output_data.x->ttip_window = 0;
1302 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1303 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1304 #endif
1307 GdkScreen *screen = gtk_widget_get_screen (wtop);
1308 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1309 /* Only connect this signal once per screen. */
1310 if (! g_signal_handler_find (G_OBJECT (gs),
1311 G_SIGNAL_MATCH_FUNC,
1312 0, 0, 0,
1313 (gpointer) G_CALLBACK (style_changed_cb),
1316 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1317 G_CALLBACK (style_changed_cb),
1318 gdk_screen_get_display (screen));
1322 unblock_input ();
1324 return 1;
1327 void
1328 xg_free_frame_widgets (struct frame *f)
1330 if (FRAME_GTK_OUTER_WIDGET (f))
1332 #ifdef USE_GTK_TOOLTIP
1333 struct x_output *x = f->output_data.x;
1334 #endif
1335 struct xg_frame_tb_info *tbinfo
1336 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1337 TB_INFO_KEY);
1338 if (tbinfo)
1339 xfree (tbinfo);
1341 /* x_free_frame_resources should have taken care of it */
1342 eassert (!FRAME_X_DOUBLE_BUFFERED_P (f));
1343 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1344 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1345 FRAME_X_RAW_DRAWABLE (f) = 0;
1346 FRAME_GTK_OUTER_WIDGET (f) = 0;
1347 #ifdef USE_GTK_TOOLTIP
1348 if (x->ttip_lbl)
1349 gtk_widget_destroy (x->ttip_lbl);
1350 if (x->ttip_widget)
1351 g_object_unref (G_OBJECT (x->ttip_widget));
1352 #endif
1356 /* Set the normal size hints for the window manager, for frame F.
1357 FLAGS is the flags word to use--or 0 meaning preserve the flags
1358 that the window now has.
1359 If USER_POSITION, set the User Position
1360 flag (this is useful when FLAGS is 0). */
1362 void
1363 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1365 /* Must use GTK routines here, otherwise GTK resets the size hints
1366 to its own defaults. */
1367 GdkGeometry size_hints;
1368 gint hint_flags = 0;
1369 int base_width, base_height;
1370 int min_rows = 0, min_cols = 0;
1371 int win_gravity = f->win_gravity;
1372 Lisp_Object fs_state, frame;
1373 int scale = xg_get_scale (f);
1375 /* Don't set size hints during initialization; that apparently leads
1376 to a race condition. See the thread at
1377 https://lists.gnu.org/r/emacs-devel/2008-10/msg00033.html */
1378 if (NILP (Vafter_init_time)
1379 || !FRAME_GTK_OUTER_WIDGET (f)
1380 || FRAME_PARENT_FRAME (f))
1381 return;
1383 XSETFRAME (frame, f);
1384 fs_state = Fframe_parameter (frame, Qfullscreen);
1385 if ((EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth)) &&
1386 (x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state) ||
1387 x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state_fullscreen)))
1389 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1390 Gtk3 don't get along and the frame shrinks (!).
1392 return;
1395 if (flags)
1397 memset (&size_hints, 0, sizeof (size_hints));
1398 f->output_data.x->size_hints = size_hints;
1399 f->output_data.x->hint_flags = hint_flags;
1401 else
1402 flags = f->size_hint_flags;
1404 size_hints = f->output_data.x->size_hints;
1405 hint_flags = f->output_data.x->hint_flags;
1407 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1408 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
1409 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
1411 hint_flags |= GDK_HINT_BASE_SIZE;
1412 /* Use one row/col here so base_height/width does not become zero.
1413 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1414 Obviously this makes the row/col value displayed off by 1. */
1415 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1416 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1417 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1419 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1420 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1422 size_hints.base_width = base_width;
1423 size_hints.base_height = base_height;
1424 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
1425 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
1427 /* These currently have a one to one mapping with the X values, but I
1428 don't think we should rely on that. */
1429 hint_flags |= GDK_HINT_WIN_GRAVITY;
1430 size_hints.win_gravity = 0;
1431 if (win_gravity == NorthWestGravity)
1432 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1433 else if (win_gravity == NorthGravity)
1434 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1435 else if (win_gravity == NorthEastGravity)
1436 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1437 else if (win_gravity == WestGravity)
1438 size_hints.win_gravity = GDK_GRAVITY_WEST;
1439 else if (win_gravity == CenterGravity)
1440 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1441 else if (win_gravity == EastGravity)
1442 size_hints.win_gravity = GDK_GRAVITY_EAST;
1443 else if (win_gravity == SouthWestGravity)
1444 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1445 else if (win_gravity == SouthGravity)
1446 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1447 else if (win_gravity == SouthEastGravity)
1448 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1449 else if (win_gravity == StaticGravity)
1450 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1452 if (x_gtk_use_window_move)
1454 if (flags & PPosition) hint_flags |= GDK_HINT_POS;
1455 if (flags & USPosition) hint_flags |= GDK_HINT_USER_POS;
1456 if (flags & USSize) hint_flags |= GDK_HINT_USER_SIZE;
1459 if (user_position)
1461 hint_flags &= ~GDK_HINT_POS;
1462 hint_flags |= GDK_HINT_USER_POS;
1465 size_hints.base_width /= scale;
1466 size_hints.base_height /= scale;
1467 size_hints.width_inc /= scale;
1468 size_hints.height_inc /= scale;
1470 if (hint_flags != f->output_data.x->hint_flags
1471 || memcmp (&size_hints,
1472 &f->output_data.x->size_hints,
1473 sizeof (size_hints)) != 0)
1475 block_input ();
1476 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1477 NULL, &size_hints, hint_flags);
1478 f->output_data.x->size_hints = size_hints;
1479 f->output_data.x->hint_flags = hint_flags;
1480 unblock_input ();
1484 /* Change background color of a frame.
1485 Since GTK uses the background color to clear the window, we must
1486 keep the GTK and X colors in sync.
1487 F is the frame to change,
1488 BG is the pixel value to change to. */
1490 void
1491 xg_set_background_color (struct frame *f, unsigned long bg)
1493 if (FRAME_GTK_WIDGET (f))
1495 block_input ();
1496 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1498 Lisp_Object bar;
1499 for (bar = FRAME_SCROLL_BARS (f);
1500 !NILP (bar);
1501 bar = XSCROLL_BAR (bar)->next)
1503 GtkWidget *scrollbar =
1504 xg_get_widget_from_map (XSCROLL_BAR (bar)->x_window);
1505 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
1506 xg_set_widget_bg (f, webox, FRAME_BACKGROUND_PIXEL (f));
1509 unblock_input ();
1513 /* Change the frame's decoration (title bar + resize borders). This
1514 might not work with all window managers. */
1515 void
1516 xg_set_undecorated (struct frame *f, Lisp_Object undecorated)
1518 if (FRAME_GTK_WIDGET (f))
1520 block_input ();
1521 gtk_window_set_decorated (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1522 NILP (undecorated) ? TRUE : FALSE);
1523 unblock_input ();
1528 /* Restack F1 below F2, above if ABOVE_FLAG is true. This might not
1529 work with all window managers. */
1530 void
1531 xg_frame_restack (struct frame *f1, struct frame *f2, bool above_flag)
1533 #if GTK_CHECK_VERSION (2, 18, 0)
1534 block_input ();
1535 if (FRAME_GTK_OUTER_WIDGET (f1) && FRAME_GTK_OUTER_WIDGET (f2))
1537 GdkWindow *gwin1 = gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f1));
1538 GdkWindow *gwin2 = gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f2));
1539 Lisp_Object frame1, frame2;
1541 XSETFRAME (frame1, f1);
1542 XSETFRAME (frame2, f2);
1544 gdk_window_restack (gwin1, gwin2, above_flag);
1545 x_sync (f1);
1547 unblock_input ();
1548 #endif
1552 /* Don't show frame in taskbar, don't ALT-TAB to it. */
1553 void
1554 xg_set_skip_taskbar (struct frame *f, Lisp_Object skip_taskbar)
1556 block_input ();
1557 if (FRAME_GTK_WIDGET (f))
1558 gdk_window_set_skip_taskbar_hint
1559 (gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f)),
1560 NILP (skip_taskbar) ? FALSE : TRUE);
1561 unblock_input ();
1565 /* Don't give frame focus. */
1566 void
1567 xg_set_no_focus_on_map (struct frame *f, Lisp_Object no_focus_on_map)
1569 block_input ();
1570 if (FRAME_GTK_WIDGET (f))
1572 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1573 gboolean g_no_focus_on_map = NILP (no_focus_on_map) ? TRUE : FALSE;
1575 gtk_window_set_focus_on_map (gwin, g_no_focus_on_map);
1577 unblock_input ();
1581 void
1582 xg_set_no_accept_focus (struct frame *f, Lisp_Object no_accept_focus)
1584 block_input ();
1585 if (FRAME_GTK_WIDGET (f))
1587 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1588 gboolean g_no_accept_focus = NILP (no_accept_focus) ? TRUE : FALSE;
1590 gtk_window_set_accept_focus (gwin, g_no_accept_focus);
1592 unblock_input ();
1595 void
1596 xg_set_override_redirect (struct frame *f, Lisp_Object override_redirect)
1598 block_input ();
1600 if (FRAME_GTK_OUTER_WIDGET (f))
1602 GdkWindow *gwin = gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f));
1604 gdk_window_set_override_redirect (gwin, NILP (override_redirect) ? FALSE : TRUE);
1607 unblock_input ();
1610 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1611 functions so GTK does not overwrite the icon. */
1613 void
1614 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1616 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1617 icon_pixmap,
1618 icon_mask);
1619 if (gp)
1620 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1625 /***********************************************************************
1626 Dialog functions
1627 ***********************************************************************/
1628 /* Return the dialog title to use for a dialog of type KEY.
1629 This is the encoding used by lwlib. We use the same for GTK. */
1631 static const char *
1632 get_dialog_title (char key)
1634 const char *title = "";
1636 switch (key) {
1637 case 'E': case 'e':
1638 title = "Error";
1639 break;
1641 case 'I': case 'i':
1642 title = "Information";
1643 break;
1645 case 'L': case 'l':
1646 title = "Prompt";
1647 break;
1649 case 'P': case 'p':
1650 title = "Prompt";
1651 break;
1653 case 'Q': case 'q':
1654 title = "Question";
1655 break;
1658 return title;
1661 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1662 the dialog, but return TRUE so the event does not propagate further
1663 in GTK. This prevents GTK from destroying the dialog widget automatically
1664 and we can always destroy the widget manually, regardless of how
1665 it was popped down (button press or WM_DELETE_WINDOW).
1666 W is the dialog widget.
1667 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1668 user_data is NULL (not used).
1670 Returns TRUE to end propagation of event. */
1672 static gboolean
1673 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1675 gtk_widget_unmap (w);
1676 return TRUE;
1679 /* Create a popup dialog window. See also xg_create_widget below.
1680 WV is a widget_value describing the dialog.
1681 SELECT_CB is the callback to use when a button has been pressed.
1682 DEACTIVATE_CB is the callback to use when the dialog pops down.
1684 Returns the GTK dialog widget. */
1686 static GtkWidget *
1687 create_dialog (widget_value *wv,
1688 GCallback select_cb,
1689 GCallback deactivate_cb)
1691 const char *title = get_dialog_title (wv->name[0]);
1692 int total_buttons = wv->name[1] - '0';
1693 int right_buttons = wv->name[4] - '0';
1694 int left_buttons;
1695 int button_nr = 0;
1696 int button_spacing = 10;
1697 GtkWidget *wdialog = gtk_dialog_new ();
1698 GtkDialog *wd = GTK_DIALOG (wdialog);
1699 widget_value *item;
1700 GtkWidget *whbox_down;
1702 /* If the number of buttons is greater than 4, make two rows of buttons
1703 instead. This looks better. */
1704 bool make_two_rows = total_buttons > 4;
1706 #if GTK_CHECK_VERSION (3, 12, 0)
1707 GtkBuilder *gbld = gtk_builder_new ();
1708 GObject *go = gtk_buildable_get_internal_child (GTK_BUILDABLE (wd),
1709 gbld,
1710 "action_area");
1711 GtkBox *cur_box = GTK_BOX (go);
1712 g_object_unref (G_OBJECT (gbld));
1713 #else
1714 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1715 #endif
1717 if (right_buttons == 0) right_buttons = total_buttons/2;
1718 left_buttons = total_buttons - right_buttons;
1720 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1721 gtk_widget_set_name (wdialog, "emacs-dialog");
1724 if (make_two_rows)
1726 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1727 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1728 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1729 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1730 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1731 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1733 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1734 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1735 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1737 cur_box = GTK_BOX (whbox_up);
1740 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1741 G_CALLBACK (dialog_delete_callback), 0);
1743 if (deactivate_cb)
1745 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1746 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1749 for (item = wv->contents; item; item = item->next)
1751 char *utf8_label = get_utf8_string (item->value);
1752 GtkWidget *w;
1753 GtkRequisition req;
1755 if (item->name && strcmp (item->name, "message") == 0)
1757 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1758 /* This is the text part of the dialog. */
1759 w = gtk_label_new (utf8_label);
1760 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1761 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1762 #if GTK_CHECK_VERSION (3, 14, 0)
1763 gtk_widget_set_halign (w, GTK_ALIGN_START);
1764 gtk_widget_set_valign (w, GTK_ALIGN_CENTER);
1765 #else
1766 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1767 #endif
1768 /* Try to make dialog look better. Must realize first so
1769 the widget can calculate the size it needs. */
1770 gtk_widget_realize (w);
1771 gtk_widget_get_preferred_size (w, NULL, &req);
1772 gtk_box_set_spacing (wvbox, req.height);
1773 if (item->value && strlen (item->value) > 0)
1774 button_spacing = 2*req.width/strlen (item->value);
1775 if (button_spacing < 10) button_spacing = 10;
1777 else
1779 /* This is one button to add to the dialog. */
1780 w = gtk_button_new_with_label (utf8_label);
1781 if (! item->enabled)
1782 gtk_widget_set_sensitive (w, FALSE);
1783 if (select_cb)
1784 g_signal_connect (G_OBJECT (w), "clicked",
1785 select_cb, item->call_data);
1787 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1788 if (++button_nr == left_buttons)
1790 if (make_two_rows)
1791 cur_box = GTK_BOX (whbox_down);
1795 if (utf8_label)
1796 g_free (utf8_label);
1799 return wdialog;
1802 struct xg_dialog_data
1804 GMainLoop *loop;
1805 int response;
1806 GtkWidget *w;
1807 guint timerid;
1810 /* Function that is called when the file or font dialogs pop down.
1811 W is the dialog widget, RESPONSE is the response code.
1812 USER_DATA is what we passed in to g_signal_connect. */
1814 static void
1815 xg_dialog_response_cb (GtkDialog *w,
1816 gint response,
1817 gpointer user_data)
1819 struct xg_dialog_data *dd = user_data;
1820 dd->response = response;
1821 g_main_loop_quit (dd->loop);
1825 /* Destroy the dialog. This makes it pop down. */
1827 static void
1828 pop_down_dialog (void *arg)
1830 struct xg_dialog_data *dd = arg;
1832 block_input ();
1833 if (dd->w) gtk_widget_destroy (dd->w);
1834 if (dd->timerid != 0) g_source_remove (dd->timerid);
1836 g_main_loop_quit (dd->loop);
1837 g_main_loop_unref (dd->loop);
1839 unblock_input ();
1842 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1843 Pass DATA as gpointer so we can use this as a callback. */
1845 static gboolean
1846 xg_maybe_add_timer (gpointer data)
1848 struct xg_dialog_data *dd = data;
1849 struct timespec next_time = timer_check ();
1851 dd->timerid = 0;
1853 if (timespec_valid_p (next_time))
1855 time_t s = next_time.tv_sec;
1856 int per_ms = TIMESPEC_RESOLUTION / 1000;
1857 int ms = (next_time.tv_nsec + per_ms - 1) / per_ms;
1858 if (s <= ((guint) -1 - ms) / 1000)
1859 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1861 return FALSE;
1865 /* Pops up a modal dialog W and waits for response.
1866 We don't use gtk_dialog_run because we want to process emacs timers.
1867 The dialog W is not destroyed when this function returns. */
1869 static int
1870 xg_dialog_run (struct frame *f, GtkWidget *w)
1872 ptrdiff_t count = SPECPDL_INDEX ();
1873 struct xg_dialog_data dd;
1875 xg_set_screen (w, f);
1876 gtk_window_set_transient_for (GTK_WINDOW (w),
1877 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1878 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1879 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1881 dd.loop = g_main_loop_new (NULL, FALSE);
1882 dd.response = GTK_RESPONSE_CANCEL;
1883 dd.w = w;
1884 dd.timerid = 0;
1886 g_signal_connect (G_OBJECT (w),
1887 "response",
1888 G_CALLBACK (xg_dialog_response_cb),
1889 &dd);
1890 /* Don't destroy the widget if closed by the window manager close button. */
1891 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1892 gtk_widget_show (w);
1894 record_unwind_protect_ptr (pop_down_dialog, &dd);
1896 (void) xg_maybe_add_timer (&dd);
1897 g_main_loop_run (dd.loop);
1899 dd.w = 0;
1900 unbind_to (count, Qnil);
1902 return dd.response;
1906 /***********************************************************************
1907 File dialog functions
1908 ***********************************************************************/
1909 /* Return true if the old file selection dialog is being used. */
1911 bool
1912 xg_uses_old_file_dialog (void)
1914 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1915 return x_gtk_use_old_file_dialog;
1916 #else
1917 return 0;
1918 #endif
1922 typedef char * (*xg_get_file_func) (GtkWidget *);
1924 /* Return the selected file for file chooser dialog W.
1925 The returned string must be free:d. */
1927 static char *
1928 xg_get_file_name_from_chooser (GtkWidget *w)
1930 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1933 /* Callback called when the "Show hidden files" toggle is pressed.
1934 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1936 static void
1937 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1939 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1940 gboolean visible;
1941 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1942 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1946 /* Callback called when a property changes in a file chooser.
1947 GOBJECT is the file chooser dialog, ARG1 describes the property.
1948 USER_DATA is the toggle widget in the file chooser dialog.
1949 We use this to update the "Show hidden files" toggle when the user
1950 changes that property by right clicking in the file list. */
1952 static void
1953 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1955 if (strcmp (arg1->name, "show-hidden") == 0)
1957 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1958 gboolean visible, toggle_on;
1960 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1961 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1963 if (!!visible != !!toggle_on)
1965 gpointer cb = (gpointer) G_CALLBACK (xg_toggle_visibility_cb);
1966 g_signal_handlers_block_by_func (G_OBJECT (wtoggle), cb, gobject);
1967 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1968 g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle), cb, gobject);
1970 x_gtk_show_hidden_files = visible;
1974 /* Read a file name from the user using a file chooser dialog.
1975 F is the current frame.
1976 PROMPT is a prompt to show to the user. May not be NULL.
1977 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1978 If MUSTMATCH_P, the returned file name must be an existing
1979 file. (Actually, this only has cosmetic effects, the user can
1980 still enter a non-existing file.) *FUNC is set to a function that
1981 can be used to retrieve the selected file name from the returned widget.
1983 Returns the created widget. */
1985 static GtkWidget *
1986 xg_get_file_with_chooser (struct frame *f,
1987 char *prompt,
1988 char *default_filename,
1989 bool mustmatch_p, bool only_dir_p,
1990 xg_get_file_func *func)
1992 char msgbuf[1024];
1994 GtkWidget *filewin, *wtoggle, *wbox;
1995 GtkWidget *wmessage UNINIT;
1996 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1997 GtkFileChooserAction action = (mustmatch_p ?
1998 GTK_FILE_CHOOSER_ACTION_OPEN :
1999 GTK_FILE_CHOOSER_ACTION_SAVE);
2001 if (only_dir_p)
2002 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
2004 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
2005 XG_TEXT_CANCEL, GTK_RESPONSE_CANCEL,
2006 (mustmatch_p || only_dir_p ?
2007 XG_TEXT_OPEN : XG_TEXT_OK),
2008 GTK_RESPONSE_OK,
2009 NULL);
2010 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
2012 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
2013 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2014 gtk_widget_show (wbox);
2015 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
2017 if (x_gtk_show_hidden_files)
2019 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
2020 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
2022 gtk_widget_show (wtoggle);
2023 g_signal_connect (G_OBJECT (wtoggle), "clicked",
2024 G_CALLBACK (xg_toggle_visibility_cb), filewin);
2025 g_signal_connect (G_OBJECT (filewin), "notify",
2026 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
2028 if (x_gtk_file_dialog_help_text)
2030 char *z = msgbuf;
2031 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
2032 Show the C-l help text only for versions < 2.10. */
2033 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
2034 z = stpcpy (z, "\nType C-l to display a file name text entry box.\n");
2035 strcpy (z, "\nIf you don't like this file selector, use the "
2036 "corresponding\nkey binding or customize "
2037 "use-file-dialog to turn it off.");
2039 wmessage = gtk_label_new (msgbuf);
2040 gtk_widget_show (wmessage);
2043 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
2044 if (x_gtk_file_dialog_help_text)
2045 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
2046 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
2048 if (default_filename)
2050 Lisp_Object file;
2051 char *utf8_filename;
2053 file = build_string (default_filename);
2055 /* File chooser does not understand ~/... in the file name. It must be
2056 an absolute name starting with /. */
2057 if (default_filename[0] != '/')
2058 file = Fexpand_file_name (file, Qnil);
2060 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
2061 if (! NILP (Ffile_directory_p (file)))
2062 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
2063 utf8_filename);
2064 else
2066 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
2067 utf8_filename);
2068 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
2070 char *cp = strrchr (utf8_filename, '/');
2071 if (cp) ++cp;
2072 else cp = utf8_filename;
2073 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
2078 *func = xg_get_file_name_from_chooser;
2079 return filewin;
2082 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2084 /* Return the selected file for file selector dialog W.
2085 The returned string must be free:d. */
2087 static char *
2088 xg_get_file_name_from_selector (GtkWidget *w)
2090 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
2091 return xstrdup (gtk_file_selection_get_filename (filesel));
2094 /* Create a file selection dialog.
2095 F is the current frame.
2096 PROMPT is a prompt to show to the user. May not be NULL.
2097 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2098 If MUSTMATCH_P, the returned file name must be an existing
2099 file. *FUNC is set to a function that can be used to retrieve the
2100 selected file name from the returned widget.
2102 Returns the created widget. */
2104 static GtkWidget *
2105 xg_get_file_with_selection (struct frame *f,
2106 char *prompt,
2107 char *default_filename,
2108 bool mustmatch_p, bool only_dir_p,
2109 xg_get_file_func *func)
2111 GtkWidget *filewin;
2112 GtkFileSelection *filesel;
2114 filewin = gtk_file_selection_new (prompt);
2115 filesel = GTK_FILE_SELECTION (filewin);
2117 if (default_filename)
2118 gtk_file_selection_set_filename (filesel, default_filename);
2120 if (mustmatch_p)
2122 /* The selection_entry part of filesel is not documented. */
2123 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
2124 gtk_file_selection_hide_fileop_buttons (filesel);
2127 *func = xg_get_file_name_from_selector;
2129 return filewin;
2131 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
2133 /* Read a file name from the user using a file dialog, either the old
2134 file selection dialog, or the new file chooser dialog. Which to use
2135 depends on what the GTK version used has, and what the value of
2136 gtk-use-old-file-dialog.
2137 F is the current frame.
2138 PROMPT is a prompt to show to the user. May not be NULL.
2139 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2140 If MUSTMATCH_P, the returned file name must be an existing
2141 file.
2143 Returns a file name or NULL if no file was selected.
2144 The returned string must be freed by the caller. */
2146 char *
2147 xg_get_file_name (struct frame *f,
2148 char *prompt,
2149 char *default_filename,
2150 bool mustmatch_p,
2151 bool only_dir_p)
2153 GtkWidget *w = 0;
2154 char *fn = 0;
2155 int filesel_done = 0;
2156 xg_get_file_func func;
2158 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2160 if (xg_uses_old_file_dialog ())
2161 w = xg_get_file_with_selection (f, prompt, default_filename,
2162 mustmatch_p, only_dir_p, &func);
2163 else
2164 w = xg_get_file_with_chooser (f, prompt, default_filename,
2165 mustmatch_p, only_dir_p, &func);
2167 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2168 w = xg_get_file_with_chooser (f, prompt, default_filename,
2169 mustmatch_p, only_dir_p, &func);
2170 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2172 gtk_widget_set_name (w, "emacs-filedialog");
2174 filesel_done = xg_dialog_run (f, w);
2175 if (filesel_done == GTK_RESPONSE_OK)
2176 fn = (*func) (w);
2178 gtk_widget_destroy (w);
2179 return fn;
2182 /***********************************************************************
2183 GTK font chooser
2184 ***********************************************************************/
2186 #ifdef HAVE_FREETYPE
2188 #if USE_NEW_GTK_FONT_CHOOSER
2190 #define XG_WEIGHT_TO_SYMBOL(w) \
2191 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2192 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2193 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2194 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2195 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2196 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2197 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2198 : Qultra_bold)
2200 #define XG_STYLE_TO_SYMBOL(s) \
2201 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2202 : s == PANGO_STYLE_ITALIC ? Qitalic \
2203 : Qnormal)
2205 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2208 static char *x_last_font_name;
2210 /* Pop up a GTK font selector and return the name of the font the user
2211 selects, as a C string. The returned font name follows GTK's own
2212 format:
2214 `FAMILY [VALUE1 VALUE2] SIZE'
2216 This can be parsed using font_parse_fcname in font.c.
2217 DEFAULT_NAME, if non-zero, is the default font name. */
2219 Lisp_Object
2220 xg_get_font (struct frame *f, const char *default_name)
2222 GtkWidget *w;
2223 int done = 0;
2224 Lisp_Object font = Qnil;
2226 w = gtk_font_chooser_dialog_new
2227 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2229 if (default_name)
2231 /* Convert fontconfig names to Gtk names, i.e. remove - before
2232 number */
2233 char *p = strrchr (default_name, '-');
2234 if (p)
2236 char *ep = p+1;
2237 while (c_isdigit (*ep))
2238 ++ep;
2239 if (*ep == '\0') *p = ' ';
2242 else if (x_last_font_name)
2243 default_name = x_last_font_name;
2245 if (default_name)
2246 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2248 gtk_widget_set_name (w, "emacs-fontdialog");
2249 done = xg_dialog_run (f, w);
2250 if (done == GTK_RESPONSE_OK)
2252 #if USE_NEW_GTK_FONT_CHOOSER
2253 /* Use the GTK3 font chooser. */
2254 PangoFontDescription *desc
2255 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2257 if (desc)
2259 const char *name = pango_font_description_get_family (desc);
2260 gint size = pango_font_description_get_size (desc);
2261 PangoWeight weight = pango_font_description_get_weight (desc);
2262 PangoStyle style = pango_font_description_get_style (desc);
2264 #ifdef USE_CAIRO
2265 #define FONT_TYPE_WANTED (Qftcr)
2266 #else
2267 #define FONT_TYPE_WANTED (Qxft)
2268 #endif
2269 font = CALLN (Ffont_spec,
2270 QCname, build_string (name),
2271 QCsize, make_float (pango_units_to_double (size)),
2272 QCweight, XG_WEIGHT_TO_SYMBOL (weight),
2273 QCslant, XG_STYLE_TO_SYMBOL (style),
2274 QCtype,
2275 FONT_TYPE_WANTED);
2277 pango_font_description_free (desc);
2278 dupstring (&x_last_font_name, name);
2281 #else /* Use old font selector, which just returns the font name. */
2283 char *font_name
2284 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2286 if (font_name)
2288 font = build_string (font_name);
2289 g_free (x_last_font_name);
2290 x_last_font_name = font_name;
2292 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2295 gtk_widget_destroy (w);
2296 return font;
2298 #endif /* HAVE_FREETYPE */
2302 /***********************************************************************
2303 Menu functions.
2304 ***********************************************************************/
2306 /* The name of menu items that can be used for customization. Since GTK
2307 RC files are very crude and primitive, we have to set this on all
2308 menu item names so a user can easily customize menu items. */
2310 #define MENU_ITEM_NAME "emacs-menuitem"
2313 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2314 during GC. The next member points to the items. */
2315 static xg_list_node xg_menu_cb_list;
2317 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2318 during GC. The next member points to the items. */
2319 static xg_list_node xg_menu_item_cb_list;
2321 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2322 F is the frame CL_DATA will be initialized for.
2323 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2325 The menu bar and all sub menus under the menu bar in a frame
2326 share the same structure, hence the reference count.
2328 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2329 allocated xg_menu_cb_data if CL_DATA is NULL. */
2331 static xg_menu_cb_data *
2332 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2334 if (! cl_data)
2336 cl_data = xmalloc (sizeof *cl_data);
2337 cl_data->f = f;
2338 cl_data->menu_bar_vector = f->menu_bar_vector;
2339 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2340 cl_data->highlight_cb = highlight_cb;
2341 cl_data->ref_count = 0;
2343 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2346 cl_data->ref_count++;
2348 return cl_data;
2351 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2352 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2354 When the menu bar is updated, menu items may have been added and/or
2355 removed, so menu_bar_vector and menu_bar_items_used change. We must
2356 then update CL_DATA since it is used to determine which menu
2357 item that is invoked in the menu.
2358 HIGHLIGHT_CB could change, there is no check that the same
2359 function is given when modifying a menu bar as was given when
2360 creating the menu bar. */
2362 static void
2363 update_cl_data (xg_menu_cb_data *cl_data,
2364 struct frame *f,
2365 GCallback highlight_cb)
2367 if (cl_data)
2369 cl_data->f = f;
2370 cl_data->menu_bar_vector = f->menu_bar_vector;
2371 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2372 cl_data->highlight_cb = highlight_cb;
2376 /* Decrease reference count for CL_DATA.
2377 If reference count is zero, free CL_DATA. */
2379 static void
2380 unref_cl_data (xg_menu_cb_data *cl_data)
2382 if (cl_data && cl_data->ref_count > 0)
2384 cl_data->ref_count--;
2385 if (cl_data->ref_count == 0)
2387 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2388 xfree (cl_data);
2393 /* Function that marks all lisp data during GC. */
2395 void
2396 xg_mark_data (void)
2398 xg_list_node *iter;
2399 Lisp_Object rest, frame;
2401 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2402 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2404 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2406 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2408 if (! NILP (cb_data->help))
2409 mark_object (cb_data->help);
2412 FOR_EACH_FRAME (rest, frame)
2414 struct frame *f = XFRAME (frame);
2416 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2418 struct xg_frame_tb_info *tbinfo
2419 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2420 TB_INFO_KEY);
2421 if (tbinfo)
2423 mark_object (tbinfo->last_tool_bar);
2424 mark_object (tbinfo->style);
2430 /* Callback called when a menu item is destroyed. Used to free data.
2431 W is the widget that is being destroyed (not used).
2432 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2434 static void
2435 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2437 if (client_data)
2439 xg_menu_item_cb_data *data = client_data;
2440 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2441 xfree (data);
2445 /* Callback called when the pointer enters/leaves a menu item.
2446 W is the parent of the menu item.
2447 EVENT is either an enter event or leave event.
2448 CLIENT_DATA is not used.
2450 Returns FALSE to tell GTK to keep processing this event. */
2452 static gboolean
2453 menuitem_highlight_callback (GtkWidget *w,
2454 GdkEventCrossing *event,
2455 gpointer client_data)
2457 GdkEvent ev;
2458 GtkWidget *subwidget;
2459 xg_menu_item_cb_data *data;
2461 ev.crossing = *event;
2462 subwidget = gtk_get_event_widget (&ev);
2463 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2464 if (data)
2466 if (! NILP (data->help) && data->cl_data->highlight_cb)
2468 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2469 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2470 (*func) (subwidget, call_data);
2474 return FALSE;
2477 /* Callback called when a menu is destroyed. Used to free data.
2478 W is the widget that is being destroyed (not used).
2479 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2481 static void
2482 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2484 unref_cl_data (client_data);
2487 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2488 must be non-NULL) and can be inserted into a menu item.
2490 Returns the GtkHBox. */
2492 static GtkWidget *
2493 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2495 GtkWidget *wlbl;
2496 GtkWidget *wkey;
2497 GtkWidget *wbox;
2499 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2500 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2501 wlbl = gtk_label_new (utf8_label);
2502 wkey = gtk_label_new (utf8_key);
2504 #if GTK_CHECK_VERSION (3, 14, 0)
2505 gtk_widget_set_halign (wlbl, GTK_ALIGN_START);
2506 gtk_widget_set_valign (wlbl, GTK_ALIGN_CENTER);
2507 gtk_widget_set_halign (wkey, GTK_ALIGN_START);
2508 gtk_widget_set_valign (wkey, GTK_ALIGN_CENTER);
2509 #else
2510 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2511 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2512 #endif
2513 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2514 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2516 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2517 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2518 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2520 return wbox;
2523 /* Make and return a menu item widget with the key to the right.
2524 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2525 UTF8_KEY is the text representing the key binding.
2526 ITEM is the widget_value describing the menu item.
2528 GROUP is an in/out parameter. If the menu item to be created is not
2529 part of any radio menu group, *GROUP contains NULL on entry and exit.
2530 If the menu item to be created is part of a radio menu group, on entry
2531 *GROUP contains the group to use, or NULL if this is the first item
2532 in the group. On exit, *GROUP contains the radio item group.
2534 Unfortunately, keys don't line up as nicely as in Motif,
2535 but the macOS version doesn't either, so I guess that is OK. */
2537 static GtkWidget *
2538 make_menu_item (const char *utf8_label,
2539 const char *utf8_key,
2540 widget_value *item,
2541 GSList **group)
2543 GtkWidget *w;
2544 GtkWidget *wtoadd = 0;
2546 /* It has been observed that some menu items have a NULL name field.
2547 This will lead to this function being called with a NULL utf8_label.
2548 GTK crashes on that so we set a blank label. Why there is a NULL
2549 name remains to be investigated. */
2550 if (! utf8_label) utf8_label = " ";
2552 if (utf8_key)
2553 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2555 if (item->button_type == BUTTON_TYPE_TOGGLE)
2557 *group = NULL;
2558 if (utf8_key) w = gtk_check_menu_item_new ();
2559 else w = gtk_check_menu_item_new_with_label (utf8_label);
2560 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2562 else if (item->button_type == BUTTON_TYPE_RADIO)
2564 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2565 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2566 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2567 if (item->selected)
2568 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2570 else
2572 *group = NULL;
2573 if (utf8_key) w = gtk_menu_item_new ();
2574 else w = gtk_menu_item_new_with_label (utf8_label);
2577 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2578 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2580 return w;
2583 /* Create a menu item widget, and connect the callbacks.
2584 ITEM describes the menu item.
2585 F is the frame the created menu belongs to.
2586 SELECT_CB is the callback to use when a menu item is selected.
2587 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2588 CL_DATA points to the callback data to be used for this menu.
2589 GROUP is an in/out parameter. If the menu item to be created is not
2590 part of any radio menu group, *GROUP contains NULL on entry and exit.
2591 If the menu item to be created is part of a radio menu group, on entry
2592 *GROUP contains the group to use, or NULL if this is the first item
2593 in the group. On exit, *GROUP contains the radio item group.
2595 Returns the created GtkWidget. */
2597 static GtkWidget *
2598 xg_create_one_menuitem (widget_value *item,
2599 struct frame *f,
2600 GCallback select_cb,
2601 GCallback highlight_cb,
2602 xg_menu_cb_data *cl_data,
2603 GSList **group)
2605 char *utf8_label;
2606 char *utf8_key;
2607 GtkWidget *w;
2608 xg_menu_item_cb_data *cb_data;
2610 utf8_label = get_utf8_string (item->name);
2611 utf8_key = get_utf8_string (item->key);
2613 w = make_menu_item (utf8_label, utf8_key, item, group);
2615 if (utf8_label) g_free (utf8_label);
2616 if (utf8_key) g_free (utf8_key);
2618 cb_data = xmalloc (sizeof *cb_data);
2620 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2622 cb_data->select_id = 0;
2623 cb_data->help = item->help;
2624 cb_data->cl_data = cl_data;
2625 cb_data->call_data = item->call_data;
2627 g_signal_connect (G_OBJECT (w),
2628 "destroy",
2629 G_CALLBACK (menuitem_destroy_callback),
2630 cb_data);
2632 /* Put cb_data in widget, so we can get at it when modifying menubar */
2633 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2635 /* final item, not a submenu */
2636 if (item->call_data && ! item->contents)
2638 if (select_cb)
2639 cb_data->select_id
2640 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2643 return w;
2646 /* Create a full menu tree specified by DATA.
2647 F is the frame the created menu belongs to.
2648 SELECT_CB is the callback to use when a menu item is selected.
2649 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2650 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2651 If POP_UP_P, create a popup menu.
2652 If MENU_BAR_P, create a menu bar.
2653 TOPMENU is the topmost GtkWidget that others shall be placed under.
2654 It may be NULL, in that case we create the appropriate widget
2655 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2656 CL_DATA is the callback data we shall use for this menu, or NULL
2657 if we haven't set the first callback yet.
2658 NAME is the name to give to the top level menu if this function
2659 creates it. May be NULL to not set any name.
2661 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2662 not NULL.
2664 This function calls itself to create submenus. */
2666 static GtkWidget *
2667 create_menus (widget_value *data,
2668 struct frame *f,
2669 GCallback select_cb,
2670 GCallback deactivate_cb,
2671 GCallback highlight_cb,
2672 bool pop_up_p,
2673 bool menu_bar_p,
2674 GtkWidget *topmenu,
2675 xg_menu_cb_data *cl_data,
2676 const char *name)
2678 widget_value *item;
2679 GtkWidget *wmenu = topmenu;
2680 GSList *group = NULL;
2682 if (! topmenu)
2684 if (! menu_bar_p)
2686 wmenu = gtk_menu_new ();
2687 xg_set_screen (wmenu, f);
2688 /* Connect this to the menu instead of items so we get enter/leave for
2689 disabled items also. TODO: Still does not get enter/leave for
2690 disabled items in detached menus. */
2691 g_signal_connect (G_OBJECT (wmenu),
2692 "enter-notify-event",
2693 G_CALLBACK (menuitem_highlight_callback),
2694 NULL);
2695 g_signal_connect (G_OBJECT (wmenu),
2696 "leave-notify-event",
2697 G_CALLBACK (menuitem_highlight_callback),
2698 NULL);
2700 else
2702 wmenu = gtk_menu_bar_new ();
2703 /* Set width of menu bar to a small value so it doesn't enlarge
2704 a small initial frame size. The width will be set to the
2705 width of the frame later on when it is added to a container.
2706 height -1: Natural height. */
2707 gtk_widget_set_size_request (wmenu, 1, -1);
2710 /* Put cl_data on the top menu for easier access. */
2711 cl_data = make_cl_data (cl_data, f, highlight_cb);
2712 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2713 g_signal_connect (G_OBJECT (wmenu), "destroy",
2714 G_CALLBACK (menu_destroy_callback), cl_data);
2716 if (name)
2717 gtk_widget_set_name (wmenu, name);
2719 if (deactivate_cb)
2720 g_signal_connect (G_OBJECT (wmenu),
2721 "selection-done", deactivate_cb, 0);
2724 for (item = data; item; item = item->next)
2726 GtkWidget *w;
2728 if (pop_up_p && !item->contents && !item->call_data
2729 && !menu_separator_name_p (item->name))
2731 char *utf8_label;
2732 /* A title for a popup. We do the same as GTK does when
2733 creating titles, but it does not look good. */
2734 group = NULL;
2735 utf8_label = get_utf8_string (item->name);
2737 w = gtk_menu_item_new_with_label (utf8_label);
2738 gtk_widget_set_sensitive (w, FALSE);
2739 if (utf8_label) g_free (utf8_label);
2741 else if (menu_separator_name_p (item->name))
2743 group = NULL;
2744 /* GTK only have one separator type. */
2745 w = gtk_separator_menu_item_new ();
2747 else
2749 w = xg_create_one_menuitem (item,
2751 item->contents ? 0 : select_cb,
2752 highlight_cb,
2753 cl_data,
2754 &group);
2756 /* Create a possibly empty submenu for menu bar items, since some
2757 themes don't highlight items correctly without it. */
2758 if (item->contents || menu_bar_p)
2760 GtkWidget *submenu = create_menus (item->contents,
2762 select_cb,
2763 deactivate_cb,
2764 highlight_cb,
2768 cl_data,
2770 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2774 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2775 gtk_widget_set_name (w, MENU_ITEM_NAME);
2778 return wmenu;
2781 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2782 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2783 with some text and buttons.
2784 F is the frame the created item belongs to.
2785 NAME is the name to use for the top widget.
2786 VAL is a widget_value structure describing items to be created.
2787 SELECT_CB is the callback to use when a menu item is selected or
2788 a dialog button is pressed.
2789 DEACTIVATE_CB is the callback to use when an item is deactivated.
2790 For a menu, when a sub menu is not shown anymore, for a dialog it is
2791 called when the dialog is popped down.
2792 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2794 Returns the widget created. */
2796 GtkWidget *
2797 xg_create_widget (const char *type, const char *name, struct frame *f,
2798 widget_value *val, GCallback select_cb,
2799 GCallback deactivate_cb, GCallback highlight_cb)
2801 GtkWidget *w = 0;
2802 bool menu_bar_p = strcmp (type, "menubar") == 0;
2803 bool pop_up_p = strcmp (type, "popup") == 0;
2805 if (strcmp (type, "dialog") == 0)
2807 w = create_dialog (val, select_cb, deactivate_cb);
2808 xg_set_screen (w, f);
2809 gtk_window_set_transient_for (GTK_WINDOW (w),
2810 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2811 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2812 gtk_widget_set_name (w, "emacs-dialog");
2813 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2815 else if (menu_bar_p || pop_up_p)
2817 w = create_menus (val->contents,
2819 select_cb,
2820 deactivate_cb,
2821 highlight_cb,
2822 pop_up_p,
2823 menu_bar_p,
2826 name);
2828 /* Set the cursor to an arrow for popup menus when they are mapped.
2829 This is done by default for menu bar menus. */
2830 if (pop_up_p)
2832 /* Must realize so the GdkWindow inside the widget is created. */
2833 gtk_widget_realize (w);
2834 xg_set_cursor (w, FRAME_DISPLAY_INFO (f)->xg_cursor);
2837 else
2839 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2840 type);
2843 return w;
2846 /* Return the label for menu item WITEM. */
2848 static const char *
2849 xg_get_menu_item_label (GtkMenuItem *witem)
2851 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2852 return gtk_label_get_label (wlabel);
2855 /* Return true if the menu item WITEM has the text LABEL. */
2857 static bool
2858 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2860 bool is_same = 0;
2861 char *utf8_label = get_utf8_string (label);
2862 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2864 if (! old_label && ! utf8_label)
2865 is_same = 1;
2866 else if (old_label && utf8_label)
2867 is_same = strcmp (utf8_label, old_label) == 0;
2869 if (utf8_label) g_free (utf8_label);
2871 return is_same;
2874 /* Destroy widgets in LIST. */
2876 static void
2877 xg_destroy_widgets (GList *list)
2879 GList *iter;
2881 for (iter = list; iter; iter = g_list_next (iter))
2883 GtkWidget *w = GTK_WIDGET (iter->data);
2885 /* Destroying the widget will remove it from the container it is in. */
2886 gtk_widget_destroy (w);
2890 /* Update the top level names in MENUBAR (i.e. not submenus).
2891 F is the frame the menu bar belongs to.
2892 *LIST is a list with the current menu bar names (menu item widgets).
2893 ITER is the item within *LIST that shall be updated.
2894 POS is the numerical position, starting at 0, of ITER in *LIST.
2895 VAL describes what the menu bar shall look like after the update.
2896 SELECT_CB is the callback to use when a menu item is selected.
2897 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2898 CL_DATA points to the callback data to be used for this menu bar.
2900 This function calls itself to walk through the menu bar names. */
2902 static void
2903 xg_update_menubar (GtkWidget *menubar,
2904 struct frame *f,
2905 GList **list,
2906 GList *iter,
2907 int pos,
2908 widget_value *val,
2909 GCallback select_cb,
2910 GCallback deactivate_cb,
2911 GCallback highlight_cb,
2912 xg_menu_cb_data *cl_data)
2914 if (! iter && ! val)
2915 return;
2916 else if (iter && ! val)
2918 /* Item(s) have been removed. Remove all remaining items. */
2919 xg_destroy_widgets (iter);
2921 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2922 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2923 gtk_menu_item_new_with_label (""),
2925 /* All updated. */
2926 val = 0;
2927 iter = 0;
2929 else if (! iter && val)
2931 /* Item(s) added. Add all new items in one call. */
2932 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2933 0, 1, menubar, cl_data, 0);
2935 /* All updated. */
2936 val = 0;
2937 iter = 0;
2939 /* Below this neither iter or val is NULL */
2940 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2942 /* This item is still the same, check next item. */
2943 val = val->next;
2944 iter = g_list_next (iter);
2945 ++pos;
2947 else /* This item is changed. */
2949 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2950 GtkMenuItem *witem2 = 0;
2951 bool val_in_menubar = 0;
2952 bool iter_in_new_menubar = 0;
2953 GList *iter2;
2954 widget_value *cur;
2956 /* See if the changed entry (val) is present later in the menu bar */
2957 for (iter2 = iter;
2958 iter2 && ! val_in_menubar;
2959 iter2 = g_list_next (iter2))
2961 witem2 = GTK_MENU_ITEM (iter2->data);
2962 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2965 /* See if the current entry (iter) is present later in the
2966 specification for the new menu bar. */
2967 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2968 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2970 if (val_in_menubar && ! iter_in_new_menubar)
2972 int nr = pos;
2974 /* This corresponds to:
2975 Current: A B C
2976 New: A C
2977 Remove B. */
2979 g_object_ref (G_OBJECT (witem));
2980 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2981 gtk_widget_destroy (GTK_WIDGET (witem));
2983 /* Must get new list since the old changed. */
2984 g_list_free (*list);
2985 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2986 while (nr-- > 0) iter = g_list_next (iter);
2988 else if (! val_in_menubar && ! iter_in_new_menubar)
2990 /* This corresponds to:
2991 Current: A B C
2992 New: A X C
2993 Rename B to X. This might seem to be a strange thing to do,
2994 since if there is a menu under B it will be totally wrong for X.
2995 But consider editing a C file. Then there is a C-mode menu
2996 (corresponds to B above).
2997 If then doing C-x C-f the minibuf menu (X above) replaces the
2998 C-mode menu. When returning from the minibuffer, we get
2999 back the C-mode menu. Thus we do:
3000 Rename B to X (C-mode to minibuf menu)
3001 Rename X to B (minibuf to C-mode menu).
3002 If the X menu hasn't been invoked, the menu under B
3003 is up to date when leaving the minibuffer. */
3004 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
3005 char *utf8_label = get_utf8_string (val->name);
3007 /* GTK menu items don't notice when their labels have been
3008 changed from underneath them, so we have to explicitly
3009 use g_object_notify to tell listeners (e.g., a GMenuModel
3010 bridge that might be loaded) that the item's label has
3011 changed. */
3012 gtk_label_set_text (wlabel, utf8_label);
3013 #if GTK_CHECK_VERSION (2, 16, 0)
3014 g_object_notify (G_OBJECT (witem), "label");
3015 #endif
3016 if (utf8_label) g_free (utf8_label);
3017 iter = g_list_next (iter);
3018 val = val->next;
3019 ++pos;
3021 else if (! val_in_menubar && iter_in_new_menubar)
3023 /* This corresponds to:
3024 Current: A B C
3025 New: A X B C
3026 Insert X. */
3028 int nr = pos;
3029 GSList *group = 0;
3030 GtkWidget *w = xg_create_one_menuitem (val,
3032 select_cb,
3033 highlight_cb,
3034 cl_data,
3035 &group);
3037 /* Create a possibly empty submenu for menu bar items, since some
3038 themes don't highlight items correctly without it. */
3039 GtkWidget *submenu = create_menus (NULL, f,
3040 select_cb, deactivate_cb,
3041 highlight_cb,
3042 0, 0, 0, cl_data, 0);
3044 gtk_widget_set_name (w, MENU_ITEM_NAME);
3045 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
3046 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
3048 g_list_free (*list);
3049 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
3050 while (nr-- > 0) iter = g_list_next (iter);
3051 iter = g_list_next (iter);
3052 val = val->next;
3053 ++pos;
3055 else /* if (val_in_menubar && iter_in_new_menubar) */
3057 int nr = pos;
3058 /* This corresponds to:
3059 Current: A B C
3060 New: A C B
3061 Move C before B */
3063 g_object_ref (G_OBJECT (witem2));
3064 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
3065 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
3066 GTK_WIDGET (witem2), pos);
3067 g_object_unref (G_OBJECT (witem2));
3069 g_list_free (*list);
3070 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
3071 while (nr-- > 0) iter = g_list_next (iter);
3072 if (iter) iter = g_list_next (iter);
3073 val = val->next;
3074 ++pos;
3078 /* Update the rest of the menu bar. */
3079 xg_update_menubar (menubar, f, list, iter, pos, val,
3080 select_cb, deactivate_cb, highlight_cb, cl_data);
3083 /* Update the menu item W so it corresponds to VAL.
3084 SELECT_CB is the callback to use when a menu item is selected.
3085 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3086 CL_DATA is the data to set in the widget for menu invocation. */
3088 static void
3089 xg_update_menu_item (widget_value *val,
3090 GtkWidget *w,
3091 GCallback select_cb,
3092 GCallback highlight_cb,
3093 xg_menu_cb_data *cl_data)
3095 GtkWidget *wchild;
3096 GtkLabel *wlbl = 0;
3097 GtkLabel *wkey = 0;
3098 char *utf8_label;
3099 char *utf8_key;
3100 const char *old_label = 0;
3101 const char *old_key = 0;
3102 xg_menu_item_cb_data *cb_data;
3103 bool label_changed = false;
3105 wchild = XG_BIN_CHILD (w);
3106 utf8_label = get_utf8_string (val->name);
3107 utf8_key = get_utf8_string (val->key);
3109 /* See if W is a menu item with a key. See make_menu_item above. */
3110 if (GTK_IS_BOX (wchild))
3112 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
3114 wlbl = GTK_LABEL (list->data);
3115 wkey = GTK_LABEL (list->next->data);
3116 g_list_free (list);
3118 if (! utf8_key)
3120 /* Remove the key and keep just the label. */
3121 g_object_ref (G_OBJECT (wlbl));
3122 gtk_container_remove (GTK_CONTAINER (w), wchild);
3123 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
3124 g_object_unref (G_OBJECT (wlbl));
3125 wkey = 0;
3129 else /* Just a label. */
3131 wlbl = GTK_LABEL (wchild);
3133 /* Check if there is now a key. */
3134 if (utf8_key)
3136 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
3137 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
3139 wlbl = GTK_LABEL (list->data);
3140 wkey = GTK_LABEL (list->next->data);
3141 g_list_free (list);
3143 gtk_container_remove (GTK_CONTAINER (w), wchild);
3144 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3148 if (wkey) old_key = gtk_label_get_label (wkey);
3149 if (wlbl) old_label = gtk_label_get_label (wlbl);
3151 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
3153 label_changed = true;
3154 gtk_label_set_text (wkey, utf8_key);
3157 if (! old_label || strcmp (utf8_label, old_label) != 0)
3159 label_changed = true;
3160 gtk_label_set_text (wlbl, utf8_label);
3163 if (utf8_key) g_free (utf8_key);
3164 if (utf8_label) g_free (utf8_label);
3166 if (! val->enabled && gtk_widget_get_sensitive (w))
3167 gtk_widget_set_sensitive (w, FALSE);
3168 else if (val->enabled && ! gtk_widget_get_sensitive (w))
3169 gtk_widget_set_sensitive (w, TRUE);
3171 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
3172 if (cb_data)
3174 cb_data->call_data = val->call_data;
3175 cb_data->help = val->help;
3176 cb_data->cl_data = cl_data;
3178 /* We assume the callback functions don't change. */
3179 if (val->call_data && ! val->contents)
3181 /* This item shall have a select callback. */
3182 if (! cb_data->select_id)
3183 cb_data->select_id
3184 = g_signal_connect (G_OBJECT (w), "activate",
3185 select_cb, cb_data);
3187 else if (cb_data->select_id)
3189 g_signal_handler_disconnect (w, cb_data->select_id);
3190 cb_data->select_id = 0;
3194 #if GTK_CHECK_VERSION (2, 16, 0)
3195 if (label_changed) /* See comment in xg_update_menubar. */
3196 g_object_notify (G_OBJECT (w), "label");
3197 #endif
3200 /* Update the toggle menu item W so it corresponds to VAL. */
3202 static void
3203 xg_update_toggle_item (widget_value *val, GtkWidget *w)
3205 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3208 /* Update the radio menu item W so it corresponds to VAL. */
3210 static void
3211 xg_update_radio_item (widget_value *val, GtkWidget *w)
3213 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3216 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3217 SUBMENU may be NULL, in that case a new menu is created.
3218 F is the frame the menu bar belongs to.
3219 VAL describes the contents of the menu bar.
3220 SELECT_CB is the callback to use when a menu item is selected.
3221 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3222 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3223 CL_DATA is the call back data to use for any newly created items.
3225 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3226 was NULL. */
3228 static GtkWidget *
3229 xg_update_submenu (GtkWidget *submenu,
3230 struct frame *f,
3231 widget_value *val,
3232 GCallback select_cb,
3233 GCallback deactivate_cb,
3234 GCallback highlight_cb,
3235 xg_menu_cb_data *cl_data)
3237 GtkWidget *newsub = submenu;
3238 GList *list = 0;
3239 GList *iter;
3240 widget_value *cur;
3241 GList *first_radio = 0;
3243 if (submenu)
3244 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3246 for (cur = val, iter = list;
3247 cur && iter;
3248 iter = g_list_next (iter), cur = cur->next)
3250 GtkWidget *w = GTK_WIDGET (iter->data);
3252 /* Remember first radio button in a group. If we get a mismatch in
3253 a radio group we must rebuild the whole group so that the connections
3254 in GTK becomes correct. */
3255 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3256 first_radio = iter;
3257 else if (cur->button_type != BUTTON_TYPE_RADIO
3258 && ! GTK_IS_RADIO_MENU_ITEM (w))
3259 first_radio = 0;
3261 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3263 if (! menu_separator_name_p (cur->name))
3264 break;
3266 else if (GTK_IS_CHECK_MENU_ITEM (w))
3268 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3269 break;
3270 xg_update_toggle_item (cur, w);
3271 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3273 else if (GTK_IS_RADIO_MENU_ITEM (w))
3275 if (cur->button_type != BUTTON_TYPE_RADIO)
3276 break;
3277 xg_update_radio_item (cur, w);
3278 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3280 else if (GTK_IS_MENU_ITEM (w))
3282 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3283 GtkWidget *sub;
3285 if (cur->button_type != BUTTON_TYPE_NONE ||
3286 menu_separator_name_p (cur->name))
3287 break;
3289 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3291 sub = gtk_menu_item_get_submenu (witem);
3292 if (sub && ! cur->contents)
3294 /* Not a submenu anymore. */
3295 g_object_ref (G_OBJECT (sub));
3296 remove_submenu (witem);
3297 gtk_widget_destroy (sub);
3299 else if (cur->contents)
3301 GtkWidget *nsub;
3303 nsub = xg_update_submenu (sub, f, cur->contents,
3304 select_cb, deactivate_cb,
3305 highlight_cb, cl_data);
3307 /* If this item just became a submenu, we must set it. */
3308 if (nsub != sub)
3309 gtk_menu_item_set_submenu (witem, nsub);
3312 else
3314 /* Structural difference. Remove everything from here and down
3315 in SUBMENU. */
3316 break;
3320 /* Remove widgets from first structural change. */
3321 if (iter)
3323 /* If we are adding new menu items below, we must remove from
3324 first radio button so that radio groups become correct. */
3325 if (cur && first_radio) xg_destroy_widgets (first_radio);
3326 else xg_destroy_widgets (iter);
3329 if (cur)
3331 /* More items added. Create them. */
3332 newsub = create_menus (cur,
3334 select_cb,
3335 deactivate_cb,
3336 highlight_cb,
3339 submenu,
3340 cl_data,
3344 if (list) g_list_free (list);
3346 return newsub;
3349 /* Update the MENUBAR.
3350 F is the frame the menu bar belongs to.
3351 VAL describes the contents of the menu bar.
3352 If DEEP_P, rebuild all but the top level menu names in
3353 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3354 SELECT_CB is the callback to use when a menu item is selected.
3355 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3356 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3358 void
3359 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3360 widget_value *val, bool deep_p,
3361 GCallback select_cb, GCallback deactivate_cb,
3362 GCallback highlight_cb)
3364 xg_menu_cb_data *cl_data;
3365 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3367 if (! list) return;
3369 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3371 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3372 select_cb, deactivate_cb, highlight_cb, cl_data);
3374 if (deep_p)
3376 widget_value *cur;
3378 /* Update all sub menus.
3379 We must keep the submenus (GTK menu item widgets) since the
3380 X Window in the XEvent that activates the menu are those widgets. */
3382 /* Update cl_data, menu_item things in F may have changed. */
3383 update_cl_data (cl_data, f, highlight_cb);
3385 for (cur = val->contents; cur; cur = cur->next)
3387 GList *iter;
3388 GtkWidget *sub = 0;
3389 GtkWidget *newsub;
3390 GtkMenuItem *witem = 0;
3392 /* Find sub menu that corresponds to val and update it. */
3393 for (iter = list ; iter; iter = g_list_next (iter))
3395 witem = GTK_MENU_ITEM (iter->data);
3396 if (xg_item_label_same_p (witem, cur->name))
3398 sub = gtk_menu_item_get_submenu (witem);
3399 break;
3403 newsub = xg_update_submenu (sub,
3405 cur->contents,
3406 select_cb,
3407 deactivate_cb,
3408 highlight_cb,
3409 cl_data);
3410 /* sub may still be NULL. If we just updated non deep and added
3411 a new menu bar item, it has no sub menu yet. So we set the
3412 newly created sub menu under witem. */
3413 if (newsub != sub && witem != 0)
3415 xg_set_screen (newsub, f);
3416 gtk_menu_item_set_submenu (witem, newsub);
3421 g_list_free (list);
3422 gtk_widget_show_all (menubar);
3425 /* Callback called when the menu bar W is mapped.
3426 Used to find the height of the menu bar if we didn't get it
3427 after showing the widget. */
3429 static void
3430 menubar_map_cb (GtkWidget *w, gpointer user_data)
3432 GtkRequisition req;
3433 struct frame *f = user_data;
3434 gtk_widget_get_preferred_size (w, NULL, &req);
3435 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3437 FRAME_MENUBAR_HEIGHT (f) = req.height;
3438 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3442 /* Recompute all the widgets of frame F, when the menu bar has been
3443 changed. */
3445 void
3446 xg_update_frame_menubar (struct frame *f)
3448 struct x_output *x = f->output_data.x;
3449 GtkRequisition req;
3451 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3452 return;
3454 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3455 return; /* Already done this, happens for frames created invisible. */
3457 block_input ();
3459 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3460 FALSE, FALSE, 0);
3461 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3463 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3464 gtk_widget_show_all (x->menubar_widget);
3465 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3467 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3469 FRAME_MENUBAR_HEIGHT (f) = req.height;
3470 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3472 unblock_input ();
3475 /* Get rid of the menu bar of frame F, and free its storage.
3476 This is used when deleting a frame, and when turning off the menu bar. */
3478 void
3479 free_frame_menubar (struct frame *f)
3481 struct x_output *x = f->output_data.x;
3483 if (x->menubar_widget)
3485 block_input ();
3487 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3488 /* The menubar and its children shall be deleted when removed from
3489 the container. */
3490 x->menubar_widget = 0;
3491 FRAME_MENUBAR_HEIGHT (f) = 0;
3492 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3493 unblock_input ();
3497 bool
3498 xg_event_is_for_menubar (struct frame *f, const XEvent *event)
3500 struct x_output *x = f->output_data.x;
3501 GList *iter;
3502 GdkRectangle rec;
3503 GList *list;
3504 GdkDisplay *gdpy;
3505 GdkWindow *gw;
3506 GdkEvent gevent;
3507 GtkWidget *gwdesc;
3509 if (! x->menubar_widget) return 0;
3511 if (! (event->xbutton.x >= 0
3512 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3513 && event->xbutton.y >= 0
3514 && event->xbutton.y < FRAME_MENUBAR_HEIGHT (f)
3515 && event->xbutton.same_screen))
3516 return 0;
3518 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3519 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3520 if (! gw) return 0;
3521 gevent.any.window = gw;
3522 gevent.any.type = GDK_NOTHING;
3523 gwdesc = gtk_get_event_widget (&gevent);
3524 if (! gwdesc) return 0;
3525 if (! GTK_IS_MENU_BAR (gwdesc)
3526 && ! GTK_IS_MENU_ITEM (gwdesc)
3527 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3528 return 0;
3530 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3531 if (! list) return 0;
3532 rec.x = event->xbutton.x;
3533 rec.y = event->xbutton.y;
3534 rec.width = 1;
3535 rec.height = 1;
3537 for (iter = list ; iter; iter = g_list_next (iter))
3539 GtkWidget *w = GTK_WIDGET (iter->data);
3540 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3541 break;
3543 g_list_free (list);
3544 return iter != 0;
3549 /***********************************************************************
3550 Scroll bar functions
3551 ***********************************************************************/
3554 /* Setting scroll bar values invokes the callback. Use this variable
3555 to indicate that callback should do nothing. */
3557 bool xg_ignore_gtk_scrollbar;
3559 /* Width and height of scroll bars for the current theme. */
3560 static int scroll_bar_width_for_theme;
3561 static int scroll_bar_height_for_theme;
3563 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3564 may be larger than 32 bits. Keep a mapping from integer index to widget
3565 pointers to get around the 32 bit limitation. */
3567 static struct
3569 GtkWidget **widgets;
3570 ptrdiff_t max_size;
3571 ptrdiff_t used;
3572 } id_to_widget;
3574 /* Grow this much every time we need to allocate more */
3576 #define ID_TO_WIDGET_INCR 32
3578 /* Store the widget pointer W in id_to_widget and return the integer index. */
3580 static ptrdiff_t
3581 xg_store_widget_in_map (GtkWidget *w)
3583 ptrdiff_t i;
3585 if (id_to_widget.max_size == id_to_widget.used)
3587 ptrdiff_t new_size;
3588 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3589 memory_full (SIZE_MAX);
3591 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3592 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3593 new_size, sizeof (GtkWidget *));
3595 for (i = id_to_widget.max_size; i < new_size; ++i)
3596 id_to_widget.widgets[i] = 0;
3597 id_to_widget.max_size = new_size;
3600 /* Just loop over the array and find a free place. After all,
3601 how many scroll bars are we creating? Should be a small number.
3602 The check above guarantees we will find a free place. */
3603 for (i = 0; i < id_to_widget.max_size; ++i)
3605 if (! id_to_widget.widgets[i])
3607 id_to_widget.widgets[i] = w;
3608 ++id_to_widget.used;
3610 return i;
3614 /* Should never end up here */
3615 emacs_abort ();
3618 /* Remove pointer at IDX from id_to_widget.
3619 Called when scroll bar is destroyed. */
3621 static void
3622 xg_remove_widget_from_map (ptrdiff_t idx)
3624 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3626 id_to_widget.widgets[idx] = 0;
3627 --id_to_widget.used;
3631 /* Get the widget pointer at IDX from id_to_widget. */
3633 static GtkWidget *
3634 xg_get_widget_from_map (ptrdiff_t idx)
3636 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3637 return id_to_widget.widgets[idx];
3639 return 0;
3642 static void
3643 update_theme_scrollbar_width (void)
3645 #ifdef HAVE_GTK3
3646 GtkAdjustment *vadj;
3647 #else
3648 GtkObject *vadj;
3649 #endif
3650 GtkWidget *wscroll;
3651 int w = 0, b = 0;
3653 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3654 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3655 g_object_ref_sink (G_OBJECT (wscroll));
3656 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3657 gtk_widget_destroy (wscroll);
3658 g_object_unref (G_OBJECT (wscroll));
3659 w += 2*b;
3660 #ifndef HAVE_GTK3
3661 if (w < 16) w = 16;
3662 #endif
3663 scroll_bar_width_for_theme = w;
3666 static void
3667 update_theme_scrollbar_height (void)
3669 #ifdef HAVE_GTK3
3670 GtkAdjustment *hadj;
3671 #else
3672 GtkObject *hadj;
3673 #endif
3674 GtkWidget *wscroll;
3675 int w = 0, b = 0;
3677 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX, 0.1, 0.1, 0.1);
3678 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3679 g_object_ref_sink (G_OBJECT (wscroll));
3680 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3681 gtk_widget_destroy (wscroll);
3682 g_object_unref (G_OBJECT (wscroll));
3683 w += 2*b;
3684 if (w < 12) w = 12;
3685 scroll_bar_height_for_theme = w;
3689 xg_get_default_scrollbar_width (struct frame *f)
3691 return scroll_bar_width_for_theme * xg_get_scale (f);
3695 xg_get_default_scrollbar_height (struct frame *f)
3697 /* Apparently there's no default height for themes. */
3698 return scroll_bar_width_for_theme * xg_get_scale (f);
3701 /* Return the scrollbar id for X Window WID on display DPY.
3702 Return -1 if WID not in id_to_widget. */
3704 ptrdiff_t
3705 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3707 ptrdiff_t idx;
3708 GtkWidget *w;
3710 w = xg_win_to_widget (dpy, wid);
3712 if (w)
3714 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3715 if (id_to_widget.widgets[idx] == w)
3716 return idx;
3719 return -1;
3722 /* Callback invoked when scroll bar WIDGET is destroyed.
3723 DATA is the index into id_to_widget for WIDGET.
3724 We free pointer to last scroll bar values here and remove the index. */
3726 static void
3727 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3729 intptr_t id = (intptr_t) data;
3730 xg_remove_widget_from_map (id);
3733 static void
3734 xg_finish_scroll_bar_creation (struct frame *f,
3735 GtkWidget *wscroll,
3736 struct scroll_bar *bar,
3737 GCallback scroll_callback,
3738 GCallback end_callback,
3739 const char *scroll_bar_name)
3741 GtkWidget *webox = gtk_event_box_new ();
3743 gtk_widget_set_name (wscroll, scroll_bar_name);
3744 #ifndef HAVE_GTK3
3745 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3746 #endif
3747 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3749 ptrdiff_t scroll_id = xg_store_widget_in_map (wscroll);
3751 g_signal_connect (G_OBJECT (wscroll),
3752 "destroy",
3753 G_CALLBACK (xg_gtk_scroll_destroy),
3754 (gpointer) scroll_id);
3755 g_signal_connect (G_OBJECT (wscroll),
3756 "change-value",
3757 scroll_callback,
3758 (gpointer) bar);
3759 g_signal_connect (G_OBJECT (wscroll),
3760 "button-release-event",
3761 end_callback,
3762 (gpointer) bar);
3764 /* The scroll bar widget does not draw on a window of its own. Instead
3765 it draws on the parent window, in this case the edit widget. So
3766 whenever the edit widget is cleared, the scroll bar needs to redraw
3767 also, which causes flicker. Put an event box between the edit widget
3768 and the scroll bar, so the scroll bar instead draws itself on the
3769 event box window. */
3770 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3771 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3773 xg_set_widget_bg (f, webox, FRAME_BACKGROUND_PIXEL (f));
3775 /* N.B. The event box doesn't become a real X11 window until we ask
3776 for its XID via GTK_WIDGET_TO_X_WIN. If the event box is not a
3777 real X window, it and its scroll-bar child try to draw on the
3778 Emacs main window, which we draw over using Xlib. */
3779 gtk_widget_realize (webox);
3780 GTK_WIDGET_TO_X_WIN (webox);
3782 /* Set the cursor to an arrow. */
3783 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3785 bar->x_window = scroll_id;
3788 /* Create a scroll bar widget for frame F. Store the scroll bar
3789 in BAR.
3790 SCROLL_CALLBACK is the callback to invoke when the value of the
3791 bar changes.
3792 END_CALLBACK is the callback to invoke when scrolling ends.
3793 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3794 to set resources for the widget. */
3796 void
3797 xg_create_scroll_bar (struct frame *f,
3798 struct scroll_bar *bar,
3799 GCallback scroll_callback,
3800 GCallback end_callback,
3801 const char *scroll_bar_name)
3803 GtkWidget *wscroll;
3804 #ifdef HAVE_GTK3
3805 GtkAdjustment *vadj;
3806 #else
3807 GtkObject *vadj;
3808 #endif
3810 /* Page, step increment values are not so important here, they
3811 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3812 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3813 0.1, 0.1, 0.1);
3815 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3817 xg_finish_scroll_bar_creation (f, wscroll, bar, scroll_callback,
3818 end_callback, scroll_bar_name);
3819 bar->horizontal = 0;
3822 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3823 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3824 of the bar changes. END_CALLBACK is the callback to invoke when
3825 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3826 bar. Can be used to set resources for the widget. */
3828 void
3829 xg_create_horizontal_scroll_bar (struct frame *f,
3830 struct scroll_bar *bar,
3831 GCallback scroll_callback,
3832 GCallback end_callback,
3833 const char *scroll_bar_name)
3835 GtkWidget *wscroll;
3836 #ifdef HAVE_GTK3
3837 GtkAdjustment *hadj;
3838 #else
3839 GtkObject *hadj;
3840 #endif
3842 /* Page, step increment values are not so important here, they
3843 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3844 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX,
3845 0.1, 0.1, 0.1);
3847 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3849 xg_finish_scroll_bar_creation (f, wscroll, bar, scroll_callback,
3850 end_callback, scroll_bar_name);
3851 bar->horizontal = 1;
3854 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3856 void
3857 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3859 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3860 if (w)
3862 GtkWidget *wparent = gtk_widget_get_parent (w);
3863 gtk_widget_destroy (w);
3864 gtk_widget_destroy (wparent);
3865 SET_FRAME_GARBAGED (f);
3869 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3870 in frame F.
3871 TOP/LEFT are the new pixel positions where the bar shall appear.
3872 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3874 void
3875 xg_update_scrollbar_pos (struct frame *f,
3876 ptrdiff_t scrollbar_id,
3877 int top,
3878 int left,
3879 int width,
3880 int height)
3882 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3883 if (wscroll)
3885 GtkWidget *wfixed = f->output_data.x->edit_widget;
3886 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3887 gint msl;
3888 int scale = xg_get_scale (f);
3890 top /= scale;
3891 left /= scale;
3892 height /= scale;
3893 width /= scale;
3895 /* Clear out old position. */
3896 int oldx = -1, oldy = -1, oldw, oldh;
3897 if (gtk_widget_get_parent (wparent) == wfixed)
3899 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3900 "x", &oldx, "y", &oldy, NULL);
3901 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3904 /* Move and resize to new values. */
3905 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3906 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3907 bool hidden = height < msl;
3908 if (hidden)
3910 /* No room. Hide scroll bar as some themes output a warning if
3911 the height is less than the min size. */
3912 gtk_widget_hide (wparent);
3913 gtk_widget_hide (wscroll);
3915 else
3917 gtk_widget_show_all (wparent);
3918 gtk_widget_set_size_request (wscroll, width, height);
3920 if (oldx != -1 && oldw > 0 && oldh > 0)
3922 /* Clear under old scroll bar position. */
3923 oldw += (scale - 1) * oldw;
3924 oldx -= (scale - 1) * oldw;
3925 x_clear_area (f, oldx, oldy, oldw, oldh);
3928 if (!hidden)
3930 GtkWidget *scrollbar = xg_get_widget_from_map (scrollbar_id);
3931 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
3933 /* Don't obscure any child frames. */
3934 XLowerWindow (FRAME_X_DISPLAY (f), GTK_WIDGET_TO_X_WIN (webox));
3937 /* GTK does not redraw until the main loop is entered again, but
3938 if there are no X events pending we will not enter it. So we sync
3939 here to get some events. */
3941 x_sync (f);
3942 SET_FRAME_GARBAGED (f);
3943 cancel_mouse_face (f);
3948 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3949 in frame F.
3950 TOP/LEFT are the new pixel positions where the bar shall appear.
3951 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3953 void
3954 xg_update_horizontal_scrollbar_pos (struct frame *f,
3955 ptrdiff_t scrollbar_id,
3956 int top,
3957 int left,
3958 int width,
3959 int height)
3962 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3964 if (wscroll)
3966 GtkWidget *wfixed = f->output_data.x->edit_widget;
3967 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3968 gint msl;
3969 int scale = xg_get_scale (f);
3971 top /= scale;
3972 left /= scale;
3973 height /= scale;
3974 width /= scale;
3976 /* Clear out old position. */
3977 int oldx = -1, oldy = -1, oldw, oldh;
3978 if (gtk_widget_get_parent (wparent) == wfixed)
3980 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3981 "x", &oldx, "y", &oldy, NULL);
3982 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3985 /* Move and resize to new values. */
3986 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3987 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3988 if (msl > width)
3990 /* No room. Hide scroll bar as some themes output a warning if
3991 the width is less than the min size. */
3992 gtk_widget_hide (wparent);
3993 gtk_widget_hide (wscroll);
3995 else
3997 gtk_widget_show_all (wparent);
3998 gtk_widget_set_size_request (wscroll, width, height);
4000 if (oldx != -1 && oldw > 0 && oldh > 0)
4001 /* Clear under old scroll bar position. */
4002 x_clear_area (f, oldx, oldy, oldw, oldh);
4004 /* GTK does not redraw until the main loop is entered again, but
4005 if there are no X events pending we will not enter it. So we sync
4006 here to get some events. */
4009 GtkWidget *scrollbar =
4010 xg_get_widget_from_map (scrollbar_id);
4011 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
4013 /* Don't obscure any child frames. */
4014 XLowerWindow (FRAME_X_DISPLAY (f), GTK_WIDGET_TO_X_WIN (webox));
4017 x_sync (f);
4018 SET_FRAME_GARBAGED (f);
4019 cancel_mouse_face (f);
4024 /* Get the current value of the range, truncated to an integer. */
4026 static int
4027 int_gtk_range_get_value (GtkRange *range)
4029 return gtk_range_get_value (range);
4033 /* Set the thumb size and position of scroll bar BAR. We are currently
4034 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4036 void
4037 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
4038 int portion,
4039 int position,
4040 int whole)
4042 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
4044 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4046 if (wscroll && bar->dragging == -1)
4048 GtkAdjustment *adj;
4049 gdouble shown;
4050 gdouble top;
4051 int size, value;
4052 int old_size;
4053 int new_step;
4054 bool changed = 0;
4056 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
4058 if (scroll_bar_adjust_thumb_portion_p)
4060 /* We do the same as for MOTIF in xterm.c, use 30 chars per
4061 line rather than the real portion value. This makes the
4062 thumb less likely to resize and that looks better. */
4063 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4065 /* When the thumb is at the bottom, position == whole.
4066 So we need to increase `whole' to make space for the thumb. */
4067 whole += portion;
4070 if (whole <= 0)
4071 top = 0, shown = 1;
4072 else
4074 top = (gdouble) position / whole;
4075 shown = (gdouble) portion / whole;
4078 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
4079 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
4081 /* Assume all lines are of equal size. */
4082 new_step = size / max (1, FRAME_LINES (f));
4084 old_size = gtk_adjustment_get_page_size (adj);
4085 if (old_size != size)
4087 int old_step = gtk_adjustment_get_step_increment (adj);
4088 if (old_step != new_step)
4090 gtk_adjustment_set_page_size (adj, size);
4091 gtk_adjustment_set_step_increment (adj, new_step);
4092 /* Assume a page increment is about 95% of the page size */
4093 gtk_adjustment_set_page_increment (adj, size - size / 20);
4094 changed = 1;
4098 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
4100 block_input ();
4102 /* gtk_range_set_value invokes the callback. Set
4103 ignore_gtk_scrollbar to make the callback do nothing */
4104 xg_ignore_gtk_scrollbar = 1;
4106 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
4107 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
4108 else if (changed)
4109 gtk_adjustment_changed (adj);
4111 xg_ignore_gtk_scrollbar = 0;
4113 unblock_input ();
4118 /* Set the thumb size and position of horizontal scroll bar BAR. We are
4119 currently displaying PORTION out of a whole WHOLE, and our position
4120 POSITION. */
4121 void
4122 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar *bar,
4123 int portion,
4124 int position,
4125 int whole)
4127 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
4129 if (wscroll && bar->dragging == -1)
4131 GtkAdjustment *adj;
4132 int lower = 0;
4133 int upper = max (whole - 1, 0);
4134 int pagesize = min (upper, max (portion, 0));
4135 int value = max (0, min (position, upper - pagesize));
4136 /* These should be set to something more <portion, whole>
4137 related. */
4138 int page_increment = 4;
4139 int step_increment = 1;
4141 block_input ();
4142 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
4143 gtk_adjustment_configure (adj, (gdouble) value, (gdouble) lower,
4144 (gdouble) upper, (gdouble) step_increment,
4145 (gdouble) page_increment, (gdouble) pagesize);
4146 gtk_adjustment_changed (adj);
4147 unblock_input ();
4151 /* Return true if EVENT is for a scroll bar in frame F.
4152 When the same X window is used for several Gtk+ widgets, we cannot
4153 say for sure based on the X window alone if an event is for the
4154 frame. This function does additional checks. */
4156 bool
4157 xg_event_is_for_scrollbar (struct frame *f, const XEvent *event)
4159 bool retval = 0;
4161 if (f && event->type == ButtonPress && event->xbutton.button < 4)
4163 /* Check if press occurred outside the edit widget. */
4164 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
4165 GdkWindow *gwin;
4166 #ifdef HAVE_GTK3
4167 #if GTK_CHECK_VERSION (3, 20, 0)
4168 GdkDevice *gdev
4169 = gdk_seat_get_pointer (gdk_display_get_default_seat (gdpy));
4170 #else
4171 GdkDevice *gdev = gdk_device_manager_get_client_pointer
4172 (gdk_display_get_device_manager (gdpy));
4173 #endif
4174 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
4175 #else
4176 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
4177 #endif
4178 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
4180 else if (f
4181 && ((event->type == ButtonRelease && event->xbutton.button < 4)
4182 || event->type == MotionNotify))
4184 /* If we are releasing or moving the scroll bar, it has the grab. */
4185 GtkWidget *w = gtk_grab_get_current ();
4186 retval = w != 0 && GTK_IS_SCROLLBAR (w);
4189 return retval;
4193 /***********************************************************************
4194 Printing
4195 ***********************************************************************/
4196 #ifdef USE_CAIRO
4197 static GtkPrintSettings *print_settings = NULL;
4198 static GtkPageSetup *page_setup = NULL;
4200 void
4201 xg_page_setup_dialog (void)
4203 GtkPageSetup *new_page_setup = NULL;
4205 if (print_settings == NULL)
4206 print_settings = gtk_print_settings_new ();
4207 new_page_setup = gtk_print_run_page_setup_dialog (NULL, page_setup,
4208 print_settings);
4209 if (page_setup)
4210 g_object_unref (page_setup);
4211 page_setup = new_page_setup;
4214 Lisp_Object
4215 xg_get_page_setup (void)
4217 Lisp_Object orientation_symbol;
4219 if (page_setup == NULL)
4220 page_setup = gtk_page_setup_new ();
4222 switch (gtk_page_setup_get_orientation (page_setup))
4224 case GTK_PAGE_ORIENTATION_PORTRAIT:
4225 orientation_symbol = Qportrait;
4226 break;
4227 case GTK_PAGE_ORIENTATION_LANDSCAPE:
4228 orientation_symbol = Qlandscape;
4229 break;
4230 case GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT:
4231 orientation_symbol = Qreverse_portrait;
4232 break;
4233 case GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE:
4234 orientation_symbol = Qreverse_landscape;
4235 break;
4236 default:
4237 eassume (false);
4240 return listn (CONSTYPE_HEAP, 7,
4241 Fcons (Qorientation, orientation_symbol),
4242 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4243 Fcons (Qwidth,
4244 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width)),
4245 Fcons (Qheight,
4246 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height)),
4247 Fcons (Qleft_margin,
4248 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin)),
4249 Fcons (Qright_margin,
4250 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin)),
4251 Fcons (Qtop_margin,
4252 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin)),
4253 Fcons (Qbottom_margin,
4254 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin))
4255 #undef MAKE_FLOAT_PAGE_SETUP
4259 static void
4260 draw_page (GtkPrintOperation *operation, GtkPrintContext *context,
4261 gint page_nr, gpointer user_data)
4263 Lisp_Object frames = *((Lisp_Object *) user_data);
4264 struct frame *f = XFRAME (Fnth (make_number (page_nr), frames));
4265 cairo_t *cr = gtk_print_context_get_cairo_context (context);
4267 x_cr_draw_frame (cr, f);
4270 void
4271 xg_print_frames_dialog (Lisp_Object frames)
4273 GtkPrintOperation *print;
4274 GtkPrintOperationResult res;
4276 print = gtk_print_operation_new ();
4277 if (print_settings != NULL)
4278 gtk_print_operation_set_print_settings (print, print_settings);
4279 if (page_setup != NULL)
4280 gtk_print_operation_set_default_page_setup (print, page_setup);
4281 gtk_print_operation_set_n_pages (print, XINT (Flength (frames)));
4282 g_signal_connect (print, "draw-page", G_CALLBACK (draw_page), &frames);
4283 res = gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
4284 NULL, NULL);
4285 if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
4287 if (print_settings != NULL)
4288 g_object_unref (print_settings);
4289 print_settings =
4290 g_object_ref (gtk_print_operation_get_print_settings (print));
4292 g_object_unref (print);
4295 #endif /* USE_CAIRO */
4299 /***********************************************************************
4300 Tool bar functions
4301 ***********************************************************************/
4302 /* The key for the data we put in the GtkImage widgets. The data is
4303 the image used by Emacs. We use this to see if we need to update
4304 the GtkImage with a new image. */
4305 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4307 /* The key for storing the latest modifiers so the activate callback can
4308 get them. */
4309 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4311 /* The key for the data we put in the GtkImage widgets. The data is
4312 the stock name used by Emacs. We use this to see if we need to update
4313 the GtkImage with a new image. */
4314 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4316 /* As above, but this is used for named theme widgets, as opposed to
4317 stock items. */
4318 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4320 /* Callback function invoked when a tool bar item is pressed.
4321 W is the button widget in the tool bar that got pressed,
4322 CLIENT_DATA is an integer that is the index of the button in the
4323 tool bar. 0 is the first button. */
4325 static gboolean
4326 xg_tool_bar_button_cb (GtkWidget *widget,
4327 GdkEventButton *event,
4328 gpointer user_data)
4330 intptr_t state = event->state;
4331 gpointer ptr = (gpointer) state;
4332 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
4333 return FALSE;
4337 /* Callback function invoked when a tool bar item is pressed.
4338 W is the button widget in the tool bar that got pressed,
4339 CLIENT_DATA is an integer that is the index of the button in the
4340 tool bar. 0 is the first button. */
4342 static void
4343 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
4345 intptr_t idx = (intptr_t) client_data;
4346 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
4347 intptr_t mod = (intptr_t) gmod;
4349 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4350 Lisp_Object key, frame;
4351 struct input_event event;
4352 EVENT_INIT (event);
4354 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4355 return;
4357 idx *= TOOL_BAR_ITEM_NSLOTS;
4359 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
4360 XSETFRAME (frame, f);
4362 /* We generate two events here. The first one is to set the prefix
4363 to `(tool_bar)', see keyboard.c. */
4364 event.kind = TOOL_BAR_EVENT;
4365 event.frame_or_window = frame;
4366 event.arg = frame;
4367 kbd_buffer_store_event (&event);
4369 event.kind = TOOL_BAR_EVENT;
4370 event.frame_or_window = frame;
4371 event.arg = key;
4372 /* Convert between the modifier bits GDK uses and the modifier bits
4373 Emacs uses. This assumes GDK and X masks are the same, which they are when
4374 this is written. */
4375 event.modifiers = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), mod);
4376 kbd_buffer_store_event (&event);
4378 /* Return focus to the frame after we have clicked on a detached
4379 tool bar button. */
4380 x_focus_frame (f, false);
4383 static GtkWidget *
4384 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4386 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4387 GtkWidget *c1 = clist->data;
4388 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4390 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4391 g_list_free (clist);
4392 return GTK_IS_LABEL (c1) ? c1 : c2;
4396 /* This callback is called when the mouse enters or leaves a tool bar item.
4397 It is used for displaying and hiding the help text.
4398 W is the tool bar item, a button.
4399 EVENT is either an enter event or leave event.
4400 CLIENT_DATA is an integer that is the index of the button in the
4401 tool bar. 0 is the first button.
4403 Returns FALSE to tell GTK to keep processing this event. */
4405 static gboolean
4406 xg_tool_bar_help_callback (GtkWidget *w,
4407 GdkEventCrossing *event,
4408 gpointer client_data)
4410 intptr_t idx = (intptr_t) client_data;
4411 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4412 Lisp_Object help, frame;
4414 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4415 return FALSE;
4417 if (event->type == GDK_ENTER_NOTIFY)
4419 idx *= TOOL_BAR_ITEM_NSLOTS;
4420 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4422 if (NILP (help))
4423 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4425 else
4426 help = Qnil;
4428 XSETFRAME (frame, f);
4429 kbd_buffer_store_help_event (frame, help);
4431 return FALSE;
4435 /* This callback is called when a tool bar item shall be redrawn.
4436 It modifies the expose event so that the GtkImage widget redraws the
4437 whole image. This to overcome a bug that makes GtkImage draw the image
4438 in the wrong place when it tries to redraw just a part of the image.
4439 W is the GtkImage to be redrawn.
4440 EVENT is the expose event for W.
4441 CLIENT_DATA is unused.
4443 Returns FALSE to tell GTK to keep processing this event. */
4445 #ifndef HAVE_GTK3
4446 static gboolean
4447 xg_tool_bar_item_expose_callback (GtkWidget *w,
4448 GdkEventExpose *event,
4449 gpointer client_data)
4451 gint width, height;
4453 gdk_drawable_get_size (event->window, &width, &height);
4454 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4455 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4457 event->area.x = max (0, event->area.x);
4458 event->area.y = max (0, event->area.y);
4460 event->area.width = max (width, event->area.width);
4461 event->area.height = max (height, event->area.height);
4463 return FALSE;
4465 #endif
4467 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4468 #define toolbar_set_orientation(w, o) \
4469 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4470 #else
4471 #define toolbar_set_orientation(w, o) \
4472 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4473 #endif
4475 /* Attach a tool bar to frame F. */
4477 static void
4478 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4480 struct x_output *x = f->output_data.x;
4481 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4482 GtkWidget *top_widget = x->toolbar_widget;
4484 toolbar_set_orientation (x->toolbar_widget,
4485 into_hbox
4486 ? GTK_ORIENTATION_VERTICAL
4487 : GTK_ORIENTATION_HORIZONTAL);
4489 if (into_hbox)
4491 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4492 FALSE, FALSE, 0);
4494 if (EQ (pos, Qleft))
4495 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4496 top_widget,
4498 x->toolbar_in_hbox = true;
4500 else
4502 bool vbox_pos = x->menubar_widget != 0;
4503 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4504 FALSE, FALSE, 0);
4506 if (EQ (pos, Qtop))
4507 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4508 top_widget,
4509 vbox_pos);
4510 x->toolbar_in_hbox = false;
4512 x->toolbar_is_packed = true;
4515 static bool xg_update_tool_bar_sizes (struct frame *f);
4517 static void
4518 tb_size_cb (GtkWidget *widget,
4519 GdkRectangle *allocation,
4520 gpointer user_data)
4522 /* When tool bar is created it has one preferred size. But when size is
4523 allocated between widgets, it may get another. So we must update
4524 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4525 struct frame *f = user_data;
4527 if (xg_update_tool_bar_sizes (f))
4529 frame_size_history_add (f, Qtb_size_cb, 0, 0, Qnil);
4530 adjust_frame_size (f, -1, -1, 5, 0, Qtool_bar_lines);
4534 /* Create a tool bar for frame F. */
4536 static void
4537 xg_create_tool_bar (struct frame *f)
4539 struct x_output *x = f->output_data.x;
4540 #if GTK_CHECK_VERSION (3, 3, 6)
4541 GtkStyleContext *gsty;
4542 #endif
4543 struct xg_frame_tb_info *tbinfo
4544 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4545 TB_INFO_KEY);
4546 if (! tbinfo)
4548 tbinfo = xmalloc (sizeof (*tbinfo));
4549 tbinfo->last_tool_bar = Qnil;
4550 tbinfo->style = Qnil;
4551 tbinfo->hmargin = tbinfo->vmargin = 0;
4552 tbinfo->dir = GTK_TEXT_DIR_NONE;
4553 tbinfo->n_last_items = 0;
4554 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4555 TB_INFO_KEY,
4556 tbinfo);
4559 x->toolbar_widget = gtk_toolbar_new ();
4561 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4563 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4564 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4565 g_signal_connect (x->toolbar_widget, "size-allocate",
4566 G_CALLBACK (tb_size_cb), f);
4567 #if GTK_CHECK_VERSION (3, 3, 6)
4568 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4569 gtk_style_context_add_class (gsty, "primary-toolbar");
4570 #endif
4574 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4576 /* Find the right-to-left image named by RTL in the tool bar images for F.
4577 Returns IMAGE if RTL is not found. */
4579 static Lisp_Object
4580 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4582 int i;
4583 Lisp_Object file, rtl_name;
4585 rtl_name = Ffile_name_nondirectory (rtl);
4587 for (i = 0; i < f->n_tool_bar_items; ++i)
4589 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4590 if (!NILP (file = file_for_image (rtl_image)))
4592 file = call1 (intern ("file-name-sans-extension"),
4593 Ffile_name_nondirectory (file));
4594 if (! NILP (Fequal (file, rtl_name)))
4596 image = rtl_image;
4597 break;
4602 return image;
4605 static GtkToolItem *
4606 xg_make_tool_item (struct frame *f,
4607 GtkWidget *wimage,
4608 GtkWidget **wbutton,
4609 const char *label,
4610 int i, bool horiz, bool text_image)
4612 GtkToolItem *ti = gtk_tool_item_new ();
4613 GtkWidget *vb = gtk_box_new (horiz
4614 ? GTK_ORIENTATION_HORIZONTAL
4615 : GTK_ORIENTATION_VERTICAL,
4617 GtkWidget *wb = gtk_button_new ();
4618 /* The eventbox is here so we can have tooltips on disabled items. */
4619 GtkWidget *weventbox = gtk_event_box_new ();
4620 #if GTK_CHECK_VERSION (3, 3, 6)
4621 GtkCssProvider *css_prov = gtk_css_provider_new ();
4622 GtkStyleContext *gsty;
4624 gtk_css_provider_load_from_data (css_prov,
4625 "GtkEventBox {"
4626 " background-color: transparent;"
4627 "}",
4628 -1, NULL);
4630 gsty = gtk_widget_get_style_context (weventbox);
4631 gtk_style_context_add_provider (gsty,
4632 GTK_STYLE_PROVIDER (css_prov),
4633 GTK_STYLE_PROVIDER_PRIORITY_USER);
4634 g_object_unref (css_prov);
4635 #endif
4637 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4639 if (wimage && !text_image)
4640 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4641 if (label)
4642 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4643 if (wimage && text_image)
4644 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4646 #if GTK_CHECK_VERSION (3, 20, 0)
4647 gtk_widget_set_focus_on_click (wb, FALSE);
4648 #else
4649 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4650 #endif
4651 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4652 gtk_container_add (GTK_CONTAINER (wb), vb);
4653 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4654 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4656 if (wimage || label)
4658 intptr_t ii = i;
4659 gpointer gi = (gpointer) ii;
4661 g_signal_connect (G_OBJECT (wb), "clicked",
4662 G_CALLBACK (xg_tool_bar_callback),
4663 gi);
4665 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4667 #ifndef HAVE_GTK3
4668 /* Catch expose events to overcome an annoying redraw bug, see
4669 comment for xg_tool_bar_item_expose_callback. */
4670 g_signal_connect (G_OBJECT (ti),
4671 "expose-event",
4672 G_CALLBACK (xg_tool_bar_item_expose_callback),
4674 #endif
4675 gtk_tool_item_set_homogeneous (ti, FALSE);
4677 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4678 no distinction based on modifiers in the activate callback,
4679 so we have to do it ourselves. */
4680 g_signal_connect (wb, "button-release-event",
4681 G_CALLBACK (xg_tool_bar_button_cb),
4682 NULL);
4684 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4686 /* Use enter/leave notify to show help. We use the events
4687 rather than the GtkButton specific signals "enter" and
4688 "leave", so we can have only one callback. The event
4689 will tell us what kind of event it is. */
4690 g_signal_connect (G_OBJECT (weventbox),
4691 "enter-notify-event",
4692 G_CALLBACK (xg_tool_bar_help_callback),
4693 gi);
4694 g_signal_connect (G_OBJECT (weventbox),
4695 "leave-notify-event",
4696 G_CALLBACK (xg_tool_bar_help_callback),
4697 gi);
4700 if (wbutton) *wbutton = wb;
4702 return ti;
4705 static bool
4706 is_box_type (GtkWidget *vb, bool is_horizontal)
4708 #ifdef HAVE_GTK3
4709 bool ret = 0;
4710 if (GTK_IS_BOX (vb))
4712 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4713 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4714 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4716 return ret;
4717 #else
4718 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4719 #endif
4723 static bool
4724 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4725 const char *icon_name, const struct image *img,
4726 const char *label, bool horiz)
4728 gpointer old;
4729 GtkWidget *wimage;
4730 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4731 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4733 /* Check if the tool icon matches. */
4734 if (stock_name && wimage)
4736 old = g_object_get_data (G_OBJECT (wimage),
4737 XG_TOOL_BAR_STOCK_NAME);
4738 if (!old || strcmp (old, stock_name))
4739 return 1;
4741 else if (icon_name && wimage)
4743 old = g_object_get_data (G_OBJECT (wimage),
4744 XG_TOOL_BAR_ICON_NAME);
4745 if (!old || strcmp (old, icon_name))
4746 return 1;
4748 else if (wimage)
4750 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4751 XG_TOOL_BAR_IMAGE_DATA);
4752 Pixmap old_img = (Pixmap) gold_img;
4753 if (old_img != img->pixmap)
4754 return 1;
4757 /* Check button configuration and label. */
4758 if (is_box_type (vb, horiz)
4759 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4760 return 1;
4762 /* Ensure label is correct. */
4763 if (label && wlbl)
4764 gtk_label_set_text (GTK_LABEL (wlbl), label);
4765 return 0;
4768 static bool
4769 xg_update_tool_bar_sizes (struct frame *f)
4771 struct x_output *x = f->output_data.x;
4772 GtkRequisition req;
4773 int nl = 0, nr = 0, nt = 0, nb = 0;
4774 GtkWidget *top_widget = x->toolbar_widget;
4776 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4777 if (x->toolbar_in_hbox)
4779 int pos;
4780 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4781 top_widget,
4782 "position", &pos, NULL);
4783 if (pos == 0) nl = req.width;
4784 else nr = req.width;
4786 else
4788 int pos;
4789 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4790 top_widget,
4791 "position", &pos, NULL);
4792 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4793 else nb = req.height;
4796 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4797 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4798 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4799 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4801 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4802 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4803 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4804 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4805 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4806 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4808 return true;
4810 else
4811 return false;
4814 static char *
4815 find_icon_from_name (char *name,
4816 GtkIconTheme *icon_theme,
4817 char **icon_name)
4819 #if ! GTK_CHECK_VERSION (3, 10, 0)
4820 GtkStockItem stock_item;
4821 #endif
4823 if (name[0] == 'n' && name[1] == ':')
4825 *icon_name = name + 2;
4826 name = NULL;
4828 if (! gtk_icon_theme_has_icon (icon_theme, *icon_name))
4829 *icon_name = NULL;
4832 #if ! GTK_CHECK_VERSION (3, 10, 0)
4833 else if (gtk_stock_lookup (name, &stock_item))
4834 *icon_name = NULL;
4835 #endif
4836 else if (gtk_icon_theme_has_icon (icon_theme, name))
4838 *icon_name = name;
4839 name = NULL;
4841 else
4843 name = NULL;
4844 *icon_name = NULL;
4847 return name;
4851 /* Update the tool bar for frame F. Add new buttons and remove old. */
4853 void
4854 update_frame_tool_bar (struct frame *f)
4856 int i, j;
4857 struct x_output *x = f->output_data.x;
4858 int hmargin = 0, vmargin = 0;
4859 GtkToolbar *wtoolbar;
4860 GtkToolItem *ti;
4861 GtkTextDirection dir;
4862 Lisp_Object style;
4863 bool text_image, horiz;
4864 struct xg_frame_tb_info *tbinfo;
4865 GdkScreen *screen;
4866 GtkIconTheme *icon_theme;
4869 if (! FRAME_GTK_WIDGET (f))
4870 return;
4872 block_input ();
4874 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4876 hmargin = XFASTINT (Vtool_bar_button_margin);
4877 vmargin = XFASTINT (Vtool_bar_button_margin);
4879 else if (CONSP (Vtool_bar_button_margin))
4881 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4882 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4884 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4885 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4888 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4889 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4890 i.e. zero. This means that margins less than
4891 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4892 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4893 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4895 if (! x->toolbar_widget)
4896 xg_create_tool_bar (f);
4898 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4899 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4901 style = Ftool_bar_get_system_style ();
4902 screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4903 icon_theme = gtk_icon_theme_get_for_screen (screen);
4905 /* Are we up to date? */
4906 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4907 TB_INFO_KEY);
4909 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4910 && tbinfo->n_last_items == f->n_tool_bar_items
4911 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4912 && tbinfo->dir == dir
4913 && ! NILP (Fequal (tbinfo->style, style))
4914 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4916 unblock_input ();
4917 return;
4920 tbinfo->last_tool_bar = f->tool_bar_items;
4921 tbinfo->n_last_items = f->n_tool_bar_items;
4922 tbinfo->style = style;
4923 tbinfo->hmargin = hmargin;
4924 tbinfo->vmargin = vmargin;
4925 tbinfo->dir = dir;
4927 text_image = EQ (style, Qtext_image_horiz);
4928 horiz = EQ (style, Qboth_horiz) || text_image;
4930 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4932 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4933 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4934 int idx;
4935 ptrdiff_t img_id;
4936 int icon_size = 0;
4937 struct image *img = NULL;
4938 Lisp_Object image;
4939 Lisp_Object stock = Qnil;
4940 char *stock_name = NULL;
4941 char *icon_name = NULL;
4942 Lisp_Object rtl;
4943 GtkWidget *wbutton = NULL;
4944 Lisp_Object specified_file;
4945 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4946 const char *label
4947 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4948 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4949 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4950 : "";
4952 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4954 /* If this is a separator, use a gtk separator item. */
4955 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4957 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4959 if (ti)
4960 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4961 GTK_WIDGET (ti));
4962 ti = gtk_separator_tool_item_new ();
4963 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4965 j++;
4966 continue;
4969 /* Otherwise, the tool-bar item is an ordinary button. */
4971 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4973 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4974 ti = NULL;
4977 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4979 /* Ignore invalid image specifications. */
4980 image = PROP (TOOL_BAR_ITEM_IMAGES);
4981 if (!valid_image_p (image))
4983 if (ti)
4984 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4985 GTK_WIDGET (ti));
4986 continue;
4989 specified_file = file_for_image (image);
4990 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4991 stock = call1 (Qx_gtk_map_stock, specified_file);
4993 if (CONSP (stock))
4995 Lisp_Object tem;
4996 for (tem = stock; CONSP (tem); tem = XCDR (tem))
4997 if (! NILP (tem) && STRINGP (XCAR (tem)))
4999 stock_name = find_icon_from_name (SSDATA (XCAR (tem)),
5000 icon_theme,
5001 &icon_name);
5002 if (stock_name || icon_name) break;
5005 else if (STRINGP (stock))
5007 stock_name = find_icon_from_name (SSDATA (stock),
5008 icon_theme,
5009 &icon_name);
5012 if (stock_name || icon_name)
5013 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
5015 if (stock_name == NULL && icon_name == NULL)
5017 /* No stock image, or stock item not known. Try regular
5018 image. If image is a vector, choose it according to the
5019 button state. */
5020 if (dir == GTK_TEXT_DIR_RTL
5021 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
5022 && STRINGP (rtl))
5023 image = find_rtl_image (f, image, rtl);
5025 if (VECTORP (image))
5027 if (enabled_p)
5028 idx = (selected_p
5029 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
5030 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
5031 else
5032 idx = (selected_p
5033 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
5034 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
5036 eassert (ASIZE (image) >= idx);
5037 image = AREF (image, idx);
5039 else
5040 idx = -1;
5042 img_id = lookup_image (f, image);
5043 img = IMAGE_FROM_ID (f, img_id);
5044 prepare_image_for_display (f, img);
5046 if (img->load_failed_p || img->pixmap == None)
5048 if (ti)
5049 gtk_container_remove (GTK_CONTAINER (wtoolbar),
5050 GTK_WIDGET (ti));
5051 continue;
5055 /* If there is an existing widget, check if it's stale; if so,
5056 remove it and make a new tool item from scratch. */
5057 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
5058 img, label, horiz))
5060 gtk_container_remove (GTK_CONTAINER (wtoolbar),
5061 GTK_WIDGET (ti));
5062 ti = NULL;
5065 if (ti == NULL)
5067 GtkWidget *w;
5069 /* Save the image so we can see if an update is needed the
5070 next time we call xg_tool_item_match_p. */
5071 if (EQ (style, Qtext))
5072 w = NULL;
5073 else if (stock_name)
5076 #if GTK_CHECK_VERSION (3, 10, 0)
5077 w = gtk_image_new_from_icon_name (stock_name, icon_size);
5078 #else
5079 w = gtk_image_new_from_stock (stock_name, icon_size);
5080 #endif
5081 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
5082 (gpointer) xstrdup (stock_name),
5083 (GDestroyNotify) xfree);
5085 else if (icon_name)
5087 w = gtk_image_new_from_icon_name (icon_name, icon_size);
5088 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
5089 (gpointer) xstrdup (icon_name),
5090 (GDestroyNotify) xfree);
5092 else
5094 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
5095 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
5096 (gpointer)img->pixmap);
5099 #if GTK_CHECK_VERSION (3, 14, 0)
5100 if (w)
5102 gtk_widget_set_margin_start (w, hmargin);
5103 gtk_widget_set_margin_end (w, hmargin);
5104 gtk_widget_set_margin_top (w, vmargin);
5105 gtk_widget_set_margin_bottom (w, vmargin);
5107 #else
5108 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
5109 #endif
5110 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
5111 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
5114 #undef PROP
5116 gtk_widget_set_sensitive (wbutton, enabled_p);
5117 j++;
5120 /* Remove buttons not longer needed. */
5123 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
5124 if (ti)
5125 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
5126 } while (ti != NULL);
5128 if (f->n_tool_bar_items != 0)
5130 if (! x->toolbar_is_packed)
5131 xg_pack_tool_bar (f, FRAME_TOOL_BAR_POSITION (f));
5132 gtk_widget_show_all (x->toolbar_widget);
5133 if (xg_update_tool_bar_sizes (f))
5135 int inhibit
5136 = ((f->after_make_frame
5137 && !f->tool_bar_resized
5138 && (EQ (frame_inhibit_implied_resize, Qt)
5139 || (CONSP (frame_inhibit_implied_resize)
5140 && !NILP (Fmemq (Qtool_bar_lines,
5141 frame_inhibit_implied_resize))))
5142 /* This will probably fail to DTRT in the
5143 fullheight/-width cases. */
5144 && NILP (get_frame_param (f, Qfullscreen)))
5146 : 2);
5148 frame_size_history_add (f, Qupdate_frame_tool_bar, 0, 0, Qnil);
5149 adjust_frame_size (f, -1, -1, inhibit, 0, Qtool_bar_lines);
5151 f->tool_bar_resized = f->tool_bar_redisplayed;
5154 unblock_input ();
5157 /* Deallocate all resources for the tool bar on frame F.
5158 Remove the tool bar. */
5160 void
5161 free_frame_tool_bar (struct frame *f)
5163 struct x_output *x = f->output_data.x;
5165 if (x->toolbar_widget)
5167 struct xg_frame_tb_info *tbinfo;
5168 GtkWidget *top_widget = x->toolbar_widget;
5170 block_input ();
5171 if (x->toolbar_is_packed)
5173 if (x->toolbar_in_hbox)
5174 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5175 top_widget);
5176 else
5177 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5178 top_widget);
5180 else
5181 gtk_widget_destroy (x->toolbar_widget);
5183 x->toolbar_widget = 0;
5184 x->toolbar_widget = 0;
5185 x->toolbar_is_packed = false;
5186 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
5187 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
5189 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5190 TB_INFO_KEY);
5191 if (tbinfo)
5193 xfree (tbinfo);
5194 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5195 TB_INFO_KEY,
5196 NULL);
5199 frame_size_history_add (f, Qfree_frame_tool_bar, 0, 0, Qnil);
5200 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5202 unblock_input ();
5206 void
5207 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
5209 struct x_output *x = f->output_data.x;
5210 GtkWidget *top_widget = x->toolbar_widget;
5212 if (! x->toolbar_widget || ! top_widget)
5213 return;
5215 block_input ();
5216 g_object_ref (top_widget);
5217 if (x->toolbar_is_packed)
5219 if (x->toolbar_in_hbox)
5220 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5221 top_widget);
5222 else
5223 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5224 top_widget);
5227 xg_pack_tool_bar (f, pos);
5228 g_object_unref (top_widget);
5230 if (xg_update_tool_bar_sizes (f))
5232 frame_size_history_add (f, Qxg_change_toolbar_position, 0, 0, Qnil);
5233 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5237 unblock_input ();
5242 /***********************************************************************
5243 Initializing
5244 ***********************************************************************/
5245 void
5246 xg_initialize (void)
5248 GtkBindingSet *binding_set;
5249 GtkSettings *settings;
5251 #if HAVE_XFT
5252 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5253 we keep it permanently linked in. */
5254 XftInit (0);
5255 #endif
5257 gdpy_def = NULL;
5258 xg_ignore_gtk_scrollbar = 0;
5259 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5260 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5262 id_to_widget.max_size = id_to_widget.used = 0;
5263 id_to_widget.widgets = 0;
5265 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5266 (gdk_display_get_default ()));
5267 #if ! GTK_CHECK_VERSION (3, 10, 0)
5268 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5269 bindings. It doesn't seem to be any way to remove properties,
5270 so we set it to "" which in means "no key". */
5271 gtk_settings_set_string_property (settings,
5272 "gtk-menu-bar-accel",
5274 EMACS_CLASS);
5275 #endif
5277 /* Make GTK text input widgets use Emacs style keybindings. This is
5278 Emacs after all. */
5279 #if GTK_CHECK_VERSION (3, 16, 0)
5280 g_object_set (settings, "gtk-key-theme-name", "Emacs", NULL);
5281 #else
5282 gtk_settings_set_string_property (settings,
5283 "gtk-key-theme-name",
5284 "Emacs",
5285 EMACS_CLASS);
5286 #endif
5288 /* Make dialogs close on C-g. Since file dialog inherits from
5289 dialog, this works for them also. */
5290 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
5291 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5292 "close", 0);
5294 /* Make menus close on C-g. */
5295 binding_set = gtk_binding_set_by_class (g_type_class_ref
5296 (GTK_TYPE_MENU_SHELL));
5297 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5298 "cancel", 0);
5299 update_theme_scrollbar_width ();
5300 update_theme_scrollbar_height ();
5302 #ifdef HAVE_FREETYPE
5303 x_last_font_name = NULL;
5304 #endif
5307 #endif /* USE_GTK */