Avoid losing Ctrl-C keystrokes in compilation mode on MS-Windows
[emacs.git] / src / gtkutil.c
bloba2e322b1daca0bc51c1a140ec658a056e4aff21e
1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2017 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 <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #ifdef USE_GTK
23 #include <float.h>
24 #include <stdio.h>
26 #include <c-ctype.h>
28 #include "lisp.h"
29 #include "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
580 gtk_style_context_get_background_color (gsty, state, &col);
582 unsigned short
583 r = col.red * 65535,
584 g = col.green * 65535,
585 b = col.blue * 65535;
586 sprintf (buf, "rgb:%04x/%04x/%04x", r, g, b);
587 success_p = x_parse_color (f, buf, color) != 0;
588 #else
589 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
590 GdkColor *grgb = get_bg
591 ? &gsty->bg[GTK_STATE_SELECTED]
592 : &gsty->fg[GTK_STATE_SELECTED];
594 color->red = grgb->red;
595 color->green = grgb->green;
596 color->blue = grgb->blue;
597 color->pixel = grgb->pixel;
598 success_p = 1;
599 #endif
602 unblock_input ();
603 return success_p;
608 /***********************************************************************
609 Tooltips
610 ***********************************************************************/
611 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
612 We use that to pop down the tooltip. This happens if Gtk+ for some
613 reason wants to change or hide the tooltip. */
615 #ifdef USE_GTK_TOOLTIP
617 static void
618 hierarchy_ch_cb (GtkWidget *widget,
619 GtkWidget *previous_toplevel,
620 gpointer user_data)
622 struct frame *f = user_data;
623 struct x_output *x = f->output_data.x;
624 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
626 if (! top || ! GTK_IS_WINDOW (top))
627 gtk_widget_hide (previous_toplevel);
630 /* Callback called when Gtk+ thinks a tooltip should be displayed.
631 We use it to get the tooltip window and the tooltip widget so
632 we can manipulate the ourselves.
634 Return FALSE ensures that the tooltip is not shown. */
636 static gboolean
637 qttip_cb (GtkWidget *widget,
638 gint xpos,
639 gint ypos,
640 gboolean keyboard_mode,
641 GtkTooltip *tooltip,
642 gpointer user_data)
644 struct frame *f = user_data;
645 struct x_output *x = f->output_data.x;
646 if (x->ttip_widget == NULL)
648 GtkWidget *p;
649 GList *list, *iter;
651 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
652 x->ttip_widget = tooltip;
653 g_object_ref (G_OBJECT (tooltip));
654 x->ttip_lbl = gtk_label_new ("");
655 g_object_ref (G_OBJECT (x->ttip_lbl));
656 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
657 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
659 /* Change stupid Gtk+ default line wrapping. */
660 p = gtk_widget_get_parent (x->ttip_lbl);
661 list = gtk_container_get_children (GTK_CONTAINER (p));
662 for (iter = list; iter; iter = g_list_next (iter))
664 GtkWidget *w = GTK_WIDGET (iter->data);
665 if (GTK_IS_LABEL (w))
666 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
668 g_list_free (list);
670 /* ATK needs an empty title for some reason. */
671 gtk_window_set_title (x->ttip_window, "");
672 /* Realize so we can safely get screen later on. */
673 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
674 gtk_widget_realize (x->ttip_lbl);
676 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
677 G_CALLBACK (hierarchy_ch_cb), f);
679 return FALSE;
682 #endif /* USE_GTK_TOOLTIP */
684 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
685 Return true if a system tooltip is available. */
687 bool
688 xg_prepare_tooltip (struct frame *f,
689 Lisp_Object string,
690 int *width,
691 int *height)
693 #ifndef USE_GTK_TOOLTIP
694 return 0;
695 #else
696 struct x_output *x = f->output_data.x;
697 GtkWidget *widget;
698 GdkWindow *gwin;
699 GdkScreen *screen;
700 GtkSettings *settings;
701 gboolean tt_enabled = TRUE;
702 GtkRequisition req;
703 Lisp_Object encoded_string;
705 if (!x->ttip_lbl) return 0;
707 block_input ();
708 encoded_string = ENCODE_UTF_8 (string);
709 widget = GTK_WIDGET (x->ttip_lbl);
710 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
711 screen = gdk_window_get_screen (gwin);
712 settings = gtk_settings_get_for_screen (screen);
713 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
714 if (tt_enabled)
716 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
717 /* Record that we disabled it so it can be enabled again. */
718 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
719 (gpointer)f);
722 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
723 g_object_set_data (G_OBJECT
724 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
725 "gdk-display-current-tooltip", NULL);
727 /* Put our dummy widget in so we can get callbacks for unrealize and
728 hierarchy-changed. */
729 gtk_tooltip_set_custom (x->ttip_widget, widget);
730 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
731 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
732 if (width) *width = req.width;
733 if (height) *height = req.height;
735 unblock_input ();
737 return 1;
738 #endif /* USE_GTK_TOOLTIP */
741 /* Show the tooltip at ROOT_X and ROOT_Y.
742 xg_prepare_tooltip must have been called before this function. */
744 void
745 xg_show_tooltip (struct frame *f, int root_x, int root_y)
747 #ifdef USE_GTK_TOOLTIP
748 struct x_output *x = f->output_data.x;
749 if (x->ttip_window)
751 block_input ();
752 gtk_window_move (x->ttip_window, root_x / xg_get_scale (f),
753 root_y / xg_get_scale (f));
754 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
755 unblock_input ();
757 #endif
760 /* Hide tooltip if shown. Do nothing if not shown.
761 Return true if tip was hidden, false if not (i.e. not using
762 system tooltips). */
764 bool
765 xg_hide_tooltip (struct frame *f)
767 bool ret = 0;
768 #ifdef USE_GTK_TOOLTIP
769 if (f->output_data.x->ttip_window)
771 GtkWindow *win = f->output_data.x->ttip_window;
772 block_input ();
773 gtk_widget_hide (GTK_WIDGET (win));
775 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
777 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
778 GdkScreen *screen = gdk_window_get_screen (gwin);
779 GtkSettings *settings = gtk_settings_get_for_screen (screen);
780 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
782 unblock_input ();
784 ret = 1;
786 #endif
787 return ret;
791 /***********************************************************************
792 General functions for creating widgets, resizing, events, e.t.c.
793 ***********************************************************************/
795 #if ! GTK_CHECK_VERSION (3, 22, 0)
796 static void
797 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
798 const gchar *msg, gpointer user_data)
800 if (!strstr (msg, "visible children"))
801 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
803 #endif
805 /* Make a geometry string and pass that to GTK. It seems this is the
806 only way to get geometry position right if the user explicitly
807 asked for a position when starting Emacs.
808 F is the frame we shall set geometry for. */
810 static void
811 xg_set_geometry (struct frame *f)
813 if (f->size_hint_flags & (USPosition | PPosition))
815 #if ! GTK_CHECK_VERSION (3, 22, 0)
816 if (x_gtk_use_window_move)
818 #endif
819 /* Handle negative positions without consulting
820 gtk_window_parse_geometry (Bug#25851). The position will
821 be off by scrollbar width + window manager decorations. */
822 if (f->size_hint_flags & XNegative)
823 f->left_pos = (x_display_pixel_width (FRAME_DISPLAY_INFO (f))
824 - FRAME_PIXEL_WIDTH (f) + f->left_pos);
826 if (f->size_hint_flags & YNegative)
827 f->top_pos = (x_display_pixel_height (FRAME_DISPLAY_INFO (f))
828 - FRAME_PIXEL_HEIGHT (f) + f->top_pos);
830 gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
831 f->left_pos, f->top_pos);
833 /* Reset size hint flags. */
834 f->size_hint_flags &= ~ (XNegative | YNegative);
835 # if ! GTK_CHECK_VERSION (3, 22, 0)
837 else
839 int left = f->left_pos;
840 int xneg = f->size_hint_flags & XNegative;
841 int top = f->top_pos;
842 int yneg = f->size_hint_flags & YNegative;
843 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
844 guint id;
846 if (xneg)
847 left = -left;
848 if (yneg)
849 top = -top;
851 sprintf (geom_str, "=%dx%d%c%d%c%d",
852 FRAME_PIXEL_WIDTH (f),
853 FRAME_PIXEL_HEIGHT (f),
854 (xneg ? '-' : '+'), left,
855 (yneg ? '-' : '+'), top);
857 /* Silence warning about visible children. */
858 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
859 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
861 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
862 geom_str))
863 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
865 g_log_remove_handler ("Gtk", id);
867 #endif
871 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
872 and a Gtk+ menu bar, we get resize events for the edit part of the
873 frame only. We let Gtk+ deal with the Gtk+ parts.
874 F is the frame to resize.
875 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
877 void
878 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
880 int width, height;
882 if (pixelwidth == -1 && pixelheight == -1)
884 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
885 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
886 0, 0, &pixelwidth, &pixelheight);
887 else
888 return;
891 width = FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth);
892 height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight);
894 frame_size_history_add
895 (f, Qxg_frame_resized, width, height, Qnil);
897 if (width != FRAME_TEXT_WIDTH (f)
898 || height != FRAME_TEXT_HEIGHT (f)
899 || pixelwidth != FRAME_PIXEL_WIDTH (f)
900 || pixelheight != FRAME_PIXEL_HEIGHT (f))
902 x_clear_under_internal_border (f);
903 change_frame_size (f, width, height, 0, 1, 0, 1);
904 SET_FRAME_GARBAGED (f);
905 cancel_mouse_face (f);
909 /* Resize the outer window of frame F after changing the height.
910 COLUMNS/ROWS is the size the edit area shall have after the resize. */
912 void
913 xg_frame_set_char_size (struct frame *f, int width, int height)
915 int pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
916 int pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
917 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
918 gint gwidth, gheight;
919 int totalheight
920 = pixelheight + FRAME_TOOLBAR_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f);
921 int totalwidth = pixelwidth + FRAME_TOOLBAR_WIDTH (f);
923 if (FRAME_PIXEL_HEIGHT (f) == 0)
924 return;
926 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
927 &gwidth, &gheight);
929 /* Do this before resize, as we don't know yet if we will be resized. */
930 x_clear_under_internal_border (f);
932 totalheight /= xg_get_scale (f);
933 totalwidth /= xg_get_scale (f);
935 x_wm_set_size_hint (f, 0, 0);
937 /* Resize the top level widget so rows and columns remain constant.
939 When the frame is fullheight and we only want to change the width
940 or it is fullwidth and we only want to change the height we should
941 be able to preserve the fullscreen property. However, due to the
942 fact that we have to send a resize request anyway, the window
943 manager will abolish it. At least the respective size should
944 remain unchanged but giving the frame back its normal size will
945 be broken ... */
946 if (EQ (fullscreen, Qfullwidth) && width == FRAME_TEXT_WIDTH (f))
948 frame_size_history_add
949 (f, Qxg_frame_set_char_size_1, width, height,
950 list2 (make_number (gheight), make_number (totalheight)));
952 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
953 gwidth, totalheight);
955 else if (EQ (fullscreen, Qfullheight) && height == FRAME_TEXT_HEIGHT (f))
957 frame_size_history_add
958 (f, Qxg_frame_set_char_size_2, width, height,
959 list2 (make_number (gwidth), make_number (totalwidth)));
961 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
962 totalwidth, gheight);
964 else
966 frame_size_history_add
967 (f, Qxg_frame_set_char_size_3, width, height,
968 list2 (make_number (totalwidth), make_number (totalheight)));
970 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
971 totalwidth, totalheight);
972 fullscreen = Qnil;
975 SET_FRAME_GARBAGED (f);
976 cancel_mouse_face (f);
978 /* We can not call change_frame_size for a mapped frame,
979 we can not set pixel width/height either. The window manager may
980 override our resize request, XMonad does this all the time.
981 The best we can do is try to sync, so lisp code sees the updated
982 size as fast as possible.
983 For unmapped windows, we can set rows/cols. When
984 the frame is mapped again we will (hopefully) get the correct size. */
985 if (FRAME_VISIBLE_P (f))
987 /* Must call this to flush out events */
988 (void)gtk_events_pending ();
989 gdk_flush ();
990 x_wait_for_event (f, ConfigureNotify);
992 if (!NILP (fullscreen))
993 /* Try to restore fullscreen state. */
995 store_frame_param (f, Qfullscreen, fullscreen);
996 x_set_fullscreen (f, fullscreen, fullscreen);
999 else
1000 adjust_frame_size (f, width, height, 5, 0, Qxg_frame_set_char_size);
1004 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
1005 The policy is to keep the number of editable lines. */
1007 #if 0
1008 static void
1009 xg_height_or_width_changed (struct frame *f)
1011 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1012 FRAME_TOTAL_PIXEL_WIDTH (f),
1013 FRAME_TOTAL_PIXEL_HEIGHT (f));
1014 f->output_data.x->hint_flags = 0;
1015 x_wm_set_size_hint (f, 0, 0);
1017 #endif
1019 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1020 Must be done like this, because GtkWidget:s can have "hidden"
1021 X Window that aren't accessible.
1023 Return 0 if no widget match WDESC. */
1025 GtkWidget *
1026 xg_win_to_widget (Display *dpy, Window wdesc)
1028 gpointer gdkwin;
1029 GtkWidget *gwdesc = 0;
1031 block_input ();
1033 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1034 wdesc);
1035 if (gdkwin)
1037 GdkEvent event;
1038 event.any.window = gdkwin;
1039 event.any.type = GDK_NOTHING;
1040 gwdesc = gtk_get_event_widget (&event);
1043 unblock_input ();
1044 return gwdesc;
1047 /* Set the background of widget W to PIXEL. */
1049 static void
1050 xg_set_widget_bg (struct frame *f, GtkWidget *w, unsigned long pixel)
1052 #ifdef HAVE_GTK3
1053 GdkRGBA bg;
1054 XColor xbg;
1055 xbg.pixel = pixel;
1056 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1058 bg.red = (double)xbg.red/65535.0;
1059 bg.green = (double)xbg.green/65535.0;
1060 bg.blue = (double)xbg.blue/65535.0;
1061 bg.alpha = 1.0;
1062 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1064 #else
1065 GdkColor bg;
1066 GdkColormap *map = gtk_widget_get_colormap (w);
1067 gdk_colormap_query_color (map, pixel, &bg);
1068 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1069 #endif
1072 /* Callback called when the gtk theme changes.
1073 We notify lisp code so it can fix faces used for region for example. */
1075 static void
1076 style_changed_cb (GObject *go,
1077 GParamSpec *spec,
1078 gpointer user_data)
1080 struct input_event event;
1081 GdkDisplay *gdpy = user_data;
1082 const char *display_name = gdk_display_get_name (gdpy);
1083 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1085 EVENT_INIT (event);
1086 event.kind = CONFIG_CHANGED_EVENT;
1087 event.frame_or_window = build_string (display_name);
1088 /* Theme doesn't change often, so intern is called seldom. */
1089 event.arg = intern ("theme-name");
1090 kbd_buffer_store_event (&event);
1092 update_theme_scrollbar_width ();
1093 update_theme_scrollbar_height ();
1095 /* If scroll bar width changed, we need set the new size on all frames
1096 on this display. */
1097 if (dpy)
1099 Lisp_Object rest, frame;
1100 FOR_EACH_FRAME (rest, frame)
1102 struct frame *f = XFRAME (frame);
1103 if (FRAME_LIVE_P (f)
1104 && FRAME_X_P (f)
1105 && FRAME_X_DISPLAY (f) == dpy)
1107 x_set_scroll_bar_default_width (f);
1108 x_set_scroll_bar_default_height (f);
1109 xg_frame_set_char_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f));
1115 /* Called when a delete-event occurs on WIDGET. */
1117 static gboolean
1118 delete_cb (GtkWidget *widget,
1119 GdkEvent *event,
1120 gpointer user_data)
1122 return TRUE;
1125 /* Create and set up the GTK widgets for frame F.
1126 Return true if creation succeeded. */
1128 bool
1129 xg_create_frame_widgets (struct frame *f)
1131 GtkWidget *wtop;
1132 GtkWidget *wvbox, *whbox;
1133 GtkWidget *wfixed;
1134 #ifndef HAVE_GTK3
1135 GtkRcStyle *style;
1136 #endif
1137 char *title = 0;
1139 block_input ();
1141 if (FRAME_X_EMBEDDED_P (f))
1143 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1144 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1146 else
1147 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1149 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1150 has backported it to Gtk+ 2.0 and they add the resize grip for
1151 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1152 forever, so disable the grip. */
1153 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1154 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1155 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1156 #endif
1158 xg_set_screen (wtop, f);
1160 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1161 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1162 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1163 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1165 #ifdef HAVE_GTK3
1166 wfixed = emacs_fixed_new (f);
1167 #else
1168 wfixed = gtk_fixed_new ();
1169 #endif
1171 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1173 if (wtop) gtk_widget_destroy (wtop);
1174 if (wvbox) gtk_widget_destroy (wvbox);
1175 if (whbox) gtk_widget_destroy (whbox);
1176 if (wfixed) gtk_widget_destroy (wfixed);
1178 unblock_input ();
1179 return 0;
1182 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1183 gtk_widget_set_name (wtop, EMACS_CLASS);
1184 gtk_widget_set_name (wvbox, "pane");
1185 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1187 /* If this frame has a title or name, set it in the title bar. */
1188 if (! NILP (f->title))
1189 title = SSDATA (ENCODE_UTF_8 (f->title));
1190 else if (! NILP (f->name))
1191 title = SSDATA (ENCODE_UTF_8 (f->name));
1193 if (title)
1194 gtk_window_set_title (GTK_WINDOW (wtop), title);
1196 if (FRAME_UNDECORATED (f))
1198 gtk_window_set_decorated (GTK_WINDOW (wtop), FALSE);
1199 store_frame_param (f, Qundecorated, Qt);
1202 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1203 FRAME_GTK_WIDGET (f) = wfixed;
1204 f->output_data.x->vbox_widget = wvbox;
1205 f->output_data.x->hbox_widget = whbox;
1207 gtk_widget_set_has_window (wfixed, TRUE);
1209 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1210 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1211 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1213 if (FRAME_EXTERNAL_TOOL_BAR (f))
1214 update_frame_tool_bar (f);
1216 /* We don't want this widget double buffered, because we draw on it
1217 with regular X drawing primitives, so from a GTK/GDK point of
1218 view, the widget is totally blank. When an expose comes, this
1219 will make the widget blank, and then Emacs redraws it. This flickers
1220 a lot, so we turn off double buffering. */
1221 gtk_widget_set_double_buffered (wfixed, FALSE);
1223 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1224 SSDATA (Vx_resource_name),
1225 SSDATA (Vx_resource_class));
1227 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1228 GTK is to destroy the widget. We want Emacs to do that instead. */
1229 g_signal_connect (G_OBJECT (wtop), "delete-event",
1230 G_CALLBACK (delete_cb), f);
1232 /* Convert our geometry parameters into a geometry string
1233 and specify it.
1234 GTK will itself handle calculating the real position this way. */
1235 xg_set_geometry (f);
1236 f->win_gravity
1237 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1239 gtk_widget_add_events (wfixed,
1240 GDK_POINTER_MOTION_MASK
1241 | GDK_EXPOSURE_MASK
1242 | GDK_BUTTON_PRESS_MASK
1243 | GDK_BUTTON_RELEASE_MASK
1244 | GDK_KEY_PRESS_MASK
1245 | GDK_ENTER_NOTIFY_MASK
1246 | GDK_LEAVE_NOTIFY_MASK
1247 | GDK_FOCUS_CHANGE_MASK
1248 | GDK_STRUCTURE_MASK
1249 | GDK_VISIBILITY_NOTIFY_MASK);
1251 /* Must realize the windows so the X window gets created. It is used
1252 by callers of this function. */
1253 gtk_widget_realize (wfixed);
1254 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1255 initial_set_up_x_back_buffer (f);
1257 /* Since GTK clears its window by filling with the background color,
1258 we must keep X and GTK background in sync. */
1259 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1261 #ifndef HAVE_GTK3
1262 /* Also, do not let any background pixmap to be set, this looks very
1263 bad as Emacs overwrites the background pixmap with its own idea
1264 of background color. */
1265 style = gtk_widget_get_modifier_style (wfixed);
1267 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1268 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1269 gtk_widget_modify_style (wfixed, style);
1270 #else
1271 gtk_widget_set_can_focus (wfixed, TRUE);
1272 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1273 #endif
1275 if (FRAME_OVERRIDE_REDIRECT (f))
1277 GdkWindow *gwin = gtk_widget_get_window (wtop);
1279 if (gwin)
1280 gdk_window_set_override_redirect (gwin, TRUE);
1283 #ifdef USE_GTK_TOOLTIP
1284 /* Steal a tool tip window we can move ourselves. */
1285 f->output_data.x->ttip_widget = 0;
1286 f->output_data.x->ttip_lbl = 0;
1287 f->output_data.x->ttip_window = 0;
1288 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1289 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1290 #endif
1293 GdkScreen *screen = gtk_widget_get_screen (wtop);
1294 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1295 /* Only connect this signal once per screen. */
1296 if (! g_signal_handler_find (G_OBJECT (gs),
1297 G_SIGNAL_MATCH_FUNC,
1298 0, 0, 0,
1299 (gpointer) G_CALLBACK (style_changed_cb),
1302 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1303 G_CALLBACK (style_changed_cb),
1304 gdk_screen_get_display (screen));
1308 unblock_input ();
1310 return 1;
1313 void
1314 xg_free_frame_widgets (struct frame *f)
1316 if (FRAME_GTK_OUTER_WIDGET (f))
1318 #ifdef USE_GTK_TOOLTIP
1319 struct x_output *x = f->output_data.x;
1320 #endif
1321 struct xg_frame_tb_info *tbinfo
1322 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1323 TB_INFO_KEY);
1324 if (tbinfo)
1325 xfree (tbinfo);
1327 /* x_free_frame_resources should have taken care of it */
1328 eassert (!FRAME_X_DOUBLE_BUFFERED_P (f));
1329 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1330 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1331 FRAME_X_RAW_DRAWABLE (f) = 0;
1332 FRAME_GTK_OUTER_WIDGET (f) = 0;
1333 #ifdef USE_GTK_TOOLTIP
1334 if (x->ttip_lbl)
1335 gtk_widget_destroy (x->ttip_lbl);
1336 if (x->ttip_widget)
1337 g_object_unref (G_OBJECT (x->ttip_widget));
1338 #endif
1342 /* Set the normal size hints for the window manager, for frame F.
1343 FLAGS is the flags word to use--or 0 meaning preserve the flags
1344 that the window now has.
1345 If USER_POSITION, set the User Position
1346 flag (this is useful when FLAGS is 0). */
1348 void
1349 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1351 /* Must use GTK routines here, otherwise GTK resets the size hints
1352 to its own defaults. */
1353 GdkGeometry size_hints;
1354 gint hint_flags = 0;
1355 int base_width, base_height;
1356 int min_rows = 0, min_cols = 0;
1357 int win_gravity = f->win_gravity;
1358 Lisp_Object fs_state, frame;
1359 int scale = xg_get_scale (f);
1361 /* Don't set size hints during initialization; that apparently leads
1362 to a race condition. See the thread at
1363 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1364 if (NILP (Vafter_init_time)
1365 || !FRAME_GTK_OUTER_WIDGET (f)
1366 || FRAME_PARENT_FRAME (f))
1367 return;
1369 XSETFRAME (frame, f);
1370 fs_state = Fframe_parameter (frame, Qfullscreen);
1371 if ((EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth)) &&
1372 (x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state) ||
1373 x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state_fullscreen)))
1375 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1376 Gtk3 don't get along and the frame shrinks (!).
1378 return;
1381 if (flags)
1383 memset (&size_hints, 0, sizeof (size_hints));
1384 f->output_data.x->size_hints = size_hints;
1385 f->output_data.x->hint_flags = hint_flags;
1387 else
1388 flags = f->size_hint_flags;
1390 size_hints = f->output_data.x->size_hints;
1391 hint_flags = f->output_data.x->hint_flags;
1393 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1394 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
1395 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
1397 hint_flags |= GDK_HINT_BASE_SIZE;
1398 /* Use one row/col here so base_height/width does not become zero.
1399 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1400 Obviously this makes the row/col value displayed off by 1. */
1401 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1402 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1403 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1405 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1406 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1408 size_hints.base_width = base_width;
1409 size_hints.base_height = base_height;
1410 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
1411 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
1413 /* These currently have a one to one mapping with the X values, but I
1414 don't think we should rely on that. */
1415 hint_flags |= GDK_HINT_WIN_GRAVITY;
1416 size_hints.win_gravity = 0;
1417 if (win_gravity == NorthWestGravity)
1418 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1419 else if (win_gravity == NorthGravity)
1420 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1421 else if (win_gravity == NorthEastGravity)
1422 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1423 else if (win_gravity == WestGravity)
1424 size_hints.win_gravity = GDK_GRAVITY_WEST;
1425 else if (win_gravity == CenterGravity)
1426 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1427 else if (win_gravity == EastGravity)
1428 size_hints.win_gravity = GDK_GRAVITY_EAST;
1429 else if (win_gravity == SouthWestGravity)
1430 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1431 else if (win_gravity == SouthGravity)
1432 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1433 else if (win_gravity == SouthEastGravity)
1434 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1435 else if (win_gravity == StaticGravity)
1436 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1438 if (x_gtk_use_window_move)
1440 if (flags & PPosition) hint_flags |= GDK_HINT_POS;
1441 if (flags & USPosition) hint_flags |= GDK_HINT_USER_POS;
1442 if (flags & USSize) hint_flags |= GDK_HINT_USER_SIZE;
1445 if (user_position)
1447 hint_flags &= ~GDK_HINT_POS;
1448 hint_flags |= GDK_HINT_USER_POS;
1451 size_hints.base_width /= scale;
1452 size_hints.base_height /= scale;
1453 size_hints.width_inc /= scale;
1454 size_hints.height_inc /= scale;
1456 if (hint_flags != f->output_data.x->hint_flags
1457 || memcmp (&size_hints,
1458 &f->output_data.x->size_hints,
1459 sizeof (size_hints)) != 0)
1461 block_input ();
1462 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1463 NULL, &size_hints, hint_flags);
1464 f->output_data.x->size_hints = size_hints;
1465 f->output_data.x->hint_flags = hint_flags;
1466 unblock_input ();
1470 /* Change background color of a frame.
1471 Since GTK uses the background color to clear the window, we must
1472 keep the GTK and X colors in sync.
1473 F is the frame to change,
1474 BG is the pixel value to change to. */
1476 void
1477 xg_set_background_color (struct frame *f, unsigned long bg)
1479 if (FRAME_GTK_WIDGET (f))
1481 block_input ();
1482 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1484 Lisp_Object bar;
1485 for (bar = FRAME_SCROLL_BARS (f);
1486 !NILP (bar);
1487 bar = XSCROLL_BAR (bar)->next)
1489 GtkWidget *scrollbar =
1490 xg_get_widget_from_map (XSCROLL_BAR (bar)->x_window);
1491 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
1492 xg_set_widget_bg (f, webox, FRAME_BACKGROUND_PIXEL (f));
1495 unblock_input ();
1499 /* Change the frame's decoration (title bar + resize borders). This
1500 might not work with all window managers. */
1501 void
1502 xg_set_undecorated (struct frame *f, Lisp_Object undecorated)
1504 if (FRAME_GTK_WIDGET (f))
1506 block_input ();
1507 gtk_window_set_decorated (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1508 NILP (undecorated) ? TRUE : FALSE);
1509 unblock_input ();
1514 /* Restack F1 below F2, above if ABOVE_FLAG is true. This might not
1515 work with all window managers. */
1516 void
1517 xg_frame_restack (struct frame *f1, struct frame *f2, bool above_flag)
1519 #if GTK_CHECK_VERSION (2, 18, 0)
1520 block_input ();
1521 if (FRAME_GTK_OUTER_WIDGET (f1) && FRAME_GTK_OUTER_WIDGET (f2))
1523 GdkWindow *gwin1 = gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f1));
1524 GdkWindow *gwin2 = gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f2));
1525 Lisp_Object frame1, frame2;
1527 XSETFRAME (frame1, f1);
1528 XSETFRAME (frame2, f2);
1530 gdk_window_restack (gwin1, gwin2, above_flag);
1531 x_sync (f1);
1533 unblock_input ();
1534 #endif
1538 /* Don't show frame in taskbar, don't ALT-TAB to it. */
1539 void
1540 xg_set_skip_taskbar (struct frame *f, Lisp_Object skip_taskbar)
1542 block_input ();
1543 if (FRAME_GTK_WIDGET (f))
1544 gdk_window_set_skip_taskbar_hint
1545 (gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f)),
1546 NILP (skip_taskbar) ? FALSE : TRUE);
1547 unblock_input ();
1551 /* Don't give frame focus. */
1552 void
1553 xg_set_no_focus_on_map (struct frame *f, Lisp_Object no_focus_on_map)
1555 block_input ();
1556 if (FRAME_GTK_WIDGET (f))
1558 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1559 gboolean g_no_focus_on_map = NILP (no_focus_on_map) ? TRUE : FALSE;
1561 gtk_window_set_focus_on_map (gwin, g_no_focus_on_map);
1563 unblock_input ();
1567 void
1568 xg_set_no_accept_focus (struct frame *f, Lisp_Object no_accept_focus)
1570 block_input ();
1571 if (FRAME_GTK_WIDGET (f))
1573 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1574 gboolean g_no_accept_focus = NILP (no_accept_focus) ? TRUE : FALSE;
1576 gtk_window_set_accept_focus (gwin, g_no_accept_focus);
1578 unblock_input ();
1581 void
1582 xg_set_override_redirect (struct frame *f, Lisp_Object override_redirect)
1584 block_input ();
1586 if (FRAME_GTK_OUTER_WIDGET (f))
1588 GdkWindow *gwin = gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f));
1590 gdk_window_set_override_redirect (gwin, NILP (override_redirect) ? FALSE : TRUE);
1593 unblock_input ();
1596 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1597 functions so GTK does not overwrite the icon. */
1599 void
1600 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1602 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1603 icon_pixmap,
1604 icon_mask);
1605 if (gp)
1606 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1611 /***********************************************************************
1612 Dialog functions
1613 ***********************************************************************/
1614 /* Return the dialog title to use for a dialog of type KEY.
1615 This is the encoding used by lwlib. We use the same for GTK. */
1617 static const char *
1618 get_dialog_title (char key)
1620 const char *title = "";
1622 switch (key) {
1623 case 'E': case 'e':
1624 title = "Error";
1625 break;
1627 case 'I': case 'i':
1628 title = "Information";
1629 break;
1631 case 'L': case 'l':
1632 title = "Prompt";
1633 break;
1635 case 'P': case 'p':
1636 title = "Prompt";
1637 break;
1639 case 'Q': case 'q':
1640 title = "Question";
1641 break;
1644 return title;
1647 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1648 the dialog, but return TRUE so the event does not propagate further
1649 in GTK. This prevents GTK from destroying the dialog widget automatically
1650 and we can always destroy the widget manually, regardless of how
1651 it was popped down (button press or WM_DELETE_WINDOW).
1652 W is the dialog widget.
1653 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1654 user_data is NULL (not used).
1656 Returns TRUE to end propagation of event. */
1658 static gboolean
1659 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1661 gtk_widget_unmap (w);
1662 return TRUE;
1665 /* Create a popup dialog window. See also xg_create_widget below.
1666 WV is a widget_value describing the dialog.
1667 SELECT_CB is the callback to use when a button has been pressed.
1668 DEACTIVATE_CB is the callback to use when the dialog pops down.
1670 Returns the GTK dialog widget. */
1672 static GtkWidget *
1673 create_dialog (widget_value *wv,
1674 GCallback select_cb,
1675 GCallback deactivate_cb)
1677 const char *title = get_dialog_title (wv->name[0]);
1678 int total_buttons = wv->name[1] - '0';
1679 int right_buttons = wv->name[4] - '0';
1680 int left_buttons;
1681 int button_nr = 0;
1682 int button_spacing = 10;
1683 GtkWidget *wdialog = gtk_dialog_new ();
1684 GtkDialog *wd = GTK_DIALOG (wdialog);
1685 widget_value *item;
1686 GtkWidget *whbox_down;
1688 /* If the number of buttons is greater than 4, make two rows of buttons
1689 instead. This looks better. */
1690 bool make_two_rows = total_buttons > 4;
1692 #if GTK_CHECK_VERSION (3, 12, 0)
1693 GtkBuilder *gbld = gtk_builder_new ();
1694 GObject *go = gtk_buildable_get_internal_child (GTK_BUILDABLE (wd),
1695 gbld,
1696 "action_area");
1697 GtkBox *cur_box = GTK_BOX (go);
1698 g_object_unref (G_OBJECT (gbld));
1699 #else
1700 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1701 #endif
1703 if (right_buttons == 0) right_buttons = total_buttons/2;
1704 left_buttons = total_buttons - right_buttons;
1706 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1707 gtk_widget_set_name (wdialog, "emacs-dialog");
1710 if (make_two_rows)
1712 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1713 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1714 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1715 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1716 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1717 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1719 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1720 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1721 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1723 cur_box = GTK_BOX (whbox_up);
1726 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1727 G_CALLBACK (dialog_delete_callback), 0);
1729 if (deactivate_cb)
1731 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1732 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1735 for (item = wv->contents; item; item = item->next)
1737 char *utf8_label = get_utf8_string (item->value);
1738 GtkWidget *w;
1739 GtkRequisition req;
1741 if (item->name && strcmp (item->name, "message") == 0)
1743 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1744 /* This is the text part of the dialog. */
1745 w = gtk_label_new (utf8_label);
1746 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1747 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1748 #if GTK_CHECK_VERSION (3, 14, 0)
1749 gtk_widget_set_halign (w, GTK_ALIGN_START);
1750 gtk_widget_set_valign (w, GTK_ALIGN_CENTER);
1751 #else
1752 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1753 #endif
1754 /* Try to make dialog look better. Must realize first so
1755 the widget can calculate the size it needs. */
1756 gtk_widget_realize (w);
1757 gtk_widget_get_preferred_size (w, NULL, &req);
1758 gtk_box_set_spacing (wvbox, req.height);
1759 if (item->value && strlen (item->value) > 0)
1760 button_spacing = 2*req.width/strlen (item->value);
1761 if (button_spacing < 10) button_spacing = 10;
1763 else
1765 /* This is one button to add to the dialog. */
1766 w = gtk_button_new_with_label (utf8_label);
1767 if (! item->enabled)
1768 gtk_widget_set_sensitive (w, FALSE);
1769 if (select_cb)
1770 g_signal_connect (G_OBJECT (w), "clicked",
1771 select_cb, item->call_data);
1773 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1774 if (++button_nr == left_buttons)
1776 if (make_two_rows)
1777 cur_box = GTK_BOX (whbox_down);
1781 if (utf8_label)
1782 g_free (utf8_label);
1785 return wdialog;
1788 struct xg_dialog_data
1790 GMainLoop *loop;
1791 int response;
1792 GtkWidget *w;
1793 guint timerid;
1796 /* Function that is called when the file or font dialogs pop down.
1797 W is the dialog widget, RESPONSE is the response code.
1798 USER_DATA is what we passed in to g_signal_connect. */
1800 static void
1801 xg_dialog_response_cb (GtkDialog *w,
1802 gint response,
1803 gpointer user_data)
1805 struct xg_dialog_data *dd = user_data;
1806 dd->response = response;
1807 g_main_loop_quit (dd->loop);
1811 /* Destroy the dialog. This makes it pop down. */
1813 static void
1814 pop_down_dialog (void *arg)
1816 struct xg_dialog_data *dd = arg;
1818 block_input ();
1819 if (dd->w) gtk_widget_destroy (dd->w);
1820 if (dd->timerid != 0) g_source_remove (dd->timerid);
1822 g_main_loop_quit (dd->loop);
1823 g_main_loop_unref (dd->loop);
1825 unblock_input ();
1828 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1829 Pass DATA as gpointer so we can use this as a callback. */
1831 static gboolean
1832 xg_maybe_add_timer (gpointer data)
1834 struct xg_dialog_data *dd = data;
1835 struct timespec next_time = timer_check ();
1837 dd->timerid = 0;
1839 if (timespec_valid_p (next_time))
1841 time_t s = next_time.tv_sec;
1842 int per_ms = TIMESPEC_RESOLUTION / 1000;
1843 int ms = (next_time.tv_nsec + per_ms - 1) / per_ms;
1844 if (s <= ((guint) -1 - ms) / 1000)
1845 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1847 return FALSE;
1851 /* Pops up a modal dialog W and waits for response.
1852 We don't use gtk_dialog_run because we want to process emacs timers.
1853 The dialog W is not destroyed when this function returns. */
1855 static int
1856 xg_dialog_run (struct frame *f, GtkWidget *w)
1858 ptrdiff_t count = SPECPDL_INDEX ();
1859 struct xg_dialog_data dd;
1861 xg_set_screen (w, f);
1862 gtk_window_set_transient_for (GTK_WINDOW (w),
1863 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1864 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1865 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1867 dd.loop = g_main_loop_new (NULL, FALSE);
1868 dd.response = GTK_RESPONSE_CANCEL;
1869 dd.w = w;
1870 dd.timerid = 0;
1872 g_signal_connect (G_OBJECT (w),
1873 "response",
1874 G_CALLBACK (xg_dialog_response_cb),
1875 &dd);
1876 /* Don't destroy the widget if closed by the window manager close button. */
1877 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1878 gtk_widget_show (w);
1880 record_unwind_protect_ptr (pop_down_dialog, &dd);
1882 (void) xg_maybe_add_timer (&dd);
1883 g_main_loop_run (dd.loop);
1885 dd.w = 0;
1886 unbind_to (count, Qnil);
1888 return dd.response;
1892 /***********************************************************************
1893 File dialog functions
1894 ***********************************************************************/
1895 /* Return true if the old file selection dialog is being used. */
1897 bool
1898 xg_uses_old_file_dialog (void)
1900 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1901 return x_gtk_use_old_file_dialog;
1902 #else
1903 return 0;
1904 #endif
1908 typedef char * (*xg_get_file_func) (GtkWidget *);
1910 /* Return the selected file for file chooser dialog W.
1911 The returned string must be free:d. */
1913 static char *
1914 xg_get_file_name_from_chooser (GtkWidget *w)
1916 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1919 /* Callback called when the "Show hidden files" toggle is pressed.
1920 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1922 static void
1923 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1925 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1926 gboolean visible;
1927 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1928 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1932 /* Callback called when a property changes in a file chooser.
1933 GOBJECT is the file chooser dialog, ARG1 describes the property.
1934 USER_DATA is the toggle widget in the file chooser dialog.
1935 We use this to update the "Show hidden files" toggle when the user
1936 changes that property by right clicking in the file list. */
1938 static void
1939 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1941 if (strcmp (arg1->name, "show-hidden") == 0)
1943 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1944 gboolean visible, toggle_on;
1946 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1947 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1949 if (!!visible != !!toggle_on)
1951 gpointer cb = (gpointer) G_CALLBACK (xg_toggle_visibility_cb);
1952 g_signal_handlers_block_by_func (G_OBJECT (wtoggle), cb, gobject);
1953 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1954 g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle), cb, gobject);
1956 x_gtk_show_hidden_files = visible;
1960 /* Read a file name from the user using a file chooser dialog.
1961 F is the current frame.
1962 PROMPT is a prompt to show to the user. May not be NULL.
1963 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1964 If MUSTMATCH_P, the returned file name must be an existing
1965 file. (Actually, this only has cosmetic effects, the user can
1966 still enter a non-existing file.) *FUNC is set to a function that
1967 can be used to retrieve the selected file name from the returned widget.
1969 Returns the created widget. */
1971 static GtkWidget *
1972 xg_get_file_with_chooser (struct frame *f,
1973 char *prompt,
1974 char *default_filename,
1975 bool mustmatch_p, bool only_dir_p,
1976 xg_get_file_func *func)
1978 char msgbuf[1024];
1980 GtkWidget *filewin, *wtoggle, *wbox;
1981 GtkWidget *wmessage UNINIT;
1982 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1983 GtkFileChooserAction action = (mustmatch_p ?
1984 GTK_FILE_CHOOSER_ACTION_OPEN :
1985 GTK_FILE_CHOOSER_ACTION_SAVE);
1987 if (only_dir_p)
1988 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1990 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1991 XG_TEXT_CANCEL, GTK_RESPONSE_CANCEL,
1992 (mustmatch_p || only_dir_p ?
1993 XG_TEXT_OPEN : XG_TEXT_OK),
1994 GTK_RESPONSE_OK,
1995 NULL);
1996 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1998 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1999 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2000 gtk_widget_show (wbox);
2001 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
2003 if (x_gtk_show_hidden_files)
2005 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
2006 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
2008 gtk_widget_show (wtoggle);
2009 g_signal_connect (G_OBJECT (wtoggle), "clicked",
2010 G_CALLBACK (xg_toggle_visibility_cb), filewin);
2011 g_signal_connect (G_OBJECT (filewin), "notify",
2012 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
2014 if (x_gtk_file_dialog_help_text)
2016 char *z = msgbuf;
2017 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
2018 Show the C-l help text only for versions < 2.10. */
2019 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
2020 z = stpcpy (z, "\nType C-l to display a file name text entry box.\n");
2021 strcpy (z, "\nIf you don't like this file selector, use the "
2022 "corresponding\nkey binding or customize "
2023 "use-file-dialog to turn it off.");
2025 wmessage = gtk_label_new (msgbuf);
2026 gtk_widget_show (wmessage);
2029 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
2030 if (x_gtk_file_dialog_help_text)
2031 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
2032 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
2034 if (default_filename)
2036 Lisp_Object file;
2037 char *utf8_filename;
2039 file = build_string (default_filename);
2041 /* File chooser does not understand ~/... in the file name. It must be
2042 an absolute name starting with /. */
2043 if (default_filename[0] != '/')
2044 file = Fexpand_file_name (file, Qnil);
2046 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
2047 if (! NILP (Ffile_directory_p (file)))
2048 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
2049 utf8_filename);
2050 else
2052 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
2053 utf8_filename);
2054 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
2056 char *cp = strrchr (utf8_filename, '/');
2057 if (cp) ++cp;
2058 else cp = utf8_filename;
2059 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
2064 *func = xg_get_file_name_from_chooser;
2065 return filewin;
2068 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2070 /* Return the selected file for file selector dialog W.
2071 The returned string must be free:d. */
2073 static char *
2074 xg_get_file_name_from_selector (GtkWidget *w)
2076 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
2077 return xstrdup (gtk_file_selection_get_filename (filesel));
2080 /* Create a file selection dialog.
2081 F is the current frame.
2082 PROMPT is a prompt to show to the user. May not be NULL.
2083 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2084 If MUSTMATCH_P, the returned file name must be an existing
2085 file. *FUNC is set to a function that can be used to retrieve the
2086 selected file name from the returned widget.
2088 Returns the created widget. */
2090 static GtkWidget *
2091 xg_get_file_with_selection (struct frame *f,
2092 char *prompt,
2093 char *default_filename,
2094 bool mustmatch_p, bool only_dir_p,
2095 xg_get_file_func *func)
2097 GtkWidget *filewin;
2098 GtkFileSelection *filesel;
2100 filewin = gtk_file_selection_new (prompt);
2101 filesel = GTK_FILE_SELECTION (filewin);
2103 if (default_filename)
2104 gtk_file_selection_set_filename (filesel, default_filename);
2106 if (mustmatch_p)
2108 /* The selection_entry part of filesel is not documented. */
2109 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
2110 gtk_file_selection_hide_fileop_buttons (filesel);
2113 *func = xg_get_file_name_from_selector;
2115 return filewin;
2117 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
2119 /* Read a file name from the user using a file dialog, either the old
2120 file selection dialog, or the new file chooser dialog. Which to use
2121 depends on what the GTK version used has, and what the value of
2122 gtk-use-old-file-dialog.
2123 F is the current frame.
2124 PROMPT is a prompt to show to the user. May not be NULL.
2125 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2126 If MUSTMATCH_P, the returned file name must be an existing
2127 file.
2129 Returns a file name or NULL if no file was selected.
2130 The returned string must be freed by the caller. */
2132 char *
2133 xg_get_file_name (struct frame *f,
2134 char *prompt,
2135 char *default_filename,
2136 bool mustmatch_p,
2137 bool only_dir_p)
2139 GtkWidget *w = 0;
2140 char *fn = 0;
2141 int filesel_done = 0;
2142 xg_get_file_func func;
2144 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2146 if (xg_uses_old_file_dialog ())
2147 w = xg_get_file_with_selection (f, prompt, default_filename,
2148 mustmatch_p, only_dir_p, &func);
2149 else
2150 w = xg_get_file_with_chooser (f, prompt, default_filename,
2151 mustmatch_p, only_dir_p, &func);
2153 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2154 w = xg_get_file_with_chooser (f, prompt, default_filename,
2155 mustmatch_p, only_dir_p, &func);
2156 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2158 gtk_widget_set_name (w, "emacs-filedialog");
2160 filesel_done = xg_dialog_run (f, w);
2161 if (filesel_done == GTK_RESPONSE_OK)
2162 fn = (*func) (w);
2164 gtk_widget_destroy (w);
2165 return fn;
2168 /***********************************************************************
2169 GTK font chooser
2170 ***********************************************************************/
2172 #ifdef HAVE_FREETYPE
2174 #if USE_NEW_GTK_FONT_CHOOSER
2176 #define XG_WEIGHT_TO_SYMBOL(w) \
2177 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2178 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2179 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2180 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2181 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2182 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2183 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2184 : Qultra_bold)
2186 #define XG_STYLE_TO_SYMBOL(s) \
2187 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2188 : s == PANGO_STYLE_ITALIC ? Qitalic \
2189 : Qnormal)
2191 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2194 static char *x_last_font_name;
2196 /* Pop up a GTK font selector and return the name of the font the user
2197 selects, as a C string. The returned font name follows GTK's own
2198 format:
2200 `FAMILY [VALUE1 VALUE2] SIZE'
2202 This can be parsed using font_parse_fcname in font.c.
2203 DEFAULT_NAME, if non-zero, is the default font name. */
2205 Lisp_Object
2206 xg_get_font (struct frame *f, const char *default_name)
2208 GtkWidget *w;
2209 int done = 0;
2210 Lisp_Object font = Qnil;
2212 w = gtk_font_chooser_dialog_new
2213 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2215 if (default_name)
2217 /* Convert fontconfig names to Gtk names, i.e. remove - before
2218 number */
2219 char *p = strrchr (default_name, '-');
2220 if (p)
2222 char *ep = p+1;
2223 while (c_isdigit (*ep))
2224 ++ep;
2225 if (*ep == '\0') *p = ' ';
2228 else if (x_last_font_name)
2229 default_name = x_last_font_name;
2231 if (default_name)
2232 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2234 gtk_widget_set_name (w, "emacs-fontdialog");
2235 done = xg_dialog_run (f, w);
2236 if (done == GTK_RESPONSE_OK)
2238 #if USE_NEW_GTK_FONT_CHOOSER
2239 /* Use the GTK3 font chooser. */
2240 PangoFontDescription *desc
2241 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2243 if (desc)
2245 const char *name = pango_font_description_get_family (desc);
2246 gint size = pango_font_description_get_size (desc);
2247 PangoWeight weight = pango_font_description_get_weight (desc);
2248 PangoStyle style = pango_font_description_get_style (desc);
2250 #ifdef USE_CAIRO
2251 #define FONT_TYPE_WANTED (Qftcr)
2252 #else
2253 #define FONT_TYPE_WANTED (Qxft)
2254 #endif
2255 font = CALLN (Ffont_spec,
2256 QCname, build_string (name),
2257 QCsize, make_float (pango_units_to_double (size)),
2258 QCweight, XG_WEIGHT_TO_SYMBOL (weight),
2259 QCslant, XG_STYLE_TO_SYMBOL (style),
2260 QCtype,
2261 FONT_TYPE_WANTED);
2263 pango_font_description_free (desc);
2264 dupstring (&x_last_font_name, name);
2267 #else /* Use old font selector, which just returns the font name. */
2269 char *font_name
2270 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2272 if (font_name)
2274 font = build_string (font_name);
2275 g_free (x_last_font_name);
2276 x_last_font_name = font_name;
2278 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2281 gtk_widget_destroy (w);
2282 return font;
2284 #endif /* HAVE_FREETYPE */
2288 /***********************************************************************
2289 Menu functions.
2290 ***********************************************************************/
2292 /* The name of menu items that can be used for customization. Since GTK
2293 RC files are very crude and primitive, we have to set this on all
2294 menu item names so a user can easily customize menu items. */
2296 #define MENU_ITEM_NAME "emacs-menuitem"
2299 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2300 during GC. The next member points to the items. */
2301 static xg_list_node xg_menu_cb_list;
2303 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2304 during GC. The next member points to the items. */
2305 static xg_list_node xg_menu_item_cb_list;
2307 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2308 F is the frame CL_DATA will be initialized for.
2309 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2311 The menu bar and all sub menus under the menu bar in a frame
2312 share the same structure, hence the reference count.
2314 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2315 allocated xg_menu_cb_data if CL_DATA is NULL. */
2317 static xg_menu_cb_data *
2318 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2320 if (! cl_data)
2322 cl_data = xmalloc (sizeof *cl_data);
2323 cl_data->f = f;
2324 cl_data->menu_bar_vector = f->menu_bar_vector;
2325 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2326 cl_data->highlight_cb = highlight_cb;
2327 cl_data->ref_count = 0;
2329 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2332 cl_data->ref_count++;
2334 return cl_data;
2337 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2338 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2340 When the menu bar is updated, menu items may have been added and/or
2341 removed, so menu_bar_vector and menu_bar_items_used change. We must
2342 then update CL_DATA since it is used to determine which menu
2343 item that is invoked in the menu.
2344 HIGHLIGHT_CB could change, there is no check that the same
2345 function is given when modifying a menu bar as was given when
2346 creating the menu bar. */
2348 static void
2349 update_cl_data (xg_menu_cb_data *cl_data,
2350 struct frame *f,
2351 GCallback highlight_cb)
2353 if (cl_data)
2355 cl_data->f = f;
2356 cl_data->menu_bar_vector = f->menu_bar_vector;
2357 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2358 cl_data->highlight_cb = highlight_cb;
2362 /* Decrease reference count for CL_DATA.
2363 If reference count is zero, free CL_DATA. */
2365 static void
2366 unref_cl_data (xg_menu_cb_data *cl_data)
2368 if (cl_data && cl_data->ref_count > 0)
2370 cl_data->ref_count--;
2371 if (cl_data->ref_count == 0)
2373 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2374 xfree (cl_data);
2379 /* Function that marks all lisp data during GC. */
2381 void
2382 xg_mark_data (void)
2384 xg_list_node *iter;
2385 Lisp_Object rest, frame;
2387 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2388 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2390 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2392 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2394 if (! NILP (cb_data->help))
2395 mark_object (cb_data->help);
2398 FOR_EACH_FRAME (rest, frame)
2400 struct frame *f = XFRAME (frame);
2402 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2404 struct xg_frame_tb_info *tbinfo
2405 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2406 TB_INFO_KEY);
2407 if (tbinfo)
2409 mark_object (tbinfo->last_tool_bar);
2410 mark_object (tbinfo->style);
2416 /* Callback called when a menu item is destroyed. Used to free data.
2417 W is the widget that is being destroyed (not used).
2418 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2420 static void
2421 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2423 if (client_data)
2425 xg_menu_item_cb_data *data = client_data;
2426 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2427 xfree (data);
2431 /* Callback called when the pointer enters/leaves a menu item.
2432 W is the parent of the menu item.
2433 EVENT is either an enter event or leave event.
2434 CLIENT_DATA is not used.
2436 Returns FALSE to tell GTK to keep processing this event. */
2438 static gboolean
2439 menuitem_highlight_callback (GtkWidget *w,
2440 GdkEventCrossing *event,
2441 gpointer client_data)
2443 GdkEvent ev;
2444 GtkWidget *subwidget;
2445 xg_menu_item_cb_data *data;
2447 ev.crossing = *event;
2448 subwidget = gtk_get_event_widget (&ev);
2449 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2450 if (data)
2452 if (! NILP (data->help) && data->cl_data->highlight_cb)
2454 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2455 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2456 (*func) (subwidget, call_data);
2460 return FALSE;
2463 /* Callback called when a menu is destroyed. Used to free data.
2464 W is the widget that is being destroyed (not used).
2465 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2467 static void
2468 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2470 unref_cl_data (client_data);
2473 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2474 must be non-NULL) and can be inserted into a menu item.
2476 Returns the GtkHBox. */
2478 static GtkWidget *
2479 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2481 GtkWidget *wlbl;
2482 GtkWidget *wkey;
2483 GtkWidget *wbox;
2485 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2486 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2487 wlbl = gtk_label_new (utf8_label);
2488 wkey = gtk_label_new (utf8_key);
2490 #if GTK_CHECK_VERSION (3, 14, 0)
2491 gtk_widget_set_halign (wlbl, GTK_ALIGN_START);
2492 gtk_widget_set_valign (wlbl, GTK_ALIGN_CENTER);
2493 gtk_widget_set_halign (wkey, GTK_ALIGN_START);
2494 gtk_widget_set_valign (wkey, GTK_ALIGN_CENTER);
2495 #else
2496 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2497 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2498 #endif
2499 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2500 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2502 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2503 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2504 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2506 return wbox;
2509 /* Make and return a menu item widget with the key to the right.
2510 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2511 UTF8_KEY is the text representing the key binding.
2512 ITEM is the widget_value describing the menu item.
2514 GROUP is an in/out parameter. If the menu item to be created is not
2515 part of any radio menu group, *GROUP contains NULL on entry and exit.
2516 If the menu item to be created is part of a radio menu group, on entry
2517 *GROUP contains the group to use, or NULL if this is the first item
2518 in the group. On exit, *GROUP contains the radio item group.
2520 Unfortunately, keys don't line up as nicely as in Motif,
2521 but the macOS version doesn't either, so I guess that is OK. */
2523 static GtkWidget *
2524 make_menu_item (const char *utf8_label,
2525 const char *utf8_key,
2526 widget_value *item,
2527 GSList **group)
2529 GtkWidget *w;
2530 GtkWidget *wtoadd = 0;
2532 /* It has been observed that some menu items have a NULL name field.
2533 This will lead to this function being called with a NULL utf8_label.
2534 GTK crashes on that so we set a blank label. Why there is a NULL
2535 name remains to be investigated. */
2536 if (! utf8_label) utf8_label = " ";
2538 if (utf8_key)
2539 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2541 if (item->button_type == BUTTON_TYPE_TOGGLE)
2543 *group = NULL;
2544 if (utf8_key) w = gtk_check_menu_item_new ();
2545 else w = gtk_check_menu_item_new_with_label (utf8_label);
2546 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2548 else if (item->button_type == BUTTON_TYPE_RADIO)
2550 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2551 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2552 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2553 if (item->selected)
2554 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2556 else
2558 *group = NULL;
2559 if (utf8_key) w = gtk_menu_item_new ();
2560 else w = gtk_menu_item_new_with_label (utf8_label);
2563 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2564 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2566 return w;
2569 /* Create a menu item widget, and connect the callbacks.
2570 ITEM describes the menu item.
2571 F is the frame the created menu belongs to.
2572 SELECT_CB is the callback to use when a menu item is selected.
2573 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2574 CL_DATA points to the callback data to be used for this menu.
2575 GROUP is an in/out parameter. If the menu item to be created is not
2576 part of any radio menu group, *GROUP contains NULL on entry and exit.
2577 If the menu item to be created is part of a radio menu group, on entry
2578 *GROUP contains the group to use, or NULL if this is the first item
2579 in the group. On exit, *GROUP contains the radio item group.
2581 Returns the created GtkWidget. */
2583 static GtkWidget *
2584 xg_create_one_menuitem (widget_value *item,
2585 struct frame *f,
2586 GCallback select_cb,
2587 GCallback highlight_cb,
2588 xg_menu_cb_data *cl_data,
2589 GSList **group)
2591 char *utf8_label;
2592 char *utf8_key;
2593 GtkWidget *w;
2594 xg_menu_item_cb_data *cb_data;
2596 utf8_label = get_utf8_string (item->name);
2597 utf8_key = get_utf8_string (item->key);
2599 w = make_menu_item (utf8_label, utf8_key, item, group);
2601 if (utf8_label) g_free (utf8_label);
2602 if (utf8_key) g_free (utf8_key);
2604 cb_data = xmalloc (sizeof *cb_data);
2606 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2608 cb_data->select_id = 0;
2609 cb_data->help = item->help;
2610 cb_data->cl_data = cl_data;
2611 cb_data->call_data = item->call_data;
2613 g_signal_connect (G_OBJECT (w),
2614 "destroy",
2615 G_CALLBACK (menuitem_destroy_callback),
2616 cb_data);
2618 /* Put cb_data in widget, so we can get at it when modifying menubar */
2619 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2621 /* final item, not a submenu */
2622 if (item->call_data && ! item->contents)
2624 if (select_cb)
2625 cb_data->select_id
2626 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2629 return w;
2632 /* Create a full menu tree specified by DATA.
2633 F is the frame the created menu belongs to.
2634 SELECT_CB is the callback to use when a menu item is selected.
2635 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2636 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2637 If POP_UP_P, create a popup menu.
2638 If MENU_BAR_P, create a menu bar.
2639 TOPMENU is the topmost GtkWidget that others shall be placed under.
2640 It may be NULL, in that case we create the appropriate widget
2641 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2642 CL_DATA is the callback data we shall use for this menu, or NULL
2643 if we haven't set the first callback yet.
2644 NAME is the name to give to the top level menu if this function
2645 creates it. May be NULL to not set any name.
2647 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2648 not NULL.
2650 This function calls itself to create submenus. */
2652 static GtkWidget *
2653 create_menus (widget_value *data,
2654 struct frame *f,
2655 GCallback select_cb,
2656 GCallback deactivate_cb,
2657 GCallback highlight_cb,
2658 bool pop_up_p,
2659 bool menu_bar_p,
2660 GtkWidget *topmenu,
2661 xg_menu_cb_data *cl_data,
2662 const char *name)
2664 widget_value *item;
2665 GtkWidget *wmenu = topmenu;
2666 GSList *group = NULL;
2668 if (! topmenu)
2670 if (! menu_bar_p)
2672 wmenu = gtk_menu_new ();
2673 xg_set_screen (wmenu, f);
2674 /* Connect this to the menu instead of items so we get enter/leave for
2675 disabled items also. TODO: Still does not get enter/leave for
2676 disabled items in detached menus. */
2677 g_signal_connect (G_OBJECT (wmenu),
2678 "enter-notify-event",
2679 G_CALLBACK (menuitem_highlight_callback),
2680 NULL);
2681 g_signal_connect (G_OBJECT (wmenu),
2682 "leave-notify-event",
2683 G_CALLBACK (menuitem_highlight_callback),
2684 NULL);
2686 else
2688 wmenu = gtk_menu_bar_new ();
2689 /* Set width of menu bar to a small value so it doesn't enlarge
2690 a small initial frame size. The width will be set to the
2691 width of the frame later on when it is added to a container.
2692 height -1: Natural height. */
2693 gtk_widget_set_size_request (wmenu, 1, -1);
2696 /* Put cl_data on the top menu for easier access. */
2697 cl_data = make_cl_data (cl_data, f, highlight_cb);
2698 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2699 g_signal_connect (G_OBJECT (wmenu), "destroy",
2700 G_CALLBACK (menu_destroy_callback), cl_data);
2702 if (name)
2703 gtk_widget_set_name (wmenu, name);
2705 if (deactivate_cb)
2706 g_signal_connect (G_OBJECT (wmenu),
2707 "selection-done", deactivate_cb, 0);
2710 for (item = data; item; item = item->next)
2712 GtkWidget *w;
2714 if (pop_up_p && !item->contents && !item->call_data
2715 && !menu_separator_name_p (item->name))
2717 char *utf8_label;
2718 /* A title for a popup. We do the same as GTK does when
2719 creating titles, but it does not look good. */
2720 group = NULL;
2721 utf8_label = get_utf8_string (item->name);
2723 w = gtk_menu_item_new_with_label (utf8_label);
2724 gtk_widget_set_sensitive (w, FALSE);
2725 if (utf8_label) g_free (utf8_label);
2727 else if (menu_separator_name_p (item->name))
2729 group = NULL;
2730 /* GTK only have one separator type. */
2731 w = gtk_separator_menu_item_new ();
2733 else
2735 w = xg_create_one_menuitem (item,
2737 item->contents ? 0 : select_cb,
2738 highlight_cb,
2739 cl_data,
2740 &group);
2742 /* Create a possibly empty submenu for menu bar items, since some
2743 themes don't highlight items correctly without it. */
2744 if (item->contents || menu_bar_p)
2746 GtkWidget *submenu = create_menus (item->contents,
2748 select_cb,
2749 deactivate_cb,
2750 highlight_cb,
2754 cl_data,
2756 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2760 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2761 gtk_widget_set_name (w, MENU_ITEM_NAME);
2764 return wmenu;
2767 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2768 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2769 with some text and buttons.
2770 F is the frame the created item belongs to.
2771 NAME is the name to use for the top widget.
2772 VAL is a widget_value structure describing items to be created.
2773 SELECT_CB is the callback to use when a menu item is selected or
2774 a dialog button is pressed.
2775 DEACTIVATE_CB is the callback to use when an item is deactivated.
2776 For a menu, when a sub menu is not shown anymore, for a dialog it is
2777 called when the dialog is popped down.
2778 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2780 Returns the widget created. */
2782 GtkWidget *
2783 xg_create_widget (const char *type, const char *name, struct frame *f,
2784 widget_value *val, GCallback select_cb,
2785 GCallback deactivate_cb, GCallback highlight_cb)
2787 GtkWidget *w = 0;
2788 bool menu_bar_p = strcmp (type, "menubar") == 0;
2789 bool pop_up_p = strcmp (type, "popup") == 0;
2791 if (strcmp (type, "dialog") == 0)
2793 w = create_dialog (val, select_cb, deactivate_cb);
2794 xg_set_screen (w, f);
2795 gtk_window_set_transient_for (GTK_WINDOW (w),
2796 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2797 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2798 gtk_widget_set_name (w, "emacs-dialog");
2799 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2801 else if (menu_bar_p || pop_up_p)
2803 w = create_menus (val->contents,
2805 select_cb,
2806 deactivate_cb,
2807 highlight_cb,
2808 pop_up_p,
2809 menu_bar_p,
2812 name);
2814 /* Set the cursor to an arrow for popup menus when they are mapped.
2815 This is done by default for menu bar menus. */
2816 if (pop_up_p)
2818 /* Must realize so the GdkWindow inside the widget is created. */
2819 gtk_widget_realize (w);
2820 xg_set_cursor (w, FRAME_DISPLAY_INFO (f)->xg_cursor);
2823 else
2825 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2826 type);
2829 return w;
2832 /* Return the label for menu item WITEM. */
2834 static const char *
2835 xg_get_menu_item_label (GtkMenuItem *witem)
2837 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2838 return gtk_label_get_label (wlabel);
2841 /* Return true if the menu item WITEM has the text LABEL. */
2843 static bool
2844 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2846 bool is_same = 0;
2847 char *utf8_label = get_utf8_string (label);
2848 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2850 if (! old_label && ! utf8_label)
2851 is_same = 1;
2852 else if (old_label && utf8_label)
2853 is_same = strcmp (utf8_label, old_label) == 0;
2855 if (utf8_label) g_free (utf8_label);
2857 return is_same;
2860 /* Destroy widgets in LIST. */
2862 static void
2863 xg_destroy_widgets (GList *list)
2865 GList *iter;
2867 for (iter = list; iter; iter = g_list_next (iter))
2869 GtkWidget *w = GTK_WIDGET (iter->data);
2871 /* Destroying the widget will remove it from the container it is in. */
2872 gtk_widget_destroy (w);
2876 /* Update the top level names in MENUBAR (i.e. not submenus).
2877 F is the frame the menu bar belongs to.
2878 *LIST is a list with the current menu bar names (menu item widgets).
2879 ITER is the item within *LIST that shall be updated.
2880 POS is the numerical position, starting at 0, of ITER in *LIST.
2881 VAL describes what the menu bar shall look like after the update.
2882 SELECT_CB is the callback to use when a menu item is selected.
2883 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2884 CL_DATA points to the callback data to be used for this menu bar.
2886 This function calls itself to walk through the menu bar names. */
2888 static void
2889 xg_update_menubar (GtkWidget *menubar,
2890 struct frame *f,
2891 GList **list,
2892 GList *iter,
2893 int pos,
2894 widget_value *val,
2895 GCallback select_cb,
2896 GCallback deactivate_cb,
2897 GCallback highlight_cb,
2898 xg_menu_cb_data *cl_data)
2900 if (! iter && ! val)
2901 return;
2902 else if (iter && ! val)
2904 /* Item(s) have been removed. Remove all remaining items. */
2905 xg_destroy_widgets (iter);
2907 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2908 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2909 gtk_menu_item_new_with_label (""),
2911 /* All updated. */
2912 val = 0;
2913 iter = 0;
2915 else if (! iter && val)
2917 /* Item(s) added. Add all new items in one call. */
2918 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2919 0, 1, menubar, cl_data, 0);
2921 /* All updated. */
2922 val = 0;
2923 iter = 0;
2925 /* Below this neither iter or val is NULL */
2926 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2928 /* This item is still the same, check next item. */
2929 val = val->next;
2930 iter = g_list_next (iter);
2931 ++pos;
2933 else /* This item is changed. */
2935 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2936 GtkMenuItem *witem2 = 0;
2937 bool val_in_menubar = 0;
2938 bool iter_in_new_menubar = 0;
2939 GList *iter2;
2940 widget_value *cur;
2942 /* See if the changed entry (val) is present later in the menu bar */
2943 for (iter2 = iter;
2944 iter2 && ! val_in_menubar;
2945 iter2 = g_list_next (iter2))
2947 witem2 = GTK_MENU_ITEM (iter2->data);
2948 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2951 /* See if the current entry (iter) is present later in the
2952 specification for the new menu bar. */
2953 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2954 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2956 if (val_in_menubar && ! iter_in_new_menubar)
2958 int nr = pos;
2960 /* This corresponds to:
2961 Current: A B C
2962 New: A C
2963 Remove B. */
2965 g_object_ref (G_OBJECT (witem));
2966 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2967 gtk_widget_destroy (GTK_WIDGET (witem));
2969 /* Must get new list since the old changed. */
2970 g_list_free (*list);
2971 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2972 while (nr-- > 0) iter = g_list_next (iter);
2974 else if (! val_in_menubar && ! iter_in_new_menubar)
2976 /* This corresponds to:
2977 Current: A B C
2978 New: A X C
2979 Rename B to X. This might seem to be a strange thing to do,
2980 since if there is a menu under B it will be totally wrong for X.
2981 But consider editing a C file. Then there is a C-mode menu
2982 (corresponds to B above).
2983 If then doing C-x C-f the minibuf menu (X above) replaces the
2984 C-mode menu. When returning from the minibuffer, we get
2985 back the C-mode menu. Thus we do:
2986 Rename B to X (C-mode to minibuf menu)
2987 Rename X to B (minibuf to C-mode menu).
2988 If the X menu hasn't been invoked, the menu under B
2989 is up to date when leaving the minibuffer. */
2990 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2991 char *utf8_label = get_utf8_string (val->name);
2993 /* GTK menu items don't notice when their labels have been
2994 changed from underneath them, so we have to explicitly
2995 use g_object_notify to tell listeners (e.g., a GMenuModel
2996 bridge that might be loaded) that the item's label has
2997 changed. */
2998 gtk_label_set_text (wlabel, utf8_label);
2999 #if GTK_CHECK_VERSION (2, 16, 0)
3000 g_object_notify (G_OBJECT (witem), "label");
3001 #endif
3002 if (utf8_label) g_free (utf8_label);
3003 iter = g_list_next (iter);
3004 val = val->next;
3005 ++pos;
3007 else if (! val_in_menubar && iter_in_new_menubar)
3009 /* This corresponds to:
3010 Current: A B C
3011 New: A X B C
3012 Insert X. */
3014 int nr = pos;
3015 GSList *group = 0;
3016 GtkWidget *w = xg_create_one_menuitem (val,
3018 select_cb,
3019 highlight_cb,
3020 cl_data,
3021 &group);
3023 /* Create a possibly empty submenu for menu bar items, since some
3024 themes don't highlight items correctly without it. */
3025 GtkWidget *submenu = create_menus (NULL, f,
3026 select_cb, deactivate_cb,
3027 highlight_cb,
3028 0, 0, 0, cl_data, 0);
3030 gtk_widget_set_name (w, MENU_ITEM_NAME);
3031 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
3032 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
3034 g_list_free (*list);
3035 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
3036 while (nr-- > 0) iter = g_list_next (iter);
3037 iter = g_list_next (iter);
3038 val = val->next;
3039 ++pos;
3041 else /* if (val_in_menubar && iter_in_new_menubar) */
3043 int nr = pos;
3044 /* This corresponds to:
3045 Current: A B C
3046 New: A C B
3047 Move C before B */
3049 g_object_ref (G_OBJECT (witem2));
3050 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
3051 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
3052 GTK_WIDGET (witem2), pos);
3053 g_object_unref (G_OBJECT (witem2));
3055 g_list_free (*list);
3056 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
3057 while (nr-- > 0) iter = g_list_next (iter);
3058 if (iter) iter = g_list_next (iter);
3059 val = val->next;
3060 ++pos;
3064 /* Update the rest of the menu bar. */
3065 xg_update_menubar (menubar, f, list, iter, pos, val,
3066 select_cb, deactivate_cb, highlight_cb, cl_data);
3069 /* Update the menu item W so it corresponds to VAL.
3070 SELECT_CB is the callback to use when a menu item is selected.
3071 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3072 CL_DATA is the data to set in the widget for menu invocation. */
3074 static void
3075 xg_update_menu_item (widget_value *val,
3076 GtkWidget *w,
3077 GCallback select_cb,
3078 GCallback highlight_cb,
3079 xg_menu_cb_data *cl_data)
3081 GtkWidget *wchild;
3082 GtkLabel *wlbl = 0;
3083 GtkLabel *wkey = 0;
3084 char *utf8_label;
3085 char *utf8_key;
3086 const char *old_label = 0;
3087 const char *old_key = 0;
3088 xg_menu_item_cb_data *cb_data;
3089 bool label_changed = false;
3091 wchild = XG_BIN_CHILD (w);
3092 utf8_label = get_utf8_string (val->name);
3093 utf8_key = get_utf8_string (val->key);
3095 /* See if W is a menu item with a key. See make_menu_item above. */
3096 if (GTK_IS_BOX (wchild))
3098 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
3100 wlbl = GTK_LABEL (list->data);
3101 wkey = GTK_LABEL (list->next->data);
3102 g_list_free (list);
3104 if (! utf8_key)
3106 /* Remove the key and keep just the label. */
3107 g_object_ref (G_OBJECT (wlbl));
3108 gtk_container_remove (GTK_CONTAINER (w), wchild);
3109 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
3110 g_object_unref (G_OBJECT (wlbl));
3111 wkey = 0;
3115 else /* Just a label. */
3117 wlbl = GTK_LABEL (wchild);
3119 /* Check if there is now a key. */
3120 if (utf8_key)
3122 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
3123 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
3125 wlbl = GTK_LABEL (list->data);
3126 wkey = GTK_LABEL (list->next->data);
3127 g_list_free (list);
3129 gtk_container_remove (GTK_CONTAINER (w), wchild);
3130 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3134 if (wkey) old_key = gtk_label_get_label (wkey);
3135 if (wlbl) old_label = gtk_label_get_label (wlbl);
3137 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
3139 label_changed = true;
3140 gtk_label_set_text (wkey, utf8_key);
3143 if (! old_label || strcmp (utf8_label, old_label) != 0)
3145 label_changed = true;
3146 gtk_label_set_text (wlbl, utf8_label);
3149 if (utf8_key) g_free (utf8_key);
3150 if (utf8_label) g_free (utf8_label);
3152 if (! val->enabled && gtk_widget_get_sensitive (w))
3153 gtk_widget_set_sensitive (w, FALSE);
3154 else if (val->enabled && ! gtk_widget_get_sensitive (w))
3155 gtk_widget_set_sensitive (w, TRUE);
3157 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
3158 if (cb_data)
3160 cb_data->call_data = val->call_data;
3161 cb_data->help = val->help;
3162 cb_data->cl_data = cl_data;
3164 /* We assume the callback functions don't change. */
3165 if (val->call_data && ! val->contents)
3167 /* This item shall have a select callback. */
3168 if (! cb_data->select_id)
3169 cb_data->select_id
3170 = g_signal_connect (G_OBJECT (w), "activate",
3171 select_cb, cb_data);
3173 else if (cb_data->select_id)
3175 g_signal_handler_disconnect (w, cb_data->select_id);
3176 cb_data->select_id = 0;
3180 #if GTK_CHECK_VERSION (2, 16, 0)
3181 if (label_changed) /* See comment in xg_update_menubar. */
3182 g_object_notify (G_OBJECT (w), "label");
3183 #endif
3186 /* Update the toggle menu item W so it corresponds to VAL. */
3188 static void
3189 xg_update_toggle_item (widget_value *val, GtkWidget *w)
3191 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3194 /* Update the radio menu item W so it corresponds to VAL. */
3196 static void
3197 xg_update_radio_item (widget_value *val, GtkWidget *w)
3199 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3202 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3203 SUBMENU may be NULL, in that case a new menu is created.
3204 F is the frame the menu bar belongs to.
3205 VAL describes the contents of the menu bar.
3206 SELECT_CB is the callback to use when a menu item is selected.
3207 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3208 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3209 CL_DATA is the call back data to use for any newly created items.
3211 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3212 was NULL. */
3214 static GtkWidget *
3215 xg_update_submenu (GtkWidget *submenu,
3216 struct frame *f,
3217 widget_value *val,
3218 GCallback select_cb,
3219 GCallback deactivate_cb,
3220 GCallback highlight_cb,
3221 xg_menu_cb_data *cl_data)
3223 GtkWidget *newsub = submenu;
3224 GList *list = 0;
3225 GList *iter;
3226 widget_value *cur;
3227 GList *first_radio = 0;
3229 if (submenu)
3230 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3232 for (cur = val, iter = list;
3233 cur && iter;
3234 iter = g_list_next (iter), cur = cur->next)
3236 GtkWidget *w = GTK_WIDGET (iter->data);
3238 /* Remember first radio button in a group. If we get a mismatch in
3239 a radio group we must rebuild the whole group so that the connections
3240 in GTK becomes correct. */
3241 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3242 first_radio = iter;
3243 else if (cur->button_type != BUTTON_TYPE_RADIO
3244 && ! GTK_IS_RADIO_MENU_ITEM (w))
3245 first_radio = 0;
3247 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3249 if (! menu_separator_name_p (cur->name))
3250 break;
3252 else if (GTK_IS_CHECK_MENU_ITEM (w))
3254 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3255 break;
3256 xg_update_toggle_item (cur, w);
3257 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3259 else if (GTK_IS_RADIO_MENU_ITEM (w))
3261 if (cur->button_type != BUTTON_TYPE_RADIO)
3262 break;
3263 xg_update_radio_item (cur, w);
3264 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3266 else if (GTK_IS_MENU_ITEM (w))
3268 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3269 GtkWidget *sub;
3271 if (cur->button_type != BUTTON_TYPE_NONE ||
3272 menu_separator_name_p (cur->name))
3273 break;
3275 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3277 sub = gtk_menu_item_get_submenu (witem);
3278 if (sub && ! cur->contents)
3280 /* Not a submenu anymore. */
3281 g_object_ref (G_OBJECT (sub));
3282 remove_submenu (witem);
3283 gtk_widget_destroy (sub);
3285 else if (cur->contents)
3287 GtkWidget *nsub;
3289 nsub = xg_update_submenu (sub, f, cur->contents,
3290 select_cb, deactivate_cb,
3291 highlight_cb, cl_data);
3293 /* If this item just became a submenu, we must set it. */
3294 if (nsub != sub)
3295 gtk_menu_item_set_submenu (witem, nsub);
3298 else
3300 /* Structural difference. Remove everything from here and down
3301 in SUBMENU. */
3302 break;
3306 /* Remove widgets from first structural change. */
3307 if (iter)
3309 /* If we are adding new menu items below, we must remove from
3310 first radio button so that radio groups become correct. */
3311 if (cur && first_radio) xg_destroy_widgets (first_radio);
3312 else xg_destroy_widgets (iter);
3315 if (cur)
3317 /* More items added. Create them. */
3318 newsub = create_menus (cur,
3320 select_cb,
3321 deactivate_cb,
3322 highlight_cb,
3325 submenu,
3326 cl_data,
3330 if (list) g_list_free (list);
3332 return newsub;
3335 /* Update the MENUBAR.
3336 F is the frame the menu bar belongs to.
3337 VAL describes the contents of the menu bar.
3338 If DEEP_P, rebuild all but the top level menu names in
3339 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3340 SELECT_CB is the callback to use when a menu item is selected.
3341 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3342 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3344 void
3345 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3346 widget_value *val, bool deep_p,
3347 GCallback select_cb, GCallback deactivate_cb,
3348 GCallback highlight_cb)
3350 xg_menu_cb_data *cl_data;
3351 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3353 if (! list) return;
3355 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3357 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3358 select_cb, deactivate_cb, highlight_cb, cl_data);
3360 if (deep_p)
3362 widget_value *cur;
3364 /* Update all sub menus.
3365 We must keep the submenus (GTK menu item widgets) since the
3366 X Window in the XEvent that activates the menu are those widgets. */
3368 /* Update cl_data, menu_item things in F may have changed. */
3369 update_cl_data (cl_data, f, highlight_cb);
3371 for (cur = val->contents; cur; cur = cur->next)
3373 GList *iter;
3374 GtkWidget *sub = 0;
3375 GtkWidget *newsub;
3376 GtkMenuItem *witem = 0;
3378 /* Find sub menu that corresponds to val and update it. */
3379 for (iter = list ; iter; iter = g_list_next (iter))
3381 witem = GTK_MENU_ITEM (iter->data);
3382 if (xg_item_label_same_p (witem, cur->name))
3384 sub = gtk_menu_item_get_submenu (witem);
3385 break;
3389 newsub = xg_update_submenu (sub,
3391 cur->contents,
3392 select_cb,
3393 deactivate_cb,
3394 highlight_cb,
3395 cl_data);
3396 /* sub may still be NULL. If we just updated non deep and added
3397 a new menu bar item, it has no sub menu yet. So we set the
3398 newly created sub menu under witem. */
3399 if (newsub != sub && witem != 0)
3401 xg_set_screen (newsub, f);
3402 gtk_menu_item_set_submenu (witem, newsub);
3407 g_list_free (list);
3408 gtk_widget_show_all (menubar);
3411 /* Callback called when the menu bar W is mapped.
3412 Used to find the height of the menu bar if we didn't get it
3413 after showing the widget. */
3415 static void
3416 menubar_map_cb (GtkWidget *w, gpointer user_data)
3418 GtkRequisition req;
3419 struct frame *f = user_data;
3420 gtk_widget_get_preferred_size (w, NULL, &req);
3421 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3423 FRAME_MENUBAR_HEIGHT (f) = req.height;
3424 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3428 /* Recompute all the widgets of frame F, when the menu bar has been
3429 changed. */
3431 void
3432 xg_update_frame_menubar (struct frame *f)
3434 struct x_output *x = f->output_data.x;
3435 GtkRequisition req;
3437 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3438 return;
3440 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3441 return; /* Already done this, happens for frames created invisible. */
3443 block_input ();
3445 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3446 FALSE, FALSE, 0);
3447 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3449 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3450 gtk_widget_show_all (x->menubar_widget);
3451 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3453 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3455 FRAME_MENUBAR_HEIGHT (f) = req.height;
3456 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3458 unblock_input ();
3461 /* Get rid of the menu bar of frame F, and free its storage.
3462 This is used when deleting a frame, and when turning off the menu bar. */
3464 void
3465 free_frame_menubar (struct frame *f)
3467 struct x_output *x = f->output_data.x;
3469 if (x->menubar_widget)
3471 block_input ();
3473 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3474 /* The menubar and its children shall be deleted when removed from
3475 the container. */
3476 x->menubar_widget = 0;
3477 FRAME_MENUBAR_HEIGHT (f) = 0;
3478 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3479 unblock_input ();
3483 bool
3484 xg_event_is_for_menubar (struct frame *f, const XEvent *event)
3486 struct x_output *x = f->output_data.x;
3487 GList *iter;
3488 GdkRectangle rec;
3489 GList *list;
3490 GdkDisplay *gdpy;
3491 GdkWindow *gw;
3492 GdkEvent gevent;
3493 GtkWidget *gwdesc;
3495 if (! x->menubar_widget) return 0;
3497 if (! (event->xbutton.x >= 0
3498 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3499 && event->xbutton.y >= 0
3500 && event->xbutton.y < FRAME_MENUBAR_HEIGHT (f)
3501 && event->xbutton.same_screen))
3502 return 0;
3504 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3505 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3506 if (! gw) return 0;
3507 gevent.any.window = gw;
3508 gevent.any.type = GDK_NOTHING;
3509 gwdesc = gtk_get_event_widget (&gevent);
3510 if (! gwdesc) return 0;
3511 if (! GTK_IS_MENU_BAR (gwdesc)
3512 && ! GTK_IS_MENU_ITEM (gwdesc)
3513 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3514 return 0;
3516 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3517 if (! list) return 0;
3518 rec.x = event->xbutton.x;
3519 rec.y = event->xbutton.y;
3520 rec.width = 1;
3521 rec.height = 1;
3523 for (iter = list ; iter; iter = g_list_next (iter))
3525 GtkWidget *w = GTK_WIDGET (iter->data);
3526 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3527 break;
3529 g_list_free (list);
3530 return iter != 0;
3535 /***********************************************************************
3536 Scroll bar functions
3537 ***********************************************************************/
3540 /* Setting scroll bar values invokes the callback. Use this variable
3541 to indicate that callback should do nothing. */
3543 bool xg_ignore_gtk_scrollbar;
3545 /* Width and height of scroll bars for the current theme. */
3546 static int scroll_bar_width_for_theme;
3547 static int scroll_bar_height_for_theme;
3549 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3550 may be larger than 32 bits. Keep a mapping from integer index to widget
3551 pointers to get around the 32 bit limitation. */
3553 static struct
3555 GtkWidget **widgets;
3556 ptrdiff_t max_size;
3557 ptrdiff_t used;
3558 } id_to_widget;
3560 /* Grow this much every time we need to allocate more */
3562 #define ID_TO_WIDGET_INCR 32
3564 /* Store the widget pointer W in id_to_widget and return the integer index. */
3566 static ptrdiff_t
3567 xg_store_widget_in_map (GtkWidget *w)
3569 ptrdiff_t i;
3571 if (id_to_widget.max_size == id_to_widget.used)
3573 ptrdiff_t new_size;
3574 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3575 memory_full (SIZE_MAX);
3577 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3578 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3579 new_size, sizeof (GtkWidget *));
3581 for (i = id_to_widget.max_size; i < new_size; ++i)
3582 id_to_widget.widgets[i] = 0;
3583 id_to_widget.max_size = new_size;
3586 /* Just loop over the array and find a free place. After all,
3587 how many scroll bars are we creating? Should be a small number.
3588 The check above guarantees we will find a free place. */
3589 for (i = 0; i < id_to_widget.max_size; ++i)
3591 if (! id_to_widget.widgets[i])
3593 id_to_widget.widgets[i] = w;
3594 ++id_to_widget.used;
3596 return i;
3600 /* Should never end up here */
3601 emacs_abort ();
3604 /* Remove pointer at IDX from id_to_widget.
3605 Called when scroll bar is destroyed. */
3607 static void
3608 xg_remove_widget_from_map (ptrdiff_t idx)
3610 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3612 id_to_widget.widgets[idx] = 0;
3613 --id_to_widget.used;
3617 /* Get the widget pointer at IDX from id_to_widget. */
3619 static GtkWidget *
3620 xg_get_widget_from_map (ptrdiff_t idx)
3622 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3623 return id_to_widget.widgets[idx];
3625 return 0;
3628 static void
3629 update_theme_scrollbar_width (void)
3631 #ifdef HAVE_GTK3
3632 GtkAdjustment *vadj;
3633 #else
3634 GtkObject *vadj;
3635 #endif
3636 GtkWidget *wscroll;
3637 int w = 0, b = 0;
3639 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3640 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3641 g_object_ref_sink (G_OBJECT (wscroll));
3642 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3643 gtk_widget_destroy (wscroll);
3644 g_object_unref (G_OBJECT (wscroll));
3645 w += 2*b;
3646 #ifndef HAVE_GTK3
3647 if (w < 16) w = 16;
3648 #endif
3649 scroll_bar_width_for_theme = w;
3652 static void
3653 update_theme_scrollbar_height (void)
3655 #ifdef HAVE_GTK3
3656 GtkAdjustment *hadj;
3657 #else
3658 GtkObject *hadj;
3659 #endif
3660 GtkWidget *wscroll;
3661 int w = 0, b = 0;
3663 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX, 0.1, 0.1, 0.1);
3664 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3665 g_object_ref_sink (G_OBJECT (wscroll));
3666 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3667 gtk_widget_destroy (wscroll);
3668 g_object_unref (G_OBJECT (wscroll));
3669 w += 2*b;
3670 if (w < 12) w = 12;
3671 scroll_bar_height_for_theme = w;
3675 xg_get_default_scrollbar_width (struct frame *f)
3677 return scroll_bar_width_for_theme * xg_get_scale (f);
3681 xg_get_default_scrollbar_height (struct frame *f)
3683 /* Apparently there's no default height for themes. */
3684 return scroll_bar_width_for_theme * xg_get_scale (f);
3687 /* Return the scrollbar id for X Window WID on display DPY.
3688 Return -1 if WID not in id_to_widget. */
3690 ptrdiff_t
3691 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3693 ptrdiff_t idx;
3694 GtkWidget *w;
3696 w = xg_win_to_widget (dpy, wid);
3698 if (w)
3700 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3701 if (id_to_widget.widgets[idx] == w)
3702 return idx;
3705 return -1;
3708 /* Callback invoked when scroll bar WIDGET is destroyed.
3709 DATA is the index into id_to_widget for WIDGET.
3710 We free pointer to last scroll bar values here and remove the index. */
3712 static void
3713 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3715 intptr_t id = (intptr_t) data;
3716 xg_remove_widget_from_map (id);
3719 static void
3720 xg_finish_scroll_bar_creation (struct frame *f,
3721 GtkWidget *wscroll,
3722 struct scroll_bar *bar,
3723 GCallback scroll_callback,
3724 GCallback end_callback,
3725 const char *scroll_bar_name)
3727 GtkWidget *webox = gtk_event_box_new ();
3729 gtk_widget_set_name (wscroll, scroll_bar_name);
3730 #ifndef HAVE_GTK3
3731 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3732 #endif
3733 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3735 ptrdiff_t scroll_id = xg_store_widget_in_map (wscroll);
3737 g_signal_connect (G_OBJECT (wscroll),
3738 "destroy",
3739 G_CALLBACK (xg_gtk_scroll_destroy),
3740 (gpointer) scroll_id);
3741 g_signal_connect (G_OBJECT (wscroll),
3742 "change-value",
3743 scroll_callback,
3744 (gpointer) bar);
3745 g_signal_connect (G_OBJECT (wscroll),
3746 "button-release-event",
3747 end_callback,
3748 (gpointer) bar);
3750 /* The scroll bar widget does not draw on a window of its own. Instead
3751 it draws on the parent window, in this case the edit widget. So
3752 whenever the edit widget is cleared, the scroll bar needs to redraw
3753 also, which causes flicker. Put an event box between the edit widget
3754 and the scroll bar, so the scroll bar instead draws itself on the
3755 event box window. */
3756 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3757 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3759 xg_set_widget_bg (f, webox, FRAME_BACKGROUND_PIXEL (f));
3761 /* N.B. The event box doesn't become a real X11 window until we ask
3762 for its XID via GTK_WIDGET_TO_X_WIN. If the event box is not a
3763 real X window, it and its scroll-bar child try to draw on the
3764 Emacs main window, which we draw over using Xlib. */
3765 gtk_widget_realize (webox);
3766 GTK_WIDGET_TO_X_WIN (webox);
3768 /* Set the cursor to an arrow. */
3769 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3771 bar->x_window = scroll_id;
3774 /* Create a scroll bar widget for frame F. Store the scroll bar
3775 in BAR.
3776 SCROLL_CALLBACK is the callback to invoke when the value of the
3777 bar changes.
3778 END_CALLBACK is the callback to invoke when scrolling ends.
3779 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3780 to set resources for the widget. */
3782 void
3783 xg_create_scroll_bar (struct frame *f,
3784 struct scroll_bar *bar,
3785 GCallback scroll_callback,
3786 GCallback end_callback,
3787 const char *scroll_bar_name)
3789 GtkWidget *wscroll;
3790 #ifdef HAVE_GTK3
3791 GtkAdjustment *vadj;
3792 #else
3793 GtkObject *vadj;
3794 #endif
3796 /* Page, step increment values are not so important here, they
3797 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3798 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3799 0.1, 0.1, 0.1);
3801 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3803 xg_finish_scroll_bar_creation (f, wscroll, bar, scroll_callback,
3804 end_callback, scroll_bar_name);
3805 bar->horizontal = 0;
3808 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3809 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3810 of the bar changes. END_CALLBACK is the callback to invoke when
3811 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3812 bar. Can be used to set resources for the widget. */
3814 void
3815 xg_create_horizontal_scroll_bar (struct frame *f,
3816 struct scroll_bar *bar,
3817 GCallback scroll_callback,
3818 GCallback end_callback,
3819 const char *scroll_bar_name)
3821 GtkWidget *wscroll;
3822 #ifdef HAVE_GTK3
3823 GtkAdjustment *hadj;
3824 #else
3825 GtkObject *hadj;
3826 #endif
3828 /* Page, step increment values are not so important here, they
3829 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3830 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX,
3831 0.1, 0.1, 0.1);
3833 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3835 xg_finish_scroll_bar_creation (f, wscroll, bar, scroll_callback,
3836 end_callback, scroll_bar_name);
3837 bar->horizontal = 1;
3840 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3842 void
3843 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3845 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3846 if (w)
3848 GtkWidget *wparent = gtk_widget_get_parent (w);
3849 gtk_widget_destroy (w);
3850 gtk_widget_destroy (wparent);
3851 SET_FRAME_GARBAGED (f);
3855 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3856 in frame F.
3857 TOP/LEFT are the new pixel positions where the bar shall appear.
3858 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3860 void
3861 xg_update_scrollbar_pos (struct frame *f,
3862 ptrdiff_t scrollbar_id,
3863 int top,
3864 int left,
3865 int width,
3866 int height)
3868 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3869 if (wscroll)
3871 GtkWidget *wfixed = f->output_data.x->edit_widget;
3872 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3873 gint msl;
3874 int scale = xg_get_scale (f);
3876 top /= scale;
3877 left /= scale;
3878 height /= scale;
3879 left -= (scale - 1) * ((width / scale) >> 1);
3881 /* Clear out old position. */
3882 int oldx = -1, oldy = -1, oldw, oldh;
3883 if (gtk_widget_get_parent (wparent) == wfixed)
3885 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3886 "x", &oldx, "y", &oldy, NULL);
3887 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3890 /* Move and resize to new values. */
3891 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3892 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3893 bool hidden = height < msl;
3894 if (hidden)
3896 /* No room. Hide scroll bar as some themes output a warning if
3897 the height is less than the min size. */
3898 gtk_widget_hide (wparent);
3899 gtk_widget_hide (wscroll);
3901 else
3903 gtk_widget_show_all (wparent);
3904 gtk_widget_set_size_request (wscroll, width, height);
3906 if (oldx != -1 && oldw > 0 && oldh > 0)
3908 /* Clear under old scroll bar position. */
3909 oldw += (scale - 1) * oldw;
3910 oldx -= (scale - 1) * oldw;
3911 x_clear_area (f, oldx, oldy, oldw, oldh);
3914 if (!hidden)
3916 GtkWidget *scrollbar = xg_get_widget_from_map (scrollbar_id);
3917 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
3919 /* Don't obscure any child frames. */
3920 XLowerWindow (FRAME_X_DISPLAY (f), GTK_WIDGET_TO_X_WIN (webox));
3923 /* GTK does not redraw until the main loop is entered again, but
3924 if there are no X events pending we will not enter it. So we sync
3925 here to get some events. */
3927 x_sync (f);
3928 SET_FRAME_GARBAGED (f);
3929 cancel_mouse_face (f);
3934 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3935 in frame F.
3936 TOP/LEFT are the new pixel positions where the bar shall appear.
3937 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3939 void
3940 xg_update_horizontal_scrollbar_pos (struct frame *f,
3941 ptrdiff_t scrollbar_id,
3942 int top,
3943 int left,
3944 int width,
3945 int height)
3948 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3950 if (wscroll)
3952 GtkWidget *wfixed = f->output_data.x->edit_widget;
3953 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3954 gint msl;
3956 /* Clear out old position. */
3957 int oldx = -1, oldy = -1, oldw, oldh;
3958 if (gtk_widget_get_parent (wparent) == wfixed)
3960 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3961 "x", &oldx, "y", &oldy, NULL);
3962 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3965 /* Move and resize to new values. */
3966 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3967 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3968 if (msl > width)
3970 /* No room. Hide scroll bar as some themes output a warning if
3971 the width is less than the min size. */
3972 gtk_widget_hide (wparent);
3973 gtk_widget_hide (wscroll);
3975 else
3977 gtk_widget_show_all (wparent);
3978 gtk_widget_set_size_request (wscroll, width, height);
3980 if (oldx != -1 && oldw > 0 && oldh > 0)
3981 /* Clear under old scroll bar position. */
3982 x_clear_area (f, oldx, oldy, oldw, oldh);
3984 /* GTK does not redraw until the main loop is entered again, but
3985 if there are no X events pending we will not enter it. So we sync
3986 here to get some events. */
3989 GtkWidget *scrollbar =
3990 xg_get_widget_from_map (scrollbar_id);
3991 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
3993 /* Don't obscure any child frames. */
3994 XLowerWindow (FRAME_X_DISPLAY (f), GTK_WIDGET_TO_X_WIN (webox));
3997 x_sync (f);
3998 SET_FRAME_GARBAGED (f);
3999 cancel_mouse_face (f);
4004 /* Get the current value of the range, truncated to an integer. */
4006 static int
4007 int_gtk_range_get_value (GtkRange *range)
4009 return gtk_range_get_value (range);
4013 /* Set the thumb size and position of scroll bar BAR. We are currently
4014 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4016 void
4017 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
4018 int portion,
4019 int position,
4020 int whole)
4022 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
4024 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4026 if (wscroll && bar->dragging == -1)
4028 GtkAdjustment *adj;
4029 gdouble shown;
4030 gdouble top;
4031 int size, value;
4032 int old_size;
4033 int new_step;
4034 bool changed = 0;
4036 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
4038 if (scroll_bar_adjust_thumb_portion_p)
4040 /* We do the same as for MOTIF in xterm.c, use 30 chars per
4041 line rather than the real portion value. This makes the
4042 thumb less likely to resize and that looks better. */
4043 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4045 /* When the thumb is at the bottom, position == whole.
4046 So we need to increase `whole' to make space for the thumb. */
4047 whole += portion;
4050 if (whole <= 0)
4051 top = 0, shown = 1;
4052 else
4054 top = (gdouble) position / whole;
4055 shown = (gdouble) portion / whole;
4058 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
4059 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
4061 /* Assume all lines are of equal size. */
4062 new_step = size / max (1, FRAME_LINES (f));
4064 old_size = gtk_adjustment_get_page_size (adj);
4065 if (old_size != size)
4067 int old_step = gtk_adjustment_get_step_increment (adj);
4068 if (old_step != new_step)
4070 gtk_adjustment_set_page_size (adj, size);
4071 gtk_adjustment_set_step_increment (adj, new_step);
4072 /* Assume a page increment is about 95% of the page size */
4073 gtk_adjustment_set_page_increment (adj, size - size / 20);
4074 changed = 1;
4078 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
4080 block_input ();
4082 /* gtk_range_set_value invokes the callback. Set
4083 ignore_gtk_scrollbar to make the callback do nothing */
4084 xg_ignore_gtk_scrollbar = 1;
4086 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
4087 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
4088 else if (changed)
4089 gtk_adjustment_changed (adj);
4091 xg_ignore_gtk_scrollbar = 0;
4093 unblock_input ();
4098 /* Set the thumb size and position of horizontal scroll bar BAR. We are
4099 currently displaying PORTION out of a whole WHOLE, and our position
4100 POSITION. */
4101 void
4102 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar *bar,
4103 int portion,
4104 int position,
4105 int whole)
4107 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
4109 if (wscroll && bar->dragging == -1)
4111 GtkAdjustment *adj;
4112 int lower = 0;
4113 int upper = max (whole - 1, 0);
4114 int pagesize = min (upper, max (portion, 0));
4115 int value = max (0, min (position, upper - pagesize));
4116 /* These should be set to something more <portion, whole>
4117 related. */
4118 int page_increment = 4;
4119 int step_increment = 1;
4121 block_input ();
4122 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
4123 gtk_adjustment_configure (adj, (gdouble) value, (gdouble) lower,
4124 (gdouble) upper, (gdouble) step_increment,
4125 (gdouble) page_increment, (gdouble) pagesize);
4126 gtk_adjustment_changed (adj);
4127 unblock_input ();
4131 /* Return true if EVENT is for a scroll bar in frame F.
4132 When the same X window is used for several Gtk+ widgets, we cannot
4133 say for sure based on the X window alone if an event is for the
4134 frame. This function does additional checks. */
4136 bool
4137 xg_event_is_for_scrollbar (struct frame *f, const XEvent *event)
4139 bool retval = 0;
4141 if (f && event->type == ButtonPress && event->xbutton.button < 4)
4143 /* Check if press occurred outside the edit widget. */
4144 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
4145 GdkWindow *gwin;
4146 #ifdef HAVE_GTK3
4147 #if GTK_CHECK_VERSION (3, 20, 0)
4148 GdkDevice *gdev
4149 = gdk_seat_get_pointer (gdk_display_get_default_seat (gdpy));
4150 #else
4151 GdkDevice *gdev = gdk_device_manager_get_client_pointer
4152 (gdk_display_get_device_manager (gdpy));
4153 #endif
4154 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
4155 #else
4156 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
4157 #endif
4158 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
4160 else if (f
4161 && ((event->type == ButtonRelease && event->xbutton.button < 4)
4162 || event->type == MotionNotify))
4164 /* If we are releasing or moving the scroll bar, it has the grab. */
4165 GtkWidget *w = gtk_grab_get_current ();
4166 retval = w != 0 && GTK_IS_SCROLLBAR (w);
4169 return retval;
4173 /***********************************************************************
4174 Printing
4175 ***********************************************************************/
4176 #ifdef USE_CAIRO
4177 static GtkPrintSettings *print_settings = NULL;
4178 static GtkPageSetup *page_setup = NULL;
4180 void
4181 xg_page_setup_dialog (void)
4183 GtkPageSetup *new_page_setup = NULL;
4185 if (print_settings == NULL)
4186 print_settings = gtk_print_settings_new ();
4187 new_page_setup = gtk_print_run_page_setup_dialog (NULL, page_setup,
4188 print_settings);
4189 if (page_setup)
4190 g_object_unref (page_setup);
4191 page_setup = new_page_setup;
4194 Lisp_Object
4195 xg_get_page_setup (void)
4197 Lisp_Object orientation_symbol;
4199 if (page_setup == NULL)
4200 page_setup = gtk_page_setup_new ();
4202 switch (gtk_page_setup_get_orientation (page_setup))
4204 case GTK_PAGE_ORIENTATION_PORTRAIT:
4205 orientation_symbol = Qportrait;
4206 break;
4207 case GTK_PAGE_ORIENTATION_LANDSCAPE:
4208 orientation_symbol = Qlandscape;
4209 break;
4210 case GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT:
4211 orientation_symbol = Qreverse_portrait;
4212 break;
4213 case GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE:
4214 orientation_symbol = Qreverse_landscape;
4215 break;
4216 default:
4217 eassume (false);
4220 return listn (CONSTYPE_HEAP, 7,
4221 Fcons (Qorientation, orientation_symbol),
4222 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4223 Fcons (Qwidth,
4224 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width)),
4225 Fcons (Qheight,
4226 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height)),
4227 Fcons (Qleft_margin,
4228 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin)),
4229 Fcons (Qright_margin,
4230 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin)),
4231 Fcons (Qtop_margin,
4232 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin)),
4233 Fcons (Qbottom_margin,
4234 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin))
4235 #undef MAKE_FLOAT_PAGE_SETUP
4239 static void
4240 draw_page (GtkPrintOperation *operation, GtkPrintContext *context,
4241 gint page_nr, gpointer user_data)
4243 Lisp_Object frames = *((Lisp_Object *) user_data);
4244 struct frame *f = XFRAME (Fnth (make_number (page_nr), frames));
4245 cairo_t *cr = gtk_print_context_get_cairo_context (context);
4247 x_cr_draw_frame (cr, f);
4250 void
4251 xg_print_frames_dialog (Lisp_Object frames)
4253 GtkPrintOperation *print;
4254 GtkPrintOperationResult res;
4256 print = gtk_print_operation_new ();
4257 if (print_settings != NULL)
4258 gtk_print_operation_set_print_settings (print, print_settings);
4259 if (page_setup != NULL)
4260 gtk_print_operation_set_default_page_setup (print, page_setup);
4261 gtk_print_operation_set_n_pages (print, XINT (Flength (frames)));
4262 g_signal_connect (print, "draw-page", G_CALLBACK (draw_page), &frames);
4263 res = gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
4264 NULL, NULL);
4265 if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
4267 if (print_settings != NULL)
4268 g_object_unref (print_settings);
4269 print_settings =
4270 g_object_ref (gtk_print_operation_get_print_settings (print));
4272 g_object_unref (print);
4275 #endif /* USE_CAIRO */
4279 /***********************************************************************
4280 Tool bar functions
4281 ***********************************************************************/
4282 /* The key for the data we put in the GtkImage widgets. The data is
4283 the image used by Emacs. We use this to see if we need to update
4284 the GtkImage with a new image. */
4285 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4287 /* The key for storing the latest modifiers so the activate callback can
4288 get them. */
4289 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4291 /* The key for the data we put in the GtkImage widgets. The data is
4292 the stock name used by Emacs. We use this to see if we need to update
4293 the GtkImage with a new image. */
4294 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4296 /* As above, but this is used for named theme widgets, as opposed to
4297 stock items. */
4298 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4300 /* Callback function invoked when a tool bar item is pressed.
4301 W is the button widget in the tool bar that got pressed,
4302 CLIENT_DATA is an integer that is the index of the button in the
4303 tool bar. 0 is the first button. */
4305 static gboolean
4306 xg_tool_bar_button_cb (GtkWidget *widget,
4307 GdkEventButton *event,
4308 gpointer user_data)
4310 intptr_t state = event->state;
4311 gpointer ptr = (gpointer) state;
4312 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
4313 return FALSE;
4317 /* Callback function invoked when a tool bar item is pressed.
4318 W is the button widget in the tool bar that got pressed,
4319 CLIENT_DATA is an integer that is the index of the button in the
4320 tool bar. 0 is the first button. */
4322 static void
4323 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
4325 intptr_t idx = (intptr_t) client_data;
4326 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
4327 intptr_t mod = (intptr_t) gmod;
4329 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4330 Lisp_Object key, frame;
4331 struct input_event event;
4332 EVENT_INIT (event);
4334 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4335 return;
4337 idx *= TOOL_BAR_ITEM_NSLOTS;
4339 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
4340 XSETFRAME (frame, f);
4342 /* We generate two events here. The first one is to set the prefix
4343 to `(tool_bar)', see keyboard.c. */
4344 event.kind = TOOL_BAR_EVENT;
4345 event.frame_or_window = frame;
4346 event.arg = frame;
4347 kbd_buffer_store_event (&event);
4349 event.kind = TOOL_BAR_EVENT;
4350 event.frame_or_window = frame;
4351 event.arg = key;
4352 /* Convert between the modifier bits GDK uses and the modifier bits
4353 Emacs uses. This assumes GDK and X masks are the same, which they are when
4354 this is written. */
4355 event.modifiers = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), mod);
4356 kbd_buffer_store_event (&event);
4358 /* Return focus to the frame after we have clicked on a detached
4359 tool bar button. */
4360 x_focus_frame (f, false);
4363 static GtkWidget *
4364 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4366 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4367 GtkWidget *c1 = clist->data;
4368 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4370 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4371 g_list_free (clist);
4372 return GTK_IS_LABEL (c1) ? c1 : c2;
4376 /* This callback is called when the mouse enters or leaves a tool bar item.
4377 It is used for displaying and hiding the help text.
4378 W is the tool bar item, a button.
4379 EVENT is either an enter event or leave event.
4380 CLIENT_DATA is an integer that is the index of the button in the
4381 tool bar. 0 is the first button.
4383 Returns FALSE to tell GTK to keep processing this event. */
4385 static gboolean
4386 xg_tool_bar_help_callback (GtkWidget *w,
4387 GdkEventCrossing *event,
4388 gpointer client_data)
4390 intptr_t idx = (intptr_t) client_data;
4391 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4392 Lisp_Object help, frame;
4394 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4395 return FALSE;
4397 if (event->type == GDK_ENTER_NOTIFY)
4399 idx *= TOOL_BAR_ITEM_NSLOTS;
4400 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4402 if (NILP (help))
4403 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4405 else
4406 help = Qnil;
4408 XSETFRAME (frame, f);
4409 kbd_buffer_store_help_event (frame, help);
4411 return FALSE;
4415 /* This callback is called when a tool bar item shall be redrawn.
4416 It modifies the expose event so that the GtkImage widget redraws the
4417 whole image. This to overcome a bug that makes GtkImage draw the image
4418 in the wrong place when it tries to redraw just a part of the image.
4419 W is the GtkImage to be redrawn.
4420 EVENT is the expose event for W.
4421 CLIENT_DATA is unused.
4423 Returns FALSE to tell GTK to keep processing this event. */
4425 #ifndef HAVE_GTK3
4426 static gboolean
4427 xg_tool_bar_item_expose_callback (GtkWidget *w,
4428 GdkEventExpose *event,
4429 gpointer client_data)
4431 gint width, height;
4433 gdk_drawable_get_size (event->window, &width, &height);
4434 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4435 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4437 event->area.x = max (0, event->area.x);
4438 event->area.y = max (0, event->area.y);
4440 event->area.width = max (width, event->area.width);
4441 event->area.height = max (height, event->area.height);
4443 return FALSE;
4445 #endif
4447 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4448 #define toolbar_set_orientation(w, o) \
4449 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4450 #else
4451 #define toolbar_set_orientation(w, o) \
4452 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4453 #endif
4455 /* Attach a tool bar to frame F. */
4457 static void
4458 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4460 struct x_output *x = f->output_data.x;
4461 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4462 GtkWidget *top_widget = x->toolbar_widget;
4464 toolbar_set_orientation (x->toolbar_widget,
4465 into_hbox
4466 ? GTK_ORIENTATION_VERTICAL
4467 : GTK_ORIENTATION_HORIZONTAL);
4469 if (into_hbox)
4471 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4472 FALSE, FALSE, 0);
4474 if (EQ (pos, Qleft))
4475 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4476 top_widget,
4478 x->toolbar_in_hbox = true;
4480 else
4482 bool vbox_pos = x->menubar_widget != 0;
4483 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4484 FALSE, FALSE, 0);
4486 if (EQ (pos, Qtop))
4487 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4488 top_widget,
4489 vbox_pos);
4490 x->toolbar_in_hbox = false;
4492 x->toolbar_is_packed = true;
4495 static bool xg_update_tool_bar_sizes (struct frame *f);
4497 static void
4498 tb_size_cb (GtkWidget *widget,
4499 GdkRectangle *allocation,
4500 gpointer user_data)
4502 /* When tool bar is created it has one preferred size. But when size is
4503 allocated between widgets, it may get another. So we must update
4504 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4505 struct frame *f = user_data;
4507 if (xg_update_tool_bar_sizes (f))
4509 frame_size_history_add (f, Qtb_size_cb, 0, 0, Qnil);
4510 adjust_frame_size (f, -1, -1, 5, 0, Qtool_bar_lines);
4514 /* Create a tool bar for frame F. */
4516 static void
4517 xg_create_tool_bar (struct frame *f)
4519 struct x_output *x = f->output_data.x;
4520 #if GTK_CHECK_VERSION (3, 3, 6)
4521 GtkStyleContext *gsty;
4522 #endif
4523 struct xg_frame_tb_info *tbinfo
4524 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4525 TB_INFO_KEY);
4526 if (! tbinfo)
4528 tbinfo = xmalloc (sizeof (*tbinfo));
4529 tbinfo->last_tool_bar = Qnil;
4530 tbinfo->style = Qnil;
4531 tbinfo->hmargin = tbinfo->vmargin = 0;
4532 tbinfo->dir = GTK_TEXT_DIR_NONE;
4533 tbinfo->n_last_items = 0;
4534 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4535 TB_INFO_KEY,
4536 tbinfo);
4539 x->toolbar_widget = gtk_toolbar_new ();
4541 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4543 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4544 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4545 g_signal_connect (x->toolbar_widget, "size-allocate",
4546 G_CALLBACK (tb_size_cb), f);
4547 #if GTK_CHECK_VERSION (3, 3, 6)
4548 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4549 gtk_style_context_add_class (gsty, "primary-toolbar");
4550 #endif
4554 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4556 /* Find the right-to-left image named by RTL in the tool bar images for F.
4557 Returns IMAGE if RTL is not found. */
4559 static Lisp_Object
4560 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4562 int i;
4563 Lisp_Object file, rtl_name;
4565 rtl_name = Ffile_name_nondirectory (rtl);
4567 for (i = 0; i < f->n_tool_bar_items; ++i)
4569 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4570 if (!NILP (file = file_for_image (rtl_image)))
4572 file = call1 (intern ("file-name-sans-extension"),
4573 Ffile_name_nondirectory (file));
4574 if (! NILP (Fequal (file, rtl_name)))
4576 image = rtl_image;
4577 break;
4582 return image;
4585 static GtkToolItem *
4586 xg_make_tool_item (struct frame *f,
4587 GtkWidget *wimage,
4588 GtkWidget **wbutton,
4589 const char *label,
4590 int i, bool horiz, bool text_image)
4592 GtkToolItem *ti = gtk_tool_item_new ();
4593 GtkWidget *vb = gtk_box_new (horiz
4594 ? GTK_ORIENTATION_HORIZONTAL
4595 : GTK_ORIENTATION_VERTICAL,
4597 GtkWidget *wb = gtk_button_new ();
4598 /* The eventbox is here so we can have tooltips on disabled items. */
4599 GtkWidget *weventbox = gtk_event_box_new ();
4600 #if GTK_CHECK_VERSION (3, 3, 6)
4601 GtkCssProvider *css_prov = gtk_css_provider_new ();
4602 GtkStyleContext *gsty;
4604 gtk_css_provider_load_from_data (css_prov,
4605 "GtkEventBox {"
4606 " background-color: transparent;"
4607 "}",
4608 -1, NULL);
4610 gsty = gtk_widget_get_style_context (weventbox);
4611 gtk_style_context_add_provider (gsty,
4612 GTK_STYLE_PROVIDER (css_prov),
4613 GTK_STYLE_PROVIDER_PRIORITY_USER);
4614 g_object_unref (css_prov);
4615 #endif
4617 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4619 if (wimage && !text_image)
4620 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4621 if (label)
4622 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4623 if (wimage && text_image)
4624 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4626 #if GTK_CHECK_VERSION (3, 20, 0)
4627 gtk_widget_set_focus_on_click (wb, FALSE);
4628 #else
4629 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4630 #endif
4631 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4632 gtk_container_add (GTK_CONTAINER (wb), vb);
4633 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4634 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4636 if (wimage || label)
4638 intptr_t ii = i;
4639 gpointer gi = (gpointer) ii;
4641 g_signal_connect (G_OBJECT (wb), "clicked",
4642 G_CALLBACK (xg_tool_bar_callback),
4643 gi);
4645 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4647 #ifndef HAVE_GTK3
4648 /* Catch expose events to overcome an annoying redraw bug, see
4649 comment for xg_tool_bar_item_expose_callback. */
4650 g_signal_connect (G_OBJECT (ti),
4651 "expose-event",
4652 G_CALLBACK (xg_tool_bar_item_expose_callback),
4654 #endif
4655 gtk_tool_item_set_homogeneous (ti, FALSE);
4657 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4658 no distinction based on modifiers in the activate callback,
4659 so we have to do it ourselves. */
4660 g_signal_connect (wb, "button-release-event",
4661 G_CALLBACK (xg_tool_bar_button_cb),
4662 NULL);
4664 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4666 /* Use enter/leave notify to show help. We use the events
4667 rather than the GtkButton specific signals "enter" and
4668 "leave", so we can have only one callback. The event
4669 will tell us what kind of event it is. */
4670 g_signal_connect (G_OBJECT (weventbox),
4671 "enter-notify-event",
4672 G_CALLBACK (xg_tool_bar_help_callback),
4673 gi);
4674 g_signal_connect (G_OBJECT (weventbox),
4675 "leave-notify-event",
4676 G_CALLBACK (xg_tool_bar_help_callback),
4677 gi);
4680 if (wbutton) *wbutton = wb;
4682 return ti;
4685 static bool
4686 is_box_type (GtkWidget *vb, bool is_horizontal)
4688 #ifdef HAVE_GTK3
4689 bool ret = 0;
4690 if (GTK_IS_BOX (vb))
4692 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4693 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4694 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4696 return ret;
4697 #else
4698 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4699 #endif
4703 static bool
4704 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4705 const char *icon_name, const struct image *img,
4706 const char *label, bool horiz)
4708 gpointer old;
4709 GtkWidget *wimage;
4710 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4711 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4713 /* Check if the tool icon matches. */
4714 if (stock_name && wimage)
4716 old = g_object_get_data (G_OBJECT (wimage),
4717 XG_TOOL_BAR_STOCK_NAME);
4718 if (!old || strcmp (old, stock_name))
4719 return 1;
4721 else if (icon_name && wimage)
4723 old = g_object_get_data (G_OBJECT (wimage),
4724 XG_TOOL_BAR_ICON_NAME);
4725 if (!old || strcmp (old, icon_name))
4726 return 1;
4728 else if (wimage)
4730 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4731 XG_TOOL_BAR_IMAGE_DATA);
4732 Pixmap old_img = (Pixmap) gold_img;
4733 if (old_img != img->pixmap)
4734 return 1;
4737 /* Check button configuration and label. */
4738 if (is_box_type (vb, horiz)
4739 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4740 return 1;
4742 /* Ensure label is correct. */
4743 if (label && wlbl)
4744 gtk_label_set_text (GTK_LABEL (wlbl), label);
4745 return 0;
4748 static bool
4749 xg_update_tool_bar_sizes (struct frame *f)
4751 struct x_output *x = f->output_data.x;
4752 GtkRequisition req;
4753 int nl = 0, nr = 0, nt = 0, nb = 0;
4754 GtkWidget *top_widget = x->toolbar_widget;
4756 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4757 if (x->toolbar_in_hbox)
4759 int pos;
4760 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4761 top_widget,
4762 "position", &pos, NULL);
4763 if (pos == 0) nl = req.width;
4764 else nr = req.width;
4766 else
4768 int pos;
4769 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4770 top_widget,
4771 "position", &pos, NULL);
4772 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4773 else nb = req.height;
4776 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4777 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4778 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4779 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4781 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4782 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4783 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4784 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4785 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4786 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4788 return true;
4790 else
4791 return false;
4794 static char *
4795 find_icon_from_name (char *name,
4796 GtkIconTheme *icon_theme,
4797 char **icon_name)
4799 #if ! GTK_CHECK_VERSION (3, 10, 0)
4800 GtkStockItem stock_item;
4801 #endif
4803 if (name[0] == 'n' && name[1] == ':')
4805 *icon_name = name + 2;
4806 name = NULL;
4808 if (! gtk_icon_theme_has_icon (icon_theme, *icon_name))
4809 *icon_name = NULL;
4812 #if ! GTK_CHECK_VERSION (3, 10, 0)
4813 else if (gtk_stock_lookup (name, &stock_item))
4814 *icon_name = NULL;
4815 #endif
4816 else if (gtk_icon_theme_has_icon (icon_theme, name))
4818 *icon_name = name;
4819 name = NULL;
4821 else
4823 name = NULL;
4824 *icon_name = NULL;
4827 return name;
4831 /* Update the tool bar for frame F. Add new buttons and remove old. */
4833 void
4834 update_frame_tool_bar (struct frame *f)
4836 int i, j;
4837 struct x_output *x = f->output_data.x;
4838 int hmargin = 0, vmargin = 0;
4839 GtkToolbar *wtoolbar;
4840 GtkToolItem *ti;
4841 GtkTextDirection dir;
4842 Lisp_Object style;
4843 bool text_image, horiz;
4844 struct xg_frame_tb_info *tbinfo;
4845 GdkScreen *screen;
4846 GtkIconTheme *icon_theme;
4849 if (! FRAME_GTK_WIDGET (f))
4850 return;
4852 block_input ();
4854 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4856 hmargin = XFASTINT (Vtool_bar_button_margin);
4857 vmargin = XFASTINT (Vtool_bar_button_margin);
4859 else if (CONSP (Vtool_bar_button_margin))
4861 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4862 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4864 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4865 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4868 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4869 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4870 i.e. zero. This means that margins less than
4871 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4872 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4873 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4875 if (! x->toolbar_widget)
4876 xg_create_tool_bar (f);
4878 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4879 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4881 style = Ftool_bar_get_system_style ();
4882 screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4883 icon_theme = gtk_icon_theme_get_for_screen (screen);
4885 /* Are we up to date? */
4886 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4887 TB_INFO_KEY);
4889 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4890 && tbinfo->n_last_items == f->n_tool_bar_items
4891 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4892 && tbinfo->dir == dir
4893 && ! NILP (Fequal (tbinfo->style, style))
4894 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4896 unblock_input ();
4897 return;
4900 tbinfo->last_tool_bar = f->tool_bar_items;
4901 tbinfo->n_last_items = f->n_tool_bar_items;
4902 tbinfo->style = style;
4903 tbinfo->hmargin = hmargin;
4904 tbinfo->vmargin = vmargin;
4905 tbinfo->dir = dir;
4907 text_image = EQ (style, Qtext_image_horiz);
4908 horiz = EQ (style, Qboth_horiz) || text_image;
4910 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4912 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4913 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4914 int idx;
4915 ptrdiff_t img_id;
4916 int icon_size = 0;
4917 struct image *img = NULL;
4918 Lisp_Object image;
4919 Lisp_Object stock = Qnil;
4920 char *stock_name = NULL;
4921 char *icon_name = NULL;
4922 Lisp_Object rtl;
4923 GtkWidget *wbutton = NULL;
4924 Lisp_Object specified_file;
4925 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4926 const char *label
4927 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4928 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4929 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4930 : "";
4932 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4934 /* If this is a separator, use a gtk separator item. */
4935 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4937 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4939 if (ti)
4940 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4941 GTK_WIDGET (ti));
4942 ti = gtk_separator_tool_item_new ();
4943 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4945 j++;
4946 continue;
4949 /* Otherwise, the tool-bar item is an ordinary button. */
4951 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4953 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4954 ti = NULL;
4957 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4959 /* Ignore invalid image specifications. */
4960 image = PROP (TOOL_BAR_ITEM_IMAGES);
4961 if (!valid_image_p (image))
4963 if (ti)
4964 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4965 GTK_WIDGET (ti));
4966 continue;
4969 specified_file = file_for_image (image);
4970 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4971 stock = call1 (Qx_gtk_map_stock, specified_file);
4973 if (CONSP (stock))
4975 Lisp_Object tem;
4976 for (tem = stock; CONSP (tem); tem = XCDR (tem))
4977 if (! NILP (tem) && STRINGP (XCAR (tem)))
4979 stock_name = find_icon_from_name (SSDATA (XCAR (tem)),
4980 icon_theme,
4981 &icon_name);
4982 if (stock_name || icon_name) break;
4985 else if (STRINGP (stock))
4987 stock_name = find_icon_from_name (SSDATA (stock),
4988 icon_theme,
4989 &icon_name);
4992 if (stock_name || icon_name)
4993 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4995 if (stock_name == NULL && icon_name == NULL)
4997 /* No stock image, or stock item not known. Try regular
4998 image. If image is a vector, choose it according to the
4999 button state. */
5000 if (dir == GTK_TEXT_DIR_RTL
5001 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
5002 && STRINGP (rtl))
5003 image = find_rtl_image (f, image, rtl);
5005 if (VECTORP (image))
5007 if (enabled_p)
5008 idx = (selected_p
5009 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
5010 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
5011 else
5012 idx = (selected_p
5013 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
5014 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
5016 eassert (ASIZE (image) >= idx);
5017 image = AREF (image, idx);
5019 else
5020 idx = -1;
5022 img_id = lookup_image (f, image);
5023 img = IMAGE_FROM_ID (f, img_id);
5024 prepare_image_for_display (f, img);
5026 if (img->load_failed_p || img->pixmap == None)
5028 if (ti)
5029 gtk_container_remove (GTK_CONTAINER (wtoolbar),
5030 GTK_WIDGET (ti));
5031 continue;
5035 /* If there is an existing widget, check if it's stale; if so,
5036 remove it and make a new tool item from scratch. */
5037 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
5038 img, label, horiz))
5040 gtk_container_remove (GTK_CONTAINER (wtoolbar),
5041 GTK_WIDGET (ti));
5042 ti = NULL;
5045 if (ti == NULL)
5047 GtkWidget *w;
5049 /* Save the image so we can see if an update is needed the
5050 next time we call xg_tool_item_match_p. */
5051 if (EQ (style, Qtext))
5052 w = NULL;
5053 else if (stock_name)
5056 #if GTK_CHECK_VERSION (3, 10, 0)
5057 w = gtk_image_new_from_icon_name (stock_name, icon_size);
5058 #else
5059 w = gtk_image_new_from_stock (stock_name, icon_size);
5060 #endif
5061 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
5062 (gpointer) xstrdup (stock_name),
5063 (GDestroyNotify) xfree);
5065 else if (icon_name)
5067 w = gtk_image_new_from_icon_name (icon_name, icon_size);
5068 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
5069 (gpointer) xstrdup (icon_name),
5070 (GDestroyNotify) xfree);
5072 else
5074 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
5075 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
5076 (gpointer)img->pixmap);
5079 #if GTK_CHECK_VERSION (3, 14, 0)
5080 if (w)
5082 gtk_widget_set_margin_start (w, hmargin);
5083 gtk_widget_set_margin_end (w, hmargin);
5084 gtk_widget_set_margin_top (w, vmargin);
5085 gtk_widget_set_margin_bottom (w, vmargin);
5087 #else
5088 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
5089 #endif
5090 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
5091 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
5094 #undef PROP
5096 gtk_widget_set_sensitive (wbutton, enabled_p);
5097 j++;
5100 /* Remove buttons not longer needed. */
5103 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
5104 if (ti)
5105 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
5106 } while (ti != NULL);
5108 if (f->n_tool_bar_items != 0)
5110 if (! x->toolbar_is_packed)
5111 xg_pack_tool_bar (f, FRAME_TOOL_BAR_POSITION (f));
5112 gtk_widget_show_all (x->toolbar_widget);
5113 if (xg_update_tool_bar_sizes (f))
5115 int inhibit
5116 = ((f->after_make_frame
5117 && !f->tool_bar_resized
5118 && (EQ (frame_inhibit_implied_resize, Qt)
5119 || (CONSP (frame_inhibit_implied_resize)
5120 && !NILP (Fmemq (Qtool_bar_lines,
5121 frame_inhibit_implied_resize))))
5122 /* This will probably fail to DTRT in the
5123 fullheight/-width cases. */
5124 && NILP (get_frame_param (f, Qfullscreen)))
5126 : 2);
5128 frame_size_history_add (f, Qupdate_frame_tool_bar, 0, 0, Qnil);
5129 adjust_frame_size (f, -1, -1, inhibit, 0, Qtool_bar_lines);
5131 f->tool_bar_resized = f->tool_bar_redisplayed;
5134 unblock_input ();
5137 /* Deallocate all resources for the tool bar on frame F.
5138 Remove the tool bar. */
5140 void
5141 free_frame_tool_bar (struct frame *f)
5143 struct x_output *x = f->output_data.x;
5145 if (x->toolbar_widget)
5147 struct xg_frame_tb_info *tbinfo;
5148 GtkWidget *top_widget = x->toolbar_widget;
5150 block_input ();
5151 if (x->toolbar_is_packed)
5153 if (x->toolbar_in_hbox)
5154 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5155 top_widget);
5156 else
5157 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5158 top_widget);
5160 else
5161 gtk_widget_destroy (x->toolbar_widget);
5163 x->toolbar_widget = 0;
5164 x->toolbar_widget = 0;
5165 x->toolbar_is_packed = false;
5166 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
5167 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
5169 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5170 TB_INFO_KEY);
5171 if (tbinfo)
5173 xfree (tbinfo);
5174 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5175 TB_INFO_KEY,
5176 NULL);
5179 frame_size_history_add (f, Qfree_frame_tool_bar, 0, 0, Qnil);
5180 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5182 unblock_input ();
5186 void
5187 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
5189 struct x_output *x = f->output_data.x;
5190 GtkWidget *top_widget = x->toolbar_widget;
5192 if (! x->toolbar_widget || ! top_widget)
5193 return;
5195 block_input ();
5196 g_object_ref (top_widget);
5197 if (x->toolbar_is_packed)
5199 if (x->toolbar_in_hbox)
5200 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5201 top_widget);
5202 else
5203 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5204 top_widget);
5207 xg_pack_tool_bar (f, pos);
5208 g_object_unref (top_widget);
5210 if (xg_update_tool_bar_sizes (f))
5212 frame_size_history_add (f, Qxg_change_toolbar_position, 0, 0, Qnil);
5213 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5217 unblock_input ();
5222 /***********************************************************************
5223 Initializing
5224 ***********************************************************************/
5225 void
5226 xg_initialize (void)
5228 GtkBindingSet *binding_set;
5229 GtkSettings *settings;
5231 #if HAVE_XFT
5232 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5233 we keep it permanently linked in. */
5234 XftInit (0);
5235 #endif
5237 gdpy_def = NULL;
5238 xg_ignore_gtk_scrollbar = 0;
5239 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5240 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5242 id_to_widget.max_size = id_to_widget.used = 0;
5243 id_to_widget.widgets = 0;
5245 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5246 (gdk_display_get_default ()));
5247 #if ! GTK_CHECK_VERSION (3, 10, 0)
5248 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5249 bindings. It doesn't seem to be any way to remove properties,
5250 so we set it to "" which in means "no key". */
5251 gtk_settings_set_string_property (settings,
5252 "gtk-menu-bar-accel",
5254 EMACS_CLASS);
5255 #endif
5257 /* Make GTK text input widgets use Emacs style keybindings. This is
5258 Emacs after all. */
5259 #if GTK_CHECK_VERSION (3, 16, 0)
5260 g_object_set (settings, "gtk-key-theme-name", "Emacs", NULL);
5261 #else
5262 gtk_settings_set_string_property (settings,
5263 "gtk-key-theme-name",
5264 "Emacs",
5265 EMACS_CLASS);
5266 #endif
5268 /* Make dialogs close on C-g. Since file dialog inherits from
5269 dialog, this works for them also. */
5270 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
5271 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5272 "close", 0);
5274 /* Make menus close on C-g. */
5275 binding_set = gtk_binding_set_by_class (g_type_class_ref
5276 (GTK_TYPE_MENU_SHELL));
5277 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5278 "cancel", 0);
5279 update_theme_scrollbar_width ();
5280 update_theme_scrollbar_height ();
5282 #ifdef HAVE_FREETYPE
5283 x_last_font_name = NULL;
5284 #endif
5287 #endif /* USE_GTK */