1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2017 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
29 #include "dispextern.h"
33 #include "blockinput.h"
36 #include "termhooks.h"
40 #include <gdk/gdkkeysyms.h>
43 #include <X11/Xft/Xft.h>
48 #include "emacsgtkfixed.h"
52 #include <X11/extensions/Xdbe.h>
55 #ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
56 #define gtk_widget_set_has_window(w, b) \
57 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
59 #ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
60 #define gtk_dialog_get_action_area(w) ((w)->action_area)
61 #define gtk_dialog_get_content_area(w) ((w)->vbox)
63 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
64 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
66 #ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
67 #define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
68 #define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
69 #define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
70 #define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
72 #if GTK_CHECK_VERSION (2, 12, 0)
73 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
75 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
78 #if ! GTK_CHECK_VERSION (2, 14, 0)
79 #define gtk_adjustment_configure(adj, xvalue, xlower, \
80 xupper, xstep_increment, \
81 xpage_increment, xpagesize) \
83 adj->lower = xlower; \
84 adj->upper = xupper; \
85 adj->page_size = xpagesize; \
86 gtk_adjustment_set_value (adj, xvalue); \
87 adj->page_increment = xpage_increment; \
88 adj->step_increment = xstep_increment; \
90 #endif /* < Gtk+ 2.14 */
93 #if GTK_CHECK_VERSION (3, 2, 0)
94 #define USE_NEW_GTK_FONT_CHOOSER 1
96 #define USE_NEW_GTK_FONT_CHOOSER 0
97 #define gtk_font_chooser_dialog_new(x, y) \
98 gtk_font_selection_dialog_new (x)
99 #undef GTK_FONT_CHOOSER
100 #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
101 #define gtk_font_chooser_set_font(x, y) \
102 gtk_font_selection_dialog_set_font_name (x, y)
104 #endif /* HAVE_FREETYPE */
106 #if GTK_CHECK_VERSION (3, 10, 0)
107 #define XG_TEXT_CANCEL "Cancel"
108 #define XG_TEXT_OK "OK"
109 #define XG_TEXT_OPEN "Open"
111 #define XG_TEXT_CANCEL GTK_STOCK_CANCEL
112 #define XG_TEXT_OK GTK_STOCK_OK
113 #define XG_TEXT_OPEN GTK_STOCK_OPEN
117 #ifdef USE_GTK_TOOLTIP
118 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
120 #define gdk_window_get_geometry(w, a, b, c, d) \
121 gdk_window_get_geometry (w, a, b, c, d, 0)
122 #define gdk_x11_window_lookup_for_display(d, w) \
123 gdk_xid_table_lookup_for_display (d, w)
124 #define gtk_box_new(ori, spacing) \
125 ((ori) == GTK_ORIENTATION_HORIZONTAL \
126 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
127 #define gtk_scrollbar_new(ori, spacing) \
128 ((ori) == GTK_ORIENTATION_HORIZONTAL \
129 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
131 #define GDK_KEY_g GDK_g
133 #endif /* HAVE_GTK3 */
135 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
137 static void update_theme_scrollbar_width (void);
138 static void update_theme_scrollbar_height (void);
140 #define TB_INFO_KEY "xg_frame_tb_info"
141 struct xg_frame_tb_info
143 Lisp_Object last_tool_bar
;
146 int hmargin
, vmargin
;
147 GtkTextDirection dir
;
150 static GtkWidget
* xg_get_widget_from_map (ptrdiff_t idx
);
153 /***********************************************************************
154 Display handling functions
155 ***********************************************************************/
157 /* Keep track of the default display, or NULL if there is none. Emacs
158 may close all its displays. */
160 static GdkDisplay
*gdpy_def
;
162 /* When the GTK widget W is to be created on a display for F that
163 is not the default display, set the display for W.
164 W can be a GtkMenu or a GtkWindow widget. */
167 xg_set_screen (GtkWidget
*w
, struct frame
*f
)
169 if (FRAME_X_DISPLAY (f
) != DEFAULT_GDK_DISPLAY ())
171 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
172 GdkScreen
*gscreen
= gdk_display_get_default_screen (gdpy
);
175 gtk_menu_set_screen (GTK_MENU (w
), gscreen
);
177 gtk_window_set_screen (GTK_WINDOW (w
), gscreen
);
182 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
183 *DPY is set to NULL if the display can't be opened.
185 Returns non-zero if display could be opened, zero if display could not
186 be opened, and less than zero if the GTK version doesn't support
187 multiple displays. */
190 xg_display_open (char *display_name
, Display
**dpy
)
194 unrequest_sigio (); /* See comment in x_display_ok, xterm.c. */
195 gdpy
= gdk_display_open (display_name
);
197 if (!gdpy_def
&& gdpy
)
200 gdk_display_manager_set_default_display (gdk_display_manager_get (),
204 *dpy
= gdpy
? GDK_DISPLAY_XDISPLAY (gdpy
) : NULL
;
207 /* Scaling/HiDPI functions. */
209 xg_get_gdk_scale (void)
211 const char *sscale
= getenv ("GDK_SCALE");
215 long scale
= atol (sscale
);
217 return min (scale
, INT_MAX
);
224 xg_get_scale (struct frame
*f
)
226 #if GTK_CHECK_VERSION (3, 10, 0)
227 if (FRAME_GTK_WIDGET (f
))
228 return gtk_widget_get_scale_factor (FRAME_GTK_WIDGET (f
));
230 return xg_get_gdk_scale ();
233 /* Close display DPY. */
236 xg_display_close (Display
*dpy
)
238 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (dpy
);
240 /* If this is the default display, try to change it before closing.
241 If there is no other display to use, gdpy_def is set to NULL, and
242 the next call to xg_display_open resets the default display. */
243 if (gdk_display_get_default () == gdpy
)
245 struct x_display_info
*dpyinfo
;
246 GdkDisplay
*gdpy_new
= NULL
;
248 /* Find another display. */
249 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
250 if (dpyinfo
->display
!= dpy
)
252 gdpy_new
= gdk_x11_lookup_xdisplay (dpyinfo
->display
);
253 gdk_display_manager_set_default_display (gdk_display_manager_get (),
260 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
261 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
262 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
263 can continue running, but there will be memory leaks. */
264 g_object_run_dispose (G_OBJECT (gdpy
));
266 /* This seems to be fixed in GTK 2.10. */
267 gdk_display_close (gdpy
);
272 /***********************************************************************
274 ***********************************************************************/
276 /* Create and return the cursor to be used for popup menus and
277 scroll bars on display DPY. */
280 xg_create_default_cursor (Display
*dpy
)
282 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (dpy
);
283 return gdk_cursor_new_for_display (gdpy
, GDK_LEFT_PTR
);
286 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
289 xg_get_pixbuf_from_pix_and_mask (struct frame
*f
,
293 GdkPixbuf
*icon_buf
= 0;
296 unsigned int width
, height
, depth
, uunused
;
298 if (FRAME_DISPLAY_INFO (f
)->red_bits
!= 8)
300 XGetGeometry (FRAME_X_DISPLAY (f
), pix
, &wunused
, &iunused
, &iunused
,
301 &width
, &height
, &uunused
, &depth
);
304 XImage
*xim
= XGetImage (FRAME_X_DISPLAY (f
), pix
, 0, 0, width
, height
,
308 XImage
*xmm
= (! mask
? 0
309 : XGetImage (FRAME_X_DISPLAY (f
), mask
, 0, 0,
310 width
, height
, ~0, XYPixmap
));
311 icon_buf
= gdk_pixbuf_new (GDK_COLORSPACE_RGB
, TRUE
, 8, width
, height
);
314 guchar
*pixels
= gdk_pixbuf_get_pixels (icon_buf
);
315 int rowjunkwidth
= gdk_pixbuf_get_rowstride (icon_buf
) - width
* 4;
316 for (int y
= 0; y
< height
; y
++, pixels
+= rowjunkwidth
)
317 for (int x
= 0; x
< width
; x
++)
319 unsigned long rgb
= XGetPixel (xim
, x
, y
);
320 *pixels
++ = (rgb
>> 16) & 255;
321 *pixels
++ = (rgb
>> 8) & 255;
322 *pixels
++ = rgb
& 255;
323 *pixels
++ = xmm
&& !XGetPixel (xmm
, x
, y
) ? 0 : 255;
336 file_for_image (Lisp_Object image
)
338 Lisp_Object specified_file
= Qnil
;
341 for (tail
= XCDR (image
);
342 NILP (specified_file
) && CONSP (tail
) && CONSP (XCDR (tail
));
343 tail
= XCDR (XCDR (tail
)))
344 if (EQ (XCAR (tail
), QCfile
))
345 specified_file
= XCAR (XCDR (tail
));
347 return specified_file
;
350 /* For the image defined in IMG, make and return a GtkImage. For displays with
351 8 planes or less we must make a GdkPixbuf and apply the mask manually.
352 Otherwise the highlighting and dimming the tool bar code in GTK does
353 will look bad. For display with more than 8 planes we just use the
354 pixmap and mask directly. For monochrome displays, GTK doesn't seem
355 able to use external pixmaps, it looks bad whatever we do.
356 The image is defined on the display where frame F is.
357 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
358 If OLD_WIDGET is NULL, a new widget is constructed and returned.
359 If OLD_WIDGET is not NULL, that widget is modified. */
362 xg_get_image_for_pixmap (struct frame
*f
,
365 GtkImage
*old_widget
)
369 /* If we have a file, let GTK do all the image handling.
370 This seems to be the only way to make insensitive and activated icons
371 look good in all cases. */
372 Lisp_Object specified_file
= file_for_image (img
->spec
);
375 /* We already loaded the image once before calling this
376 function, so this only fails if the image file has been removed.
377 In that case, use the pixmap already loaded. */
379 if (STRINGP (specified_file
)
380 && STRINGP (file
= x_find_image_file (specified_file
)))
382 char *encoded_file
= SSDATA (ENCODE_FILE (file
));
384 old_widget
= GTK_IMAGE (gtk_image_new_from_file (encoded_file
));
386 gtk_image_set_from_file (old_widget
, encoded_file
);
388 return GTK_WIDGET (old_widget
);
391 /* No file, do the image handling ourselves. This will look very bad
392 on a monochrome display, and sometimes bad on all displays with
395 /* This is a workaround to make icons look good on pseudo color
396 displays. Apparently GTK expects the images to have an alpha
397 channel. If they don't, insensitive and activated icons will
398 look bad. This workaround does not work on monochrome displays,
399 and is strictly not needed on true color/static color displays (i.e.
400 16 bits and higher). But we do it anyway so we get a pixbuf that is
401 not associated with the img->pixmap. The img->pixmap may be removed
402 by clearing the image cache and then the tool bar redraw fails, since
403 Gtk+ assumes the pixmap is always there. */
404 icon_buf
= xg_get_pixbuf_from_pix_and_mask (f
, img
->pixmap
, img
->mask
);
409 old_widget
= GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf
));
411 gtk_image_set_from_pixbuf (old_widget
, icon_buf
);
413 g_object_unref (G_OBJECT (icon_buf
));
416 return GTK_WIDGET (old_widget
);
420 /* Set CURSOR on W and all widgets W contain. We must do like this
421 for scroll bars and menu because they create widgets internally,
422 and it is those widgets that are visible. */
425 xg_set_cursor (GtkWidget
*w
, GdkCursor
*cursor
)
427 GdkWindow
*window
= gtk_widget_get_window (w
);
428 GList
*children
= gdk_window_peek_children (window
);
430 gdk_window_set_cursor (window
, cursor
);
432 /* The scroll bar widget has more than one GDK window (had to look at
433 the source to figure this out), and there is no way to set cursor
434 on widgets in GTK. So we must set the cursor for all GDK windows.
437 for ( ; children
; children
= g_list_next (children
))
438 gdk_window_set_cursor (GDK_WINDOW (children
->data
), cursor
);
441 /* Insert NODE into linked LIST. */
444 xg_list_insert (xg_list_node
*list
, xg_list_node
*node
)
446 xg_list_node
*list_start
= list
->next
;
448 if (list_start
) list_start
->prev
= node
;
449 node
->next
= list_start
;
454 /* Remove NODE from linked LIST. */
457 xg_list_remove (xg_list_node
*list
, xg_list_node
*node
)
459 xg_list_node
*list_start
= list
->next
;
460 if (node
== list_start
)
462 list
->next
= node
->next
;
463 if (list
->next
) list
->next
->prev
= 0;
467 node
->prev
->next
= node
->next
;
468 if (node
->next
) node
->next
->prev
= node
->prev
;
472 /* Allocate and return a utf8 version of STR. If STR is already
473 utf8 or NULL, just return a copy of STR.
474 A new string is allocated and the caller must free the result
478 get_utf8_string (const char *str
)
482 if (!str
) return NULL
;
484 /* If not UTF-8, try current locale. */
485 if (!g_utf8_validate (str
, -1, NULL
))
486 utf8_str
= g_locale_to_utf8 (str
, -1, 0, 0, 0);
488 return g_strdup (str
);
492 /* Probably some control characters in str. Escape them. */
494 ptrdiff_t nr_bad
= 0;
497 unsigned char *p
= (unsigned char *)str
;
501 while (! (cp
= g_locale_to_utf8 ((char *)p
, -1, &bytes_read
,
502 &bytes_written
, &err
))
503 && err
->code
== G_CONVERT_ERROR_ILLEGAL_SEQUENCE
)
506 p
+= bytes_written
+1;
520 if (INT_MULTIPLY_WRAPV (nr_bad
, 4, &alloc
)
521 || INT_ADD_WRAPV (len
+ 1, alloc
, &alloc
)
523 memory_full (SIZE_MAX
);
524 up
= utf8_str
= xmalloc (alloc
);
525 p
= (unsigned char *)str
;
527 while (! (cp
= g_locale_to_utf8 ((char *)p
, -1, &bytes_read
,
528 &bytes_written
, &err
))
529 && err
->code
== G_CONVERT_ERROR_ILLEGAL_SEQUENCE
)
531 memcpy (up
, p
, bytes_written
);
533 up
+= sprintf (up
, "\\%03o", p
[bytes_written
]);
534 p
+= bytes_written
+ 1;
553 /* Check for special colors used in face spec for region face.
554 The colors are fetched from the Gtk+ theme.
555 Return true if color was found, false if not. */
558 xg_check_special_colors (struct frame
*f
,
559 const char *color_name
,
563 bool get_bg
= strcmp ("gtk_selection_bg_color", color_name
) == 0;
564 bool get_fg
= !get_bg
&& strcmp ("gtk_selection_fg_color", color_name
) == 0;
566 if (! FRAME_GTK_WIDGET (f
) || ! (get_bg
|| get_fg
))
572 GtkStyleContext
*gsty
573 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f
));
575 char buf
[sizeof "rgb://rrrr/gggg/bbbb"];
576 int state
= GTK_STATE_FLAG_SELECTED
|GTK_STATE_FLAG_FOCUSED
;
578 gtk_style_context_get_color (gsty
, state
, &col
);
582 /* FIXME: Retrieving the background color is deprecated in
583 GTK+ 3.16. New versions of GTK+ don’t use the concept of a
584 single background color any more, so we shouldn’t query for
586 gtk_style_context_get (gsty
, state
,
587 GTK_STYLE_PROPERTY_BACKGROUND_COLOR
, &c
,
595 g
= col
.green
* 65535,
596 b
= col
.blue
* 65535;
597 sprintf (buf
, "rgb:%04x/%04x/%04x", r
, g
, b
);
598 success_p
= x_parse_color (f
, buf
, color
) != 0;
600 GtkStyle
*gsty
= gtk_widget_get_style (FRAME_GTK_WIDGET (f
));
601 GdkColor
*grgb
= get_bg
602 ? &gsty
->bg
[GTK_STATE_SELECTED
]
603 : &gsty
->fg
[GTK_STATE_SELECTED
];
605 color
->red
= grgb
->red
;
606 color
->green
= grgb
->green
;
607 color
->blue
= grgb
->blue
;
608 color
->pixel
= grgb
->pixel
;
619 /***********************************************************************
621 ***********************************************************************/
622 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
623 We use that to pop down the tooltip. This happens if Gtk+ for some
624 reason wants to change or hide the tooltip. */
626 #ifdef USE_GTK_TOOLTIP
629 hierarchy_ch_cb (GtkWidget
*widget
,
630 GtkWidget
*previous_toplevel
,
633 struct frame
*f
= user_data
;
634 struct x_output
*x
= f
->output_data
.x
;
635 GtkWidget
*top
= gtk_widget_get_toplevel (x
->ttip_lbl
);
637 if (! top
|| ! GTK_IS_WINDOW (top
))
638 gtk_widget_hide (previous_toplevel
);
641 /* Callback called when Gtk+ thinks a tooltip should be displayed.
642 We use it to get the tooltip window and the tooltip widget so
643 we can manipulate the ourselves.
645 Return FALSE ensures that the tooltip is not shown. */
648 qttip_cb (GtkWidget
*widget
,
651 gboolean keyboard_mode
,
655 struct frame
*f
= user_data
;
656 struct x_output
*x
= f
->output_data
.x
;
657 if (x
->ttip_widget
== NULL
)
662 g_object_set (G_OBJECT (widget
), "has-tooltip", FALSE
, NULL
);
663 x
->ttip_widget
= tooltip
;
664 g_object_ref (G_OBJECT (tooltip
));
665 x
->ttip_lbl
= gtk_label_new ("");
666 g_object_ref (G_OBJECT (x
->ttip_lbl
));
667 gtk_tooltip_set_custom (tooltip
, x
->ttip_lbl
);
668 x
->ttip_window
= GTK_WINDOW (gtk_widget_get_toplevel (x
->ttip_lbl
));
670 /* Change stupid Gtk+ default line wrapping. */
671 p
= gtk_widget_get_parent (x
->ttip_lbl
);
672 list
= gtk_container_get_children (GTK_CONTAINER (p
));
673 for (iter
= list
; iter
; iter
= g_list_next (iter
))
675 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
676 if (GTK_IS_LABEL (w
))
677 gtk_label_set_line_wrap (GTK_LABEL (w
), FALSE
);
681 /* ATK needs an empty title for some reason. */
682 gtk_window_set_title (x
->ttip_window
, "");
683 /* Realize so we can safely get screen later on. */
684 gtk_widget_realize (GTK_WIDGET (x
->ttip_window
));
685 gtk_widget_realize (x
->ttip_lbl
);
687 g_signal_connect (x
->ttip_lbl
, "hierarchy-changed",
688 G_CALLBACK (hierarchy_ch_cb
), f
);
693 #endif /* USE_GTK_TOOLTIP */
695 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
696 Return true if a system tooltip is available. */
699 xg_prepare_tooltip (struct frame
*f
,
704 #ifndef USE_GTK_TOOLTIP
707 struct x_output
*x
= f
->output_data
.x
;
711 GtkSettings
*settings
;
712 gboolean tt_enabled
= TRUE
;
714 Lisp_Object encoded_string
;
716 if (!x
->ttip_lbl
) return 0;
719 encoded_string
= ENCODE_UTF_8 (string
);
720 widget
= GTK_WIDGET (x
->ttip_lbl
);
721 gwin
= gtk_widget_get_window (GTK_WIDGET (x
->ttip_window
));
722 screen
= gdk_window_get_screen (gwin
);
723 settings
= gtk_settings_get_for_screen (screen
);
724 g_object_get (settings
, "gtk-enable-tooltips", &tt_enabled
, NULL
);
727 g_object_set (settings
, "gtk-enable-tooltips", FALSE
, NULL
);
728 /* Record that we disabled it so it can be enabled again. */
729 g_object_set_data (G_OBJECT (x
->ttip_window
), "restore-tt",
733 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
734 g_object_set_data (G_OBJECT
735 (gtk_widget_get_display (GTK_WIDGET (x
->ttip_window
))),
736 "gdk-display-current-tooltip", NULL
);
738 /* Put our dummy widget in so we can get callbacks for unrealize and
739 hierarchy-changed. */
740 gtk_tooltip_set_custom (x
->ttip_widget
, widget
);
741 gtk_tooltip_set_text (x
->ttip_widget
, SSDATA (encoded_string
));
742 gtk_widget_get_preferred_size (GTK_WIDGET (x
->ttip_window
), NULL
, &req
);
743 if (width
) *width
= req
.width
;
744 if (height
) *height
= req
.height
;
749 #endif /* USE_GTK_TOOLTIP */
752 /* Show the tooltip at ROOT_X and ROOT_Y.
753 xg_prepare_tooltip must have been called before this function. */
756 xg_show_tooltip (struct frame
*f
, int root_x
, int root_y
)
758 #ifdef USE_GTK_TOOLTIP
759 struct x_output
*x
= f
->output_data
.x
;
763 gtk_window_move (x
->ttip_window
, root_x
/ xg_get_scale (f
),
764 root_y
/ xg_get_scale (f
));
765 gtk_widget_show_all (GTK_WIDGET (x
->ttip_window
));
771 /* Hide tooltip if shown. Do nothing if not shown.
772 Return true if tip was hidden, false if not (i.e. not using
776 xg_hide_tooltip (struct frame
*f
)
779 #ifdef USE_GTK_TOOLTIP
780 if (f
->output_data
.x
->ttip_window
)
782 GtkWindow
*win
= f
->output_data
.x
->ttip_window
;
784 gtk_widget_hide (GTK_WIDGET (win
));
786 if (g_object_get_data (G_OBJECT (win
), "restore-tt"))
788 GdkWindow
*gwin
= gtk_widget_get_window (GTK_WIDGET (win
));
789 GdkScreen
*screen
= gdk_window_get_screen (gwin
);
790 GtkSettings
*settings
= gtk_settings_get_for_screen (screen
);
791 g_object_set (settings
, "gtk-enable-tooltips", TRUE
, NULL
);
802 /***********************************************************************
803 General functions for creating widgets, resizing, events, e.t.c.
804 ***********************************************************************/
806 #if ! GTK_CHECK_VERSION (3, 22, 0)
808 my_log_handler (const gchar
*log_domain
, GLogLevelFlags log_level
,
809 const gchar
*msg
, gpointer user_data
)
811 if (!strstr (msg
, "visible children"))
812 fprintf (stderr
, "XX %s-WARNING **: %s\n", log_domain
, msg
);
816 /* Make a geometry string and pass that to GTK. It seems this is the
817 only way to get geometry position right if the user explicitly
818 asked for a position when starting Emacs.
819 F is the frame we shall set geometry for. */
822 xg_set_geometry (struct frame
*f
)
824 if (f
->size_hint_flags
& (USPosition
| PPosition
))
826 #if ! GTK_CHECK_VERSION (3, 22, 0)
827 if (x_gtk_use_window_move
)
830 /* Handle negative positions without consulting
831 gtk_window_parse_geometry (Bug#25851). The position will
832 be off by scrollbar width + window manager decorations. */
833 if (f
->size_hint_flags
& XNegative
)
834 f
->left_pos
= (x_display_pixel_width (FRAME_DISPLAY_INFO (f
))
835 - FRAME_PIXEL_WIDTH (f
) + f
->left_pos
);
837 if (f
->size_hint_flags
& YNegative
)
838 f
->top_pos
= (x_display_pixel_height (FRAME_DISPLAY_INFO (f
))
839 - FRAME_PIXEL_HEIGHT (f
) + f
->top_pos
);
841 gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
842 f
->left_pos
, f
->top_pos
);
844 /* Reset size hint flags. */
845 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
846 # if ! GTK_CHECK_VERSION (3, 22, 0)
850 int left
= f
->left_pos
;
851 int xneg
= f
->size_hint_flags
& XNegative
;
852 int top
= f
->top_pos
;
853 int yneg
= f
->size_hint_flags
& YNegative
;
854 char geom_str
[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
862 sprintf (geom_str
, "=%dx%d%c%d%c%d",
863 FRAME_PIXEL_WIDTH (f
),
864 FRAME_PIXEL_HEIGHT (f
),
865 (xneg
? '-' : '+'), left
,
866 (yneg
? '-' : '+'), top
);
868 /* Silence warning about visible children. */
869 id
= g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING
| G_LOG_FLAG_FATAL
870 | G_LOG_FLAG_RECURSION
, my_log_handler
, NULL
);
872 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
874 fprintf (stderr
, "Failed to parse: '%s'\n", geom_str
);
876 g_log_remove_handler ("Gtk", id
);
882 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
883 and a Gtk+ menu bar, we get resize events for the edit part of the
884 frame only. We let Gtk+ deal with the Gtk+ parts.
885 F is the frame to resize.
886 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
889 xg_frame_resized (struct frame
*f
, int pixelwidth
, int pixelheight
)
893 if (pixelwidth
== -1 && pixelheight
== -1)
895 if (FRAME_GTK_WIDGET (f
) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f
)))
896 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f
)),
897 0, 0, &pixelwidth
, &pixelheight
);
902 width
= FRAME_PIXEL_TO_TEXT_WIDTH (f
, pixelwidth
);
903 height
= FRAME_PIXEL_TO_TEXT_HEIGHT (f
, pixelheight
);
905 frame_size_history_add
906 (f
, Qxg_frame_resized
, width
, height
, Qnil
);
908 if (width
!= FRAME_TEXT_WIDTH (f
)
909 || height
!= FRAME_TEXT_HEIGHT (f
)
910 || pixelwidth
!= FRAME_PIXEL_WIDTH (f
)
911 || pixelheight
!= FRAME_PIXEL_HEIGHT (f
))
913 x_clear_under_internal_border (f
);
914 change_frame_size (f
, width
, height
, 0, 1, 0, 1);
915 SET_FRAME_GARBAGED (f
);
916 cancel_mouse_face (f
);
920 /* Resize the outer window of frame F after changing the height.
921 COLUMNS/ROWS is the size the edit area shall have after the resize. */
924 xg_frame_set_char_size (struct frame
*f
, int width
, int height
)
926 int pixelwidth
= FRAME_TEXT_TO_PIXEL_WIDTH (f
, width
);
927 int pixelheight
= FRAME_TEXT_TO_PIXEL_HEIGHT (f
, height
);
928 Lisp_Object fullscreen
= get_frame_param (f
, Qfullscreen
);
929 gint gwidth
, gheight
;
931 = pixelheight
+ FRAME_TOOLBAR_HEIGHT (f
) + FRAME_MENUBAR_HEIGHT (f
);
932 int totalwidth
= pixelwidth
+ FRAME_TOOLBAR_WIDTH (f
);
934 if (FRAME_PIXEL_HEIGHT (f
) == 0)
937 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
940 /* Do this before resize, as we don't know yet if we will be resized. */
941 x_clear_under_internal_border (f
);
943 totalheight
/= xg_get_scale (f
);
944 totalwidth
/= xg_get_scale (f
);
946 x_wm_set_size_hint (f
, 0, 0);
948 /* Resize the top level widget so rows and columns remain constant.
950 When the frame is fullheight and we only want to change the width
951 or it is fullwidth and we only want to change the height we should
952 be able to preserve the fullscreen property. However, due to the
953 fact that we have to send a resize request anyway, the window
954 manager will abolish it. At least the respective size should
955 remain unchanged but giving the frame back its normal size will
957 if (EQ (fullscreen
, Qfullwidth
) && width
== FRAME_TEXT_WIDTH (f
))
959 frame_size_history_add
960 (f
, Qxg_frame_set_char_size_1
, width
, height
,
961 list2 (make_number (gheight
), make_number (totalheight
)));
963 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
964 gwidth
, totalheight
);
966 else if (EQ (fullscreen
, Qfullheight
) && height
== FRAME_TEXT_HEIGHT (f
))
968 frame_size_history_add
969 (f
, Qxg_frame_set_char_size_2
, width
, height
,
970 list2 (make_number (gwidth
), make_number (totalwidth
)));
972 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
973 totalwidth
, gheight
);
977 frame_size_history_add
978 (f
, Qxg_frame_set_char_size_3
, width
, height
,
979 list2 (make_number (totalwidth
), make_number (totalheight
)));
981 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
982 totalwidth
, totalheight
);
986 SET_FRAME_GARBAGED (f
);
987 cancel_mouse_face (f
);
989 /* We can not call change_frame_size for a mapped frame,
990 we can not set pixel width/height either. The window manager may
991 override our resize request, XMonad does this all the time.
992 The best we can do is try to sync, so lisp code sees the updated
993 size as fast as possible.
994 For unmapped windows, we can set rows/cols. When
995 the frame is mapped again we will (hopefully) get the correct size. */
996 if (FRAME_VISIBLE_P (f
))
998 /* Must call this to flush out events */
999 (void)gtk_events_pending ();
1001 x_wait_for_event (f
, ConfigureNotify
);
1003 if (!NILP (fullscreen
))
1004 /* Try to restore fullscreen state. */
1006 store_frame_param (f
, Qfullscreen
, fullscreen
);
1007 x_set_fullscreen (f
, fullscreen
, fullscreen
);
1011 adjust_frame_size (f
, width
, height
, 5, 0, Qxg_frame_set_char_size
);
1015 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
1016 The policy is to keep the number of editable lines. */
1020 xg_height_or_width_changed (struct frame
*f
)
1022 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1023 FRAME_TOTAL_PIXEL_WIDTH (f
),
1024 FRAME_TOTAL_PIXEL_HEIGHT (f
));
1025 f
->output_data
.x
->hint_flags
= 0;
1026 x_wm_set_size_hint (f
, 0, 0);
1030 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1031 Must be done like this, because GtkWidget:s can have "hidden"
1032 X Window that aren't accessible.
1034 Return 0 if no widget match WDESC. */
1037 xg_win_to_widget (Display
*dpy
, Window wdesc
)
1040 GtkWidget
*gwdesc
= 0;
1044 gdkwin
= gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy
),
1049 event
.any
.window
= gdkwin
;
1050 event
.any
.type
= GDK_NOTHING
;
1051 gwdesc
= gtk_get_event_widget (&event
);
1058 /* Set the background of widget W to PIXEL. */
1061 xg_set_widget_bg (struct frame
*f
, GtkWidget
*w
, unsigned long pixel
)
1067 if (XQueryColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &xbg
))
1069 bg
.red
= (double)xbg
.red
/65535.0;
1070 bg
.green
= (double)xbg
.green
/65535.0;
1071 bg
.blue
= (double)xbg
.blue
/65535.0;
1073 gtk_widget_override_background_color (w
, GTK_STATE_FLAG_NORMAL
, &bg
);
1077 GdkColormap
*map
= gtk_widget_get_colormap (w
);
1078 gdk_colormap_query_color (map
, pixel
, &bg
);
1079 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f
), GTK_STATE_NORMAL
, &bg
);
1083 /* Callback called when the gtk theme changes.
1084 We notify lisp code so it can fix faces used for region for example. */
1087 style_changed_cb (GObject
*go
,
1091 struct input_event event
;
1092 GdkDisplay
*gdpy
= user_data
;
1093 const char *display_name
= gdk_display_get_name (gdpy
);
1094 Display
*dpy
= GDK_DISPLAY_XDISPLAY (gdpy
);
1097 event
.kind
= CONFIG_CHANGED_EVENT
;
1098 event
.frame_or_window
= build_string (display_name
);
1099 /* Theme doesn't change often, so intern is called seldom. */
1100 event
.arg
= intern ("theme-name");
1101 kbd_buffer_store_event (&event
);
1103 update_theme_scrollbar_width ();
1104 update_theme_scrollbar_height ();
1106 /* If scroll bar width changed, we need set the new size on all frames
1110 Lisp_Object rest
, frame
;
1111 FOR_EACH_FRAME (rest
, frame
)
1113 struct frame
*f
= XFRAME (frame
);
1114 if (FRAME_LIVE_P (f
)
1116 && FRAME_X_DISPLAY (f
) == dpy
)
1118 x_set_scroll_bar_default_width (f
);
1119 x_set_scroll_bar_default_height (f
);
1120 xg_frame_set_char_size (f
, FRAME_TEXT_WIDTH (f
), FRAME_TEXT_HEIGHT (f
));
1126 /* Called when a delete-event occurs on WIDGET. */
1129 delete_cb (GtkWidget
*widget
,
1136 /* Create and set up the GTK widgets for frame F.
1137 Return true if creation succeeded. */
1140 xg_create_frame_widgets (struct frame
*f
)
1143 GtkWidget
*wvbox
, *whbox
;
1152 if (FRAME_X_EMBEDDED_P (f
))
1154 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
1155 wtop
= gtk_plug_new_for_display (gdpy
, f
->output_data
.x
->parent_desc
);
1158 wtop
= gtk_window_new (GTK_WINDOW_TOPLEVEL
);
1160 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1161 has backported it to Gtk+ 2.0 and they add the resize grip for
1162 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1163 forever, so disable the grip. */
1164 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1165 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1166 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop
), FALSE
);
1169 xg_set_screen (wtop
, f
);
1171 wvbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, 0);
1172 whbox
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1173 gtk_box_set_homogeneous (GTK_BOX (wvbox
), FALSE
);
1174 gtk_box_set_homogeneous (GTK_BOX (whbox
), FALSE
);
1177 wfixed
= emacs_fixed_new (f
);
1179 wfixed
= gtk_fixed_new ();
1182 if (! wtop
|| ! wvbox
|| ! whbox
|| ! wfixed
)
1184 if (wtop
) gtk_widget_destroy (wtop
);
1185 if (wvbox
) gtk_widget_destroy (wvbox
);
1186 if (whbox
) gtk_widget_destroy (whbox
);
1187 if (wfixed
) gtk_widget_destroy (wfixed
);
1193 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1194 gtk_widget_set_name (wtop
, EMACS_CLASS
);
1195 gtk_widget_set_name (wvbox
, "pane");
1196 gtk_widget_set_name (wfixed
, SSDATA (Vx_resource_name
));
1198 /* If this frame has a title or name, set it in the title bar. */
1199 if (! NILP (f
->title
))
1200 title
= SSDATA (ENCODE_UTF_8 (f
->title
));
1201 else if (! NILP (f
->name
))
1202 title
= SSDATA (ENCODE_UTF_8 (f
->name
));
1205 gtk_window_set_title (GTK_WINDOW (wtop
), title
);
1207 if (FRAME_UNDECORATED (f
))
1209 gtk_window_set_decorated (GTK_WINDOW (wtop
), FALSE
);
1210 store_frame_param (f
, Qundecorated
, Qt
);
1213 FRAME_GTK_OUTER_WIDGET (f
) = wtop
;
1214 FRAME_GTK_WIDGET (f
) = wfixed
;
1215 f
->output_data
.x
->vbox_widget
= wvbox
;
1216 f
->output_data
.x
->hbox_widget
= whbox
;
1218 gtk_widget_set_has_window (wfixed
, TRUE
);
1220 gtk_container_add (GTK_CONTAINER (wtop
), wvbox
);
1221 gtk_box_pack_start (GTK_BOX (wvbox
), whbox
, TRUE
, TRUE
, 0);
1222 gtk_box_pack_start (GTK_BOX (whbox
), wfixed
, TRUE
, TRUE
, 0);
1224 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1225 update_frame_tool_bar (f
);
1227 /* We don't want this widget double buffered, because we draw on it
1228 with regular X drawing primitives, so from a GTK/GDK point of
1229 view, the widget is totally blank. When an expose comes, this
1230 will make the widget blank, and then Emacs redraws it. This flickers
1231 a lot, so we turn off double buffering.
1232 FIXME: gtk_widget_set_double_buffered is deprecated and might stop
1233 working in the future. We need to migrate away from combining
1234 X and GTK+ drawing to a pure GTK+ build. */
1235 gtk_widget_set_double_buffered (wfixed
, FALSE
);
1237 gtk_window_set_wmclass (GTK_WINDOW (wtop
),
1238 SSDATA (Vx_resource_name
),
1239 SSDATA (Vx_resource_class
));
1241 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1242 GTK is to destroy the widget. We want Emacs to do that instead. */
1243 g_signal_connect (G_OBJECT (wtop
), "delete-event",
1244 G_CALLBACK (delete_cb
), f
);
1246 /* Convert our geometry parameters into a geometry string
1248 GTK will itself handle calculating the real position this way. */
1249 xg_set_geometry (f
);
1251 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1253 gtk_widget_add_events (wfixed
,
1254 GDK_POINTER_MOTION_MASK
1256 | GDK_BUTTON_PRESS_MASK
1257 | GDK_BUTTON_RELEASE_MASK
1258 | GDK_KEY_PRESS_MASK
1259 | GDK_ENTER_NOTIFY_MASK
1260 | GDK_LEAVE_NOTIFY_MASK
1261 | GDK_FOCUS_CHANGE_MASK
1262 | GDK_STRUCTURE_MASK
1263 | GDK_VISIBILITY_NOTIFY_MASK
);
1265 /* Must realize the windows so the X window gets created. It is used
1266 by callers of this function. */
1267 gtk_widget_realize (wfixed
);
1268 FRAME_X_WINDOW (f
) = GTK_WIDGET_TO_X_WIN (wfixed
);
1269 initial_set_up_x_back_buffer (f
);
1271 /* Since GTK clears its window by filling with the background color,
1272 we must keep X and GTK background in sync. */
1273 xg_set_widget_bg (f
, wfixed
, FRAME_BACKGROUND_PIXEL (f
));
1276 /* Also, do not let any background pixmap to be set, this looks very
1277 bad as Emacs overwrites the background pixmap with its own idea
1278 of background color. */
1279 style
= gtk_widget_get_modifier_style (wfixed
);
1281 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1282 style
->bg_pixmap_name
[GTK_STATE_NORMAL
] = g_strdup ("<none>");
1283 gtk_widget_modify_style (wfixed
, style
);
1285 gtk_widget_set_can_focus (wfixed
, TRUE
);
1286 gtk_window_set_resizable (GTK_WINDOW (wtop
), TRUE
);
1289 if (FRAME_OVERRIDE_REDIRECT (f
))
1291 GdkWindow
*gwin
= gtk_widget_get_window (wtop
);
1294 gdk_window_set_override_redirect (gwin
, TRUE
);
1297 #ifdef USE_GTK_TOOLTIP
1298 /* Steal a tool tip window we can move ourselves. */
1299 f
->output_data
.x
->ttip_widget
= 0;
1300 f
->output_data
.x
->ttip_lbl
= 0;
1301 f
->output_data
.x
->ttip_window
= 0;
1302 gtk_widget_set_tooltip_text (wtop
, "Dummy text");
1303 g_signal_connect (wtop
, "query-tooltip", G_CALLBACK (qttip_cb
), f
);
1307 GdkScreen
*screen
= gtk_widget_get_screen (wtop
);
1308 GtkSettings
*gs
= gtk_settings_get_for_screen (screen
);
1309 /* Only connect this signal once per screen. */
1310 if (! g_signal_handler_find (G_OBJECT (gs
),
1311 G_SIGNAL_MATCH_FUNC
,
1313 (gpointer
) G_CALLBACK (style_changed_cb
),
1316 g_signal_connect (G_OBJECT (gs
), "notify::gtk-theme-name",
1317 G_CALLBACK (style_changed_cb
),
1318 gdk_screen_get_display (screen
));
1328 xg_free_frame_widgets (struct frame
*f
)
1330 if (FRAME_GTK_OUTER_WIDGET (f
))
1332 #ifdef USE_GTK_TOOLTIP
1333 struct x_output
*x
= f
->output_data
.x
;
1335 struct xg_frame_tb_info
*tbinfo
1336 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
1341 /* x_free_frame_resources should have taken care of it */
1342 eassert (!FRAME_X_DOUBLE_BUFFERED_P (f
));
1343 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f
));
1344 FRAME_X_WINDOW (f
) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1345 FRAME_X_RAW_DRAWABLE (f
) = 0;
1346 FRAME_GTK_OUTER_WIDGET (f
) = 0;
1347 #ifdef USE_GTK_TOOLTIP
1349 gtk_widget_destroy (x
->ttip_lbl
);
1351 g_object_unref (G_OBJECT (x
->ttip_widget
));
1356 /* Set the normal size hints for the window manager, for frame F.
1357 FLAGS is the flags word to use--or 0 meaning preserve the flags
1358 that the window now has.
1359 If USER_POSITION, set the User Position
1360 flag (this is useful when FLAGS is 0). */
1363 x_wm_set_size_hint (struct frame
*f
, long int flags
, bool user_position
)
1365 /* Must use GTK routines here, otherwise GTK resets the size hints
1366 to its own defaults. */
1367 GdkGeometry size_hints
;
1368 gint hint_flags
= 0;
1369 int base_width
, base_height
;
1370 int min_rows
= 0, min_cols
= 0;
1371 int win_gravity
= f
->win_gravity
;
1372 Lisp_Object fs_state
, frame
;
1373 int scale
= xg_get_scale (f
);
1375 /* Don't set size hints during initialization; that apparently leads
1376 to a race condition. See the thread at
1377 https://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1378 if (NILP (Vafter_init_time
)
1379 || !FRAME_GTK_OUTER_WIDGET (f
)
1380 || FRAME_PARENT_FRAME (f
))
1383 XSETFRAME (frame
, f
);
1384 fs_state
= Fframe_parameter (frame
, Qfullscreen
);
1385 if ((EQ (fs_state
, Qmaximized
) || EQ (fs_state
, Qfullboth
)) &&
1386 (x_wm_supports (f
, FRAME_DISPLAY_INFO (f
)->Xatom_net_wm_state
) ||
1387 x_wm_supports (f
, FRAME_DISPLAY_INFO (f
)->Xatom_net_wm_state_fullscreen
)))
1389 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1390 Gtk3 don't get along and the frame shrinks (!).
1397 memset (&size_hints
, 0, sizeof (size_hints
));
1398 f
->output_data
.x
->size_hints
= size_hints
;
1399 f
->output_data
.x
->hint_flags
= hint_flags
;
1402 flags
= f
->size_hint_flags
;
1404 size_hints
= f
->output_data
.x
->size_hints
;
1405 hint_flags
= f
->output_data
.x
->hint_flags
;
1407 hint_flags
|= GDK_HINT_RESIZE_INC
| GDK_HINT_MIN_SIZE
;
1408 size_hints
.width_inc
= frame_resize_pixelwise
? 1 : FRAME_COLUMN_WIDTH (f
);
1409 size_hints
.height_inc
= frame_resize_pixelwise
? 1 : FRAME_LINE_HEIGHT (f
);
1411 hint_flags
|= GDK_HINT_BASE_SIZE
;
1412 /* Use one row/col here so base_height/width does not become zero.
1413 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1414 Obviously this makes the row/col value displayed off by 1. */
1415 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 1) + FRAME_TOOLBAR_WIDTH (f
);
1416 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 1)
1417 + FRAME_MENUBAR_HEIGHT (f
) + FRAME_TOOLBAR_HEIGHT (f
);
1419 if (min_cols
> 0) --min_cols
; /* We used one col in base_width = ... 1); */
1420 if (min_rows
> 0) --min_rows
; /* We used one row in base_height = ... 1); */
1422 size_hints
.base_width
= base_width
;
1423 size_hints
.base_height
= base_height
;
1424 size_hints
.min_width
= base_width
+ min_cols
* FRAME_COLUMN_WIDTH (f
);
1425 size_hints
.min_height
= base_height
+ min_rows
* FRAME_LINE_HEIGHT (f
);
1427 /* These currently have a one to one mapping with the X values, but I
1428 don't think we should rely on that. */
1429 hint_flags
|= GDK_HINT_WIN_GRAVITY
;
1430 size_hints
.win_gravity
= 0;
1431 if (win_gravity
== NorthWestGravity
)
1432 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_WEST
;
1433 else if (win_gravity
== NorthGravity
)
1434 size_hints
.win_gravity
= GDK_GRAVITY_NORTH
;
1435 else if (win_gravity
== NorthEastGravity
)
1436 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_EAST
;
1437 else if (win_gravity
== WestGravity
)
1438 size_hints
.win_gravity
= GDK_GRAVITY_WEST
;
1439 else if (win_gravity
== CenterGravity
)
1440 size_hints
.win_gravity
= GDK_GRAVITY_CENTER
;
1441 else if (win_gravity
== EastGravity
)
1442 size_hints
.win_gravity
= GDK_GRAVITY_EAST
;
1443 else if (win_gravity
== SouthWestGravity
)
1444 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_WEST
;
1445 else if (win_gravity
== SouthGravity
)
1446 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH
;
1447 else if (win_gravity
== SouthEastGravity
)
1448 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_EAST
;
1449 else if (win_gravity
== StaticGravity
)
1450 size_hints
.win_gravity
= GDK_GRAVITY_STATIC
;
1452 if (x_gtk_use_window_move
)
1454 if (flags
& PPosition
) hint_flags
|= GDK_HINT_POS
;
1455 if (flags
& USPosition
) hint_flags
|= GDK_HINT_USER_POS
;
1456 if (flags
& USSize
) hint_flags
|= GDK_HINT_USER_SIZE
;
1461 hint_flags
&= ~GDK_HINT_POS
;
1462 hint_flags
|= GDK_HINT_USER_POS
;
1465 size_hints
.base_width
/= scale
;
1466 size_hints
.base_height
/= scale
;
1467 size_hints
.width_inc
/= scale
;
1468 size_hints
.height_inc
/= scale
;
1470 if (hint_flags
!= f
->output_data
.x
->hint_flags
1471 || memcmp (&size_hints
,
1472 &f
->output_data
.x
->size_hints
,
1473 sizeof (size_hints
)) != 0)
1476 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1477 NULL
, &size_hints
, hint_flags
);
1478 f
->output_data
.x
->size_hints
= size_hints
;
1479 f
->output_data
.x
->hint_flags
= hint_flags
;
1484 /* Change background color of a frame.
1485 Since GTK uses the background color to clear the window, we must
1486 keep the GTK and X colors in sync.
1487 F is the frame to change,
1488 BG is the pixel value to change to. */
1491 xg_set_background_color (struct frame
*f
, unsigned long bg
)
1493 if (FRAME_GTK_WIDGET (f
))
1496 xg_set_widget_bg (f
, FRAME_GTK_WIDGET (f
), FRAME_BACKGROUND_PIXEL (f
));
1499 for (bar
= FRAME_SCROLL_BARS (f
);
1501 bar
= XSCROLL_BAR (bar
)->next
)
1503 GtkWidget
*scrollbar
=
1504 xg_get_widget_from_map (XSCROLL_BAR (bar
)->x_window
);
1505 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
1506 xg_set_widget_bg (f
, webox
, FRAME_BACKGROUND_PIXEL (f
));
1513 /* Change the frame's decoration (title bar + resize borders). This
1514 might not work with all window managers. */
1516 xg_set_undecorated (struct frame
*f
, Lisp_Object undecorated
)
1518 if (FRAME_GTK_WIDGET (f
))
1521 gtk_window_set_decorated (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1522 NILP (undecorated
) ? TRUE
: FALSE
);
1528 /* Restack F1 below F2, above if ABOVE_FLAG is true. This might not
1529 work with all window managers. */
1531 xg_frame_restack (struct frame
*f1
, struct frame
*f2
, bool above_flag
)
1533 #if GTK_CHECK_VERSION (2, 18, 0)
1535 if (FRAME_GTK_OUTER_WIDGET (f1
) && FRAME_GTK_OUTER_WIDGET (f2
))
1537 GdkWindow
*gwin1
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f1
));
1538 GdkWindow
*gwin2
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f2
));
1539 Lisp_Object frame1
, frame2
;
1541 XSETFRAME (frame1
, f1
);
1542 XSETFRAME (frame2
, f2
);
1544 gdk_window_restack (gwin1
, gwin2
, above_flag
);
1552 /* Don't show frame in taskbar, don't ALT-TAB to it. */
1554 xg_set_skip_taskbar (struct frame
*f
, Lisp_Object skip_taskbar
)
1557 if (FRAME_GTK_WIDGET (f
))
1558 gdk_window_set_skip_taskbar_hint
1559 (gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f
)),
1560 NILP (skip_taskbar
) ? FALSE
: TRUE
);
1565 /* Don't give frame focus. */
1567 xg_set_no_focus_on_map (struct frame
*f
, Lisp_Object no_focus_on_map
)
1570 if (FRAME_GTK_WIDGET (f
))
1572 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1573 gboolean g_no_focus_on_map
= NILP (no_focus_on_map
) ? TRUE
: FALSE
;
1575 gtk_window_set_focus_on_map (gwin
, g_no_focus_on_map
);
1582 xg_set_no_accept_focus (struct frame
*f
, Lisp_Object no_accept_focus
)
1585 if (FRAME_GTK_WIDGET (f
))
1587 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1588 gboolean g_no_accept_focus
= NILP (no_accept_focus
) ? TRUE
: FALSE
;
1590 gtk_window_set_accept_focus (gwin
, g_no_accept_focus
);
1596 xg_set_override_redirect (struct frame
*f
, Lisp_Object override_redirect
)
1600 if (FRAME_GTK_OUTER_WIDGET (f
))
1602 GdkWindow
*gwin
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f
));
1604 gdk_window_set_override_redirect (gwin
, NILP (override_redirect
) ? FALSE
: TRUE
);
1610 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1611 functions so GTK does not overwrite the icon. */
1614 xg_set_frame_icon (struct frame
*f
, Pixmap icon_pixmap
, Pixmap icon_mask
)
1616 GdkPixbuf
*gp
= xg_get_pixbuf_from_pix_and_mask (f
,
1620 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), gp
);
1625 /***********************************************************************
1627 ***********************************************************************/
1628 /* Return the dialog title to use for a dialog of type KEY.
1629 This is the encoding used by lwlib. We use the same for GTK. */
1632 get_dialog_title (char key
)
1634 const char *title
= "";
1642 title
= "Information";
1661 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1662 the dialog, but return TRUE so the event does not propagate further
1663 in GTK. This prevents GTK from destroying the dialog widget automatically
1664 and we can always destroy the widget manually, regardless of how
1665 it was popped down (button press or WM_DELETE_WINDOW).
1666 W is the dialog widget.
1667 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1668 user_data is NULL (not used).
1670 Returns TRUE to end propagation of event. */
1673 dialog_delete_callback (GtkWidget
*w
, GdkEvent
*event
, gpointer user_data
)
1675 gtk_widget_unmap (w
);
1679 /* Create a popup dialog window. See also xg_create_widget below.
1680 WV is a widget_value describing the dialog.
1681 SELECT_CB is the callback to use when a button has been pressed.
1682 DEACTIVATE_CB is the callback to use when the dialog pops down.
1684 Returns the GTK dialog widget. */
1687 create_dialog (widget_value
*wv
,
1688 GCallback select_cb
,
1689 GCallback deactivate_cb
)
1691 const char *title
= get_dialog_title (wv
->name
[0]);
1692 int total_buttons
= wv
->name
[1] - '0';
1693 int right_buttons
= wv
->name
[4] - '0';
1696 int button_spacing
= 10;
1697 GtkWidget
*wdialog
= gtk_dialog_new ();
1698 GtkDialog
*wd
= GTK_DIALOG (wdialog
);
1700 GtkWidget
*whbox_down
;
1702 /* If the number of buttons is greater than 4, make two rows of buttons
1703 instead. This looks better. */
1704 bool make_two_rows
= total_buttons
> 4;
1706 #if GTK_CHECK_VERSION (3, 12, 0)
1707 GtkBuilder
*gbld
= gtk_builder_new ();
1708 GObject
*go
= gtk_buildable_get_internal_child (GTK_BUILDABLE (wd
),
1711 GtkBox
*cur_box
= GTK_BOX (go
);
1712 g_object_unref (G_OBJECT (gbld
));
1714 GtkBox
*cur_box
= GTK_BOX (gtk_dialog_get_action_area (wd
));
1717 if (right_buttons
== 0) right_buttons
= total_buttons
/2;
1718 left_buttons
= total_buttons
- right_buttons
;
1720 gtk_window_set_title (GTK_WINDOW (wdialog
), title
);
1721 gtk_widget_set_name (wdialog
, "emacs-dialog");
1726 GtkWidget
*wvbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, button_spacing
);
1727 GtkWidget
*whbox_up
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1728 gtk_box_set_homogeneous (GTK_BOX (wvbox
), TRUE
);
1729 gtk_box_set_homogeneous (GTK_BOX (whbox_up
), FALSE
);
1730 whbox_down
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1731 gtk_box_set_homogeneous (GTK_BOX (whbox_down
), FALSE
);
1733 gtk_box_pack_start (cur_box
, wvbox
, FALSE
, FALSE
, 0);
1734 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_up
, FALSE
, FALSE
, 0);
1735 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_down
, FALSE
, FALSE
, 0);
1737 cur_box
= GTK_BOX (whbox_up
);
1740 g_signal_connect (G_OBJECT (wdialog
), "delete-event",
1741 G_CALLBACK (dialog_delete_callback
), 0);
1745 g_signal_connect (G_OBJECT (wdialog
), "close", deactivate_cb
, 0);
1746 g_signal_connect (G_OBJECT (wdialog
), "response", deactivate_cb
, 0);
1749 for (item
= wv
->contents
; item
; item
= item
->next
)
1751 char *utf8_label
= get_utf8_string (item
->value
);
1755 if (item
->name
&& strcmp (item
->name
, "message") == 0)
1757 GtkBox
*wvbox
= GTK_BOX (gtk_dialog_get_content_area (wd
));
1758 /* This is the text part of the dialog. */
1759 w
= gtk_label_new (utf8_label
);
1760 gtk_box_pack_start (wvbox
, gtk_label_new (""), FALSE
, FALSE
, 0);
1761 gtk_box_pack_start (wvbox
, w
, TRUE
, TRUE
, 0);
1762 #if GTK_CHECK_VERSION (3, 14, 0)
1763 gtk_widget_set_halign (w
, GTK_ALIGN_START
);
1764 gtk_widget_set_valign (w
, GTK_ALIGN_CENTER
);
1766 gtk_misc_set_alignment (GTK_MISC (w
), 0.1, 0.5);
1768 /* Try to make dialog look better. Must realize first so
1769 the widget can calculate the size it needs. */
1770 gtk_widget_realize (w
);
1771 gtk_widget_get_preferred_size (w
, NULL
, &req
);
1772 gtk_box_set_spacing (wvbox
, req
.height
);
1773 if (item
->value
&& strlen (item
->value
) > 0)
1774 button_spacing
= 2*req
.width
/strlen (item
->value
);
1775 if (button_spacing
< 10) button_spacing
= 10;
1779 /* This is one button to add to the dialog. */
1780 w
= gtk_button_new_with_label (utf8_label
);
1781 if (! item
->enabled
)
1782 gtk_widget_set_sensitive (w
, FALSE
);
1784 g_signal_connect (G_OBJECT (w
), "clicked",
1785 select_cb
, item
->call_data
);
1787 gtk_box_pack_start (cur_box
, w
, TRUE
, TRUE
, button_spacing
);
1788 if (++button_nr
== left_buttons
)
1791 cur_box
= GTK_BOX (whbox_down
);
1796 g_free (utf8_label
);
1802 struct xg_dialog_data
1810 /* Function that is called when the file or font dialogs pop down.
1811 W is the dialog widget, RESPONSE is the response code.
1812 USER_DATA is what we passed in to g_signal_connect. */
1815 xg_dialog_response_cb (GtkDialog
*w
,
1819 struct xg_dialog_data
*dd
= user_data
;
1820 dd
->response
= response
;
1821 g_main_loop_quit (dd
->loop
);
1825 /* Destroy the dialog. This makes it pop down. */
1828 pop_down_dialog (void *arg
)
1830 struct xg_dialog_data
*dd
= arg
;
1833 if (dd
->w
) gtk_widget_destroy (dd
->w
);
1834 if (dd
->timerid
!= 0) g_source_remove (dd
->timerid
);
1836 g_main_loop_quit (dd
->loop
);
1837 g_main_loop_unref (dd
->loop
);
1842 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1843 Pass DATA as gpointer so we can use this as a callback. */
1846 xg_maybe_add_timer (gpointer data
)
1848 struct xg_dialog_data
*dd
= data
;
1849 struct timespec next_time
= timer_check ();
1853 if (timespec_valid_p (next_time
))
1855 time_t s
= next_time
.tv_sec
;
1856 int per_ms
= TIMESPEC_RESOLUTION
/ 1000;
1857 int ms
= (next_time
.tv_nsec
+ per_ms
- 1) / per_ms
;
1858 if (s
<= ((guint
) -1 - ms
) / 1000)
1859 dd
->timerid
= g_timeout_add (s
* 1000 + ms
, xg_maybe_add_timer
, dd
);
1865 /* Pops up a modal dialog W and waits for response.
1866 We don't use gtk_dialog_run because we want to process emacs timers.
1867 The dialog W is not destroyed when this function returns. */
1870 xg_dialog_run (struct frame
*f
, GtkWidget
*w
)
1872 ptrdiff_t count
= SPECPDL_INDEX ();
1873 struct xg_dialog_data dd
;
1875 xg_set_screen (w
, f
);
1876 gtk_window_set_transient_for (GTK_WINDOW (w
),
1877 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1878 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
1879 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
1881 dd
.loop
= g_main_loop_new (NULL
, FALSE
);
1882 dd
.response
= GTK_RESPONSE_CANCEL
;
1886 g_signal_connect (G_OBJECT (w
),
1888 G_CALLBACK (xg_dialog_response_cb
),
1890 /* Don't destroy the widget if closed by the window manager close button. */
1891 g_signal_connect (G_OBJECT (w
), "delete-event", G_CALLBACK (gtk_true
), NULL
);
1892 gtk_widget_show (w
);
1894 record_unwind_protect_ptr (pop_down_dialog
, &dd
);
1896 (void) xg_maybe_add_timer (&dd
);
1897 g_main_loop_run (dd
.loop
);
1900 unbind_to (count
, Qnil
);
1906 /***********************************************************************
1907 File dialog functions
1908 ***********************************************************************/
1909 /* Return true if the old file selection dialog is being used. */
1912 xg_uses_old_file_dialog (void)
1914 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1915 return x_gtk_use_old_file_dialog
;
1922 typedef char * (*xg_get_file_func
) (GtkWidget
*);
1924 /* Return the selected file for file chooser dialog W.
1925 The returned string must be free:d. */
1928 xg_get_file_name_from_chooser (GtkWidget
*w
)
1930 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w
));
1933 /* Callback called when the "Show hidden files" toggle is pressed.
1934 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1937 xg_toggle_visibility_cb (GtkWidget
*widget
, gpointer data
)
1939 GtkFileChooser
*dialog
= GTK_FILE_CHOOSER (data
);
1941 g_object_get (G_OBJECT (dialog
), "show-hidden", &visible
, NULL
);
1942 g_object_set (G_OBJECT (dialog
), "show-hidden", !visible
, NULL
);
1946 /* Callback called when a property changes in a file chooser.
1947 GOBJECT is the file chooser dialog, ARG1 describes the property.
1948 USER_DATA is the toggle widget in the file chooser dialog.
1949 We use this to update the "Show hidden files" toggle when the user
1950 changes that property by right clicking in the file list. */
1953 xg_toggle_notify_cb (GObject
*gobject
, GParamSpec
*arg1
, gpointer user_data
)
1955 if (strcmp (arg1
->name
, "show-hidden") == 0)
1957 GtkWidget
*wtoggle
= GTK_WIDGET (user_data
);
1958 gboolean visible
, toggle_on
;
1960 g_object_get (G_OBJECT (gobject
), "show-hidden", &visible
, NULL
);
1961 toggle_on
= gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle
));
1963 if (!!visible
!= !!toggle_on
)
1965 gpointer cb
= (gpointer
) G_CALLBACK (xg_toggle_visibility_cb
);
1966 g_signal_handlers_block_by_func (G_OBJECT (wtoggle
), cb
, gobject
);
1967 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), visible
);
1968 g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle
), cb
, gobject
);
1970 x_gtk_show_hidden_files
= visible
;
1974 /* Read a file name from the user using a file chooser dialog.
1975 F is the current frame.
1976 PROMPT is a prompt to show to the user. May not be NULL.
1977 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1978 If MUSTMATCH_P, the returned file name must be an existing
1979 file. (Actually, this only has cosmetic effects, the user can
1980 still enter a non-existing file.) *FUNC is set to a function that
1981 can be used to retrieve the selected file name from the returned widget.
1983 Returns the created widget. */
1986 xg_get_file_with_chooser (struct frame
*f
,
1988 char *default_filename
,
1989 bool mustmatch_p
, bool only_dir_p
,
1990 xg_get_file_func
*func
)
1994 GtkWidget
*filewin
, *wtoggle
, *wbox
;
1995 GtkWidget
*wmessage UNINIT
;
1996 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1997 GtkFileChooserAction action
= (mustmatch_p
?
1998 GTK_FILE_CHOOSER_ACTION_OPEN
:
1999 GTK_FILE_CHOOSER_ACTION_SAVE
);
2002 action
= GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
;
2004 filewin
= gtk_file_chooser_dialog_new (prompt
, gwin
, action
,
2005 XG_TEXT_CANCEL
, GTK_RESPONSE_CANCEL
,
2006 (mustmatch_p
|| only_dir_p
?
2007 XG_TEXT_OPEN
: XG_TEXT_OK
),
2010 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin
), TRUE
);
2012 wbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, 0);
2013 gtk_box_set_homogeneous (GTK_BOX (wbox
), FALSE
);
2014 gtk_widget_show (wbox
);
2015 wtoggle
= gtk_check_button_new_with_label ("Show hidden files.");
2017 if (x_gtk_show_hidden_files
)
2019 g_object_set (G_OBJECT (filewin
), "show-hidden", TRUE
, NULL
);
2020 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), TRUE
);
2022 gtk_widget_show (wtoggle
);
2023 g_signal_connect (G_OBJECT (wtoggle
), "clicked",
2024 G_CALLBACK (xg_toggle_visibility_cb
), filewin
);
2025 g_signal_connect (G_OBJECT (filewin
), "notify",
2026 G_CALLBACK (xg_toggle_notify_cb
), wtoggle
);
2028 if (x_gtk_file_dialog_help_text
)
2031 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
2032 Show the C-l help text only for versions < 2.10. */
2033 if (gtk_check_version (2, 10, 0) && action
!= GTK_FILE_CHOOSER_ACTION_SAVE
)
2034 z
= stpcpy (z
, "\nType C-l to display a file name text entry box.\n");
2035 strcpy (z
, "\nIf you don't like this file selector, use the "
2036 "corresponding\nkey binding or customize "
2037 "use-file-dialog to turn it off.");
2039 wmessage
= gtk_label_new (msgbuf
);
2040 gtk_widget_show (wmessage
);
2043 gtk_box_pack_start (GTK_BOX (wbox
), wtoggle
, FALSE
, FALSE
, 0);
2044 if (x_gtk_file_dialog_help_text
)
2045 gtk_box_pack_start (GTK_BOX (wbox
), wmessage
, FALSE
, FALSE
, 0);
2046 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin
), wbox
);
2048 if (default_filename
)
2051 char *utf8_filename
;
2053 file
= build_string (default_filename
);
2055 /* File chooser does not understand ~/... in the file name. It must be
2056 an absolute name starting with /. */
2057 if (default_filename
[0] != '/')
2058 file
= Fexpand_file_name (file
, Qnil
);
2060 utf8_filename
= SSDATA (ENCODE_UTF_8 (file
));
2061 if (! NILP (Ffile_directory_p (file
)))
2062 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin
),
2066 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin
),
2068 if (action
== GTK_FILE_CHOOSER_ACTION_SAVE
)
2070 char *cp
= strrchr (utf8_filename
, '/');
2072 else cp
= utf8_filename
;
2073 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin
), cp
);
2078 *func
= xg_get_file_name_from_chooser
;
2082 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2084 /* Return the selected file for file selector dialog W.
2085 The returned string must be free:d. */
2088 xg_get_file_name_from_selector (GtkWidget
*w
)
2090 GtkFileSelection
*filesel
= GTK_FILE_SELECTION (w
);
2091 return xstrdup (gtk_file_selection_get_filename (filesel
));
2094 /* Create a file selection dialog.
2095 F is the current frame.
2096 PROMPT is a prompt to show to the user. May not be NULL.
2097 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2098 If MUSTMATCH_P, the returned file name must be an existing
2099 file. *FUNC is set to a function that can be used to retrieve the
2100 selected file name from the returned widget.
2102 Returns the created widget. */
2105 xg_get_file_with_selection (struct frame
*f
,
2107 char *default_filename
,
2108 bool mustmatch_p
, bool only_dir_p
,
2109 xg_get_file_func
*func
)
2112 GtkFileSelection
*filesel
;
2114 filewin
= gtk_file_selection_new (prompt
);
2115 filesel
= GTK_FILE_SELECTION (filewin
);
2117 if (default_filename
)
2118 gtk_file_selection_set_filename (filesel
, default_filename
);
2122 /* The selection_entry part of filesel is not documented. */
2123 gtk_widget_set_sensitive (filesel
->selection_entry
, FALSE
);
2124 gtk_file_selection_hide_fileop_buttons (filesel
);
2127 *func
= xg_get_file_name_from_selector
;
2131 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
2133 /* Read a file name from the user using a file dialog, either the old
2134 file selection dialog, or the new file chooser dialog. Which to use
2135 depends on what the GTK version used has, and what the value of
2136 gtk-use-old-file-dialog.
2137 F is the current frame.
2138 PROMPT is a prompt to show to the user. May not be NULL.
2139 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2140 If MUSTMATCH_P, the returned file name must be an existing
2143 Returns a file name or NULL if no file was selected.
2144 The returned string must be freed by the caller. */
2147 xg_get_file_name (struct frame
*f
,
2149 char *default_filename
,
2155 int filesel_done
= 0;
2156 xg_get_file_func func
;
2158 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2160 if (xg_uses_old_file_dialog ())
2161 w
= xg_get_file_with_selection (f
, prompt
, default_filename
,
2162 mustmatch_p
, only_dir_p
, &func
);
2164 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
2165 mustmatch_p
, only_dir_p
, &func
);
2167 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2168 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
2169 mustmatch_p
, only_dir_p
, &func
);
2170 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2172 gtk_widget_set_name (w
, "emacs-filedialog");
2174 filesel_done
= xg_dialog_run (f
, w
);
2175 if (filesel_done
== GTK_RESPONSE_OK
)
2178 gtk_widget_destroy (w
);
2182 /***********************************************************************
2184 ***********************************************************************/
2186 #ifdef HAVE_FREETYPE
2188 #if USE_NEW_GTK_FONT_CHOOSER
2190 #define XG_WEIGHT_TO_SYMBOL(w) \
2191 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2192 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2193 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2194 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2195 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2196 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2197 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2200 #define XG_STYLE_TO_SYMBOL(s) \
2201 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2202 : s == PANGO_STYLE_ITALIC ? Qitalic \
2205 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2208 static char *x_last_font_name
;
2210 /* Pop up a GTK font selector and return the name of the font the user
2211 selects, as a C string. The returned font name follows GTK's own
2214 `FAMILY [VALUE1 VALUE2] SIZE'
2216 This can be parsed using font_parse_fcname in font.c.
2217 DEFAULT_NAME, if non-zero, is the default font name. */
2220 xg_get_font (struct frame
*f
, const char *default_name
)
2224 Lisp_Object font
= Qnil
;
2226 w
= gtk_font_chooser_dialog_new
2227 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2231 /* Convert fontconfig names to Gtk names, i.e. remove - before
2233 char *p
= strrchr (default_name
, '-');
2237 while (c_isdigit (*ep
))
2239 if (*ep
== '\0') *p
= ' ';
2242 else if (x_last_font_name
)
2243 default_name
= x_last_font_name
;
2246 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w
), default_name
);
2248 gtk_widget_set_name (w
, "emacs-fontdialog");
2249 done
= xg_dialog_run (f
, w
);
2250 if (done
== GTK_RESPONSE_OK
)
2252 #if USE_NEW_GTK_FONT_CHOOSER
2253 /* Use the GTK3 font chooser. */
2254 PangoFontDescription
*desc
2255 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w
));
2259 const char *name
= pango_font_description_get_family (desc
);
2260 gint size
= pango_font_description_get_size (desc
);
2261 PangoWeight weight
= pango_font_description_get_weight (desc
);
2262 PangoStyle style
= pango_font_description_get_style (desc
);
2265 #define FONT_TYPE_WANTED (Qftcr)
2267 #define FONT_TYPE_WANTED (Qxft)
2269 font
= CALLN (Ffont_spec
,
2270 QCname
, build_string (name
),
2271 QCsize
, make_float (pango_units_to_double (size
)),
2272 QCweight
, XG_WEIGHT_TO_SYMBOL (weight
),
2273 QCslant
, XG_STYLE_TO_SYMBOL (style
),
2277 pango_font_description_free (desc
);
2278 dupstring (&x_last_font_name
, name
);
2281 #else /* Use old font selector, which just returns the font name. */
2284 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w
));
2288 font
= build_string (font_name
);
2289 g_free (x_last_font_name
);
2290 x_last_font_name
= font_name
;
2292 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2295 gtk_widget_destroy (w
);
2298 #endif /* HAVE_FREETYPE */
2302 /***********************************************************************
2304 ***********************************************************************/
2306 /* The name of menu items that can be used for customization. Since GTK
2307 RC files are very crude and primitive, we have to set this on all
2308 menu item names so a user can easily customize menu items. */
2310 #define MENU_ITEM_NAME "emacs-menuitem"
2313 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2314 during GC. The next member points to the items. */
2315 static xg_list_node xg_menu_cb_list
;
2317 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2318 during GC. The next member points to the items. */
2319 static xg_list_node xg_menu_item_cb_list
;
2321 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2322 F is the frame CL_DATA will be initialized for.
2323 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2325 The menu bar and all sub menus under the menu bar in a frame
2326 share the same structure, hence the reference count.
2328 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2329 allocated xg_menu_cb_data if CL_DATA is NULL. */
2331 static xg_menu_cb_data
*
2332 make_cl_data (xg_menu_cb_data
*cl_data
, struct frame
*f
, GCallback highlight_cb
)
2336 cl_data
= xmalloc (sizeof *cl_data
);
2338 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2339 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2340 cl_data
->highlight_cb
= highlight_cb
;
2341 cl_data
->ref_count
= 0;
2343 xg_list_insert (&xg_menu_cb_list
, &cl_data
->ptrs
);
2346 cl_data
->ref_count
++;
2351 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2352 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2354 When the menu bar is updated, menu items may have been added and/or
2355 removed, so menu_bar_vector and menu_bar_items_used change. We must
2356 then update CL_DATA since it is used to determine which menu
2357 item that is invoked in the menu.
2358 HIGHLIGHT_CB could change, there is no check that the same
2359 function is given when modifying a menu bar as was given when
2360 creating the menu bar. */
2363 update_cl_data (xg_menu_cb_data
*cl_data
,
2365 GCallback highlight_cb
)
2370 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2371 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2372 cl_data
->highlight_cb
= highlight_cb
;
2376 /* Decrease reference count for CL_DATA.
2377 If reference count is zero, free CL_DATA. */
2380 unref_cl_data (xg_menu_cb_data
*cl_data
)
2382 if (cl_data
&& cl_data
->ref_count
> 0)
2384 cl_data
->ref_count
--;
2385 if (cl_data
->ref_count
== 0)
2387 xg_list_remove (&xg_menu_cb_list
, &cl_data
->ptrs
);
2393 /* Function that marks all lisp data during GC. */
2399 Lisp_Object rest
, frame
;
2401 for (iter
= xg_menu_cb_list
.next
; iter
; iter
= iter
->next
)
2402 mark_object (((xg_menu_cb_data
*) iter
)->menu_bar_vector
);
2404 for (iter
= xg_menu_item_cb_list
.next
; iter
; iter
= iter
->next
)
2406 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) iter
;
2408 if (! NILP (cb_data
->help
))
2409 mark_object (cb_data
->help
);
2412 FOR_EACH_FRAME (rest
, frame
)
2414 struct frame
*f
= XFRAME (frame
);
2416 if (FRAME_X_P (f
) && FRAME_GTK_OUTER_WIDGET (f
))
2418 struct xg_frame_tb_info
*tbinfo
2419 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
2423 mark_object (tbinfo
->last_tool_bar
);
2424 mark_object (tbinfo
->style
);
2430 /* Callback called when a menu item is destroyed. Used to free data.
2431 W is the widget that is being destroyed (not used).
2432 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2435 menuitem_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2439 xg_menu_item_cb_data
*data
= client_data
;
2440 xg_list_remove (&xg_menu_item_cb_list
, &data
->ptrs
);
2445 /* Callback called when the pointer enters/leaves a menu item.
2446 W is the parent of the menu item.
2447 EVENT is either an enter event or leave event.
2448 CLIENT_DATA is not used.
2450 Returns FALSE to tell GTK to keep processing this event. */
2453 menuitem_highlight_callback (GtkWidget
*w
,
2454 GdkEventCrossing
*event
,
2455 gpointer client_data
)
2458 GtkWidget
*subwidget
;
2459 xg_menu_item_cb_data
*data
;
2461 ev
.crossing
= *event
;
2462 subwidget
= gtk_get_event_widget (&ev
);
2463 data
= g_object_get_data (G_OBJECT (subwidget
), XG_ITEM_DATA
);
2466 if (! NILP (data
->help
) && data
->cl_data
->highlight_cb
)
2468 gpointer call_data
= event
->type
== GDK_LEAVE_NOTIFY
? 0 : data
;
2469 GtkCallback func
= (GtkCallback
) data
->cl_data
->highlight_cb
;
2470 (*func
) (subwidget
, call_data
);
2477 /* Callback called when a menu is destroyed. Used to free data.
2478 W is the widget that is being destroyed (not used).
2479 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2482 menu_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2484 unref_cl_data (client_data
);
2487 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2488 must be non-NULL) and can be inserted into a menu item.
2490 Returns the GtkHBox. */
2493 make_widget_for_menu_item (const char *utf8_label
, const char *utf8_key
)
2499 wbox
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
2500 gtk_box_set_homogeneous (GTK_BOX (wbox
), FALSE
);
2501 wlbl
= gtk_label_new (utf8_label
);
2502 wkey
= gtk_label_new (utf8_key
);
2504 #if GTK_CHECK_VERSION (3, 14, 0)
2505 gtk_widget_set_halign (wlbl
, GTK_ALIGN_START
);
2506 gtk_widget_set_valign (wlbl
, GTK_ALIGN_CENTER
);
2507 gtk_widget_set_halign (wkey
, GTK_ALIGN_START
);
2508 gtk_widget_set_valign (wkey
, GTK_ALIGN_CENTER
);
2510 gtk_misc_set_alignment (GTK_MISC (wlbl
), 0.0, 0.5);
2511 gtk_misc_set_alignment (GTK_MISC (wkey
), 0.0, 0.5);
2513 gtk_box_pack_start (GTK_BOX (wbox
), wlbl
, TRUE
, TRUE
, 0);
2514 gtk_box_pack_start (GTK_BOX (wbox
), wkey
, FALSE
, FALSE
, 0);
2516 gtk_widget_set_name (wlbl
, MENU_ITEM_NAME
);
2517 gtk_widget_set_name (wkey
, MENU_ITEM_NAME
);
2518 gtk_widget_set_name (wbox
, MENU_ITEM_NAME
);
2523 /* Make and return a menu item widget with the key to the right.
2524 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2525 UTF8_KEY is the text representing the key binding.
2526 ITEM is the widget_value describing the menu item.
2528 GROUP is an in/out parameter. If the menu item to be created is not
2529 part of any radio menu group, *GROUP contains NULL on entry and exit.
2530 If the menu item to be created is part of a radio menu group, on entry
2531 *GROUP contains the group to use, or NULL if this is the first item
2532 in the group. On exit, *GROUP contains the radio item group.
2534 Unfortunately, keys don't line up as nicely as in Motif,
2535 but the macOS version doesn't either, so I guess that is OK. */
2538 make_menu_item (const char *utf8_label
,
2539 const char *utf8_key
,
2544 GtkWidget
*wtoadd
= 0;
2546 /* It has been observed that some menu items have a NULL name field.
2547 This will lead to this function being called with a NULL utf8_label.
2548 GTK crashes on that so we set a blank label. Why there is a NULL
2549 name remains to be investigated. */
2550 if (! utf8_label
) utf8_label
= " ";
2553 wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
2555 if (item
->button_type
== BUTTON_TYPE_TOGGLE
)
2558 if (utf8_key
) w
= gtk_check_menu_item_new ();
2559 else w
= gtk_check_menu_item_new_with_label (utf8_label
);
2560 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), item
->selected
);
2562 else if (item
->button_type
== BUTTON_TYPE_RADIO
)
2564 if (utf8_key
) w
= gtk_radio_menu_item_new (*group
);
2565 else w
= gtk_radio_menu_item_new_with_label (*group
, utf8_label
);
2566 *group
= gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w
));
2568 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), TRUE
);
2573 if (utf8_key
) w
= gtk_menu_item_new ();
2574 else w
= gtk_menu_item_new_with_label (utf8_label
);
2577 if (wtoadd
) gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
2578 if (! item
->enabled
) gtk_widget_set_sensitive (w
, FALSE
);
2583 /* Create a menu item widget, and connect the callbacks.
2584 ITEM describes the menu item.
2585 F is the frame the created menu belongs to.
2586 SELECT_CB is the callback to use when a menu item is selected.
2587 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2588 CL_DATA points to the callback data to be used for this menu.
2589 GROUP is an in/out parameter. If the menu item to be created is not
2590 part of any radio menu group, *GROUP contains NULL on entry and exit.
2591 If the menu item to be created is part of a radio menu group, on entry
2592 *GROUP contains the group to use, or NULL if this is the first item
2593 in the group. On exit, *GROUP contains the radio item group.
2595 Returns the created GtkWidget. */
2598 xg_create_one_menuitem (widget_value
*item
,
2600 GCallback select_cb
,
2601 GCallback highlight_cb
,
2602 xg_menu_cb_data
*cl_data
,
2608 xg_menu_item_cb_data
*cb_data
;
2610 utf8_label
= get_utf8_string (item
->name
);
2611 utf8_key
= get_utf8_string (item
->key
);
2613 w
= make_menu_item (utf8_label
, utf8_key
, item
, group
);
2615 if (utf8_label
) g_free (utf8_label
);
2616 if (utf8_key
) g_free (utf8_key
);
2618 cb_data
= xmalloc (sizeof *cb_data
);
2620 xg_list_insert (&xg_menu_item_cb_list
, &cb_data
->ptrs
);
2622 cb_data
->select_id
= 0;
2623 cb_data
->help
= item
->help
;
2624 cb_data
->cl_data
= cl_data
;
2625 cb_data
->call_data
= item
->call_data
;
2627 g_signal_connect (G_OBJECT (w
),
2629 G_CALLBACK (menuitem_destroy_callback
),
2632 /* Put cb_data in widget, so we can get at it when modifying menubar */
2633 g_object_set_data (G_OBJECT (w
), XG_ITEM_DATA
, cb_data
);
2635 /* final item, not a submenu */
2636 if (item
->call_data
&& ! item
->contents
)
2640 = g_signal_connect (G_OBJECT (w
), "activate", select_cb
, cb_data
);
2646 /* Create a full menu tree specified by DATA.
2647 F is the frame the created menu belongs to.
2648 SELECT_CB is the callback to use when a menu item is selected.
2649 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2650 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2651 If POP_UP_P, create a popup menu.
2652 If MENU_BAR_P, create a menu bar.
2653 TOPMENU is the topmost GtkWidget that others shall be placed under.
2654 It may be NULL, in that case we create the appropriate widget
2655 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2656 CL_DATA is the callback data we shall use for this menu, or NULL
2657 if we haven't set the first callback yet.
2658 NAME is the name to give to the top level menu if this function
2659 creates it. May be NULL to not set any name.
2661 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2664 This function calls itself to create submenus. */
2667 create_menus (widget_value
*data
,
2669 GCallback select_cb
,
2670 GCallback deactivate_cb
,
2671 GCallback highlight_cb
,
2675 xg_menu_cb_data
*cl_data
,
2679 GtkWidget
*wmenu
= topmenu
;
2680 GSList
*group
= NULL
;
2686 wmenu
= gtk_menu_new ();
2687 xg_set_screen (wmenu
, f
);
2688 /* Connect this to the menu instead of items so we get enter/leave for
2689 disabled items also. TODO: Still does not get enter/leave for
2690 disabled items in detached menus. */
2691 g_signal_connect (G_OBJECT (wmenu
),
2692 "enter-notify-event",
2693 G_CALLBACK (menuitem_highlight_callback
),
2695 g_signal_connect (G_OBJECT (wmenu
),
2696 "leave-notify-event",
2697 G_CALLBACK (menuitem_highlight_callback
),
2702 wmenu
= gtk_menu_bar_new ();
2703 /* Set width of menu bar to a small value so it doesn't enlarge
2704 a small initial frame size. The width will be set to the
2705 width of the frame later on when it is added to a container.
2706 height -1: Natural height. */
2707 gtk_widget_set_size_request (wmenu
, 1, -1);
2710 /* Put cl_data on the top menu for easier access. */
2711 cl_data
= make_cl_data (cl_data
, f
, highlight_cb
);
2712 g_object_set_data (G_OBJECT (wmenu
), XG_FRAME_DATA
, (gpointer
)cl_data
);
2713 g_signal_connect (G_OBJECT (wmenu
), "destroy",
2714 G_CALLBACK (menu_destroy_callback
), cl_data
);
2717 gtk_widget_set_name (wmenu
, name
);
2720 g_signal_connect (G_OBJECT (wmenu
),
2721 "selection-done", deactivate_cb
, 0);
2724 for (item
= data
; item
; item
= item
->next
)
2728 if (pop_up_p
&& !item
->contents
&& !item
->call_data
2729 && !menu_separator_name_p (item
->name
))
2732 /* A title for a popup. We do the same as GTK does when
2733 creating titles, but it does not look good. */
2735 utf8_label
= get_utf8_string (item
->name
);
2737 w
= gtk_menu_item_new_with_label (utf8_label
);
2738 gtk_widget_set_sensitive (w
, FALSE
);
2739 if (utf8_label
) g_free (utf8_label
);
2741 else if (menu_separator_name_p (item
->name
))
2744 /* GTK only have one separator type. */
2745 w
= gtk_separator_menu_item_new ();
2749 w
= xg_create_one_menuitem (item
,
2751 item
->contents
? 0 : select_cb
,
2756 /* Create a possibly empty submenu for menu bar items, since some
2757 themes don't highlight items correctly without it. */
2758 if (item
->contents
|| menu_bar_p
)
2760 GtkWidget
*submenu
= create_menus (item
->contents
,
2770 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
2774 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu
), w
);
2775 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
2781 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2782 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2783 with some text and buttons.
2784 F is the frame the created item belongs to.
2785 NAME is the name to use for the top widget.
2786 VAL is a widget_value structure describing items to be created.
2787 SELECT_CB is the callback to use when a menu item is selected or
2788 a dialog button is pressed.
2789 DEACTIVATE_CB is the callback to use when an item is deactivated.
2790 For a menu, when a sub menu is not shown anymore, for a dialog it is
2791 called when the dialog is popped down.
2792 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2794 Returns the widget created. */
2797 xg_create_widget (const char *type
, const char *name
, struct frame
*f
,
2798 widget_value
*val
, GCallback select_cb
,
2799 GCallback deactivate_cb
, GCallback highlight_cb
)
2802 bool menu_bar_p
= strcmp (type
, "menubar") == 0;
2803 bool pop_up_p
= strcmp (type
, "popup") == 0;
2805 if (strcmp (type
, "dialog") == 0)
2807 w
= create_dialog (val
, select_cb
, deactivate_cb
);
2808 xg_set_screen (w
, f
);
2809 gtk_window_set_transient_for (GTK_WINDOW (w
),
2810 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2811 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
2812 gtk_widget_set_name (w
, "emacs-dialog");
2813 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
2815 else if (menu_bar_p
|| pop_up_p
)
2817 w
= create_menus (val
->contents
,
2828 /* Set the cursor to an arrow for popup menus when they are mapped.
2829 This is done by default for menu bar menus. */
2832 /* Must realize so the GdkWindow inside the widget is created. */
2833 gtk_widget_realize (w
);
2834 xg_set_cursor (w
, FRAME_DISPLAY_INFO (f
)->xg_cursor
);
2839 fprintf (stderr
, "bad type in xg_create_widget: %s, doing nothing\n",
2846 /* Return the label for menu item WITEM. */
2849 xg_get_menu_item_label (GtkMenuItem
*witem
)
2851 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
2852 return gtk_label_get_label (wlabel
);
2855 /* Return true if the menu item WITEM has the text LABEL. */
2858 xg_item_label_same_p (GtkMenuItem
*witem
, const char *label
)
2861 char *utf8_label
= get_utf8_string (label
);
2862 const char *old_label
= witem
? xg_get_menu_item_label (witem
) : 0;
2864 if (! old_label
&& ! utf8_label
)
2866 else if (old_label
&& utf8_label
)
2867 is_same
= strcmp (utf8_label
, old_label
) == 0;
2869 if (utf8_label
) g_free (utf8_label
);
2874 /* Destroy widgets in LIST. */
2877 xg_destroy_widgets (GList
*list
)
2881 for (iter
= list
; iter
; iter
= g_list_next (iter
))
2883 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
2885 /* Destroying the widget will remove it from the container it is in. */
2886 gtk_widget_destroy (w
);
2890 /* Update the top level names in MENUBAR (i.e. not submenus).
2891 F is the frame the menu bar belongs to.
2892 *LIST is a list with the current menu bar names (menu item widgets).
2893 ITER is the item within *LIST that shall be updated.
2894 POS is the numerical position, starting at 0, of ITER in *LIST.
2895 VAL describes what the menu bar shall look like after the update.
2896 SELECT_CB is the callback to use when a menu item is selected.
2897 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2898 CL_DATA points to the callback data to be used for this menu bar.
2900 This function calls itself to walk through the menu bar names. */
2903 xg_update_menubar (GtkWidget
*menubar
,
2909 GCallback select_cb
,
2910 GCallback deactivate_cb
,
2911 GCallback highlight_cb
,
2912 xg_menu_cb_data
*cl_data
)
2914 if (! iter
&& ! val
)
2916 else if (iter
&& ! val
)
2918 /* Item(s) have been removed. Remove all remaining items. */
2919 xg_destroy_widgets (iter
);
2921 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2922 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
2923 gtk_menu_item_new_with_label (""),
2929 else if (! iter
&& val
)
2931 /* Item(s) added. Add all new items in one call. */
2932 create_menus (val
, f
, select_cb
, deactivate_cb
, highlight_cb
,
2933 0, 1, menubar
, cl_data
, 0);
2939 /* Below this neither iter or val is NULL */
2940 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter
->data
), val
->name
))
2942 /* This item is still the same, check next item. */
2944 iter
= g_list_next (iter
);
2947 else /* This item is changed. */
2949 GtkMenuItem
*witem
= GTK_MENU_ITEM (iter
->data
);
2950 GtkMenuItem
*witem2
= 0;
2951 bool val_in_menubar
= 0;
2952 bool iter_in_new_menubar
= 0;
2956 /* See if the changed entry (val) is present later in the menu bar */
2958 iter2
&& ! val_in_menubar
;
2959 iter2
= g_list_next (iter2
))
2961 witem2
= GTK_MENU_ITEM (iter2
->data
);
2962 val_in_menubar
= xg_item_label_same_p (witem2
, val
->name
);
2965 /* See if the current entry (iter) is present later in the
2966 specification for the new menu bar. */
2967 for (cur
= val
; cur
&& ! iter_in_new_menubar
; cur
= cur
->next
)
2968 iter_in_new_menubar
= xg_item_label_same_p (witem
, cur
->name
);
2970 if (val_in_menubar
&& ! iter_in_new_menubar
)
2974 /* This corresponds to:
2979 g_object_ref (G_OBJECT (witem
));
2980 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem
));
2981 gtk_widget_destroy (GTK_WIDGET (witem
));
2983 /* Must get new list since the old changed. */
2984 g_list_free (*list
);
2985 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
2986 while (nr
-- > 0) iter
= g_list_next (iter
);
2988 else if (! val_in_menubar
&& ! iter_in_new_menubar
)
2990 /* This corresponds to:
2993 Rename B to X. This might seem to be a strange thing to do,
2994 since if there is a menu under B it will be totally wrong for X.
2995 But consider editing a C file. Then there is a C-mode menu
2996 (corresponds to B above).
2997 If then doing C-x C-f the minibuf menu (X above) replaces the
2998 C-mode menu. When returning from the minibuffer, we get
2999 back the C-mode menu. Thus we do:
3000 Rename B to X (C-mode to minibuf menu)
3001 Rename X to B (minibuf to C-mode menu).
3002 If the X menu hasn't been invoked, the menu under B
3003 is up to date when leaving the minibuffer. */
3004 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
3005 char *utf8_label
= get_utf8_string (val
->name
);
3007 /* GTK menu items don't notice when their labels have been
3008 changed from underneath them, so we have to explicitly
3009 use g_object_notify to tell listeners (e.g., a GMenuModel
3010 bridge that might be loaded) that the item's label has
3012 gtk_label_set_text (wlabel
, utf8_label
);
3013 #if GTK_CHECK_VERSION (2, 16, 0)
3014 g_object_notify (G_OBJECT (witem
), "label");
3016 if (utf8_label
) g_free (utf8_label
);
3017 iter
= g_list_next (iter
);
3021 else if (! val_in_menubar
&& iter_in_new_menubar
)
3023 /* This corresponds to:
3030 GtkWidget
*w
= xg_create_one_menuitem (val
,
3037 /* Create a possibly empty submenu for menu bar items, since some
3038 themes don't highlight items correctly without it. */
3039 GtkWidget
*submenu
= create_menus (NULL
, f
,
3040 select_cb
, deactivate_cb
,
3042 0, 0, 0, cl_data
, 0);
3044 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
3045 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
), w
, pos
);
3046 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
3048 g_list_free (*list
);
3049 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3050 while (nr
-- > 0) iter
= g_list_next (iter
);
3051 iter
= g_list_next (iter
);
3055 else /* if (val_in_menubar && iter_in_new_menubar) */
3058 /* This corresponds to:
3063 g_object_ref (G_OBJECT (witem2
));
3064 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem2
));
3065 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
3066 GTK_WIDGET (witem2
), pos
);
3067 g_object_unref (G_OBJECT (witem2
));
3069 g_list_free (*list
);
3070 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3071 while (nr
-- > 0) iter
= g_list_next (iter
);
3072 if (iter
) iter
= g_list_next (iter
);
3078 /* Update the rest of the menu bar. */
3079 xg_update_menubar (menubar
, f
, list
, iter
, pos
, val
,
3080 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3083 /* Update the menu item W so it corresponds to VAL.
3084 SELECT_CB is the callback to use when a menu item is selected.
3085 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3086 CL_DATA is the data to set in the widget for menu invocation. */
3089 xg_update_menu_item (widget_value
*val
,
3091 GCallback select_cb
,
3092 GCallback highlight_cb
,
3093 xg_menu_cb_data
*cl_data
)
3100 const char *old_label
= 0;
3101 const char *old_key
= 0;
3102 xg_menu_item_cb_data
*cb_data
;
3103 bool label_changed
= false;
3105 wchild
= XG_BIN_CHILD (w
);
3106 utf8_label
= get_utf8_string (val
->name
);
3107 utf8_key
= get_utf8_string (val
->key
);
3109 /* See if W is a menu item with a key. See make_menu_item above. */
3110 if (GTK_IS_BOX (wchild
))
3112 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wchild
));
3114 wlbl
= GTK_LABEL (list
->data
);
3115 wkey
= GTK_LABEL (list
->next
->data
);
3120 /* Remove the key and keep just the label. */
3121 g_object_ref (G_OBJECT (wlbl
));
3122 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
3123 gtk_container_add (GTK_CONTAINER (w
), GTK_WIDGET (wlbl
));
3124 g_object_unref (G_OBJECT (wlbl
));
3129 else /* Just a label. */
3131 wlbl
= GTK_LABEL (wchild
);
3133 /* Check if there is now a key. */
3136 GtkWidget
*wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
3137 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wtoadd
));
3139 wlbl
= GTK_LABEL (list
->data
);
3140 wkey
= GTK_LABEL (list
->next
->data
);
3143 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
3144 gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
3148 if (wkey
) old_key
= gtk_label_get_label (wkey
);
3149 if (wlbl
) old_label
= gtk_label_get_label (wlbl
);
3151 if (wkey
&& utf8_key
&& (! old_key
|| strcmp (utf8_key
, old_key
) != 0))
3153 label_changed
= true;
3154 gtk_label_set_text (wkey
, utf8_key
);
3157 if (! old_label
|| strcmp (utf8_label
, old_label
) != 0)
3159 label_changed
= true;
3160 gtk_label_set_text (wlbl
, utf8_label
);
3163 if (utf8_key
) g_free (utf8_key
);
3164 if (utf8_label
) g_free (utf8_label
);
3166 if (! val
->enabled
&& gtk_widget_get_sensitive (w
))
3167 gtk_widget_set_sensitive (w
, FALSE
);
3168 else if (val
->enabled
&& ! gtk_widget_get_sensitive (w
))
3169 gtk_widget_set_sensitive (w
, TRUE
);
3171 cb_data
= g_object_get_data (G_OBJECT (w
), XG_ITEM_DATA
);
3174 cb_data
->call_data
= val
->call_data
;
3175 cb_data
->help
= val
->help
;
3176 cb_data
->cl_data
= cl_data
;
3178 /* We assume the callback functions don't change. */
3179 if (val
->call_data
&& ! val
->contents
)
3181 /* This item shall have a select callback. */
3182 if (! cb_data
->select_id
)
3184 = g_signal_connect (G_OBJECT (w
), "activate",
3185 select_cb
, cb_data
);
3187 else if (cb_data
->select_id
)
3189 g_signal_handler_disconnect (w
, cb_data
->select_id
);
3190 cb_data
->select_id
= 0;
3194 #if GTK_CHECK_VERSION (2, 16, 0)
3195 if (label_changed
) /* See comment in xg_update_menubar. */
3196 g_object_notify (G_OBJECT (w
), "label");
3200 /* Update the toggle menu item W so it corresponds to VAL. */
3203 xg_update_toggle_item (widget_value
*val
, GtkWidget
*w
)
3205 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
3208 /* Update the radio menu item W so it corresponds to VAL. */
3211 xg_update_radio_item (widget_value
*val
, GtkWidget
*w
)
3213 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
3216 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3217 SUBMENU may be NULL, in that case a new menu is created.
3218 F is the frame the menu bar belongs to.
3219 VAL describes the contents of the menu bar.
3220 SELECT_CB is the callback to use when a menu item is selected.
3221 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3222 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3223 CL_DATA is the call back data to use for any newly created items.
3225 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3229 xg_update_submenu (GtkWidget
*submenu
,
3232 GCallback select_cb
,
3233 GCallback deactivate_cb
,
3234 GCallback highlight_cb
,
3235 xg_menu_cb_data
*cl_data
)
3237 GtkWidget
*newsub
= submenu
;
3241 GList
*first_radio
= 0;
3244 list
= gtk_container_get_children (GTK_CONTAINER (submenu
));
3246 for (cur
= val
, iter
= list
;
3248 iter
= g_list_next (iter
), cur
= cur
->next
)
3250 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3252 /* Remember first radio button in a group. If we get a mismatch in
3253 a radio group we must rebuild the whole group so that the connections
3254 in GTK becomes correct. */
3255 if (cur
->button_type
== BUTTON_TYPE_RADIO
&& ! first_radio
)
3257 else if (cur
->button_type
!= BUTTON_TYPE_RADIO
3258 && ! GTK_IS_RADIO_MENU_ITEM (w
))
3261 if (GTK_IS_SEPARATOR_MENU_ITEM (w
))
3263 if (! menu_separator_name_p (cur
->name
))
3266 else if (GTK_IS_CHECK_MENU_ITEM (w
))
3268 if (cur
->button_type
!= BUTTON_TYPE_TOGGLE
)
3270 xg_update_toggle_item (cur
, w
);
3271 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3273 else if (GTK_IS_RADIO_MENU_ITEM (w
))
3275 if (cur
->button_type
!= BUTTON_TYPE_RADIO
)
3277 xg_update_radio_item (cur
, w
);
3278 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3280 else if (GTK_IS_MENU_ITEM (w
))
3282 GtkMenuItem
*witem
= GTK_MENU_ITEM (w
);
3285 if (cur
->button_type
!= BUTTON_TYPE_NONE
||
3286 menu_separator_name_p (cur
->name
))
3289 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3291 sub
= gtk_menu_item_get_submenu (witem
);
3292 if (sub
&& ! cur
->contents
)
3294 /* Not a submenu anymore. */
3295 g_object_ref (G_OBJECT (sub
));
3296 remove_submenu (witem
);
3297 gtk_widget_destroy (sub
);
3299 else if (cur
->contents
)
3303 nsub
= xg_update_submenu (sub
, f
, cur
->contents
,
3304 select_cb
, deactivate_cb
,
3305 highlight_cb
, cl_data
);
3307 /* If this item just became a submenu, we must set it. */
3309 gtk_menu_item_set_submenu (witem
, nsub
);
3314 /* Structural difference. Remove everything from here and down
3320 /* Remove widgets from first structural change. */
3323 /* If we are adding new menu items below, we must remove from
3324 first radio button so that radio groups become correct. */
3325 if (cur
&& first_radio
) xg_destroy_widgets (first_radio
);
3326 else xg_destroy_widgets (iter
);
3331 /* More items added. Create them. */
3332 newsub
= create_menus (cur
,
3344 if (list
) g_list_free (list
);
3349 /* Update the MENUBAR.
3350 F is the frame the menu bar belongs to.
3351 VAL describes the contents of the menu bar.
3352 If DEEP_P, rebuild all but the top level menu names in
3353 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3354 SELECT_CB is the callback to use when a menu item is selected.
3355 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3356 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3359 xg_modify_menubar_widgets (GtkWidget
*menubar
, struct frame
*f
,
3360 widget_value
*val
, bool deep_p
,
3361 GCallback select_cb
, GCallback deactivate_cb
,
3362 GCallback highlight_cb
)
3364 xg_menu_cb_data
*cl_data
;
3365 GList
*list
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3369 cl_data
= g_object_get_data (G_OBJECT (menubar
), XG_FRAME_DATA
);
3371 xg_update_menubar (menubar
, f
, &list
, list
, 0, val
->contents
,
3372 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3378 /* Update all sub menus.
3379 We must keep the submenus (GTK menu item widgets) since the
3380 X Window in the XEvent that activates the menu are those widgets. */
3382 /* Update cl_data, menu_item things in F may have changed. */
3383 update_cl_data (cl_data
, f
, highlight_cb
);
3385 for (cur
= val
->contents
; cur
; cur
= cur
->next
)
3390 GtkMenuItem
*witem
= 0;
3392 /* Find sub menu that corresponds to val and update it. */
3393 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3395 witem
= GTK_MENU_ITEM (iter
->data
);
3396 if (xg_item_label_same_p (witem
, cur
->name
))
3398 sub
= gtk_menu_item_get_submenu (witem
);
3403 newsub
= xg_update_submenu (sub
,
3410 /* sub may still be NULL. If we just updated non deep and added
3411 a new menu bar item, it has no sub menu yet. So we set the
3412 newly created sub menu under witem. */
3413 if (newsub
!= sub
&& witem
!= 0)
3415 xg_set_screen (newsub
, f
);
3416 gtk_menu_item_set_submenu (witem
, newsub
);
3422 gtk_widget_show_all (menubar
);
3425 /* Callback called when the menu bar W is mapped.
3426 Used to find the height of the menu bar if we didn't get it
3427 after showing the widget. */
3430 menubar_map_cb (GtkWidget
*w
, gpointer user_data
)
3433 struct frame
*f
= user_data
;
3434 gtk_widget_get_preferred_size (w
, NULL
, &req
);
3435 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3437 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3438 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3442 /* Recompute all the widgets of frame F, when the menu bar has been
3446 xg_update_frame_menubar (struct frame
*f
)
3448 struct x_output
*x
= f
->output_data
.x
;
3451 if (!x
->menubar_widget
|| gtk_widget_get_mapped (x
->menubar_widget
))
3454 if (x
->menubar_widget
&& gtk_widget_get_parent (x
->menubar_widget
))
3455 return; /* Already done this, happens for frames created invisible. */
3459 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
,
3461 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
, 0);
3463 g_signal_connect (x
->menubar_widget
, "map", G_CALLBACK (menubar_map_cb
), f
);
3464 gtk_widget_show_all (x
->menubar_widget
);
3465 gtk_widget_get_preferred_size (x
->menubar_widget
, NULL
, &req
);
3467 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3469 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3470 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3475 /* Get rid of the menu bar of frame F, and free its storage.
3476 This is used when deleting a frame, and when turning off the menu bar. */
3479 free_frame_menubar (struct frame
*f
)
3481 struct x_output
*x
= f
->output_data
.x
;
3483 if (x
->menubar_widget
)
3487 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
), x
->menubar_widget
);
3488 /* The menubar and its children shall be deleted when removed from
3490 x
->menubar_widget
= 0;
3491 FRAME_MENUBAR_HEIGHT (f
) = 0;
3492 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3498 xg_event_is_for_menubar (struct frame
*f
, const XEvent
*event
)
3500 struct x_output
*x
= f
->output_data
.x
;
3509 if (! x
->menubar_widget
) return 0;
3511 if (! (event
->xbutton
.x
>= 0
3512 && event
->xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
3513 && event
->xbutton
.y
>= 0
3514 && event
->xbutton
.y
< FRAME_MENUBAR_HEIGHT (f
)
3515 && event
->xbutton
.same_screen
))
3518 gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
3519 gw
= gdk_x11_window_lookup_for_display (gdpy
, event
->xbutton
.window
);
3521 gevent
.any
.window
= gw
;
3522 gevent
.any
.type
= GDK_NOTHING
;
3523 gwdesc
= gtk_get_event_widget (&gevent
);
3524 if (! gwdesc
) return 0;
3525 if (! GTK_IS_MENU_BAR (gwdesc
)
3526 && ! GTK_IS_MENU_ITEM (gwdesc
)
3527 && ! gtk_widget_is_ancestor (x
->menubar_widget
, gwdesc
))
3530 list
= gtk_container_get_children (GTK_CONTAINER (x
->menubar_widget
));
3531 if (! list
) return 0;
3532 rec
.x
= event
->xbutton
.x
;
3533 rec
.y
= event
->xbutton
.y
;
3537 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3539 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3540 if (gtk_widget_get_mapped (w
) && gtk_widget_intersect (w
, &rec
, NULL
))
3549 /***********************************************************************
3550 Scroll bar functions
3551 ***********************************************************************/
3554 /* Setting scroll bar values invokes the callback. Use this variable
3555 to indicate that callback should do nothing. */
3557 bool xg_ignore_gtk_scrollbar
;
3559 /* Width and height of scroll bars for the current theme. */
3560 static int scroll_bar_width_for_theme
;
3561 static int scroll_bar_height_for_theme
;
3563 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3564 may be larger than 32 bits. Keep a mapping from integer index to widget
3565 pointers to get around the 32 bit limitation. */
3569 GtkWidget
**widgets
;
3574 /* Grow this much every time we need to allocate more */
3576 #define ID_TO_WIDGET_INCR 32
3578 /* Store the widget pointer W in id_to_widget and return the integer index. */
3581 xg_store_widget_in_map (GtkWidget
*w
)
3585 if (id_to_widget
.max_size
== id_to_widget
.used
)
3588 if (TYPE_MAXIMUM (Window
) - ID_TO_WIDGET_INCR
< id_to_widget
.max_size
)
3589 memory_full (SIZE_MAX
);
3591 new_size
= id_to_widget
.max_size
+ ID_TO_WIDGET_INCR
;
3592 id_to_widget
.widgets
= xnrealloc (id_to_widget
.widgets
,
3593 new_size
, sizeof (GtkWidget
*));
3595 for (i
= id_to_widget
.max_size
; i
< new_size
; ++i
)
3596 id_to_widget
.widgets
[i
] = 0;
3597 id_to_widget
.max_size
= new_size
;
3600 /* Just loop over the array and find a free place. After all,
3601 how many scroll bars are we creating? Should be a small number.
3602 The check above guarantees we will find a free place. */
3603 for (i
= 0; i
< id_to_widget
.max_size
; ++i
)
3605 if (! id_to_widget
.widgets
[i
])
3607 id_to_widget
.widgets
[i
] = w
;
3608 ++id_to_widget
.used
;
3614 /* Should never end up here */
3618 /* Remove pointer at IDX from id_to_widget.
3619 Called when scroll bar is destroyed. */
3622 xg_remove_widget_from_map (ptrdiff_t idx
)
3624 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3626 id_to_widget
.widgets
[idx
] = 0;
3627 --id_to_widget
.used
;
3631 /* Get the widget pointer at IDX from id_to_widget. */
3634 xg_get_widget_from_map (ptrdiff_t idx
)
3636 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3637 return id_to_widget
.widgets
[idx
];
3643 update_theme_scrollbar_width (void)
3646 GtkAdjustment
*vadj
;
3653 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
, 0.1, 0.1, 0.1);
3654 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL
, GTK_ADJUSTMENT (vadj
));
3655 g_object_ref_sink (G_OBJECT (wscroll
));
3656 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3657 gtk_widget_destroy (wscroll
);
3658 g_object_unref (G_OBJECT (wscroll
));
3663 scroll_bar_width_for_theme
= w
;
3667 update_theme_scrollbar_height (void)
3670 GtkAdjustment
*hadj
;
3677 hadj
= gtk_adjustment_new (YG_SB_MIN
, YG_SB_MIN
, YG_SB_MAX
, 0.1, 0.1, 0.1);
3678 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL
, GTK_ADJUSTMENT (hadj
));
3679 g_object_ref_sink (G_OBJECT (wscroll
));
3680 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3681 gtk_widget_destroy (wscroll
);
3682 g_object_unref (G_OBJECT (wscroll
));
3685 scroll_bar_height_for_theme
= w
;
3689 xg_get_default_scrollbar_width (struct frame
*f
)
3691 return scroll_bar_width_for_theme
* xg_get_scale (f
);
3695 xg_get_default_scrollbar_height (struct frame
*f
)
3697 /* Apparently there's no default height for themes. */
3698 return scroll_bar_width_for_theme
* xg_get_scale (f
);
3701 /* Return the scrollbar id for X Window WID on display DPY.
3702 Return -1 if WID not in id_to_widget. */
3705 xg_get_scroll_id_for_window (Display
*dpy
, Window wid
)
3710 w
= xg_win_to_widget (dpy
, wid
);
3714 for (idx
= 0; idx
< id_to_widget
.max_size
; ++idx
)
3715 if (id_to_widget
.widgets
[idx
] == w
)
3722 /* Callback invoked when scroll bar WIDGET is destroyed.
3723 DATA is the index into id_to_widget for WIDGET.
3724 We free pointer to last scroll bar values here and remove the index. */
3727 xg_gtk_scroll_destroy (GtkWidget
*widget
, gpointer data
)
3729 intptr_t id
= (intptr_t) data
;
3730 xg_remove_widget_from_map (id
);
3734 xg_finish_scroll_bar_creation (struct frame
*f
,
3736 struct scroll_bar
*bar
,
3737 GCallback scroll_callback
,
3738 GCallback end_callback
,
3739 const char *scroll_bar_name
)
3741 GtkWidget
*webox
= gtk_event_box_new ();
3743 gtk_widget_set_name (wscroll
, scroll_bar_name
);
3745 gtk_range_set_update_policy (GTK_RANGE (wscroll
), GTK_UPDATE_CONTINUOUS
);
3747 g_object_set_data (G_OBJECT (wscroll
), XG_FRAME_DATA
, (gpointer
)f
);
3749 ptrdiff_t scroll_id
= xg_store_widget_in_map (wscroll
);
3751 g_signal_connect (G_OBJECT (wscroll
),
3753 G_CALLBACK (xg_gtk_scroll_destroy
),
3754 (gpointer
) scroll_id
);
3755 g_signal_connect (G_OBJECT (wscroll
),
3759 g_signal_connect (G_OBJECT (wscroll
),
3760 "button-release-event",
3764 /* The scroll bar widget does not draw on a window of its own. Instead
3765 it draws on the parent window, in this case the edit widget. So
3766 whenever the edit widget is cleared, the scroll bar needs to redraw
3767 also, which causes flicker. Put an event box between the edit widget
3768 and the scroll bar, so the scroll bar instead draws itself on the
3769 event box window. */
3770 gtk_fixed_put (GTK_FIXED (f
->output_data
.x
->edit_widget
), webox
, -1, -1);
3771 gtk_container_add (GTK_CONTAINER (webox
), wscroll
);
3773 xg_set_widget_bg (f
, webox
, FRAME_BACKGROUND_PIXEL (f
));
3775 /* N.B. The event box doesn't become a real X11 window until we ask
3776 for its XID via GTK_WIDGET_TO_X_WIN. If the event box is not a
3777 real X window, it and its scroll-bar child try to draw on the
3778 Emacs main window, which we draw over using Xlib. */
3779 gtk_widget_realize (webox
);
3780 GTK_WIDGET_TO_X_WIN (webox
);
3782 /* Set the cursor to an arrow. */
3783 xg_set_cursor (webox
, FRAME_DISPLAY_INFO (f
)->xg_cursor
);
3785 bar
->x_window
= scroll_id
;
3788 /* Create a scroll bar widget for frame F. Store the scroll bar
3790 SCROLL_CALLBACK is the callback to invoke when the value of the
3792 END_CALLBACK is the callback to invoke when scrolling ends.
3793 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3794 to set resources for the widget. */
3797 xg_create_scroll_bar (struct frame
*f
,
3798 struct scroll_bar
*bar
,
3799 GCallback scroll_callback
,
3800 GCallback end_callback
,
3801 const char *scroll_bar_name
)
3805 GtkAdjustment
*vadj
;
3810 /* Page, step increment values are not so important here, they
3811 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3812 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
,
3815 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL
, GTK_ADJUSTMENT (vadj
));
3817 xg_finish_scroll_bar_creation (f
, wscroll
, bar
, scroll_callback
,
3818 end_callback
, scroll_bar_name
);
3819 bar
->horizontal
= 0;
3822 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3823 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3824 of the bar changes. END_CALLBACK is the callback to invoke when
3825 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3826 bar. Can be used to set resources for the widget. */
3829 xg_create_horizontal_scroll_bar (struct frame
*f
,
3830 struct scroll_bar
*bar
,
3831 GCallback scroll_callback
,
3832 GCallback end_callback
,
3833 const char *scroll_bar_name
)
3837 GtkAdjustment
*hadj
;
3842 /* Page, step increment values are not so important here, they
3843 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3844 hadj
= gtk_adjustment_new (YG_SB_MIN
, YG_SB_MIN
, YG_SB_MAX
,
3847 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL
, GTK_ADJUSTMENT (hadj
));
3849 xg_finish_scroll_bar_creation (f
, wscroll
, bar
, scroll_callback
,
3850 end_callback
, scroll_bar_name
);
3851 bar
->horizontal
= 1;
3854 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3857 xg_remove_scroll_bar (struct frame
*f
, ptrdiff_t scrollbar_id
)
3859 GtkWidget
*w
= xg_get_widget_from_map (scrollbar_id
);
3862 GtkWidget
*wparent
= gtk_widget_get_parent (w
);
3863 gtk_widget_destroy (w
);
3864 gtk_widget_destroy (wparent
);
3865 SET_FRAME_GARBAGED (f
);
3869 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3871 TOP/LEFT are the new pixel positions where the bar shall appear.
3872 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3875 xg_update_scrollbar_pos (struct frame
*f
,
3876 ptrdiff_t scrollbar_id
,
3882 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3885 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3886 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3888 int scale
= xg_get_scale (f
);
3893 left
-= (scale
- 1) * ((width
/ scale
) >> 1);
3895 /* Clear out old position. */
3896 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3897 if (gtk_widget_get_parent (wparent
) == wfixed
)
3899 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3900 "x", &oldx
, "y", &oldy
, NULL
);
3901 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3904 /* Move and resize to new values. */
3905 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
3906 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
3907 bool hidden
= height
< msl
;
3910 /* No room. Hide scroll bar as some themes output a warning if
3911 the height is less than the min size. */
3912 gtk_widget_hide (wparent
);
3913 gtk_widget_hide (wscroll
);
3917 gtk_widget_show_all (wparent
);
3918 gtk_widget_set_size_request (wscroll
, width
, height
);
3920 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
3922 /* Clear under old scroll bar position. */
3923 oldw
+= (scale
- 1) * oldw
;
3924 oldx
-= (scale
- 1) * oldw
;
3925 x_clear_area (f
, oldx
, oldy
, oldw
, oldh
);
3930 GtkWidget
*scrollbar
= xg_get_widget_from_map (scrollbar_id
);
3931 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
3933 /* Don't obscure any child frames. */
3934 XLowerWindow (FRAME_X_DISPLAY (f
), GTK_WIDGET_TO_X_WIN (webox
));
3937 /* GTK does not redraw until the main loop is entered again, but
3938 if there are no X events pending we will not enter it. So we sync
3939 here to get some events. */
3942 SET_FRAME_GARBAGED (f
);
3943 cancel_mouse_face (f
);
3948 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3950 TOP/LEFT are the new pixel positions where the bar shall appear.
3951 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3954 xg_update_horizontal_scrollbar_pos (struct frame
*f
,
3955 ptrdiff_t scrollbar_id
,
3962 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3966 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3967 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3970 /* Clear out old position. */
3971 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3972 if (gtk_widget_get_parent (wparent
) == wfixed
)
3974 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3975 "x", &oldx
, "y", &oldy
, NULL
);
3976 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3979 /* Move and resize to new values. */
3980 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
3981 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
3984 /* No room. Hide scroll bar as some themes output a warning if
3985 the width is less than the min size. */
3986 gtk_widget_hide (wparent
);
3987 gtk_widget_hide (wscroll
);
3991 gtk_widget_show_all (wparent
);
3992 gtk_widget_set_size_request (wscroll
, width
, height
);
3994 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
3995 /* Clear under old scroll bar position. */
3996 x_clear_area (f
, oldx
, oldy
, oldw
, oldh
);
3998 /* GTK does not redraw until the main loop is entered again, but
3999 if there are no X events pending we will not enter it. So we sync
4000 here to get some events. */
4003 GtkWidget
*scrollbar
=
4004 xg_get_widget_from_map (scrollbar_id
);
4005 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
4007 /* Don't obscure any child frames. */
4008 XLowerWindow (FRAME_X_DISPLAY (f
), GTK_WIDGET_TO_X_WIN (webox
));
4012 SET_FRAME_GARBAGED (f
);
4013 cancel_mouse_face (f
);
4018 /* Get the current value of the range, truncated to an integer. */
4021 int_gtk_range_get_value (GtkRange
*range
)
4023 return gtk_range_get_value (range
);
4027 /* Set the thumb size and position of scroll bar BAR. We are currently
4028 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4031 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
,
4036 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
4038 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4040 if (wscroll
&& bar
->dragging
== -1)
4050 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
4052 if (scroll_bar_adjust_thumb_portion_p
)
4054 /* We do the same as for MOTIF in xterm.c, use 30 chars per
4055 line rather than the real portion value. This makes the
4056 thumb less likely to resize and that looks better. */
4057 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
4059 /* When the thumb is at the bottom, position == whole.
4060 So we need to increase `whole' to make space for the thumb. */
4068 top
= (gdouble
) position
/ whole
;
4069 shown
= (gdouble
) portion
/ whole
;
4072 size
= clip_to_bounds (1, shown
* XG_SB_RANGE
, XG_SB_RANGE
);
4073 value
= clip_to_bounds (XG_SB_MIN
, top
* XG_SB_RANGE
, XG_SB_MAX
- size
);
4075 /* Assume all lines are of equal size. */
4076 new_step
= size
/ max (1, FRAME_LINES (f
));
4078 old_size
= gtk_adjustment_get_page_size (adj
);
4079 if (old_size
!= size
)
4081 int old_step
= gtk_adjustment_get_step_increment (adj
);
4082 if (old_step
!= new_step
)
4084 gtk_adjustment_set_page_size (adj
, size
);
4085 gtk_adjustment_set_step_increment (adj
, new_step
);
4086 /* Assume a page increment is about 95% of the page size */
4087 gtk_adjustment_set_page_increment (adj
, size
- size
/ 20);
4092 if (changed
|| int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
4096 /* gtk_range_set_value invokes the callback. Set
4097 ignore_gtk_scrollbar to make the callback do nothing */
4098 xg_ignore_gtk_scrollbar
= 1;
4100 if (int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
4101 gtk_range_set_value (GTK_RANGE (wscroll
), (gdouble
)value
);
4103 gtk_adjustment_changed (adj
);
4105 xg_ignore_gtk_scrollbar
= 0;
4112 /* Set the thumb size and position of horizontal scroll bar BAR. We are
4113 currently displaying PORTION out of a whole WHOLE, and our position
4116 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar
*bar
,
4121 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
4123 if (wscroll
&& bar
->dragging
== -1)
4127 int upper
= max (whole
- 1, 0);
4128 int pagesize
= min (upper
, max (portion
, 0));
4129 int value
= max (0, min (position
, upper
- pagesize
));
4130 /* These should be set to something more <portion, whole>
4132 int page_increment
= 4;
4133 int step_increment
= 1;
4136 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
4137 gtk_adjustment_configure (adj
, (gdouble
) value
, (gdouble
) lower
,
4138 (gdouble
) upper
, (gdouble
) step_increment
,
4139 (gdouble
) page_increment
, (gdouble
) pagesize
);
4140 gtk_adjustment_changed (adj
);
4145 /* Return true if EVENT is for a scroll bar in frame F.
4146 When the same X window is used for several Gtk+ widgets, we cannot
4147 say for sure based on the X window alone if an event is for the
4148 frame. This function does additional checks. */
4151 xg_event_is_for_scrollbar (struct frame
*f
, const XEvent
*event
)
4155 if (f
&& event
->type
== ButtonPress
&& event
->xbutton
.button
< 4)
4157 /* Check if press occurred outside the edit widget. */
4158 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
4161 #if GTK_CHECK_VERSION (3, 20, 0)
4163 = gdk_seat_get_pointer (gdk_display_get_default_seat (gdpy
));
4165 GdkDevice
*gdev
= gdk_device_manager_get_client_pointer
4166 (gdk_display_get_device_manager (gdpy
));
4168 gwin
= gdk_device_get_window_at_position (gdev
, NULL
, NULL
);
4170 gwin
= gdk_display_get_window_at_pointer (gdpy
, NULL
, NULL
);
4172 retval
= gwin
!= gtk_widget_get_window (f
->output_data
.x
->edit_widget
);
4175 && ((event
->type
== ButtonRelease
&& event
->xbutton
.button
< 4)
4176 || event
->type
== MotionNotify
))
4178 /* If we are releasing or moving the scroll bar, it has the grab. */
4179 GtkWidget
*w
= gtk_grab_get_current ();
4180 retval
= w
!= 0 && GTK_IS_SCROLLBAR (w
);
4187 /***********************************************************************
4189 ***********************************************************************/
4191 static GtkPrintSettings
*print_settings
= NULL
;
4192 static GtkPageSetup
*page_setup
= NULL
;
4195 xg_page_setup_dialog (void)
4197 GtkPageSetup
*new_page_setup
= NULL
;
4199 if (print_settings
== NULL
)
4200 print_settings
= gtk_print_settings_new ();
4201 new_page_setup
= gtk_print_run_page_setup_dialog (NULL
, page_setup
,
4204 g_object_unref (page_setup
);
4205 page_setup
= new_page_setup
;
4209 xg_get_page_setup (void)
4211 Lisp_Object orientation_symbol
;
4213 if (page_setup
== NULL
)
4214 page_setup
= gtk_page_setup_new ();
4216 switch (gtk_page_setup_get_orientation (page_setup
))
4218 case GTK_PAGE_ORIENTATION_PORTRAIT
:
4219 orientation_symbol
= Qportrait
;
4221 case GTK_PAGE_ORIENTATION_LANDSCAPE
:
4222 orientation_symbol
= Qlandscape
;
4224 case GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT
:
4225 orientation_symbol
= Qreverse_portrait
;
4227 case GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE
:
4228 orientation_symbol
= Qreverse_landscape
;
4234 return listn (CONSTYPE_HEAP
, 7,
4235 Fcons (Qorientation
, orientation_symbol
),
4236 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4238 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width
)),
4240 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height
)),
4241 Fcons (Qleft_margin
,
4242 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin
)),
4243 Fcons (Qright_margin
,
4244 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin
)),
4246 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin
)),
4247 Fcons (Qbottom_margin
,
4248 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin
))
4249 #undef MAKE_FLOAT_PAGE_SETUP
4254 draw_page (GtkPrintOperation
*operation
, GtkPrintContext
*context
,
4255 gint page_nr
, gpointer user_data
)
4257 Lisp_Object frames
= *((Lisp_Object
*) user_data
);
4258 struct frame
*f
= XFRAME (Fnth (make_number (page_nr
), frames
));
4259 cairo_t
*cr
= gtk_print_context_get_cairo_context (context
);
4261 x_cr_draw_frame (cr
, f
);
4265 xg_print_frames_dialog (Lisp_Object frames
)
4267 GtkPrintOperation
*print
;
4268 GtkPrintOperationResult res
;
4270 print
= gtk_print_operation_new ();
4271 if (print_settings
!= NULL
)
4272 gtk_print_operation_set_print_settings (print
, print_settings
);
4273 if (page_setup
!= NULL
)
4274 gtk_print_operation_set_default_page_setup (print
, page_setup
);
4275 gtk_print_operation_set_n_pages (print
, XINT (Flength (frames
)));
4276 g_signal_connect (print
, "draw-page", G_CALLBACK (draw_page
), &frames
);
4277 res
= gtk_print_operation_run (print
, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG
,
4279 if (res
== GTK_PRINT_OPERATION_RESULT_APPLY
)
4281 if (print_settings
!= NULL
)
4282 g_object_unref (print_settings
);
4284 g_object_ref (gtk_print_operation_get_print_settings (print
));
4286 g_object_unref (print
);
4289 #endif /* USE_CAIRO */
4293 /***********************************************************************
4295 ***********************************************************************/
4296 /* The key for the data we put in the GtkImage widgets. The data is
4297 the image used by Emacs. We use this to see if we need to update
4298 the GtkImage with a new image. */
4299 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4301 /* The key for storing the latest modifiers so the activate callback can
4303 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4305 /* The key for the data we put in the GtkImage widgets. The data is
4306 the stock name used by Emacs. We use this to see if we need to update
4307 the GtkImage with a new image. */
4308 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4310 /* As above, but this is used for named theme widgets, as opposed to
4312 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4314 /* Callback function invoked when a tool bar item is pressed.
4315 W is the button widget in the tool bar that got pressed,
4316 CLIENT_DATA is an integer that is the index of the button in the
4317 tool bar. 0 is the first button. */
4320 xg_tool_bar_button_cb (GtkWidget
*widget
,
4321 GdkEventButton
*event
,
4324 intptr_t state
= event
->state
;
4325 gpointer ptr
= (gpointer
) state
;
4326 g_object_set_data (G_OBJECT (widget
), XG_TOOL_BAR_LAST_MODIFIER
, ptr
);
4331 /* Callback function invoked when a tool bar item is pressed.
4332 W is the button widget in the tool bar that got pressed,
4333 CLIENT_DATA is an integer that is the index of the button in the
4334 tool bar. 0 is the first button. */
4337 xg_tool_bar_callback (GtkWidget
*w
, gpointer client_data
)
4339 intptr_t idx
= (intptr_t) client_data
;
4340 gpointer gmod
= g_object_get_data (G_OBJECT (w
), XG_TOOL_BAR_LAST_MODIFIER
);
4341 intptr_t mod
= (intptr_t) gmod
;
4343 struct frame
*f
= g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4344 Lisp_Object key
, frame
;
4345 struct input_event event
;
4348 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4351 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4353 key
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_KEY
);
4354 XSETFRAME (frame
, f
);
4356 /* We generate two events here. The first one is to set the prefix
4357 to `(tool_bar)', see keyboard.c. */
4358 event
.kind
= TOOL_BAR_EVENT
;
4359 event
.frame_or_window
= frame
;
4361 kbd_buffer_store_event (&event
);
4363 event
.kind
= TOOL_BAR_EVENT
;
4364 event
.frame_or_window
= frame
;
4366 /* Convert between the modifier bits GDK uses and the modifier bits
4367 Emacs uses. This assumes GDK and X masks are the same, which they are when
4369 event
.modifiers
= x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f
), mod
);
4370 kbd_buffer_store_event (&event
);
4372 /* Return focus to the frame after we have clicked on a detached
4374 x_focus_frame (f
, false);
4378 xg_get_tool_bar_widgets (GtkWidget
*vb
, GtkWidget
**wimage
)
4380 GList
*clist
= gtk_container_get_children (GTK_CONTAINER (vb
));
4381 GtkWidget
*c1
= clist
->data
;
4382 GtkWidget
*c2
= clist
->next
? clist
->next
->data
: NULL
;
4384 *wimage
= GTK_IS_IMAGE (c1
) ? c1
: c2
;
4385 g_list_free (clist
);
4386 return GTK_IS_LABEL (c1
) ? c1
: c2
;
4390 /* This callback is called when the mouse enters or leaves a tool bar item.
4391 It is used for displaying and hiding the help text.
4392 W is the tool bar item, a button.
4393 EVENT is either an enter event or leave event.
4394 CLIENT_DATA is an integer that is the index of the button in the
4395 tool bar. 0 is the first button.
4397 Returns FALSE to tell GTK to keep processing this event. */
4400 xg_tool_bar_help_callback (GtkWidget
*w
,
4401 GdkEventCrossing
*event
,
4402 gpointer client_data
)
4404 intptr_t idx
= (intptr_t) client_data
;
4405 struct frame
*f
= g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4406 Lisp_Object help
, frame
;
4408 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4411 if (event
->type
== GDK_ENTER_NOTIFY
)
4413 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4414 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_HELP
);
4417 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_CAPTION
);
4422 XSETFRAME (frame
, f
);
4423 kbd_buffer_store_help_event (frame
, help
);
4429 /* This callback is called when a tool bar item shall be redrawn.
4430 It modifies the expose event so that the GtkImage widget redraws the
4431 whole image. This to overcome a bug that makes GtkImage draw the image
4432 in the wrong place when it tries to redraw just a part of the image.
4433 W is the GtkImage to be redrawn.
4434 EVENT is the expose event for W.
4435 CLIENT_DATA is unused.
4437 Returns FALSE to tell GTK to keep processing this event. */
4441 xg_tool_bar_item_expose_callback (GtkWidget
*w
,
4442 GdkEventExpose
*event
,
4443 gpointer client_data
)
4447 gdk_drawable_get_size (event
->window
, &width
, &height
);
4448 event
->area
.x
-= width
> event
->area
.width
? width
-event
->area
.width
: 0;
4449 event
->area
.y
-= height
> event
->area
.height
? height
-event
->area
.height
: 0;
4451 event
->area
.x
= max (0, event
->area
.x
);
4452 event
->area
.y
= max (0, event
->area
.y
);
4454 event
->area
.width
= max (width
, event
->area
.width
);
4455 event
->area
.height
= max (height
, event
->area
.height
);
4461 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4462 #define toolbar_set_orientation(w, o) \
4463 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4465 #define toolbar_set_orientation(w, o) \
4466 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4469 /* Attach a tool bar to frame F. */
4472 xg_pack_tool_bar (struct frame
*f
, Lisp_Object pos
)
4474 struct x_output
*x
= f
->output_data
.x
;
4475 bool into_hbox
= EQ (pos
, Qleft
) || EQ (pos
, Qright
);
4476 GtkWidget
*top_widget
= x
->toolbar_widget
;
4478 toolbar_set_orientation (x
->toolbar_widget
,
4480 ? GTK_ORIENTATION_VERTICAL
4481 : GTK_ORIENTATION_HORIZONTAL
);
4485 gtk_box_pack_start (GTK_BOX (x
->hbox_widget
), top_widget
,
4488 if (EQ (pos
, Qleft
))
4489 gtk_box_reorder_child (GTK_BOX (x
->hbox_widget
),
4492 x
->toolbar_in_hbox
= true;
4496 bool vbox_pos
= x
->menubar_widget
!= 0;
4497 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), top_widget
,
4501 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
),
4504 x
->toolbar_in_hbox
= false;
4506 x
->toolbar_is_packed
= true;
4509 static bool xg_update_tool_bar_sizes (struct frame
*f
);
4512 tb_size_cb (GtkWidget
*widget
,
4513 GdkRectangle
*allocation
,
4516 /* When tool bar is created it has one preferred size. But when size is
4517 allocated between widgets, it may get another. So we must update
4518 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4519 struct frame
*f
= user_data
;
4521 if (xg_update_tool_bar_sizes (f
))
4523 frame_size_history_add (f
, Qtb_size_cb
, 0, 0, Qnil
);
4524 adjust_frame_size (f
, -1, -1, 5, 0, Qtool_bar_lines
);
4528 /* Create a tool bar for frame F. */
4531 xg_create_tool_bar (struct frame
*f
)
4533 struct x_output
*x
= f
->output_data
.x
;
4534 #if GTK_CHECK_VERSION (3, 3, 6)
4535 GtkStyleContext
*gsty
;
4537 struct xg_frame_tb_info
*tbinfo
4538 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4542 tbinfo
= xmalloc (sizeof (*tbinfo
));
4543 tbinfo
->last_tool_bar
= Qnil
;
4544 tbinfo
->style
= Qnil
;
4545 tbinfo
->hmargin
= tbinfo
->vmargin
= 0;
4546 tbinfo
->dir
= GTK_TEXT_DIR_NONE
;
4547 tbinfo
->n_last_items
= 0;
4548 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4553 x
->toolbar_widget
= gtk_toolbar_new ();
4555 gtk_widget_set_name (x
->toolbar_widget
, "emacs-toolbar");
4557 gtk_toolbar_set_style (GTK_TOOLBAR (x
->toolbar_widget
), GTK_TOOLBAR_ICONS
);
4558 toolbar_set_orientation (x
->toolbar_widget
, GTK_ORIENTATION_HORIZONTAL
);
4559 g_signal_connect (x
->toolbar_widget
, "size-allocate",
4560 G_CALLBACK (tb_size_cb
), f
);
4561 #if GTK_CHECK_VERSION (3, 3, 6)
4562 gsty
= gtk_widget_get_style_context (x
->toolbar_widget
);
4563 gtk_style_context_add_class (gsty
, "primary-toolbar");
4568 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4570 /* Find the right-to-left image named by RTL in the tool bar images for F.
4571 Returns IMAGE if RTL is not found. */
4574 find_rtl_image (struct frame
*f
, Lisp_Object image
, Lisp_Object rtl
)
4577 Lisp_Object file
, rtl_name
;
4579 rtl_name
= Ffile_name_nondirectory (rtl
);
4581 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
4583 Lisp_Object rtl_image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4584 if (!NILP (file
= file_for_image (rtl_image
)))
4586 file
= call1 (intern ("file-name-sans-extension"),
4587 Ffile_name_nondirectory (file
));
4588 if (! NILP (Fequal (file
, rtl_name
)))
4599 static GtkToolItem
*
4600 xg_make_tool_item (struct frame
*f
,
4602 GtkWidget
**wbutton
,
4604 int i
, bool horiz
, bool text_image
)
4606 GtkToolItem
*ti
= gtk_tool_item_new ();
4607 GtkWidget
*vb
= gtk_box_new (horiz
4608 ? GTK_ORIENTATION_HORIZONTAL
4609 : GTK_ORIENTATION_VERTICAL
,
4611 GtkWidget
*wb
= gtk_button_new ();
4612 /* The eventbox is here so we can have tooltips on disabled items. */
4613 GtkWidget
*weventbox
= gtk_event_box_new ();
4614 #if GTK_CHECK_VERSION (3, 3, 6)
4615 GtkCssProvider
*css_prov
= gtk_css_provider_new ();
4616 GtkStyleContext
*gsty
;
4618 gtk_css_provider_load_from_data (css_prov
,
4620 " background-color: transparent;"
4624 gsty
= gtk_widget_get_style_context (weventbox
);
4625 gtk_style_context_add_provider (gsty
,
4626 GTK_STYLE_PROVIDER (css_prov
),
4627 GTK_STYLE_PROVIDER_PRIORITY_USER
);
4628 g_object_unref (css_prov
);
4631 gtk_box_set_homogeneous (GTK_BOX (vb
), FALSE
);
4633 if (wimage
&& !text_image
)
4634 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4636 gtk_box_pack_start (GTK_BOX (vb
), gtk_label_new (label
), TRUE
, TRUE
, 0);
4637 if (wimage
&& text_image
)
4638 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4640 #if GTK_CHECK_VERSION (3, 20, 0)
4641 gtk_widget_set_focus_on_click (wb
, FALSE
);
4643 gtk_button_set_focus_on_click (GTK_BUTTON (wb
), FALSE
);
4645 gtk_button_set_relief (GTK_BUTTON (wb
), GTK_RELIEF_NONE
);
4646 gtk_container_add (GTK_CONTAINER (wb
), vb
);
4647 gtk_container_add (GTK_CONTAINER (weventbox
), wb
);
4648 gtk_container_add (GTK_CONTAINER (ti
), weventbox
);
4650 if (wimage
|| label
)
4653 gpointer gi
= (gpointer
) ii
;
4655 g_signal_connect (G_OBJECT (wb
), "clicked",
4656 G_CALLBACK (xg_tool_bar_callback
),
4659 g_object_set_data (G_OBJECT (weventbox
), XG_FRAME_DATA
, (gpointer
)f
);
4662 /* Catch expose events to overcome an annoying redraw bug, see
4663 comment for xg_tool_bar_item_expose_callback. */
4664 g_signal_connect (G_OBJECT (ti
),
4666 G_CALLBACK (xg_tool_bar_item_expose_callback
),
4669 gtk_tool_item_set_homogeneous (ti
, FALSE
);
4671 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4672 no distinction based on modifiers in the activate callback,
4673 so we have to do it ourselves. */
4674 g_signal_connect (wb
, "button-release-event",
4675 G_CALLBACK (xg_tool_bar_button_cb
),
4678 g_object_set_data (G_OBJECT (wb
), XG_FRAME_DATA
, (gpointer
)f
);
4680 /* Use enter/leave notify to show help. We use the events
4681 rather than the GtkButton specific signals "enter" and
4682 "leave", so we can have only one callback. The event
4683 will tell us what kind of event it is. */
4684 g_signal_connect (G_OBJECT (weventbox
),
4685 "enter-notify-event",
4686 G_CALLBACK (xg_tool_bar_help_callback
),
4688 g_signal_connect (G_OBJECT (weventbox
),
4689 "leave-notify-event",
4690 G_CALLBACK (xg_tool_bar_help_callback
),
4694 if (wbutton
) *wbutton
= wb
;
4700 is_box_type (GtkWidget
*vb
, bool is_horizontal
)
4704 if (GTK_IS_BOX (vb
))
4706 GtkOrientation ori
= gtk_orientable_get_orientation (GTK_ORIENTABLE (vb
));
4707 ret
= (ori
== GTK_ORIENTATION_HORIZONTAL
&& is_horizontal
)
4708 || (ori
== GTK_ORIENTATION_VERTICAL
&& ! is_horizontal
);
4712 return is_horizontal
? GTK_IS_VBOX (vb
) : GTK_IS_HBOX (vb
);
4718 xg_tool_item_stale_p (GtkWidget
*wbutton
, const char *stock_name
,
4719 const char *icon_name
, const struct image
*img
,
4720 const char *label
, bool horiz
)
4724 GtkWidget
*vb
= XG_BIN_CHILD (wbutton
);
4725 GtkWidget
*wlbl
= xg_get_tool_bar_widgets (vb
, &wimage
);
4727 /* Check if the tool icon matches. */
4728 if (stock_name
&& wimage
)
4730 old
= g_object_get_data (G_OBJECT (wimage
),
4731 XG_TOOL_BAR_STOCK_NAME
);
4732 if (!old
|| strcmp (old
, stock_name
))
4735 else if (icon_name
&& wimage
)
4737 old
= g_object_get_data (G_OBJECT (wimage
),
4738 XG_TOOL_BAR_ICON_NAME
);
4739 if (!old
|| strcmp (old
, icon_name
))
4744 gpointer gold_img
= g_object_get_data (G_OBJECT (wimage
),
4745 XG_TOOL_BAR_IMAGE_DATA
);
4746 Pixmap old_img
= (Pixmap
) gold_img
;
4747 if (old_img
!= img
->pixmap
)
4751 /* Check button configuration and label. */
4752 if (is_box_type (vb
, horiz
)
4753 || (label
? (wlbl
== NULL
) : (wlbl
!= NULL
)))
4756 /* Ensure label is correct. */
4758 gtk_label_set_text (GTK_LABEL (wlbl
), label
);
4763 xg_update_tool_bar_sizes (struct frame
*f
)
4765 struct x_output
*x
= f
->output_data
.x
;
4767 int nl
= 0, nr
= 0, nt
= 0, nb
= 0;
4768 GtkWidget
*top_widget
= x
->toolbar_widget
;
4770 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget
), NULL
, &req
);
4771 if (x
->toolbar_in_hbox
)
4774 gtk_container_child_get (GTK_CONTAINER (x
->hbox_widget
),
4776 "position", &pos
, NULL
);
4777 if (pos
== 0) nl
= req
.width
;
4778 else nr
= req
.width
;
4783 gtk_container_child_get (GTK_CONTAINER (x
->vbox_widget
),
4785 "position", &pos
, NULL
);
4786 if (pos
== 0 || (pos
== 1 && x
->menubar_widget
)) nt
= req
.height
;
4787 else nb
= req
.height
;
4790 if (nl
!= FRAME_TOOLBAR_LEFT_WIDTH (f
)
4791 || nr
!= FRAME_TOOLBAR_RIGHT_WIDTH (f
)
4792 || nt
!= FRAME_TOOLBAR_TOP_HEIGHT (f
)
4793 || nb
!= FRAME_TOOLBAR_BOTTOM_HEIGHT (f
))
4795 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = FRAME_TOOLBAR_LEFT_WIDTH (f
)
4796 = FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
4797 FRAME_TOOLBAR_LEFT_WIDTH (f
) = nl
;
4798 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = nr
;
4799 FRAME_TOOLBAR_TOP_HEIGHT (f
) = nt
;
4800 FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = nb
;
4809 find_icon_from_name (char *name
,
4810 GtkIconTheme
*icon_theme
,
4813 #if ! GTK_CHECK_VERSION (3, 10, 0)
4814 GtkStockItem stock_item
;
4817 if (name
[0] == 'n' && name
[1] == ':')
4819 *icon_name
= name
+ 2;
4822 if (! gtk_icon_theme_has_icon (icon_theme
, *icon_name
))
4826 #if ! GTK_CHECK_VERSION (3, 10, 0)
4827 else if (gtk_stock_lookup (name
, &stock_item
))
4830 else if (gtk_icon_theme_has_icon (icon_theme
, name
))
4845 /* Update the tool bar for frame F. Add new buttons and remove old. */
4848 update_frame_tool_bar (struct frame
*f
)
4851 struct x_output
*x
= f
->output_data
.x
;
4852 int hmargin
= 0, vmargin
= 0;
4853 GtkToolbar
*wtoolbar
;
4855 GtkTextDirection dir
;
4857 bool text_image
, horiz
;
4858 struct xg_frame_tb_info
*tbinfo
;
4860 GtkIconTheme
*icon_theme
;
4863 if (! FRAME_GTK_WIDGET (f
))
4868 if (RANGED_INTEGERP (1, Vtool_bar_button_margin
, INT_MAX
))
4870 hmargin
= XFASTINT (Vtool_bar_button_margin
);
4871 vmargin
= XFASTINT (Vtool_bar_button_margin
);
4873 else if (CONSP (Vtool_bar_button_margin
))
4875 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin
), INT_MAX
))
4876 hmargin
= XFASTINT (XCAR (Vtool_bar_button_margin
));
4878 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin
), INT_MAX
))
4879 vmargin
= XFASTINT (XCDR (Vtool_bar_button_margin
));
4882 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4883 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4884 i.e. zero. This means that margins less than
4885 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4886 hmargin
= max (0, hmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4887 vmargin
= max (0, vmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4889 if (! x
->toolbar_widget
)
4890 xg_create_tool_bar (f
);
4892 wtoolbar
= GTK_TOOLBAR (x
->toolbar_widget
);
4893 dir
= gtk_widget_get_direction (GTK_WIDGET (wtoolbar
));
4895 style
= Ftool_bar_get_system_style ();
4896 screen
= gtk_widget_get_screen (GTK_WIDGET (wtoolbar
));
4897 icon_theme
= gtk_icon_theme_get_for_screen (screen
);
4899 /* Are we up to date? */
4900 tbinfo
= g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4903 if (! NILP (tbinfo
->last_tool_bar
) && ! NILP (f
->tool_bar_items
)
4904 && tbinfo
->n_last_items
== f
->n_tool_bar_items
4905 && tbinfo
->hmargin
== hmargin
&& tbinfo
->vmargin
== vmargin
4906 && tbinfo
->dir
== dir
4907 && ! NILP (Fequal (tbinfo
->style
, style
))
4908 && ! NILP (Fequal (tbinfo
->last_tool_bar
, f
->tool_bar_items
)))
4914 tbinfo
->last_tool_bar
= f
->tool_bar_items
;
4915 tbinfo
->n_last_items
= f
->n_tool_bar_items
;
4916 tbinfo
->style
= style
;
4917 tbinfo
->hmargin
= hmargin
;
4918 tbinfo
->vmargin
= vmargin
;
4921 text_image
= EQ (style
, Qtext_image_horiz
);
4922 horiz
= EQ (style
, Qboth_horiz
) || text_image
;
4924 for (i
= j
= 0; i
< f
->n_tool_bar_items
; ++i
)
4926 bool enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
4927 bool selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
4931 struct image
*img
= NULL
;
4933 Lisp_Object stock
= Qnil
;
4934 char *stock_name
= NULL
;
4935 char *icon_name
= NULL
;
4937 GtkWidget
*wbutton
= NULL
;
4938 Lisp_Object specified_file
;
4939 bool vert_only
= ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY
));
4941 = (EQ (style
, Qimage
) || (vert_only
&& horiz
)) ? NULL
4942 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL
))
4943 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL
))
4946 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
4948 /* If this is a separator, use a gtk separator item. */
4949 if (EQ (PROP (TOOL_BAR_ITEM_TYPE
), Qt
))
4951 if (ti
== NULL
|| !GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4954 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4956 ti
= gtk_separator_tool_item_new ();
4957 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
4963 /* Otherwise, the tool-bar item is an ordinary button. */
4965 if (ti
&& GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4967 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
4971 if (ti
) wbutton
= XG_BIN_CHILD (XG_BIN_CHILD (ti
));
4973 /* Ignore invalid image specifications. */
4974 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4975 if (!valid_image_p (image
))
4978 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4983 specified_file
= file_for_image (image
);
4984 if (!NILP (specified_file
) && !NILP (Ffboundp (Qx_gtk_map_stock
)))
4985 stock
= call1 (Qx_gtk_map_stock
, specified_file
);
4990 for (tem
= stock
; CONSP (tem
); tem
= XCDR (tem
))
4991 if (! NILP (tem
) && STRINGP (XCAR (tem
)))
4993 stock_name
= find_icon_from_name (SSDATA (XCAR (tem
)),
4996 if (stock_name
|| icon_name
) break;
4999 else if (STRINGP (stock
))
5001 stock_name
= find_icon_from_name (SSDATA (stock
),
5006 if (stock_name
|| icon_name
)
5007 icon_size
= gtk_toolbar_get_icon_size (wtoolbar
);
5009 if (stock_name
== NULL
&& icon_name
== NULL
)
5011 /* No stock image, or stock item not known. Try regular
5012 image. If image is a vector, choose it according to the
5014 if (dir
== GTK_TEXT_DIR_RTL
5015 && !NILP (rtl
= PROP (TOOL_BAR_ITEM_RTL_IMAGE
))
5017 image
= find_rtl_image (f
, image
, rtl
);
5019 if (VECTORP (image
))
5023 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
5024 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
5027 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
5028 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
5030 eassert (ASIZE (image
) >= idx
);
5031 image
= AREF (image
, idx
);
5036 img_id
= lookup_image (f
, image
);
5037 img
= IMAGE_FROM_ID (f
, img_id
);
5038 prepare_image_for_display (f
, img
);
5040 if (img
->load_failed_p
|| img
->pixmap
== None
)
5043 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5049 /* If there is an existing widget, check if it's stale; if so,
5050 remove it and make a new tool item from scratch. */
5051 if (ti
&& xg_tool_item_stale_p (wbutton
, stock_name
, icon_name
,
5054 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5063 /* Save the image so we can see if an update is needed the
5064 next time we call xg_tool_item_match_p. */
5065 if (EQ (style
, Qtext
))
5067 else if (stock_name
)
5070 #if GTK_CHECK_VERSION (3, 10, 0)
5071 w
= gtk_image_new_from_icon_name (stock_name
, icon_size
);
5073 w
= gtk_image_new_from_stock (stock_name
, icon_size
);
5075 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_STOCK_NAME
,
5076 (gpointer
) xstrdup (stock_name
),
5077 (GDestroyNotify
) xfree
);
5081 w
= gtk_image_new_from_icon_name (icon_name
, icon_size
);
5082 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_ICON_NAME
,
5083 (gpointer
) xstrdup (icon_name
),
5084 (GDestroyNotify
) xfree
);
5088 w
= xg_get_image_for_pixmap (f
, img
, x
->widget
, NULL
);
5089 g_object_set_data (G_OBJECT (w
), XG_TOOL_BAR_IMAGE_DATA
,
5090 (gpointer
)img
->pixmap
);
5093 #if GTK_CHECK_VERSION (3, 14, 0)
5096 gtk_widget_set_margin_start (w
, hmargin
);
5097 gtk_widget_set_margin_end (w
, hmargin
);
5098 gtk_widget_set_margin_top (w
, vmargin
);
5099 gtk_widget_set_margin_bottom (w
, vmargin
);
5102 if (w
) gtk_misc_set_padding (GTK_MISC (w
), hmargin
, vmargin
);
5104 ti
= xg_make_tool_item (f
, w
, &wbutton
, label
, i
, horiz
, text_image
);
5105 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
5110 gtk_widget_set_sensitive (wbutton
, enabled_p
);
5114 /* Remove buttons not longer needed. */
5117 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
5119 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
5120 } while (ti
!= NULL
);
5122 if (f
->n_tool_bar_items
!= 0)
5124 if (! x
->toolbar_is_packed
)
5125 xg_pack_tool_bar (f
, FRAME_TOOL_BAR_POSITION (f
));
5126 gtk_widget_show_all (x
->toolbar_widget
);
5127 if (xg_update_tool_bar_sizes (f
))
5130 = ((f
->after_make_frame
5131 && !f
->tool_bar_resized
5132 && (EQ (frame_inhibit_implied_resize
, Qt
)
5133 || (CONSP (frame_inhibit_implied_resize
)
5134 && !NILP (Fmemq (Qtool_bar_lines
,
5135 frame_inhibit_implied_resize
))))
5136 /* This will probably fail to DTRT in the
5137 fullheight/-width cases. */
5138 && NILP (get_frame_param (f
, Qfullscreen
)))
5142 frame_size_history_add (f
, Qupdate_frame_tool_bar
, 0, 0, Qnil
);
5143 adjust_frame_size (f
, -1, -1, inhibit
, 0, Qtool_bar_lines
);
5145 f
->tool_bar_resized
= f
->tool_bar_redisplayed
;
5151 /* Deallocate all resources for the tool bar on frame F.
5152 Remove the tool bar. */
5155 free_frame_tool_bar (struct frame
*f
)
5157 struct x_output
*x
= f
->output_data
.x
;
5159 if (x
->toolbar_widget
)
5161 struct xg_frame_tb_info
*tbinfo
;
5162 GtkWidget
*top_widget
= x
->toolbar_widget
;
5165 if (x
->toolbar_is_packed
)
5167 if (x
->toolbar_in_hbox
)
5168 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
5171 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
5175 gtk_widget_destroy (x
->toolbar_widget
);
5177 x
->toolbar_widget
= 0;
5178 x
->toolbar_widget
= 0;
5179 x
->toolbar_is_packed
= false;
5180 FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
5181 FRAME_TOOLBAR_LEFT_WIDTH (f
) = FRAME_TOOLBAR_RIGHT_WIDTH (f
) = 0;
5183 tbinfo
= g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
5188 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
5193 frame_size_history_add (f
, Qfree_frame_tool_bar
, 0, 0, Qnil
);
5194 adjust_frame_size (f
, -1, -1, 2, 0, Qtool_bar_lines
);
5201 xg_change_toolbar_position (struct frame
*f
, Lisp_Object pos
)
5203 struct x_output
*x
= f
->output_data
.x
;
5204 GtkWidget
*top_widget
= x
->toolbar_widget
;
5206 if (! x
->toolbar_widget
|| ! top_widget
)
5210 g_object_ref (top_widget
);
5211 if (x
->toolbar_is_packed
)
5213 if (x
->toolbar_in_hbox
)
5214 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
5217 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
5221 xg_pack_tool_bar (f
, pos
);
5222 g_object_unref (top_widget
);
5224 if (xg_update_tool_bar_sizes (f
))
5226 frame_size_history_add (f
, Qxg_change_toolbar_position
, 0, 0, Qnil
);
5227 adjust_frame_size (f
, -1, -1, 2, 0, Qtool_bar_lines
);
5236 /***********************************************************************
5238 ***********************************************************************/
5240 xg_initialize (void)
5242 GtkBindingSet
*binding_set
;
5243 GtkSettings
*settings
;
5246 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5247 we keep it permanently linked in. */
5252 xg_ignore_gtk_scrollbar
= 0;
5253 xg_menu_cb_list
.prev
= xg_menu_cb_list
.next
=
5254 xg_menu_item_cb_list
.prev
= xg_menu_item_cb_list
.next
= 0;
5256 id_to_widget
.max_size
= id_to_widget
.used
= 0;
5257 id_to_widget
.widgets
= 0;
5259 settings
= gtk_settings_get_for_screen (gdk_display_get_default_screen
5260 (gdk_display_get_default ()));
5261 #if ! GTK_CHECK_VERSION (3, 10, 0)
5262 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5263 bindings. It doesn't seem to be any way to remove properties,
5264 so we set it to "" which in means "no key". */
5265 gtk_settings_set_string_property (settings
,
5266 "gtk-menu-bar-accel",
5271 /* Make GTK text input widgets use Emacs style keybindings. This is
5273 #if GTK_CHECK_VERSION (3, 16, 0)
5274 g_object_set (settings
, "gtk-key-theme-name", "Emacs", NULL
);
5276 gtk_settings_set_string_property (settings
,
5277 "gtk-key-theme-name",
5282 /* Make dialogs close on C-g. Since file dialog inherits from
5283 dialog, this works for them also. */
5284 binding_set
= gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG
));
5285 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
5288 /* Make menus close on C-g. */
5289 binding_set
= gtk_binding_set_by_class (g_type_class_ref
5290 (GTK_TYPE_MENU_SHELL
));
5291 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
5293 update_theme_scrollbar_width ();
5294 update_theme_scrollbar_height ();
5296 #ifdef HAVE_FREETYPE
5297 x_last_font_name
= NULL
;
5301 #endif /* USE_GTK */