Refactor mml-smime.el, mml1991.el, mml2015.el
[emacs.git] / src / gtkutil.c
blob768df3429838969c8dea816ad8ca615b057dd577
1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2016 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #ifdef USE_GTK
23 #include <float.h>
24 #include <stdio.h>
26 #include <c-ctype.h>
28 #include "lisp.h"
29 #include "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 #ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
52 #define gtk_widget_set_has_window(w, b) \
53 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
54 #endif
55 #ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
56 #define gtk_dialog_get_action_area(w) ((w)->action_area)
57 #define gtk_dialog_get_content_area(w) ((w)->vbox)
58 #endif
59 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
60 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
61 #endif
62 #ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
63 #define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
64 #define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
65 #define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
66 #define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
67 #endif
68 #if GTK_CHECK_VERSION (2, 12, 0)
69 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
70 #else
71 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
72 #endif
74 #if ! GTK_CHECK_VERSION (2, 14, 0)
75 #define gtk_adjustment_configure(adj, xvalue, xlower, \
76 xupper, xstep_increment, \
77 xpage_increment, xpagesize) \
78 do { \
79 adj->lower = xlower; \
80 adj->upper = xupper; \
81 adj->page_size = xpagesize; \
82 gtk_adjustment_set_value (adj, xvalue); \
83 adj->page_increment = xpage_increment; \
84 adj->step_increment = xstep_increment; \
85 } while (0)
86 #endif /* < Gtk+ 2.14 */
88 #ifdef HAVE_FREETYPE
89 #if GTK_CHECK_VERSION (3, 2, 0)
90 #define USE_NEW_GTK_FONT_CHOOSER 1
91 #else
92 #define USE_NEW_GTK_FONT_CHOOSER 0
93 #define gtk_font_chooser_dialog_new(x, y) \
94 gtk_font_selection_dialog_new (x)
95 #undef GTK_FONT_CHOOSER
96 #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
97 #define gtk_font_chooser_set_font(x, y) \
98 gtk_font_selection_dialog_set_font_name (x, y)
99 #endif
100 #endif /* HAVE_FREETYPE */
102 #if GTK_CHECK_VERSION (3, 10, 0)
103 #define XG_TEXT_CANCEL "Cancel"
104 #define XG_TEXT_OK "OK"
105 #define XG_TEXT_OPEN "Open"
106 #else
107 #define XG_TEXT_CANCEL GTK_STOCK_CANCEL
108 #define XG_TEXT_OK GTK_STOCK_OK
109 #define XG_TEXT_OPEN GTK_STOCK_OPEN
110 #endif
112 #ifndef HAVE_GTK3
113 #ifdef USE_GTK_TOOLTIP
114 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
115 #endif
116 #define gdk_window_get_geometry(w, a, b, c, d) \
117 gdk_window_get_geometry (w, a, b, c, d, 0)
118 #define gdk_x11_window_lookup_for_display(d, w) \
119 gdk_xid_table_lookup_for_display (d, w)
120 #define gtk_box_new(ori, spacing) \
121 ((ori) == GTK_ORIENTATION_HORIZONTAL \
122 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
123 #define gtk_scrollbar_new(ori, spacing) \
124 ((ori) == GTK_ORIENTATION_HORIZONTAL \
125 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
126 #ifndef GDK_KEY_g
127 #define GDK_KEY_g GDK_g
128 #endif
129 #endif /* HAVE_GTK3 */
131 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
133 static void update_theme_scrollbar_width (void);
134 static void update_theme_scrollbar_height (void);
136 #define TB_INFO_KEY "xg_frame_tb_info"
137 struct xg_frame_tb_info
139 Lisp_Object last_tool_bar;
140 Lisp_Object style;
141 int n_last_items;
142 int hmargin, vmargin;
143 GtkTextDirection dir;
147 /***********************************************************************
148 Display handling functions
149 ***********************************************************************/
151 /* Keep track of the default display, or NULL if there is none. Emacs
152 may close all its displays. */
154 static GdkDisplay *gdpy_def;
156 /* When the GTK widget W is to be created on a display for F that
157 is not the default display, set the display for W.
158 W can be a GtkMenu or a GtkWindow widget. */
160 static void
161 xg_set_screen (GtkWidget *w, struct frame *f)
163 if (FRAME_X_DISPLAY (f) != DEFAULT_GDK_DISPLAY ())
165 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
166 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
168 if (GTK_IS_MENU (w))
169 gtk_menu_set_screen (GTK_MENU (w), gscreen);
170 else
171 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
176 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
177 *DPY is set to NULL if the display can't be opened.
179 Returns non-zero if display could be opened, zero if display could not
180 be opened, and less than zero if the GTK version doesn't support
181 multiple displays. */
183 void
184 xg_display_open (char *display_name, Display **dpy)
186 GdkDisplay *gdpy;
188 unrequest_sigio (); // See comment in x_display_ok, xterm.c.
189 gdpy = gdk_display_open (display_name);
190 request_sigio ();
191 if (!gdpy_def && gdpy)
193 gdpy_def = gdpy;
194 gdk_display_manager_set_default_display (gdk_display_manager_get (),
195 gdpy);
198 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
202 /* Close display DPY. */
204 void
205 xg_display_close (Display *dpy)
207 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
209 /* If this is the default display, try to change it before closing.
210 If there is no other display to use, gdpy_def is set to NULL, and
211 the next call to xg_display_open resets the default display. */
212 if (gdk_display_get_default () == gdpy)
214 struct x_display_info *dpyinfo;
215 GdkDisplay *gdpy_new = NULL;
217 /* Find another display. */
218 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
219 if (dpyinfo->display != dpy)
221 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
222 gdk_display_manager_set_default_display (gdk_display_manager_get (),
223 gdpy_new);
224 break;
226 gdpy_def = gdpy_new;
229 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
230 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
231 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
232 can continue running, but there will be memory leaks. */
233 g_object_run_dispose (G_OBJECT (gdpy));
234 #else
235 /* This seems to be fixed in GTK 2.10. */
236 gdk_display_close (gdpy);
237 #endif
241 /***********************************************************************
242 Utility functions
243 ***********************************************************************/
245 /* Create and return the cursor to be used for popup menus and
246 scroll bars on display DPY. */
248 GdkCursor *
249 xg_create_default_cursor (Display *dpy)
251 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
252 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
255 static GdkPixbuf *
256 xg_get_pixbuf_from_pixmap (struct frame *f, Pixmap pix)
258 int iunused;
259 GdkPixbuf *tmp_buf;
260 Window wunused;
261 unsigned int width, height, uunused;
262 XImage *xim;
264 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
265 &width, &height, &uunused, &uunused);
267 xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
268 ~0, XYPixmap);
269 if (!xim) return 0;
271 tmp_buf = gdk_pixbuf_new_from_data ((guchar *) xim->data,
272 GDK_COLORSPACE_RGB,
273 FALSE,
274 xim->bitmap_unit,
275 width,
276 height,
277 xim->bytes_per_line,
278 NULL,
279 NULL);
280 XDestroyImage (xim);
281 return tmp_buf;
284 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
286 static GdkPixbuf *
287 xg_get_pixbuf_from_pix_and_mask (struct frame *f,
288 Pixmap pix,
289 Pixmap mask)
291 int width, height;
292 GdkPixbuf *icon_buf, *tmp_buf;
294 tmp_buf = xg_get_pixbuf_from_pixmap (f, pix);
295 icon_buf = gdk_pixbuf_add_alpha (tmp_buf, FALSE, 0, 0, 0);
296 g_object_unref (G_OBJECT (tmp_buf));
298 width = gdk_pixbuf_get_width (icon_buf);
299 height = gdk_pixbuf_get_height (icon_buf);
301 if (mask)
303 GdkPixbuf *mask_buf = xg_get_pixbuf_from_pixmap (f, mask);
304 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
305 guchar *mask_pixels = gdk_pixbuf_get_pixels (mask_buf);
306 int rowstride = gdk_pixbuf_get_rowstride (icon_buf);
307 int mask_rowstride = gdk_pixbuf_get_rowstride (mask_buf);
308 int y;
310 for (y = 0; y < height; ++y)
312 guchar *iconptr, *maskptr;
313 int x;
315 iconptr = pixels + y * rowstride;
316 maskptr = mask_pixels + y * mask_rowstride;
318 for (x = 0; x < width; ++x)
320 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
321 just R is sufficient. */
322 if (maskptr[0] == 0)
323 iconptr[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
325 iconptr += rowstride/width;
326 maskptr += mask_rowstride/width;
330 g_object_unref (G_OBJECT (mask_buf));
333 return icon_buf;
336 static Lisp_Object
337 file_for_image (Lisp_Object image)
339 Lisp_Object specified_file = Qnil;
340 Lisp_Object tail;
342 for (tail = XCDR (image);
343 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
344 tail = XCDR (XCDR (tail)))
345 if (EQ (XCAR (tail), QCfile))
346 specified_file = XCAR (XCDR (tail));
348 return specified_file;
351 /* For the image defined in IMG, make and return a GtkImage. For displays with
352 8 planes or less we must make a GdkPixbuf and apply the mask manually.
353 Otherwise the highlighting and dimming the tool bar code in GTK does
354 will look bad. For display with more than 8 planes we just use the
355 pixmap and mask directly. For monochrome displays, GTK doesn't seem
356 able to use external pixmaps, it looks bad whatever we do.
357 The image is defined on the display where frame F is.
358 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
359 If OLD_WIDGET is NULL, a new widget is constructed and returned.
360 If OLD_WIDGET is not NULL, that widget is modified. */
362 static GtkWidget *
363 xg_get_image_for_pixmap (struct frame *f,
364 struct image *img,
365 GtkWidget *widget,
366 GtkImage *old_widget)
368 GdkPixbuf *icon_buf;
370 /* If we have a file, let GTK do all the image handling.
371 This seems to be the only way to make insensitive and activated icons
372 look good in all cases. */
373 Lisp_Object specified_file = file_for_image (img->spec);
374 Lisp_Object file;
376 /* We already loaded the image once before calling this
377 function, so this only fails if the image file has been removed.
378 In that case, use the pixmap already loaded. */
380 if (STRINGP (specified_file)
381 && STRINGP (file = x_find_image_file (specified_file)))
383 char *encoded_file = SSDATA (ENCODE_FILE (file));
384 if (! old_widget)
385 old_widget = GTK_IMAGE (gtk_image_new_from_file (encoded_file));
386 else
387 gtk_image_set_from_file (old_widget, encoded_file);
389 return GTK_WIDGET (old_widget);
392 /* No file, do the image handling ourselves. This will look very bad
393 on a monochrome display, and sometimes bad on all displays with
394 certain themes. */
396 /* This is a workaround to make icons look good on pseudo color
397 displays. Apparently GTK expects the images to have an alpha
398 channel. If they don't, insensitive and activated icons will
399 look bad. This workaround does not work on monochrome displays,
400 and is strictly not needed on true color/static color displays (i.e.
401 16 bits and higher). But we do it anyway so we get a pixbuf that is
402 not associated with the img->pixmap. The img->pixmap may be removed
403 by clearing the image cache and then the tool bar redraw fails, since
404 Gtk+ assumes the pixmap is always there. */
405 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
407 if (icon_buf)
409 if (! old_widget)
410 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
411 else
412 gtk_image_set_from_pixbuf (old_widget, icon_buf);
414 g_object_unref (G_OBJECT (icon_buf));
417 return GTK_WIDGET (old_widget);
421 /* Set CURSOR on W and all widgets W contain. We must do like this
422 for scroll bars and menu because they create widgets internally,
423 and it is those widgets that are visible. */
425 static void
426 xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
428 GdkWindow *window = gtk_widget_get_window (w);
429 GList *children = gdk_window_peek_children (window);
431 gdk_window_set_cursor (window, cursor);
433 /* The scroll bar widget has more than one GDK window (had to look at
434 the source to figure this out), and there is no way to set cursor
435 on widgets in GTK. So we must set the cursor for all GDK windows.
436 Ditto for menus. */
438 for ( ; children; children = g_list_next (children))
439 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
442 /* Insert NODE into linked LIST. */
444 static void
445 xg_list_insert (xg_list_node *list, xg_list_node *node)
447 xg_list_node *list_start = list->next;
449 if (list_start) list_start->prev = node;
450 node->next = list_start;
451 node->prev = 0;
452 list->next = node;
455 /* Remove NODE from linked LIST. */
457 static void
458 xg_list_remove (xg_list_node *list, xg_list_node *node)
460 xg_list_node *list_start = list->next;
461 if (node == list_start)
463 list->next = node->next;
464 if (list->next) list->next->prev = 0;
466 else
468 node->prev->next = node->next;
469 if (node->next) node->next->prev = node->prev;
473 /* Allocate and return a utf8 version of STR. If STR is already
474 utf8 or NULL, just return a copy of STR.
475 A new string is allocated and the caller must free the result
476 with g_free. */
478 static char *
479 get_utf8_string (const char *str)
481 char *utf8_str;
483 if (!str) return NULL;
485 /* If not UTF-8, try current locale. */
486 if (!g_utf8_validate (str, -1, NULL))
487 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
488 else
489 return g_strdup (str);
491 if (!utf8_str)
493 /* Probably some control characters in str. Escape them. */
494 ptrdiff_t len;
495 ptrdiff_t nr_bad = 0;
496 gsize bytes_read;
497 gsize bytes_written;
498 unsigned char *p = (unsigned char *)str;
499 char *cp, *up;
500 GError *err = NULL;
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 ++nr_bad;
507 p += bytes_written+1;
508 g_error_free (err);
509 err = NULL;
512 if (err)
514 g_error_free (err);
515 err = NULL;
517 if (cp) g_free (cp);
519 len = strlen (str);
520 ptrdiff_t alloc;
521 if (INT_MULTIPLY_WRAPV (nr_bad, 4, &alloc)
522 || INT_ADD_WRAPV (len + 1, alloc, &alloc)
523 || SIZE_MAX < alloc)
524 memory_full (SIZE_MAX);
525 up = utf8_str = xmalloc (alloc);
526 p = (unsigned char *)str;
528 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
529 &bytes_written, &err))
530 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
532 memcpy (up, p, bytes_written);
533 up += bytes_written;
534 up += sprintf (up, "\\%03o", p[bytes_written]);
535 p += bytes_written + 1;
536 g_error_free (err);
537 err = NULL;
540 if (cp)
542 strcpy (up, cp);
543 g_free (cp);
545 if (err)
547 g_error_free (err);
548 err = NULL;
551 return utf8_str;
554 /* Check for special colors used in face spec for region face.
555 The colors are fetched from the Gtk+ theme.
556 Return true if color was found, false if not. */
558 bool
559 xg_check_special_colors (struct frame *f,
560 const char *color_name,
561 XColor *color)
563 bool success_p = 0;
564 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
565 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
567 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
568 return success_p;
570 block_input ();
572 #ifdef HAVE_GTK3
573 GtkStyleContext *gsty
574 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
575 GdkRGBA col;
576 char buf[sizeof "rgb://rrrr/gggg/bbbb"];
577 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
578 if (get_fg)
579 gtk_style_context_get_color (gsty, state, &col);
580 else
581 gtk_style_context_get_background_color (gsty, state, &col);
583 sprintf (buf, "rgb:%04x/%04x/%04x",
584 (unsigned) (col.red * 65535),
585 (unsigned) (col.green * 65535),
586 (unsigned) (col.blue * 65535));
587 success_p = x_parse_color (f, buf, color) != 0;
588 #else
589 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
590 GdkColor *grgb = get_bg
591 ? &gsty->bg[GTK_STATE_SELECTED]
592 : &gsty->fg[GTK_STATE_SELECTED];
594 color->red = grgb->red;
595 color->green = grgb->green;
596 color->blue = grgb->blue;
597 color->pixel = grgb->pixel;
598 success_p = 1;
599 #endif
602 unblock_input ();
603 return success_p;
608 /***********************************************************************
609 Tooltips
610 ***********************************************************************/
611 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
612 We use that to pop down the tooltip. This happens if Gtk+ for some
613 reason wants to change or hide the tooltip. */
615 #ifdef USE_GTK_TOOLTIP
617 static void
618 hierarchy_ch_cb (GtkWidget *widget,
619 GtkWidget *previous_toplevel,
620 gpointer user_data)
622 struct frame *f = user_data;
623 struct x_output *x = f->output_data.x;
624 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
626 if (! top || ! GTK_IS_WINDOW (top))
627 gtk_widget_hide (previous_toplevel);
630 /* Callback called when Gtk+ thinks a tooltip should be displayed.
631 We use it to get the tooltip window and the tooltip widget so
632 we can manipulate the ourselves.
634 Return FALSE ensures that the tooltip is not shown. */
636 static gboolean
637 qttip_cb (GtkWidget *widget,
638 gint xpos,
639 gint ypos,
640 gboolean keyboard_mode,
641 GtkTooltip *tooltip,
642 gpointer user_data)
644 struct frame *f = user_data;
645 struct x_output *x = f->output_data.x;
646 if (x->ttip_widget == NULL)
648 GtkWidget *p;
649 GList *list, *iter;
651 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
652 x->ttip_widget = tooltip;
653 g_object_ref (G_OBJECT (tooltip));
654 x->ttip_lbl = gtk_label_new ("");
655 g_object_ref (G_OBJECT (x->ttip_lbl));
656 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
657 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
659 /* Change stupid Gtk+ default line wrapping. */
660 p = gtk_widget_get_parent (x->ttip_lbl);
661 list = gtk_container_get_children (GTK_CONTAINER (p));
662 for (iter = list; iter; iter = g_list_next (iter))
664 GtkWidget *w = GTK_WIDGET (iter->data);
665 if (GTK_IS_LABEL (w))
666 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
668 g_list_free (list);
670 /* ATK needs an empty title for some reason. */
671 gtk_window_set_title (x->ttip_window, "");
672 /* Realize so we can safely get screen later on. */
673 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
674 gtk_widget_realize (x->ttip_lbl);
676 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
677 G_CALLBACK (hierarchy_ch_cb), f);
679 return FALSE;
682 #endif /* USE_GTK_TOOLTIP */
684 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
685 Return true if a system tooltip is available. */
687 bool
688 xg_prepare_tooltip (struct frame *f,
689 Lisp_Object string,
690 int *width,
691 int *height)
693 #ifndef USE_GTK_TOOLTIP
694 return 0;
695 #else
696 struct x_output *x = f->output_data.x;
697 GtkWidget *widget;
698 GdkWindow *gwin;
699 GdkScreen *screen;
700 GtkSettings *settings;
701 gboolean tt_enabled = TRUE;
702 GtkRequisition req;
703 Lisp_Object encoded_string;
705 if (!x->ttip_lbl) return 0;
707 block_input ();
708 encoded_string = ENCODE_UTF_8 (string);
709 widget = GTK_WIDGET (x->ttip_lbl);
710 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
711 screen = gdk_window_get_screen (gwin);
712 settings = gtk_settings_get_for_screen (screen);
713 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
714 if (tt_enabled)
716 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
717 /* Record that we disabled it so it can be enabled again. */
718 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
719 (gpointer)f);
722 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
723 g_object_set_data (G_OBJECT
724 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
725 "gdk-display-current-tooltip", NULL);
727 /* Put our dummy widget in so we can get callbacks for unrealize and
728 hierarchy-changed. */
729 gtk_tooltip_set_custom (x->ttip_widget, widget);
730 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
731 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
732 if (width) *width = req.width;
733 if (height) *height = req.height;
735 unblock_input ();
737 return 1;
738 #endif /* USE_GTK_TOOLTIP */
741 /* Show the tooltip at ROOT_X and ROOT_Y.
742 xg_prepare_tooltip must have been called before this function. */
744 void
745 xg_show_tooltip (struct frame *f, int root_x, int root_y)
747 #ifdef USE_GTK_TOOLTIP
748 struct x_output *x = f->output_data.x;
749 if (x->ttip_window)
751 block_input ();
752 gtk_window_move (x->ttip_window, root_x, root_y);
753 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
754 unblock_input ();
756 #endif
759 /* Hide tooltip if shown. Do nothing if not shown.
760 Return true if tip was hidden, false if not (i.e. not using
761 system tooltips). */
763 bool
764 xg_hide_tooltip (struct frame *f)
766 bool ret = 0;
767 #ifdef USE_GTK_TOOLTIP
768 if (f->output_data.x->ttip_window)
770 GtkWindow *win = f->output_data.x->ttip_window;
771 block_input ();
772 gtk_widget_hide (GTK_WIDGET (win));
774 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
776 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
777 GdkScreen *screen = gdk_window_get_screen (gwin);
778 GtkSettings *settings = gtk_settings_get_for_screen (screen);
779 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
781 unblock_input ();
783 ret = 1;
785 #endif
786 return ret;
790 /***********************************************************************
791 General functions for creating widgets, resizing, events, e.t.c.
792 ***********************************************************************/
794 static void
795 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
796 const gchar *msg, gpointer user_data)
798 if (!strstr (msg, "visible children"))
799 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
802 /* Make a geometry string and pass that to GTK. It seems this is the
803 only way to get geometry position right if the user explicitly
804 asked for a position when starting Emacs.
805 F is the frame we shall set geometry for. */
807 static void
808 xg_set_geometry (struct frame *f)
810 if (f->size_hint_flags & (USPosition | PPosition))
812 int left = f->left_pos;
813 int xneg = f->size_hint_flags & XNegative;
814 int top = f->top_pos;
815 int yneg = f->size_hint_flags & YNegative;
816 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
817 guint id;
819 if (xneg)
820 left = -left;
821 if (yneg)
822 top = -top;
824 sprintf (geom_str, "=%dx%d%c%d%c%d",
825 FRAME_PIXEL_WIDTH (f),
826 FRAME_PIXEL_HEIGHT (f),
827 (xneg ? '-' : '+'), left,
828 (yneg ? '-' : '+'), top);
830 /* Silence warning about visible children. */
831 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
832 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
834 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
835 geom_str))
836 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
838 g_log_remove_handler ("Gtk", id);
842 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
843 and use a GtkFixed widget, this doesn't happen automatically. */
845 void
846 xg_clear_under_internal_border (struct frame *f)
848 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
850 #ifndef USE_CAIRO
851 GtkWidget *wfixed = f->output_data.x->edit_widget;
853 gtk_widget_queue_draw (wfixed);
854 gdk_window_process_all_updates ();
855 #endif
856 x_clear_area (f, 0, 0,
857 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
859 x_clear_area (f, 0, 0,
860 FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
862 x_clear_area (f, 0,
863 FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
864 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
866 x_clear_area (f,
867 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
868 0, FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
872 static int
873 xg_get_gdk_scale (void)
875 const char *sscale = getenv ("GDK_SCALE");
877 if (sscale)
879 long scale = atol (sscale);
880 if (0 < scale)
881 return min (scale, INT_MAX);
884 return 1;
887 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
888 and a Gtk+ menu bar, we get resize events for the edit part of the
889 frame only. We let Gtk+ deal with the Gtk+ parts.
890 F is the frame to resize.
891 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
893 void
894 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
896 int width, height;
898 if (pixelwidth == -1 && pixelheight == -1)
900 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
901 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
902 0, 0, &pixelwidth, &pixelheight);
903 else
904 return;
907 width = FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth);
908 height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight);
910 frame_size_history_add
911 (f, Qxg_frame_resized, width, height, Qnil);
913 if (width != FRAME_TEXT_WIDTH (f)
914 || height != FRAME_TEXT_HEIGHT (f)
915 || pixelwidth != FRAME_PIXEL_WIDTH (f)
916 || pixelheight != FRAME_PIXEL_HEIGHT (f))
918 xg_clear_under_internal_border (f);
919 change_frame_size (f, width, height, 0, 1, 0, 1);
920 SET_FRAME_GARBAGED (f);
921 cancel_mouse_face (f);
925 /* Resize the outer window of frame F after changing the height.
926 COLUMNS/ROWS is the size the edit area shall have after the resize. */
928 void
929 xg_frame_set_char_size (struct frame *f, int width, int height)
931 int pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
932 int pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
933 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
934 gint gwidth, gheight;
935 int totalheight
936 = pixelheight + FRAME_TOOLBAR_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f);
937 int totalwidth = pixelwidth + FRAME_TOOLBAR_WIDTH (f);
939 if (FRAME_PIXEL_HEIGHT (f) == 0)
940 return;
942 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
943 &gwidth, &gheight);
945 /* Do this before resize, as we don't know yet if we will be resized. */
946 xg_clear_under_internal_border (f);
948 if (FRAME_VISIBLE_P (f))
950 int scale = xg_get_gdk_scale ();
951 totalheight /= scale;
952 totalwidth /= scale;
955 x_wm_set_size_hint (f, 0, 0);
957 /* Resize the top level widget so rows and columns remain constant.
959 When the frame is fullheight and we only want to change the width
960 or it is fullwidth and we only want to change the height we should
961 be able to preserve the fullscreen property. However, due to the
962 fact that we have to send a resize request anyway, the window
963 manager will abolish it. At least the respective size should
964 remain unchanged but giving the frame back its normal size will
965 be broken ... */
966 if (EQ (fullscreen, Qfullwidth) && width == FRAME_TEXT_WIDTH (f))
968 frame_size_history_add
969 (f, Qxg_frame_set_char_size_1, width, height,
970 list2 (make_number (gheight), make_number (totalheight)));
972 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
973 gwidth, totalheight);
975 else if (EQ (fullscreen, Qfullheight) && height == FRAME_TEXT_HEIGHT (f))
977 frame_size_history_add
978 (f, Qxg_frame_set_char_size_2, width, height,
979 list2 (make_number (gwidth), make_number (totalwidth)));
981 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
982 totalwidth, gheight);
984 else
986 frame_size_history_add
987 (f, Qxg_frame_set_char_size_3, width, height,
988 list2 (make_number (totalwidth), make_number (totalheight)));
990 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
991 totalwidth, totalheight);
992 fullscreen = Qnil;
995 SET_FRAME_GARBAGED (f);
996 cancel_mouse_face (f);
998 /* We can not call change_frame_size for a mapped frame,
999 we can not set pixel width/height either. The window manager may
1000 override our resize request, XMonad does this all the time.
1001 The best we can do is try to sync, so lisp code sees the updated
1002 size as fast as possible.
1003 For unmapped windows, we can set rows/cols. When
1004 the frame is mapped again we will (hopefully) get the correct size. */
1005 if (FRAME_VISIBLE_P (f))
1007 /* Must call this to flush out events */
1008 (void)gtk_events_pending ();
1009 gdk_flush ();
1010 x_wait_for_event (f, ConfigureNotify);
1012 if (!NILP (fullscreen))
1013 /* Try to restore fullscreen state. */
1015 store_frame_param (f, Qfullscreen, fullscreen);
1016 x_set_fullscreen (f, fullscreen, fullscreen);
1019 else
1020 adjust_frame_size (f, width, height, 5, 0, Qxg_frame_set_char_size);
1024 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
1025 The policy is to keep the number of editable lines. */
1027 #if 0
1028 static void
1029 xg_height_or_width_changed (struct frame *f)
1031 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1032 FRAME_TOTAL_PIXEL_WIDTH (f),
1033 FRAME_TOTAL_PIXEL_HEIGHT (f));
1034 f->output_data.x->hint_flags = 0;
1035 x_wm_set_size_hint (f, 0, 0);
1037 #endif
1039 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1040 Must be done like this, because GtkWidget:s can have "hidden"
1041 X Window that aren't accessible.
1043 Return 0 if no widget match WDESC. */
1045 GtkWidget *
1046 xg_win_to_widget (Display *dpy, Window wdesc)
1048 gpointer gdkwin;
1049 GtkWidget *gwdesc = 0;
1051 block_input ();
1053 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1054 wdesc);
1055 if (gdkwin)
1057 GdkEvent event;
1058 event.any.window = gdkwin;
1059 event.any.type = GDK_NOTHING;
1060 gwdesc = gtk_get_event_widget (&event);
1063 unblock_input ();
1064 return gwdesc;
1067 /* Set the background of widget W to PIXEL. */
1069 static void
1070 xg_set_widget_bg (struct frame *f, GtkWidget *w, unsigned long pixel)
1072 #ifdef HAVE_GTK3
1073 GdkRGBA bg;
1074 XColor xbg;
1075 xbg.pixel = pixel;
1076 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1078 bg.red = (double)xbg.red/65535.0;
1079 bg.green = (double)xbg.green/65535.0;
1080 bg.blue = (double)xbg.blue/65535.0;
1081 bg.alpha = 1.0;
1082 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1084 #else
1085 GdkColor bg;
1086 GdkColormap *map = gtk_widget_get_colormap (w);
1087 gdk_colormap_query_color (map, pixel, &bg);
1088 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1089 #endif
1092 /* Callback called when the gtk theme changes.
1093 We notify lisp code so it can fix faces used for region for example. */
1095 static void
1096 style_changed_cb (GObject *go,
1097 GParamSpec *spec,
1098 gpointer user_data)
1100 struct input_event event;
1101 GdkDisplay *gdpy = user_data;
1102 const char *display_name = gdk_display_get_name (gdpy);
1103 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1105 EVENT_INIT (event);
1106 event.kind = CONFIG_CHANGED_EVENT;
1107 event.frame_or_window = build_string (display_name);
1108 /* Theme doesn't change often, so intern is called seldom. */
1109 event.arg = intern ("theme-name");
1110 kbd_buffer_store_event (&event);
1112 update_theme_scrollbar_width ();
1113 update_theme_scrollbar_height ();
1115 /* If scroll bar width changed, we need set the new size on all frames
1116 on this display. */
1117 if (dpy)
1119 Lisp_Object rest, frame;
1120 FOR_EACH_FRAME (rest, frame)
1122 struct frame *f = XFRAME (frame);
1123 if (FRAME_LIVE_P (f)
1124 && FRAME_X_P (f)
1125 && FRAME_X_DISPLAY (f) == dpy)
1127 x_set_scroll_bar_default_width (f);
1128 x_set_scroll_bar_default_height (f);
1129 xg_frame_set_char_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f));
1135 /* Called when a delete-event occurs on WIDGET. */
1137 static gboolean
1138 delete_cb (GtkWidget *widget,
1139 GdkEvent *event,
1140 gpointer user_data)
1142 return TRUE;
1145 /* Create and set up the GTK widgets for frame F.
1146 Return true if creation succeeded. */
1148 bool
1149 xg_create_frame_widgets (struct frame *f)
1151 GtkWidget *wtop;
1152 GtkWidget *wvbox, *whbox;
1153 GtkWidget *wfixed;
1154 #ifndef HAVE_GTK3
1155 GtkRcStyle *style;
1156 #endif
1157 char *title = 0;
1159 block_input ();
1161 if (FRAME_X_EMBEDDED_P (f))
1163 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1164 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1166 else
1167 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1169 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1170 has backported it to Gtk+ 2.0 and they add the resize grip for
1171 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1172 forever, so disable the grip. */
1173 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1174 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1175 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1176 #endif
1178 xg_set_screen (wtop, f);
1180 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1181 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1182 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1183 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1185 #ifdef HAVE_GTK3
1186 wfixed = emacs_fixed_new (f);
1187 #else
1188 wfixed = gtk_fixed_new ();
1189 #endif
1191 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1193 if (wtop) gtk_widget_destroy (wtop);
1194 if (wvbox) gtk_widget_destroy (wvbox);
1195 if (whbox) gtk_widget_destroy (whbox);
1196 if (wfixed) gtk_widget_destroy (wfixed);
1198 unblock_input ();
1199 return 0;
1202 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1203 gtk_widget_set_name (wtop, EMACS_CLASS);
1204 gtk_widget_set_name (wvbox, "pane");
1205 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1207 /* If this frame has a title or name, set it in the title bar. */
1208 if (! NILP (f->title))
1209 title = SSDATA (ENCODE_UTF_8 (f->title));
1210 else if (! NILP (f->name))
1211 title = SSDATA (ENCODE_UTF_8 (f->name));
1213 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
1215 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1216 FRAME_GTK_WIDGET (f) = wfixed;
1217 f->output_data.x->vbox_widget = wvbox;
1218 f->output_data.x->hbox_widget = whbox;
1220 gtk_widget_set_has_window (wfixed, TRUE);
1222 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1223 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1224 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1226 if (FRAME_EXTERNAL_TOOL_BAR (f))
1227 update_frame_tool_bar (f);
1229 /* We don't want this widget double buffered, because we draw on it
1230 with regular X drawing primitives, so from a GTK/GDK point of
1231 view, the widget is totally blank. When an expose comes, this
1232 will make the widget blank, and then Emacs redraws it. This flickers
1233 a lot, so we turn off double buffering. */
1234 gtk_widget_set_double_buffered (wfixed, FALSE);
1236 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1237 SSDATA (Vx_resource_name),
1238 SSDATA (Vx_resource_class));
1240 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1241 GTK is to destroy the widget. We want Emacs to do that instead. */
1242 g_signal_connect (G_OBJECT (wtop), "delete-event",
1243 G_CALLBACK (delete_cb), f);
1245 /* Convert our geometry parameters into a geometry string
1246 and specify it.
1247 GTK will itself handle calculating the real position this way. */
1248 xg_set_geometry (f);
1249 f->win_gravity
1250 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1252 gtk_widget_add_events (wfixed,
1253 GDK_POINTER_MOTION_MASK
1254 | GDK_EXPOSURE_MASK
1255 | GDK_BUTTON_PRESS_MASK
1256 | GDK_BUTTON_RELEASE_MASK
1257 | GDK_KEY_PRESS_MASK
1258 | GDK_ENTER_NOTIFY_MASK
1259 | GDK_LEAVE_NOTIFY_MASK
1260 | GDK_FOCUS_CHANGE_MASK
1261 | GDK_STRUCTURE_MASK
1262 | GDK_VISIBILITY_NOTIFY_MASK);
1264 /* Must realize the windows so the X window gets created. It is used
1265 by callers of this function. */
1266 gtk_widget_realize (wfixed);
1267 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1269 /* Since GTK clears its window by filling with the background color,
1270 we must keep X and GTK background in sync. */
1271 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1273 #ifndef HAVE_GTK3
1274 /* Also, do not let any background pixmap to be set, this looks very
1275 bad as Emacs overwrites the background pixmap with its own idea
1276 of background color. */
1277 style = gtk_widget_get_modifier_style (wfixed);
1279 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1280 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1281 gtk_widget_modify_style (wfixed, style);
1282 #else
1283 gtk_widget_set_can_focus (wfixed, TRUE);
1284 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1285 #endif
1287 #ifdef USE_GTK_TOOLTIP
1288 /* Steal a tool tip window we can move ourselves. */
1289 f->output_data.x->ttip_widget = 0;
1290 f->output_data.x->ttip_lbl = 0;
1291 f->output_data.x->ttip_window = 0;
1292 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1293 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1294 #endif
1297 GdkScreen *screen = gtk_widget_get_screen (wtop);
1298 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1299 /* Only connect this signal once per screen. */
1300 if (! g_signal_handler_find (G_OBJECT (gs),
1301 G_SIGNAL_MATCH_FUNC,
1302 0, 0, 0,
1303 G_CALLBACK (style_changed_cb),
1306 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1307 G_CALLBACK (style_changed_cb),
1308 gdk_screen_get_display (screen));
1312 unblock_input ();
1314 return 1;
1317 void
1318 xg_free_frame_widgets (struct frame *f)
1320 if (FRAME_GTK_OUTER_WIDGET (f))
1322 #ifdef USE_GTK_TOOLTIP
1323 struct x_output *x = f->output_data.x;
1324 #endif
1325 struct xg_frame_tb_info *tbinfo
1326 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1327 TB_INFO_KEY);
1328 if (tbinfo)
1329 xfree (tbinfo);
1331 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1332 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1333 FRAME_GTK_OUTER_WIDGET (f) = 0;
1334 #ifdef USE_GTK_TOOLTIP
1335 if (x->ttip_lbl)
1336 gtk_widget_destroy (x->ttip_lbl);
1337 if (x->ttip_widget)
1338 g_object_unref (G_OBJECT (x->ttip_widget));
1339 #endif
1343 /* Set the normal size hints for the window manager, for frame F.
1344 FLAGS is the flags word to use--or 0 meaning preserve the flags
1345 that the window now has.
1346 If USER_POSITION, set the User Position
1347 flag (this is useful when FLAGS is 0). */
1349 void
1350 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1352 /* Must use GTK routines here, otherwise GTK resets the size hints
1353 to its own defaults. */
1354 GdkGeometry size_hints;
1355 gint hint_flags = 0;
1356 int base_width, base_height;
1357 int min_rows = 0, min_cols = 0;
1358 int win_gravity = f->win_gravity;
1359 Lisp_Object fs_state, frame;
1360 int scale = xg_get_gdk_scale ();
1362 /* Don't set size hints during initialization; that apparently leads
1363 to a race condition. See the thread at
1364 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1365 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1366 return;
1368 XSETFRAME (frame, f);
1369 fs_state = Fframe_parameter (frame, Qfullscreen);
1370 if ((EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth)) &&
1371 (x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state) ||
1372 x_wm_supports (f, FRAME_DISPLAY_INFO (f)->Xatom_net_wm_state_fullscreen)))
1374 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1375 Gtk3 don't get along and the frame shrinks (!).
1377 return;
1380 if (flags)
1382 memset (&size_hints, 0, sizeof (size_hints));
1383 f->output_data.x->size_hints = size_hints;
1384 f->output_data.x->hint_flags = hint_flags;
1386 else
1387 flags = f->size_hint_flags;
1389 size_hints = f->output_data.x->size_hints;
1390 hint_flags = f->output_data.x->hint_flags;
1392 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1393 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
1394 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
1396 hint_flags |= GDK_HINT_BASE_SIZE;
1397 /* Use one row/col here so base_height/width does not become zero.
1398 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1399 Obviously this makes the row/col value displayed off by 1. */
1400 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1401 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1402 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1404 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1405 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1407 size_hints.base_width = base_width;
1408 size_hints.base_height = base_height;
1409 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
1410 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
1412 /* These currently have a one to one mapping with the X values, but I
1413 don't think we should rely on that. */
1414 hint_flags |= GDK_HINT_WIN_GRAVITY;
1415 size_hints.win_gravity = 0;
1416 if (win_gravity == NorthWestGravity)
1417 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1418 else if (win_gravity == NorthGravity)
1419 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1420 else if (win_gravity == NorthEastGravity)
1421 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1422 else if (win_gravity == WestGravity)
1423 size_hints.win_gravity = GDK_GRAVITY_WEST;
1424 else if (win_gravity == CenterGravity)
1425 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1426 else if (win_gravity == EastGravity)
1427 size_hints.win_gravity = GDK_GRAVITY_EAST;
1428 else if (win_gravity == SouthWestGravity)
1429 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1430 else if (win_gravity == SouthGravity)
1431 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1432 else if (win_gravity == SouthEastGravity)
1433 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1434 else if (win_gravity == StaticGravity)
1435 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1437 if (user_position)
1439 hint_flags &= ~GDK_HINT_POS;
1440 hint_flags |= GDK_HINT_USER_POS;
1443 size_hints.base_width /= scale;
1444 size_hints.base_height /= scale;
1445 size_hints.width_inc /= scale;
1446 size_hints.height_inc /= scale;
1448 if (hint_flags != f->output_data.x->hint_flags
1449 || memcmp (&size_hints,
1450 &f->output_data.x->size_hints,
1451 sizeof (size_hints)) != 0)
1453 block_input ();
1454 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1455 NULL, &size_hints, hint_flags);
1456 f->output_data.x->size_hints = size_hints;
1457 f->output_data.x->hint_flags = hint_flags;
1458 unblock_input ();
1462 /* Change background color of a frame.
1463 Since GTK uses the background color to clear the window, we must
1464 keep the GTK and X colors in sync.
1465 F is the frame to change,
1466 BG is the pixel value to change to. */
1468 void
1469 xg_set_background_color (struct frame *f, unsigned long bg)
1471 if (FRAME_GTK_WIDGET (f))
1473 block_input ();
1474 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1475 unblock_input ();
1480 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1481 functions so GTK does not overwrite the icon. */
1483 void
1484 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1486 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1487 icon_pixmap,
1488 icon_mask);
1489 if (gp)
1490 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1495 /***********************************************************************
1496 Dialog functions
1497 ***********************************************************************/
1498 /* Return the dialog title to use for a dialog of type KEY.
1499 This is the encoding used by lwlib. We use the same for GTK. */
1501 static const char *
1502 get_dialog_title (char key)
1504 const char *title = "";
1506 switch (key) {
1507 case 'E': case 'e':
1508 title = "Error";
1509 break;
1511 case 'I': case 'i':
1512 title = "Information";
1513 break;
1515 case 'L': case 'l':
1516 title = "Prompt";
1517 break;
1519 case 'P': case 'p':
1520 title = "Prompt";
1521 break;
1523 case 'Q': case 'q':
1524 title = "Question";
1525 break;
1528 return title;
1531 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1532 the dialog, but return TRUE so the event does not propagate further
1533 in GTK. This prevents GTK from destroying the dialog widget automatically
1534 and we can always destroy the widget manually, regardless of how
1535 it was popped down (button press or WM_DELETE_WINDOW).
1536 W is the dialog widget.
1537 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1538 user_data is NULL (not used).
1540 Returns TRUE to end propagation of event. */
1542 static gboolean
1543 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1545 gtk_widget_unmap (w);
1546 return TRUE;
1549 /* Create a popup dialog window. See also xg_create_widget below.
1550 WV is a widget_value describing the dialog.
1551 SELECT_CB is the callback to use when a button has been pressed.
1552 DEACTIVATE_CB is the callback to use when the dialog pops down.
1554 Returns the GTK dialog widget. */
1556 static GtkWidget *
1557 create_dialog (widget_value *wv,
1558 GCallback select_cb,
1559 GCallback deactivate_cb)
1561 const char *title = get_dialog_title (wv->name[0]);
1562 int total_buttons = wv->name[1] - '0';
1563 int right_buttons = wv->name[4] - '0';
1564 int left_buttons;
1565 int button_nr = 0;
1566 int button_spacing = 10;
1567 GtkWidget *wdialog = gtk_dialog_new ();
1568 GtkDialog *wd = GTK_DIALOG (wdialog);
1569 widget_value *item;
1570 GtkWidget *whbox_down;
1572 /* If the number of buttons is greater than 4, make two rows of buttons
1573 instead. This looks better. */
1574 bool make_two_rows = total_buttons > 4;
1576 #if GTK_CHECK_VERSION (3, 12, 0)
1577 GtkBuilder *gbld = gtk_builder_new ();
1578 GObject *go = gtk_buildable_get_internal_child (GTK_BUILDABLE (wd),
1579 gbld,
1580 "action_area");
1581 GtkBox *cur_box = GTK_BOX (go);
1582 g_object_unref (G_OBJECT (gbld));
1583 #else
1584 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1585 #endif
1587 if (right_buttons == 0) right_buttons = total_buttons/2;
1588 left_buttons = total_buttons - right_buttons;
1590 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1591 gtk_widget_set_name (wdialog, "emacs-dialog");
1594 if (make_two_rows)
1596 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1597 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1598 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1599 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1600 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1601 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1603 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1604 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1605 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1607 cur_box = GTK_BOX (whbox_up);
1610 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1611 G_CALLBACK (dialog_delete_callback), 0);
1613 if (deactivate_cb)
1615 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1616 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1619 for (item = wv->contents; item; item = item->next)
1621 char *utf8_label = get_utf8_string (item->value);
1622 GtkWidget *w;
1623 GtkRequisition req;
1625 if (item->name && strcmp (item->name, "message") == 0)
1627 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1628 /* This is the text part of the dialog. */
1629 w = gtk_label_new (utf8_label);
1630 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1631 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1632 #if GTK_CHECK_VERSION (3, 14, 0)
1633 gtk_widget_set_halign (w, GTK_ALIGN_START);
1634 gtk_widget_set_valign (w, GTK_ALIGN_CENTER);
1635 #else
1636 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1637 #endif
1638 /* Try to make dialog look better. Must realize first so
1639 the widget can calculate the size it needs. */
1640 gtk_widget_realize (w);
1641 gtk_widget_get_preferred_size (w, NULL, &req);
1642 gtk_box_set_spacing (wvbox, req.height);
1643 if (item->value && strlen (item->value) > 0)
1644 button_spacing = 2*req.width/strlen (item->value);
1645 if (button_spacing < 10) button_spacing = 10;
1647 else
1649 /* This is one button to add to the dialog. */
1650 w = gtk_button_new_with_label (utf8_label);
1651 if (! item->enabled)
1652 gtk_widget_set_sensitive (w, FALSE);
1653 if (select_cb)
1654 g_signal_connect (G_OBJECT (w), "clicked",
1655 select_cb, item->call_data);
1657 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1658 if (++button_nr == left_buttons)
1660 if (make_two_rows)
1661 cur_box = GTK_BOX (whbox_down);
1665 if (utf8_label)
1666 g_free (utf8_label);
1669 return wdialog;
1672 struct xg_dialog_data
1674 GMainLoop *loop;
1675 int response;
1676 GtkWidget *w;
1677 guint timerid;
1680 /* Function that is called when the file or font dialogs pop down.
1681 W is the dialog widget, RESPONSE is the response code.
1682 USER_DATA is what we passed in to g_signal_connect. */
1684 static void
1685 xg_dialog_response_cb (GtkDialog *w,
1686 gint response,
1687 gpointer user_data)
1689 struct xg_dialog_data *dd = user_data;
1690 dd->response = response;
1691 g_main_loop_quit (dd->loop);
1695 /* Destroy the dialog. This makes it pop down. */
1697 static void
1698 pop_down_dialog (void *arg)
1700 struct xg_dialog_data *dd = arg;
1702 block_input ();
1703 if (dd->w) gtk_widget_destroy (dd->w);
1704 if (dd->timerid != 0) g_source_remove (dd->timerid);
1706 g_main_loop_quit (dd->loop);
1707 g_main_loop_unref (dd->loop);
1709 unblock_input ();
1712 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1713 We pass in DATA as gpointer* so we can use this as a callback. */
1715 static gboolean
1716 xg_maybe_add_timer (gpointer data)
1718 struct xg_dialog_data *dd = data;
1719 struct timespec next_time = timer_check ();
1721 dd->timerid = 0;
1723 if (timespec_valid_p (next_time))
1725 time_t s = next_time.tv_sec;
1726 int per_ms = TIMESPEC_RESOLUTION / 1000;
1727 int ms = (next_time.tv_nsec + per_ms - 1) / per_ms;
1728 if (s <= ((guint) -1 - ms) / 1000)
1729 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1731 return FALSE;
1735 /* Pops up a modal dialog W and waits for response.
1736 We don't use gtk_dialog_run because we want to process emacs timers.
1737 The dialog W is not destroyed when this function returns. */
1739 static int
1740 xg_dialog_run (struct frame *f, GtkWidget *w)
1742 ptrdiff_t count = SPECPDL_INDEX ();
1743 struct xg_dialog_data dd;
1745 xg_set_screen (w, f);
1746 gtk_window_set_transient_for (GTK_WINDOW (w),
1747 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1748 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1749 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1751 dd.loop = g_main_loop_new (NULL, FALSE);
1752 dd.response = GTK_RESPONSE_CANCEL;
1753 dd.w = w;
1754 dd.timerid = 0;
1756 g_signal_connect (G_OBJECT (w),
1757 "response",
1758 G_CALLBACK (xg_dialog_response_cb),
1759 &dd);
1760 /* Don't destroy the widget if closed by the window manager close button. */
1761 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1762 gtk_widget_show (w);
1764 record_unwind_protect_ptr (pop_down_dialog, &dd);
1766 (void) xg_maybe_add_timer (&dd);
1767 g_main_loop_run (dd.loop);
1769 dd.w = 0;
1770 unbind_to (count, Qnil);
1772 return dd.response;
1776 /***********************************************************************
1777 File dialog functions
1778 ***********************************************************************/
1779 /* Return true if the old file selection dialog is being used. */
1781 bool
1782 xg_uses_old_file_dialog (void)
1784 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1785 return x_gtk_use_old_file_dialog;
1786 #else
1787 return 0;
1788 #endif
1792 typedef char * (*xg_get_file_func) (GtkWidget *);
1794 /* Return the selected file for file chooser dialog W.
1795 The returned string must be free:d. */
1797 static char *
1798 xg_get_file_name_from_chooser (GtkWidget *w)
1800 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1803 /* Callback called when the "Show hidden files" toggle is pressed.
1804 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1806 static void
1807 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1809 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1810 gboolean visible;
1811 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1812 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1816 /* Callback called when a property changes in a file chooser.
1817 GOBJECT is the file chooser dialog, ARG1 describes the property.
1818 USER_DATA is the toggle widget in the file chooser dialog.
1819 We use this to update the "Show hidden files" toggle when the user
1820 changes that property by right clicking in the file list. */
1822 static void
1823 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1825 if (strcmp (arg1->name, "show-hidden") == 0)
1827 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1828 gboolean visible, toggle_on;
1830 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1831 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1833 if (!!visible != !!toggle_on)
1835 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1836 G_CALLBACK (xg_toggle_visibility_cb),
1837 gobject);
1838 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1839 g_signal_handlers_unblock_by_func
1840 (G_OBJECT (wtoggle),
1841 G_CALLBACK (xg_toggle_visibility_cb),
1842 gobject);
1844 x_gtk_show_hidden_files = visible;
1848 /* Read a file name from the user using a file chooser dialog.
1849 F is the current frame.
1850 PROMPT is a prompt to show to the user. May not be NULL.
1851 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1852 If MUSTMATCH_P, the returned file name must be an existing
1853 file. (Actually, this only has cosmetic effects, the user can
1854 still enter a non-existing file.) *FUNC is set to a function that
1855 can be used to retrieve the selected file name from the returned widget.
1857 Returns the created widget. */
1859 static GtkWidget *
1860 xg_get_file_with_chooser (struct frame *f,
1861 char *prompt,
1862 char *default_filename,
1863 bool mustmatch_p, bool only_dir_p,
1864 xg_get_file_func *func)
1866 char msgbuf[1024];
1868 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
1869 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1870 GtkFileChooserAction action = (mustmatch_p ?
1871 GTK_FILE_CHOOSER_ACTION_OPEN :
1872 GTK_FILE_CHOOSER_ACTION_SAVE);
1874 if (only_dir_p)
1875 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1877 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1878 XG_TEXT_CANCEL, GTK_RESPONSE_CANCEL,
1879 (mustmatch_p || only_dir_p ?
1880 XG_TEXT_OPEN : XG_TEXT_OK),
1881 GTK_RESPONSE_OK,
1882 NULL);
1883 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1885 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1886 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
1887 gtk_widget_show (wbox);
1888 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1890 if (x_gtk_show_hidden_files)
1892 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1893 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1895 gtk_widget_show (wtoggle);
1896 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1897 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1898 g_signal_connect (G_OBJECT (filewin), "notify",
1899 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1901 if (x_gtk_file_dialog_help_text)
1903 char *z = msgbuf;
1904 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1905 Show the C-l help text only for versions < 2.10. */
1906 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1907 z = stpcpy (z, "\nType C-l to display a file name text entry box.\n");
1908 strcpy (z, "\nIf you don't like this file selector, use the "
1909 "corresponding\nkey binding or customize "
1910 "use-file-dialog to turn it off.");
1912 wmessage = gtk_label_new (msgbuf);
1913 gtk_widget_show (wmessage);
1916 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1917 if (x_gtk_file_dialog_help_text)
1918 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1919 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1921 if (default_filename)
1923 Lisp_Object file;
1924 char *utf8_filename;
1926 file = build_string (default_filename);
1928 /* File chooser does not understand ~/... in the file name. It must be
1929 an absolute name starting with /. */
1930 if (default_filename[0] != '/')
1931 file = Fexpand_file_name (file, Qnil);
1933 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1934 if (! NILP (Ffile_directory_p (file)))
1935 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1936 utf8_filename);
1937 else
1939 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1940 utf8_filename);
1941 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1943 char *cp = strrchr (utf8_filename, '/');
1944 if (cp) ++cp;
1945 else cp = utf8_filename;
1946 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1951 *func = xg_get_file_name_from_chooser;
1952 return filewin;
1955 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1957 /* Return the selected file for file selector dialog W.
1958 The returned string must be free:d. */
1960 static char *
1961 xg_get_file_name_from_selector (GtkWidget *w)
1963 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1964 return xstrdup (gtk_file_selection_get_filename (filesel));
1967 /* Create a file selection dialog.
1968 F is the current frame.
1969 PROMPT is a prompt to show to the user. May not be NULL.
1970 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1971 If MUSTMATCH_P, the returned file name must be an existing
1972 file. *FUNC is set to a function that can be used to retrieve the
1973 selected file name from the returned widget.
1975 Returns the created widget. */
1977 static GtkWidget *
1978 xg_get_file_with_selection (struct frame *f,
1979 char *prompt,
1980 char *default_filename,
1981 bool mustmatch_p, bool only_dir_p,
1982 xg_get_file_func *func)
1984 GtkWidget *filewin;
1985 GtkFileSelection *filesel;
1987 filewin = gtk_file_selection_new (prompt);
1988 filesel = GTK_FILE_SELECTION (filewin);
1990 if (default_filename)
1991 gtk_file_selection_set_filename (filesel, default_filename);
1993 if (mustmatch_p)
1995 /* The selection_entry part of filesel is not documented. */
1996 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1997 gtk_file_selection_hide_fileop_buttons (filesel);
2000 *func = xg_get_file_name_from_selector;
2002 return filewin;
2004 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
2006 /* Read a file name from the user using a file dialog, either the old
2007 file selection dialog, or the new file chooser dialog. Which to use
2008 depends on what the GTK version used has, and what the value of
2009 gtk-use-old-file-dialog.
2010 F is the current frame.
2011 PROMPT is a prompt to show to the user. May not be NULL.
2012 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2013 If MUSTMATCH_P, the returned file name must be an existing
2014 file.
2016 Returns a file name or NULL if no file was selected.
2017 The returned string must be freed by the caller. */
2019 char *
2020 xg_get_file_name (struct frame *f,
2021 char *prompt,
2022 char *default_filename,
2023 bool mustmatch_p,
2024 bool only_dir_p)
2026 GtkWidget *w = 0;
2027 char *fn = 0;
2028 int filesel_done = 0;
2029 xg_get_file_func func;
2031 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2033 if (xg_uses_old_file_dialog ())
2034 w = xg_get_file_with_selection (f, prompt, default_filename,
2035 mustmatch_p, only_dir_p, &func);
2036 else
2037 w = xg_get_file_with_chooser (f, prompt, default_filename,
2038 mustmatch_p, only_dir_p, &func);
2040 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2041 w = xg_get_file_with_chooser (f, prompt, default_filename,
2042 mustmatch_p, only_dir_p, &func);
2043 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2045 gtk_widget_set_name (w, "emacs-filedialog");
2047 filesel_done = xg_dialog_run (f, w);
2048 if (filesel_done == GTK_RESPONSE_OK)
2049 fn = (*func) (w);
2051 gtk_widget_destroy (w);
2052 return fn;
2055 /***********************************************************************
2056 GTK font chooser
2057 ***********************************************************************/
2059 #ifdef HAVE_FREETYPE
2061 #if USE_NEW_GTK_FONT_CHOOSER
2063 #define XG_WEIGHT_TO_SYMBOL(w) \
2064 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2065 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2066 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2067 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2068 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2069 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2070 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2071 : Qultra_bold)
2073 #define XG_STYLE_TO_SYMBOL(s) \
2074 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2075 : s == PANGO_STYLE_ITALIC ? Qitalic \
2076 : Qnormal)
2078 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2081 static char *x_last_font_name;
2083 /* Pop up a GTK font selector and return the name of the font the user
2084 selects, as a C string. The returned font name follows GTK's own
2085 format:
2087 `FAMILY [VALUE1 VALUE2] SIZE'
2089 This can be parsed using font_parse_fcname in font.c.
2090 DEFAULT_NAME, if non-zero, is the default font name. */
2092 Lisp_Object
2093 xg_get_font (struct frame *f, const char *default_name)
2095 GtkWidget *w;
2096 int done = 0;
2097 Lisp_Object font = Qnil;
2099 w = gtk_font_chooser_dialog_new
2100 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2102 if (default_name)
2104 /* Convert fontconfig names to Gtk names, i.e. remove - before
2105 number */
2106 char *p = strrchr (default_name, '-');
2107 if (p)
2109 char *ep = p+1;
2110 while (c_isdigit (*ep))
2111 ++ep;
2112 if (*ep == '\0') *p = ' ';
2115 else if (x_last_font_name)
2116 default_name = x_last_font_name;
2118 if (default_name)
2119 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2121 gtk_widget_set_name (w, "emacs-fontdialog");
2122 done = xg_dialog_run (f, w);
2123 if (done == GTK_RESPONSE_OK)
2125 #if USE_NEW_GTK_FONT_CHOOSER
2126 /* Use the GTK3 font chooser. */
2127 PangoFontDescription *desc
2128 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2130 if (desc)
2132 const char *name = pango_font_description_get_family (desc);
2133 gint size = pango_font_description_get_size (desc);
2134 PangoWeight weight = pango_font_description_get_weight (desc);
2135 PangoStyle style = pango_font_description_get_style (desc);
2137 #ifdef USE_CAIRO
2138 #define FONT_TYPE_WANTED (Qftcr)
2139 #else
2140 #define FONT_TYPE_WANTED (Qxft)
2141 #endif
2142 font = CALLN (Ffont_spec,
2143 QCname, build_string (name),
2144 QCsize, make_float (pango_units_to_double (size)),
2145 QCweight, XG_WEIGHT_TO_SYMBOL (weight),
2146 QCslant, XG_STYLE_TO_SYMBOL (style),
2147 QCtype,
2148 FONT_TYPE_WANTED);
2150 pango_font_description_free (desc);
2151 dupstring (&x_last_font_name, name);
2154 #else /* Use old font selector, which just returns the font name. */
2156 char *font_name
2157 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2159 if (font_name)
2161 font = build_string (font_name);
2162 g_free (x_last_font_name);
2163 x_last_font_name = font_name;
2165 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2168 gtk_widget_destroy (w);
2169 return font;
2171 #endif /* HAVE_FREETYPE */
2175 /***********************************************************************
2176 Menu functions.
2177 ***********************************************************************/
2179 /* The name of menu items that can be used for customization. Since GTK
2180 RC files are very crude and primitive, we have to set this on all
2181 menu item names so a user can easily customize menu items. */
2183 #define MENU_ITEM_NAME "emacs-menuitem"
2186 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2187 during GC. The next member points to the items. */
2188 static xg_list_node xg_menu_cb_list;
2190 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2191 during GC. The next member points to the items. */
2192 static xg_list_node xg_menu_item_cb_list;
2194 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2195 F is the frame CL_DATA will be initialized for.
2196 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2198 The menu bar and all sub menus under the menu bar in a frame
2199 share the same structure, hence the reference count.
2201 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2202 allocated xg_menu_cb_data if CL_DATA is NULL. */
2204 static xg_menu_cb_data *
2205 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2207 if (! cl_data)
2209 cl_data = xmalloc (sizeof *cl_data);
2210 cl_data->f = f;
2211 cl_data->menu_bar_vector = f->menu_bar_vector;
2212 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2213 cl_data->highlight_cb = highlight_cb;
2214 cl_data->ref_count = 0;
2216 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2219 cl_data->ref_count++;
2221 return cl_data;
2224 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2225 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2227 When the menu bar is updated, menu items may have been added and/or
2228 removed, so menu_bar_vector and menu_bar_items_used change. We must
2229 then update CL_DATA since it is used to determine which menu
2230 item that is invoked in the menu.
2231 HIGHLIGHT_CB could change, there is no check that the same
2232 function is given when modifying a menu bar as was given when
2233 creating the menu bar. */
2235 static void
2236 update_cl_data (xg_menu_cb_data *cl_data,
2237 struct frame *f,
2238 GCallback highlight_cb)
2240 if (cl_data)
2242 cl_data->f = f;
2243 cl_data->menu_bar_vector = f->menu_bar_vector;
2244 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2245 cl_data->highlight_cb = highlight_cb;
2249 /* Decrease reference count for CL_DATA.
2250 If reference count is zero, free CL_DATA. */
2252 static void
2253 unref_cl_data (xg_menu_cb_data *cl_data)
2255 if (cl_data && cl_data->ref_count > 0)
2257 cl_data->ref_count--;
2258 if (cl_data->ref_count == 0)
2260 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2261 xfree (cl_data);
2266 /* Function that marks all lisp data during GC. */
2268 void
2269 xg_mark_data (void)
2271 xg_list_node *iter;
2272 Lisp_Object rest, frame;
2274 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2275 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2277 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2279 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2281 if (! NILP (cb_data->help))
2282 mark_object (cb_data->help);
2285 FOR_EACH_FRAME (rest, frame)
2287 struct frame *f = XFRAME (frame);
2289 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2291 struct xg_frame_tb_info *tbinfo
2292 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2293 TB_INFO_KEY);
2294 if (tbinfo)
2296 mark_object (tbinfo->last_tool_bar);
2297 mark_object (tbinfo->style);
2304 /* Callback called when a menu item is destroyed. Used to free data.
2305 W is the widget that is being destroyed (not used).
2306 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2308 static void
2309 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2311 if (client_data)
2313 xg_menu_item_cb_data *data = client_data;
2314 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2315 xfree (data);
2319 /* Callback called when the pointer enters/leaves a menu item.
2320 W is the parent of the menu item.
2321 EVENT is either an enter event or leave event.
2322 CLIENT_DATA is not used.
2324 Returns FALSE to tell GTK to keep processing this event. */
2326 static gboolean
2327 menuitem_highlight_callback (GtkWidget *w,
2328 GdkEventCrossing *event,
2329 gpointer client_data)
2331 GdkEvent ev;
2332 GtkWidget *subwidget;
2333 xg_menu_item_cb_data *data;
2335 ev.crossing = *event;
2336 subwidget = gtk_get_event_widget (&ev);
2337 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2338 if (data)
2340 if (! NILP (data->help) && data->cl_data->highlight_cb)
2342 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2343 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2344 (*func) (subwidget, call_data);
2348 return FALSE;
2351 /* Callback called when a menu is destroyed. Used to free data.
2352 W is the widget that is being destroyed (not used).
2353 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2355 static void
2356 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2358 unref_cl_data (client_data);
2361 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2362 must be non-NULL) and can be inserted into a menu item.
2364 Returns the GtkHBox. */
2366 static GtkWidget *
2367 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2369 GtkWidget *wlbl;
2370 GtkWidget *wkey;
2371 GtkWidget *wbox;
2373 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2374 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2375 wlbl = gtk_label_new (utf8_label);
2376 wkey = gtk_label_new (utf8_key);
2378 #if GTK_CHECK_VERSION (3, 14, 0)
2379 gtk_widget_set_halign (wlbl, GTK_ALIGN_START);
2380 gtk_widget_set_valign (wlbl, GTK_ALIGN_CENTER);
2381 gtk_widget_set_halign (wkey, GTK_ALIGN_START);
2382 gtk_widget_set_valign (wkey, GTK_ALIGN_CENTER);
2383 #else
2384 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2385 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2386 #endif
2387 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2388 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2390 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2391 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2392 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2394 return wbox;
2397 /* Make and return a menu item widget with the key to the right.
2398 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2399 UTF8_KEY is the text representing the key binding.
2400 ITEM is the widget_value describing the menu item.
2402 GROUP is an in/out parameter. If the menu item to be created is not
2403 part of any radio menu group, *GROUP contains NULL on entry and exit.
2404 If the menu item to be created is part of a radio menu group, on entry
2405 *GROUP contains the group to use, or NULL if this is the first item
2406 in the group. On exit, *GROUP contains the radio item group.
2408 Unfortunately, keys don't line up as nicely as in Motif,
2409 but the MacOS X version doesn't either, so I guess that is OK. */
2411 static GtkWidget *
2412 make_menu_item (const char *utf8_label,
2413 const char *utf8_key,
2414 widget_value *item,
2415 GSList **group)
2417 GtkWidget *w;
2418 GtkWidget *wtoadd = 0;
2420 /* It has been observed that some menu items have a NULL name field.
2421 This will lead to this function being called with a NULL utf8_label.
2422 GTK crashes on that so we set a blank label. Why there is a NULL
2423 name remains to be investigated. */
2424 if (! utf8_label) utf8_label = " ";
2426 if (utf8_key)
2427 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2429 if (item->button_type == BUTTON_TYPE_TOGGLE)
2431 *group = NULL;
2432 if (utf8_key) w = gtk_check_menu_item_new ();
2433 else w = gtk_check_menu_item_new_with_label (utf8_label);
2434 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2436 else if (item->button_type == BUTTON_TYPE_RADIO)
2438 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2439 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2440 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2441 if (item->selected)
2442 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2444 else
2446 *group = NULL;
2447 if (utf8_key) w = gtk_menu_item_new ();
2448 else w = gtk_menu_item_new_with_label (utf8_label);
2451 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2452 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2454 return w;
2457 /* Create a menu item widget, and connect the callbacks.
2458 ITEM describes the menu item.
2459 F is the frame the created menu belongs to.
2460 SELECT_CB is the callback to use when a menu item is selected.
2461 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2462 CL_DATA points to the callback data to be used for this menu.
2463 GROUP is an in/out parameter. If the menu item to be created is not
2464 part of any radio menu group, *GROUP contains NULL on entry and exit.
2465 If the menu item to be created is part of a radio menu group, on entry
2466 *GROUP contains the group to use, or NULL if this is the first item
2467 in the group. On exit, *GROUP contains the radio item group.
2469 Returns the created GtkWidget. */
2471 static GtkWidget *
2472 xg_create_one_menuitem (widget_value *item,
2473 struct frame *f,
2474 GCallback select_cb,
2475 GCallback highlight_cb,
2476 xg_menu_cb_data *cl_data,
2477 GSList **group)
2479 char *utf8_label;
2480 char *utf8_key;
2481 GtkWidget *w;
2482 xg_menu_item_cb_data *cb_data;
2484 utf8_label = get_utf8_string (item->name);
2485 utf8_key = get_utf8_string (item->key);
2487 w = make_menu_item (utf8_label, utf8_key, item, group);
2489 if (utf8_label) g_free (utf8_label);
2490 if (utf8_key) g_free (utf8_key);
2492 cb_data = xmalloc (sizeof *cb_data);
2494 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2496 cb_data->select_id = 0;
2497 cb_data->help = item->help;
2498 cb_data->cl_data = cl_data;
2499 cb_data->call_data = item->call_data;
2501 g_signal_connect (G_OBJECT (w),
2502 "destroy",
2503 G_CALLBACK (menuitem_destroy_callback),
2504 cb_data);
2506 /* Put cb_data in widget, so we can get at it when modifying menubar */
2507 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2509 /* final item, not a submenu */
2510 if (item->call_data && ! item->contents)
2512 if (select_cb)
2513 cb_data->select_id
2514 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2517 return w;
2520 /* Create a full menu tree specified by DATA.
2521 F is the frame the created menu belongs to.
2522 SELECT_CB is the callback to use when a menu item is selected.
2523 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2524 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2525 If POP_UP_P, create a popup menu.
2526 If MENU_BAR_P, create a menu bar.
2527 TOPMENU is the topmost GtkWidget that others shall be placed under.
2528 It may be NULL, in that case we create the appropriate widget
2529 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2530 CL_DATA is the callback data we shall use for this menu, or NULL
2531 if we haven't set the first callback yet.
2532 NAME is the name to give to the top level menu if this function
2533 creates it. May be NULL to not set any name.
2535 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2536 not NULL.
2538 This function calls itself to create submenus. */
2540 static GtkWidget *
2541 create_menus (widget_value *data,
2542 struct frame *f,
2543 GCallback select_cb,
2544 GCallback deactivate_cb,
2545 GCallback highlight_cb,
2546 bool pop_up_p,
2547 bool menu_bar_p,
2548 GtkWidget *topmenu,
2549 xg_menu_cb_data *cl_data,
2550 const char *name)
2552 widget_value *item;
2553 GtkWidget *wmenu = topmenu;
2554 GSList *group = NULL;
2556 if (! topmenu)
2558 if (! menu_bar_p)
2560 wmenu = gtk_menu_new ();
2561 xg_set_screen (wmenu, f);
2562 /* Connect this to the menu instead of items so we get enter/leave for
2563 disabled items also. TODO: Still does not get enter/leave for
2564 disabled items in detached menus. */
2565 g_signal_connect (G_OBJECT (wmenu),
2566 "enter-notify-event",
2567 G_CALLBACK (menuitem_highlight_callback),
2568 NULL);
2569 g_signal_connect (G_OBJECT (wmenu),
2570 "leave-notify-event",
2571 G_CALLBACK (menuitem_highlight_callback),
2572 NULL);
2574 else
2576 wmenu = gtk_menu_bar_new ();
2577 /* Set width of menu bar to a small value so it doesn't enlarge
2578 a small initial frame size. The width will be set to the
2579 width of the frame later on when it is added to a container.
2580 height -1: Natural height. */
2581 gtk_widget_set_size_request (wmenu, 1, -1);
2584 /* Put cl_data on the top menu for easier access. */
2585 cl_data = make_cl_data (cl_data, f, highlight_cb);
2586 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2587 g_signal_connect (G_OBJECT (wmenu), "destroy",
2588 G_CALLBACK (menu_destroy_callback), cl_data);
2590 if (name)
2591 gtk_widget_set_name (wmenu, name);
2593 if (deactivate_cb)
2594 g_signal_connect (G_OBJECT (wmenu),
2595 "selection-done", deactivate_cb, 0);
2598 for (item = data; item; item = item->next)
2600 GtkWidget *w;
2602 if (pop_up_p && !item->contents && !item->call_data
2603 && !menu_separator_name_p (item->name))
2605 char *utf8_label;
2606 /* A title for a popup. We do the same as GTK does when
2607 creating titles, but it does not look good. */
2608 group = NULL;
2609 utf8_label = get_utf8_string (item->name);
2611 w = gtk_menu_item_new_with_label (utf8_label);
2612 gtk_widget_set_sensitive (w, FALSE);
2613 if (utf8_label) g_free (utf8_label);
2615 else if (menu_separator_name_p (item->name))
2617 group = NULL;
2618 /* GTK only have one separator type. */
2619 w = gtk_separator_menu_item_new ();
2621 else
2623 w = xg_create_one_menuitem (item,
2625 item->contents ? 0 : select_cb,
2626 highlight_cb,
2627 cl_data,
2628 &group);
2630 /* Create a possibly empty submenu for menu bar items, since some
2631 themes don't highlight items correctly without it. */
2632 if (item->contents || menu_bar_p)
2634 GtkWidget *submenu = create_menus (item->contents,
2636 select_cb,
2637 deactivate_cb,
2638 highlight_cb,
2642 cl_data,
2644 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2648 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2649 gtk_widget_set_name (w, MENU_ITEM_NAME);
2652 return wmenu;
2655 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2656 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2657 with some text and buttons.
2658 F is the frame the created item belongs to.
2659 NAME is the name to use for the top widget.
2660 VAL is a widget_value structure describing items to be created.
2661 SELECT_CB is the callback to use when a menu item is selected or
2662 a dialog button is pressed.
2663 DEACTIVATE_CB is the callback to use when an item is deactivated.
2664 For a menu, when a sub menu is not shown anymore, for a dialog it is
2665 called when the dialog is popped down.
2666 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2668 Returns the widget created. */
2670 GtkWidget *
2671 xg_create_widget (const char *type, const char *name, struct frame *f,
2672 widget_value *val, GCallback select_cb,
2673 GCallback deactivate_cb, GCallback highlight_cb)
2675 GtkWidget *w = 0;
2676 bool menu_bar_p = strcmp (type, "menubar") == 0;
2677 bool pop_up_p = strcmp (type, "popup") == 0;
2679 if (strcmp (type, "dialog") == 0)
2681 w = create_dialog (val, select_cb, deactivate_cb);
2682 xg_set_screen (w, f);
2683 gtk_window_set_transient_for (GTK_WINDOW (w),
2684 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2685 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2686 gtk_widget_set_name (w, "emacs-dialog");
2687 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2689 else if (menu_bar_p || pop_up_p)
2691 w = create_menus (val->contents,
2693 select_cb,
2694 deactivate_cb,
2695 highlight_cb,
2696 pop_up_p,
2697 menu_bar_p,
2700 name);
2702 /* Set the cursor to an arrow for popup menus when they are mapped.
2703 This is done by default for menu bar menus. */
2704 if (pop_up_p)
2706 /* Must realize so the GdkWindow inside the widget is created. */
2707 gtk_widget_realize (w);
2708 xg_set_cursor (w, FRAME_DISPLAY_INFO (f)->xg_cursor);
2711 else
2713 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2714 type);
2717 return w;
2720 /* Return the label for menu item WITEM. */
2722 static const char *
2723 xg_get_menu_item_label (GtkMenuItem *witem)
2725 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2726 return gtk_label_get_label (wlabel);
2729 /* Return true if the menu item WITEM has the text LABEL. */
2731 static bool
2732 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2734 bool is_same = 0;
2735 char *utf8_label = get_utf8_string (label);
2736 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2738 if (! old_label && ! utf8_label)
2739 is_same = 1;
2740 else if (old_label && utf8_label)
2741 is_same = strcmp (utf8_label, old_label) == 0;
2743 if (utf8_label) g_free (utf8_label);
2745 return is_same;
2748 /* Destroy widgets in LIST. */
2750 static void
2751 xg_destroy_widgets (GList *list)
2753 GList *iter;
2755 for (iter = list; iter; iter = g_list_next (iter))
2757 GtkWidget *w = GTK_WIDGET (iter->data);
2759 /* Destroying the widget will remove it from the container it is in. */
2760 gtk_widget_destroy (w);
2764 /* Update the top level names in MENUBAR (i.e. not submenus).
2765 F is the frame the menu bar belongs to.
2766 *LIST is a list with the current menu bar names (menu item widgets).
2767 ITER is the item within *LIST that shall be updated.
2768 POS is the numerical position, starting at 0, of ITER in *LIST.
2769 VAL describes what the menu bar shall look like after the update.
2770 SELECT_CB is the callback to use when a menu item is selected.
2771 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2772 CL_DATA points to the callback data to be used for this menu bar.
2774 This function calls itself to walk through the menu bar names. */
2776 static void
2777 xg_update_menubar (GtkWidget *menubar,
2778 struct frame *f,
2779 GList **list,
2780 GList *iter,
2781 int pos,
2782 widget_value *val,
2783 GCallback select_cb,
2784 GCallback deactivate_cb,
2785 GCallback highlight_cb,
2786 xg_menu_cb_data *cl_data)
2788 if (! iter && ! val)
2789 return;
2790 else if (iter && ! val)
2792 /* Item(s) have been removed. Remove all remaining items. */
2793 xg_destroy_widgets (iter);
2795 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2796 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2797 gtk_menu_item_new_with_label (""),
2799 /* All updated. */
2800 val = 0;
2801 iter = 0;
2803 else if (! iter && val)
2805 /* Item(s) added. Add all new items in one call. */
2806 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2807 0, 1, menubar, cl_data, 0);
2809 /* All updated. */
2810 val = 0;
2811 iter = 0;
2813 /* Below this neither iter or val is NULL */
2814 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2816 /* This item is still the same, check next item. */
2817 val = val->next;
2818 iter = g_list_next (iter);
2819 ++pos;
2821 else /* This item is changed. */
2823 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2824 GtkMenuItem *witem2 = 0;
2825 bool val_in_menubar = 0;
2826 bool iter_in_new_menubar = 0;
2827 GList *iter2;
2828 widget_value *cur;
2830 /* See if the changed entry (val) is present later in the menu bar */
2831 for (iter2 = iter;
2832 iter2 && ! val_in_menubar;
2833 iter2 = g_list_next (iter2))
2835 witem2 = GTK_MENU_ITEM (iter2->data);
2836 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2839 /* See if the current entry (iter) is present later in the
2840 specification for the new menu bar. */
2841 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2842 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2844 if (val_in_menubar && ! iter_in_new_menubar)
2846 int nr = pos;
2848 /* This corresponds to:
2849 Current: A B C
2850 New: A C
2851 Remove B. */
2853 g_object_ref (G_OBJECT (witem));
2854 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2855 gtk_widget_destroy (GTK_WIDGET (witem));
2857 /* Must get new list since the old changed. */
2858 g_list_free (*list);
2859 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2860 while (nr-- > 0) iter = g_list_next (iter);
2862 else if (! val_in_menubar && ! iter_in_new_menubar)
2864 /* This corresponds to:
2865 Current: A B C
2866 New: A X C
2867 Rename B to X. This might seem to be a strange thing to do,
2868 since if there is a menu under B it will be totally wrong for X.
2869 But consider editing a C file. Then there is a C-mode menu
2870 (corresponds to B above).
2871 If then doing C-x C-f the minibuf menu (X above) replaces the
2872 C-mode menu. When returning from the minibuffer, we get
2873 back the C-mode menu. Thus we do:
2874 Rename B to X (C-mode to minibuf menu)
2875 Rename X to B (minibuf to C-mode menu).
2876 If the X menu hasn't been invoked, the menu under B
2877 is up to date when leaving the minibuffer. */
2878 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2879 char *utf8_label = get_utf8_string (val->name);
2881 /* GTK menu items don't notice when their labels have been
2882 changed from underneath them, so we have to explicitly
2883 use g_object_notify to tell listeners (e.g., a GMenuModel
2884 bridge that might be loaded) that the item's label has
2885 changed. */
2886 gtk_label_set_text (wlabel, utf8_label);
2887 #if GTK_CHECK_VERSION (2, 16, 0)
2888 g_object_notify (G_OBJECT (witem), "label");
2889 #endif
2890 if (utf8_label) g_free (utf8_label);
2891 iter = g_list_next (iter);
2892 val = val->next;
2893 ++pos;
2895 else if (! val_in_menubar && iter_in_new_menubar)
2897 /* This corresponds to:
2898 Current: A B C
2899 New: A X B C
2900 Insert X. */
2902 int nr = pos;
2903 GSList *group = 0;
2904 GtkWidget *w = xg_create_one_menuitem (val,
2906 select_cb,
2907 highlight_cb,
2908 cl_data,
2909 &group);
2911 /* Create a possibly empty submenu for menu bar items, since some
2912 themes don't highlight items correctly without it. */
2913 GtkWidget *submenu = create_menus (NULL, f,
2914 select_cb, deactivate_cb,
2915 highlight_cb,
2916 0, 0, 0, cl_data, 0);
2918 gtk_widget_set_name (w, MENU_ITEM_NAME);
2919 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2920 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2922 g_list_free (*list);
2923 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2924 while (nr-- > 0) iter = g_list_next (iter);
2925 iter = g_list_next (iter);
2926 val = val->next;
2927 ++pos;
2929 else /* if (val_in_menubar && iter_in_new_menubar) */
2931 int nr = pos;
2932 /* This corresponds to:
2933 Current: A B C
2934 New: A C B
2935 Move C before B */
2937 g_object_ref (G_OBJECT (witem2));
2938 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2939 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2940 GTK_WIDGET (witem2), pos);
2941 g_object_unref (G_OBJECT (witem2));
2943 g_list_free (*list);
2944 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2945 while (nr-- > 0) iter = g_list_next (iter);
2946 if (iter) iter = g_list_next (iter);
2947 val = val->next;
2948 ++pos;
2952 /* Update the rest of the menu bar. */
2953 xg_update_menubar (menubar, f, list, iter, pos, val,
2954 select_cb, deactivate_cb, highlight_cb, cl_data);
2957 /* Update the menu item W so it corresponds to VAL.
2958 SELECT_CB is the callback to use when a menu item is selected.
2959 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2960 CL_DATA is the data to set in the widget for menu invocation. */
2962 static void
2963 xg_update_menu_item (widget_value *val,
2964 GtkWidget *w,
2965 GCallback select_cb,
2966 GCallback highlight_cb,
2967 xg_menu_cb_data *cl_data)
2969 GtkWidget *wchild;
2970 GtkLabel *wlbl = 0;
2971 GtkLabel *wkey = 0;
2972 char *utf8_label;
2973 char *utf8_key;
2974 const char *old_label = 0;
2975 const char *old_key = 0;
2976 xg_menu_item_cb_data *cb_data;
2977 bool label_changed = false;
2979 wchild = XG_BIN_CHILD (w);
2980 utf8_label = get_utf8_string (val->name);
2981 utf8_key = get_utf8_string (val->key);
2983 /* See if W is a menu item with a key. See make_menu_item above. */
2984 if (GTK_IS_BOX (wchild))
2986 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
2988 wlbl = GTK_LABEL (list->data);
2989 wkey = GTK_LABEL (list->next->data);
2990 g_list_free (list);
2992 if (! utf8_key)
2994 /* Remove the key and keep just the label. */
2995 g_object_ref (G_OBJECT (wlbl));
2996 gtk_container_remove (GTK_CONTAINER (w), wchild);
2997 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
2998 g_object_unref (G_OBJECT (wlbl));
2999 wkey = 0;
3003 else /* Just a label. */
3005 wlbl = GTK_LABEL (wchild);
3007 /* Check if there is now a key. */
3008 if (utf8_key)
3010 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
3011 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
3013 wlbl = GTK_LABEL (list->data);
3014 wkey = GTK_LABEL (list->next->data);
3015 g_list_free (list);
3017 gtk_container_remove (GTK_CONTAINER (w), wchild);
3018 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3022 if (wkey) old_key = gtk_label_get_label (wkey);
3023 if (wlbl) old_label = gtk_label_get_label (wlbl);
3025 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
3027 label_changed = true;
3028 gtk_label_set_text (wkey, utf8_key);
3031 if (! old_label || strcmp (utf8_label, old_label) != 0)
3033 label_changed = true;
3034 gtk_label_set_text (wlbl, utf8_label);
3037 if (utf8_key) g_free (utf8_key);
3038 if (utf8_label) g_free (utf8_label);
3040 if (! val->enabled && gtk_widget_get_sensitive (w))
3041 gtk_widget_set_sensitive (w, FALSE);
3042 else if (val->enabled && ! gtk_widget_get_sensitive (w))
3043 gtk_widget_set_sensitive (w, TRUE);
3045 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
3046 if (cb_data)
3048 cb_data->call_data = val->call_data;
3049 cb_data->help = val->help;
3050 cb_data->cl_data = cl_data;
3052 /* We assume the callback functions don't change. */
3053 if (val->call_data && ! val->contents)
3055 /* This item shall have a select callback. */
3056 if (! cb_data->select_id)
3057 cb_data->select_id
3058 = g_signal_connect (G_OBJECT (w), "activate",
3059 select_cb, cb_data);
3061 else if (cb_data->select_id)
3063 g_signal_handler_disconnect (w, cb_data->select_id);
3064 cb_data->select_id = 0;
3068 #if GTK_CHECK_VERSION (2, 16, 0)
3069 if (label_changed) /* See comment in xg_update_menubar. */
3070 g_object_notify (G_OBJECT (w), "label");
3071 #endif
3074 /* Update the toggle menu item W so it corresponds to VAL. */
3076 static void
3077 xg_update_toggle_item (widget_value *val, GtkWidget *w)
3079 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3082 /* Update the radio menu item W so it corresponds to VAL. */
3084 static void
3085 xg_update_radio_item (widget_value *val, GtkWidget *w)
3087 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3090 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3091 SUBMENU may be NULL, in that case a new menu is created.
3092 F is the frame the menu bar belongs to.
3093 VAL describes the contents of the menu bar.
3094 SELECT_CB is the callback to use when a menu item is selected.
3095 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3096 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3097 CL_DATA is the call back data to use for any newly created items.
3099 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3100 was NULL. */
3102 static GtkWidget *
3103 xg_update_submenu (GtkWidget *submenu,
3104 struct frame *f,
3105 widget_value *val,
3106 GCallback select_cb,
3107 GCallback deactivate_cb,
3108 GCallback highlight_cb,
3109 xg_menu_cb_data *cl_data)
3111 GtkWidget *newsub = submenu;
3112 GList *list = 0;
3113 GList *iter;
3114 widget_value *cur;
3115 GList *first_radio = 0;
3117 if (submenu)
3118 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3120 for (cur = val, iter = list;
3121 cur && iter;
3122 iter = g_list_next (iter), cur = cur->next)
3124 GtkWidget *w = GTK_WIDGET (iter->data);
3126 /* Remember first radio button in a group. If we get a mismatch in
3127 a radio group we must rebuild the whole group so that the connections
3128 in GTK becomes correct. */
3129 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3130 first_radio = iter;
3131 else if (cur->button_type != BUTTON_TYPE_RADIO
3132 && ! GTK_IS_RADIO_MENU_ITEM (w))
3133 first_radio = 0;
3135 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3137 if (! menu_separator_name_p (cur->name))
3138 break;
3140 else if (GTK_IS_CHECK_MENU_ITEM (w))
3142 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3143 break;
3144 xg_update_toggle_item (cur, w);
3145 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3147 else if (GTK_IS_RADIO_MENU_ITEM (w))
3149 if (cur->button_type != BUTTON_TYPE_RADIO)
3150 break;
3151 xg_update_radio_item (cur, w);
3152 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3154 else if (GTK_IS_MENU_ITEM (w))
3156 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3157 GtkWidget *sub;
3159 if (cur->button_type != BUTTON_TYPE_NONE ||
3160 menu_separator_name_p (cur->name))
3161 break;
3163 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3165 sub = gtk_menu_item_get_submenu (witem);
3166 if (sub && ! cur->contents)
3168 /* Not a submenu anymore. */
3169 g_object_ref (G_OBJECT (sub));
3170 remove_submenu (witem);
3171 gtk_widget_destroy (sub);
3173 else if (cur->contents)
3175 GtkWidget *nsub;
3177 nsub = xg_update_submenu (sub, f, cur->contents,
3178 select_cb, deactivate_cb,
3179 highlight_cb, cl_data);
3181 /* If this item just became a submenu, we must set it. */
3182 if (nsub != sub)
3183 gtk_menu_item_set_submenu (witem, nsub);
3186 else
3188 /* Structural difference. Remove everything from here and down
3189 in SUBMENU. */
3190 break;
3194 /* Remove widgets from first structural change. */
3195 if (iter)
3197 /* If we are adding new menu items below, we must remove from
3198 first radio button so that radio groups become correct. */
3199 if (cur && first_radio) xg_destroy_widgets (first_radio);
3200 else xg_destroy_widgets (iter);
3203 if (cur)
3205 /* More items added. Create them. */
3206 newsub = create_menus (cur,
3208 select_cb,
3209 deactivate_cb,
3210 highlight_cb,
3213 submenu,
3214 cl_data,
3218 if (list) g_list_free (list);
3220 return newsub;
3223 /* Update the MENUBAR.
3224 F is the frame the menu bar belongs to.
3225 VAL describes the contents of the menu bar.
3226 If DEEP_P, rebuild all but the top level menu names in
3227 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3228 SELECT_CB is the callback to use when a menu item is selected.
3229 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3230 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3232 void
3233 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3234 widget_value *val, bool deep_p,
3235 GCallback select_cb, GCallback deactivate_cb,
3236 GCallback highlight_cb)
3238 xg_menu_cb_data *cl_data;
3239 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3241 if (! list) return;
3243 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3245 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3246 select_cb, deactivate_cb, highlight_cb, cl_data);
3248 if (deep_p)
3250 widget_value *cur;
3252 /* Update all sub menus.
3253 We must keep the submenus (GTK menu item widgets) since the
3254 X Window in the XEvent that activates the menu are those widgets. */
3256 /* Update cl_data, menu_item things in F may have changed. */
3257 update_cl_data (cl_data, f, highlight_cb);
3259 for (cur = val->contents; cur; cur = cur->next)
3261 GList *iter;
3262 GtkWidget *sub = 0;
3263 GtkWidget *newsub;
3264 GtkMenuItem *witem = 0;
3266 /* Find sub menu that corresponds to val and update it. */
3267 for (iter = list ; iter; iter = g_list_next (iter))
3269 witem = GTK_MENU_ITEM (iter->data);
3270 if (xg_item_label_same_p (witem, cur->name))
3272 sub = gtk_menu_item_get_submenu (witem);
3273 break;
3277 newsub = xg_update_submenu (sub,
3279 cur->contents,
3280 select_cb,
3281 deactivate_cb,
3282 highlight_cb,
3283 cl_data);
3284 /* sub may still be NULL. If we just updated non deep and added
3285 a new menu bar item, it has no sub menu yet. So we set the
3286 newly created sub menu under witem. */
3287 if (newsub != sub && witem != 0)
3289 xg_set_screen (newsub, f);
3290 gtk_menu_item_set_submenu (witem, newsub);
3295 g_list_free (list);
3296 gtk_widget_show_all (menubar);
3299 /* Callback called when the menu bar W is mapped.
3300 Used to find the height of the menu bar if we didn't get it
3301 after showing the widget. */
3303 static void
3304 menubar_map_cb (GtkWidget *w, gpointer user_data)
3306 GtkRequisition req;
3307 struct frame *f = user_data;
3308 gtk_widget_get_preferred_size (w, NULL, &req);
3309 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3311 FRAME_MENUBAR_HEIGHT (f) = req.height;
3312 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3316 /* Recompute all the widgets of frame F, when the menu bar has been
3317 changed. */
3319 void
3320 xg_update_frame_menubar (struct frame *f)
3322 struct x_output *x = f->output_data.x;
3323 GtkRequisition req;
3325 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3326 return;
3328 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3329 return; /* Already done this, happens for frames created invisible. */
3331 block_input ();
3333 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3334 FALSE, FALSE, 0);
3335 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3337 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3338 gtk_widget_show_all (x->menubar_widget);
3339 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3341 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3343 FRAME_MENUBAR_HEIGHT (f) = req.height;
3344 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3346 unblock_input ();
3349 /* Get rid of the menu bar of frame F, and free its storage.
3350 This is used when deleting a frame, and when turning off the menu bar. */
3352 void
3353 free_frame_menubar (struct frame *f)
3355 struct x_output *x = f->output_data.x;
3357 if (x->menubar_widget)
3359 block_input ();
3361 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3362 /* The menubar and its children shall be deleted when removed from
3363 the container. */
3364 x->menubar_widget = 0;
3365 FRAME_MENUBAR_HEIGHT (f) = 0;
3366 adjust_frame_size (f, -1, -1, 2, 0, Qmenu_bar_lines);
3367 unblock_input ();
3371 bool
3372 xg_event_is_for_menubar (struct frame *f, const XEvent *event)
3374 struct x_output *x = f->output_data.x;
3375 GList *iter;
3376 GdkRectangle rec;
3377 GList *list;
3378 GdkDisplay *gdpy;
3379 GdkWindow *gw;
3380 GdkEvent gevent;
3381 GtkWidget *gwdesc;
3383 if (! x->menubar_widget) return 0;
3385 if (! (event->xbutton.x >= 0
3386 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3387 && event->xbutton.y >= 0
3388 && event->xbutton.y < FRAME_MENUBAR_HEIGHT (f)
3389 && event->xbutton.same_screen))
3390 return 0;
3392 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3393 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3394 if (! gw) return 0;
3395 gevent.any.window = gw;
3396 gevent.any.type = GDK_NOTHING;
3397 gwdesc = gtk_get_event_widget (&gevent);
3398 if (! gwdesc) return 0;
3399 if (! GTK_IS_MENU_BAR (gwdesc)
3400 && ! GTK_IS_MENU_ITEM (gwdesc)
3401 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3402 return 0;
3404 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3405 if (! list) return 0;
3406 rec.x = event->xbutton.x;
3407 rec.y = event->xbutton.y;
3408 rec.width = 1;
3409 rec.height = 1;
3411 for (iter = list ; iter; iter = g_list_next (iter))
3413 GtkWidget *w = GTK_WIDGET (iter->data);
3414 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3415 break;
3417 g_list_free (list);
3418 return iter != 0;
3423 /***********************************************************************
3424 Scroll bar functions
3425 ***********************************************************************/
3428 /* Setting scroll bar values invokes the callback. Use this variable
3429 to indicate that callback should do nothing. */
3431 bool xg_ignore_gtk_scrollbar;
3433 /* Width and height of scroll bars for the current theme. */
3434 static int scroll_bar_width_for_theme;
3435 static int scroll_bar_height_for_theme;
3437 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3438 may be larger than 32 bits. Keep a mapping from integer index to widget
3439 pointers to get around the 32 bit limitation. */
3441 static struct
3443 GtkWidget **widgets;
3444 ptrdiff_t max_size;
3445 ptrdiff_t used;
3446 } id_to_widget;
3448 /* Grow this much every time we need to allocate more */
3450 #define ID_TO_WIDGET_INCR 32
3452 /* Store the widget pointer W in id_to_widget and return the integer index. */
3454 static ptrdiff_t
3455 xg_store_widget_in_map (GtkWidget *w)
3457 ptrdiff_t i;
3459 if (id_to_widget.max_size == id_to_widget.used)
3461 ptrdiff_t new_size;
3462 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3463 memory_full (SIZE_MAX);
3465 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3466 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3467 new_size, sizeof (GtkWidget *));
3469 for (i = id_to_widget.max_size; i < new_size; ++i)
3470 id_to_widget.widgets[i] = 0;
3471 id_to_widget.max_size = new_size;
3474 /* Just loop over the array and find a free place. After all,
3475 how many scroll bars are we creating? Should be a small number.
3476 The check above guarantees we will find a free place. */
3477 for (i = 0; i < id_to_widget.max_size; ++i)
3479 if (! id_to_widget.widgets[i])
3481 id_to_widget.widgets[i] = w;
3482 ++id_to_widget.used;
3484 return i;
3488 /* Should never end up here */
3489 emacs_abort ();
3492 /* Remove pointer at IDX from id_to_widget.
3493 Called when scroll bar is destroyed. */
3495 static void
3496 xg_remove_widget_from_map (ptrdiff_t idx)
3498 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3500 id_to_widget.widgets[idx] = 0;
3501 --id_to_widget.used;
3505 /* Get the widget pointer at IDX from id_to_widget. */
3507 static GtkWidget *
3508 xg_get_widget_from_map (ptrdiff_t idx)
3510 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3511 return id_to_widget.widgets[idx];
3513 return 0;
3516 static void
3517 update_theme_scrollbar_width (void)
3519 #ifdef HAVE_GTK3
3520 GtkAdjustment *vadj;
3521 #else
3522 GtkObject *vadj;
3523 #endif
3524 GtkWidget *wscroll;
3525 int w = 0, b = 0;
3527 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3528 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3529 g_object_ref_sink (G_OBJECT (wscroll));
3530 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3531 gtk_widget_destroy (wscroll);
3532 g_object_unref (G_OBJECT (wscroll));
3533 w += 2*b;
3534 #ifndef HAVE_GTK3
3535 if (w < 16) w = 16;
3536 #endif
3537 scroll_bar_width_for_theme = w;
3540 static void
3541 update_theme_scrollbar_height (void)
3543 #ifdef HAVE_GTK3
3544 GtkAdjustment *hadj;
3545 #else
3546 GtkObject *hadj;
3547 #endif
3548 GtkWidget *wscroll;
3549 int w = 0, b = 0;
3551 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX, 0.1, 0.1, 0.1);
3552 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3553 g_object_ref_sink (G_OBJECT (wscroll));
3554 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3555 gtk_widget_destroy (wscroll);
3556 g_object_unref (G_OBJECT (wscroll));
3557 w += 2*b;
3558 if (w < 12) w = 12;
3559 scroll_bar_height_for_theme = w;
3563 xg_get_default_scrollbar_width (void)
3565 return scroll_bar_width_for_theme * xg_get_gdk_scale ();
3569 xg_get_default_scrollbar_height (void)
3571 /* Apparently there's no default height for themes. */
3572 return scroll_bar_width_for_theme * xg_get_gdk_scale ();
3575 /* Return the scrollbar id for X Window WID on display DPY.
3576 Return -1 if WID not in id_to_widget. */
3578 ptrdiff_t
3579 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3581 ptrdiff_t idx;
3582 GtkWidget *w;
3584 w = xg_win_to_widget (dpy, wid);
3586 if (w)
3588 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3589 if (id_to_widget.widgets[idx] == w)
3590 return idx;
3593 return -1;
3596 /* Callback invoked when scroll bar WIDGET is destroyed.
3597 DATA is the index into id_to_widget for WIDGET.
3598 We free pointer to last scroll bar values here and remove the index. */
3600 static void
3601 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3603 intptr_t id = (intptr_t) data;
3604 xg_remove_widget_from_map (id);
3607 /* Create a scroll bar widget for frame F. Store the scroll bar
3608 in BAR.
3609 SCROLL_CALLBACK is the callback to invoke when the value of the
3610 bar changes.
3611 END_CALLBACK is the callback to invoke when scrolling ends.
3612 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3613 to set resources for the widget. */
3615 void
3616 xg_create_scroll_bar (struct frame *f,
3617 struct scroll_bar *bar,
3618 GCallback scroll_callback,
3619 GCallback end_callback,
3620 const char *scroll_bar_name)
3622 GtkWidget *wscroll;
3623 GtkWidget *webox;
3624 intptr_t scroll_id;
3625 #ifdef HAVE_GTK3
3626 GtkAdjustment *vadj;
3627 #else
3628 GtkObject *vadj;
3629 #endif
3631 /* Page, step increment values are not so important here, they
3632 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3633 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3634 0.1, 0.1, 0.1);
3636 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3637 webox = gtk_event_box_new ();
3638 gtk_widget_set_name (wscroll, scroll_bar_name);
3639 #ifndef HAVE_GTK3
3640 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3641 #endif
3642 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3644 scroll_id = xg_store_widget_in_map (wscroll);
3646 g_signal_connect (G_OBJECT (wscroll),
3647 "destroy",
3648 G_CALLBACK (xg_gtk_scroll_destroy),
3649 (gpointer) scroll_id);
3650 g_signal_connect (G_OBJECT (wscroll),
3651 "change-value",
3652 scroll_callback,
3653 (gpointer) bar);
3654 g_signal_connect (G_OBJECT (wscroll),
3655 "button-release-event",
3656 end_callback,
3657 (gpointer) bar);
3659 /* The scroll bar widget does not draw on a window of its own. Instead
3660 it draws on the parent window, in this case the edit widget. So
3661 whenever the edit widget is cleared, the scroll bar needs to redraw
3662 also, which causes flicker. Put an event box between the edit widget
3663 and the scroll bar, so the scroll bar instead draws itself on the
3664 event box window. */
3665 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3666 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3669 /* Set the cursor to an arrow. */
3670 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3672 bar->x_window = scroll_id;
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 GtkWidget *webox;
3691 intptr_t scroll_id;
3692 #ifdef HAVE_GTK3
3693 GtkAdjustment *hadj;
3694 #else
3695 GtkObject *hadj;
3696 #endif
3698 /* Page, step increment values are not so important here, they
3699 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3700 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX,
3701 0.1, 0.1, 0.1);
3703 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3704 webox = gtk_event_box_new ();
3705 gtk_widget_set_name (wscroll, scroll_bar_name);
3706 #ifndef HAVE_GTK3
3707 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3708 #endif
3709 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3711 scroll_id = xg_store_widget_in_map (wscroll);
3713 g_signal_connect (G_OBJECT (wscroll),
3714 "destroy",
3715 G_CALLBACK (xg_gtk_scroll_destroy),
3716 (gpointer) scroll_id);
3717 g_signal_connect (G_OBJECT (wscroll),
3718 "change-value",
3719 scroll_callback,
3720 (gpointer) bar);
3721 g_signal_connect (G_OBJECT (wscroll),
3722 "button-release-event",
3723 end_callback,
3724 (gpointer) bar);
3726 /* The scroll bar widget does not draw on a window of its own. Instead
3727 it draws on the parent window, in this case the edit widget. So
3728 whenever the edit widget is cleared, the scroll bar needs to redraw
3729 also, which causes flicker. Put an event box between the edit widget
3730 and the scroll bar, so the scroll bar instead draws itself on the
3731 event box window. */
3732 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3733 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3736 /* Set the cursor to an arrow. */
3737 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3739 bar->x_window = scroll_id;
3740 bar->horizontal = 1;
3743 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3745 void
3746 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3748 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3749 if (w)
3751 GtkWidget *wparent = gtk_widget_get_parent (w);
3752 gtk_widget_destroy (w);
3753 gtk_widget_destroy (wparent);
3754 SET_FRAME_GARBAGED (f);
3758 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3759 in frame F.
3760 TOP/LEFT are the new pixel positions where the bar shall appear.
3761 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3763 void
3764 xg_update_scrollbar_pos (struct frame *f,
3765 ptrdiff_t scrollbar_id,
3766 int top,
3767 int left,
3768 int width,
3769 int height)
3771 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3772 if (wscroll)
3774 GtkWidget *wfixed = f->output_data.x->edit_widget;
3775 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3776 gint msl;
3777 int scale = xg_get_gdk_scale ();
3779 top /= scale;
3780 left /= scale;
3781 height /= scale;
3782 left -= (scale - 1) * ((width / scale) >> 1);
3784 /* Clear out old position. */
3785 int oldx = -1, oldy = -1, oldw, oldh;
3786 if (gtk_widget_get_parent (wparent) == wfixed)
3788 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3789 "x", &oldx, "y", &oldy, NULL);
3790 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3793 /* Move and resize to new values. */
3794 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3795 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3796 if (msl > height)
3798 /* No room. Hide scroll bar as some themes output a warning if
3799 the height is less than the min size. */
3800 gtk_widget_hide (wparent);
3801 gtk_widget_hide (wscroll);
3803 else
3805 gtk_widget_show_all (wparent);
3806 gtk_widget_set_size_request (wscroll, width, height);
3808 #ifndef USE_CAIRO
3809 gtk_widget_queue_draw (wfixed);
3810 gdk_window_process_all_updates ();
3811 #endif
3812 if (oldx != -1 && oldw > 0 && oldh > 0)
3814 /* Clear under old scroll bar position. This must be done after
3815 the gtk_widget_queue_draw and gdk_window_process_all_updates
3816 above. */
3817 oldw += (scale - 1) * oldw;
3818 oldx -= (scale - 1) * oldw;
3819 x_clear_area (f, oldx, oldy, oldw, oldh);
3822 /* GTK does not redraw until the main loop is entered again, but
3823 if there are no X events pending we will not enter it. So we sync
3824 here to get some events. */
3826 x_sync (f);
3827 SET_FRAME_GARBAGED (f);
3828 cancel_mouse_face (f);
3833 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3834 in frame F.
3835 TOP/LEFT are the new pixel positions where the bar shall appear.
3836 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3838 void
3839 xg_update_horizontal_scrollbar_pos (struct frame *f,
3840 ptrdiff_t scrollbar_id,
3841 int top,
3842 int left,
3843 int width,
3844 int height)
3847 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3849 if (wscroll)
3851 GtkWidget *wfixed = f->output_data.x->edit_widget;
3852 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3853 gint msl;
3855 /* Clear out old position. */
3856 int oldx = -1, oldy = -1, oldw, oldh;
3857 if (gtk_widget_get_parent (wparent) == wfixed)
3859 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3860 "x", &oldx, "y", &oldy, NULL);
3861 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3864 /* Move and resize to new values. */
3865 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3866 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3867 if (msl > width)
3869 /* No room. Hide scroll bar as some themes output a warning if
3870 the width is less than the min size. */
3871 gtk_widget_hide (wparent);
3872 gtk_widget_hide (wscroll);
3874 else
3876 gtk_widget_show_all (wparent);
3877 gtk_widget_set_size_request (wscroll, width, height);
3879 gtk_widget_queue_draw (wfixed);
3880 gdk_window_process_all_updates ();
3881 if (oldx != -1 && oldw > 0 && oldh > 0)
3882 /* Clear under old scroll bar position. This must be done after
3883 the gtk_widget_queue_draw and gdk_window_process_all_updates
3884 above. */
3885 x_clear_area (f,
3886 oldx, oldy, oldw, oldh);
3888 /* GTK does not redraw until the main loop is entered again, but
3889 if there are no X events pending we will not enter it. So we sync
3890 here to get some events. */
3892 x_sync (f);
3893 SET_FRAME_GARBAGED (f);
3894 cancel_mouse_face (f);
3899 /* Get the current value of the range, truncated to an integer. */
3901 static int
3902 int_gtk_range_get_value (GtkRange *range)
3904 return gtk_range_get_value (range);
3908 /* Set the thumb size and position of scroll bar BAR. We are currently
3909 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3911 void
3912 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3913 int portion,
3914 int position,
3915 int whole)
3917 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3919 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3921 if (wscroll && bar->dragging == -1)
3923 GtkAdjustment *adj;
3924 gdouble shown;
3925 gdouble top;
3926 int size, value;
3927 int old_size;
3928 int new_step;
3929 bool changed = 0;
3931 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3933 if (scroll_bar_adjust_thumb_portion_p)
3935 /* We do the same as for MOTIF in xterm.c, use 30 chars per
3936 line rather than the real portion value. This makes the
3937 thumb less likely to resize and that looks better. */
3938 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3940 /* When the thumb is at the bottom, position == whole.
3941 So we need to increase `whole' to make space for the thumb. */
3942 whole += portion;
3945 if (whole <= 0)
3946 top = 0, shown = 1;
3947 else
3949 top = (gdouble) position / whole;
3950 shown = (gdouble) portion / whole;
3953 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
3954 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
3956 /* Assume all lines are of equal size. */
3957 new_step = size / max (1, FRAME_LINES (f));
3959 old_size = gtk_adjustment_get_page_size (adj);
3960 if (old_size != size)
3962 int old_step = gtk_adjustment_get_step_increment (adj);
3963 if (old_step != new_step)
3965 gtk_adjustment_set_page_size (adj, size);
3966 gtk_adjustment_set_step_increment (adj, new_step);
3967 /* Assume a page increment is about 95% of the page size */
3968 gtk_adjustment_set_page_increment (adj, size - size / 20);
3969 changed = 1;
3973 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3975 block_input ();
3977 /* gtk_range_set_value invokes the callback. Set
3978 ignore_gtk_scrollbar to make the callback do nothing */
3979 xg_ignore_gtk_scrollbar = 1;
3981 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3982 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3983 else if (changed)
3984 gtk_adjustment_changed (adj);
3986 xg_ignore_gtk_scrollbar = 0;
3988 unblock_input ();
3993 /* Set the thumb size and position of horizontal scroll bar BAR. We are
3994 currently displaying PORTION out of a whole WHOLE, and our position
3995 POSITION. */
3996 void
3997 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar *bar,
3998 int portion,
3999 int position,
4000 int whole)
4002 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
4004 if (wscroll && bar->dragging == -1)
4006 GtkAdjustment *adj;
4007 int lower = 0;
4008 int upper = max (whole - 1, 0);
4009 int pagesize = min (upper, max (portion, 0));
4010 int value = max (0, min (position, upper - pagesize));
4011 /* These should be set to something more <portion, whole>
4012 related. */
4013 int page_increment = 4;
4014 int step_increment = 1;
4016 block_input ();
4017 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
4018 gtk_adjustment_configure (adj, (gdouble) value, (gdouble) lower,
4019 (gdouble) upper, (gdouble) step_increment,
4020 (gdouble) page_increment, (gdouble) pagesize);
4021 gtk_adjustment_changed (adj);
4022 unblock_input ();
4026 /* Return true if EVENT is for a scroll bar in frame F.
4027 When the same X window is used for several Gtk+ widgets, we cannot
4028 say for sure based on the X window alone if an event is for the
4029 frame. This function does additional checks. */
4031 bool
4032 xg_event_is_for_scrollbar (struct frame *f, const XEvent *event)
4034 bool retval = 0;
4036 if (f && event->type == ButtonPress && event->xbutton.button < 4)
4038 /* Check if press occurred outside the edit widget. */
4039 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
4040 GdkWindow *gwin;
4041 #ifdef HAVE_GTK3
4042 GdkDevice *gdev = gdk_device_manager_get_client_pointer
4043 (gdk_display_get_device_manager (gdpy));
4044 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
4045 #else
4046 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
4047 #endif
4048 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
4050 else if (f
4051 && ((event->type == ButtonRelease && event->xbutton.button < 4)
4052 || event->type == MotionNotify))
4054 /* If we are releasing or moving the scroll bar, it has the grab. */
4055 GtkWidget *w = gtk_grab_get_current ();
4056 retval = w != 0 && GTK_IS_SCROLLBAR (w);
4059 return retval;
4063 /***********************************************************************
4064 Printing
4065 ***********************************************************************/
4066 #ifdef USE_CAIRO
4067 static GtkPrintSettings *print_settings = NULL;
4068 static GtkPageSetup *page_setup = NULL;
4070 void
4071 xg_page_setup_dialog (void)
4073 GtkPageSetup *new_page_setup = NULL;
4075 if (print_settings == NULL)
4076 print_settings = gtk_print_settings_new ();
4077 new_page_setup = gtk_print_run_page_setup_dialog (NULL, page_setup,
4078 print_settings);
4079 if (page_setup)
4080 g_object_unref (page_setup);
4081 page_setup = new_page_setup;
4084 Lisp_Object
4085 xg_get_page_setup (void)
4087 GtkPageOrientation orientation;
4088 Lisp_Object orientation_symbol;
4090 if (page_setup == NULL)
4091 page_setup = gtk_page_setup_new ();
4092 orientation = gtk_page_setup_get_orientation (page_setup);
4093 if (orientation == GTK_PAGE_ORIENTATION_PORTRAIT)
4094 orientation_symbol = Qportrait;
4095 else if (orientation == GTK_PAGE_ORIENTATION_LANDSCAPE)
4096 orientation_symbol = Qlandscape;
4097 else if (orientation == GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT)
4098 orientation_symbol = Qreverse_portrait;
4099 else if (orientation == GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE)
4100 orientation_symbol = Qreverse_landscape;
4102 return listn (CONSTYPE_HEAP, 7,
4103 Fcons (Qorientation, orientation_symbol),
4104 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4105 Fcons (Qwidth,
4106 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width)),
4107 Fcons (Qheight,
4108 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height)),
4109 Fcons (Qleft_margin,
4110 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin)),
4111 Fcons (Qright_margin,
4112 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin)),
4113 Fcons (Qtop_margin,
4114 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin)),
4115 Fcons (Qbottom_margin,
4116 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin))
4117 #undef MAKE_FLOAT_PAGE_SETUP
4121 static void
4122 draw_page (GtkPrintOperation *operation, GtkPrintContext *context,
4123 gint page_nr, gpointer user_data)
4125 Lisp_Object frames = *((Lisp_Object *) user_data);
4126 struct frame *f = XFRAME (Fnth (make_number (page_nr), frames));
4127 cairo_t *cr = gtk_print_context_get_cairo_context (context);
4129 x_cr_draw_frame (cr, f);
4132 void
4133 xg_print_frames_dialog (Lisp_Object frames)
4135 GtkPrintOperation *print;
4136 GtkPrintOperationResult res;
4138 print = gtk_print_operation_new ();
4139 if (print_settings != NULL)
4140 gtk_print_operation_set_print_settings (print, print_settings);
4141 if (page_setup != NULL)
4142 gtk_print_operation_set_default_page_setup (print, page_setup);
4143 gtk_print_operation_set_n_pages (print, XINT (Flength (frames)));
4144 g_signal_connect (print, "draw-page", G_CALLBACK (draw_page), &frames);
4145 res = gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
4146 NULL, NULL);
4147 if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
4149 if (print_settings != NULL)
4150 g_object_unref (print_settings);
4151 print_settings =
4152 g_object_ref (gtk_print_operation_get_print_settings (print));
4154 g_object_unref (print);
4157 #endif /* USE_CAIRO */
4161 /***********************************************************************
4162 Tool bar functions
4163 ***********************************************************************/
4164 /* The key for the data we put in the GtkImage widgets. The data is
4165 the image used by Emacs. We use this to see if we need to update
4166 the GtkImage with a new image. */
4167 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4169 /* The key for storing the latest modifiers so the activate callback can
4170 get them. */
4171 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4173 /* The key for the data we put in the GtkImage widgets. The data is
4174 the stock name used by Emacs. We use this to see if we need to update
4175 the GtkImage with a new image. */
4176 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4178 /* As above, but this is used for named theme widgets, as opposed to
4179 stock items. */
4180 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4182 /* Callback function invoked when a tool bar item is pressed.
4183 W is the button widget in the tool bar that got pressed,
4184 CLIENT_DATA is an integer that is the index of the button in the
4185 tool bar. 0 is the first button. */
4187 static gboolean
4188 xg_tool_bar_button_cb (GtkWidget *widget,
4189 GdkEventButton *event,
4190 gpointer user_data)
4192 intptr_t state = event->state;
4193 gpointer ptr = (gpointer) state;
4194 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
4195 return FALSE;
4199 /* Callback function invoked when a tool bar item is pressed.
4200 W is the button widget in the tool bar that got pressed,
4201 CLIENT_DATA is an integer that is the index of the button in the
4202 tool bar. 0 is the first button. */
4204 static void
4205 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
4207 intptr_t idx = (intptr_t) client_data;
4208 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
4209 intptr_t mod = (intptr_t) gmod;
4211 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4212 Lisp_Object key, frame;
4213 struct input_event event;
4214 EVENT_INIT (event);
4216 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4217 return;
4219 idx *= TOOL_BAR_ITEM_NSLOTS;
4221 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
4222 XSETFRAME (frame, f);
4224 /* We generate two events here. The first one is to set the prefix
4225 to `(tool_bar)', see keyboard.c. */
4226 event.kind = TOOL_BAR_EVENT;
4227 event.frame_or_window = frame;
4228 event.arg = frame;
4229 kbd_buffer_store_event (&event);
4231 event.kind = TOOL_BAR_EVENT;
4232 event.frame_or_window = frame;
4233 event.arg = key;
4234 /* Convert between the modifier bits GDK uses and the modifier bits
4235 Emacs uses. This assumes GDK and X masks are the same, which they are when
4236 this is written. */
4237 event.modifiers = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), mod);
4238 kbd_buffer_store_event (&event);
4240 /* Return focus to the frame after we have clicked on a detached
4241 tool bar button. */
4242 x_focus_frame (f);
4245 static GtkWidget *
4246 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4248 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4249 GtkWidget *c1 = clist->data;
4250 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4252 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4253 g_list_free (clist);
4254 return GTK_IS_LABEL (c1) ? c1 : c2;
4258 /* This callback is called when the mouse enters or leaves a tool bar item.
4259 It is used for displaying and hiding the help text.
4260 W is the tool bar item, a button.
4261 EVENT is either an enter event or leave event.
4262 CLIENT_DATA is an integer that is the index of the button in the
4263 tool bar. 0 is the first button.
4265 Returns FALSE to tell GTK to keep processing this event. */
4267 static gboolean
4268 xg_tool_bar_help_callback (GtkWidget *w,
4269 GdkEventCrossing *event,
4270 gpointer client_data)
4272 intptr_t idx = (intptr_t) client_data;
4273 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4274 Lisp_Object help, frame;
4276 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4277 return FALSE;
4279 if (event->type == GDK_ENTER_NOTIFY)
4281 idx *= TOOL_BAR_ITEM_NSLOTS;
4282 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4284 if (NILP (help))
4285 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4287 else
4288 help = Qnil;
4290 XSETFRAME (frame, f);
4291 kbd_buffer_store_help_event (frame, help);
4293 return FALSE;
4297 /* This callback is called when a tool bar item shall be redrawn.
4298 It modifies the expose event so that the GtkImage widget redraws the
4299 whole image. This to overcome a bug that makes GtkImage draw the image
4300 in the wrong place when it tries to redraw just a part of the image.
4301 W is the GtkImage to be redrawn.
4302 EVENT is the expose event for W.
4303 CLIENT_DATA is unused.
4305 Returns FALSE to tell GTK to keep processing this event. */
4307 #ifndef HAVE_GTK3
4308 static gboolean
4309 xg_tool_bar_item_expose_callback (GtkWidget *w,
4310 GdkEventExpose *event,
4311 gpointer client_data)
4313 gint width, height;
4315 gdk_drawable_get_size (event->window, &width, &height);
4316 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4317 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4319 event->area.x = max (0, event->area.x);
4320 event->area.y = max (0, event->area.y);
4322 event->area.width = max (width, event->area.width);
4323 event->area.height = max (height, event->area.height);
4325 return FALSE;
4327 #endif
4329 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4330 #define toolbar_set_orientation(w, o) \
4331 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4332 #else
4333 #define toolbar_set_orientation(w, o) \
4334 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4335 #endif
4337 /* Attach a tool bar to frame F. */
4339 static void
4340 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4342 struct x_output *x = f->output_data.x;
4343 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4344 GtkWidget *top_widget = x->toolbar_widget;
4346 toolbar_set_orientation (x->toolbar_widget,
4347 into_hbox
4348 ? GTK_ORIENTATION_VERTICAL
4349 : GTK_ORIENTATION_HORIZONTAL);
4351 if (into_hbox)
4353 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4354 FALSE, FALSE, 0);
4356 if (EQ (pos, Qleft))
4357 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4358 top_widget,
4360 x->toolbar_in_hbox = true;
4362 else
4364 bool vbox_pos = x->menubar_widget != 0;
4365 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4366 FALSE, FALSE, 0);
4368 if (EQ (pos, Qtop))
4369 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4370 top_widget,
4371 vbox_pos);
4372 x->toolbar_in_hbox = false;
4374 x->toolbar_is_packed = true;
4377 static bool xg_update_tool_bar_sizes (struct frame *f);
4379 static void
4380 tb_size_cb (GtkWidget *widget,
4381 GdkRectangle *allocation,
4382 gpointer user_data)
4384 /* When tool bar is created it has one preferred size. But when size is
4385 allocated between widgets, it may get another. So we must update
4386 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4387 struct frame *f = user_data;
4389 if (xg_update_tool_bar_sizes (f))
4391 frame_size_history_add (f, Qtb_size_cb, 0, 0, Qnil);
4392 adjust_frame_size (f, -1, -1, 5, 0, Qtool_bar_lines);
4396 /* Create a tool bar for frame F. */
4398 static void
4399 xg_create_tool_bar (struct frame *f)
4401 struct x_output *x = f->output_data.x;
4402 #if GTK_CHECK_VERSION (3, 3, 6)
4403 GtkStyleContext *gsty;
4404 #endif
4405 struct xg_frame_tb_info *tbinfo
4406 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4407 TB_INFO_KEY);
4408 if (! tbinfo)
4410 tbinfo = xmalloc (sizeof (*tbinfo));
4411 tbinfo->last_tool_bar = Qnil;
4412 tbinfo->style = Qnil;
4413 tbinfo->hmargin = tbinfo->vmargin = 0;
4414 tbinfo->dir = GTK_TEXT_DIR_NONE;
4415 tbinfo->n_last_items = 0;
4416 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4417 TB_INFO_KEY,
4418 tbinfo);
4421 x->toolbar_widget = gtk_toolbar_new ();
4423 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4425 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4426 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4427 g_signal_connect (x->toolbar_widget, "size-allocate",
4428 G_CALLBACK (tb_size_cb), f);
4429 #if GTK_CHECK_VERSION (3, 3, 6)
4430 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4431 gtk_style_context_add_class (gsty, "primary-toolbar");
4432 #endif
4436 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4438 /* Find the right-to-left image named by RTL in the tool bar images for F.
4439 Returns IMAGE if RTL is not found. */
4441 static Lisp_Object
4442 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4444 int i;
4445 Lisp_Object file, rtl_name;
4447 rtl_name = Ffile_name_nondirectory (rtl);
4449 for (i = 0; i < f->n_tool_bar_items; ++i)
4451 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4452 if (!NILP (file = file_for_image (rtl_image)))
4454 file = call1 (intern ("file-name-sans-extension"),
4455 Ffile_name_nondirectory (file));
4456 if (! NILP (Fequal (file, rtl_name)))
4458 image = rtl_image;
4459 break;
4464 return image;
4467 static GtkToolItem *
4468 xg_make_tool_item (struct frame *f,
4469 GtkWidget *wimage,
4470 GtkWidget **wbutton,
4471 const char *label,
4472 int i, bool horiz, bool text_image)
4474 GtkToolItem *ti = gtk_tool_item_new ();
4475 GtkWidget *vb = gtk_box_new (horiz
4476 ? GTK_ORIENTATION_HORIZONTAL
4477 : GTK_ORIENTATION_VERTICAL,
4479 GtkWidget *wb = gtk_button_new ();
4480 /* The eventbox is here so we can have tooltips on disabled items. */
4481 GtkWidget *weventbox = gtk_event_box_new ();
4482 #if GTK_CHECK_VERSION (3, 3, 6)
4483 GtkCssProvider *css_prov = gtk_css_provider_new ();
4484 GtkStyleContext *gsty;
4486 gtk_css_provider_load_from_data (css_prov,
4487 "GtkEventBox {"
4488 " background-color: transparent;"
4489 "}",
4490 -1, NULL);
4492 gsty = gtk_widget_get_style_context (weventbox);
4493 gtk_style_context_add_provider (gsty,
4494 GTK_STYLE_PROVIDER (css_prov),
4495 GTK_STYLE_PROVIDER_PRIORITY_USER);
4496 g_object_unref (css_prov);
4497 #endif
4499 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4501 if (wimage && !text_image)
4502 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4503 if (label)
4504 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4505 if (wimage && text_image)
4506 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4508 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4509 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4510 gtk_container_add (GTK_CONTAINER (wb), vb);
4511 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4512 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4514 if (wimage || label)
4516 intptr_t ii = i;
4517 gpointer gi = (gpointer) ii;
4519 g_signal_connect (G_OBJECT (wb), "clicked",
4520 G_CALLBACK (xg_tool_bar_callback),
4521 gi);
4523 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4525 #ifndef HAVE_GTK3
4526 /* Catch expose events to overcome an annoying redraw bug, see
4527 comment for xg_tool_bar_item_expose_callback. */
4528 g_signal_connect (G_OBJECT (ti),
4529 "expose-event",
4530 G_CALLBACK (xg_tool_bar_item_expose_callback),
4532 #endif
4533 gtk_tool_item_set_homogeneous (ti, FALSE);
4535 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4536 no distinction based on modifiers in the activate callback,
4537 so we have to do it ourselves. */
4538 g_signal_connect (wb, "button-release-event",
4539 G_CALLBACK (xg_tool_bar_button_cb),
4540 NULL);
4542 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4544 /* Use enter/leave notify to show help. We use the events
4545 rather than the GtkButton specific signals "enter" and
4546 "leave", so we can have only one callback. The event
4547 will tell us what kind of event it is. */
4548 g_signal_connect (G_OBJECT (weventbox),
4549 "enter-notify-event",
4550 G_CALLBACK (xg_tool_bar_help_callback),
4551 gi);
4552 g_signal_connect (G_OBJECT (weventbox),
4553 "leave-notify-event",
4554 G_CALLBACK (xg_tool_bar_help_callback),
4555 gi);
4558 if (wbutton) *wbutton = wb;
4560 return ti;
4563 static bool
4564 is_box_type (GtkWidget *vb, bool is_horizontal)
4566 #ifdef HAVE_GTK3
4567 bool ret = 0;
4568 if (GTK_IS_BOX (vb))
4570 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4571 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4572 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4574 return ret;
4575 #else
4576 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4577 #endif
4581 static bool
4582 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4583 const char *icon_name, const struct image *img,
4584 const char *label, bool horiz)
4586 gpointer old;
4587 GtkWidget *wimage;
4588 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4589 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4591 /* Check if the tool icon matches. */
4592 if (stock_name && wimage)
4594 old = g_object_get_data (G_OBJECT (wimage),
4595 XG_TOOL_BAR_STOCK_NAME);
4596 if (!old || strcmp (old, stock_name))
4597 return 1;
4599 else if (icon_name && wimage)
4601 old = g_object_get_data (G_OBJECT (wimage),
4602 XG_TOOL_BAR_ICON_NAME);
4603 if (!old || strcmp (old, icon_name))
4604 return 1;
4606 else if (wimage)
4608 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4609 XG_TOOL_BAR_IMAGE_DATA);
4610 Pixmap old_img = (Pixmap) gold_img;
4611 if (old_img != img->pixmap)
4612 return 1;
4615 /* Check button configuration and label. */
4616 if (is_box_type (vb, horiz)
4617 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4618 return 1;
4620 /* Ensure label is correct. */
4621 if (label && wlbl)
4622 gtk_label_set_text (GTK_LABEL (wlbl), label);
4623 return 0;
4626 static bool
4627 xg_update_tool_bar_sizes (struct frame *f)
4629 struct x_output *x = f->output_data.x;
4630 GtkRequisition req;
4631 int nl = 0, nr = 0, nt = 0, nb = 0;
4632 GtkWidget *top_widget = x->toolbar_widget;
4634 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4635 if (x->toolbar_in_hbox)
4637 int pos;
4638 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4639 top_widget,
4640 "position", &pos, NULL);
4641 if (pos == 0) nl = req.width;
4642 else nr = req.width;
4644 else
4646 int pos;
4647 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4648 top_widget,
4649 "position", &pos, NULL);
4650 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4651 else nb = req.height;
4654 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4655 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4656 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4657 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4659 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4660 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4661 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4662 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4663 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4664 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4666 return true;
4668 else
4669 return false;
4672 static char *
4673 find_icon_from_name (char *name,
4674 GtkIconTheme *icon_theme,
4675 char **icon_name)
4677 #if ! GTK_CHECK_VERSION (3, 10, 0)
4678 GtkStockItem stock_item;
4679 #endif
4681 if (name[0] == 'n' && name[1] == ':')
4683 *icon_name = name + 2;
4684 name = NULL;
4686 if (! gtk_icon_theme_has_icon (icon_theme, *icon_name))
4687 *icon_name = NULL;
4690 #if ! GTK_CHECK_VERSION (3, 10, 0)
4691 else if (gtk_stock_lookup (name, &stock_item))
4692 *icon_name = NULL;
4693 #endif
4694 else if (gtk_icon_theme_has_icon (icon_theme, name))
4696 *icon_name = name;
4697 name = NULL;
4699 else
4701 name = NULL;
4702 *icon_name = NULL;
4705 return name;
4709 /* Update the tool bar for frame F. Add new buttons and remove old. */
4711 void
4712 update_frame_tool_bar (struct frame *f)
4714 int i, j;
4715 struct x_output *x = f->output_data.x;
4716 int hmargin = 0, vmargin = 0;
4717 GtkToolbar *wtoolbar;
4718 GtkToolItem *ti;
4719 GtkTextDirection dir;
4720 Lisp_Object style;
4721 bool text_image, horiz;
4722 struct xg_frame_tb_info *tbinfo;
4723 GdkScreen *screen;
4724 GtkIconTheme *icon_theme;
4727 if (! FRAME_GTK_WIDGET (f))
4728 return;
4730 block_input ();
4732 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4734 hmargin = XFASTINT (Vtool_bar_button_margin);
4735 vmargin = XFASTINT (Vtool_bar_button_margin);
4737 else if (CONSP (Vtool_bar_button_margin))
4739 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4740 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4742 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4743 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4746 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4747 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4748 i.e. zero. This means that margins less than
4749 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4750 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4751 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4753 if (! x->toolbar_widget)
4754 xg_create_tool_bar (f);
4756 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4757 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4759 style = Ftool_bar_get_system_style ();
4760 screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4761 icon_theme = gtk_icon_theme_get_for_screen (screen);
4763 /* Are we up to date? */
4764 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4765 TB_INFO_KEY);
4767 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4768 && tbinfo->n_last_items == f->n_tool_bar_items
4769 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4770 && tbinfo->dir == dir
4771 && ! NILP (Fequal (tbinfo->style, style))
4772 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4774 unblock_input ();
4775 return;
4778 tbinfo->last_tool_bar = f->tool_bar_items;
4779 tbinfo->n_last_items = f->n_tool_bar_items;
4780 tbinfo->style = style;
4781 tbinfo->hmargin = hmargin;
4782 tbinfo->vmargin = vmargin;
4783 tbinfo->dir = dir;
4785 text_image = EQ (style, Qtext_image_horiz);
4786 horiz = EQ (style, Qboth_horiz) || text_image;
4788 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4790 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4791 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4792 int idx;
4793 ptrdiff_t img_id;
4794 int icon_size = 0;
4795 struct image *img = NULL;
4796 Lisp_Object image;
4797 Lisp_Object stock = Qnil;
4798 char *stock_name = NULL;
4799 char *icon_name = NULL;
4800 Lisp_Object rtl;
4801 GtkWidget *wbutton = NULL;
4802 Lisp_Object specified_file;
4803 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4804 const char *label
4805 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4806 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4807 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4808 : "";
4810 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4812 /* If this is a separator, use a gtk separator item. */
4813 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4815 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4817 if (ti)
4818 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4819 GTK_WIDGET (ti));
4820 ti = gtk_separator_tool_item_new ();
4821 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4823 j++;
4824 continue;
4827 /* Otherwise, the tool-bar item is an ordinary button. */
4829 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4831 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4832 ti = NULL;
4835 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4837 /* Ignore invalid image specifications. */
4838 image = PROP (TOOL_BAR_ITEM_IMAGES);
4839 if (!valid_image_p (image))
4841 if (ti)
4842 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4843 GTK_WIDGET (ti));
4844 continue;
4847 specified_file = file_for_image (image);
4848 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4849 stock = call1 (Qx_gtk_map_stock, specified_file);
4851 if (CONSP (stock))
4853 Lisp_Object tem;
4854 for (tem = stock; CONSP (tem); tem = XCDR (tem))
4855 if (! NILP (tem) && STRINGP (XCAR (tem)))
4857 stock_name = find_icon_from_name (SSDATA (XCAR (tem)),
4858 icon_theme,
4859 &icon_name);
4860 if (stock_name || icon_name) break;
4863 else if (STRINGP (stock))
4865 stock_name = find_icon_from_name (SSDATA (stock),
4866 icon_theme,
4867 &icon_name);
4870 if (stock_name || icon_name)
4871 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4873 if (stock_name == NULL && icon_name == NULL)
4875 /* No stock image, or stock item not known. Try regular
4876 image. If image is a vector, choose it according to the
4877 button state. */
4878 if (dir == GTK_TEXT_DIR_RTL
4879 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4880 && STRINGP (rtl))
4881 image = find_rtl_image (f, image, rtl);
4883 if (VECTORP (image))
4885 if (enabled_p)
4886 idx = (selected_p
4887 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4888 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4889 else
4890 idx = (selected_p
4891 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4892 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4894 eassert (ASIZE (image) >= idx);
4895 image = AREF (image, idx);
4897 else
4898 idx = -1;
4900 img_id = lookup_image (f, image);
4901 img = IMAGE_FROM_ID (f, img_id);
4902 prepare_image_for_display (f, img);
4904 if (img->load_failed_p || img->pixmap == None)
4906 if (ti)
4907 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4908 GTK_WIDGET (ti));
4909 continue;
4913 /* If there is an existing widget, check if it's stale; if so,
4914 remove it and make a new tool item from scratch. */
4915 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4916 img, label, horiz))
4918 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4919 GTK_WIDGET (ti));
4920 ti = NULL;
4923 if (ti == NULL)
4925 GtkWidget *w;
4927 /* Save the image so we can see if an update is needed the
4928 next time we call xg_tool_item_match_p. */
4929 if (EQ (style, Qtext))
4930 w = NULL;
4931 else if (stock_name)
4934 #if GTK_CHECK_VERSION (3, 10, 0)
4935 w = gtk_image_new_from_icon_name (stock_name, icon_size);
4936 #else
4937 w = gtk_image_new_from_stock (stock_name, icon_size);
4938 #endif
4939 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4940 (gpointer) xstrdup (stock_name),
4941 (GDestroyNotify) xfree);
4943 else if (icon_name)
4945 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4946 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4947 (gpointer) xstrdup (icon_name),
4948 (GDestroyNotify) xfree);
4950 else
4952 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4953 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4954 (gpointer)img->pixmap);
4957 #if GTK_CHECK_VERSION (3, 14, 0)
4958 if (w)
4960 gtk_widget_set_margin_start (w, hmargin);
4961 gtk_widget_set_margin_end (w, hmargin);
4962 gtk_widget_set_margin_top (w, vmargin);
4963 gtk_widget_set_margin_bottom (w, vmargin);
4965 #else
4966 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4967 #endif
4968 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4969 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4972 #undef PROP
4974 gtk_widget_set_sensitive (wbutton, enabled_p);
4975 j++;
4978 /* Remove buttons not longer needed. */
4981 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4982 if (ti)
4983 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4984 } while (ti != NULL);
4986 if (f->n_tool_bar_items != 0)
4988 if (! x->toolbar_is_packed)
4989 xg_pack_tool_bar (f, FRAME_TOOL_BAR_POSITION (f));
4990 gtk_widget_show_all (x->toolbar_widget);
4991 if (xg_update_tool_bar_sizes (f))
4993 int inhibit
4994 = ((f->after_make_frame
4995 && !f->tool_bar_resized
4996 && (EQ (frame_inhibit_implied_resize, Qt)
4997 || (CONSP (frame_inhibit_implied_resize)
4998 && !NILP (Fmemq (Qtool_bar_lines,
4999 frame_inhibit_implied_resize))))
5000 /* This will probably fail to DTRT in the
5001 fullheight/-width cases. */
5002 && NILP (get_frame_param (f, Qfullscreen)))
5004 : 2);
5006 frame_size_history_add (f, Qupdate_frame_tool_bar, 0, 0, Qnil);
5007 adjust_frame_size (f, -1, -1, inhibit, 0, Qtool_bar_lines);
5009 f->tool_bar_resized = f->tool_bar_redisplayed;
5012 unblock_input ();
5015 /* Deallocate all resources for the tool bar on frame F.
5016 Remove the tool bar. */
5018 void
5019 free_frame_tool_bar (struct frame *f)
5021 struct x_output *x = f->output_data.x;
5023 if (x->toolbar_widget)
5025 struct xg_frame_tb_info *tbinfo;
5026 GtkWidget *top_widget = x->toolbar_widget;
5028 block_input ();
5029 if (x->toolbar_is_packed)
5031 if (x->toolbar_in_hbox)
5032 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5033 top_widget);
5034 else
5035 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5036 top_widget);
5038 else
5039 gtk_widget_destroy (x->toolbar_widget);
5041 x->toolbar_widget = 0;
5042 x->toolbar_widget = 0;
5043 x->toolbar_is_packed = false;
5044 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
5045 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
5047 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5048 TB_INFO_KEY);
5049 if (tbinfo)
5051 xfree (tbinfo);
5052 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
5053 TB_INFO_KEY,
5054 NULL);
5057 frame_size_history_add (f, Qfree_frame_tool_bar, 0, 0, Qnil);
5058 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5060 unblock_input ();
5064 void
5065 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
5067 struct x_output *x = f->output_data.x;
5068 GtkWidget *top_widget = x->toolbar_widget;
5070 if (! x->toolbar_widget || ! top_widget)
5071 return;
5073 block_input ();
5074 g_object_ref (top_widget);
5075 if (x->toolbar_is_packed)
5077 if (x->toolbar_in_hbox)
5078 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5079 top_widget);
5080 else
5081 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5082 top_widget);
5085 xg_pack_tool_bar (f, pos);
5086 g_object_unref (top_widget);
5088 if (xg_update_tool_bar_sizes (f))
5090 frame_size_history_add (f, Qxg_change_toolbar_position, 0, 0, Qnil);
5091 adjust_frame_size (f, -1, -1, 2, 0, Qtool_bar_lines);
5095 unblock_input ();
5100 /***********************************************************************
5101 Initializing
5102 ***********************************************************************/
5103 void
5104 xg_initialize (void)
5106 GtkBindingSet *binding_set;
5107 GtkSettings *settings;
5109 #if HAVE_XFT
5110 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5111 we keep it permanently linked in. */
5112 XftInit (0);
5113 #endif
5115 gdpy_def = NULL;
5116 xg_ignore_gtk_scrollbar = 0;
5117 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5118 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5120 id_to_widget.max_size = id_to_widget.used = 0;
5121 id_to_widget.widgets = 0;
5123 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5124 (gdk_display_get_default ()));
5125 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5126 bindings. It doesn't seem to be any way to remove properties,
5127 so we set it to "" which in means "no key". */
5128 gtk_settings_set_string_property (settings,
5129 "gtk-menu-bar-accel",
5131 EMACS_CLASS);
5133 /* Make GTK text input widgets use Emacs style keybindings. This is
5134 Emacs after all. */
5135 gtk_settings_set_string_property (settings,
5136 "gtk-key-theme-name",
5137 "Emacs",
5138 EMACS_CLASS);
5140 /* Make dialogs close on C-g. Since file dialog inherits from
5141 dialog, this works for them also. */
5142 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
5143 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5144 "close", 0);
5146 /* Make menus close on C-g. */
5147 binding_set = gtk_binding_set_by_class (g_type_class_ref
5148 (GTK_TYPE_MENU_SHELL));
5149 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5150 "cancel", 0);
5151 update_theme_scrollbar_width ();
5152 update_theme_scrollbar_height ();
5154 #ifdef HAVE_FREETYPE
5155 x_last_font_name = NULL;
5156 #endif
5159 #endif /* USE_GTK */