Avoid leaving garbage on screen when using 'raise' display property
[emacs.git] / src / gtkutil.c
blob3a00e362221cbdfeb15c404e088ebe14e346d941
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;
208 /* Close display DPY. */
210 void
211 xg_display_close (Display *dpy)
213 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
215 /* If this is the default display, try to change it before closing.
216 If there is no other display to use, gdpy_def is set to NULL, and
217 the next call to xg_display_open resets the default display. */
218 if (gdk_display_get_default () == gdpy)
220 struct x_display_info *dpyinfo;
221 GdkDisplay *gdpy_new = NULL;
223 /* Find another display. */
224 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
225 if (dpyinfo->display != dpy)
227 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
228 gdk_display_manager_set_default_display (gdk_display_manager_get (),
229 gdpy_new);
230 break;
232 gdpy_def = gdpy_new;
235 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
236 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
237 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
238 can continue running, but there will be memory leaks. */
239 g_object_run_dispose (G_OBJECT (gdpy));
240 #else
241 /* This seems to be fixed in GTK 2.10. */
242 gdk_display_close (gdpy);
243 #endif
247 /***********************************************************************
248 Utility functions
249 ***********************************************************************/
251 /* Create and return the cursor to be used for popup menus and
252 scroll bars on display DPY. */
254 GdkCursor *
255 xg_create_default_cursor (Display *dpy)
257 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
258 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
261 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
263 static GdkPixbuf *
264 xg_get_pixbuf_from_pix_and_mask (struct frame *f,
265 Pixmap pix,
266 Pixmap mask)
268 GdkPixbuf *icon_buf = 0;
269 int iunused;
270 Window wunused;
271 unsigned int width, height, depth, uunused;
273 if (FRAME_DISPLAY_INFO (f)->red_bits != 8)
274 return 0;
275 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
276 &width, &height, &uunused, &depth);
277 if (depth != 24)
278 return 0;
279 XImage *xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
280 ~0, XYPixmap);
281 if (xim)
283 XImage *xmm = (! mask ? 0
284 : XGetImage (FRAME_X_DISPLAY (f), mask, 0, 0,
285 width, height, ~0, XYPixmap));
286 icon_buf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, width, height);
287 if (icon_buf)
289 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
290 int rowjunkwidth = gdk_pixbuf_get_rowstride (icon_buf) - width * 4;
291 for (int y = 0; y < height; y++, pixels += rowjunkwidth)
292 for (int x = 0; x < width; x++)
294 unsigned long rgb = XGetPixel (xim, x, y);
295 *pixels++ = (rgb >> 16) & 255;
296 *pixels++ = (rgb >> 8) & 255;
297 *pixels++ = rgb & 255;
298 *pixels++ = xmm && !XGetPixel (xmm, x, y) ? 0 : 255;
302 if (xmm)
303 XDestroyImage (xmm);
304 XDestroyImage (xim);
307 return icon_buf;
310 static Lisp_Object
311 file_for_image (Lisp_Object image)
313 Lisp_Object specified_file = Qnil;
314 Lisp_Object tail;
316 for (tail = XCDR (image);
317 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
318 tail = XCDR (XCDR (tail)))
319 if (EQ (XCAR (tail), QCfile))
320 specified_file = XCAR (XCDR (tail));
322 return specified_file;
325 /* For the image defined in IMG, make and return a GtkImage. For displays with
326 8 planes or less we must make a GdkPixbuf and apply the mask manually.
327 Otherwise the highlighting and dimming the tool bar code in GTK does
328 will look bad. For display with more than 8 planes we just use the
329 pixmap and mask directly. For monochrome displays, GTK doesn't seem
330 able to use external pixmaps, it looks bad whatever we do.
331 The image is defined on the display where frame F is.
332 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
333 If OLD_WIDGET is NULL, a new widget is constructed and returned.
334 If OLD_WIDGET is not NULL, that widget is modified. */
336 static GtkWidget *
337 xg_get_image_for_pixmap (struct frame *f,
338 struct image *img,
339 GtkWidget *widget,
340 GtkImage *old_widget)
342 GdkPixbuf *icon_buf;
344 /* If we have a file, let GTK do all the image handling.
345 This seems to be the only way to make insensitive and activated icons
346 look good in all cases. */
347 Lisp_Object specified_file = file_for_image (img->spec);
348 Lisp_Object file;
350 /* We already loaded the image once before calling this
351 function, so this only fails if the image file has been removed.
352 In that case, use the pixmap already loaded. */
354 if (STRINGP (specified_file)
355 && STRINGP (file = x_find_image_file (specified_file)))
357 char *encoded_file = SSDATA (ENCODE_FILE (file));
358 if (! old_widget)
359 old_widget = GTK_IMAGE (gtk_image_new_from_file (encoded_file));
360 else
361 gtk_image_set_from_file (old_widget, encoded_file);
363 return GTK_WIDGET (old_widget);
366 /* No file, do the image handling ourselves. This will look very bad
367 on a monochrome display, and sometimes bad on all displays with
368 certain themes. */
370 /* This is a workaround to make icons look good on pseudo color
371 displays. Apparently GTK expects the images to have an alpha
372 channel. If they don't, insensitive and activated icons will
373 look bad. This workaround does not work on monochrome displays,
374 and is strictly not needed on true color/static color displays (i.e.
375 16 bits and higher). But we do it anyway so we get a pixbuf that is
376 not associated with the img->pixmap. The img->pixmap may be removed
377 by clearing the image cache and then the tool bar redraw fails, since
378 Gtk+ assumes the pixmap is always there. */
379 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
381 if (icon_buf)
383 if (! old_widget)
384 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
385 else
386 gtk_image_set_from_pixbuf (old_widget, icon_buf);
388 g_object_unref (G_OBJECT (icon_buf));
391 return GTK_WIDGET (old_widget);
395 /* Set CURSOR on W and all widgets W contain. We must do like this
396 for scroll bars and menu because they create widgets internally,
397 and it is those widgets that are visible. */
399 static void
400 xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
402 GdkWindow *window = gtk_widget_get_window (w);
403 GList *children = gdk_window_peek_children (window);
405 gdk_window_set_cursor (window, cursor);
407 /* The scroll bar widget has more than one GDK window (had to look at
408 the source to figure this out), and there is no way to set cursor
409 on widgets in GTK. So we must set the cursor for all GDK windows.
410 Ditto for menus. */
412 for ( ; children; children = g_list_next (children))
413 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
416 /* Insert NODE into linked LIST. */
418 static void
419 xg_list_insert (xg_list_node *list, xg_list_node *node)
421 xg_list_node *list_start = list->next;
423 if (list_start) list_start->prev = node;
424 node->next = list_start;
425 node->prev = 0;
426 list->next = node;
429 /* Remove NODE from linked LIST. */
431 static void
432 xg_list_remove (xg_list_node *list, xg_list_node *node)
434 xg_list_node *list_start = list->next;
435 if (node == list_start)
437 list->next = node->next;
438 if (list->next) list->next->prev = 0;
440 else
442 node->prev->next = node->next;
443 if (node->next) node->next->prev = node->prev;
447 /* Allocate and return a utf8 version of STR. If STR is already
448 utf8 or NULL, just return a copy of STR.
449 A new string is allocated and the caller must free the result
450 with g_free. */
452 static char *
453 get_utf8_string (const char *str)
455 char *utf8_str;
457 if (!str) return NULL;
459 /* If not UTF-8, try current locale. */
460 if (!g_utf8_validate (str, -1, NULL))
461 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
462 else
463 return g_strdup (str);
465 if (!utf8_str)
467 /* Probably some control characters in str. Escape them. */
468 ptrdiff_t len;
469 ptrdiff_t nr_bad = 0;
470 gsize bytes_read;
471 gsize bytes_written;
472 unsigned char *p = (unsigned char *)str;
473 char *cp, *up;
474 GError *err = NULL;
476 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
477 &bytes_written, &err))
478 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
480 ++nr_bad;
481 p += bytes_written+1;
482 g_error_free (err);
483 err = NULL;
486 if (err)
488 g_error_free (err);
489 err = NULL;
491 if (cp) g_free (cp);
493 len = strlen (str);
494 ptrdiff_t alloc;
495 if (INT_MULTIPLY_WRAPV (nr_bad, 4, &alloc)
496 || INT_ADD_WRAPV (len + 1, alloc, &alloc)
497 || SIZE_MAX < alloc)
498 memory_full (SIZE_MAX);
499 up = utf8_str = xmalloc (alloc);
500 p = (unsigned char *)str;
502 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
503 &bytes_written, &err))
504 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
506 memcpy (up, p, bytes_written);
507 up += bytes_written;
508 up += sprintf (up, "\\%03o", p[bytes_written]);
509 p += bytes_written + 1;
510 g_error_free (err);
511 err = NULL;
514 if (cp)
516 strcpy (up, cp);
517 g_free (cp);
519 if (err)
521 g_error_free (err);
522 err = NULL;
525 return utf8_str;
528 /* Check for special colors used in face spec for region face.
529 The colors are fetched from the Gtk+ theme.
530 Return true if color was found, false if not. */
532 bool
533 xg_check_special_colors (struct frame *f,
534 const char *color_name,
535 XColor *color)
537 bool success_p = 0;
538 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
539 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
541 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
542 return success_p;
544 block_input ();
546 #ifdef HAVE_GTK3
547 GtkStyleContext *gsty
548 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
549 GdkRGBA col;
550 char buf[sizeof "rgb://rrrr/gggg/bbbb"];
551 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
552 if (get_fg)
553 gtk_style_context_get_color (gsty, state, &col);
554 else
555 gtk_style_context_get_background_color (gsty, state, &col);
557 sprintf (buf, "rgb:%04x/%04x/%04x",
558 (unsigned) (col.red * 65535),
559 (unsigned) (col.green * 65535),
560 (unsigned) (col.blue * 65535));
561 success_p = x_parse_color (f, buf, color) != 0;
562 #else
563 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
564 GdkColor *grgb = get_bg
565 ? &gsty->bg[GTK_STATE_SELECTED]
566 : &gsty->fg[GTK_STATE_SELECTED];
568 color->red = grgb->red;
569 color->green = grgb->green;
570 color->blue = grgb->blue;
571 color->pixel = grgb->pixel;
572 success_p = 1;
573 #endif
576 unblock_input ();
577 return success_p;
582 /***********************************************************************
583 Tooltips
584 ***********************************************************************/
585 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
586 We use that to pop down the tooltip. This happens if Gtk+ for some
587 reason wants to change or hide the tooltip. */
589 #ifdef USE_GTK_TOOLTIP
591 static void
592 hierarchy_ch_cb (GtkWidget *widget,
593 GtkWidget *previous_toplevel,
594 gpointer user_data)
596 struct frame *f = user_data;
597 struct x_output *x = f->output_data.x;
598 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
600 if (! top || ! GTK_IS_WINDOW (top))
601 gtk_widget_hide (previous_toplevel);
604 /* Callback called when Gtk+ thinks a tooltip should be displayed.
605 We use it to get the tooltip window and the tooltip widget so
606 we can manipulate the ourselves.
608 Return FALSE ensures that the tooltip is not shown. */
610 static gboolean
611 qttip_cb (GtkWidget *widget,
612 gint xpos,
613 gint ypos,
614 gboolean keyboard_mode,
615 GtkTooltip *tooltip,
616 gpointer user_data)
618 struct frame *f = user_data;
619 struct x_output *x = f->output_data.x;
620 if (x->ttip_widget == NULL)
622 GtkWidget *p;
623 GList *list, *iter;
625 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
626 x->ttip_widget = tooltip;
627 g_object_ref (G_OBJECT (tooltip));
628 x->ttip_lbl = gtk_label_new ("");
629 g_object_ref (G_OBJECT (x->ttip_lbl));
630 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
631 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
633 /* Change stupid Gtk+ default line wrapping. */
634 p = gtk_widget_get_parent (x->ttip_lbl);
635 list = gtk_container_get_children (GTK_CONTAINER (p));
636 for (iter = list; iter; iter = g_list_next (iter))
638 GtkWidget *w = GTK_WIDGET (iter->data);
639 if (GTK_IS_LABEL (w))
640 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
642 g_list_free (list);
644 /* ATK needs an empty title for some reason. */
645 gtk_window_set_title (x->ttip_window, "");
646 /* Realize so we can safely get screen later on. */
647 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
648 gtk_widget_realize (x->ttip_lbl);
650 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
651 G_CALLBACK (hierarchy_ch_cb), f);
653 return FALSE;
656 #endif /* USE_GTK_TOOLTIP */
658 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
659 Return true if a system tooltip is available. */
661 bool
662 xg_prepare_tooltip (struct frame *f,
663 Lisp_Object string,
664 int *width,
665 int *height)
667 #ifndef USE_GTK_TOOLTIP
668 return 0;
669 #else
670 struct x_output *x = f->output_data.x;
671 GtkWidget *widget;
672 GdkWindow *gwin;
673 GdkScreen *screen;
674 GtkSettings *settings;
675 gboolean tt_enabled = TRUE;
676 GtkRequisition req;
677 Lisp_Object encoded_string;
679 if (!x->ttip_lbl) return 0;
681 block_input ();
682 encoded_string = ENCODE_UTF_8 (string);
683 widget = GTK_WIDGET (x->ttip_lbl);
684 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
685 screen = gdk_window_get_screen (gwin);
686 settings = gtk_settings_get_for_screen (screen);
687 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
688 if (tt_enabled)
690 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
691 /* Record that we disabled it so it can be enabled again. */
692 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
693 (gpointer)f);
696 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
697 g_object_set_data (G_OBJECT
698 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
699 "gdk-display-current-tooltip", NULL);
701 /* Put our dummy widget in so we can get callbacks for unrealize and
702 hierarchy-changed. */
703 gtk_tooltip_set_custom (x->ttip_widget, widget);
704 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
705 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
706 if (width) *width = req.width;
707 if (height) *height = req.height;
709 unblock_input ();
711 return 1;
712 #endif /* USE_GTK_TOOLTIP */
715 /* Show the tooltip at ROOT_X and ROOT_Y.
716 xg_prepare_tooltip must have been called before this function. */
718 void
719 xg_show_tooltip (struct frame *f, int root_x, int root_y)
721 #ifdef USE_GTK_TOOLTIP
722 struct x_output *x = f->output_data.x;
723 if (x->ttip_window)
725 block_input ();
726 gtk_window_move (x->ttip_window, root_x, root_y);
727 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
728 unblock_input ();
730 #endif
733 /* Hide tooltip if shown. Do nothing if not shown.
734 Return true if tip was hidden, false if not (i.e. not using
735 system tooltips). */
737 bool
738 xg_hide_tooltip (struct frame *f)
740 bool ret = 0;
741 #ifdef USE_GTK_TOOLTIP
742 if (f->output_data.x->ttip_window)
744 GtkWindow *win = f->output_data.x->ttip_window;
745 block_input ();
746 gtk_widget_hide (GTK_WIDGET (win));
748 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
750 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
751 GdkScreen *screen = gdk_window_get_screen (gwin);
752 GtkSettings *settings = gtk_settings_get_for_screen (screen);
753 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
755 unblock_input ();
757 ret = 1;
759 #endif
760 return ret;
764 /***********************************************************************
765 General functions for creating widgets, resizing, events, e.t.c.
766 ***********************************************************************/
768 static void
769 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
770 const gchar *msg, gpointer user_data)
772 if (!strstr (msg, "visible children"))
773 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
776 /* Make a geometry string and pass that to GTK. It seems this is the
777 only way to get geometry position right if the user explicitly
778 asked for a position when starting Emacs.
779 F is the frame we shall set geometry for. */
781 static void
782 xg_set_geometry (struct frame *f)
784 if (f->size_hint_flags & (USPosition | PPosition))
786 int left = f->left_pos;
787 int xneg = f->size_hint_flags & XNegative;
788 int top = f->top_pos;
789 int yneg = f->size_hint_flags & YNegative;
790 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
791 guint id;
793 if (xneg)
794 left = -left;
795 if (yneg)
796 top = -top;
798 sprintf (geom_str, "=%dx%d%c%d%c%d",
799 FRAME_PIXEL_WIDTH (f),
800 FRAME_PIXEL_HEIGHT (f),
801 (xneg ? '-' : '+'), left,
802 (yneg ? '-' : '+'), top);
804 /* Silence warning about visible children. */
805 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
806 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
808 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
809 geom_str))
810 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
812 g_log_remove_handler ("Gtk", id);
816 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
817 and use a GtkFixed widget, this doesn't happen automatically. */
819 void
820 xg_clear_under_internal_border (struct frame *f)
822 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
824 x_clear_area (f, 0, 0,
825 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
827 x_clear_area (f, 0, 0,
828 FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
830 x_clear_area (f, 0,
831 FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
832 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
834 x_clear_area (f,
835 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
836 0, FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
840 static int
841 xg_get_gdk_scale (void)
843 const char *sscale = getenv ("GDK_SCALE");
845 if (sscale)
847 long scale = atol (sscale);
848 if (0 < scale)
849 return min (scale, INT_MAX);
852 return 1;
855 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
856 and a Gtk+ menu bar, we get resize events for the edit part of the
857 frame only. We let Gtk+ deal with the Gtk+ parts.
858 F is the frame to resize.
859 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
861 void
862 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
864 int width, height;
866 if (pixelwidth == -1 && pixelheight == -1)
868 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
869 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
870 0, 0, &pixelwidth, &pixelheight);
871 else
872 return;
875 width = FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth);
876 height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight);
878 frame_size_history_add
879 (f, Qxg_frame_resized, width, height, Qnil);
881 if (width != FRAME_TEXT_WIDTH (f)
882 || height != FRAME_TEXT_HEIGHT (f)
883 || pixelwidth != FRAME_PIXEL_WIDTH (f)
884 || pixelheight != FRAME_PIXEL_HEIGHT (f))
886 xg_clear_under_internal_border (f);
887 change_frame_size (f, width, height, 0, 1, 0, 1);
888 SET_FRAME_GARBAGED (f);
889 cancel_mouse_face (f);
893 /* Resize the outer window of frame F after changing the height.
894 COLUMNS/ROWS is the size the edit area shall have after the resize. */
896 void
897 xg_frame_set_char_size (struct frame *f, int width, int height)
899 int pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
900 int pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
901 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
902 gint gwidth, gheight;
903 int totalheight
904 = pixelheight + FRAME_TOOLBAR_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f);
905 int totalwidth = pixelwidth + FRAME_TOOLBAR_WIDTH (f);
907 if (FRAME_PIXEL_HEIGHT (f) == 0)
908 return;
910 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
911 &gwidth, &gheight);
913 /* Do this before resize, as we don't know yet if we will be resized. */
914 xg_clear_under_internal_border (f);
916 if (FRAME_VISIBLE_P (f))
918 int scale = xg_get_gdk_scale ();
919 totalheight /= scale;
920 totalwidth /= scale;
923 x_wm_set_size_hint (f, 0, 0);
925 /* Resize the top level widget so rows and columns remain constant.
927 When the frame is fullheight and we only want to change the width
928 or it is fullwidth and we only want to change the height we should
929 be able to preserve the fullscreen property. However, due to the
930 fact that we have to send a resize request anyway, the window
931 manager will abolish it. At least the respective size should
932 remain unchanged but giving the frame back its normal size will
933 be broken ... */
934 if (EQ (fullscreen, Qfullwidth) && width == FRAME_TEXT_WIDTH (f))
936 frame_size_history_add
937 (f, Qxg_frame_set_char_size_1, width, height,
938 list2 (make_number (gheight), make_number (totalheight)));
940 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
941 gwidth, totalheight);
943 else if (EQ (fullscreen, Qfullheight) && height == FRAME_TEXT_HEIGHT (f))
945 frame_size_history_add
946 (f, Qxg_frame_set_char_size_2, width, height,
947 list2 (make_number (gwidth), make_number (totalwidth)));
949 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
950 totalwidth, gheight);
952 else
954 frame_size_history_add
955 (f, Qxg_frame_set_char_size_3, width, height,
956 list2 (make_number (totalwidth), make_number (totalheight)));
958 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
959 totalwidth, totalheight);
960 fullscreen = Qnil;
963 SET_FRAME_GARBAGED (f);
964 cancel_mouse_face (f);
966 /* We can not call change_frame_size for a mapped frame,
967 we can not set pixel width/height either. The window manager may
968 override our resize request, XMonad does this all the time.
969 The best we can do is try to sync, so lisp code sees the updated
970 size as fast as possible.
971 For unmapped windows, we can set rows/cols. When
972 the frame is mapped again we will (hopefully) get the correct size. */
973 if (FRAME_VISIBLE_P (f))
975 /* Must call this to flush out events */
976 (void)gtk_events_pending ();
977 gdk_flush ();
978 x_wait_for_event (f, ConfigureNotify);
980 if (!NILP (fullscreen))
981 /* Try to restore fullscreen state. */
983 store_frame_param (f, Qfullscreen, fullscreen);
984 x_set_fullscreen (f, fullscreen, fullscreen);
987 else
988 adjust_frame_size (f, width, height, 5, 0, Qxg_frame_set_char_size);
992 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
993 The policy is to keep the number of editable lines. */
995 #if 0
996 static void
997 xg_height_or_width_changed (struct frame *f)
999 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1000 FRAME_TOTAL_PIXEL_WIDTH (f),
1001 FRAME_TOTAL_PIXEL_HEIGHT (f));
1002 f->output_data.x->hint_flags = 0;
1003 x_wm_set_size_hint (f, 0, 0);
1005 #endif
1007 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1008 Must be done like this, because GtkWidget:s can have "hidden"
1009 X Window that aren't accessible.
1011 Return 0 if no widget match WDESC. */
1013 GtkWidget *
1014 xg_win_to_widget (Display *dpy, Window wdesc)
1016 gpointer gdkwin;
1017 GtkWidget *gwdesc = 0;
1019 block_input ();
1021 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1022 wdesc);
1023 if (gdkwin)
1025 GdkEvent event;
1026 event.any.window = gdkwin;
1027 event.any.type = GDK_NOTHING;
1028 gwdesc = gtk_get_event_widget (&event);
1031 unblock_input ();
1032 return gwdesc;
1035 /* Set the background of widget W to PIXEL. */
1037 static void
1038 xg_set_widget_bg (struct frame *f, GtkWidget *w, unsigned long pixel)
1040 #ifdef HAVE_GTK3
1041 GdkRGBA bg;
1042 XColor xbg;
1043 xbg.pixel = pixel;
1044 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1046 bg.red = (double)xbg.red/65535.0;
1047 bg.green = (double)xbg.green/65535.0;
1048 bg.blue = (double)xbg.blue/65535.0;
1049 bg.alpha = 1.0;
1050 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1052 #else
1053 GdkColor bg;
1054 GdkColormap *map = gtk_widget_get_colormap (w);
1055 gdk_colormap_query_color (map, pixel, &bg);
1056 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1057 #endif
1060 /* Callback called when the gtk theme changes.
1061 We notify lisp code so it can fix faces used for region for example. */
1063 static void
1064 style_changed_cb (GObject *go,
1065 GParamSpec *spec,
1066 gpointer user_data)
1068 struct input_event event;
1069 GdkDisplay *gdpy = user_data;
1070 const char *display_name = gdk_display_get_name (gdpy);
1071 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1073 EVENT_INIT (event);
1074 event.kind = CONFIG_CHANGED_EVENT;
1075 event.frame_or_window = build_string (display_name);
1076 /* Theme doesn't change often, so intern is called seldom. */
1077 event.arg = intern ("theme-name");
1078 kbd_buffer_store_event (&event);
1080 update_theme_scrollbar_width ();
1081 update_theme_scrollbar_height ();
1083 /* If scroll bar width changed, we need set the new size on all frames
1084 on this display. */
1085 if (dpy)
1087 Lisp_Object rest, frame;
1088 FOR_EACH_FRAME (rest, frame)
1090 struct frame *f = XFRAME (frame);
1091 if (FRAME_LIVE_P (f)
1092 && FRAME_X_P (f)
1093 && FRAME_X_DISPLAY (f) == dpy)
1095 x_set_scroll_bar_default_width (f);
1096 x_set_scroll_bar_default_height (f);
1097 xg_frame_set_char_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f));
1103 /* Called when a delete-event occurs on WIDGET. */
1105 static gboolean
1106 delete_cb (GtkWidget *widget,
1107 GdkEvent *event,
1108 gpointer user_data)
1110 return TRUE;
1113 /* Create and set up the GTK widgets for frame F.
1114 Return true if creation succeeded. */
1116 bool
1117 xg_create_frame_widgets (struct frame *f)
1119 GtkWidget *wtop;
1120 GtkWidget *wvbox, *whbox;
1121 GtkWidget *wfixed;
1122 #ifndef HAVE_GTK3
1123 GtkRcStyle *style;
1124 #endif
1125 char *title = 0;
1127 block_input ();
1129 if (FRAME_X_EMBEDDED_P (f))
1131 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1132 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1134 else
1135 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1137 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1138 has backported it to Gtk+ 2.0 and they add the resize grip for
1139 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1140 forever, so disable the grip. */
1141 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1142 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1143 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1144 #endif
1146 xg_set_screen (wtop, f);
1148 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1149 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1150 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1151 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1153 #ifdef HAVE_GTK3
1154 wfixed = emacs_fixed_new (f);
1155 #else
1156 wfixed = gtk_fixed_new ();
1157 #endif
1159 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1161 if (wtop) gtk_widget_destroy (wtop);
1162 if (wvbox) gtk_widget_destroy (wvbox);
1163 if (whbox) gtk_widget_destroy (whbox);
1164 if (wfixed) gtk_widget_destroy (wfixed);
1166 unblock_input ();
1167 return 0;
1170 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1171 gtk_widget_set_name (wtop, EMACS_CLASS);
1172 gtk_widget_set_name (wvbox, "pane");
1173 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1175 /* If this frame has a title or name, set it in the title bar. */
1176 if (! NILP (f->title))
1177 title = SSDATA (ENCODE_UTF_8 (f->title));
1178 else if (! NILP (f->name))
1179 title = SSDATA (ENCODE_UTF_8 (f->name));
1181 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
1183 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1184 FRAME_GTK_WIDGET (f) = wfixed;
1185 f->output_data.x->vbox_widget = wvbox;
1186 f->output_data.x->hbox_widget = whbox;
1188 gtk_widget_set_has_window (wfixed, TRUE);
1190 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1191 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1192 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1194 if (FRAME_EXTERNAL_TOOL_BAR (f))
1195 update_frame_tool_bar (f);
1197 /* We don't want this widget double buffered, because we draw on it
1198 with regular X drawing primitives, so from a GTK/GDK point of
1199 view, the widget is totally blank. When an expose comes, this
1200 will make the widget blank, and then Emacs redraws it. This flickers
1201 a lot, so we turn off double buffering. */
1202 gtk_widget_set_double_buffered (wfixed, FALSE);
1204 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1205 SSDATA (Vx_resource_name),
1206 SSDATA (Vx_resource_class));
1208 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1209 GTK is to destroy the widget. We want Emacs to do that instead. */
1210 g_signal_connect (G_OBJECT (wtop), "delete-event",
1211 G_CALLBACK (delete_cb), f);
1213 /* Convert our geometry parameters into a geometry string
1214 and specify it.
1215 GTK will itself handle calculating the real position this way. */
1216 xg_set_geometry (f);
1217 f->win_gravity
1218 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1220 gtk_widget_add_events (wfixed,
1221 GDK_POINTER_MOTION_MASK
1222 | GDK_EXPOSURE_MASK
1223 | GDK_BUTTON_PRESS_MASK
1224 | GDK_BUTTON_RELEASE_MASK
1225 | GDK_KEY_PRESS_MASK
1226 | GDK_ENTER_NOTIFY_MASK
1227 | GDK_LEAVE_NOTIFY_MASK
1228 | GDK_FOCUS_CHANGE_MASK
1229 | GDK_STRUCTURE_MASK
1230 | GDK_VISIBILITY_NOTIFY_MASK);
1232 /* Must realize the windows so the X window gets created. It is used
1233 by callers of this function. */
1234 gtk_widget_realize (wfixed);
1235 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1236 initial_set_up_x_back_buffer (f);
1238 /* Since GTK clears its window by filling with the background color,
1239 we must keep X and GTK background in sync. */
1240 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1242 #ifndef HAVE_GTK3
1243 /* Also, do not let any background pixmap to be set, this looks very
1244 bad as Emacs overwrites the background pixmap with its own idea
1245 of background color. */
1246 style = gtk_widget_get_modifier_style (wfixed);
1248 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1249 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1250 gtk_widget_modify_style (wfixed, style);
1251 #else
1252 gtk_widget_set_can_focus (wfixed, TRUE);
1253 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1254 #endif
1256 #ifdef USE_GTK_TOOLTIP
1257 /* Steal a tool tip window we can move ourselves. */
1258 f->output_data.x->ttip_widget = 0;
1259 f->output_data.x->ttip_lbl = 0;
1260 f->output_data.x->ttip_window = 0;
1261 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1262 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1263 #endif
1266 GdkScreen *screen = gtk_widget_get_screen (wtop);
1267 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1268 /* Only connect this signal once per screen. */
1269 if (! g_signal_handler_find (G_OBJECT (gs),
1270 G_SIGNAL_MATCH_FUNC,
1271 0, 0, 0,
1272 (gpointer) G_CALLBACK (style_changed_cb),
1275 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1276 G_CALLBACK (style_changed_cb),
1277 gdk_screen_get_display (screen));
1281 unblock_input ();
1283 return 1;
1286 void
1287 xg_free_frame_widgets (struct frame *f)
1289 if (FRAME_GTK_OUTER_WIDGET (f))
1291 #ifdef USE_GTK_TOOLTIP
1292 struct x_output *x = f->output_data.x;
1293 #endif
1294 struct xg_frame_tb_info *tbinfo
1295 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1296 TB_INFO_KEY);
1297 if (tbinfo)
1298 xfree (tbinfo);
1300 /* x_free_frame_resources should have taken care of it */
1301 eassert (!FRAME_X_DOUBLE_BUFFERED_P (f));
1302 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1303 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1304 FRAME_X_RAW_DRAWABLE (f) = 0;
1305 FRAME_GTK_OUTER_WIDGET (f) = 0;
1306 #ifdef USE_GTK_TOOLTIP
1307 if (x->ttip_lbl)
1308 gtk_widget_destroy (x->ttip_lbl);
1309 if (x->ttip_widget)
1310 g_object_unref (G_OBJECT (x->ttip_widget));
1311 #endif
1315 /* Set the normal size hints for the window manager, for frame F.
1316 FLAGS is the flags word to use--or 0 meaning preserve the flags
1317 that the window now has.
1318 If USER_POSITION, set the User Position
1319 flag (this is useful when FLAGS is 0). */
1321 void
1322 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1324 /* Must use GTK routines here, otherwise GTK resets the size hints
1325 to its own defaults. */
1326 GdkGeometry size_hints;
1327 gint hint_flags = 0;
1328 int base_width, base_height;
1329 int min_rows = 0, min_cols = 0;
1330 int win_gravity = f->win_gravity;
1331 Lisp_Object fs_state, frame;
1332 int scale = xg_get_gdk_scale ();
1334 /* Don't set size hints during initialization; that apparently leads
1335 to a race condition. See the thread at
1336 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1337 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1338 return;
1340 XSETFRAME (frame, f);
1341 fs_state = Fframe_parameter (frame, Qfullscreen);
1342 if ((EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth)) &&
1343 (x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state) ||
1344 x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state_fullscreen)))
1346 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1347 Gtk3 don't get along and the frame shrinks (!).
1349 return;
1352 if (flags)
1354 memset (&size_hints, 0, sizeof (size_hints));
1355 f->output_data.x->size_hints = size_hints;
1356 f->output_data.x->hint_flags = hint_flags;
1358 else
1359 flags = f->size_hint_flags;
1361 size_hints = f->output_data.x->size_hints;
1362 hint_flags = f->output_data.x->hint_flags;
1364 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1365 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
1366 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
1368 hint_flags |= GDK_HINT_BASE_SIZE;
1369 /* Use one row/col here so base_height/width does not become zero.
1370 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1371 Obviously this makes the row/col value displayed off by 1. */
1372 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1373 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1374 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1376 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1377 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1379 size_hints.base_width = base_width;
1380 size_hints.base_height = base_height;
1381 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
1382 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
1384 /* These currently have a one to one mapping with the X values, but I
1385 don't think we should rely on that. */
1386 hint_flags |= GDK_HINT_WIN_GRAVITY;
1387 size_hints.win_gravity = 0;
1388 if (win_gravity == NorthWestGravity)
1389 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1390 else if (win_gravity == NorthGravity)
1391 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1392 else if (win_gravity == NorthEastGravity)
1393 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1394 else if (win_gravity == WestGravity)
1395 size_hints.win_gravity = GDK_GRAVITY_WEST;
1396 else if (win_gravity == CenterGravity)
1397 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1398 else if (win_gravity == EastGravity)
1399 size_hints.win_gravity = GDK_GRAVITY_EAST;
1400 else if (win_gravity == SouthWestGravity)
1401 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1402 else if (win_gravity == SouthGravity)
1403 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1404 else if (win_gravity == SouthEastGravity)
1405 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1406 else if (win_gravity == StaticGravity)
1407 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1409 if (user_position)
1411 hint_flags &= ~GDK_HINT_POS;
1412 hint_flags |= GDK_HINT_USER_POS;
1415 size_hints.base_width /= scale;
1416 size_hints.base_height /= scale;
1417 size_hints.width_inc /= scale;
1418 size_hints.height_inc /= scale;
1420 if (hint_flags != f->output_data.x->hint_flags
1421 || memcmp (&size_hints,
1422 &f->output_data.x->size_hints,
1423 sizeof (size_hints)) != 0)
1425 block_input ();
1426 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1427 NULL, &size_hints, hint_flags);
1428 f->output_data.x->size_hints = size_hints;
1429 f->output_data.x->hint_flags = hint_flags;
1430 unblock_input ();
1434 /* Change background color of a frame.
1435 Since GTK uses the background color to clear the window, we must
1436 keep the GTK and X colors in sync.
1437 F is the frame to change,
1438 BG is the pixel value to change to. */
1440 void
1441 xg_set_background_color (struct frame *f, unsigned long bg)
1443 if (FRAME_GTK_WIDGET (f))
1445 block_input ();
1446 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1448 Lisp_Object bar;
1449 for (bar = FRAME_SCROLL_BARS (f);
1450 !NILP (bar);
1451 bar = XSCROLL_BAR (bar)->next)
1453 GtkWidget *scrollbar =
1454 xg_get_widget_from_map (XSCROLL_BAR (bar)->x_window);
1455 GtkWidget *webox = gtk_widget_get_parent (scrollbar);
1456 xg_set_widget_bg (f, webox, FRAME_BACKGROUND_PIXEL (f));
1459 unblock_input ();
1464 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1465 functions so GTK does not overwrite the icon. */
1467 void
1468 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1470 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1471 icon_pixmap,
1472 icon_mask);
1473 if (gp)
1474 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1479 /***********************************************************************
1480 Dialog functions
1481 ***********************************************************************/
1482 /* Return the dialog title to use for a dialog of type KEY.
1483 This is the encoding used by lwlib. We use the same for GTK. */
1485 static const char *
1486 get_dialog_title (char key)
1488 const char *title = "";
1490 switch (key) {
1491 case 'E': case 'e':
1492 title = "Error";
1493 break;
1495 case 'I': case 'i':
1496 title = "Information";
1497 break;
1499 case 'L': case 'l':
1500 title = "Prompt";
1501 break;
1503 case 'P': case 'p':
1504 title = "Prompt";
1505 break;
1507 case 'Q': case 'q':
1508 title = "Question";
1509 break;
1512 return title;
1515 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1516 the dialog, but return TRUE so the event does not propagate further
1517 in GTK. This prevents GTK from destroying the dialog widget automatically
1518 and we can always destroy the widget manually, regardless of how
1519 it was popped down (button press or WM_DELETE_WINDOW).
1520 W is the dialog widget.
1521 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1522 user_data is NULL (not used).
1524 Returns TRUE to end propagation of event. */
1526 static gboolean
1527 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1529 gtk_widget_unmap (w);
1530 return TRUE;
1533 /* Create a popup dialog window. See also xg_create_widget below.
1534 WV is a widget_value describing the dialog.
1535 SELECT_CB is the callback to use when a button has been pressed.
1536 DEACTIVATE_CB is the callback to use when the dialog pops down.
1538 Returns the GTK dialog widget. */
1540 static GtkWidget *
1541 create_dialog (widget_value *wv,
1542 GCallback select_cb,
1543 GCallback deactivate_cb)
1545 const char *title = get_dialog_title (wv->name[0]);
1546 int total_buttons = wv->name[1] - '0';
1547 int right_buttons = wv->name[4] - '0';
1548 int left_buttons;
1549 int button_nr = 0;
1550 int button_spacing = 10;
1551 GtkWidget *wdialog = gtk_dialog_new ();
1552 GtkDialog *wd = GTK_DIALOG (wdialog);
1553 widget_value *item;
1554 GtkWidget *whbox_down;
1556 /* If the number of buttons is greater than 4, make two rows of buttons
1557 instead. This looks better. */
1558 bool make_two_rows = total_buttons > 4;
1560 #if GTK_CHECK_VERSION (3, 12, 0)
1561 GtkBuilder *gbld = gtk_builder_new ();
1562 GObject *go = gtk_buildable_get_internal_child (GTK_BUILDABLE (wd),
1563 gbld,
1564 "action_area");
1565 GtkBox *cur_box = GTK_BOX (go);
1566 g_object_unref (G_OBJECT (gbld));
1567 #else
1568 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1569 #endif
1571 if (right_buttons == 0) right_buttons = total_buttons/2;
1572 left_buttons = total_buttons - right_buttons;
1574 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1575 gtk_widget_set_name (wdialog, "emacs-dialog");
1578 if (make_two_rows)
1580 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1581 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1582 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1583 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1584 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1585 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1587 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1588 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1589 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1591 cur_box = GTK_BOX (whbox_up);
1594 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1595 G_CALLBACK (dialog_delete_callback), 0);
1597 if (deactivate_cb)
1599 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1600 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1603 for (item = wv->contents; item; item = item->next)
1605 char *utf8_label = get_utf8_string (item->value);
1606 GtkWidget *w;
1607 GtkRequisition req;
1609 if (item->name && strcmp (item->name, "message") == 0)
1611 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1612 /* This is the text part of the dialog. */
1613 w = gtk_label_new (utf8_label);
1614 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1615 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1616 #if GTK_CHECK_VERSION (3, 14, 0)
1617 gtk_widget_set_halign (w, GTK_ALIGN_START);
1618 gtk_widget_set_valign (w, GTK_ALIGN_CENTER);
1619 #else
1620 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1621 #endif
1622 /* Try to make dialog look better. Must realize first so
1623 the widget can calculate the size it needs. */
1624 gtk_widget_realize (w);
1625 gtk_widget_get_preferred_size (w, NULL, &req);
1626 gtk_box_set_spacing (wvbox, req.height);
1627 if (item->value && strlen (item->value) > 0)
1628 button_spacing = 2*req.width/strlen (item->value);
1629 if (button_spacing < 10) button_spacing = 10;
1631 else
1633 /* This is one button to add to the dialog. */
1634 w = gtk_button_new_with_label (utf8_label);
1635 if (! item->enabled)
1636 gtk_widget_set_sensitive (w, FALSE);
1637 if (select_cb)
1638 g_signal_connect (G_OBJECT (w), "clicked",
1639 select_cb, item->call_data);
1641 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1642 if (++button_nr == left_buttons)
1644 if (make_two_rows)
1645 cur_box = GTK_BOX (whbox_down);
1649 if (utf8_label)
1650 g_free (utf8_label);
1653 return wdialog;
1656 struct xg_dialog_data
1658 GMainLoop *loop;
1659 int response;
1660 GtkWidget *w;
1661 guint timerid;
1664 /* Function that is called when the file or font dialogs pop down.
1665 W is the dialog widget, RESPONSE is the response code.
1666 USER_DATA is what we passed in to g_signal_connect. */
1668 static void
1669 xg_dialog_response_cb (GtkDialog *w,
1670 gint response,
1671 gpointer user_data)
1673 struct xg_dialog_data *dd = user_data;
1674 dd->response = response;
1675 g_main_loop_quit (dd->loop);
1679 /* Destroy the dialog. This makes it pop down. */
1681 static void
1682 pop_down_dialog (void *arg)
1684 struct xg_dialog_data *dd = arg;
1686 block_input ();
1687 if (dd->w) gtk_widget_destroy (dd->w);
1688 if (dd->timerid != 0) g_source_remove (dd->timerid);
1690 g_main_loop_quit (dd->loop);
1691 g_main_loop_unref (dd->loop);
1693 unblock_input ();
1696 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1697 Pass DATA as gpointer so we can use this as a callback. */
1699 static gboolean
1700 xg_maybe_add_timer (gpointer data)
1702 struct xg_dialog_data *dd = data;
1703 struct timespec next_time = timer_check ();
1705 dd->timerid = 0;
1707 if (timespec_valid_p (next_time))
1709 time_t s = next_time.tv_sec;
1710 int per_ms = TIMESPEC_RESOLUTION / 1000;
1711 int ms = (next_time.tv_nsec + per_ms - 1) / per_ms;
1712 if (s <= ((guint) -1 - ms) / 1000)
1713 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1715 return FALSE;
1719 /* Pops up a modal dialog W and waits for response.
1720 We don't use gtk_dialog_run because we want to process emacs timers.
1721 The dialog W is not destroyed when this function returns. */
1723 static int
1724 xg_dialog_run (struct frame *f, GtkWidget *w)
1726 ptrdiff_t count = SPECPDL_INDEX ();
1727 struct xg_dialog_data dd;
1729 xg_set_screen (w, f);
1730 gtk_window_set_transient_for (GTK_WINDOW (w),
1731 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1732 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1733 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1735 dd.loop = g_main_loop_new (NULL, FALSE);
1736 dd.response = GTK_RESPONSE_CANCEL;
1737 dd.w = w;
1738 dd.timerid = 0;
1740 g_signal_connect (G_OBJECT (w),
1741 "response",
1742 G_CALLBACK (xg_dialog_response_cb),
1743 &dd);
1744 /* Don't destroy the widget if closed by the window manager close button. */
1745 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1746 gtk_widget_show (w);
1748 record_unwind_protect_ptr (pop_down_dialog, &dd);
1750 (void) xg_maybe_add_timer (&dd);
1751 g_main_loop_run (dd.loop);
1753 dd.w = 0;
1754 unbind_to (count, Qnil);
1756 return dd.response;
1760 /***********************************************************************
1761 File dialog functions
1762 ***********************************************************************/
1763 /* Return true if the old file selection dialog is being used. */
1765 bool
1766 xg_uses_old_file_dialog (void)
1768 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1769 return x_gtk_use_old_file_dialog;
1770 #else
1771 return 0;
1772 #endif
1776 typedef char * (*xg_get_file_func) (GtkWidget *);
1778 /* Return the selected file for file chooser dialog W.
1779 The returned string must be free:d. */
1781 static char *
1782 xg_get_file_name_from_chooser (GtkWidget *w)
1784 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1787 /* Callback called when the "Show hidden files" toggle is pressed.
1788 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1790 static void
1791 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1793 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1794 gboolean visible;
1795 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1796 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1800 /* Callback called when a property changes in a file chooser.
1801 GOBJECT is the file chooser dialog, ARG1 describes the property.
1802 USER_DATA is the toggle widget in the file chooser dialog.
1803 We use this to update the "Show hidden files" toggle when the user
1804 changes that property by right clicking in the file list. */
1806 static void
1807 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1809 if (strcmp (arg1->name, "show-hidden") == 0)
1811 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1812 gboolean visible, toggle_on;
1814 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1815 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1817 if (!!visible != !!toggle_on)
1819 gpointer cb = (gpointer) G_CALLBACK (xg_toggle_visibility_cb);
1820 g_signal_handlers_block_by_func (G_OBJECT (wtoggle), cb, gobject);
1821 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1822 g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle), cb, gobject);
1824 x_gtk_show_hidden_files = visible;
1828 /* Read a file name from the user using a file chooser dialog.
1829 F is the current frame.
1830 PROMPT is a prompt to show to the user. May not be NULL.
1831 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1832 If MUSTMATCH_P, the returned file name must be an existing
1833 file. (Actually, this only has cosmetic effects, the user can
1834 still enter a non-existing file.) *FUNC is set to a function that
1835 can be used to retrieve the selected file name from the returned widget.
1837 Returns the created widget. */
1839 static GtkWidget *
1840 xg_get_file_with_chooser (struct frame *f,
1841 char *prompt,
1842 char *default_filename,
1843 bool mustmatch_p, bool only_dir_p,
1844 xg_get_file_func *func)
1846 char msgbuf[1024];
1848 GtkWidget *filewin, *wtoggle, *wbox;
1849 GtkWidget *wmessage UNINIT;
1850 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1851 GtkFileChooserAction action = (mustmatch_p ?
1852 GTK_FILE_CHOOSER_ACTION_OPEN :
1853 GTK_FILE_CHOOSER_ACTION_SAVE);
1855 if (only_dir_p)
1856 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1858 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1859 XG_TEXT_CANCEL, GTK_RESPONSE_CANCEL,
1860 (mustmatch_p || only_dir_p ?
1861 XG_TEXT_OPEN : XG_TEXT_OK),
1862 GTK_RESPONSE_OK,
1863 NULL);
1864 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1866 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1867 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
1868 gtk_widget_show (wbox);
1869 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1871 if (x_gtk_show_hidden_files)
1873 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1874 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1876 gtk_widget_show (wtoggle);
1877 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1878 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1879 g_signal_connect (G_OBJECT (filewin), "notify",
1880 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1882 if (x_gtk_file_dialog_help_text)
1884 char *z = msgbuf;
1885 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1886 Show the C-l help text only for versions < 2.10. */
1887 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1888 z = stpcpy (z, "\nType C-l to display a file name text entry box.\n");
1889 strcpy (z, "\nIf you don't like this file selector, use the "
1890 "corresponding\nkey binding or customize "
1891 "use-file-dialog to turn it off.");
1893 wmessage = gtk_label_new (msgbuf);
1894 gtk_widget_show (wmessage);
1897 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1898 if (x_gtk_file_dialog_help_text)
1899 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1900 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1902 if (default_filename)
1904 Lisp_Object file;
1905 char *utf8_filename;
1907 file = build_string (default_filename);
1909 /* File chooser does not understand ~/... in the file name. It must be
1910 an absolute name starting with /. */
1911 if (default_filename[0] != '/')
1912 file = Fexpand_file_name (file, Qnil);
1914 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1915 if (! NILP (Ffile_directory_p (file)))
1916 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1917 utf8_filename);
1918 else
1920 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1921 utf8_filename);
1922 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1924 char *cp = strrchr (utf8_filename, '/');
1925 if (cp) ++cp;
1926 else cp = utf8_filename;
1927 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1932 *func = xg_get_file_name_from_chooser;
1933 return filewin;
1936 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1938 /* Return the selected file for file selector dialog W.
1939 The returned string must be free:d. */
1941 static char *
1942 xg_get_file_name_from_selector (GtkWidget *w)
1944 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1945 return xstrdup (gtk_file_selection_get_filename (filesel));
1948 /* Create a file selection dialog.
1949 F is the current frame.
1950 PROMPT is a prompt to show to the user. May not be NULL.
1951 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1952 If MUSTMATCH_P, the returned file name must be an existing
1953 file. *FUNC is set to a function that can be used to retrieve the
1954 selected file name from the returned widget.
1956 Returns the created widget. */
1958 static GtkWidget *
1959 xg_get_file_with_selection (struct frame *f,
1960 char *prompt,
1961 char *default_filename,
1962 bool mustmatch_p, bool only_dir_p,
1963 xg_get_file_func *func)
1965 GtkWidget *filewin;
1966 GtkFileSelection *filesel;
1968 filewin = gtk_file_selection_new (prompt);
1969 filesel = GTK_FILE_SELECTION (filewin);
1971 if (default_filename)
1972 gtk_file_selection_set_filename (filesel, default_filename);
1974 if (mustmatch_p)
1976 /* The selection_entry part of filesel is not documented. */
1977 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1978 gtk_file_selection_hide_fileop_buttons (filesel);
1981 *func = xg_get_file_name_from_selector;
1983 return filewin;
1985 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1987 /* Read a file name from the user using a file dialog, either the old
1988 file selection dialog, or the new file chooser dialog. Which to use
1989 depends on what the GTK version used has, and what the value of
1990 gtk-use-old-file-dialog.
1991 F is the current frame.
1992 PROMPT is a prompt to show to the user. May not be NULL.
1993 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1994 If MUSTMATCH_P, the returned file name must be an existing
1995 file.
1997 Returns a file name or NULL if no file was selected.
1998 The returned string must be freed by the caller. */
2000 char *
2001 xg_get_file_name (struct frame *f,
2002 char *prompt,
2003 char *default_filename,
2004 bool mustmatch_p,
2005 bool only_dir_p)
2007 GtkWidget *w = 0;
2008 char *fn = 0;
2009 int filesel_done = 0;
2010 xg_get_file_func func;
2012 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2014 if (xg_uses_old_file_dialog ())
2015 w = xg_get_file_with_selection (f, prompt, default_filename,
2016 mustmatch_p, only_dir_p, &func);
2017 else
2018 w = xg_get_file_with_chooser (f, prompt, default_filename,
2019 mustmatch_p, only_dir_p, &func);
2021 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2022 w = xg_get_file_with_chooser (f, prompt, default_filename,
2023 mustmatch_p, only_dir_p, &func);
2024 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2026 gtk_widget_set_name (w, "emacs-filedialog");
2028 filesel_done = xg_dialog_run (f, w);
2029 if (filesel_done == GTK_RESPONSE_OK)
2030 fn = (*func) (w);
2032 gtk_widget_destroy (w);
2033 return fn;
2036 /***********************************************************************
2037 GTK font chooser
2038 ***********************************************************************/
2040 #ifdef HAVE_FREETYPE
2042 #if USE_NEW_GTK_FONT_CHOOSER
2044 #define XG_WEIGHT_TO_SYMBOL(w) \
2045 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2046 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2047 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2048 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2049 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2050 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2051 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2052 : Qultra_bold)
2054 #define XG_STYLE_TO_SYMBOL(s) \
2055 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2056 : s == PANGO_STYLE_ITALIC ? Qitalic \
2057 : Qnormal)
2059 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2062 static char *x_last_font_name;
2064 /* Pop up a GTK font selector and return the name of the font the user
2065 selects, as a C string. The returned font name follows GTK's own
2066 format:
2068 `FAMILY [VALUE1 VALUE2] SIZE'
2070 This can be parsed using font_parse_fcname in font.c.
2071 DEFAULT_NAME, if non-zero, is the default font name. */
2073 Lisp_Object
2074 xg_get_font (struct frame *f, const char *default_name)
2076 GtkWidget *w;
2077 int done = 0;
2078 Lisp_Object font = Qnil;
2080 w = gtk_font_chooser_dialog_new
2081 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2083 if (default_name)
2085 /* Convert fontconfig names to Gtk names, i.e. remove - before
2086 number */
2087 char *p = strrchr (default_name, '-');
2088 if (p)
2090 char *ep = p+1;
2091 while (c_isdigit (*ep))
2092 ++ep;
2093 if (*ep == '\0') *p = ' ';
2096 else if (x_last_font_name)
2097 default_name = x_last_font_name;
2099 if (default_name)
2100 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2102 gtk_widget_set_name (w, "emacs-fontdialog");
2103 done = xg_dialog_run (f, w);
2104 if (done == GTK_RESPONSE_OK)
2106 #if USE_NEW_GTK_FONT_CHOOSER
2107 /* Use the GTK3 font chooser. */
2108 PangoFontDescription *desc
2109 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2111 if (desc)
2113 const char *name = pango_font_description_get_family (desc);
2114 gint size = pango_font_description_get_size (desc);
2115 PangoWeight weight = pango_font_description_get_weight (desc);
2116 PangoStyle style = pango_font_description_get_style (desc);
2118 #ifdef USE_CAIRO
2119 #define FONT_TYPE_WANTED (Qftcr)
2120 #else
2121 #define FONT_TYPE_WANTED (Qxft)
2122 #endif
2123 font = CALLN (Ffont_spec,
2124 QCname, build_string (name),
2125 QCsize, make_float (pango_units_to_double (size)),
2126 QCweight, XG_WEIGHT_TO_SYMBOL (weight),
2127 QCslant, XG_STYLE_TO_SYMBOL (style),
2128 QCtype,
2129 FONT_TYPE_WANTED);
2131 pango_font_description_free (desc);
2132 dupstring (&x_last_font_name, name);
2135 #else /* Use old font selector, which just returns the font name. */
2137 char *font_name
2138 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2140 if (font_name)
2142 font = build_string (font_name);
2143 g_free (x_last_font_name);
2144 x_last_font_name = font_name;
2146 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2149 gtk_widget_destroy (w);
2150 return font;
2152 #endif /* HAVE_FREETYPE */
2156 /***********************************************************************
2157 Menu functions.
2158 ***********************************************************************/
2160 /* The name of menu items that can be used for customization. Since GTK
2161 RC files are very crude and primitive, we have to set this on all
2162 menu item names so a user can easily customize menu items. */
2164 #define MENU_ITEM_NAME "emacs-menuitem"
2167 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2168 during GC. The next member points to the items. */
2169 static xg_list_node xg_menu_cb_list;
2171 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2172 during GC. The next member points to the items. */
2173 static xg_list_node xg_menu_item_cb_list;
2175 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2176 F is the frame CL_DATA will be initialized for.
2177 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2179 The menu bar and all sub menus under the menu bar in a frame
2180 share the same structure, hence the reference count.
2182 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2183 allocated xg_menu_cb_data if CL_DATA is NULL. */
2185 static xg_menu_cb_data *
2186 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2188 if (! cl_data)
2190 cl_data = xmalloc (sizeof *cl_data);
2191 cl_data->f = f;
2192 cl_data->menu_bar_vector = f->menu_bar_vector;
2193 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2194 cl_data->highlight_cb = highlight_cb;
2195 cl_data->ref_count = 0;
2197 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2200 cl_data->ref_count++;
2202 return cl_data;
2205 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2206 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2208 When the menu bar is updated, menu items may have been added and/or
2209 removed, so menu_bar_vector and menu_bar_items_used change. We must
2210 then update CL_DATA since it is used to determine which menu
2211 item that is invoked in the menu.
2212 HIGHLIGHT_CB could change, there is no check that the same
2213 function is given when modifying a menu bar as was given when
2214 creating the menu bar. */
2216 static void
2217 update_cl_data (xg_menu_cb_data *cl_data,
2218 struct frame *f,
2219 GCallback highlight_cb)
2221 if (cl_data)
2223 cl_data->f = f;
2224 cl_data->menu_bar_vector = f->menu_bar_vector;
2225 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2226 cl_data->highlight_cb = highlight_cb;
2230 /* Decrease reference count for CL_DATA.
2231 If reference count is zero, free CL_DATA. */
2233 static void
2234 unref_cl_data (xg_menu_cb_data *cl_data)
2236 if (cl_data && cl_data->ref_count > 0)
2238 cl_data->ref_count--;
2239 if (cl_data->ref_count == 0)
2241 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2242 xfree (cl_data);
2247 /* Function that marks all lisp data during GC. */
2249 void
2250 xg_mark_data (void)
2252 xg_list_node *iter;
2253 Lisp_Object rest, frame;
2255 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2256 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2258 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2260 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2262 if (! NILP (cb_data->help))
2263 mark_object (cb_data->help);
2266 FOR_EACH_FRAME (rest, frame)
2268 struct frame *f = XFRAME (frame);
2270 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2272 struct xg_frame_tb_info *tbinfo
2273 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2274 TB_INFO_KEY);
2275 if (tbinfo)
2277 mark_object (tbinfo->last_tool_bar);
2278 mark_object (tbinfo->style);
2284 /* Callback called when a menu item is destroyed. Used to free data.
2285 W is the widget that is being destroyed (not used).
2286 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2288 static void
2289 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2291 if (client_data)
2293 xg_menu_item_cb_data *data = client_data;
2294 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2295 xfree (data);
2299 /* Callback called when the pointer enters/leaves a menu item.
2300 W is the parent of the menu item.
2301 EVENT is either an enter event or leave event.
2302 CLIENT_DATA is not used.
2304 Returns FALSE to tell GTK to keep processing this event. */
2306 static gboolean
2307 menuitem_highlight_callback (GtkWidget *w,
2308 GdkEventCrossing *event,
2309 gpointer client_data)
2311 GdkEvent ev;
2312 GtkWidget *subwidget;
2313 xg_menu_item_cb_data *data;
2315 ev.crossing = *event;
2316 subwidget = gtk_get_event_widget (&ev);
2317 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2318 if (data)
2320 if (! NILP (data->help) && data->cl_data->highlight_cb)
2322 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2323 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2324 (*func) (subwidget, call_data);
2328 return FALSE;
2331 /* Callback called when a menu is destroyed. Used to free data.
2332 W is the widget that is being destroyed (not used).
2333 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2335 static void
2336 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2338 unref_cl_data (client_data);
2341 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2342 must be non-NULL) and can be inserted into a menu item.
2344 Returns the GtkHBox. */
2346 static GtkWidget *
2347 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2349 GtkWidget *wlbl;
2350 GtkWidget *wkey;
2351 GtkWidget *wbox;
2353 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2354 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2355 wlbl = gtk_label_new (utf8_label);
2356 wkey = gtk_label_new (utf8_key);
2358 #if GTK_CHECK_VERSION (3, 14, 0)
2359 gtk_widget_set_halign (wlbl, GTK_ALIGN_START);
2360 gtk_widget_set_valign (wlbl, GTK_ALIGN_CENTER);
2361 gtk_widget_set_halign (wkey, GTK_ALIGN_START);
2362 gtk_widget_set_valign (wkey, GTK_ALIGN_CENTER);
2363 #else
2364 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2365 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2366 #endif
2367 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2368 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2370 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2371 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2372 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2374 return wbox;
2377 /* Make and return a menu item widget with the key to the right.
2378 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2379 UTF8_KEY is the text representing the key binding.
2380 ITEM is the widget_value describing the menu item.
2382 GROUP is an in/out parameter. If the menu item to be created is not
2383 part of any radio menu group, *GROUP contains NULL on entry and exit.
2384 If the menu item to be created is part of a radio menu group, on entry
2385 *GROUP contains the group to use, or NULL if this is the first item
2386 in the group. On exit, *GROUP contains the radio item group.
2388 Unfortunately, keys don't line up as nicely as in Motif,
2389 but the macOS version doesn't either, so I guess that is OK. */
2391 static GtkWidget *
2392 make_menu_item (const char *utf8_label,
2393 const char *utf8_key,
2394 widget_value *item,
2395 GSList **group)
2397 GtkWidget *w;
2398 GtkWidget *wtoadd = 0;
2400 /* It has been observed that some menu items have a NULL name field.
2401 This will lead to this function being called with a NULL utf8_label.
2402 GTK crashes on that so we set a blank label. Why there is a NULL
2403 name remains to be investigated. */
2404 if (! utf8_label) utf8_label = " ";
2406 if (utf8_key)
2407 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2409 if (item->button_type == BUTTON_TYPE_TOGGLE)
2411 *group = NULL;
2412 if (utf8_key) w = gtk_check_menu_item_new ();
2413 else w = gtk_check_menu_item_new_with_label (utf8_label);
2414 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2416 else if (item->button_type == BUTTON_TYPE_RADIO)
2418 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2419 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2420 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2421 if (item->selected)
2422 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2424 else
2426 *group = NULL;
2427 if (utf8_key) w = gtk_menu_item_new ();
2428 else w = gtk_menu_item_new_with_label (utf8_label);
2431 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2432 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2434 return w;
2437 /* Create a menu item widget, and connect the callbacks.
2438 ITEM describes the menu item.
2439 F is the frame the created menu belongs to.
2440 SELECT_CB is the callback to use when a menu item is selected.
2441 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2442 CL_DATA points to the callback data to be used for this menu.
2443 GROUP is an in/out parameter. If the menu item to be created is not
2444 part of any radio menu group, *GROUP contains NULL on entry and exit.
2445 If the menu item to be created is part of a radio menu group, on entry
2446 *GROUP contains the group to use, or NULL if this is the first item
2447 in the group. On exit, *GROUP contains the radio item group.
2449 Returns the created GtkWidget. */
2451 static GtkWidget *
2452 xg_create_one_menuitem (widget_value *item,
2453 struct frame *f,
2454 GCallback select_cb,
2455 GCallback highlight_cb,
2456 xg_menu_cb_data *cl_data,
2457 GSList **group)
2459 char *utf8_label;
2460 char *utf8_key;
2461 GtkWidget *w;
2462 xg_menu_item_cb_data *cb_data;
2464 utf8_label = get_utf8_string (item->name);
2465 utf8_key = get_utf8_string (item->key);
2467 w = make_menu_item (utf8_label, utf8_key, item, group);
2469 if (utf8_label) g_free (utf8_label);
2470 if (utf8_key) g_free (utf8_key);
2472 cb_data = xmalloc (sizeof *cb_data);
2474 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2476 cb_data->select_id = 0;
2477 cb_data->help = item->help;
2478 cb_data->cl_data = cl_data;
2479 cb_data->call_data = item->call_data;
2481 g_signal_connect (G_OBJECT (w),
2482 "destroy",
2483 G_CALLBACK (menuitem_destroy_callback),
2484 cb_data);
2486 /* Put cb_data in widget, so we can get at it when modifying menubar */
2487 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2489 /* final item, not a submenu */
2490 if (item->call_data && ! item->contents)
2492 if (select_cb)
2493 cb_data->select_id
2494 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2497 return w;
2500 /* Create a full menu tree specified by DATA.
2501 F is the frame the created menu belongs to.
2502 SELECT_CB is the callback to use when a menu item is selected.
2503 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2504 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2505 If POP_UP_P, create a popup menu.
2506 If MENU_BAR_P, create a menu bar.
2507 TOPMENU is the topmost GtkWidget that others shall be placed under.
2508 It may be NULL, in that case we create the appropriate widget
2509 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2510 CL_DATA is the callback data we shall use for this menu, or NULL
2511 if we haven't set the first callback yet.
2512 NAME is the name to give to the top level menu if this function
2513 creates it. May be NULL to not set any name.
2515 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2516 not NULL.
2518 This function calls itself to create submenus. */
2520 static GtkWidget *
2521 create_menus (widget_value *data,
2522 struct frame *f,
2523 GCallback select_cb,
2524 GCallback deactivate_cb,
2525 GCallback highlight_cb,
2526 bool pop_up_p,
2527 bool menu_bar_p,
2528 GtkWidget *topmenu,
2529 xg_menu_cb_data *cl_data,
2530 const char *name)
2532 widget_value *item;
2533 GtkWidget *wmenu = topmenu;
2534 GSList *group = NULL;
2536 if (! topmenu)
2538 if (! menu_bar_p)
2540 wmenu = gtk_menu_new ();
2541 xg_set_screen (wmenu, f);
2542 /* Connect this to the menu instead of items so we get enter/leave for
2543 disabled items also. TODO: Still does not get enter/leave for
2544 disabled items in detached menus. */
2545 g_signal_connect (G_OBJECT (wmenu),
2546 "enter-notify-event",
2547 G_CALLBACK (menuitem_highlight_callback),
2548 NULL);
2549 g_signal_connect (G_OBJECT (wmenu),
2550 "leave-notify-event",
2551 G_CALLBACK (menuitem_highlight_callback),
2552 NULL);
2554 else
2556 wmenu = gtk_menu_bar_new ();
2557 /* Set width of menu bar to a small value so it doesn't enlarge
2558 a small initial frame size. The width will be set to the
2559 width of the frame later on when it is added to a container.
2560 height -1: Natural height. */
2561 gtk_widget_set_size_request (wmenu, 1, -1);
2564 /* Put cl_data on the top menu for easier access. */
2565 cl_data = make_cl_data (cl_data, f, highlight_cb);
2566 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2567 g_signal_connect (G_OBJECT (wmenu), "destroy",
2568 G_CALLBACK (menu_destroy_callback), cl_data);
2570 if (name)
2571 gtk_widget_set_name (wmenu, name);
2573 if (deactivate_cb)
2574 g_signal_connect (G_OBJECT (wmenu),
2575 "selection-done", deactivate_cb, 0);
2578 for (item = data; item; item = item->next)
2580 GtkWidget *w;
2582 if (pop_up_p && !item->contents && !item->call_data
2583 && !menu_separator_name_p (item->name))
2585 char *utf8_label;
2586 /* A title for a popup. We do the same as GTK does when
2587 creating titles, but it does not look good. */
2588 group = NULL;
2589 utf8_label = get_utf8_string (item->name);
2591 w = gtk_menu_item_new_with_label (utf8_label);
2592 gtk_widget_set_sensitive (w, FALSE);
2593 if (utf8_label) g_free (utf8_label);
2595 else if (menu_separator_name_p (item->name))
2597 group = NULL;
2598 /* GTK only have one separator type. */
2599 w = gtk_separator_menu_item_new ();
2601 else
2603 w = xg_create_one_menuitem (item,
2605 item->contents ? 0 : select_cb,
2606 highlight_cb,
2607 cl_data,
2608 &group);
2610 /* Create a possibly empty submenu for menu bar items, since some
2611 themes don't highlight items correctly without it. */
2612 if (item->contents || menu_bar_p)
2614 GtkWidget *submenu = create_menus (item->contents,
2616 select_cb,
2617 deactivate_cb,
2618 highlight_cb,
2622 cl_data,
2624 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2628 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2629 gtk_widget_set_name (w, MENU_ITEM_NAME);
2632 return wmenu;
2635 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2636 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2637 with some text and buttons.
2638 F is the frame the created item belongs to.
2639 NAME is the name to use for the top widget.
2640 VAL is a widget_value structure describing items to be created.
2641 SELECT_CB is the callback to use when a menu item is selected or
2642 a dialog button is pressed.
2643 DEACTIVATE_CB is the callback to use when an item is deactivated.
2644 For a menu, when a sub menu is not shown anymore, for a dialog it is
2645 called when the dialog is popped down.
2646 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2648 Returns the widget created. */
2650 GtkWidget *
2651 xg_create_widget (const char *type, const char *name, struct frame *f,
2652 widget_value *val, GCallback select_cb,
2653 GCallback deactivate_cb, GCallback highlight_cb)
2655 GtkWidget *w = 0;
2656 bool menu_bar_p = strcmp (type, "menubar") == 0;
2657 bool pop_up_p = strcmp (type, "popup") == 0;
2659 if (strcmp (type, "dialog") == 0)
2661 w = create_dialog (val, select_cb, deactivate_cb);
2662 xg_set_screen (w, f);
2663 gtk_window_set_transient_for (GTK_WINDOW (w),
2664 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2665 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2666 gtk_widget_set_name (w, "emacs-dialog");
2667 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2669 else if (menu_bar_p || pop_up_p)
2671 w = create_menus (val->contents,
2673 select_cb,
2674 deactivate_cb,
2675 highlight_cb,
2676 pop_up_p,
2677 menu_bar_p,
2680 name);
2682 /* Set the cursor to an arrow for popup menus when they are mapped.
2683 This is done by default for menu bar menus. */
2684 if (pop_up_p)
2686 /* Must realize so the GdkWindow inside the widget is created. */
2687 gtk_widget_realize (w);
2688 xg_set_cursor (w, FRAME_DISPLAY_INFO (f)->xg_cursor);
2691 else
2693 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2694 type);
2697 return w;
2700 /* Return the label for menu item WITEM. */
2702 static const char *
2703 xg_get_menu_item_label (GtkMenuItem *witem)
2705 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2706 return gtk_label_get_label (wlabel);
2709 /* Return true if the menu item WITEM has the text LABEL. */
2711 static bool
2712 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2714 bool is_same = 0;
2715 char *utf8_label = get_utf8_string (label);
2716 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2718 if (! old_label && ! utf8_label)
2719 is_same = 1;
2720 else if (old_label && utf8_label)
2721 is_same = strcmp (utf8_label, old_label) == 0;
2723 if (utf8_label) g_free (utf8_label);
2725 return is_same;
2728 /* Destroy widgets in LIST. */
2730 static void
2731 xg_destroy_widgets (GList *list)
2733 GList *iter;
2735 for (iter = list; iter; iter = g_list_next (iter))
2737 GtkWidget *w = GTK_WIDGET (iter->data);
2739 /* Destroying the widget will remove it from the container it is in. */
2740 gtk_widget_destroy (w);
2744 /* Update the top level names in MENUBAR (i.e. not submenus).
2745 F is the frame the menu bar belongs to.
2746 *LIST is a list with the current menu bar names (menu item widgets).
2747 ITER is the item within *LIST that shall be updated.
2748 POS is the numerical position, starting at 0, of ITER in *LIST.
2749 VAL describes what the menu bar shall look like after the update.
2750 SELECT_CB is the callback to use when a menu item is selected.
2751 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2752 CL_DATA points to the callback data to be used for this menu bar.
2754 This function calls itself to walk through the menu bar names. */
2756 static void
2757 xg_update_menubar (GtkWidget *menubar,
2758 struct frame *f,
2759 GList **list,
2760 GList *iter,
2761 int pos,
2762 widget_value *val,
2763 GCallback select_cb,
2764 GCallback deactivate_cb,
2765 GCallback highlight_cb,
2766 xg_menu_cb_data *cl_data)
2768 if (! iter && ! val)
2769 return;
2770 else if (iter && ! val)
2772 /* Item(s) have been removed. Remove all remaining items. */
2773 xg_destroy_widgets (iter);
2775 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2776 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2777 gtk_menu_item_new_with_label (""),
2779 /* All updated. */
2780 val = 0;
2781 iter = 0;
2783 else if (! iter && val)
2785 /* Item(s) added. Add all new items in one call. */
2786 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2787 0, 1, menubar, cl_data, 0);
2789 /* All updated. */
2790 val = 0;
2791 iter = 0;
2793 /* Below this neither iter or val is NULL */
2794 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2796 /* This item is still the same, check next item. */
2797 val = val->next;
2798 iter = g_list_next (iter);
2799 ++pos;
2801 else /* This item is changed. */
2803 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2804 GtkMenuItem *witem2 = 0;
2805 bool val_in_menubar = 0;
2806 bool iter_in_new_menubar = 0;
2807 GList *iter2;
2808 widget_value *cur;
2810 /* See if the changed entry (val) is present later in the menu bar */
2811 for (iter2 = iter;
2812 iter2 && ! val_in_menubar;
2813 iter2 = g_list_next (iter2))
2815 witem2 = GTK_MENU_ITEM (iter2->data);
2816 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2819 /* See if the current entry (iter) is present later in the
2820 specification for the new menu bar. */
2821 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2822 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2824 if (val_in_menubar && ! iter_in_new_menubar)
2826 int nr = pos;
2828 /* This corresponds to:
2829 Current: A B C
2830 New: A C
2831 Remove B. */
2833 g_object_ref (G_OBJECT (witem));
2834 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2835 gtk_widget_destroy (GTK_WIDGET (witem));
2837 /* Must get new list since the old changed. */
2838 g_list_free (*list);
2839 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2840 while (nr-- > 0) iter = g_list_next (iter);
2842 else if (! val_in_menubar && ! iter_in_new_menubar)
2844 /* This corresponds to:
2845 Current: A B C
2846 New: A X C
2847 Rename B to X. This might seem to be a strange thing to do,
2848 since if there is a menu under B it will be totally wrong for X.
2849 But consider editing a C file. Then there is a C-mode menu
2850 (corresponds to B above).
2851 If then doing C-x C-f the minibuf menu (X above) replaces the
2852 C-mode menu. When returning from the minibuffer, we get
2853 back the C-mode menu. Thus we do:
2854 Rename B to X (C-mode to minibuf menu)
2855 Rename X to B (minibuf to C-mode menu).
2856 If the X menu hasn't been invoked, the menu under B
2857 is up to date when leaving the minibuffer. */
2858 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2859 char *utf8_label = get_utf8_string (val->name);
2861 /* GTK menu items don't notice when their labels have been
2862 changed from underneath them, so we have to explicitly
2863 use g_object_notify to tell listeners (e.g., a GMenuModel
2864 bridge that might be loaded) that the item's label has
2865 changed. */
2866 gtk_label_set_text (wlabel, utf8_label);
2867 #if GTK_CHECK_VERSION (2, 16, 0)
2868 g_object_notify (G_OBJECT (witem), "label");
2869 #endif
2870 if (utf8_label) g_free (utf8_label);
2871 iter = g_list_next (iter);
2872 val = val->next;
2873 ++pos;
2875 else if (! val_in_menubar && iter_in_new_menubar)
2877 /* This corresponds to:
2878 Current: A B C
2879 New: A X B C
2880 Insert X. */
2882 int nr = pos;
2883 GSList *group = 0;
2884 GtkWidget *w = xg_create_one_menuitem (val,
2886 select_cb,
2887 highlight_cb,
2888 cl_data,
2889 &group);
2891 /* Create a possibly empty submenu for menu bar items, since some
2892 themes don't highlight items correctly without it. */
2893 GtkWidget *submenu = create_menus (NULL, f,
2894 select_cb, deactivate_cb,
2895 highlight_cb,
2896 0, 0, 0, cl_data, 0);
2898 gtk_widget_set_name (w, MENU_ITEM_NAME);
2899 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2900 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2902 g_list_free (*list);
2903 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2904 while (nr-- > 0) iter = g_list_next (iter);
2905 iter = g_list_next (iter);
2906 val = val->next;
2907 ++pos;
2909 else /* if (val_in_menubar && iter_in_new_menubar) */
2911 int nr = pos;
2912 /* This corresponds to:
2913 Current: A B C
2914 New: A C B
2915 Move C before B */
2917 g_object_ref (G_OBJECT (witem2));
2918 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2919 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2920 GTK_WIDGET (witem2), pos);
2921 g_object_unref (G_OBJECT (witem2));
2923 g_list_free (*list);
2924 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2925 while (nr-- > 0) iter = g_list_next (iter);
2926 if (iter) iter = g_list_next (iter);
2927 val = val->next;
2928 ++pos;
2932 /* Update the rest of the menu bar. */
2933 xg_update_menubar (menubar, f, list, iter, pos, val,
2934 select_cb, deactivate_cb, highlight_cb, cl_data);
2937 /* Update the menu item W so it corresponds to VAL.
2938 SELECT_CB is the callback to use when a menu item is selected.
2939 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2940 CL_DATA is the data to set in the widget for menu invocation. */
2942 static void
2943 xg_update_menu_item (widget_value *val,
2944 GtkWidget *w,
2945 GCallback select_cb,
2946 GCallback highlight_cb,
2947 xg_menu_cb_data *cl_data)
2949 GtkWidget *wchild;
2950 GtkLabel *wlbl = 0;
2951 GtkLabel *wkey = 0;
2952 char *utf8_label;
2953 char *utf8_key;
2954 const char *old_label = 0;
2955 const char *old_key = 0;
2956 xg_menu_item_cb_data *cb_data;
2957 bool label_changed = false;
2959 wchild = XG_BIN_CHILD (w);
2960 utf8_label = get_utf8_string (val->name);
2961 utf8_key = get_utf8_string (val->key);
2963 /* See if W is a menu item with a key. See make_menu_item above. */
2964 if (GTK_IS_BOX (wchild))
2966 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
2968 wlbl = GTK_LABEL (list->data);
2969 wkey = GTK_LABEL (list->next->data);
2970 g_list_free (list);
2972 if (! utf8_key)
2974 /* Remove the key and keep just the label. */
2975 g_object_ref (G_OBJECT (wlbl));
2976 gtk_container_remove (GTK_CONTAINER (w), wchild);
2977 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
2978 g_object_unref (G_OBJECT (wlbl));
2979 wkey = 0;
2983 else /* Just a label. */
2985 wlbl = GTK_LABEL (wchild);
2987 /* Check if there is now a key. */
2988 if (utf8_key)
2990 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2991 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
2993 wlbl = GTK_LABEL (list->data);
2994 wkey = GTK_LABEL (list->next->data);
2995 g_list_free (list);
2997 gtk_container_remove (GTK_CONTAINER (w), wchild);
2998 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3002 if (wkey) old_key = gtk_label_get_label (wkey);
3003 if (wlbl) old_label = gtk_label_get_label (wlbl);
3005 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
3007 label_changed = true;
3008 gtk_label_set_text (wkey, utf8_key);
3011 if (! old_label || strcmp (utf8_label, old_label) != 0)
3013 label_changed = true;
3014 gtk_label_set_text (wlbl, utf8_label);
3017 if (utf8_key) g_free (utf8_key);
3018 if (utf8_label) g_free (utf8_label);
3020 if (! val->enabled && gtk_widget_get_sensitive (w))
3021 gtk_widget_set_sensitive (w, FALSE);
3022 else if (val->enabled && ! gtk_widget_get_sensitive (w))
3023 gtk_widget_set_sensitive (w, TRUE);
3025 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
3026 if (cb_data)
3028 cb_data->call_data = val->call_data;
3029 cb_data->help = val->help;
3030 cb_data->cl_data = cl_data;
3032 /* We assume the callback functions don't change. */
3033 if (val->call_data && ! val->contents)
3035 /* This item shall have a select callback. */
3036 if (! cb_data->select_id)
3037 cb_data->select_id
3038 = g_signal_connect (G_OBJECT (w), "activate",
3039 select_cb, cb_data);
3041 else if (cb_data->select_id)
3043 g_signal_handler_disconnect (w, cb_data->select_id);
3044 cb_data->select_id = 0;
3048 #if GTK_CHECK_VERSION (2, 16, 0)
3049 if (label_changed) /* See comment in xg_update_menubar. */
3050 g_object_notify (G_OBJECT (w), "label");
3051 #endif
3054 /* Update the toggle menu item W so it corresponds to VAL. */
3056 static void
3057 xg_update_toggle_item (widget_value *val, GtkWidget *w)
3059 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3062 /* Update the radio menu item W so it corresponds to VAL. */
3064 static void
3065 xg_update_radio_item (widget_value *val, GtkWidget *w)
3067 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3070 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3071 SUBMENU may be NULL, in that case a new menu is created.
3072 F is the frame the menu bar belongs to.
3073 VAL describes the contents of the menu bar.
3074 SELECT_CB is the callback to use when a menu item is selected.
3075 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3076 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3077 CL_DATA is the call back data to use for any newly created items.
3079 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3080 was NULL. */
3082 static GtkWidget *
3083 xg_update_submenu (GtkWidget *submenu,
3084 struct frame *f,
3085 widget_value *val,
3086 GCallback select_cb,
3087 GCallback deactivate_cb,
3088 GCallback highlight_cb,
3089 xg_menu_cb_data *cl_data)
3091 GtkWidget *newsub = submenu;
3092 GList *list = 0;
3093 GList *iter;
3094 widget_value *cur;
3095 GList *first_radio = 0;
3097 if (submenu)
3098 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3100 for (cur = val, iter = list;
3101 cur && iter;
3102 iter = g_list_next (iter), cur = cur->next)
3104 GtkWidget *w = GTK_WIDGET (iter->data);
3106 /* Remember first radio button in a group. If we get a mismatch in
3107 a radio group we must rebuild the whole group so that the connections
3108 in GTK becomes correct. */
3109 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3110 first_radio = iter;
3111 else if (cur->button_type != BUTTON_TYPE_RADIO
3112 && ! GTK_IS_RADIO_MENU_ITEM (w))
3113 first_radio = 0;
3115 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3117 if (! menu_separator_name_p (cur->name))
3118 break;
3120 else if (GTK_IS_CHECK_MENU_ITEM (w))
3122 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3123 break;
3124 xg_update_toggle_item (cur, w);
3125 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3127 else if (GTK_IS_RADIO_MENU_ITEM (w))
3129 if (cur->button_type != BUTTON_TYPE_RADIO)
3130 break;
3131 xg_update_radio_item (cur, w);
3132 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3134 else if (GTK_IS_MENU_ITEM (w))
3136 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3137 GtkWidget *sub;
3139 if (cur->button_type != BUTTON_TYPE_NONE ||
3140 menu_separator_name_p (cur->name))
3141 break;
3143 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3145 sub = gtk_menu_item_get_submenu (witem);
3146 if (sub && ! cur->contents)
3148 /* Not a submenu anymore. */
3149 g_object_ref (G_OBJECT (sub));
3150 remove_submenu (witem);
3151 gtk_widget_destroy (sub);
3153 else if (cur->contents)
3155 GtkWidget *nsub;
3157 nsub = xg_update_submenu (sub, f, cur->contents,
3158 select_cb, deactivate_cb,
3159 highlight_cb, cl_data);
3161 /* If this item just became a submenu, we must set it. */
3162 if (nsub != sub)
3163 gtk_menu_item_set_submenu (witem, nsub);
3166 else
3168 /* Structural difference. Remove everything from here and down
3169 in SUBMENU. */
3170 break;
3174 /* Remove widgets from first structural change. */
3175 if (iter)
3177 /* If we are adding new menu items below, we must remove from
3178 first radio button so that radio groups become correct. */
3179 if (cur && first_radio) xg_destroy_widgets (first_radio);
3180 else xg_destroy_widgets (iter);
3183 if (cur)
3185 /* More items added. Create them. */
3186 newsub = create_menus (cur,
3188 select_cb,
3189 deactivate_cb,
3190 highlight_cb,
3193 submenu,
3194 cl_data,
3198 if (list) g_list_free (list);
3200 return newsub;
3203 /* Update the MENUBAR.
3204 F is the frame the menu bar belongs to.
3205 VAL describes the contents of the menu bar.
3206 If DEEP_P, rebuild all but the top level menu names in
3207 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3208 SELECT_CB is the callback to use when a menu item is selected.
3209 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3210 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3212 void
3213 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3214 widget_value *val, bool deep_p,
3215 GCallback select_cb, GCallback deactivate_cb,
3216 GCallback highlight_cb)
3218 xg_menu_cb_data *cl_data;
3219 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3221 if (! list) return;
3223 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3225 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3226 select_cb, deactivate_cb, highlight_cb, cl_data);
3228 if (deep_p)
3230 widget_value *cur;
3232 /* Update all sub menus.
3233 We must keep the submenus (GTK menu item widgets) since the
3234 X Window in the XEvent that activates the menu are those widgets. */
3236 /* Update cl_data, menu_item things in F may have changed. */
3237 update_cl_data (cl_data, f, highlight_cb);
3239 for (cur = val->contents; cur; cur = cur->next)
3241 GList *iter;
3242 GtkWidget *sub = 0;
3243 GtkWidget *newsub;
3244 GtkMenuItem *witem = 0;
3246 /* Find sub menu that corresponds to val and update it. */
3247 for (iter = list ; iter; iter = g_list_next (iter))
3249 witem = GTK_MENU_ITEM (iter->data);
3250 if (xg_item_label_same_p (witem, cur->name))
3252 sub = gtk_menu_item_get_submenu (witem);
3253 break;
3257 newsub = xg_update_submenu (sub,
3259 cur->contents,
3260 select_cb,
3261 deactivate_cb,
3262 highlight_cb,
3263 cl_data);
3264 /* sub may still be NULL. If we just updated non deep and added
3265 a new menu bar item, it has no sub menu yet. So we set the
3266 newly created sub menu under witem. */
3267 if (newsub != sub && witem != 0)
3269 xg_set_screen (newsub, f);
3270 gtk_menu_item_set_submenu (witem, newsub);
3275 g_list_free (list);
3276 gtk_widget_show_all (menubar);
3279 /* Callback called when the menu bar W is mapped.
3280 Used to find the height of the menu bar if we didn't get it
3281 after showing the widget. */
3283 static void
3284 menubar_map_cb (GtkWidget *w, gpointer user_data)
3286 GtkRequisition req;
3287 struct frame *f = user_data;
3288 gtk_widget_get_preferred_size (w, NULL, &req);
3289 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3291 FRAME_MENUBAR_HEIGHT (f) = req.height;
3292 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3296 /* Recompute all the widgets of frame F, when the menu bar has been
3297 changed. */
3299 void
3300 xg_update_frame_menubar (struct frame *f)
3302 struct x_output *x = f->output_data.x;
3303 GtkRequisition req;
3305 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3306 return;
3308 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3309 return; /* Already done this, happens for frames created invisible. */
3311 block_input ();
3313 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3314 FALSE, FALSE, 0);
3315 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3317 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3318 gtk_widget_show_all (x->menubar_widget);
3319 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3321 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3323 FRAME_MENUBAR_HEIGHT (f) = req.height;
3324 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3326 unblock_input ();
3329 /* Get rid of the menu bar of frame F, and free its storage.
3330 This is used when deleting a frame, and when turning off the menu bar. */
3332 void
3333 free_frame_menubar (struct frame *f)
3335 struct x_output *x = f->output_data.x;
3337 if (x->menubar_widget)
3339 block_input ();
3341 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3342 /* The menubar and its children shall be deleted when removed from
3343 the container. */
3344 x->menubar_widget = 0;
3345 FRAME_MENUBAR_HEIGHT (f) = 0;
3346 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3347 unblock_input ();
3351 bool
3352 xg_event_is_for_menubar (struct frame *f, const XEvent *event)
3354 struct x_output *x = f->output_data.x;
3355 GList *iter;
3356 GdkRectangle rec;
3357 GList *list;
3358 GdkDisplay *gdpy;
3359 GdkWindow *gw;
3360 GdkEvent gevent;
3361 GtkWidget *gwdesc;
3363 if (! x->menubar_widget) return 0;
3365 if (! (event->xbutton.x >= 0
3366 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3367 && event->xbutton.y >= 0
3368 && event->xbutton.y < FRAME_MENUBAR_HEIGHT (f)
3369 && event->xbutton.same_screen))
3370 return 0;
3372 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3373 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3374 if (! gw) return 0;
3375 gevent.any.window = gw;
3376 gevent.any.type = GDK_NOTHING;
3377 gwdesc = gtk_get_event_widget (&gevent);
3378 if (! gwdesc) return 0;
3379 if (! GTK_IS_MENU_BAR (gwdesc)
3380 && ! GTK_IS_MENU_ITEM (gwdesc)
3381 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3382 return 0;
3384 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3385 if (! list) return 0;
3386 rec.x = event->xbutton.x;
3387 rec.y = event->xbutton.y;
3388 rec.width = 1;
3389 rec.height = 1;
3391 for (iter = list ; iter; iter = g_list_next (iter))
3393 GtkWidget *w = GTK_WIDGET (iter->data);
3394 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3395 break;
3397 g_list_free (list);
3398 return iter != 0;
3403 /***********************************************************************
3404 Scroll bar functions
3405 ***********************************************************************/
3408 /* Setting scroll bar values invokes the callback. Use this variable
3409 to indicate that callback should do nothing. */
3411 bool xg_ignore_gtk_scrollbar;
3413 /* Width and height of scroll bars for the current theme. */
3414 static int scroll_bar_width_for_theme;
3415 static int scroll_bar_height_for_theme;
3417 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3418 may be larger than 32 bits. Keep a mapping from integer index to widget
3419 pointers to get around the 32 bit limitation. */
3421 static struct
3423 GtkWidget **widgets;
3424 ptrdiff_t max_size;
3425 ptrdiff_t used;
3426 } id_to_widget;
3428 /* Grow this much every time we need to allocate more */
3430 #define ID_TO_WIDGET_INCR 32
3432 /* Store the widget pointer W in id_to_widget and return the integer index. */
3434 static ptrdiff_t
3435 xg_store_widget_in_map (GtkWidget *w)
3437 ptrdiff_t i;
3439 if (id_to_widget.max_size == id_to_widget.used)
3441 ptrdiff_t new_size;
3442 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3443 memory_full (SIZE_MAX);
3445 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3446 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3447 new_size, sizeof (GtkWidget *));
3449 for (i = id_to_widget.max_size; i < new_size; ++i)
3450 id_to_widget.widgets[i] = 0;
3451 id_to_widget.max_size = new_size;
3454 /* Just loop over the array and find a free place. After all,
3455 how many scroll bars are we creating? Should be a small number.
3456 The check above guarantees we will find a free place. */
3457 for (i = 0; i < id_to_widget.max_size; ++i)
3459 if (! id_to_widget.widgets[i])
3461 id_to_widget.widgets[i] = w;
3462 ++id_to_widget.used;
3464 return i;
3468 /* Should never end up here */
3469 emacs_abort ();
3472 /* Remove pointer at IDX from id_to_widget.
3473 Called when scroll bar is destroyed. */
3475 static void
3476 xg_remove_widget_from_map (ptrdiff_t idx)
3478 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3480 id_to_widget.widgets[idx] = 0;
3481 --id_to_widget.used;
3485 /* Get the widget pointer at IDX from id_to_widget. */
3487 static GtkWidget *
3488 xg_get_widget_from_map (ptrdiff_t idx)
3490 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3491 return id_to_widget.widgets[idx];
3493 return 0;
3496 static void
3497 update_theme_scrollbar_width (void)
3499 #ifdef HAVE_GTK3
3500 GtkAdjustment *vadj;
3501 #else
3502 GtkObject *vadj;
3503 #endif
3504 GtkWidget *wscroll;
3505 int w = 0, b = 0;
3507 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3508 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3509 g_object_ref_sink (G_OBJECT (wscroll));
3510 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3511 gtk_widget_destroy (wscroll);
3512 g_object_unref (G_OBJECT (wscroll));
3513 w += 2*b;
3514 #ifndef HAVE_GTK3
3515 if (w < 16) w = 16;
3516 #endif
3517 scroll_bar_width_for_theme = w;
3520 static void
3521 update_theme_scrollbar_height (void)
3523 #ifdef HAVE_GTK3
3524 GtkAdjustment *hadj;
3525 #else
3526 GtkObject *hadj;
3527 #endif
3528 GtkWidget *wscroll;
3529 int w = 0, b = 0;
3531 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX, 0.1, 0.1, 0.1);
3532 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3533 g_object_ref_sink (G_OBJECT (wscroll));
3534 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3535 gtk_widget_destroy (wscroll);
3536 g_object_unref (G_OBJECT (wscroll));
3537 w += 2*b;
3538 if (w < 12) w = 12;
3539 scroll_bar_height_for_theme = w;
3543 xg_get_default_scrollbar_width (void)
3545 return scroll_bar_width_for_theme * xg_get_gdk_scale ();
3549 xg_get_default_scrollbar_height (void)
3551 /* Apparently there's no default height for themes. */
3552 return scroll_bar_width_for_theme * xg_get_gdk_scale ();
3555 /* Return the scrollbar id for X Window WID on display DPY.
3556 Return -1 if WID not in id_to_widget. */
3558 ptrdiff_t
3559 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3561 ptrdiff_t idx;
3562 GtkWidget *w;
3564 w = xg_win_to_widget (dpy, wid);
3566 if (w)
3568 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3569 if (id_to_widget.widgets[idx] == w)
3570 return idx;
3573 return -1;
3576 /* Callback invoked when scroll bar WIDGET is destroyed.
3577 DATA is the index into id_to_widget for WIDGET.
3578 We free pointer to last scroll bar values here and remove the index. */
3580 static void
3581 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3583 intptr_t id = (intptr_t) data;
3584 xg_remove_widget_from_map (id);
3587 static void
3588 xg_finish_scroll_bar_creation (struct frame *f,
3589 GtkWidget *wscroll,
3590 struct scroll_bar *bar,
3591 GCallback scroll_callback,
3592 GCallback end_callback,
3593 const char *scroll_bar_name)
3595 GtkWidget *webox = gtk_event_box_new ();
3597 gtk_widget_set_name (wscroll, scroll_bar_name);
3598 #ifndef HAVE_GTK3
3599 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3600 #endif
3601 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3603 ptrdiff_t scroll_id = xg_store_widget_in_map (wscroll);
3605 g_signal_connect (G_OBJECT (wscroll),
3606 "destroy",
3607 G_CALLBACK (xg_gtk_scroll_destroy),
3608 (gpointer) scroll_id);
3609 g_signal_connect (G_OBJECT (wscroll),
3610 "change-value",
3611 scroll_callback,
3612 (gpointer) bar);
3613 g_signal_connect (G_OBJECT (wscroll),
3614 "button-release-event",
3615 end_callback,
3616 (gpointer) bar);
3618 /* The scroll bar widget does not draw on a window of its own. Instead
3619 it draws on the parent window, in this case the edit widget. So
3620 whenever the edit widget is cleared, the scroll bar needs to redraw
3621 also, which causes flicker. Put an event box between the edit widget
3622 and the scroll bar, so the scroll bar instead draws itself on the
3623 event box window. */
3624 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3625 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3627 xg_set_widget_bg (f, webox, FRAME_BACKGROUND_PIXEL (f));
3629 /* N.B. The event box doesn't become a real X11 window until we ask
3630 for its XID via GTK_WIDGET_TO_X_WIN. If the event box is not a
3631 real X window, it and its scroll-bar child try to draw on the
3632 Emacs main window, which we draw over using Xlib. */
3633 gtk_widget_realize (webox);
3634 GTK_WIDGET_TO_X_WIN (webox);
3636 /* Set the cursor to an arrow. */
3637 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3639 bar->x_window = scroll_id;
3642 /* Create a scroll bar widget for frame F. Store the scroll bar
3643 in BAR.
3644 SCROLL_CALLBACK is the callback to invoke when the value of the
3645 bar changes.
3646 END_CALLBACK is the callback to invoke when scrolling ends.
3647 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3648 to set resources for the widget. */
3650 void
3651 xg_create_scroll_bar (struct frame *f,
3652 struct scroll_bar *bar,
3653 GCallback scroll_callback,
3654 GCallback end_callback,
3655 const char *scroll_bar_name)
3657 GtkWidget *wscroll;
3658 #ifdef HAVE_GTK3
3659 GtkAdjustment *vadj;
3660 #else
3661 GtkObject *vadj;
3662 #endif
3664 /* Page, step increment values are not so important here, they
3665 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3666 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3667 0.1, 0.1, 0.1);
3669 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3671 xg_finish_scroll_bar_creation (f, wscroll, bar, scroll_callback,
3672 end_callback, scroll_bar_name);
3673 bar->horizontal = 0;
3676 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3677 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3678 of the bar changes. END_CALLBACK is the callback to invoke when
3679 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3680 bar. Can be used to set resources for the widget. */
3682 void
3683 xg_create_horizontal_scroll_bar (struct frame *f,
3684 struct scroll_bar *bar,
3685 GCallback scroll_callback,
3686 GCallback end_callback,
3687 const char *scroll_bar_name)
3689 GtkWidget *wscroll;
3690 #ifdef HAVE_GTK3
3691 GtkAdjustment *hadj;
3692 #else
3693 GtkObject *hadj;
3694 #endif
3696 /* Page, step increment values are not so important here, they
3697 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3698 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX,
3699 0.1, 0.1, 0.1);
3701 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3703 xg_finish_scroll_bar_creation (f, wscroll, bar, scroll_callback,
3704 end_callback, scroll_bar_name);
3705 bar->horizontal = 1;
3708 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3710 void
3711 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3713 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3714 if (w)
3716 GtkWidget *wparent = gtk_widget_get_parent (w);
3717 gtk_widget_destroy (w);
3718 gtk_widget_destroy (wparent);
3719 SET_FRAME_GARBAGED (f);
3723 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3724 in frame F.
3725 TOP/LEFT are the new pixel positions where the bar shall appear.
3726 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3728 void
3729 xg_update_scrollbar_pos (struct frame *f,
3730 ptrdiff_t scrollbar_id,
3731 int top,
3732 int left,
3733 int width,
3734 int height)
3736 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3737 if (wscroll)
3739 GtkWidget *wfixed = f->output_data.x->edit_widget;
3740 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3741 gint msl;
3742 int scale = xg_get_gdk_scale ();
3744 top /= scale;
3745 left /= scale;
3746 height /= scale;
3747 left -= (scale - 1) * ((width / scale) >> 1);
3749 /* Clear out old position. */
3750 int oldx = -1, oldy = -1, oldw, oldh;
3751 if (gtk_widget_get_parent (wparent) == wfixed)
3753 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3754 "x", &oldx, "y", &oldy, NULL);
3755 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3758 /* Move and resize to new values. */
3759 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3760 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3761 if (msl > height)
3763 /* No room. Hide scroll bar as some themes output a warning if
3764 the height is less than the min size. */
3765 gtk_widget_hide (wparent);
3766 gtk_widget_hide (wscroll);
3768 else
3770 gtk_widget_show_all (wparent);
3771 gtk_widget_set_size_request (wscroll, width, height);
3773 if (oldx != -1 && oldw > 0 && oldh > 0)
3775 /* Clear under old scroll bar position. */
3776 oldw += (scale - 1) * oldw;
3777 oldx -= (scale - 1) * oldw;
3778 x_clear_area (f, oldx, oldy, oldw, oldh);
3781 /* GTK does not redraw until the main loop is entered again, but
3782 if there are no X events pending we will not enter it. So we sync
3783 here to get some events. */
3785 x_sync (f);
3786 SET_FRAME_GARBAGED (f);
3787 cancel_mouse_face (f);
3792 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3793 in frame F.
3794 TOP/LEFT are the new pixel positions where the bar shall appear.
3795 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3797 void
3798 xg_update_horizontal_scrollbar_pos (struct frame *f,
3799 ptrdiff_t scrollbar_id,
3800 int top,
3801 int left,
3802 int width,
3803 int height)
3806 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3808 if (wscroll)
3810 GtkWidget *wfixed = f->output_data.x->edit_widget;
3811 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3812 gint msl;
3814 /* Clear out old position. */
3815 int oldx = -1, oldy = -1, oldw, oldh;
3816 if (gtk_widget_get_parent (wparent) == wfixed)
3818 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3819 "x", &oldx, "y", &oldy, NULL);
3820 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3823 /* Move and resize to new values. */
3824 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3825 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3826 if (msl > width)
3828 /* No room. Hide scroll bar as some themes output a warning if
3829 the width is less than the min size. */
3830 gtk_widget_hide (wparent);
3831 gtk_widget_hide (wscroll);
3833 else
3835 gtk_widget_show_all (wparent);
3836 gtk_widget_set_size_request (wscroll, width, height);
3838 if (oldx != -1 && oldw > 0 && oldh > 0)
3839 /* Clear under old scroll bar position. */
3840 x_clear_area (f, oldx, oldy, oldw, oldh);
3842 /* GTK does not redraw until the main loop is entered again, but
3843 if there are no X events pending we will not enter it. So we sync
3844 here to get some events. */
3846 x_sync (f);
3847 SET_FRAME_GARBAGED (f);
3848 cancel_mouse_face (f);
3853 /* Get the current value of the range, truncated to an integer. */
3855 static int
3856 int_gtk_range_get_value (GtkRange *range)
3858 return gtk_range_get_value (range);
3862 /* Set the thumb size and position of scroll bar BAR. We are currently
3863 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3865 void
3866 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3867 int portion,
3868 int position,
3869 int whole)
3871 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3873 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3875 if (wscroll && bar->dragging == -1)
3877 GtkAdjustment *adj;
3878 gdouble shown;
3879 gdouble top;
3880 int size, value;
3881 int old_size;
3882 int new_step;
3883 bool changed = 0;
3885 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3887 if (scroll_bar_adjust_thumb_portion_p)
3889 /* We do the same as for MOTIF in xterm.c, use 30 chars per
3890 line rather than the real portion value. This makes the
3891 thumb less likely to resize and that looks better. */
3892 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3894 /* When the thumb is at the bottom, position == whole.
3895 So we need to increase `whole' to make space for the thumb. */
3896 whole += portion;
3899 if (whole <= 0)
3900 top = 0, shown = 1;
3901 else
3903 top = (gdouble) position / whole;
3904 shown = (gdouble) portion / whole;
3907 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
3908 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
3910 /* Assume all lines are of equal size. */
3911 new_step = size / max (1, FRAME_LINES (f));
3913 old_size = gtk_adjustment_get_page_size (adj);
3914 if (old_size != size)
3916 int old_step = gtk_adjustment_get_step_increment (adj);
3917 if (old_step != new_step)
3919 gtk_adjustment_set_page_size (adj, size);
3920 gtk_adjustment_set_step_increment (adj, new_step);
3921 /* Assume a page increment is about 95% of the page size */
3922 gtk_adjustment_set_page_increment (adj, size - size / 20);
3923 changed = 1;
3927 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3929 block_input ();
3931 /* gtk_range_set_value invokes the callback. Set
3932 ignore_gtk_scrollbar to make the callback do nothing */
3933 xg_ignore_gtk_scrollbar = 1;
3935 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3936 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3937 else if (changed)
3938 gtk_adjustment_changed (adj);
3940 xg_ignore_gtk_scrollbar = 0;
3942 unblock_input ();
3947 /* Set the thumb size and position of horizontal scroll bar BAR. We are
3948 currently displaying PORTION out of a whole WHOLE, and our position
3949 POSITION. */
3950 void
3951 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar *bar,
3952 int portion,
3953 int position,
3954 int whole)
3956 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3958 if (wscroll && bar->dragging == -1)
3960 GtkAdjustment *adj;
3961 int lower = 0;
3962 int upper = max (whole - 1, 0);
3963 int pagesize = min (upper, max (portion, 0));
3964 int value = max (0, min (position, upper - pagesize));
3965 /* These should be set to something more <portion, whole>
3966 related. */
3967 int page_increment = 4;
3968 int step_increment = 1;
3970 block_input ();
3971 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3972 gtk_adjustment_configure (adj, (gdouble) value, (gdouble) lower,
3973 (gdouble) upper, (gdouble) step_increment,
3974 (gdouble) page_increment, (gdouble) pagesize);
3975 gtk_adjustment_changed (adj);
3976 unblock_input ();
3980 /* Return true if EVENT is for a scroll bar in frame F.
3981 When the same X window is used for several Gtk+ widgets, we cannot
3982 say for sure based on the X window alone if an event is for the
3983 frame. This function does additional checks. */
3985 bool
3986 xg_event_is_for_scrollbar (struct frame *f, const XEvent *event)
3988 bool retval = 0;
3990 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3992 /* Check if press occurred outside the edit widget. */
3993 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3994 GdkWindow *gwin;
3995 #ifdef HAVE_GTK3
3996 GdkDevice *gdev = gdk_device_manager_get_client_pointer
3997 (gdk_display_get_device_manager (gdpy));
3998 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
3999 #else
4000 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
4001 #endif
4002 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
4004 else if (f
4005 && ((event->type == ButtonRelease && event->xbutton.button < 4)
4006 || event->type == MotionNotify))
4008 /* If we are releasing or moving the scroll bar, it has the grab. */
4009 GtkWidget *w = gtk_grab_get_current ();
4010 retval = w != 0 && GTK_IS_SCROLLBAR (w);
4013 return retval;
4017 /***********************************************************************
4018 Printing
4019 ***********************************************************************/
4020 #ifdef USE_CAIRO
4021 static GtkPrintSettings *print_settings = NULL;
4022 static GtkPageSetup *page_setup = NULL;
4024 void
4025 xg_page_setup_dialog (void)
4027 GtkPageSetup *new_page_setup = NULL;
4029 if (print_settings == NULL)
4030 print_settings = gtk_print_settings_new ();
4031 new_page_setup = gtk_print_run_page_setup_dialog (NULL, page_setup,
4032 print_settings);
4033 if (page_setup)
4034 g_object_unref (page_setup);
4035 page_setup = new_page_setup;
4038 Lisp_Object
4039 xg_get_page_setup (void)
4041 Lisp_Object orientation_symbol;
4043 if (page_setup == NULL)
4044 page_setup = gtk_page_setup_new ();
4046 switch (gtk_page_setup_get_orientation (page_setup))
4048 case GTK_PAGE_ORIENTATION_PORTRAIT:
4049 orientation_symbol = Qportrait;
4050 break;
4051 case GTK_PAGE_ORIENTATION_LANDSCAPE:
4052 orientation_symbol = Qlandscape;
4053 break;
4054 case GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT:
4055 orientation_symbol = Qreverse_portrait;
4056 break;
4057 case GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE:
4058 orientation_symbol = Qreverse_landscape;
4059 break;
4060 default:
4061 eassume (false);
4064 return listn (CONSTYPE_HEAP, 7,
4065 Fcons (Qorientation, orientation_symbol),
4066 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4067 Fcons (Qwidth,
4068 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width)),
4069 Fcons (Qheight,
4070 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height)),
4071 Fcons (Qleft_margin,
4072 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin)),
4073 Fcons (Qright_margin,
4074 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin)),
4075 Fcons (Qtop_margin,
4076 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin)),
4077 Fcons (Qbottom_margin,
4078 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin))
4079 #undef MAKE_FLOAT_PAGE_SETUP
4083 static void
4084 draw_page (GtkPrintOperation *operation, GtkPrintContext *context,
4085 gint page_nr, gpointer user_data)
4087 Lisp_Object frames = *((Lisp_Object *) user_data);
4088 struct frame *f = XFRAME (Fnth (make_number (page_nr), frames));
4089 cairo_t *cr = gtk_print_context_get_cairo_context (context);
4091 x_cr_draw_frame (cr, f);
4094 void
4095 xg_print_frames_dialog (Lisp_Object frames)
4097 GtkPrintOperation *print;
4098 GtkPrintOperationResult res;
4100 print = gtk_print_operation_new ();
4101 if (print_settings != NULL)
4102 gtk_print_operation_set_print_settings (print, print_settings);
4103 if (page_setup != NULL)
4104 gtk_print_operation_set_default_page_setup (print, page_setup);
4105 gtk_print_operation_set_n_pages (print, XINT (Flength (frames)));
4106 g_signal_connect (print, "draw-page", G_CALLBACK (draw_page), &frames);
4107 res = gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
4108 NULL, NULL);
4109 if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
4111 if (print_settings != NULL)
4112 g_object_unref (print_settings);
4113 print_settings =
4114 g_object_ref (gtk_print_operation_get_print_settings (print));
4116 g_object_unref (print);
4119 #endif /* USE_CAIRO */
4123 /***********************************************************************
4124 Tool bar functions
4125 ***********************************************************************/
4126 /* The key for the data we put in the GtkImage widgets. The data is
4127 the image used by Emacs. We use this to see if we need to update
4128 the GtkImage with a new image. */
4129 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4131 /* The key for storing the latest modifiers so the activate callback can
4132 get them. */
4133 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4135 /* The key for the data we put in the GtkImage widgets. The data is
4136 the stock name used by Emacs. We use this to see if we need to update
4137 the GtkImage with a new image. */
4138 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4140 /* As above, but this is used for named theme widgets, as opposed to
4141 stock items. */
4142 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4144 /* Callback function invoked when a tool bar item is pressed.
4145 W is the button widget in the tool bar that got pressed,
4146 CLIENT_DATA is an integer that is the index of the button in the
4147 tool bar. 0 is the first button. */
4149 static gboolean
4150 xg_tool_bar_button_cb (GtkWidget *widget,
4151 GdkEventButton *event,
4152 gpointer user_data)
4154 intptr_t state = event->state;
4155 gpointer ptr = (gpointer) state;
4156 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
4157 return FALSE;
4161 /* Callback function invoked when a tool bar item is pressed.
4162 W is the button widget in the tool bar that got pressed,
4163 CLIENT_DATA is an integer that is the index of the button in the
4164 tool bar. 0 is the first button. */
4166 static void
4167 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
4169 intptr_t idx = (intptr_t) client_data;
4170 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
4171 intptr_t mod = (intptr_t) gmod;
4173 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4174 Lisp_Object key, frame;
4175 struct input_event event;
4176 EVENT_INIT (event);
4178 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4179 return;
4181 idx *= TOOL_BAR_ITEM_NSLOTS;
4183 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
4184 XSETFRAME (frame, f);
4186 /* We generate two events here. The first one is to set the prefix
4187 to `(tool_bar)', see keyboard.c. */
4188 event.kind = TOOL_BAR_EVENT;
4189 event.frame_or_window = frame;
4190 event.arg = frame;
4191 kbd_buffer_store_event (&event);
4193 event.kind = TOOL_BAR_EVENT;
4194 event.frame_or_window = frame;
4195 event.arg = key;
4196 /* Convert between the modifier bits GDK uses and the modifier bits
4197 Emacs uses. This assumes GDK and X masks are the same, which they are when
4198 this is written. */
4199 event.modifiers = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), mod);
4200 kbd_buffer_store_event (&event);
4202 /* Return focus to the frame after we have clicked on a detached
4203 tool bar button. */
4204 x_focus_frame (f);
4207 static GtkWidget *
4208 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4210 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4211 GtkWidget *c1 = clist->data;
4212 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4214 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4215 g_list_free (clist);
4216 return GTK_IS_LABEL (c1) ? c1 : c2;
4220 /* This callback is called when the mouse enters or leaves a tool bar item.
4221 It is used for displaying and hiding the help text.
4222 W is the tool bar item, a button.
4223 EVENT is either an enter event or leave event.
4224 CLIENT_DATA is an integer that is the index of the button in the
4225 tool bar. 0 is the first button.
4227 Returns FALSE to tell GTK to keep processing this event. */
4229 static gboolean
4230 xg_tool_bar_help_callback (GtkWidget *w,
4231 GdkEventCrossing *event,
4232 gpointer client_data)
4234 intptr_t idx = (intptr_t) client_data;
4235 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4236 Lisp_Object help, frame;
4238 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4239 return FALSE;
4241 if (event->type == GDK_ENTER_NOTIFY)
4243 idx *= TOOL_BAR_ITEM_NSLOTS;
4244 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4246 if (NILP (help))
4247 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4249 else
4250 help = Qnil;
4252 XSETFRAME (frame, f);
4253 kbd_buffer_store_help_event (frame, help);
4255 return FALSE;
4259 /* This callback is called when a tool bar item shall be redrawn.
4260 It modifies the expose event so that the GtkImage widget redraws the
4261 whole image. This to overcome a bug that makes GtkImage draw the image
4262 in the wrong place when it tries to redraw just a part of the image.
4263 W is the GtkImage to be redrawn.
4264 EVENT is the expose event for W.
4265 CLIENT_DATA is unused.
4267 Returns FALSE to tell GTK to keep processing this event. */
4269 #ifndef HAVE_GTK3
4270 static gboolean
4271 xg_tool_bar_item_expose_callback (GtkWidget *w,
4272 GdkEventExpose *event,
4273 gpointer client_data)
4275 gint width, height;
4277 gdk_drawable_get_size (event->window, &width, &height);
4278 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4279 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4281 event->area.x = max (0, event->area.x);
4282 event->area.y = max (0, event->area.y);
4284 event->area.width = max (width, event->area.width);
4285 event->area.height = max (height, event->area.height);
4287 return FALSE;
4289 #endif
4291 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4292 #define toolbar_set_orientation(w, o) \
4293 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4294 #else
4295 #define toolbar_set_orientation(w, o) \
4296 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4297 #endif
4299 /* Attach a tool bar to frame F. */
4301 static void
4302 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4304 struct x_output *x = f->output_data.x;
4305 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4306 GtkWidget *top_widget = x->toolbar_widget;
4308 toolbar_set_orientation (x->toolbar_widget,
4309 into_hbox
4310 ? GTK_ORIENTATION_VERTICAL
4311 : GTK_ORIENTATION_HORIZONTAL);
4313 if (into_hbox)
4315 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4316 FALSE, FALSE, 0);
4318 if (EQ (pos, Qleft))
4319 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4320 top_widget,
4322 x->toolbar_in_hbox = true;
4324 else
4326 bool vbox_pos = x->menubar_widget != 0;
4327 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4328 FALSE, FALSE, 0);
4330 if (EQ (pos, Qtop))
4331 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4332 top_widget,
4333 vbox_pos);
4334 x->toolbar_in_hbox = false;
4336 x->toolbar_is_packed = true;
4339 static bool xg_update_tool_bar_sizes (struct frame *f);
4341 static void
4342 tb_size_cb (GtkWidget *widget,
4343 GdkRectangle *allocation,
4344 gpointer user_data)
4346 /* When tool bar is created it has one preferred size. But when size is
4347 allocated between widgets, it may get another. So we must update
4348 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4349 struct frame *f = user_data;
4351 if (xg_update_tool_bar_sizes (f))
4353 frame_size_history_add (f, Qtb_size_cb, 0, 0, Qnil);
4354 adjust_frame_size (f, -1, -1, 5, 0, Qtool_bar_lines);
4358 /* Create a tool bar for frame F. */
4360 static void
4361 xg_create_tool_bar (struct frame *f)
4363 struct x_output *x = f->output_data.x;
4364 #if GTK_CHECK_VERSION (3, 3, 6)
4365 GtkStyleContext *gsty;
4366 #endif
4367 struct xg_frame_tb_info *tbinfo
4368 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4369 TB_INFO_KEY);
4370 if (! tbinfo)
4372 tbinfo = xmalloc (sizeof (*tbinfo));
4373 tbinfo->last_tool_bar = Qnil;
4374 tbinfo->style = Qnil;
4375 tbinfo->hmargin = tbinfo->vmargin = 0;
4376 tbinfo->dir = GTK_TEXT_DIR_NONE;
4377 tbinfo->n_last_items = 0;
4378 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4379 TB_INFO_KEY,
4380 tbinfo);
4383 x->toolbar_widget = gtk_toolbar_new ();
4385 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4387 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4388 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4389 g_signal_connect (x->toolbar_widget, "size-allocate",
4390 G_CALLBACK (tb_size_cb), f);
4391 #if GTK_CHECK_VERSION (3, 3, 6)
4392 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4393 gtk_style_context_add_class (gsty, "primary-toolbar");
4394 #endif
4398 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4400 /* Find the right-to-left image named by RTL in the tool bar images for F.
4401 Returns IMAGE if RTL is not found. */
4403 static Lisp_Object
4404 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4406 int i;
4407 Lisp_Object file, rtl_name;
4409 rtl_name = Ffile_name_nondirectory (rtl);
4411 for (i = 0; i < f->n_tool_bar_items; ++i)
4413 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4414 if (!NILP (file = file_for_image (rtl_image)))
4416 file = call1 (intern ("file-name-sans-extension"),
4417 Ffile_name_nondirectory (file));
4418 if (! NILP (Fequal (file, rtl_name)))
4420 image = rtl_image;
4421 break;
4426 return image;
4429 static GtkToolItem *
4430 xg_make_tool_item (struct frame *f,
4431 GtkWidget *wimage,
4432 GtkWidget **wbutton,
4433 const char *label,
4434 int i, bool horiz, bool text_image)
4436 GtkToolItem *ti = gtk_tool_item_new ();
4437 GtkWidget *vb = gtk_box_new (horiz
4438 ? GTK_ORIENTATION_HORIZONTAL
4439 : GTK_ORIENTATION_VERTICAL,
4441 GtkWidget *wb = gtk_button_new ();
4442 /* The eventbox is here so we can have tooltips on disabled items. */
4443 GtkWidget *weventbox = gtk_event_box_new ();
4444 #if GTK_CHECK_VERSION (3, 3, 6)
4445 GtkCssProvider *css_prov = gtk_css_provider_new ();
4446 GtkStyleContext *gsty;
4448 gtk_css_provider_load_from_data (css_prov,
4449 "GtkEventBox {"
4450 " background-color: transparent;"
4451 "}",
4452 -1, NULL);
4454 gsty = gtk_widget_get_style_context (weventbox);
4455 gtk_style_context_add_provider (gsty,
4456 GTK_STYLE_PROVIDER (css_prov),
4457 GTK_STYLE_PROVIDER_PRIORITY_USER);
4458 g_object_unref (css_prov);
4459 #endif
4461 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4463 if (wimage && !text_image)
4464 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4465 if (label)
4466 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4467 if (wimage && text_image)
4468 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4470 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4471 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4472 gtk_container_add (GTK_CONTAINER (wb), vb);
4473 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4474 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4476 if (wimage || label)
4478 intptr_t ii = i;
4479 gpointer gi = (gpointer) ii;
4481 g_signal_connect (G_OBJECT (wb), "clicked",
4482 G_CALLBACK (xg_tool_bar_callback),
4483 gi);
4485 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4487 #ifndef HAVE_GTK3
4488 /* Catch expose events to overcome an annoying redraw bug, see
4489 comment for xg_tool_bar_item_expose_callback. */
4490 g_signal_connect (G_OBJECT (ti),
4491 "expose-event",
4492 G_CALLBACK (xg_tool_bar_item_expose_callback),
4494 #endif
4495 gtk_tool_item_set_homogeneous (ti, FALSE);
4497 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4498 no distinction based on modifiers in the activate callback,
4499 so we have to do it ourselves. */
4500 g_signal_connect (wb, "button-release-event",
4501 G_CALLBACK (xg_tool_bar_button_cb),
4502 NULL);
4504 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4506 /* Use enter/leave notify to show help. We use the events
4507 rather than the GtkButton specific signals "enter" and
4508 "leave", so we can have only one callback. The event
4509 will tell us what kind of event it is. */
4510 g_signal_connect (G_OBJECT (weventbox),
4511 "enter-notify-event",
4512 G_CALLBACK (xg_tool_bar_help_callback),
4513 gi);
4514 g_signal_connect (G_OBJECT (weventbox),
4515 "leave-notify-event",
4516 G_CALLBACK (xg_tool_bar_help_callback),
4517 gi);
4520 if (wbutton) *wbutton = wb;
4522 return ti;
4525 static bool
4526 is_box_type (GtkWidget *vb, bool is_horizontal)
4528 #ifdef HAVE_GTK3
4529 bool ret = 0;
4530 if (GTK_IS_BOX (vb))
4532 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4533 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4534 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4536 return ret;
4537 #else
4538 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4539 #endif
4543 static bool
4544 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4545 const char *icon_name, const struct image *img,
4546 const char *label, bool horiz)
4548 gpointer old;
4549 GtkWidget *wimage;
4550 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4551 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4553 /* Check if the tool icon matches. */
4554 if (stock_name && wimage)
4556 old = g_object_get_data (G_OBJECT (wimage),
4557 XG_TOOL_BAR_STOCK_NAME);
4558 if (!old || strcmp (old, stock_name))
4559 return 1;
4561 else if (icon_name && wimage)
4563 old = g_object_get_data (G_OBJECT (wimage),
4564 XG_TOOL_BAR_ICON_NAME);
4565 if (!old || strcmp (old, icon_name))
4566 return 1;
4568 else if (wimage)
4570 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4571 XG_TOOL_BAR_IMAGE_DATA);
4572 Pixmap old_img = (Pixmap) gold_img;
4573 if (old_img != img->pixmap)
4574 return 1;
4577 /* Check button configuration and label. */
4578 if (is_box_type (vb, horiz)
4579 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4580 return 1;
4582 /* Ensure label is correct. */
4583 if (label && wlbl)
4584 gtk_label_set_text (GTK_LABEL (wlbl), label);
4585 return 0;
4588 static bool
4589 xg_update_tool_bar_sizes (struct frame *f)
4591 struct x_output *x = f->output_data.x;
4592 GtkRequisition req;
4593 int nl = 0, nr = 0, nt = 0, nb = 0;
4594 GtkWidget *top_widget = x->toolbar_widget;
4596 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4597 if (x->toolbar_in_hbox)
4599 int pos;
4600 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4601 top_widget,
4602 "position", &pos, NULL);
4603 if (pos == 0) nl = req.width;
4604 else nr = req.width;
4606 else
4608 int pos;
4609 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4610 top_widget,
4611 "position", &pos, NULL);
4612 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4613 else nb = req.height;
4616 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4617 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4618 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4619 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4621 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4622 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4623 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4624 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4625 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4626 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4628 return true;
4630 else
4631 return false;
4634 static char *
4635 find_icon_from_name (char *name,
4636 GtkIconTheme *icon_theme,
4637 char **icon_name)
4639 #if ! GTK_CHECK_VERSION (3, 10, 0)
4640 GtkStockItem stock_item;
4641 #endif
4643 if (name[0] == 'n' && name[1] == ':')
4645 *icon_name = name + 2;
4646 name = NULL;
4648 if (! gtk_icon_theme_has_icon (icon_theme, *icon_name))
4649 *icon_name = NULL;
4652 #if ! GTK_CHECK_VERSION (3, 10, 0)
4653 else if (gtk_stock_lookup (name, &stock_item))
4654 *icon_name = NULL;
4655 #endif
4656 else if (gtk_icon_theme_has_icon (icon_theme, name))
4658 *icon_name = name;
4659 name = NULL;
4661 else
4663 name = NULL;
4664 *icon_name = NULL;
4667 return name;
4671 /* Update the tool bar for frame F. Add new buttons and remove old. */
4673 void
4674 update_frame_tool_bar (struct frame *f)
4676 int i, j;
4677 struct x_output *x = f->output_data.x;
4678 int hmargin = 0, vmargin = 0;
4679 GtkToolbar *wtoolbar;
4680 GtkToolItem *ti;
4681 GtkTextDirection dir;
4682 Lisp_Object style;
4683 bool text_image, horiz;
4684 struct xg_frame_tb_info *tbinfo;
4685 GdkScreen *screen;
4686 GtkIconTheme *icon_theme;
4689 if (! FRAME_GTK_WIDGET (f))
4690 return;
4692 block_input ();
4694 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4696 hmargin = XFASTINT (Vtool_bar_button_margin);
4697 vmargin = XFASTINT (Vtool_bar_button_margin);
4699 else if (CONSP (Vtool_bar_button_margin))
4701 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4702 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4704 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4705 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4708 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4709 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4710 i.e. zero. This means that margins less than
4711 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4712 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4713 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4715 if (! x->toolbar_widget)
4716 xg_create_tool_bar (f);
4718 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4719 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4721 style = Ftool_bar_get_system_style ();
4722 screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4723 icon_theme = gtk_icon_theme_get_for_screen (screen);
4725 /* Are we up to date? */
4726 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4727 TB_INFO_KEY);
4729 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4730 && tbinfo->n_last_items == f->n_tool_bar_items
4731 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4732 && tbinfo->dir == dir
4733 && ! NILP (Fequal (tbinfo->style, style))
4734 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4736 unblock_input ();
4737 return;
4740 tbinfo->last_tool_bar = f->tool_bar_items;
4741 tbinfo->n_last_items = f->n_tool_bar_items;
4742 tbinfo->style = style;
4743 tbinfo->hmargin = hmargin;
4744 tbinfo->vmargin = vmargin;
4745 tbinfo->dir = dir;
4747 text_image = EQ (style, Qtext_image_horiz);
4748 horiz = EQ (style, Qboth_horiz) || text_image;
4750 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4752 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4753 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4754 int idx;
4755 ptrdiff_t img_id;
4756 int icon_size = 0;
4757 struct image *img = NULL;
4758 Lisp_Object image;
4759 Lisp_Object stock = Qnil;
4760 char *stock_name = NULL;
4761 char *icon_name = NULL;
4762 Lisp_Object rtl;
4763 GtkWidget *wbutton = NULL;
4764 Lisp_Object specified_file;
4765 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4766 const char *label
4767 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4768 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4769 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4770 : "";
4772 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4774 /* If this is a separator, use a gtk separator item. */
4775 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4777 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4779 if (ti)
4780 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4781 GTK_WIDGET (ti));
4782 ti = gtk_separator_tool_item_new ();
4783 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4785 j++;
4786 continue;
4789 /* Otherwise, the tool-bar item is an ordinary button. */
4791 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4793 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4794 ti = NULL;
4797 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4799 /* Ignore invalid image specifications. */
4800 image = PROP (TOOL_BAR_ITEM_IMAGES);
4801 if (!valid_image_p (image))
4803 if (ti)
4804 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4805 GTK_WIDGET (ti));
4806 continue;
4809 specified_file = file_for_image (image);
4810 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4811 stock = call1 (Qx_gtk_map_stock, specified_file);
4813 if (CONSP (stock))
4815 Lisp_Object tem;
4816 for (tem = stock; CONSP (tem); tem = XCDR (tem))
4817 if (! NILP (tem) && STRINGP (XCAR (tem)))
4819 stock_name = find_icon_from_name (SSDATA (XCAR (tem)),
4820 icon_theme,
4821 &icon_name);
4822 if (stock_name || icon_name) break;
4825 else if (STRINGP (stock))
4827 stock_name = find_icon_from_name (SSDATA (stock),
4828 icon_theme,
4829 &icon_name);
4832 if (stock_name || icon_name)
4833 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4835 if (stock_name == NULL && icon_name == NULL)
4837 /* No stock image, or stock item not known. Try regular
4838 image. If image is a vector, choose it according to the
4839 button state. */
4840 if (dir == GTK_TEXT_DIR_RTL
4841 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4842 && STRINGP (rtl))
4843 image = find_rtl_image (f, image, rtl);
4845 if (VECTORP (image))
4847 if (enabled_p)
4848 idx = (selected_p
4849 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4850 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4851 else
4852 idx = (selected_p
4853 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4854 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4856 eassert (ASIZE (image) >= idx);
4857 image = AREF (image, idx);
4859 else
4860 idx = -1;
4862 img_id = lookup_image (f, image);
4863 img = IMAGE_FROM_ID (f, img_id);
4864 prepare_image_for_display (f, img);
4866 if (img->load_failed_p || img->pixmap == None)
4868 if (ti)
4869 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4870 GTK_WIDGET (ti));
4871 continue;
4875 /* If there is an existing widget, check if it's stale; if so,
4876 remove it and make a new tool item from scratch. */
4877 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4878 img, label, horiz))
4880 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4881 GTK_WIDGET (ti));
4882 ti = NULL;
4885 if (ti == NULL)
4887 GtkWidget *w;
4889 /* Save the image so we can see if an update is needed the
4890 next time we call xg_tool_item_match_p. */
4891 if (EQ (style, Qtext))
4892 w = NULL;
4893 else if (stock_name)
4896 #if GTK_CHECK_VERSION (3, 10, 0)
4897 w = gtk_image_new_from_icon_name (stock_name, icon_size);
4898 #else
4899 w = gtk_image_new_from_stock (stock_name, icon_size);
4900 #endif
4901 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4902 (gpointer) xstrdup (stock_name),
4903 (GDestroyNotify) xfree);
4905 else if (icon_name)
4907 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4908 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4909 (gpointer) xstrdup (icon_name),
4910 (GDestroyNotify) xfree);
4912 else
4914 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4915 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4916 (gpointer)img->pixmap);
4919 #if GTK_CHECK_VERSION (3, 14, 0)
4920 if (w)
4922 gtk_widget_set_margin_start (w, hmargin);
4923 gtk_widget_set_margin_end (w, hmargin);
4924 gtk_widget_set_margin_top (w, vmargin);
4925 gtk_widget_set_margin_bottom (w, vmargin);
4927 #else
4928 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4929 #endif
4930 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4931 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4934 #undef PROP
4936 gtk_widget_set_sensitive (wbutton, enabled_p);
4937 j++;
4940 /* Remove buttons not longer needed. */
4943 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4944 if (ti)
4945 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4946 } while (ti != NULL);
4948 if (f->n_tool_bar_items != 0)
4950 if (! x->toolbar_is_packed)
4951 xg_pack_tool_bar (f, FRAME_TOOL_BAR_POSITION (f));
4952 gtk_widget_show_all (x->toolbar_widget);
4953 if (xg_update_tool_bar_sizes (f))
4955 int inhibit
4956 = ((f->after_make_frame
4957 && !f->tool_bar_resized
4958 && (EQ (frame_inhibit_implied_resize, Qt)
4959 || (CONSP (frame_inhibit_implied_resize)
4960 && !NILP (Fmemq (Qtool_bar_lines,
4961 frame_inhibit_implied_resize))))
4962 /* This will probably fail to DTRT in the
4963 fullheight/-width cases. */
4964 && NILP (get_frame_param (f, Qfullscreen)))
4966 : 2);
4968 frame_size_history_add (f, Qupdate_frame_tool_bar, 0, 0, Qnil);
4969 adjust_frame_size (f, -1, -1, inhibit, 0, Qtool_bar_lines);
4971 f->tool_bar_resized = f->tool_bar_redisplayed;
4974 unblock_input ();
4977 /* Deallocate all resources for the tool bar on frame F.
4978 Remove the tool bar. */
4980 void
4981 free_frame_tool_bar (struct frame *f)
4983 struct x_output *x = f->output_data.x;
4985 if (x->toolbar_widget)
4987 struct xg_frame_tb_info *tbinfo;
4988 GtkWidget *top_widget = x->toolbar_widget;
4990 block_input ();
4991 if (x->toolbar_is_packed)
4993 if (x->toolbar_in_hbox)
4994 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4995 top_widget);
4996 else
4997 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4998 top_widget);
5000 else
5001 gtk_widget_destroy (x->toolbar_widget);
5003 x->toolbar_widget = 0;
5004 x->toolbar_widget = 0;
5005 x->toolbar_is_packed = false;
5006 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
5007 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
5009 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5010 TB_INFO_KEY);
5011 if (tbinfo)
5013 xfree (tbinfo);
5014 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5015 TB_INFO_KEY,
5016 NULL);
5019 frame_size_history_add (f, Qfree_frame_tool_bar, 0, 0, Qnil);
5020 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5022 unblock_input ();
5026 void
5027 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
5029 struct x_output *x = f->output_data.x;
5030 GtkWidget *top_widget = x->toolbar_widget;
5032 if (! x->toolbar_widget || ! top_widget)
5033 return;
5035 block_input ();
5036 g_object_ref (top_widget);
5037 if (x->toolbar_is_packed)
5039 if (x->toolbar_in_hbox)
5040 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5041 top_widget);
5042 else
5043 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5044 top_widget);
5047 xg_pack_tool_bar (f, pos);
5048 g_object_unref (top_widget);
5050 if (xg_update_tool_bar_sizes (f))
5052 frame_size_history_add (f, Qxg_change_toolbar_position, 0, 0, Qnil);
5053 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5057 unblock_input ();
5062 /***********************************************************************
5063 Initializing
5064 ***********************************************************************/
5065 void
5066 xg_initialize (void)
5068 GtkBindingSet *binding_set;
5069 GtkSettings *settings;
5071 #if HAVE_XFT
5072 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5073 we keep it permanently linked in. */
5074 XftInit (0);
5075 #endif
5077 gdpy_def = NULL;
5078 xg_ignore_gtk_scrollbar = 0;
5079 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5080 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5082 id_to_widget.max_size = id_to_widget.used = 0;
5083 id_to_widget.widgets = 0;
5085 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5086 (gdk_display_get_default ()));
5087 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5088 bindings. It doesn't seem to be any way to remove properties,
5089 so we set it to "" which in means "no key". */
5090 gtk_settings_set_string_property (settings,
5091 "gtk-menu-bar-accel",
5093 EMACS_CLASS);
5095 /* Make GTK text input widgets use Emacs style keybindings. This is
5096 Emacs after all. */
5097 gtk_settings_set_string_property (settings,
5098 "gtk-key-theme-name",
5099 "Emacs",
5100 EMACS_CLASS);
5102 /* Make dialogs close on C-g. Since file dialog inherits from
5103 dialog, this works for them also. */
5104 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
5105 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5106 "close", 0);
5108 /* Make menus close on C-g. */
5109 binding_set = gtk_binding_set_by_class (g_type_class_ref
5110 (GTK_TYPE_MENU_SHELL));
5111 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5112 "cancel", 0);
5113 update_theme_scrollbar_width ();
5114 update_theme_scrollbar_height ();
5116 #ifdef HAVE_FREETYPE
5117 x_last_font_name = NULL;
5118 #endif
5121 #endif /* USE_GTK */