1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2018 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
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
);
694 #endif /* USE_GTK_TOOLTIP */
696 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
697 Return true if a system tooltip is available. */
700 xg_prepare_tooltip (struct frame
*f
,
705 #ifndef USE_GTK_TOOLTIP
708 struct x_output
*x
= f
->output_data
.x
;
712 GtkSettings
*settings
;
713 gboolean tt_enabled
= TRUE
;
715 Lisp_Object encoded_string
;
721 encoded_string
= ENCODE_UTF_8 (string
);
722 widget
= GTK_WIDGET (x
->ttip_lbl
);
723 gwin
= gtk_widget_get_window (GTK_WIDGET (x
->ttip_window
));
724 screen
= gdk_window_get_screen (gwin
);
725 settings
= gtk_settings_get_for_screen (screen
);
726 g_object_get (settings
, "gtk-enable-tooltips", &tt_enabled
, NULL
);
729 g_object_set (settings
, "gtk-enable-tooltips", FALSE
, NULL
);
730 /* Record that we disabled it so it can be enabled again. */
731 g_object_set_data (G_OBJECT (x
->ttip_window
), "restore-tt",
735 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
736 g_object_set_data (G_OBJECT
737 (gtk_widget_get_display (GTK_WIDGET (x
->ttip_window
))),
738 "gdk-display-current-tooltip", NULL
);
740 /* Put our dummy widget in so we can get callbacks for unrealize and
741 hierarchy-changed. */
742 gtk_tooltip_set_custom (x
->ttip_widget
, widget
);
743 gtk_tooltip_set_text (x
->ttip_widget
, SSDATA (encoded_string
));
744 gtk_widget_get_preferred_size (GTK_WIDGET (x
->ttip_window
), NULL
, &req
);
745 if (width
) *width
= req
.width
;
746 if (height
) *height
= req
.height
;
751 #endif /* USE_GTK_TOOLTIP */
754 /* Show the tooltip at ROOT_X and ROOT_Y.
755 xg_prepare_tooltip must have been called before this function. */
758 xg_show_tooltip (struct frame
*f
, int root_x
, int root_y
)
760 #ifdef USE_GTK_TOOLTIP
761 struct x_output
*x
= f
->output_data
.x
;
765 gtk_window_move (x
->ttip_window
, root_x
/ xg_get_scale (f
),
766 root_y
/ xg_get_scale (f
));
767 gtk_widget_show_all (GTK_WIDGET (x
->ttip_window
));
774 /* Hide tooltip if shown. Do nothing if not shown.
775 Return true if tip was hidden, false if not (i.e. not using
778 xg_hide_tooltip (struct frame
*f
)
780 #ifdef USE_GTK_TOOLTIP
781 if (f
->output_data
.x
->ttip_window
)
783 GtkWindow
*win
= f
->output_data
.x
->ttip_window
;
786 gtk_widget_hide (GTK_WIDGET (win
));
788 if (g_object_get_data (G_OBJECT (win
), "restore-tt"))
790 GdkWindow
*gwin
= gtk_widget_get_window (GTK_WIDGET (win
));
791 GdkScreen
*screen
= gdk_window_get_screen (gwin
);
792 GtkSettings
*settings
= gtk_settings_get_for_screen (screen
);
793 g_object_set (settings
, "gtk-enable-tooltips", TRUE
, NULL
);
804 /***********************************************************************
805 General functions for creating widgets, resizing, events, e.t.c.
806 ***********************************************************************/
808 #if ! GTK_CHECK_VERSION (3, 22, 0)
810 my_log_handler (const gchar
*log_domain
, GLogLevelFlags log_level
,
811 const gchar
*msg
, gpointer user_data
)
813 if (!strstr (msg
, "visible children"))
814 fprintf (stderr
, "XX %s-WARNING **: %s\n", log_domain
, msg
);
818 /* Make a geometry string and pass that to GTK. It seems this is the
819 only way to get geometry position right if the user explicitly
820 asked for a position when starting Emacs.
821 F is the frame we shall set geometry for. */
824 xg_set_geometry (struct frame
*f
)
826 if (f
->size_hint_flags
& (USPosition
| PPosition
))
828 int scale
= xg_get_scale (f
);
829 #if ! GTK_CHECK_VERSION (3, 22, 0)
830 if (x_gtk_use_window_move
)
833 /* Handle negative positions without consulting
834 gtk_window_parse_geometry (Bug#25851). The position will
835 be off by scrollbar width + window manager decorations. */
836 if (f
->size_hint_flags
& XNegative
)
837 f
->left_pos
= (x_display_pixel_width (FRAME_DISPLAY_INFO (f
))
838 - FRAME_PIXEL_WIDTH (f
) + f
->left_pos
);
840 if (f
->size_hint_flags
& YNegative
)
841 f
->top_pos
= (x_display_pixel_height (FRAME_DISPLAY_INFO (f
))
842 - FRAME_PIXEL_HEIGHT (f
) + f
->top_pos
);
844 /* GTK works in scaled pixels, so convert from X pixels. */
845 gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
846 f
->left_pos
/ scale
, f
->top_pos
/ scale
);
848 /* Reset size hint flags. */
849 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
850 # if ! GTK_CHECK_VERSION (3, 22, 0)
854 /* GTK works in scaled pixels, so convert from X pixels. */
855 int left
= f
->left_pos
/ scale
;
856 int xneg
= f
->size_hint_flags
& XNegative
;
857 int top
= f
->top_pos
/ scale
;
858 int yneg
= f
->size_hint_flags
& YNegative
;
859 char geom_str
[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
867 sprintf (geom_str
, "=%dx%d%c%d%c%d",
868 FRAME_PIXEL_WIDTH (f
),
869 FRAME_PIXEL_HEIGHT (f
),
870 (xneg
? '-' : '+'), left
,
871 (yneg
? '-' : '+'), top
);
873 /* Silence warning about visible children. */
874 id
= g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING
| G_LOG_FLAG_FATAL
875 | G_LOG_FLAG_RECURSION
, my_log_handler
, NULL
);
877 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
879 fprintf (stderr
, "Failed to parse: '%s'\n", geom_str
);
881 g_log_remove_handler ("Gtk", id
);
887 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
888 and a Gtk+ menu bar, we get resize events for the edit part of the
889 frame only. We let Gtk+ deal with the Gtk+ parts.
890 F is the frame to resize.
891 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
894 xg_frame_resized (struct frame
*f
, int pixelwidth
, int pixelheight
)
898 if (pixelwidth
== -1 && pixelheight
== -1)
900 if (FRAME_GTK_WIDGET (f
) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f
)))
901 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f
)),
902 0, 0, &pixelwidth
, &pixelheight
);
907 width
= FRAME_PIXEL_TO_TEXT_WIDTH (f
, pixelwidth
);
908 height
= FRAME_PIXEL_TO_TEXT_HEIGHT (f
, pixelheight
);
910 frame_size_history_add
911 (f
, Qxg_frame_resized
, width
, height
, Qnil
);
913 if (width
!= FRAME_TEXT_WIDTH (f
)
914 || height
!= FRAME_TEXT_HEIGHT (f
)
915 || pixelwidth
!= FRAME_PIXEL_WIDTH (f
)
916 || pixelheight
!= FRAME_PIXEL_HEIGHT (f
))
918 x_clear_under_internal_border (f
);
919 change_frame_size (f
, width
, height
, 0, 1, 0, 1);
920 SET_FRAME_GARBAGED (f
);
921 cancel_mouse_face (f
);
925 /* Resize the outer window of frame F after changing the height.
926 COLUMNS/ROWS is the size the edit area shall have after the resize. */
929 xg_frame_set_char_size (struct frame
*f
, int width
, int height
)
931 int pixelwidth
= FRAME_TEXT_TO_PIXEL_WIDTH (f
, width
);
932 int pixelheight
= FRAME_TEXT_TO_PIXEL_HEIGHT (f
, height
);
933 Lisp_Object fullscreen
= get_frame_param (f
, Qfullscreen
);
934 gint gwidth
, gheight
;
936 = pixelheight
+ FRAME_TOOLBAR_HEIGHT (f
) + FRAME_MENUBAR_HEIGHT (f
);
937 int totalwidth
= pixelwidth
+ FRAME_TOOLBAR_WIDTH (f
);
939 if (FRAME_PIXEL_HEIGHT (f
) == 0)
942 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
945 /* Do this before resize, as we don't know yet if we will be resized. */
946 x_clear_under_internal_border (f
);
948 totalheight
/= xg_get_scale (f
);
949 totalwidth
/= xg_get_scale (f
);
951 x_wm_set_size_hint (f
, 0, 0);
953 /* Resize the top level widget so rows and columns remain constant.
955 When the frame is fullheight and we only want to change the width
956 or it is fullwidth and we only want to change the height we should
957 be able to preserve the fullscreen property. However, due to the
958 fact that we have to send a resize request anyway, the window
959 manager will abolish it. At least the respective size should
960 remain unchanged but giving the frame back its normal size will
962 if (EQ (fullscreen
, Qfullwidth
) && width
== FRAME_TEXT_WIDTH (f
))
964 frame_size_history_add
965 (f
, Qxg_frame_set_char_size_1
, width
, height
,
966 list2 (make_number (gheight
), make_number (totalheight
)));
968 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
969 gwidth
, totalheight
);
971 else if (EQ (fullscreen
, Qfullheight
) && height
== FRAME_TEXT_HEIGHT (f
))
973 frame_size_history_add
974 (f
, Qxg_frame_set_char_size_2
, width
, height
,
975 list2 (make_number (gwidth
), make_number (totalwidth
)));
977 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
978 totalwidth
, gheight
);
982 frame_size_history_add
983 (f
, Qxg_frame_set_char_size_3
, width
, height
,
984 list2 (make_number (totalwidth
), make_number (totalheight
)));
986 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
987 totalwidth
, totalheight
);
991 SET_FRAME_GARBAGED (f
);
992 cancel_mouse_face (f
);
994 /* We can not call change_frame_size for a mapped frame,
995 we can not set pixel width/height either. The window manager may
996 override our resize request, XMonad does this all the time.
997 The best we can do is try to sync, so lisp code sees the updated
998 size as fast as possible.
999 For unmapped windows, we can set rows/cols. When
1000 the frame is mapped again we will (hopefully) get the correct size. */
1001 if (FRAME_VISIBLE_P (f
))
1003 /* Must call this to flush out events */
1004 (void)gtk_events_pending ();
1006 x_wait_for_event (f
, ConfigureNotify
);
1008 if (!NILP (fullscreen
))
1009 /* Try to restore fullscreen state. */
1011 store_frame_param (f
, Qfullscreen
, fullscreen
);
1012 x_set_fullscreen (f
, fullscreen
, fullscreen
);
1016 adjust_frame_size (f
, width
, height
, 5, 0, Qxg_frame_set_char_size
);
1020 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
1021 The policy is to keep the number of editable lines. */
1025 xg_height_or_width_changed (struct frame
*f
)
1027 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1028 FRAME_TOTAL_PIXEL_WIDTH (f
),
1029 FRAME_TOTAL_PIXEL_HEIGHT (f
));
1030 f
->output_data
.x
->hint_flags
= 0;
1031 x_wm_set_size_hint (f
, 0, 0);
1035 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1036 Must be done like this, because GtkWidget:s can have "hidden"
1037 X Window that aren't accessible.
1039 Return 0 if no widget match WDESC. */
1042 xg_win_to_widget (Display
*dpy
, Window wdesc
)
1045 GtkWidget
*gwdesc
= 0;
1049 gdkwin
= gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy
),
1054 event
.any
.window
= gdkwin
;
1055 event
.any
.type
= GDK_NOTHING
;
1056 gwdesc
= gtk_get_event_widget (&event
);
1063 /* Set the background of widget W to PIXEL. */
1066 xg_set_widget_bg (struct frame
*f
, GtkWidget
*w
, unsigned long pixel
)
1071 if (XQueryColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &xbg
))
1073 const char format
[] = "* { background-color: #%02x%02x%02x; }";
1074 /* The format is always longer than the resulting string. */
1075 char buffer
[sizeof format
];
1076 int n
= snprintf(buffer
, sizeof buffer
, format
,
1077 xbg
.red
>> 8, xbg
.green
>> 8, xbg
.blue
>> 8);
1079 eassert (n
< sizeof buffer
);
1080 GtkCssProvider
*provider
= gtk_css_provider_new ();
1081 gtk_css_provider_load_from_data (provider
, buffer
, -1, NULL
);
1082 gtk_style_context_add_provider (gtk_widget_get_style_context(w
),
1083 GTK_STYLE_PROVIDER (provider
),
1084 GTK_STYLE_PROVIDER_PRIORITY_APPLICATION
);
1085 g_clear_object (&provider
);
1089 GdkColormap
*map
= gtk_widget_get_colormap (w
);
1090 gdk_colormap_query_color (map
, pixel
, &bg
);
1091 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f
), GTK_STATE_NORMAL
, &bg
);
1095 /* Callback called when the gtk theme changes.
1096 We notify lisp code so it can fix faces used for region for example. */
1099 style_changed_cb (GObject
*go
,
1103 struct input_event event
;
1104 GdkDisplay
*gdpy
= user_data
;
1105 const char *display_name
= gdk_display_get_name (gdpy
);
1106 Display
*dpy
= GDK_DISPLAY_XDISPLAY (gdpy
);
1109 event
.kind
= CONFIG_CHANGED_EVENT
;
1110 event
.frame_or_window
= build_string (display_name
);
1111 /* Theme doesn't change often, so intern is called seldom. */
1112 event
.arg
= intern ("theme-name");
1113 kbd_buffer_store_event (&event
);
1115 update_theme_scrollbar_width ();
1116 update_theme_scrollbar_height ();
1118 /* If scroll bar width changed, we need set the new size on all frames
1122 Lisp_Object rest
, frame
;
1123 FOR_EACH_FRAME (rest
, frame
)
1125 struct frame
*f
= XFRAME (frame
);
1126 if (FRAME_LIVE_P (f
)
1128 && FRAME_X_DISPLAY (f
) == dpy
)
1130 x_set_scroll_bar_default_width (f
);
1131 x_set_scroll_bar_default_height (f
);
1132 xg_frame_set_char_size (f
, FRAME_TEXT_WIDTH (f
), FRAME_TEXT_HEIGHT (f
));
1138 /* Called when a delete-event occurs on WIDGET. */
1141 delete_cb (GtkWidget
*widget
,
1148 /* Create and set up the GTK widgets for frame F.
1149 Return true if creation succeeded. */
1152 xg_create_frame_widgets (struct frame
*f
)
1155 GtkWidget
*wvbox
, *whbox
;
1164 if (FRAME_X_EMBEDDED_P (f
))
1166 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
1167 wtop
= gtk_plug_new_for_display (gdpy
, f
->output_data
.x
->parent_desc
);
1170 wtop
= gtk_window_new (GTK_WINDOW_TOPLEVEL
);
1172 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1173 has backported it to Gtk+ 2.0 and they add the resize grip for
1174 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1175 forever, so disable the grip. */
1176 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1177 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1178 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop
), FALSE
);
1181 xg_set_screen (wtop
, f
);
1183 wvbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, 0);
1184 whbox
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1185 gtk_box_set_homogeneous (GTK_BOX (wvbox
), FALSE
);
1186 gtk_box_set_homogeneous (GTK_BOX (whbox
), FALSE
);
1189 wfixed
= emacs_fixed_new (f
);
1191 wfixed
= gtk_fixed_new ();
1194 if (! wtop
|| ! wvbox
|| ! whbox
|| ! wfixed
)
1196 if (wtop
) gtk_widget_destroy (wtop
);
1197 if (wvbox
) gtk_widget_destroy (wvbox
);
1198 if (whbox
) gtk_widget_destroy (whbox
);
1199 if (wfixed
) gtk_widget_destroy (wfixed
);
1205 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1206 gtk_widget_set_name (wtop
, EMACS_CLASS
);
1207 gtk_widget_set_name (wvbox
, "pane");
1208 gtk_widget_set_name (wfixed
, SSDATA (Vx_resource_name
));
1210 /* If this frame has a title or name, set it in the title bar. */
1211 if (! NILP (f
->title
))
1212 title
= SSDATA (ENCODE_UTF_8 (f
->title
));
1213 else if (! NILP (f
->name
))
1214 title
= SSDATA (ENCODE_UTF_8 (f
->name
));
1217 gtk_window_set_title (GTK_WINDOW (wtop
), title
);
1219 if (FRAME_UNDECORATED (f
))
1221 gtk_window_set_decorated (GTK_WINDOW (wtop
), FALSE
);
1222 store_frame_param (f
, Qundecorated
, Qt
);
1225 FRAME_GTK_OUTER_WIDGET (f
) = wtop
;
1226 FRAME_GTK_WIDGET (f
) = wfixed
;
1227 f
->output_data
.x
->vbox_widget
= wvbox
;
1228 f
->output_data
.x
->hbox_widget
= whbox
;
1230 gtk_widget_set_has_window (wfixed
, TRUE
);
1232 gtk_container_add (GTK_CONTAINER (wtop
), wvbox
);
1233 gtk_box_pack_start (GTK_BOX (wvbox
), whbox
, TRUE
, TRUE
, 0);
1234 gtk_box_pack_start (GTK_BOX (whbox
), wfixed
, TRUE
, TRUE
, 0);
1236 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1237 update_frame_tool_bar (f
);
1239 /* We don't want this widget double buffered, because we draw on it
1240 with regular X drawing primitives, so from a GTK/GDK point of
1241 view, the widget is totally blank. When an expose comes, this
1242 will make the widget blank, and then Emacs redraws it. This flickers
1243 a lot, so we turn off double buffering.
1244 FIXME: gtk_widget_set_double_buffered is deprecated and might stop
1245 working in the future. We need to migrate away from combining
1246 X and GTK+ drawing to a pure GTK+ build. */
1247 gtk_widget_set_double_buffered (wfixed
, FALSE
);
1249 #if ! GTK_CHECK_VERSION (3, 22, 0)
1250 gtk_window_set_wmclass (GTK_WINDOW (wtop
),
1251 SSDATA (Vx_resource_name
),
1252 SSDATA (Vx_resource_class
));
1255 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1256 GTK is to destroy the widget. We want Emacs to do that instead. */
1257 g_signal_connect (G_OBJECT (wtop
), "delete-event",
1258 G_CALLBACK (delete_cb
), f
);
1260 /* Convert our geometry parameters into a geometry string
1262 GTK will itself handle calculating the real position this way. */
1263 xg_set_geometry (f
);
1265 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1267 gtk_widget_add_events (wfixed
,
1268 GDK_POINTER_MOTION_MASK
1270 | GDK_BUTTON_PRESS_MASK
1271 | GDK_BUTTON_RELEASE_MASK
1272 | GDK_KEY_PRESS_MASK
1273 | GDK_ENTER_NOTIFY_MASK
1274 | GDK_LEAVE_NOTIFY_MASK
1275 | GDK_FOCUS_CHANGE_MASK
1276 | GDK_STRUCTURE_MASK
1277 | GDK_VISIBILITY_NOTIFY_MASK
);
1279 /* Must realize the windows so the X window gets created. It is used
1280 by callers of this function. */
1281 gtk_widget_realize (wfixed
);
1282 FRAME_X_WINDOW (f
) = GTK_WIDGET_TO_X_WIN (wfixed
);
1283 initial_set_up_x_back_buffer (f
);
1285 /* Since GTK clears its window by filling with the background color,
1286 we must keep X and GTK background in sync. */
1287 xg_set_widget_bg (f
, wfixed
, FRAME_BACKGROUND_PIXEL (f
));
1290 /* Also, do not let any background pixmap to be set, this looks very
1291 bad as Emacs overwrites the background pixmap with its own idea
1292 of background color. */
1293 style
= gtk_widget_get_modifier_style (wfixed
);
1295 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1296 style
->bg_pixmap_name
[GTK_STATE_NORMAL
] = g_strdup ("<none>");
1297 gtk_widget_modify_style (wfixed
, style
);
1299 gtk_widget_set_can_focus (wfixed
, TRUE
);
1300 gtk_window_set_resizable (GTK_WINDOW (wtop
), TRUE
);
1303 if (FRAME_OVERRIDE_REDIRECT (f
))
1305 GdkWindow
*gwin
= gtk_widget_get_window (wtop
);
1308 gdk_window_set_override_redirect (gwin
, TRUE
);
1311 #ifdef USE_GTK_TOOLTIP
1312 /* Steal a tool tip window we can move ourselves. */
1313 f
->output_data
.x
->ttip_widget
= 0;
1314 f
->output_data
.x
->ttip_lbl
= 0;
1315 f
->output_data
.x
->ttip_window
= 0;
1316 gtk_widget_set_tooltip_text (wtop
, "Dummy text");
1317 g_signal_connect (wtop
, "query-tooltip", G_CALLBACK (qttip_cb
), f
);
1321 GdkScreen
*screen
= gtk_widget_get_screen (wtop
);
1322 GtkSettings
*gs
= gtk_settings_get_for_screen (screen
);
1323 /* Only connect this signal once per screen. */
1324 if (! g_signal_handler_find (G_OBJECT (gs
),
1325 G_SIGNAL_MATCH_FUNC
,
1327 (gpointer
) G_CALLBACK (style_changed_cb
),
1330 g_signal_connect (G_OBJECT (gs
), "notify::gtk-theme-name",
1331 G_CALLBACK (style_changed_cb
),
1332 gdk_screen_get_display (screen
));
1342 xg_free_frame_widgets (struct frame
*f
)
1344 if (FRAME_GTK_OUTER_WIDGET (f
))
1346 #ifdef USE_GTK_TOOLTIP
1347 struct x_output
*x
= f
->output_data
.x
;
1349 struct xg_frame_tb_info
*tbinfo
1350 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
1355 /* x_free_frame_resources should have taken care of it */
1356 eassert (!FRAME_X_DOUBLE_BUFFERED_P (f
));
1357 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f
));
1358 FRAME_X_WINDOW (f
) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1359 FRAME_X_RAW_DRAWABLE (f
) = 0;
1360 FRAME_GTK_OUTER_WIDGET (f
) = 0;
1361 #ifdef USE_GTK_TOOLTIP
1363 gtk_widget_destroy (x
->ttip_lbl
);
1365 g_object_unref (G_OBJECT (x
->ttip_widget
));
1370 /* Set the normal size hints for the window manager, for frame F.
1371 FLAGS is the flags word to use--or 0 meaning preserve the flags
1372 that the window now has.
1373 If USER_POSITION, set the User Position
1374 flag (this is useful when FLAGS is 0). */
1377 x_wm_set_size_hint (struct frame
*f
, long int flags
, bool user_position
)
1379 /* Must use GTK routines here, otherwise GTK resets the size hints
1380 to its own defaults. */
1381 GdkGeometry size_hints
;
1382 gint hint_flags
= 0;
1383 int base_width
, base_height
;
1384 int min_rows
= 0, min_cols
= 0;
1385 int win_gravity
= f
->win_gravity
;
1386 Lisp_Object fs_state
, frame
;
1387 int scale
= xg_get_scale (f
);
1389 /* Don't set size hints during initialization; that apparently leads
1390 to a race condition. See the thread at
1391 https://lists.gnu.org/r/emacs-devel/2008-10/msg00033.html */
1392 if (NILP (Vafter_init_time
)
1393 || !FRAME_GTK_OUTER_WIDGET (f
)
1394 || FRAME_PARENT_FRAME (f
))
1397 XSETFRAME (frame
, f
);
1398 fs_state
= Fframe_parameter (frame
, Qfullscreen
);
1399 if ((EQ (fs_state
, Qmaximized
) || EQ (fs_state
, Qfullboth
)) &&
1400 (x_wm_supports (f
, FRAME_DISPLAY_INFO (f
)->Xatom_net_wm_state
) ||
1401 x_wm_supports (f
, FRAME_DISPLAY_INFO (f
)->Xatom_net_wm_state_fullscreen
)))
1403 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1404 Gtk3 don't get along and the frame shrinks (!).
1411 memset (&size_hints
, 0, sizeof (size_hints
));
1412 f
->output_data
.x
->size_hints
= size_hints
;
1413 f
->output_data
.x
->hint_flags
= hint_flags
;
1416 flags
= f
->size_hint_flags
;
1418 size_hints
= f
->output_data
.x
->size_hints
;
1419 hint_flags
= f
->output_data
.x
->hint_flags
;
1421 hint_flags
|= GDK_HINT_RESIZE_INC
| GDK_HINT_MIN_SIZE
;
1422 size_hints
.width_inc
= frame_resize_pixelwise
? 1 : FRAME_COLUMN_WIDTH (f
);
1423 size_hints
.height_inc
= frame_resize_pixelwise
? 1 : FRAME_LINE_HEIGHT (f
);
1425 hint_flags
|= GDK_HINT_BASE_SIZE
;
1426 /* Use one row/col here so base_height/width does not become zero.
1427 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1428 Obviously this makes the row/col value displayed off by 1. */
1429 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 1) + FRAME_TOOLBAR_WIDTH (f
);
1430 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 1)
1431 + FRAME_MENUBAR_HEIGHT (f
) + FRAME_TOOLBAR_HEIGHT (f
);
1433 if (min_cols
> 0) --min_cols
; /* We used one col in base_width = ... 1); */
1434 if (min_rows
> 0) --min_rows
; /* We used one row in base_height = ... 1); */
1436 size_hints
.base_width
= base_width
;
1437 size_hints
.base_height
= base_height
;
1438 size_hints
.min_width
= base_width
+ min_cols
* FRAME_COLUMN_WIDTH (f
);
1439 size_hints
.min_height
= base_height
+ min_rows
* FRAME_LINE_HEIGHT (f
);
1441 /* These currently have a one to one mapping with the X values, but I
1442 don't think we should rely on that. */
1443 hint_flags
|= GDK_HINT_WIN_GRAVITY
;
1444 size_hints
.win_gravity
= 0;
1445 if (win_gravity
== NorthWestGravity
)
1446 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_WEST
;
1447 else if (win_gravity
== NorthGravity
)
1448 size_hints
.win_gravity
= GDK_GRAVITY_NORTH
;
1449 else if (win_gravity
== NorthEastGravity
)
1450 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_EAST
;
1451 else if (win_gravity
== WestGravity
)
1452 size_hints
.win_gravity
= GDK_GRAVITY_WEST
;
1453 else if (win_gravity
== CenterGravity
)
1454 size_hints
.win_gravity
= GDK_GRAVITY_CENTER
;
1455 else if (win_gravity
== EastGravity
)
1456 size_hints
.win_gravity
= GDK_GRAVITY_EAST
;
1457 else if (win_gravity
== SouthWestGravity
)
1458 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_WEST
;
1459 else if (win_gravity
== SouthGravity
)
1460 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH
;
1461 else if (win_gravity
== SouthEastGravity
)
1462 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_EAST
;
1463 else if (win_gravity
== StaticGravity
)
1464 size_hints
.win_gravity
= GDK_GRAVITY_STATIC
;
1466 if (x_gtk_use_window_move
)
1468 if (flags
& PPosition
) hint_flags
|= GDK_HINT_POS
;
1469 if (flags
& USPosition
) hint_flags
|= GDK_HINT_USER_POS
;
1470 if (flags
& USSize
) hint_flags
|= GDK_HINT_USER_SIZE
;
1475 hint_flags
&= ~GDK_HINT_POS
;
1476 hint_flags
|= GDK_HINT_USER_POS
;
1479 size_hints
.base_width
/= scale
;
1480 size_hints
.base_height
/= scale
;
1481 size_hints
.width_inc
/= scale
;
1482 size_hints
.height_inc
/= scale
;
1484 if (hint_flags
!= f
->output_data
.x
->hint_flags
1485 || memcmp (&size_hints
,
1486 &f
->output_data
.x
->size_hints
,
1487 sizeof (size_hints
)) != 0)
1490 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1491 NULL
, &size_hints
, hint_flags
);
1492 f
->output_data
.x
->size_hints
= size_hints
;
1493 f
->output_data
.x
->hint_flags
= hint_flags
;
1498 /* Change background color of a frame.
1499 Since GTK uses the background color to clear the window, we must
1500 keep the GTK and X colors in sync.
1501 F is the frame to change,
1502 BG is the pixel value to change to. */
1505 xg_set_background_color (struct frame
*f
, unsigned long bg
)
1507 if (FRAME_GTK_WIDGET (f
))
1510 xg_set_widget_bg (f
, FRAME_GTK_WIDGET (f
), FRAME_BACKGROUND_PIXEL (f
));
1513 for (bar
= FRAME_SCROLL_BARS (f
);
1515 bar
= XSCROLL_BAR (bar
)->next
)
1517 GtkWidget
*scrollbar
=
1518 xg_get_widget_from_map (XSCROLL_BAR (bar
)->x_window
);
1519 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
1520 xg_set_widget_bg (f
, webox
, FRAME_BACKGROUND_PIXEL (f
));
1527 /* Change the frame's decoration (title bar + resize borders). This
1528 might not work with all window managers. */
1530 xg_set_undecorated (struct frame
*f
, Lisp_Object undecorated
)
1532 if (FRAME_GTK_WIDGET (f
))
1535 gtk_window_set_decorated (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1536 NILP (undecorated
) ? TRUE
: FALSE
);
1542 /* Restack F1 below F2, above if ABOVE_FLAG is true. This might not
1543 work with all window managers. */
1545 xg_frame_restack (struct frame
*f1
, struct frame
*f2
, bool above_flag
)
1547 #if GTK_CHECK_VERSION (2, 18, 0)
1549 if (FRAME_GTK_OUTER_WIDGET (f1
) && FRAME_GTK_OUTER_WIDGET (f2
))
1551 GdkWindow
*gwin1
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f1
));
1552 GdkWindow
*gwin2
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f2
));
1553 Lisp_Object frame1
, frame2
;
1555 XSETFRAME (frame1
, f1
);
1556 XSETFRAME (frame2
, f2
);
1558 gdk_window_restack (gwin1
, gwin2
, above_flag
);
1566 /* Don't show frame in taskbar, don't ALT-TAB to it. */
1568 xg_set_skip_taskbar (struct frame
*f
, Lisp_Object skip_taskbar
)
1571 if (FRAME_GTK_WIDGET (f
))
1572 gdk_window_set_skip_taskbar_hint
1573 (gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f
)),
1574 NILP (skip_taskbar
) ? FALSE
: TRUE
);
1579 /* Don't give frame focus. */
1581 xg_set_no_focus_on_map (struct frame
*f
, Lisp_Object no_focus_on_map
)
1584 if (FRAME_GTK_WIDGET (f
))
1586 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1587 gboolean g_no_focus_on_map
= NILP (no_focus_on_map
) ? TRUE
: FALSE
;
1589 gtk_window_set_focus_on_map (gwin
, g_no_focus_on_map
);
1596 xg_set_no_accept_focus (struct frame
*f
, Lisp_Object no_accept_focus
)
1599 if (FRAME_GTK_WIDGET (f
))
1601 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1602 gboolean g_no_accept_focus
= NILP (no_accept_focus
) ? TRUE
: FALSE
;
1604 gtk_window_set_accept_focus (gwin
, g_no_accept_focus
);
1610 xg_set_override_redirect (struct frame
*f
, Lisp_Object override_redirect
)
1614 if (FRAME_GTK_OUTER_WIDGET (f
))
1616 GdkWindow
*gwin
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f
));
1618 gdk_window_set_override_redirect (gwin
, NILP (override_redirect
) ? FALSE
: TRUE
);
1624 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1625 functions so GTK does not overwrite the icon. */
1628 xg_set_frame_icon (struct frame
*f
, Pixmap icon_pixmap
, Pixmap icon_mask
)
1630 GdkPixbuf
*gp
= xg_get_pixbuf_from_pix_and_mask (f
,
1634 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), gp
);
1639 /***********************************************************************
1641 ***********************************************************************/
1642 /* Return the dialog title to use for a dialog of type KEY.
1643 This is the encoding used by lwlib. We use the same for GTK. */
1646 get_dialog_title (char key
)
1648 const char *title
= "";
1656 title
= "Information";
1675 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1676 the dialog, but return TRUE so the event does not propagate further
1677 in GTK. This prevents GTK from destroying the dialog widget automatically
1678 and we can always destroy the widget manually, regardless of how
1679 it was popped down (button press or WM_DELETE_WINDOW).
1680 W is the dialog widget.
1681 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1682 user_data is NULL (not used).
1684 Returns TRUE to end propagation of event. */
1687 dialog_delete_callback (GtkWidget
*w
, GdkEvent
*event
, gpointer user_data
)
1689 gtk_widget_unmap (w
);
1693 /* Create a popup dialog window. See also xg_create_widget below.
1694 WV is a widget_value describing the dialog.
1695 SELECT_CB is the callback to use when a button has been pressed.
1696 DEACTIVATE_CB is the callback to use when the dialog pops down.
1698 Returns the GTK dialog widget. */
1701 create_dialog (widget_value
*wv
,
1702 GCallback select_cb
,
1703 GCallback deactivate_cb
)
1705 const char *title
= get_dialog_title (wv
->name
[0]);
1706 int total_buttons
= wv
->name
[1] - '0';
1707 int right_buttons
= wv
->name
[4] - '0';
1710 int button_spacing
= 10;
1711 GtkWidget
*wdialog
= gtk_dialog_new ();
1712 GtkDialog
*wd
= GTK_DIALOG (wdialog
);
1714 GtkWidget
*whbox_down
;
1716 /* If the number of buttons is greater than 4, make two rows of buttons
1717 instead. This looks better. */
1718 bool make_two_rows
= total_buttons
> 4;
1720 #if GTK_CHECK_VERSION (3, 12, 0)
1721 GtkBuilder
*gbld
= gtk_builder_new ();
1722 GObject
*go
= gtk_buildable_get_internal_child (GTK_BUILDABLE (wd
),
1725 GtkBox
*cur_box
= GTK_BOX (go
);
1726 g_object_unref (G_OBJECT (gbld
));
1728 GtkBox
*cur_box
= GTK_BOX (gtk_dialog_get_action_area (wd
));
1731 if (right_buttons
== 0) right_buttons
= total_buttons
/2;
1732 left_buttons
= total_buttons
- right_buttons
;
1734 gtk_window_set_title (GTK_WINDOW (wdialog
), title
);
1735 gtk_widget_set_name (wdialog
, "emacs-dialog");
1740 GtkWidget
*wvbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, button_spacing
);
1741 GtkWidget
*whbox_up
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1742 gtk_box_set_homogeneous (GTK_BOX (wvbox
), TRUE
);
1743 gtk_box_set_homogeneous (GTK_BOX (whbox_up
), FALSE
);
1744 whbox_down
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1745 gtk_box_set_homogeneous (GTK_BOX (whbox_down
), FALSE
);
1747 gtk_box_pack_start (cur_box
, wvbox
, FALSE
, FALSE
, 0);
1748 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_up
, FALSE
, FALSE
, 0);
1749 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_down
, FALSE
, FALSE
, 0);
1751 cur_box
= GTK_BOX (whbox_up
);
1754 g_signal_connect (G_OBJECT (wdialog
), "delete-event",
1755 G_CALLBACK (dialog_delete_callback
), 0);
1759 g_signal_connect (G_OBJECT (wdialog
), "close", deactivate_cb
, 0);
1760 g_signal_connect (G_OBJECT (wdialog
), "response", deactivate_cb
, 0);
1763 for (item
= wv
->contents
; item
; item
= item
->next
)
1765 char *utf8_label
= get_utf8_string (item
->value
);
1769 if (item
->name
&& strcmp (item
->name
, "message") == 0)
1771 GtkBox
*wvbox
= GTK_BOX (gtk_dialog_get_content_area (wd
));
1772 /* This is the text part of the dialog. */
1773 w
= gtk_label_new (utf8_label
);
1774 gtk_box_pack_start (wvbox
, gtk_label_new (""), FALSE
, FALSE
, 0);
1775 gtk_box_pack_start (wvbox
, w
, TRUE
, TRUE
, 0);
1776 #if GTK_CHECK_VERSION (3, 14, 0)
1777 gtk_widget_set_halign (w
, GTK_ALIGN_START
);
1778 gtk_widget_set_valign (w
, GTK_ALIGN_CENTER
);
1780 gtk_misc_set_alignment (GTK_MISC (w
), 0.1, 0.5);
1782 /* Try to make dialog look better. Must realize first so
1783 the widget can calculate the size it needs. */
1784 gtk_widget_realize (w
);
1785 gtk_widget_get_preferred_size (w
, NULL
, &req
);
1786 gtk_box_set_spacing (wvbox
, req
.height
);
1787 if (item
->value
&& strlen (item
->value
) > 0)
1788 button_spacing
= 2*req
.width
/strlen (item
->value
);
1789 if (button_spacing
< 10) button_spacing
= 10;
1793 /* This is one button to add to the dialog. */
1794 w
= gtk_button_new_with_label (utf8_label
);
1795 if (! item
->enabled
)
1796 gtk_widget_set_sensitive (w
, FALSE
);
1798 g_signal_connect (G_OBJECT (w
), "clicked",
1799 select_cb
, item
->call_data
);
1801 gtk_box_pack_start (cur_box
, w
, TRUE
, TRUE
, button_spacing
);
1802 if (++button_nr
== left_buttons
)
1805 cur_box
= GTK_BOX (whbox_down
);
1810 g_free (utf8_label
);
1816 struct xg_dialog_data
1824 /* Function that is called when the file or font dialogs pop down.
1825 W is the dialog widget, RESPONSE is the response code.
1826 USER_DATA is what we passed in to g_signal_connect. */
1829 xg_dialog_response_cb (GtkDialog
*w
,
1833 struct xg_dialog_data
*dd
= user_data
;
1834 dd
->response
= response
;
1835 g_main_loop_quit (dd
->loop
);
1839 /* Destroy the dialog. This makes it pop down. */
1842 pop_down_dialog (void *arg
)
1844 struct xg_dialog_data
*dd
= arg
;
1847 if (dd
->w
) gtk_widget_destroy (dd
->w
);
1848 if (dd
->timerid
!= 0) g_source_remove (dd
->timerid
);
1850 g_main_loop_quit (dd
->loop
);
1851 g_main_loop_unref (dd
->loop
);
1856 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1857 Pass DATA as gpointer so we can use this as a callback. */
1860 xg_maybe_add_timer (gpointer data
)
1862 struct xg_dialog_data
*dd
= data
;
1863 struct timespec next_time
= timer_check ();
1867 if (timespec_valid_p (next_time
))
1869 time_t s
= next_time
.tv_sec
;
1870 int per_ms
= TIMESPEC_RESOLUTION
/ 1000;
1871 int ms
= (next_time
.tv_nsec
+ per_ms
- 1) / per_ms
;
1872 if (s
<= ((guint
) -1 - ms
) / 1000)
1873 dd
->timerid
= g_timeout_add (s
* 1000 + ms
, xg_maybe_add_timer
, dd
);
1879 /* Pops up a modal dialog W and waits for response.
1880 We don't use gtk_dialog_run because we want to process emacs timers.
1881 The dialog W is not destroyed when this function returns. */
1884 xg_dialog_run (struct frame
*f
, GtkWidget
*w
)
1886 ptrdiff_t count
= SPECPDL_INDEX ();
1887 struct xg_dialog_data dd
;
1889 xg_set_screen (w
, f
);
1890 gtk_window_set_transient_for (GTK_WINDOW (w
),
1891 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1892 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
1893 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
1895 dd
.loop
= g_main_loop_new (NULL
, FALSE
);
1896 dd
.response
= GTK_RESPONSE_CANCEL
;
1900 g_signal_connect (G_OBJECT (w
),
1902 G_CALLBACK (xg_dialog_response_cb
),
1904 /* Don't destroy the widget if closed by the window manager close button. */
1905 g_signal_connect (G_OBJECT (w
), "delete-event", G_CALLBACK (gtk_true
), NULL
);
1906 gtk_widget_show (w
);
1908 record_unwind_protect_ptr (pop_down_dialog
, &dd
);
1910 (void) xg_maybe_add_timer (&dd
);
1911 g_main_loop_run (dd
.loop
);
1914 unbind_to (count
, Qnil
);
1920 /***********************************************************************
1921 File dialog functions
1922 ***********************************************************************/
1923 /* Return true if the old file selection dialog is being used. */
1926 xg_uses_old_file_dialog (void)
1928 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1929 return x_gtk_use_old_file_dialog
;
1936 typedef char * (*xg_get_file_func
) (GtkWidget
*);
1938 /* Return the selected file for file chooser dialog W.
1939 The returned string must be free:d. */
1942 xg_get_file_name_from_chooser (GtkWidget
*w
)
1944 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w
));
1947 /* Callback called when the "Show hidden files" toggle is pressed.
1948 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1951 xg_toggle_visibility_cb (GtkWidget
*widget
, gpointer data
)
1953 GtkFileChooser
*dialog
= GTK_FILE_CHOOSER (data
);
1955 g_object_get (G_OBJECT (dialog
), "show-hidden", &visible
, NULL
);
1956 g_object_set (G_OBJECT (dialog
), "show-hidden", !visible
, NULL
);
1960 /* Callback called when a property changes in a file chooser.
1961 GOBJECT is the file chooser dialog, ARG1 describes the property.
1962 USER_DATA is the toggle widget in the file chooser dialog.
1963 We use this to update the "Show hidden files" toggle when the user
1964 changes that property by right clicking in the file list. */
1967 xg_toggle_notify_cb (GObject
*gobject
, GParamSpec
*arg1
, gpointer user_data
)
1969 if (strcmp (arg1
->name
, "show-hidden") == 0)
1971 GtkWidget
*wtoggle
= GTK_WIDGET (user_data
);
1972 gboolean visible
, toggle_on
;
1974 g_object_get (G_OBJECT (gobject
), "show-hidden", &visible
, NULL
);
1975 toggle_on
= gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle
));
1977 if (!!visible
!= !!toggle_on
)
1979 gpointer cb
= (gpointer
) G_CALLBACK (xg_toggle_visibility_cb
);
1980 g_signal_handlers_block_by_func (G_OBJECT (wtoggle
), cb
, gobject
);
1981 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), visible
);
1982 g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle
), cb
, gobject
);
1984 x_gtk_show_hidden_files
= visible
;
1988 /* Read a file name from the user using a file chooser dialog.
1989 F is the current frame.
1990 PROMPT is a prompt to show to the user. May not be NULL.
1991 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1992 If MUSTMATCH_P, the returned file name must be an existing
1993 file. (Actually, this only has cosmetic effects, the user can
1994 still enter a non-existing file.) *FUNC is set to a function that
1995 can be used to retrieve the selected file name from the returned widget.
1997 Returns the created widget. */
2000 xg_get_file_with_chooser (struct frame
*f
,
2002 char *default_filename
,
2003 bool mustmatch_p
, bool only_dir_p
,
2004 xg_get_file_func
*func
)
2008 GtkWidget
*filewin
, *wtoggle
, *wbox
;
2009 GtkWidget
*wmessage UNINIT
;
2010 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
2011 GtkFileChooserAction action
= (mustmatch_p
?
2012 GTK_FILE_CHOOSER_ACTION_OPEN
:
2013 GTK_FILE_CHOOSER_ACTION_SAVE
);
2016 action
= GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
;
2018 filewin
= gtk_file_chooser_dialog_new (prompt
, gwin
, action
,
2019 XG_TEXT_CANCEL
, GTK_RESPONSE_CANCEL
,
2020 (mustmatch_p
|| only_dir_p
?
2021 XG_TEXT_OPEN
: XG_TEXT_OK
),
2024 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin
), TRUE
);
2026 wbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, 0);
2027 gtk_box_set_homogeneous (GTK_BOX (wbox
), FALSE
);
2028 gtk_widget_show (wbox
);
2029 wtoggle
= gtk_check_button_new_with_label ("Show hidden files.");
2031 if (x_gtk_show_hidden_files
)
2033 g_object_set (G_OBJECT (filewin
), "show-hidden", TRUE
, NULL
);
2034 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), TRUE
);
2036 gtk_widget_show (wtoggle
);
2037 g_signal_connect (G_OBJECT (wtoggle
), "clicked",
2038 G_CALLBACK (xg_toggle_visibility_cb
), filewin
);
2039 g_signal_connect (G_OBJECT (filewin
), "notify",
2040 G_CALLBACK (xg_toggle_notify_cb
), wtoggle
);
2042 if (x_gtk_file_dialog_help_text
)
2045 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
2046 Show the C-l help text only for versions < 2.10. */
2047 if (gtk_check_version (2, 10, 0) && action
!= GTK_FILE_CHOOSER_ACTION_SAVE
)
2048 z
= stpcpy (z
, "\nType C-l to display a file name text entry box.\n");
2049 strcpy (z
, "\nIf you don't like this file selector, use the "
2050 "corresponding\nkey binding or customize "
2051 "use-file-dialog to turn it off.");
2053 wmessage
= gtk_label_new (msgbuf
);
2054 gtk_widget_show (wmessage
);
2057 gtk_box_pack_start (GTK_BOX (wbox
), wtoggle
, FALSE
, FALSE
, 0);
2058 if (x_gtk_file_dialog_help_text
)
2059 gtk_box_pack_start (GTK_BOX (wbox
), wmessage
, FALSE
, FALSE
, 0);
2060 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin
), wbox
);
2062 if (default_filename
)
2065 char *utf8_filename
;
2067 file
= build_string (default_filename
);
2069 /* File chooser does not understand ~/... in the file name. It must be
2070 an absolute name starting with /. */
2071 if (default_filename
[0] != '/')
2072 file
= Fexpand_file_name (file
, Qnil
);
2074 utf8_filename
= SSDATA (ENCODE_UTF_8 (file
));
2075 if (! NILP (Ffile_directory_p (file
)))
2076 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin
),
2080 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin
),
2082 if (action
== GTK_FILE_CHOOSER_ACTION_SAVE
)
2084 char *cp
= strrchr (utf8_filename
, '/');
2086 else cp
= utf8_filename
;
2087 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin
), cp
);
2092 *func
= xg_get_file_name_from_chooser
;
2096 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2098 /* Return the selected file for file selector dialog W.
2099 The returned string must be free:d. */
2102 xg_get_file_name_from_selector (GtkWidget
*w
)
2104 GtkFileSelection
*filesel
= GTK_FILE_SELECTION (w
);
2105 return xstrdup (gtk_file_selection_get_filename (filesel
));
2108 /* Create a file selection dialog.
2109 F is the current frame.
2110 PROMPT is a prompt to show to the user. May not be NULL.
2111 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2112 If MUSTMATCH_P, the returned file name must be an existing
2113 file. *FUNC is set to a function that can be used to retrieve the
2114 selected file name from the returned widget.
2116 Returns the created widget. */
2119 xg_get_file_with_selection (struct frame
*f
,
2121 char *default_filename
,
2122 bool mustmatch_p
, bool only_dir_p
,
2123 xg_get_file_func
*func
)
2126 GtkFileSelection
*filesel
;
2128 filewin
= gtk_file_selection_new (prompt
);
2129 filesel
= GTK_FILE_SELECTION (filewin
);
2131 if (default_filename
)
2132 gtk_file_selection_set_filename (filesel
, default_filename
);
2136 /* The selection_entry part of filesel is not documented. */
2137 gtk_widget_set_sensitive (filesel
->selection_entry
, FALSE
);
2138 gtk_file_selection_hide_fileop_buttons (filesel
);
2141 *func
= xg_get_file_name_from_selector
;
2145 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
2147 /* Read a file name from the user using a file dialog, either the old
2148 file selection dialog, or the new file chooser dialog. Which to use
2149 depends on what the GTK version used has, and what the value of
2150 gtk-use-old-file-dialog.
2151 F is the current frame.
2152 PROMPT is a prompt to show to the user. May not be NULL.
2153 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2154 If MUSTMATCH_P, the returned file name must be an existing
2157 Returns a file name or NULL if no file was selected.
2158 The returned string must be freed by the caller. */
2161 xg_get_file_name (struct frame
*f
,
2163 char *default_filename
,
2169 int filesel_done
= 0;
2170 xg_get_file_func func
;
2172 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2174 if (xg_uses_old_file_dialog ())
2175 w
= xg_get_file_with_selection (f
, prompt
, default_filename
,
2176 mustmatch_p
, only_dir_p
, &func
);
2178 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
2179 mustmatch_p
, only_dir_p
, &func
);
2181 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2182 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
2183 mustmatch_p
, only_dir_p
, &func
);
2184 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2186 gtk_widget_set_name (w
, "emacs-filedialog");
2188 filesel_done
= xg_dialog_run (f
, w
);
2189 if (filesel_done
== GTK_RESPONSE_OK
)
2192 gtk_widget_destroy (w
);
2196 /***********************************************************************
2198 ***********************************************************************/
2200 #ifdef HAVE_FREETYPE
2202 #if USE_NEW_GTK_FONT_CHOOSER
2204 #define XG_WEIGHT_TO_SYMBOL(w) \
2205 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2206 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2207 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2208 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2209 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2210 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2211 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2214 #define XG_STYLE_TO_SYMBOL(s) \
2215 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2216 : s == PANGO_STYLE_ITALIC ? Qitalic \
2219 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2222 static char *x_last_font_name
;
2224 /* Pop up a GTK font selector and return the name of the font the user
2225 selects, as a C string. The returned font name follows GTK's own
2228 `FAMILY [VALUE1 VALUE2] SIZE'
2230 This can be parsed using font_parse_fcname in font.c.
2231 DEFAULT_NAME, if non-zero, is the default font name. */
2234 xg_get_font (struct frame
*f
, const char *default_name
)
2238 Lisp_Object font
= Qnil
;
2240 w
= gtk_font_chooser_dialog_new
2241 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2245 /* Convert fontconfig names to Gtk names, i.e. remove - before
2247 char *p
= strrchr (default_name
, '-');
2251 while (c_isdigit (*ep
))
2253 if (*ep
== '\0') *p
= ' ';
2256 else if (x_last_font_name
)
2257 default_name
= x_last_font_name
;
2260 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w
), default_name
);
2262 gtk_widget_set_name (w
, "emacs-fontdialog");
2263 done
= xg_dialog_run (f
, w
);
2264 if (done
== GTK_RESPONSE_OK
)
2266 #if USE_NEW_GTK_FONT_CHOOSER
2267 /* Use the GTK3 font chooser. */
2268 PangoFontDescription
*desc
2269 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w
));
2273 const char *name
= pango_font_description_get_family (desc
);
2274 gint size
= pango_font_description_get_size (desc
);
2275 PangoWeight weight
= pango_font_description_get_weight (desc
);
2276 PangoStyle style
= pango_font_description_get_style (desc
);
2279 #define FONT_TYPE_WANTED (Qftcr)
2281 #define FONT_TYPE_WANTED (Qxft)
2283 font
= CALLN (Ffont_spec
,
2284 QCname
, build_string (name
),
2285 QCsize
, make_float (pango_units_to_double (size
)),
2286 QCweight
, XG_WEIGHT_TO_SYMBOL (weight
),
2287 QCslant
, XG_STYLE_TO_SYMBOL (style
),
2291 pango_font_description_free (desc
);
2292 dupstring (&x_last_font_name
, name
);
2295 #else /* Use old font selector, which just returns the font name. */
2298 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w
));
2302 font
= build_string (font_name
);
2303 g_free (x_last_font_name
);
2304 x_last_font_name
= font_name
;
2306 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2309 gtk_widget_destroy (w
);
2312 #endif /* HAVE_FREETYPE */
2316 /***********************************************************************
2318 ***********************************************************************/
2320 /* The name of menu items that can be used for customization. Since GTK
2321 RC files are very crude and primitive, we have to set this on all
2322 menu item names so a user can easily customize menu items. */
2324 #define MENU_ITEM_NAME "emacs-menuitem"
2327 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2328 during GC. The next member points to the items. */
2329 static xg_list_node xg_menu_cb_list
;
2331 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2332 during GC. The next member points to the items. */
2333 static xg_list_node xg_menu_item_cb_list
;
2335 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2336 F is the frame CL_DATA will be initialized for.
2337 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2339 The menu bar and all sub menus under the menu bar in a frame
2340 share the same structure, hence the reference count.
2342 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2343 allocated xg_menu_cb_data if CL_DATA is NULL. */
2345 static xg_menu_cb_data
*
2346 make_cl_data (xg_menu_cb_data
*cl_data
, struct frame
*f
, GCallback highlight_cb
)
2350 cl_data
= xmalloc (sizeof *cl_data
);
2352 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2353 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2354 cl_data
->highlight_cb
= highlight_cb
;
2355 cl_data
->ref_count
= 0;
2357 xg_list_insert (&xg_menu_cb_list
, &cl_data
->ptrs
);
2360 cl_data
->ref_count
++;
2365 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2366 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2368 When the menu bar is updated, menu items may have been added and/or
2369 removed, so menu_bar_vector and menu_bar_items_used change. We must
2370 then update CL_DATA since it is used to determine which menu
2371 item that is invoked in the menu.
2372 HIGHLIGHT_CB could change, there is no check that the same
2373 function is given when modifying a menu bar as was given when
2374 creating the menu bar. */
2377 update_cl_data (xg_menu_cb_data
*cl_data
,
2379 GCallback highlight_cb
)
2384 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2385 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2386 cl_data
->highlight_cb
= highlight_cb
;
2390 /* Decrease reference count for CL_DATA.
2391 If reference count is zero, free CL_DATA. */
2394 unref_cl_data (xg_menu_cb_data
*cl_data
)
2396 if (cl_data
&& cl_data
->ref_count
> 0)
2398 cl_data
->ref_count
--;
2399 if (cl_data
->ref_count
== 0)
2401 xg_list_remove (&xg_menu_cb_list
, &cl_data
->ptrs
);
2407 /* Function that marks all lisp data during GC. */
2413 Lisp_Object rest
, frame
;
2415 for (iter
= xg_menu_cb_list
.next
; iter
; iter
= iter
->next
)
2416 mark_object (((xg_menu_cb_data
*) iter
)->menu_bar_vector
);
2418 for (iter
= xg_menu_item_cb_list
.next
; iter
; iter
= iter
->next
)
2420 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) iter
;
2422 if (! NILP (cb_data
->help
))
2423 mark_object (cb_data
->help
);
2426 FOR_EACH_FRAME (rest
, frame
)
2428 struct frame
*f
= XFRAME (frame
);
2430 if (FRAME_X_P (f
) && FRAME_GTK_OUTER_WIDGET (f
))
2432 struct xg_frame_tb_info
*tbinfo
2433 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
2437 mark_object (tbinfo
->last_tool_bar
);
2438 mark_object (tbinfo
->style
);
2444 /* Callback called when a menu item is destroyed. Used to free data.
2445 W is the widget that is being destroyed (not used).
2446 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2449 menuitem_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2453 xg_menu_item_cb_data
*data
= client_data
;
2454 xg_list_remove (&xg_menu_item_cb_list
, &data
->ptrs
);
2459 /* Callback called when the pointer enters/leaves a menu item.
2460 W is the parent of the menu item.
2461 EVENT is either an enter event or leave event.
2462 CLIENT_DATA is not used.
2464 Returns FALSE to tell GTK to keep processing this event. */
2467 menuitem_highlight_callback (GtkWidget
*w
,
2468 GdkEventCrossing
*event
,
2469 gpointer client_data
)
2472 GtkWidget
*subwidget
;
2473 xg_menu_item_cb_data
*data
;
2475 ev
.crossing
= *event
;
2476 subwidget
= gtk_get_event_widget (&ev
);
2477 data
= g_object_get_data (G_OBJECT (subwidget
), XG_ITEM_DATA
);
2480 if (! NILP (data
->help
) && data
->cl_data
->highlight_cb
)
2482 gpointer call_data
= event
->type
== GDK_LEAVE_NOTIFY
? 0 : data
;
2483 GtkCallback func
= (GtkCallback
) data
->cl_data
->highlight_cb
;
2484 (*func
) (subwidget
, call_data
);
2491 /* Callback called when a menu is destroyed. Used to free data.
2492 W is the widget that is being destroyed (not used).
2493 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2496 menu_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2498 unref_cl_data (client_data
);
2501 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2502 must be non-NULL) and can be inserted into a menu item.
2504 Returns the GtkHBox. */
2507 make_widget_for_menu_item (const char *utf8_label
, const char *utf8_key
)
2513 wbox
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
2514 gtk_box_set_homogeneous (GTK_BOX (wbox
), FALSE
);
2515 wlbl
= gtk_label_new (utf8_label
);
2516 wkey
= gtk_label_new (utf8_key
);
2518 #if GTK_CHECK_VERSION (3, 14, 0)
2519 gtk_widget_set_halign (wlbl
, GTK_ALIGN_START
);
2520 gtk_widget_set_valign (wlbl
, GTK_ALIGN_CENTER
);
2521 gtk_widget_set_halign (wkey
, GTK_ALIGN_START
);
2522 gtk_widget_set_valign (wkey
, GTK_ALIGN_CENTER
);
2524 gtk_misc_set_alignment (GTK_MISC (wlbl
), 0.0, 0.5);
2525 gtk_misc_set_alignment (GTK_MISC (wkey
), 0.0, 0.5);
2527 gtk_box_pack_start (GTK_BOX (wbox
), wlbl
, TRUE
, TRUE
, 0);
2528 gtk_box_pack_start (GTK_BOX (wbox
), wkey
, FALSE
, FALSE
, 0);
2530 gtk_widget_set_name (wlbl
, MENU_ITEM_NAME
);
2531 gtk_widget_set_name (wkey
, MENU_ITEM_NAME
);
2532 gtk_widget_set_name (wbox
, MENU_ITEM_NAME
);
2537 /* Make and return a menu item widget with the key to the right.
2538 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2539 UTF8_KEY is the text representing the key binding.
2540 ITEM is the widget_value describing the menu item.
2542 GROUP is an in/out parameter. If the menu item to be created is not
2543 part of any radio menu group, *GROUP contains NULL on entry and exit.
2544 If the menu item to be created is part of a radio menu group, on entry
2545 *GROUP contains the group to use, or NULL if this is the first item
2546 in the group. On exit, *GROUP contains the radio item group.
2548 Unfortunately, keys don't line up as nicely as in Motif,
2549 but the macOS version doesn't either, so I guess that is OK. */
2552 make_menu_item (const char *utf8_label
,
2553 const char *utf8_key
,
2558 GtkWidget
*wtoadd
= 0;
2560 /* It has been observed that some menu items have a NULL name field.
2561 This will lead to this function being called with a NULL utf8_label.
2562 GTK crashes on that so we set a blank label. Why there is a NULL
2563 name remains to be investigated. */
2564 if (! utf8_label
) utf8_label
= " ";
2567 wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
2569 if (item
->button_type
== BUTTON_TYPE_TOGGLE
)
2572 if (utf8_key
) w
= gtk_check_menu_item_new ();
2573 else w
= gtk_check_menu_item_new_with_label (utf8_label
);
2574 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), item
->selected
);
2576 else if (item
->button_type
== BUTTON_TYPE_RADIO
)
2578 if (utf8_key
) w
= gtk_radio_menu_item_new (*group
);
2579 else w
= gtk_radio_menu_item_new_with_label (*group
, utf8_label
);
2580 *group
= gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w
));
2582 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), TRUE
);
2587 if (utf8_key
) w
= gtk_menu_item_new ();
2588 else w
= gtk_menu_item_new_with_label (utf8_label
);
2591 if (wtoadd
) gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
2592 if (! item
->enabled
) gtk_widget_set_sensitive (w
, FALSE
);
2597 /* Create a menu item widget, and connect the callbacks.
2598 ITEM describes the menu item.
2599 F is the frame the created menu belongs to.
2600 SELECT_CB is the callback to use when a menu item is selected.
2601 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2602 CL_DATA points to the callback data to be used for this menu.
2603 GROUP is an in/out parameter. If the menu item to be created is not
2604 part of any radio menu group, *GROUP contains NULL on entry and exit.
2605 If the menu item to be created is part of a radio menu group, on entry
2606 *GROUP contains the group to use, or NULL if this is the first item
2607 in the group. On exit, *GROUP contains the radio item group.
2609 Returns the created GtkWidget. */
2612 xg_create_one_menuitem (widget_value
*item
,
2614 GCallback select_cb
,
2615 GCallback highlight_cb
,
2616 xg_menu_cb_data
*cl_data
,
2622 xg_menu_item_cb_data
*cb_data
;
2624 utf8_label
= get_utf8_string (item
->name
);
2625 utf8_key
= get_utf8_string (item
->key
);
2627 w
= make_menu_item (utf8_label
, utf8_key
, item
, group
);
2629 if (utf8_label
) g_free (utf8_label
);
2630 if (utf8_key
) g_free (utf8_key
);
2632 cb_data
= xmalloc (sizeof *cb_data
);
2634 xg_list_insert (&xg_menu_item_cb_list
, &cb_data
->ptrs
);
2636 cb_data
->select_id
= 0;
2637 cb_data
->help
= item
->help
;
2638 cb_data
->cl_data
= cl_data
;
2639 cb_data
->call_data
= item
->call_data
;
2641 g_signal_connect (G_OBJECT (w
),
2643 G_CALLBACK (menuitem_destroy_callback
),
2646 /* Put cb_data in widget, so we can get at it when modifying menubar */
2647 g_object_set_data (G_OBJECT (w
), XG_ITEM_DATA
, cb_data
);
2649 /* final item, not a submenu */
2650 if (item
->call_data
&& ! item
->contents
)
2654 = g_signal_connect (G_OBJECT (w
), "activate", select_cb
, cb_data
);
2660 /* Create a full menu tree specified by DATA.
2661 F is the frame the created menu belongs to.
2662 SELECT_CB is the callback to use when a menu item is selected.
2663 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2664 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2665 If POP_UP_P, create a popup menu.
2666 If MENU_BAR_P, create a menu bar.
2667 TOPMENU is the topmost GtkWidget that others shall be placed under.
2668 It may be NULL, in that case we create the appropriate widget
2669 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2670 CL_DATA is the callback data we shall use for this menu, or NULL
2671 if we haven't set the first callback yet.
2672 NAME is the name to give to the top level menu if this function
2673 creates it. May be NULL to not set any name.
2675 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2678 This function calls itself to create submenus. */
2681 create_menus (widget_value
*data
,
2683 GCallback select_cb
,
2684 GCallback deactivate_cb
,
2685 GCallback highlight_cb
,
2689 xg_menu_cb_data
*cl_data
,
2693 GtkWidget
*wmenu
= topmenu
;
2694 GSList
*group
= NULL
;
2700 wmenu
= gtk_menu_new ();
2701 xg_set_screen (wmenu
, f
);
2702 /* Connect this to the menu instead of items so we get enter/leave for
2703 disabled items also. TODO: Still does not get enter/leave for
2704 disabled items in detached menus. */
2705 g_signal_connect (G_OBJECT (wmenu
),
2706 "enter-notify-event",
2707 G_CALLBACK (menuitem_highlight_callback
),
2709 g_signal_connect (G_OBJECT (wmenu
),
2710 "leave-notify-event",
2711 G_CALLBACK (menuitem_highlight_callback
),
2716 wmenu
= gtk_menu_bar_new ();
2717 /* Set width of menu bar to a small value so it doesn't enlarge
2718 a small initial frame size. The width will be set to the
2719 width of the frame later on when it is added to a container.
2720 height -1: Natural height. */
2721 gtk_widget_set_size_request (wmenu
, 1, -1);
2724 /* Put cl_data on the top menu for easier access. */
2725 cl_data
= make_cl_data (cl_data
, f
, highlight_cb
);
2726 g_object_set_data (G_OBJECT (wmenu
), XG_FRAME_DATA
, (gpointer
)cl_data
);
2727 g_signal_connect (G_OBJECT (wmenu
), "destroy",
2728 G_CALLBACK (menu_destroy_callback
), cl_data
);
2731 gtk_widget_set_name (wmenu
, name
);
2734 g_signal_connect (G_OBJECT (wmenu
),
2735 "selection-done", deactivate_cb
, 0);
2738 for (item
= data
; item
; item
= item
->next
)
2742 if (pop_up_p
&& !item
->contents
&& !item
->call_data
2743 && !menu_separator_name_p (item
->name
))
2746 /* A title for a popup. We do the same as GTK does when
2747 creating titles, but it does not look good. */
2749 utf8_label
= get_utf8_string (item
->name
);
2751 w
= gtk_menu_item_new_with_label (utf8_label
);
2752 gtk_widget_set_sensitive (w
, FALSE
);
2753 if (utf8_label
) g_free (utf8_label
);
2755 else if (menu_separator_name_p (item
->name
))
2758 /* GTK only have one separator type. */
2759 w
= gtk_separator_menu_item_new ();
2763 w
= xg_create_one_menuitem (item
,
2765 item
->contents
? 0 : select_cb
,
2770 /* Create a possibly empty submenu for menu bar items, since some
2771 themes don't highlight items correctly without it. */
2772 if (item
->contents
|| menu_bar_p
)
2774 GtkWidget
*submenu
= create_menus (item
->contents
,
2784 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
2788 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu
), w
);
2789 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
2795 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2796 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2797 with some text and buttons.
2798 F is the frame the created item belongs to.
2799 NAME is the name to use for the top widget.
2800 VAL is a widget_value structure describing items to be created.
2801 SELECT_CB is the callback to use when a menu item is selected or
2802 a dialog button is pressed.
2803 DEACTIVATE_CB is the callback to use when an item is deactivated.
2804 For a menu, when a sub menu is not shown anymore, for a dialog it is
2805 called when the dialog is popped down.
2806 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2808 Returns the widget created. */
2811 xg_create_widget (const char *type
, const char *name
, struct frame
*f
,
2812 widget_value
*val
, GCallback select_cb
,
2813 GCallback deactivate_cb
, GCallback highlight_cb
)
2816 bool menu_bar_p
= strcmp (type
, "menubar") == 0;
2817 bool pop_up_p
= strcmp (type
, "popup") == 0;
2819 if (strcmp (type
, "dialog") == 0)
2821 w
= create_dialog (val
, select_cb
, deactivate_cb
);
2822 xg_set_screen (w
, f
);
2823 gtk_window_set_transient_for (GTK_WINDOW (w
),
2824 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2825 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
2826 gtk_widget_set_name (w
, "emacs-dialog");
2827 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
2829 else if (menu_bar_p
|| pop_up_p
)
2831 w
= create_menus (val
->contents
,
2842 /* Set the cursor to an arrow for popup menus when they are mapped.
2843 This is done by default for menu bar menus. */
2846 /* Must realize so the GdkWindow inside the widget is created. */
2847 gtk_widget_realize (w
);
2848 xg_set_cursor (w
, FRAME_DISPLAY_INFO (f
)->xg_cursor
);
2853 fprintf (stderr
, "bad type in xg_create_widget: %s, doing nothing\n",
2860 /* Return the label for menu item WITEM. */
2863 xg_get_menu_item_label (GtkMenuItem
*witem
)
2865 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
2866 return gtk_label_get_label (wlabel
);
2869 /* Return true if the menu item WITEM has the text LABEL. */
2872 xg_item_label_same_p (GtkMenuItem
*witem
, const char *label
)
2875 char *utf8_label
= get_utf8_string (label
);
2876 const char *old_label
= witem
? xg_get_menu_item_label (witem
) : 0;
2878 if (! old_label
&& ! utf8_label
)
2880 else if (old_label
&& utf8_label
)
2881 is_same
= strcmp (utf8_label
, old_label
) == 0;
2883 if (utf8_label
) g_free (utf8_label
);
2888 /* Destroy widgets in LIST. */
2891 xg_destroy_widgets (GList
*list
)
2895 for (iter
= list
; iter
; iter
= g_list_next (iter
))
2897 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
2899 /* Destroying the widget will remove it from the container it is in. */
2900 gtk_widget_destroy (w
);
2904 /* Update the top level names in MENUBAR (i.e. not submenus).
2905 F is the frame the menu bar belongs to.
2906 *LIST is a list with the current menu bar names (menu item widgets).
2907 ITER is the item within *LIST that shall be updated.
2908 POS is the numerical position, starting at 0, of ITER in *LIST.
2909 VAL describes what the menu bar shall look like after the update.
2910 SELECT_CB is the callback to use when a menu item is selected.
2911 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2912 CL_DATA points to the callback data to be used for this menu bar.
2914 This function calls itself to walk through the menu bar names. */
2917 xg_update_menubar (GtkWidget
*menubar
,
2923 GCallback select_cb
,
2924 GCallback deactivate_cb
,
2925 GCallback highlight_cb
,
2926 xg_menu_cb_data
*cl_data
)
2928 if (! iter
&& ! val
)
2930 else if (iter
&& ! val
)
2932 /* Item(s) have been removed. Remove all remaining items. */
2933 xg_destroy_widgets (iter
);
2935 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2936 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
2937 gtk_menu_item_new_with_label (""),
2943 else if (! iter
&& val
)
2945 /* Item(s) added. Add all new items in one call. */
2946 create_menus (val
, f
, select_cb
, deactivate_cb
, highlight_cb
,
2947 0, 1, menubar
, cl_data
, 0);
2953 /* Below this neither iter or val is NULL */
2954 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter
->data
), val
->name
))
2956 /* This item is still the same, check next item. */
2958 iter
= g_list_next (iter
);
2961 else /* This item is changed. */
2963 GtkMenuItem
*witem
= GTK_MENU_ITEM (iter
->data
);
2964 GtkMenuItem
*witem2
= 0;
2965 bool val_in_menubar
= 0;
2966 bool iter_in_new_menubar
= 0;
2970 /* See if the changed entry (val) is present later in the menu bar */
2972 iter2
&& ! val_in_menubar
;
2973 iter2
= g_list_next (iter2
))
2975 witem2
= GTK_MENU_ITEM (iter2
->data
);
2976 val_in_menubar
= xg_item_label_same_p (witem2
, val
->name
);
2979 /* See if the current entry (iter) is present later in the
2980 specification for the new menu bar. */
2981 for (cur
= val
; cur
&& ! iter_in_new_menubar
; cur
= cur
->next
)
2982 iter_in_new_menubar
= xg_item_label_same_p (witem
, cur
->name
);
2984 if (val_in_menubar
&& ! iter_in_new_menubar
)
2988 /* This corresponds to:
2993 g_object_ref (G_OBJECT (witem
));
2994 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem
));
2995 gtk_widget_destroy (GTK_WIDGET (witem
));
2997 /* Must get new list since the old changed. */
2998 g_list_free (*list
);
2999 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3000 while (nr
-- > 0) iter
= g_list_next (iter
);
3002 else if (! val_in_menubar
&& ! iter_in_new_menubar
)
3004 /* This corresponds to:
3007 Rename B to X. This might seem to be a strange thing to do,
3008 since if there is a menu under B it will be totally wrong for X.
3009 But consider editing a C file. Then there is a C-mode menu
3010 (corresponds to B above).
3011 If then doing C-x C-f the minibuf menu (X above) replaces the
3012 C-mode menu. When returning from the minibuffer, we get
3013 back the C-mode menu. Thus we do:
3014 Rename B to X (C-mode to minibuf menu)
3015 Rename X to B (minibuf to C-mode menu).
3016 If the X menu hasn't been invoked, the menu under B
3017 is up to date when leaving the minibuffer. */
3018 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
3019 char *utf8_label
= get_utf8_string (val
->name
);
3021 /* GTK menu items don't notice when their labels have been
3022 changed from underneath them, so we have to explicitly
3023 use g_object_notify to tell listeners (e.g., a GMenuModel
3024 bridge that might be loaded) that the item's label has
3026 gtk_label_set_text (wlabel
, utf8_label
);
3027 #if GTK_CHECK_VERSION (2, 16, 0)
3028 g_object_notify (G_OBJECT (witem
), "label");
3030 if (utf8_label
) g_free (utf8_label
);
3031 iter
= g_list_next (iter
);
3035 else if (! val_in_menubar
&& iter_in_new_menubar
)
3037 /* This corresponds to:
3044 GtkWidget
*w
= xg_create_one_menuitem (val
,
3051 /* Create a possibly empty submenu for menu bar items, since some
3052 themes don't highlight items correctly without it. */
3053 GtkWidget
*submenu
= create_menus (NULL
, f
,
3054 select_cb
, deactivate_cb
,
3056 0, 0, 0, cl_data
, 0);
3058 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
3059 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
), w
, pos
);
3060 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
3062 g_list_free (*list
);
3063 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3064 while (nr
-- > 0) iter
= g_list_next (iter
);
3065 iter
= g_list_next (iter
);
3069 else /* if (val_in_menubar && iter_in_new_menubar) */
3072 /* This corresponds to:
3077 g_object_ref (G_OBJECT (witem2
));
3078 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem2
));
3079 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
3080 GTK_WIDGET (witem2
), pos
);
3081 g_object_unref (G_OBJECT (witem2
));
3083 g_list_free (*list
);
3084 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3085 while (nr
-- > 0) iter
= g_list_next (iter
);
3086 if (iter
) iter
= g_list_next (iter
);
3092 /* Update the rest of the menu bar. */
3093 xg_update_menubar (menubar
, f
, list
, iter
, pos
, val
,
3094 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3097 /* Update the menu item W so it corresponds to VAL.
3098 SELECT_CB is the callback to use when a menu item is selected.
3099 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3100 CL_DATA is the data to set in the widget for menu invocation. */
3103 xg_update_menu_item (widget_value
*val
,
3105 GCallback select_cb
,
3106 GCallback highlight_cb
,
3107 xg_menu_cb_data
*cl_data
)
3114 const char *old_label
= 0;
3115 const char *old_key
= 0;
3116 xg_menu_item_cb_data
*cb_data
;
3117 bool label_changed
= false;
3119 wchild
= XG_BIN_CHILD (w
);
3120 utf8_label
= get_utf8_string (val
->name
);
3121 utf8_key
= get_utf8_string (val
->key
);
3123 /* See if W is a menu item with a key. See make_menu_item above. */
3124 if (GTK_IS_BOX (wchild
))
3126 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wchild
));
3128 wlbl
= GTK_LABEL (list
->data
);
3129 wkey
= GTK_LABEL (list
->next
->data
);
3134 /* Remove the key and keep just the label. */
3135 g_object_ref (G_OBJECT (wlbl
));
3136 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
3137 gtk_container_add (GTK_CONTAINER (w
), GTK_WIDGET (wlbl
));
3138 g_object_unref (G_OBJECT (wlbl
));
3143 else /* Just a label. */
3145 wlbl
= GTK_LABEL (wchild
);
3147 /* Check if there is now a key. */
3150 GtkWidget
*wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
3151 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wtoadd
));
3153 wlbl
= GTK_LABEL (list
->data
);
3154 wkey
= GTK_LABEL (list
->next
->data
);
3157 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
3158 gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
3162 if (wkey
) old_key
= gtk_label_get_label (wkey
);
3163 if (wlbl
) old_label
= gtk_label_get_label (wlbl
);
3165 if (wkey
&& utf8_key
&& (! old_key
|| strcmp (utf8_key
, old_key
) != 0))
3167 label_changed
= true;
3168 gtk_label_set_text (wkey
, utf8_key
);
3171 if (! old_label
|| strcmp (utf8_label
, old_label
) != 0)
3173 label_changed
= true;
3174 gtk_label_set_text (wlbl
, utf8_label
);
3177 if (utf8_key
) g_free (utf8_key
);
3178 if (utf8_label
) g_free (utf8_label
);
3180 if (! val
->enabled
&& gtk_widget_get_sensitive (w
))
3181 gtk_widget_set_sensitive (w
, FALSE
);
3182 else if (val
->enabled
&& ! gtk_widget_get_sensitive (w
))
3183 gtk_widget_set_sensitive (w
, TRUE
);
3185 cb_data
= g_object_get_data (G_OBJECT (w
), XG_ITEM_DATA
);
3188 cb_data
->call_data
= val
->call_data
;
3189 cb_data
->help
= val
->help
;
3190 cb_data
->cl_data
= cl_data
;
3192 /* We assume the callback functions don't change. */
3193 if (val
->call_data
&& ! val
->contents
)
3195 /* This item shall have a select callback. */
3196 if (! cb_data
->select_id
)
3198 = g_signal_connect (G_OBJECT (w
), "activate",
3199 select_cb
, cb_data
);
3201 else if (cb_data
->select_id
)
3203 g_signal_handler_disconnect (w
, cb_data
->select_id
);
3204 cb_data
->select_id
= 0;
3208 #if GTK_CHECK_VERSION (2, 16, 0)
3209 if (label_changed
) /* See comment in xg_update_menubar. */
3210 g_object_notify (G_OBJECT (w
), "label");
3214 /* Update the toggle menu item W so it corresponds to VAL. */
3217 xg_update_toggle_item (widget_value
*val
, GtkWidget
*w
)
3219 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
3222 /* Update the radio menu item W so it corresponds to VAL. */
3225 xg_update_radio_item (widget_value
*val
, GtkWidget
*w
)
3227 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
3230 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3231 SUBMENU may be NULL, in that case a new menu is created.
3232 F is the frame the menu bar belongs to.
3233 VAL describes the contents of the menu bar.
3234 SELECT_CB is the callback to use when a menu item is selected.
3235 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3236 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3237 CL_DATA is the call back data to use for any newly created items.
3239 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3243 xg_update_submenu (GtkWidget
*submenu
,
3246 GCallback select_cb
,
3247 GCallback deactivate_cb
,
3248 GCallback highlight_cb
,
3249 xg_menu_cb_data
*cl_data
)
3251 GtkWidget
*newsub
= submenu
;
3255 GList
*first_radio
= 0;
3258 list
= gtk_container_get_children (GTK_CONTAINER (submenu
));
3260 for (cur
= val
, iter
= list
;
3262 iter
= g_list_next (iter
), cur
= cur
->next
)
3264 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3266 /* Remember first radio button in a group. If we get a mismatch in
3267 a radio group we must rebuild the whole group so that the connections
3268 in GTK becomes correct. */
3269 if (cur
->button_type
== BUTTON_TYPE_RADIO
&& ! first_radio
)
3271 else if (cur
->button_type
!= BUTTON_TYPE_RADIO
3272 && ! GTK_IS_RADIO_MENU_ITEM (w
))
3275 if (GTK_IS_SEPARATOR_MENU_ITEM (w
))
3277 if (! menu_separator_name_p (cur
->name
))
3280 else if (GTK_IS_CHECK_MENU_ITEM (w
))
3282 if (cur
->button_type
!= BUTTON_TYPE_TOGGLE
)
3284 xg_update_toggle_item (cur
, w
);
3285 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3287 else if (GTK_IS_RADIO_MENU_ITEM (w
))
3289 if (cur
->button_type
!= BUTTON_TYPE_RADIO
)
3291 xg_update_radio_item (cur
, w
);
3292 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3294 else if (GTK_IS_MENU_ITEM (w
))
3296 GtkMenuItem
*witem
= GTK_MENU_ITEM (w
);
3299 if (cur
->button_type
!= BUTTON_TYPE_NONE
||
3300 menu_separator_name_p (cur
->name
))
3303 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3305 sub
= gtk_menu_item_get_submenu (witem
);
3306 if (sub
&& ! cur
->contents
)
3308 /* Not a submenu anymore. */
3309 g_object_ref (G_OBJECT (sub
));
3310 remove_submenu (witem
);
3311 gtk_widget_destroy (sub
);
3313 else if (cur
->contents
)
3317 nsub
= xg_update_submenu (sub
, f
, cur
->contents
,
3318 select_cb
, deactivate_cb
,
3319 highlight_cb
, cl_data
);
3321 /* If this item just became a submenu, we must set it. */
3323 gtk_menu_item_set_submenu (witem
, nsub
);
3328 /* Structural difference. Remove everything from here and down
3334 /* Remove widgets from first structural change. */
3337 /* If we are adding new menu items below, we must remove from
3338 first radio button so that radio groups become correct. */
3339 if (cur
&& first_radio
) xg_destroy_widgets (first_radio
);
3340 else xg_destroy_widgets (iter
);
3345 /* More items added. Create them. */
3346 newsub
= create_menus (cur
,
3358 if (list
) g_list_free (list
);
3363 /* Update the MENUBAR.
3364 F is the frame the menu bar belongs to.
3365 VAL describes the contents of the menu bar.
3366 If DEEP_P, rebuild all but the top level menu names in
3367 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3368 SELECT_CB is the callback to use when a menu item is selected.
3369 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3370 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3373 xg_modify_menubar_widgets (GtkWidget
*menubar
, struct frame
*f
,
3374 widget_value
*val
, bool deep_p
,
3375 GCallback select_cb
, GCallback deactivate_cb
,
3376 GCallback highlight_cb
)
3378 xg_menu_cb_data
*cl_data
;
3379 GList
*list
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3383 cl_data
= g_object_get_data (G_OBJECT (menubar
), XG_FRAME_DATA
);
3385 xg_update_menubar (menubar
, f
, &list
, list
, 0, val
->contents
,
3386 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3392 /* Update all sub menus.
3393 We must keep the submenus (GTK menu item widgets) since the
3394 X Window in the XEvent that activates the menu are those widgets. */
3396 /* Update cl_data, menu_item things in F may have changed. */
3397 update_cl_data (cl_data
, f
, highlight_cb
);
3399 for (cur
= val
->contents
; cur
; cur
= cur
->next
)
3404 GtkMenuItem
*witem
= 0;
3406 /* Find sub menu that corresponds to val and update it. */
3407 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3409 witem
= GTK_MENU_ITEM (iter
->data
);
3410 if (xg_item_label_same_p (witem
, cur
->name
))
3412 sub
= gtk_menu_item_get_submenu (witem
);
3417 newsub
= xg_update_submenu (sub
,
3424 /* sub may still be NULL. If we just updated non deep and added
3425 a new menu bar item, it has no sub menu yet. So we set the
3426 newly created sub menu under witem. */
3427 if (newsub
!= sub
&& witem
!= 0)
3429 xg_set_screen (newsub
, f
);
3430 gtk_menu_item_set_submenu (witem
, newsub
);
3436 gtk_widget_show_all (menubar
);
3439 /* Callback called when the menu bar W is mapped.
3440 Used to find the height of the menu bar if we didn't get it
3441 after showing the widget. */
3444 menubar_map_cb (GtkWidget
*w
, gpointer user_data
)
3447 struct frame
*f
= user_data
;
3448 gtk_widget_get_preferred_size (w
, NULL
, &req
);
3449 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3451 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3452 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3456 /* Recompute all the widgets of frame F, when the menu bar has been
3460 xg_update_frame_menubar (struct frame
*f
)
3462 struct x_output
*x
= f
->output_data
.x
;
3465 if (!x
->menubar_widget
|| gtk_widget_get_mapped (x
->menubar_widget
))
3468 if (x
->menubar_widget
&& gtk_widget_get_parent (x
->menubar_widget
))
3469 return; /* Already done this, happens for frames created invisible. */
3473 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
,
3475 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
, 0);
3477 g_signal_connect (x
->menubar_widget
, "map", G_CALLBACK (menubar_map_cb
), f
);
3478 gtk_widget_show_all (x
->menubar_widget
);
3479 gtk_widget_get_preferred_size (x
->menubar_widget
, NULL
, &req
);
3481 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3483 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3484 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3489 /* Get rid of the menu bar of frame F, and free its storage.
3490 This is used when deleting a frame, and when turning off the menu bar. */
3493 free_frame_menubar (struct frame
*f
)
3495 struct x_output
*x
= f
->output_data
.x
;
3497 if (x
->menubar_widget
)
3501 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
), x
->menubar_widget
);
3502 /* The menubar and its children shall be deleted when removed from
3504 x
->menubar_widget
= 0;
3505 FRAME_MENUBAR_HEIGHT (f
) = 0;
3506 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3512 xg_event_is_for_menubar (struct frame
*f
, const XEvent
*event
)
3514 struct x_output
*x
= f
->output_data
.x
;
3523 if (! x
->menubar_widget
) return 0;
3525 if (! (event
->xbutton
.x
>= 0
3526 && event
->xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
3527 && event
->xbutton
.y
>= 0
3528 && event
->xbutton
.y
< FRAME_MENUBAR_HEIGHT (f
)
3529 && event
->xbutton
.same_screen
))
3532 gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
3533 gw
= gdk_x11_window_lookup_for_display (gdpy
, event
->xbutton
.window
);
3535 gevent
.any
.window
= gw
;
3536 gevent
.any
.type
= GDK_NOTHING
;
3537 gwdesc
= gtk_get_event_widget (&gevent
);
3538 if (! gwdesc
) return 0;
3539 if (! GTK_IS_MENU_BAR (gwdesc
)
3540 && ! GTK_IS_MENU_ITEM (gwdesc
)
3541 && ! gtk_widget_is_ancestor (x
->menubar_widget
, gwdesc
))
3544 list
= gtk_container_get_children (GTK_CONTAINER (x
->menubar_widget
));
3545 if (! list
) return 0;
3546 rec
.x
= event
->xbutton
.x
;
3547 rec
.y
= event
->xbutton
.y
;
3551 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3553 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3554 if (gtk_widget_get_mapped (w
) && gtk_widget_intersect (w
, &rec
, NULL
))
3563 /***********************************************************************
3564 Scroll bar functions
3565 ***********************************************************************/
3568 /* Setting scroll bar values invokes the callback. Use this variable
3569 to indicate that callback should do nothing. */
3571 bool xg_ignore_gtk_scrollbar
;
3573 /* Width and height of scroll bars for the current theme. */
3574 static int scroll_bar_width_for_theme
;
3575 static int scroll_bar_height_for_theme
;
3577 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3578 may be larger than 32 bits. Keep a mapping from integer index to widget
3579 pointers to get around the 32 bit limitation. */
3583 GtkWidget
**widgets
;
3588 /* Grow this much every time we need to allocate more */
3590 #define ID_TO_WIDGET_INCR 32
3592 /* Store the widget pointer W in id_to_widget and return the integer index. */
3595 xg_store_widget_in_map (GtkWidget
*w
)
3599 if (id_to_widget
.max_size
== id_to_widget
.used
)
3602 if (TYPE_MAXIMUM (Window
) - ID_TO_WIDGET_INCR
< id_to_widget
.max_size
)
3603 memory_full (SIZE_MAX
);
3605 new_size
= id_to_widget
.max_size
+ ID_TO_WIDGET_INCR
;
3606 id_to_widget
.widgets
= xnrealloc (id_to_widget
.widgets
,
3607 new_size
, sizeof (GtkWidget
*));
3609 for (i
= id_to_widget
.max_size
; i
< new_size
; ++i
)
3610 id_to_widget
.widgets
[i
] = 0;
3611 id_to_widget
.max_size
= new_size
;
3614 /* Just loop over the array and find a free place. After all,
3615 how many scroll bars are we creating? Should be a small number.
3616 The check above guarantees we will find a free place. */
3617 for (i
= 0; i
< id_to_widget
.max_size
; ++i
)
3619 if (! id_to_widget
.widgets
[i
])
3621 id_to_widget
.widgets
[i
] = w
;
3622 ++id_to_widget
.used
;
3628 /* Should never end up here */
3632 /* Remove pointer at IDX from id_to_widget.
3633 Called when scroll bar is destroyed. */
3636 xg_remove_widget_from_map (ptrdiff_t idx
)
3638 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3640 id_to_widget
.widgets
[idx
] = 0;
3641 --id_to_widget
.used
;
3645 /* Get the widget pointer at IDX from id_to_widget. */
3648 xg_get_widget_from_map (ptrdiff_t idx
)
3650 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3651 return id_to_widget
.widgets
[idx
];
3657 update_theme_scrollbar_width (void)
3660 GtkAdjustment
*vadj
;
3667 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
, 0.1, 0.1, 0.1);
3668 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL
, GTK_ADJUSTMENT (vadj
));
3669 g_object_ref_sink (G_OBJECT (wscroll
));
3670 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3671 gtk_widget_destroy (wscroll
);
3672 g_object_unref (G_OBJECT (wscroll
));
3677 scroll_bar_width_for_theme
= w
;
3681 update_theme_scrollbar_height (void)
3684 GtkAdjustment
*hadj
;
3691 hadj
= gtk_adjustment_new (YG_SB_MIN
, YG_SB_MIN
, YG_SB_MAX
, 0.1, 0.1, 0.1);
3692 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL
, GTK_ADJUSTMENT (hadj
));
3693 g_object_ref_sink (G_OBJECT (wscroll
));
3694 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3695 gtk_widget_destroy (wscroll
);
3696 g_object_unref (G_OBJECT (wscroll
));
3699 scroll_bar_height_for_theme
= w
;
3703 xg_get_default_scrollbar_width (struct frame
*f
)
3705 return scroll_bar_width_for_theme
* xg_get_scale (f
);
3709 xg_get_default_scrollbar_height (struct frame
*f
)
3711 /* Apparently there's no default height for themes. */
3712 return scroll_bar_width_for_theme
* xg_get_scale (f
);
3715 /* Return the scrollbar id for X Window WID on display DPY.
3716 Return -1 if WID not in id_to_widget. */
3719 xg_get_scroll_id_for_window (Display
*dpy
, Window wid
)
3724 w
= xg_win_to_widget (dpy
, wid
);
3728 for (idx
= 0; idx
< id_to_widget
.max_size
; ++idx
)
3729 if (id_to_widget
.widgets
[idx
] == w
)
3736 /* Callback invoked when scroll bar WIDGET is destroyed.
3737 DATA is the index into id_to_widget for WIDGET.
3738 We free pointer to last scroll bar values here and remove the index. */
3741 xg_gtk_scroll_destroy (GtkWidget
*widget
, gpointer data
)
3743 intptr_t id
= (intptr_t) data
;
3744 xg_remove_widget_from_map (id
);
3748 xg_finish_scroll_bar_creation (struct frame
*f
,
3750 struct scroll_bar
*bar
,
3751 GCallback scroll_callback
,
3752 GCallback end_callback
,
3753 const char *scroll_bar_name
)
3755 GtkWidget
*webox
= gtk_event_box_new ();
3757 gtk_widget_set_name (wscroll
, scroll_bar_name
);
3759 gtk_range_set_update_policy (GTK_RANGE (wscroll
), GTK_UPDATE_CONTINUOUS
);
3761 g_object_set_data (G_OBJECT (wscroll
), XG_FRAME_DATA
, (gpointer
)f
);
3763 ptrdiff_t scroll_id
= xg_store_widget_in_map (wscroll
);
3765 g_signal_connect (G_OBJECT (wscroll
),
3767 G_CALLBACK (xg_gtk_scroll_destroy
),
3768 (gpointer
) scroll_id
);
3769 g_signal_connect (G_OBJECT (wscroll
),
3773 g_signal_connect (G_OBJECT (wscroll
),
3774 "button-release-event",
3778 /* The scroll bar widget does not draw on a window of its own. Instead
3779 it draws on the parent window, in this case the edit widget. So
3780 whenever the edit widget is cleared, the scroll bar needs to redraw
3781 also, which causes flicker. Put an event box between the edit widget
3782 and the scroll bar, so the scroll bar instead draws itself on the
3783 event box window. */
3784 gtk_fixed_put (GTK_FIXED (f
->output_data
.x
->edit_widget
), webox
, -1, -1);
3785 gtk_container_add (GTK_CONTAINER (webox
), wscroll
);
3787 xg_set_widget_bg (f
, webox
, FRAME_BACKGROUND_PIXEL (f
));
3789 /* N.B. The event box doesn't become a real X11 window until we ask
3790 for its XID via GTK_WIDGET_TO_X_WIN. If the event box is not a
3791 real X window, it and its scroll-bar child try to draw on the
3792 Emacs main window, which we draw over using Xlib. */
3793 gtk_widget_realize (webox
);
3794 GTK_WIDGET_TO_X_WIN (webox
);
3796 /* Set the cursor to an arrow. */
3797 xg_set_cursor (webox
, FRAME_DISPLAY_INFO (f
)->xg_cursor
);
3799 bar
->x_window
= scroll_id
;
3802 /* Create a scroll bar widget for frame F. Store the scroll bar
3804 SCROLL_CALLBACK is the callback to invoke when the value of the
3806 END_CALLBACK is the callback to invoke when scrolling ends.
3807 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3808 to set resources for the widget. */
3811 xg_create_scroll_bar (struct frame
*f
,
3812 struct scroll_bar
*bar
,
3813 GCallback scroll_callback
,
3814 GCallback end_callback
,
3815 const char *scroll_bar_name
)
3819 GtkAdjustment
*vadj
;
3824 /* Page, step increment values are not so important here, they
3825 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3826 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
,
3829 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL
, GTK_ADJUSTMENT (vadj
));
3831 xg_finish_scroll_bar_creation (f
, wscroll
, bar
, scroll_callback
,
3832 end_callback
, scroll_bar_name
);
3833 bar
->horizontal
= 0;
3836 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3837 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3838 of the bar changes. END_CALLBACK is the callback to invoke when
3839 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3840 bar. Can be used to set resources for the widget. */
3843 xg_create_horizontal_scroll_bar (struct frame
*f
,
3844 struct scroll_bar
*bar
,
3845 GCallback scroll_callback
,
3846 GCallback end_callback
,
3847 const char *scroll_bar_name
)
3851 GtkAdjustment
*hadj
;
3856 /* Page, step increment values are not so important here, they
3857 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3858 hadj
= gtk_adjustment_new (YG_SB_MIN
, YG_SB_MIN
, YG_SB_MAX
,
3861 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL
, GTK_ADJUSTMENT (hadj
));
3863 xg_finish_scroll_bar_creation (f
, wscroll
, bar
, scroll_callback
,
3864 end_callback
, scroll_bar_name
);
3865 bar
->horizontal
= 1;
3868 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3871 xg_remove_scroll_bar (struct frame
*f
, ptrdiff_t scrollbar_id
)
3873 GtkWidget
*w
= xg_get_widget_from_map (scrollbar_id
);
3876 GtkWidget
*wparent
= gtk_widget_get_parent (w
);
3877 gtk_widget_destroy (w
);
3878 gtk_widget_destroy (wparent
);
3879 SET_FRAME_GARBAGED (f
);
3883 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3885 TOP/LEFT are the new pixel positions where the bar shall appear.
3886 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3889 xg_update_scrollbar_pos (struct frame
*f
,
3890 ptrdiff_t scrollbar_id
,
3896 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3899 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3900 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3902 int scale
= xg_get_scale (f
);
3909 /* Clear out old position. */
3910 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3911 if (gtk_widget_get_parent (wparent
) == wfixed
)
3913 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3914 "x", &oldx
, "y", &oldy
, NULL
);
3915 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3918 /* Move and resize to new values. */
3919 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
3920 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
3921 bool hidden
= height
< msl
;
3924 /* No room. Hide scroll bar as some themes output a warning if
3925 the height is less than the min size. */
3926 gtk_widget_hide (wparent
);
3927 gtk_widget_hide (wscroll
);
3931 gtk_widget_show_all (wparent
);
3932 gtk_widget_set_size_request (wscroll
, width
, height
);
3934 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
3936 /* Clear under old scroll bar position. */
3937 oldw
+= (scale
- 1) * oldw
;
3938 oldx
-= (scale
- 1) * oldw
;
3939 x_clear_area (f
, oldx
, oldy
, oldw
, oldh
);
3944 GtkWidget
*scrollbar
= xg_get_widget_from_map (scrollbar_id
);
3945 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
3947 /* Don't obscure any child frames. */
3948 XLowerWindow (FRAME_X_DISPLAY (f
), GTK_WIDGET_TO_X_WIN (webox
));
3951 /* GTK does not redraw until the main loop is entered again, but
3952 if there are no X events pending we will not enter it. So we sync
3953 here to get some events. */
3956 SET_FRAME_GARBAGED (f
);
3957 cancel_mouse_face (f
);
3962 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3964 TOP/LEFT are the new pixel positions where the bar shall appear.
3965 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3968 xg_update_horizontal_scrollbar_pos (struct frame
*f
,
3969 ptrdiff_t scrollbar_id
,
3976 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3980 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3981 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3983 int scale
= xg_get_scale (f
);
3990 /* Clear out old position. */
3991 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3992 if (gtk_widget_get_parent (wparent
) == wfixed
)
3994 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3995 "x", &oldx
, "y", &oldy
, NULL
);
3996 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3999 /* Move and resize to new values. */
4000 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
4001 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
4004 /* No room. Hide scroll bar as some themes output a warning if
4005 the width is less than the min size. */
4006 gtk_widget_hide (wparent
);
4007 gtk_widget_hide (wscroll
);
4011 gtk_widget_show_all (wparent
);
4012 gtk_widget_set_size_request (wscroll
, width
, height
);
4014 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
4015 /* Clear under old scroll bar position. */
4016 x_clear_area (f
, oldx
, oldy
, oldw
, oldh
);
4018 /* GTK does not redraw until the main loop is entered again, but
4019 if there are no X events pending we will not enter it. So we sync
4020 here to get some events. */
4023 GtkWidget
*scrollbar
=
4024 xg_get_widget_from_map (scrollbar_id
);
4025 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
4027 /* Don't obscure any child frames. */
4028 XLowerWindow (FRAME_X_DISPLAY (f
), GTK_WIDGET_TO_X_WIN (webox
));
4032 SET_FRAME_GARBAGED (f
);
4033 cancel_mouse_face (f
);
4038 /* Get the current value of the range, truncated to an integer. */
4041 int_gtk_range_get_value (GtkRange
*range
)
4043 return gtk_range_get_value (range
);
4047 /* Set the thumb size and position of scroll bar BAR. We are currently
4048 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4051 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
,
4056 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
4058 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4060 if (wscroll
&& bar
->dragging
== -1)
4070 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
4072 if (scroll_bar_adjust_thumb_portion_p
)
4074 /* We do the same as for MOTIF in xterm.c, use 30 chars per
4075 line rather than the real portion value. This makes the
4076 thumb less likely to resize and that looks better. */
4077 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
4079 /* When the thumb is at the bottom, position == whole.
4080 So we need to increase `whole' to make space for the thumb. */
4088 top
= (gdouble
) position
/ whole
;
4089 shown
= (gdouble
) portion
/ whole
;
4092 size
= clip_to_bounds (1, shown
* XG_SB_RANGE
, XG_SB_RANGE
);
4093 value
= clip_to_bounds (XG_SB_MIN
, top
* XG_SB_RANGE
, XG_SB_MAX
- size
);
4095 /* Assume all lines are of equal size. */
4096 new_step
= size
/ max (1, FRAME_LINES (f
));
4098 old_size
= gtk_adjustment_get_page_size (adj
);
4099 if (old_size
!= size
)
4101 int old_step
= gtk_adjustment_get_step_increment (adj
);
4102 if (old_step
!= new_step
)
4104 gtk_adjustment_set_page_size (adj
, size
);
4105 gtk_adjustment_set_step_increment (adj
, new_step
);
4106 /* Assume a page increment is about 95% of the page size */
4107 gtk_adjustment_set_page_increment (adj
, size
- size
/ 20);
4112 if (changed
|| int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
4116 /* gtk_range_set_value invokes the callback. Set
4117 ignore_gtk_scrollbar to make the callback do nothing */
4118 xg_ignore_gtk_scrollbar
= 1;
4120 if (int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
4121 gtk_range_set_value (GTK_RANGE (wscroll
), (gdouble
)value
);
4122 #if ! GTK_CHECK_VERSION (3, 18, 0)
4124 gtk_adjustment_changed (adj
);
4127 xg_ignore_gtk_scrollbar
= 0;
4134 /* Set the thumb size and position of horizontal scroll bar BAR. We are
4135 currently displaying PORTION out of a whole WHOLE, and our position
4138 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar
*bar
,
4143 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
4145 if (wscroll
&& bar
->dragging
== -1)
4149 int upper
= max (whole
- 1, 0);
4150 int pagesize
= min (upper
, max (portion
, 0));
4151 int value
= max (0, min (position
, upper
- pagesize
));
4152 /* These should be set to something more <portion, whole>
4154 int page_increment
= 4;
4155 int step_increment
= 1;
4158 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
4159 gtk_adjustment_configure (adj
, (gdouble
) value
, (gdouble
) lower
,
4160 (gdouble
) upper
, (gdouble
) step_increment
,
4161 (gdouble
) page_increment
, (gdouble
) pagesize
);
4162 #if ! GTK_CHECK_VERSION (3, 18, 0)
4163 gtk_adjustment_changed (adj
);
4169 /* Return true if EVENT is for a scroll bar in frame F.
4170 When the same X window is used for several Gtk+ widgets, we cannot
4171 say for sure based on the X window alone if an event is for the
4172 frame. This function does additional checks. */
4175 xg_event_is_for_scrollbar (struct frame
*f
, const XEvent
*event
)
4179 if (f
&& event
->type
== ButtonPress
&& event
->xbutton
.button
< 4)
4181 /* Check if press occurred outside the edit widget. */
4182 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
4185 #if GTK_CHECK_VERSION (3, 20, 0)
4187 = gdk_seat_get_pointer (gdk_display_get_default_seat (gdpy
));
4189 GdkDevice
*gdev
= gdk_device_manager_get_client_pointer
4190 (gdk_display_get_device_manager (gdpy
));
4192 gwin
= gdk_device_get_window_at_position (gdev
, NULL
, NULL
);
4194 gwin
= gdk_display_get_window_at_pointer (gdpy
, NULL
, NULL
);
4196 retval
= gwin
!= gtk_widget_get_window (f
->output_data
.x
->edit_widget
);
4199 && ((event
->type
== ButtonRelease
&& event
->xbutton
.button
< 4)
4200 || event
->type
== MotionNotify
))
4202 /* If we are releasing or moving the scroll bar, it has the grab. */
4203 GtkWidget
*w
= gtk_grab_get_current ();
4204 retval
= w
!= 0 && GTK_IS_SCROLLBAR (w
);
4211 /***********************************************************************
4213 ***********************************************************************/
4215 static GtkPrintSettings
*print_settings
= NULL
;
4216 static GtkPageSetup
*page_setup
= NULL
;
4219 xg_page_setup_dialog (void)
4221 GtkPageSetup
*new_page_setup
= NULL
;
4223 if (print_settings
== NULL
)
4224 print_settings
= gtk_print_settings_new ();
4225 new_page_setup
= gtk_print_run_page_setup_dialog (NULL
, page_setup
,
4228 g_object_unref (page_setup
);
4229 page_setup
= new_page_setup
;
4233 xg_get_page_setup (void)
4235 Lisp_Object orientation_symbol
;
4237 if (page_setup
== NULL
)
4238 page_setup
= gtk_page_setup_new ();
4240 switch (gtk_page_setup_get_orientation (page_setup
))
4242 case GTK_PAGE_ORIENTATION_PORTRAIT
:
4243 orientation_symbol
= Qportrait
;
4245 case GTK_PAGE_ORIENTATION_LANDSCAPE
:
4246 orientation_symbol
= Qlandscape
;
4248 case GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT
:
4249 orientation_symbol
= Qreverse_portrait
;
4251 case GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE
:
4252 orientation_symbol
= Qreverse_landscape
;
4258 return listn (CONSTYPE_HEAP
, 7,
4259 Fcons (Qorientation
, orientation_symbol
),
4260 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4262 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width
)),
4264 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height
)),
4265 Fcons (Qleft_margin
,
4266 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin
)),
4267 Fcons (Qright_margin
,
4268 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin
)),
4270 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin
)),
4271 Fcons (Qbottom_margin
,
4272 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin
))
4273 #undef MAKE_FLOAT_PAGE_SETUP
4278 draw_page (GtkPrintOperation
*operation
, GtkPrintContext
*context
,
4279 gint page_nr
, gpointer user_data
)
4281 Lisp_Object frames
= *((Lisp_Object
*) user_data
);
4282 struct frame
*f
= XFRAME (Fnth (make_number (page_nr
), frames
));
4283 cairo_t
*cr
= gtk_print_context_get_cairo_context (context
);
4285 x_cr_draw_frame (cr
, f
);
4289 xg_print_frames_dialog (Lisp_Object frames
)
4291 GtkPrintOperation
*print
;
4292 GtkPrintOperationResult res
;
4294 print
= gtk_print_operation_new ();
4295 if (print_settings
!= NULL
)
4296 gtk_print_operation_set_print_settings (print
, print_settings
);
4297 if (page_setup
!= NULL
)
4298 gtk_print_operation_set_default_page_setup (print
, page_setup
);
4299 gtk_print_operation_set_n_pages (print
, XINT (Flength (frames
)));
4300 g_signal_connect (print
, "draw-page", G_CALLBACK (draw_page
), &frames
);
4301 res
= gtk_print_operation_run (print
, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG
,
4303 if (res
== GTK_PRINT_OPERATION_RESULT_APPLY
)
4305 if (print_settings
!= NULL
)
4306 g_object_unref (print_settings
);
4308 g_object_ref (gtk_print_operation_get_print_settings (print
));
4310 g_object_unref (print
);
4313 #endif /* USE_CAIRO */
4317 /***********************************************************************
4319 ***********************************************************************/
4320 /* The key for the data we put in the GtkImage widgets. The data is
4321 the image used by Emacs. We use this to see if we need to update
4322 the GtkImage with a new image. */
4323 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4325 /* The key for storing the latest modifiers so the activate callback can
4327 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4329 /* The key for the data we put in the GtkImage widgets. The data is
4330 the stock name used by Emacs. We use this to see if we need to update
4331 the GtkImage with a new image. */
4332 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4334 /* As above, but this is used for named theme widgets, as opposed to
4336 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4338 /* Callback function invoked when a tool bar item is pressed.
4339 W is the button widget in the tool bar that got pressed,
4340 CLIENT_DATA is an integer that is the index of the button in the
4341 tool bar. 0 is the first button. */
4344 xg_tool_bar_button_cb (GtkWidget
*widget
,
4345 GdkEventButton
*event
,
4348 intptr_t state
= event
->state
;
4349 gpointer ptr
= (gpointer
) state
;
4350 g_object_set_data (G_OBJECT (widget
), XG_TOOL_BAR_LAST_MODIFIER
, ptr
);
4355 /* Callback function invoked when a tool bar item is pressed.
4356 W is the button widget in the tool bar that got pressed,
4357 CLIENT_DATA is an integer that is the index of the button in the
4358 tool bar. 0 is the first button. */
4361 xg_tool_bar_callback (GtkWidget
*w
, gpointer client_data
)
4363 intptr_t idx
= (intptr_t) client_data
;
4364 gpointer gmod
= g_object_get_data (G_OBJECT (w
), XG_TOOL_BAR_LAST_MODIFIER
);
4365 intptr_t mod
= (intptr_t) gmod
;
4367 struct frame
*f
= g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4368 Lisp_Object key
, frame
;
4369 struct input_event event
;
4372 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4375 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4377 key
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_KEY
);
4378 XSETFRAME (frame
, f
);
4380 /* We generate two events here. The first one is to set the prefix
4381 to `(tool_bar)', see keyboard.c. */
4382 event
.kind
= TOOL_BAR_EVENT
;
4383 event
.frame_or_window
= frame
;
4385 kbd_buffer_store_event (&event
);
4387 event
.kind
= TOOL_BAR_EVENT
;
4388 event
.frame_or_window
= frame
;
4390 /* Convert between the modifier bits GDK uses and the modifier bits
4391 Emacs uses. This assumes GDK and X masks are the same, which they are when
4393 event
.modifiers
= x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f
), mod
);
4394 kbd_buffer_store_event (&event
);
4396 /* Return focus to the frame after we have clicked on a detached
4398 x_focus_frame (f
, false);
4402 xg_get_tool_bar_widgets (GtkWidget
*vb
, GtkWidget
**wimage
)
4404 GList
*clist
= gtk_container_get_children (GTK_CONTAINER (vb
));
4405 GtkWidget
*c1
= clist
->data
;
4406 GtkWidget
*c2
= clist
->next
? clist
->next
->data
: NULL
;
4408 *wimage
= GTK_IS_IMAGE (c1
) ? c1
: c2
;
4409 g_list_free (clist
);
4410 return GTK_IS_LABEL (c1
) ? c1
: c2
;
4414 /* This callback is called when the mouse enters or leaves a tool bar item.
4415 It is used for displaying and hiding the help text.
4416 W is the tool bar item, a button.
4417 EVENT is either an enter event or leave event.
4418 CLIENT_DATA is an integer that is the index of the button in the
4419 tool bar. 0 is the first button.
4421 Returns FALSE to tell GTK to keep processing this event. */
4424 xg_tool_bar_help_callback (GtkWidget
*w
,
4425 GdkEventCrossing
*event
,
4426 gpointer client_data
)
4428 intptr_t idx
= (intptr_t) client_data
;
4429 struct frame
*f
= g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4430 Lisp_Object help
, frame
;
4432 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4435 if (event
->type
== GDK_ENTER_NOTIFY
)
4437 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4438 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_HELP
);
4441 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_CAPTION
);
4446 XSETFRAME (frame
, f
);
4447 kbd_buffer_store_help_event (frame
, help
);
4453 /* This callback is called when a tool bar item shall be redrawn.
4454 It modifies the expose event so that the GtkImage widget redraws the
4455 whole image. This to overcome a bug that makes GtkImage draw the image
4456 in the wrong place when it tries to redraw just a part of the image.
4457 W is the GtkImage to be redrawn.
4458 EVENT is the expose event for W.
4459 CLIENT_DATA is unused.
4461 Returns FALSE to tell GTK to keep processing this event. */
4465 xg_tool_bar_item_expose_callback (GtkWidget
*w
,
4466 GdkEventExpose
*event
,
4467 gpointer client_data
)
4471 gdk_drawable_get_size (event
->window
, &width
, &height
);
4472 event
->area
.x
-= width
> event
->area
.width
? width
-event
->area
.width
: 0;
4473 event
->area
.y
-= height
> event
->area
.height
? height
-event
->area
.height
: 0;
4475 event
->area
.x
= max (0, event
->area
.x
);
4476 event
->area
.y
= max (0, event
->area
.y
);
4478 event
->area
.width
= max (width
, event
->area
.width
);
4479 event
->area
.height
= max (height
, event
->area
.height
);
4485 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4486 #define toolbar_set_orientation(w, o) \
4487 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4489 #define toolbar_set_orientation(w, o) \
4490 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4493 /* Attach a tool bar to frame F. */
4496 xg_pack_tool_bar (struct frame
*f
, Lisp_Object pos
)
4498 struct x_output
*x
= f
->output_data
.x
;
4499 bool into_hbox
= EQ (pos
, Qleft
) || EQ (pos
, Qright
);
4500 GtkWidget
*top_widget
= x
->toolbar_widget
;
4502 toolbar_set_orientation (x
->toolbar_widget
,
4504 ? GTK_ORIENTATION_VERTICAL
4505 : GTK_ORIENTATION_HORIZONTAL
);
4509 gtk_box_pack_start (GTK_BOX (x
->hbox_widget
), top_widget
,
4512 if (EQ (pos
, Qleft
))
4513 gtk_box_reorder_child (GTK_BOX (x
->hbox_widget
),
4516 x
->toolbar_in_hbox
= true;
4520 bool vbox_pos
= x
->menubar_widget
!= 0;
4521 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), top_widget
,
4525 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
),
4528 x
->toolbar_in_hbox
= false;
4530 x
->toolbar_is_packed
= true;
4533 static bool xg_update_tool_bar_sizes (struct frame
*f
);
4536 tb_size_cb (GtkWidget
*widget
,
4537 GdkRectangle
*allocation
,
4540 /* When tool bar is created it has one preferred size. But when size is
4541 allocated between widgets, it may get another. So we must update
4542 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4543 struct frame
*f
= user_data
;
4545 if (xg_update_tool_bar_sizes (f
))
4547 frame_size_history_add (f
, Qtb_size_cb
, 0, 0, Qnil
);
4548 adjust_frame_size (f
, -1, -1, 5, 0, Qtool_bar_lines
);
4552 /* Create a tool bar for frame F. */
4555 xg_create_tool_bar (struct frame
*f
)
4557 struct x_output
*x
= f
->output_data
.x
;
4558 #if GTK_CHECK_VERSION (3, 3, 6)
4559 GtkStyleContext
*gsty
;
4561 struct xg_frame_tb_info
*tbinfo
4562 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4566 tbinfo
= xmalloc (sizeof (*tbinfo
));
4567 tbinfo
->last_tool_bar
= Qnil
;
4568 tbinfo
->style
= Qnil
;
4569 tbinfo
->hmargin
= tbinfo
->vmargin
= 0;
4570 tbinfo
->dir
= GTK_TEXT_DIR_NONE
;
4571 tbinfo
->n_last_items
= 0;
4572 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4577 x
->toolbar_widget
= gtk_toolbar_new ();
4579 gtk_widget_set_name (x
->toolbar_widget
, "emacs-toolbar");
4581 gtk_toolbar_set_style (GTK_TOOLBAR (x
->toolbar_widget
), GTK_TOOLBAR_ICONS
);
4582 toolbar_set_orientation (x
->toolbar_widget
, GTK_ORIENTATION_HORIZONTAL
);
4583 g_signal_connect (x
->toolbar_widget
, "size-allocate",
4584 G_CALLBACK (tb_size_cb
), f
);
4585 #if GTK_CHECK_VERSION (3, 3, 6)
4586 gsty
= gtk_widget_get_style_context (x
->toolbar_widget
);
4587 gtk_style_context_add_class (gsty
, "primary-toolbar");
4592 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4594 /* Find the right-to-left image named by RTL in the tool bar images for F.
4595 Returns IMAGE if RTL is not found. */
4598 find_rtl_image (struct frame
*f
, Lisp_Object image
, Lisp_Object rtl
)
4601 Lisp_Object file
, rtl_name
;
4603 rtl_name
= Ffile_name_nondirectory (rtl
);
4605 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
4607 Lisp_Object rtl_image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4608 if (!NILP (file
= file_for_image (rtl_image
)))
4610 file
= call1 (intern ("file-name-sans-extension"),
4611 Ffile_name_nondirectory (file
));
4612 if (! NILP (Fequal (file
, rtl_name
)))
4623 static GtkToolItem
*
4624 xg_make_tool_item (struct frame
*f
,
4626 GtkWidget
**wbutton
,
4628 int i
, bool horiz
, bool text_image
)
4630 GtkToolItem
*ti
= gtk_tool_item_new ();
4631 GtkWidget
*vb
= gtk_box_new (horiz
4632 ? GTK_ORIENTATION_HORIZONTAL
4633 : GTK_ORIENTATION_VERTICAL
,
4635 GtkWidget
*wb
= gtk_button_new ();
4636 /* The eventbox is here so we can have tooltips on disabled items. */
4637 GtkWidget
*weventbox
= gtk_event_box_new ();
4638 #if GTK_CHECK_VERSION (3, 3, 6)
4639 GtkCssProvider
*css_prov
= gtk_css_provider_new ();
4640 GtkStyleContext
*gsty
;
4642 gtk_css_provider_load_from_data (css_prov
,
4644 " background-color: transparent;"
4648 gsty
= gtk_widget_get_style_context (weventbox
);
4649 gtk_style_context_add_provider (gsty
,
4650 GTK_STYLE_PROVIDER (css_prov
),
4651 GTK_STYLE_PROVIDER_PRIORITY_USER
);
4652 g_object_unref (css_prov
);
4655 gtk_box_set_homogeneous (GTK_BOX (vb
), FALSE
);
4657 if (wimage
&& !text_image
)
4658 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4660 gtk_box_pack_start (GTK_BOX (vb
), gtk_label_new (label
), TRUE
, TRUE
, 0);
4661 if (wimage
&& text_image
)
4662 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4664 #if GTK_CHECK_VERSION (3, 20, 0)
4665 gtk_widget_set_focus_on_click (wb
, FALSE
);
4667 gtk_button_set_focus_on_click (GTK_BUTTON (wb
), FALSE
);
4669 gtk_button_set_relief (GTK_BUTTON (wb
), GTK_RELIEF_NONE
);
4670 gtk_container_add (GTK_CONTAINER (wb
), vb
);
4671 gtk_container_add (GTK_CONTAINER (weventbox
), wb
);
4672 gtk_container_add (GTK_CONTAINER (ti
), weventbox
);
4674 if (wimage
|| label
)
4677 gpointer gi
= (gpointer
) ii
;
4679 g_signal_connect (G_OBJECT (wb
), "clicked",
4680 G_CALLBACK (xg_tool_bar_callback
),
4683 g_object_set_data (G_OBJECT (weventbox
), XG_FRAME_DATA
, (gpointer
)f
);
4686 /* Catch expose events to overcome an annoying redraw bug, see
4687 comment for xg_tool_bar_item_expose_callback. */
4688 g_signal_connect (G_OBJECT (ti
),
4690 G_CALLBACK (xg_tool_bar_item_expose_callback
),
4693 gtk_tool_item_set_homogeneous (ti
, FALSE
);
4695 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4696 no distinction based on modifiers in the activate callback,
4697 so we have to do it ourselves. */
4698 g_signal_connect (wb
, "button-release-event",
4699 G_CALLBACK (xg_tool_bar_button_cb
),
4702 g_object_set_data (G_OBJECT (wb
), XG_FRAME_DATA
, (gpointer
)f
);
4704 /* Use enter/leave notify to show help. We use the events
4705 rather than the GtkButton specific signals "enter" and
4706 "leave", so we can have only one callback. The event
4707 will tell us what kind of event it is. */
4708 g_signal_connect (G_OBJECT (weventbox
),
4709 "enter-notify-event",
4710 G_CALLBACK (xg_tool_bar_help_callback
),
4712 g_signal_connect (G_OBJECT (weventbox
),
4713 "leave-notify-event",
4714 G_CALLBACK (xg_tool_bar_help_callback
),
4718 if (wbutton
) *wbutton
= wb
;
4724 is_box_type (GtkWidget
*vb
, bool is_horizontal
)
4728 if (GTK_IS_BOX (vb
))
4730 GtkOrientation ori
= gtk_orientable_get_orientation (GTK_ORIENTABLE (vb
));
4731 ret
= (ori
== GTK_ORIENTATION_HORIZONTAL
&& is_horizontal
)
4732 || (ori
== GTK_ORIENTATION_VERTICAL
&& ! is_horizontal
);
4736 return is_horizontal
? GTK_IS_VBOX (vb
) : GTK_IS_HBOX (vb
);
4742 xg_tool_item_stale_p (GtkWidget
*wbutton
, const char *stock_name
,
4743 const char *icon_name
, const struct image
*img
,
4744 const char *label
, bool horiz
)
4748 GtkWidget
*vb
= XG_BIN_CHILD (wbutton
);
4749 GtkWidget
*wlbl
= xg_get_tool_bar_widgets (vb
, &wimage
);
4751 /* Check if the tool icon matches. */
4752 if (stock_name
&& wimage
)
4754 old
= g_object_get_data (G_OBJECT (wimage
),
4755 XG_TOOL_BAR_STOCK_NAME
);
4756 if (!old
|| strcmp (old
, stock_name
))
4759 else if (icon_name
&& wimage
)
4761 old
= g_object_get_data (G_OBJECT (wimage
),
4762 XG_TOOL_BAR_ICON_NAME
);
4763 if (!old
|| strcmp (old
, icon_name
))
4768 gpointer gold_img
= g_object_get_data (G_OBJECT (wimage
),
4769 XG_TOOL_BAR_IMAGE_DATA
);
4770 Pixmap old_img
= (Pixmap
) gold_img
;
4771 if (old_img
!= img
->pixmap
)
4775 /* Check button configuration and label. */
4776 if (is_box_type (vb
, horiz
)
4777 || (label
? (wlbl
== NULL
) : (wlbl
!= NULL
)))
4780 /* Ensure label is correct. */
4782 gtk_label_set_text (GTK_LABEL (wlbl
), label
);
4787 xg_update_tool_bar_sizes (struct frame
*f
)
4789 struct x_output
*x
= f
->output_data
.x
;
4791 int nl
= 0, nr
= 0, nt
= 0, nb
= 0;
4792 GtkWidget
*top_widget
= x
->toolbar_widget
;
4794 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget
), NULL
, &req
);
4795 if (x
->toolbar_in_hbox
)
4798 gtk_container_child_get (GTK_CONTAINER (x
->hbox_widget
),
4800 "position", &pos
, NULL
);
4801 if (pos
== 0) nl
= req
.width
;
4802 else nr
= req
.width
;
4807 gtk_container_child_get (GTK_CONTAINER (x
->vbox_widget
),
4809 "position", &pos
, NULL
);
4810 if (pos
== 0 || (pos
== 1 && x
->menubar_widget
)) nt
= req
.height
;
4811 else nb
= req
.height
;
4814 if (nl
!= FRAME_TOOLBAR_LEFT_WIDTH (f
)
4815 || nr
!= FRAME_TOOLBAR_RIGHT_WIDTH (f
)
4816 || nt
!= FRAME_TOOLBAR_TOP_HEIGHT (f
)
4817 || nb
!= FRAME_TOOLBAR_BOTTOM_HEIGHT (f
))
4819 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = FRAME_TOOLBAR_LEFT_WIDTH (f
)
4820 = FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
4821 FRAME_TOOLBAR_LEFT_WIDTH (f
) = nl
;
4822 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = nr
;
4823 FRAME_TOOLBAR_TOP_HEIGHT (f
) = nt
;
4824 FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = nb
;
4833 find_icon_from_name (char *name
,
4834 GtkIconTheme
*icon_theme
,
4837 #if ! GTK_CHECK_VERSION (3, 10, 0)
4838 GtkStockItem stock_item
;
4841 if (name
[0] == 'n' && name
[1] == ':')
4843 *icon_name
= name
+ 2;
4846 if (! gtk_icon_theme_has_icon (icon_theme
, *icon_name
))
4850 #if ! GTK_CHECK_VERSION (3, 10, 0)
4851 else if (gtk_stock_lookup (name
, &stock_item
))
4854 else if (gtk_icon_theme_has_icon (icon_theme
, name
))
4869 /* Update the tool bar for frame F. Add new buttons and remove old. */
4872 update_frame_tool_bar (struct frame
*f
)
4875 struct x_output
*x
= f
->output_data
.x
;
4876 int hmargin
= 0, vmargin
= 0;
4877 GtkToolbar
*wtoolbar
;
4879 GtkTextDirection dir
;
4881 bool text_image
, horiz
;
4882 struct xg_frame_tb_info
*tbinfo
;
4884 GtkIconTheme
*icon_theme
;
4887 if (! FRAME_GTK_WIDGET (f
))
4892 if (RANGED_INTEGERP (1, Vtool_bar_button_margin
, INT_MAX
))
4894 hmargin
= XFASTINT (Vtool_bar_button_margin
);
4895 vmargin
= XFASTINT (Vtool_bar_button_margin
);
4897 else if (CONSP (Vtool_bar_button_margin
))
4899 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin
), INT_MAX
))
4900 hmargin
= XFASTINT (XCAR (Vtool_bar_button_margin
));
4902 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin
), INT_MAX
))
4903 vmargin
= XFASTINT (XCDR (Vtool_bar_button_margin
));
4906 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4907 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4908 i.e. zero. This means that margins less than
4909 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4910 hmargin
= max (0, hmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4911 vmargin
= max (0, vmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4913 if (! x
->toolbar_widget
)
4914 xg_create_tool_bar (f
);
4916 wtoolbar
= GTK_TOOLBAR (x
->toolbar_widget
);
4917 dir
= gtk_widget_get_direction (GTK_WIDGET (wtoolbar
));
4919 style
= Ftool_bar_get_system_style ();
4920 screen
= gtk_widget_get_screen (GTK_WIDGET (wtoolbar
));
4921 icon_theme
= gtk_icon_theme_get_for_screen (screen
);
4923 /* Are we up to date? */
4924 tbinfo
= g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4927 if (! NILP (tbinfo
->last_tool_bar
) && ! NILP (f
->tool_bar_items
)
4928 && tbinfo
->n_last_items
== f
->n_tool_bar_items
4929 && tbinfo
->hmargin
== hmargin
&& tbinfo
->vmargin
== vmargin
4930 && tbinfo
->dir
== dir
4931 && ! NILP (Fequal (tbinfo
->style
, style
))
4932 && ! NILP (Fequal (tbinfo
->last_tool_bar
, f
->tool_bar_items
)))
4938 tbinfo
->last_tool_bar
= f
->tool_bar_items
;
4939 tbinfo
->n_last_items
= f
->n_tool_bar_items
;
4940 tbinfo
->style
= style
;
4941 tbinfo
->hmargin
= hmargin
;
4942 tbinfo
->vmargin
= vmargin
;
4945 text_image
= EQ (style
, Qtext_image_horiz
);
4946 horiz
= EQ (style
, Qboth_horiz
) || text_image
;
4948 for (i
= j
= 0; i
< f
->n_tool_bar_items
; ++i
)
4950 bool enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
4951 bool selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
4955 struct image
*img
= NULL
;
4957 Lisp_Object stock
= Qnil
;
4958 char *stock_name
= NULL
;
4959 char *icon_name
= NULL
;
4961 GtkWidget
*wbutton
= NULL
;
4962 Lisp_Object specified_file
;
4963 bool vert_only
= ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY
));
4965 = (EQ (style
, Qimage
) || (vert_only
&& horiz
)) ? NULL
4966 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL
))
4967 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL
))
4970 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
4972 /* If this is a separator, use a gtk separator item. */
4973 if (EQ (PROP (TOOL_BAR_ITEM_TYPE
), Qt
))
4975 if (ti
== NULL
|| !GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4978 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4980 ti
= gtk_separator_tool_item_new ();
4981 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
4987 /* Otherwise, the tool-bar item is an ordinary button. */
4989 if (ti
&& GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4991 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
4995 if (ti
) wbutton
= XG_BIN_CHILD (XG_BIN_CHILD (ti
));
4997 /* Ignore invalid image specifications. */
4998 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4999 if (!valid_image_p (image
))
5002 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5007 specified_file
= file_for_image (image
);
5008 if (!NILP (specified_file
) && !NILP (Ffboundp (Qx_gtk_map_stock
)))
5009 stock
= call1 (Qx_gtk_map_stock
, specified_file
);
5014 for (tem
= stock
; CONSP (tem
); tem
= XCDR (tem
))
5015 if (! NILP (tem
) && STRINGP (XCAR (tem
)))
5017 stock_name
= find_icon_from_name (SSDATA (XCAR (tem
)),
5020 if (stock_name
|| icon_name
) break;
5023 else if (STRINGP (stock
))
5025 stock_name
= find_icon_from_name (SSDATA (stock
),
5030 if (stock_name
|| icon_name
)
5031 icon_size
= gtk_toolbar_get_icon_size (wtoolbar
);
5033 if (stock_name
== NULL
&& icon_name
== NULL
)
5035 /* No stock image, or stock item not known. Try regular
5036 image. If image is a vector, choose it according to the
5038 if (dir
== GTK_TEXT_DIR_RTL
5039 && !NILP (rtl
= PROP (TOOL_BAR_ITEM_RTL_IMAGE
))
5041 image
= find_rtl_image (f
, image
, rtl
);
5043 if (VECTORP (image
))
5047 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
5048 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
5051 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
5052 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
5054 eassert (ASIZE (image
) >= idx
);
5055 image
= AREF (image
, idx
);
5060 img_id
= lookup_image (f
, image
);
5061 img
= IMAGE_FROM_ID (f
, img_id
);
5062 prepare_image_for_display (f
, img
);
5064 if (img
->load_failed_p
|| img
->pixmap
== None
)
5067 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5073 /* If there is an existing widget, check if it's stale; if so,
5074 remove it and make a new tool item from scratch. */
5075 if (ti
&& xg_tool_item_stale_p (wbutton
, stock_name
, icon_name
,
5078 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5087 /* Save the image so we can see if an update is needed the
5088 next time we call xg_tool_item_match_p. */
5089 if (EQ (style
, Qtext
))
5091 else if (stock_name
)
5094 #if GTK_CHECK_VERSION (3, 10, 0)
5095 w
= gtk_image_new_from_icon_name (stock_name
, icon_size
);
5097 w
= gtk_image_new_from_stock (stock_name
, icon_size
);
5099 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_STOCK_NAME
,
5100 (gpointer
) xstrdup (stock_name
),
5101 (GDestroyNotify
) xfree
);
5105 w
= gtk_image_new_from_icon_name (icon_name
, icon_size
);
5106 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_ICON_NAME
,
5107 (gpointer
) xstrdup (icon_name
),
5108 (GDestroyNotify
) xfree
);
5112 w
= xg_get_image_for_pixmap (f
, img
, x
->widget
, NULL
);
5113 g_object_set_data (G_OBJECT (w
), XG_TOOL_BAR_IMAGE_DATA
,
5114 (gpointer
)img
->pixmap
);
5117 #if GTK_CHECK_VERSION (3, 14, 0)
5120 gtk_widget_set_margin_start (w
, hmargin
);
5121 gtk_widget_set_margin_end (w
, hmargin
);
5122 gtk_widget_set_margin_top (w
, vmargin
);
5123 gtk_widget_set_margin_bottom (w
, vmargin
);
5126 if (w
) gtk_misc_set_padding (GTK_MISC (w
), hmargin
, vmargin
);
5128 ti
= xg_make_tool_item (f
, w
, &wbutton
, label
, i
, horiz
, text_image
);
5129 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
5134 gtk_widget_set_sensitive (wbutton
, enabled_p
);
5138 /* Remove buttons not longer needed. */
5141 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
5143 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
5144 } while (ti
!= NULL
);
5146 if (f
->n_tool_bar_items
!= 0)
5148 if (! x
->toolbar_is_packed
)
5149 xg_pack_tool_bar (f
, FRAME_TOOL_BAR_POSITION (f
));
5150 gtk_widget_show_all (x
->toolbar_widget
);
5151 if (xg_update_tool_bar_sizes (f
))
5154 = ((f
->after_make_frame
5155 && !f
->tool_bar_resized
5156 && (EQ (frame_inhibit_implied_resize
, Qt
)
5157 || (CONSP (frame_inhibit_implied_resize
)
5158 && !NILP (Fmemq (Qtool_bar_lines
,
5159 frame_inhibit_implied_resize
))))
5160 /* This will probably fail to DTRT in the
5161 fullheight/-width cases. */
5162 && NILP (get_frame_param (f
, Qfullscreen
)))
5166 frame_size_history_add (f
, Qupdate_frame_tool_bar
, 0, 0, Qnil
);
5167 adjust_frame_size (f
, -1, -1, inhibit
, 0, Qtool_bar_lines
);
5169 f
->tool_bar_resized
= f
->tool_bar_redisplayed
;
5175 /* Deallocate all resources for the tool bar on frame F.
5176 Remove the tool bar. */
5179 free_frame_tool_bar (struct frame
*f
)
5181 struct x_output
*x
= f
->output_data
.x
;
5183 if (x
->toolbar_widget
)
5185 struct xg_frame_tb_info
*tbinfo
;
5186 GtkWidget
*top_widget
= x
->toolbar_widget
;
5189 if (x
->toolbar_is_packed
)
5191 if (x
->toolbar_in_hbox
)
5192 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
5195 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
5199 gtk_widget_destroy (x
->toolbar_widget
);
5201 x
->toolbar_widget
= 0;
5202 x
->toolbar_widget
= 0;
5203 x
->toolbar_is_packed
= false;
5204 FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
5205 FRAME_TOOLBAR_LEFT_WIDTH (f
) = FRAME_TOOLBAR_RIGHT_WIDTH (f
) = 0;
5207 tbinfo
= g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
5212 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
5217 frame_size_history_add (f
, Qfree_frame_tool_bar
, 0, 0, Qnil
);
5218 adjust_frame_size (f
, -1, -1, 2, 0, Qtool_bar_lines
);
5225 xg_change_toolbar_position (struct frame
*f
, Lisp_Object pos
)
5227 struct x_output
*x
= f
->output_data
.x
;
5228 GtkWidget
*top_widget
= x
->toolbar_widget
;
5230 if (! x
->toolbar_widget
|| ! top_widget
)
5234 g_object_ref (top_widget
);
5235 if (x
->toolbar_is_packed
)
5237 if (x
->toolbar_in_hbox
)
5238 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
5241 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
5245 xg_pack_tool_bar (f
, pos
);
5246 g_object_unref (top_widget
);
5248 if (xg_update_tool_bar_sizes (f
))
5250 frame_size_history_add (f
, Qxg_change_toolbar_position
, 0, 0, Qnil
);
5251 adjust_frame_size (f
, -1, -1, 2, 0, Qtool_bar_lines
);
5260 /***********************************************************************
5262 ***********************************************************************/
5264 xg_initialize (void)
5266 GtkBindingSet
*binding_set
;
5267 GtkSettings
*settings
;
5270 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5271 we keep it permanently linked in. */
5276 xg_ignore_gtk_scrollbar
= 0;
5277 xg_menu_cb_list
.prev
= xg_menu_cb_list
.next
=
5278 xg_menu_item_cb_list
.prev
= xg_menu_item_cb_list
.next
= 0;
5280 id_to_widget
.max_size
= id_to_widget
.used
= 0;
5281 id_to_widget
.widgets
= 0;
5283 settings
= gtk_settings_get_for_screen (gdk_display_get_default_screen
5284 (gdk_display_get_default ()));
5285 #if ! GTK_CHECK_VERSION (3, 10, 0)
5286 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5287 bindings. It doesn't seem to be any way to remove properties,
5288 so we set it to "" which in means "no key". */
5289 gtk_settings_set_string_property (settings
,
5290 "gtk-menu-bar-accel",
5295 /* Make GTK text input widgets use Emacs style keybindings. This is
5297 #if GTK_CHECK_VERSION (3, 16, 0)
5298 g_object_set (settings
, "gtk-key-theme-name", "Emacs", NULL
);
5300 gtk_settings_set_string_property (settings
,
5301 "gtk-key-theme-name",
5306 /* Make dialogs close on C-g. Since file dialog inherits from
5307 dialog, this works for them also. */
5308 binding_set
= gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG
));
5309 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
5312 /* Make menus close on C-g. */
5313 binding_set
= gtk_binding_set_by_class (g_type_class_ref
5314 (GTK_TYPE_MENU_SHELL
));
5315 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
5317 update_theme_scrollbar_width ();
5318 update_theme_scrollbar_height ();
5320 #ifdef HAVE_FREETYPE
5321 x_last_font_name
= NULL
;
5325 #endif /* USE_GTK */