1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2017 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or (at
10 your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
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
;
208 /* Close display DPY. */
211 xg_display_close (Display
*dpy
)
213 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (dpy
);
215 /* If this is the default display, try to change it before closing.
216 If there is no other display to use, gdpy_def is set to NULL, and
217 the next call to xg_display_open resets the default display. */
218 if (gdk_display_get_default () == gdpy
)
220 struct x_display_info
*dpyinfo
;
221 GdkDisplay
*gdpy_new
= NULL
;
223 /* Find another display. */
224 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
225 if (dpyinfo
->display
!= dpy
)
227 gdpy_new
= gdk_x11_lookup_xdisplay (dpyinfo
->display
);
228 gdk_display_manager_set_default_display (gdk_display_manager_get (),
235 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
236 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
237 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
238 can continue running, but there will be memory leaks. */
239 g_object_run_dispose (G_OBJECT (gdpy
));
241 /* This seems to be fixed in GTK 2.10. */
242 gdk_display_close (gdpy
);
247 /***********************************************************************
249 ***********************************************************************/
251 /* Create and return the cursor to be used for popup menus and
252 scroll bars on display DPY. */
255 xg_create_default_cursor (Display
*dpy
)
257 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (dpy
);
258 return gdk_cursor_new_for_display (gdpy
, GDK_LEFT_PTR
);
261 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
264 xg_get_pixbuf_from_pix_and_mask (struct frame
*f
,
268 GdkPixbuf
*icon_buf
= 0;
271 unsigned int width
, height
, depth
, uunused
;
273 if (FRAME_DISPLAY_INFO (f
)->red_bits
!= 8)
275 XGetGeometry (FRAME_X_DISPLAY (f
), pix
, &wunused
, &iunused
, &iunused
,
276 &width
, &height
, &uunused
, &depth
);
279 XImage
*xim
= XGetImage (FRAME_X_DISPLAY (f
), pix
, 0, 0, width
, height
,
283 XImage
*xmm
= (! mask
? 0
284 : XGetImage (FRAME_X_DISPLAY (f
), mask
, 0, 0,
285 width
, height
, ~0, XYPixmap
));
286 icon_buf
= gdk_pixbuf_new (GDK_COLORSPACE_RGB
, TRUE
, 8, width
, height
);
289 guchar
*pixels
= gdk_pixbuf_get_pixels (icon_buf
);
290 int rowjunkwidth
= gdk_pixbuf_get_rowstride (icon_buf
) - width
* 4;
291 for (int y
= 0; y
< height
; y
++, pixels
+= rowjunkwidth
)
292 for (int x
= 0; x
< width
; x
++)
294 unsigned long rgb
= XGetPixel (xim
, x
, y
);
295 *pixels
++ = (rgb
>> 16) & 255;
296 *pixels
++ = (rgb
>> 8) & 255;
297 *pixels
++ = rgb
& 255;
298 *pixels
++ = xmm
&& !XGetPixel (xmm
, x
, y
) ? 0 : 255;
311 file_for_image (Lisp_Object image
)
313 Lisp_Object specified_file
= Qnil
;
316 for (tail
= XCDR (image
);
317 NILP (specified_file
) && CONSP (tail
) && CONSP (XCDR (tail
));
318 tail
= XCDR (XCDR (tail
)))
319 if (EQ (XCAR (tail
), QCfile
))
320 specified_file
= XCAR (XCDR (tail
));
322 return specified_file
;
325 /* For the image defined in IMG, make and return a GtkImage. For displays with
326 8 planes or less we must make a GdkPixbuf and apply the mask manually.
327 Otherwise the highlighting and dimming the tool bar code in GTK does
328 will look bad. For display with more than 8 planes we just use the
329 pixmap and mask directly. For monochrome displays, GTK doesn't seem
330 able to use external pixmaps, it looks bad whatever we do.
331 The image is defined on the display where frame F is.
332 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
333 If OLD_WIDGET is NULL, a new widget is constructed and returned.
334 If OLD_WIDGET is not NULL, that widget is modified. */
337 xg_get_image_for_pixmap (struct frame
*f
,
340 GtkImage
*old_widget
)
344 /* If we have a file, let GTK do all the image handling.
345 This seems to be the only way to make insensitive and activated icons
346 look good in all cases. */
347 Lisp_Object specified_file
= file_for_image (img
->spec
);
350 /* We already loaded the image once before calling this
351 function, so this only fails if the image file has been removed.
352 In that case, use the pixmap already loaded. */
354 if (STRINGP (specified_file
)
355 && STRINGP (file
= x_find_image_file (specified_file
)))
357 char *encoded_file
= SSDATA (ENCODE_FILE (file
));
359 old_widget
= GTK_IMAGE (gtk_image_new_from_file (encoded_file
));
361 gtk_image_set_from_file (old_widget
, encoded_file
);
363 return GTK_WIDGET (old_widget
);
366 /* No file, do the image handling ourselves. This will look very bad
367 on a monochrome display, and sometimes bad on all displays with
370 /* This is a workaround to make icons look good on pseudo color
371 displays. Apparently GTK expects the images to have an alpha
372 channel. If they don't, insensitive and activated icons will
373 look bad. This workaround does not work on monochrome displays,
374 and is strictly not needed on true color/static color displays (i.e.
375 16 bits and higher). But we do it anyway so we get a pixbuf that is
376 not associated with the img->pixmap. The img->pixmap may be removed
377 by clearing the image cache and then the tool bar redraw fails, since
378 Gtk+ assumes the pixmap is always there. */
379 icon_buf
= xg_get_pixbuf_from_pix_and_mask (f
, img
->pixmap
, img
->mask
);
384 old_widget
= GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf
));
386 gtk_image_set_from_pixbuf (old_widget
, icon_buf
);
388 g_object_unref (G_OBJECT (icon_buf
));
391 return GTK_WIDGET (old_widget
);
395 /* Set CURSOR on W and all widgets W contain. We must do like this
396 for scroll bars and menu because they create widgets internally,
397 and it is those widgets that are visible. */
400 xg_set_cursor (GtkWidget
*w
, GdkCursor
*cursor
)
402 GdkWindow
*window
= gtk_widget_get_window (w
);
403 GList
*children
= gdk_window_peek_children (window
);
405 gdk_window_set_cursor (window
, cursor
);
407 /* The scroll bar widget has more than one GDK window (had to look at
408 the source to figure this out), and there is no way to set cursor
409 on widgets in GTK. So we must set the cursor for all GDK windows.
412 for ( ; children
; children
= g_list_next (children
))
413 gdk_window_set_cursor (GDK_WINDOW (children
->data
), cursor
);
416 /* Insert NODE into linked LIST. */
419 xg_list_insert (xg_list_node
*list
, xg_list_node
*node
)
421 xg_list_node
*list_start
= list
->next
;
423 if (list_start
) list_start
->prev
= node
;
424 node
->next
= list_start
;
429 /* Remove NODE from linked LIST. */
432 xg_list_remove (xg_list_node
*list
, xg_list_node
*node
)
434 xg_list_node
*list_start
= list
->next
;
435 if (node
== list_start
)
437 list
->next
= node
->next
;
438 if (list
->next
) list
->next
->prev
= 0;
442 node
->prev
->next
= node
->next
;
443 if (node
->next
) node
->next
->prev
= node
->prev
;
447 /* Allocate and return a utf8 version of STR. If STR is already
448 utf8 or NULL, just return a copy of STR.
449 A new string is allocated and the caller must free the result
453 get_utf8_string (const char *str
)
457 if (!str
) return NULL
;
459 /* If not UTF-8, try current locale. */
460 if (!g_utf8_validate (str
, -1, NULL
))
461 utf8_str
= g_locale_to_utf8 (str
, -1, 0, 0, 0);
463 return g_strdup (str
);
467 /* Probably some control characters in str. Escape them. */
469 ptrdiff_t nr_bad
= 0;
472 unsigned char *p
= (unsigned char *)str
;
476 while (! (cp
= g_locale_to_utf8 ((char *)p
, -1, &bytes_read
,
477 &bytes_written
, &err
))
478 && err
->code
== G_CONVERT_ERROR_ILLEGAL_SEQUENCE
)
481 p
+= bytes_written
+1;
495 if (INT_MULTIPLY_WRAPV (nr_bad
, 4, &alloc
)
496 || INT_ADD_WRAPV (len
+ 1, alloc
, &alloc
)
498 memory_full (SIZE_MAX
);
499 up
= utf8_str
= xmalloc (alloc
);
500 p
= (unsigned char *)str
;
502 while (! (cp
= g_locale_to_utf8 ((char *)p
, -1, &bytes_read
,
503 &bytes_written
, &err
))
504 && err
->code
== G_CONVERT_ERROR_ILLEGAL_SEQUENCE
)
506 memcpy (up
, p
, bytes_written
);
508 up
+= sprintf (up
, "\\%03o", p
[bytes_written
]);
509 p
+= bytes_written
+ 1;
528 /* Check for special colors used in face spec for region face.
529 The colors are fetched from the Gtk+ theme.
530 Return true if color was found, false if not. */
533 xg_check_special_colors (struct frame
*f
,
534 const char *color_name
,
538 bool get_bg
= strcmp ("gtk_selection_bg_color", color_name
) == 0;
539 bool get_fg
= !get_bg
&& strcmp ("gtk_selection_fg_color", color_name
) == 0;
541 if (! FRAME_GTK_WIDGET (f
) || ! (get_bg
|| get_fg
))
547 GtkStyleContext
*gsty
548 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f
));
550 char buf
[sizeof "rgb://rrrr/gggg/bbbb"];
551 int state
= GTK_STATE_FLAG_SELECTED
|GTK_STATE_FLAG_FOCUSED
;
553 gtk_style_context_get_color (gsty
, state
, &col
);
555 gtk_style_context_get_background_color (gsty
, state
, &col
);
557 sprintf (buf
, "rgb:%04x/%04x/%04x",
558 (unsigned) (col
.red
* 65535),
559 (unsigned) (col
.green
* 65535),
560 (unsigned) (col
.blue
* 65535));
561 success_p
= x_parse_color (f
, buf
, color
) != 0;
563 GtkStyle
*gsty
= gtk_widget_get_style (FRAME_GTK_WIDGET (f
));
564 GdkColor
*grgb
= get_bg
565 ? &gsty
->bg
[GTK_STATE_SELECTED
]
566 : &gsty
->fg
[GTK_STATE_SELECTED
];
568 color
->red
= grgb
->red
;
569 color
->green
= grgb
->green
;
570 color
->blue
= grgb
->blue
;
571 color
->pixel
= grgb
->pixel
;
582 /***********************************************************************
584 ***********************************************************************/
585 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
586 We use that to pop down the tooltip. This happens if Gtk+ for some
587 reason wants to change or hide the tooltip. */
589 #ifdef USE_GTK_TOOLTIP
592 hierarchy_ch_cb (GtkWidget
*widget
,
593 GtkWidget
*previous_toplevel
,
596 struct frame
*f
= user_data
;
597 struct x_output
*x
= f
->output_data
.x
;
598 GtkWidget
*top
= gtk_widget_get_toplevel (x
->ttip_lbl
);
600 if (! top
|| ! GTK_IS_WINDOW (top
))
601 gtk_widget_hide (previous_toplevel
);
604 /* Callback called when Gtk+ thinks a tooltip should be displayed.
605 We use it to get the tooltip window and the tooltip widget so
606 we can manipulate the ourselves.
608 Return FALSE ensures that the tooltip is not shown. */
611 qttip_cb (GtkWidget
*widget
,
614 gboolean keyboard_mode
,
618 struct frame
*f
= user_data
;
619 struct x_output
*x
= f
->output_data
.x
;
620 if (x
->ttip_widget
== NULL
)
625 g_object_set (G_OBJECT (widget
), "has-tooltip", FALSE
, NULL
);
626 x
->ttip_widget
= tooltip
;
627 g_object_ref (G_OBJECT (tooltip
));
628 x
->ttip_lbl
= gtk_label_new ("");
629 g_object_ref (G_OBJECT (x
->ttip_lbl
));
630 gtk_tooltip_set_custom (tooltip
, x
->ttip_lbl
);
631 x
->ttip_window
= GTK_WINDOW (gtk_widget_get_toplevel (x
->ttip_lbl
));
633 /* Change stupid Gtk+ default line wrapping. */
634 p
= gtk_widget_get_parent (x
->ttip_lbl
);
635 list
= gtk_container_get_children (GTK_CONTAINER (p
));
636 for (iter
= list
; iter
; iter
= g_list_next (iter
))
638 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
639 if (GTK_IS_LABEL (w
))
640 gtk_label_set_line_wrap (GTK_LABEL (w
), FALSE
);
644 /* ATK needs an empty title for some reason. */
645 gtk_window_set_title (x
->ttip_window
, "");
646 /* Realize so we can safely get screen later on. */
647 gtk_widget_realize (GTK_WIDGET (x
->ttip_window
));
648 gtk_widget_realize (x
->ttip_lbl
);
650 g_signal_connect (x
->ttip_lbl
, "hierarchy-changed",
651 G_CALLBACK (hierarchy_ch_cb
), f
);
656 #endif /* USE_GTK_TOOLTIP */
658 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
659 Return true if a system tooltip is available. */
662 xg_prepare_tooltip (struct frame
*f
,
667 #ifndef USE_GTK_TOOLTIP
670 struct x_output
*x
= f
->output_data
.x
;
674 GtkSettings
*settings
;
675 gboolean tt_enabled
= TRUE
;
677 Lisp_Object encoded_string
;
679 if (!x
->ttip_lbl
) return 0;
682 encoded_string
= ENCODE_UTF_8 (string
);
683 widget
= GTK_WIDGET (x
->ttip_lbl
);
684 gwin
= gtk_widget_get_window (GTK_WIDGET (x
->ttip_window
));
685 screen
= gdk_window_get_screen (gwin
);
686 settings
= gtk_settings_get_for_screen (screen
);
687 g_object_get (settings
, "gtk-enable-tooltips", &tt_enabled
, NULL
);
690 g_object_set (settings
, "gtk-enable-tooltips", FALSE
, NULL
);
691 /* Record that we disabled it so it can be enabled again. */
692 g_object_set_data (G_OBJECT (x
->ttip_window
), "restore-tt",
696 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
697 g_object_set_data (G_OBJECT
698 (gtk_widget_get_display (GTK_WIDGET (x
->ttip_window
))),
699 "gdk-display-current-tooltip", NULL
);
701 /* Put our dummy widget in so we can get callbacks for unrealize and
702 hierarchy-changed. */
703 gtk_tooltip_set_custom (x
->ttip_widget
, widget
);
704 gtk_tooltip_set_text (x
->ttip_widget
, SSDATA (encoded_string
));
705 gtk_widget_get_preferred_size (GTK_WIDGET (x
->ttip_window
), NULL
, &req
);
706 if (width
) *width
= req
.width
;
707 if (height
) *height
= req
.height
;
712 #endif /* USE_GTK_TOOLTIP */
715 /* Show the tooltip at ROOT_X and ROOT_Y.
716 xg_prepare_tooltip must have been called before this function. */
719 xg_show_tooltip (struct frame
*f
, int root_x
, int root_y
)
721 #ifdef USE_GTK_TOOLTIP
722 struct x_output
*x
= f
->output_data
.x
;
726 gtk_window_move (x
->ttip_window
, root_x
, root_y
);
727 gtk_widget_show_all (GTK_WIDGET (x
->ttip_window
));
733 /* Hide tooltip if shown. Do nothing if not shown.
734 Return true if tip was hidden, false if not (i.e. not using
738 xg_hide_tooltip (struct frame
*f
)
741 #ifdef USE_GTK_TOOLTIP
742 if (f
->output_data
.x
->ttip_window
)
744 GtkWindow
*win
= f
->output_data
.x
->ttip_window
;
746 gtk_widget_hide (GTK_WIDGET (win
));
748 if (g_object_get_data (G_OBJECT (win
), "restore-tt"))
750 GdkWindow
*gwin
= gtk_widget_get_window (GTK_WIDGET (win
));
751 GdkScreen
*screen
= gdk_window_get_screen (gwin
);
752 GtkSettings
*settings
= gtk_settings_get_for_screen (screen
);
753 g_object_set (settings
, "gtk-enable-tooltips", TRUE
, NULL
);
764 /***********************************************************************
765 General functions for creating widgets, resizing, events, e.t.c.
766 ***********************************************************************/
769 my_log_handler (const gchar
*log_domain
, GLogLevelFlags log_level
,
770 const gchar
*msg
, gpointer user_data
)
772 if (!strstr (msg
, "visible children"))
773 fprintf (stderr
, "XX %s-WARNING **: %s\n", log_domain
, msg
);
776 /* Make a geometry string and pass that to GTK. It seems this is the
777 only way to get geometry position right if the user explicitly
778 asked for a position when starting Emacs.
779 F is the frame we shall set geometry for. */
782 xg_set_geometry (struct frame
*f
)
784 if (f
->size_hint_flags
& (USPosition
| PPosition
))
786 if (x_gtk_use_window_move
)
788 /* Handle negative positions without consulting
789 gtk_window_parse_geometry (Bug#25851). The position will
790 be off by scrollbar width + window manager decorations. */
791 if (f
->size_hint_flags
& XNegative
)
792 f
->left_pos
= (x_display_pixel_width (FRAME_DISPLAY_INFO (f
))
793 - FRAME_PIXEL_WIDTH (f
) + f
->left_pos
);
795 if (f
->size_hint_flags
& YNegative
)
796 f
->top_pos
= (x_display_pixel_height (FRAME_DISPLAY_INFO (f
))
797 - FRAME_PIXEL_HEIGHT (f
) + f
->top_pos
);
799 gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
800 f
->left_pos
, f
->top_pos
);
802 /* Reset size hint flags. */
803 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
807 int left
= f
->left_pos
;
808 int xneg
= f
->size_hint_flags
& XNegative
;
809 int top
= f
->top_pos
;
810 int yneg
= f
->size_hint_flags
& YNegative
;
811 char geom_str
[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
819 sprintf (geom_str
, "=%dx%d%c%d%c%d",
820 FRAME_PIXEL_WIDTH (f
),
821 FRAME_PIXEL_HEIGHT (f
),
822 (xneg
? '-' : '+'), left
,
823 (yneg
? '-' : '+'), top
);
825 /* Silence warning about visible children. */
826 id
= g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING
| G_LOG_FLAG_FATAL
827 | G_LOG_FLAG_RECURSION
, my_log_handler
, NULL
);
829 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
831 fprintf (stderr
, "Failed to parse: '%s'\n", geom_str
);
833 g_log_remove_handler ("Gtk", id
);
839 xg_get_gdk_scale (void)
841 const char *sscale
= getenv ("GDK_SCALE");
845 long scale
= atol (sscale
);
847 return min (scale
, INT_MAX
);
853 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
854 and a Gtk+ menu bar, we get resize events for the edit part of the
855 frame only. We let Gtk+ deal with the Gtk+ parts.
856 F is the frame to resize.
857 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
860 xg_frame_resized (struct frame
*f
, int pixelwidth
, int pixelheight
)
864 if (pixelwidth
== -1 && pixelheight
== -1)
866 if (FRAME_GTK_WIDGET (f
) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f
)))
867 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f
)),
868 0, 0, &pixelwidth
, &pixelheight
);
873 width
= FRAME_PIXEL_TO_TEXT_WIDTH (f
, pixelwidth
);
874 height
= FRAME_PIXEL_TO_TEXT_HEIGHT (f
, pixelheight
);
876 frame_size_history_add
877 (f
, Qxg_frame_resized
, width
, height
, Qnil
);
879 if (width
!= FRAME_TEXT_WIDTH (f
)
880 || height
!= FRAME_TEXT_HEIGHT (f
)
881 || pixelwidth
!= FRAME_PIXEL_WIDTH (f
)
882 || pixelheight
!= FRAME_PIXEL_HEIGHT (f
))
884 x_clear_under_internal_border (f
);
885 change_frame_size (f
, width
, height
, 0, 1, 0, 1);
886 SET_FRAME_GARBAGED (f
);
887 cancel_mouse_face (f
);
891 /* Resize the outer window of frame F after changing the height.
892 COLUMNS/ROWS is the size the edit area shall have after the resize. */
895 xg_frame_set_char_size (struct frame
*f
, int width
, int height
)
897 int pixelwidth
= FRAME_TEXT_TO_PIXEL_WIDTH (f
, width
);
898 int pixelheight
= FRAME_TEXT_TO_PIXEL_HEIGHT (f
, height
);
899 Lisp_Object fullscreen
= get_frame_param (f
, Qfullscreen
);
900 gint gwidth
, gheight
;
902 = pixelheight
+ FRAME_TOOLBAR_HEIGHT (f
) + FRAME_MENUBAR_HEIGHT (f
);
903 int totalwidth
= pixelwidth
+ FRAME_TOOLBAR_WIDTH (f
);
905 if (FRAME_PIXEL_HEIGHT (f
) == 0)
908 gtk_window_get_size (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
911 /* Do this before resize, as we don't know yet if we will be resized. */
912 x_clear_under_internal_border (f
);
914 if (FRAME_VISIBLE_P (f
))
916 int scale
= xg_get_gdk_scale ();
917 totalheight
/= scale
;
921 x_wm_set_size_hint (f
, 0, 0);
923 /* Resize the top level widget so rows and columns remain constant.
925 When the frame is fullheight and we only want to change the width
926 or it is fullwidth and we only want to change the height we should
927 be able to preserve the fullscreen property. However, due to the
928 fact that we have to send a resize request anyway, the window
929 manager will abolish it. At least the respective size should
930 remain unchanged but giving the frame back its normal size will
932 if (EQ (fullscreen
, Qfullwidth
) && width
== FRAME_TEXT_WIDTH (f
))
934 frame_size_history_add
935 (f
, Qxg_frame_set_char_size_1
, width
, height
,
936 list2 (make_number (gheight
), make_number (totalheight
)));
938 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
939 gwidth
, totalheight
);
941 else if (EQ (fullscreen
, Qfullheight
) && height
== FRAME_TEXT_HEIGHT (f
))
943 frame_size_history_add
944 (f
, Qxg_frame_set_char_size_2
, width
, height
,
945 list2 (make_number (gwidth
), make_number (totalwidth
)));
947 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
948 totalwidth
, gheight
);
952 frame_size_history_add
953 (f
, Qxg_frame_set_char_size_3
, width
, height
,
954 list2 (make_number (totalwidth
), make_number (totalheight
)));
956 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
957 totalwidth
, totalheight
);
961 SET_FRAME_GARBAGED (f
);
962 cancel_mouse_face (f
);
964 /* We can not call change_frame_size for a mapped frame,
965 we can not set pixel width/height either. The window manager may
966 override our resize request, XMonad does this all the time.
967 The best we can do is try to sync, so lisp code sees the updated
968 size as fast as possible.
969 For unmapped windows, we can set rows/cols. When
970 the frame is mapped again we will (hopefully) get the correct size. */
971 if (FRAME_VISIBLE_P (f
))
973 /* Must call this to flush out events */
974 (void)gtk_events_pending ();
976 x_wait_for_event (f
, ConfigureNotify
);
978 if (!NILP (fullscreen
))
979 /* Try to restore fullscreen state. */
981 store_frame_param (f
, Qfullscreen
, fullscreen
);
982 x_set_fullscreen (f
, fullscreen
, fullscreen
);
986 adjust_frame_size (f
, width
, height
, 5, 0, Qxg_frame_set_char_size
);
990 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
991 The policy is to keep the number of editable lines. */
995 xg_height_or_width_changed (struct frame
*f
)
997 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
998 FRAME_TOTAL_PIXEL_WIDTH (f
),
999 FRAME_TOTAL_PIXEL_HEIGHT (f
));
1000 f
->output_data
.x
->hint_flags
= 0;
1001 x_wm_set_size_hint (f
, 0, 0);
1005 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1006 Must be done like this, because GtkWidget:s can have "hidden"
1007 X Window that aren't accessible.
1009 Return 0 if no widget match WDESC. */
1012 xg_win_to_widget (Display
*dpy
, Window wdesc
)
1015 GtkWidget
*gwdesc
= 0;
1019 gdkwin
= gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy
),
1024 event
.any
.window
= gdkwin
;
1025 event
.any
.type
= GDK_NOTHING
;
1026 gwdesc
= gtk_get_event_widget (&event
);
1033 /* Set the background of widget W to PIXEL. */
1036 xg_set_widget_bg (struct frame
*f
, GtkWidget
*w
, unsigned long pixel
)
1042 if (XQueryColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &xbg
))
1044 bg
.red
= (double)xbg
.red
/65535.0;
1045 bg
.green
= (double)xbg
.green
/65535.0;
1046 bg
.blue
= (double)xbg
.blue
/65535.0;
1048 gtk_widget_override_background_color (w
, GTK_STATE_FLAG_NORMAL
, &bg
);
1052 GdkColormap
*map
= gtk_widget_get_colormap (w
);
1053 gdk_colormap_query_color (map
, pixel
, &bg
);
1054 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f
), GTK_STATE_NORMAL
, &bg
);
1058 /* Callback called when the gtk theme changes.
1059 We notify lisp code so it can fix faces used for region for example. */
1062 style_changed_cb (GObject
*go
,
1066 struct input_event event
;
1067 GdkDisplay
*gdpy
= user_data
;
1068 const char *display_name
= gdk_display_get_name (gdpy
);
1069 Display
*dpy
= GDK_DISPLAY_XDISPLAY (gdpy
);
1072 event
.kind
= CONFIG_CHANGED_EVENT
;
1073 event
.frame_or_window
= build_string (display_name
);
1074 /* Theme doesn't change often, so intern is called seldom. */
1075 event
.arg
= intern ("theme-name");
1076 kbd_buffer_store_event (&event
);
1078 update_theme_scrollbar_width ();
1079 update_theme_scrollbar_height ();
1081 /* If scroll bar width changed, we need set the new size on all frames
1085 Lisp_Object rest
, frame
;
1086 FOR_EACH_FRAME (rest
, frame
)
1088 struct frame
*f
= XFRAME (frame
);
1089 if (FRAME_LIVE_P (f
)
1091 && FRAME_X_DISPLAY (f
) == dpy
)
1093 x_set_scroll_bar_default_width (f
);
1094 x_set_scroll_bar_default_height (f
);
1095 xg_frame_set_char_size (f
, FRAME_TEXT_WIDTH (f
), FRAME_TEXT_HEIGHT (f
));
1101 /* Called when a delete-event occurs on WIDGET. */
1104 delete_cb (GtkWidget
*widget
,
1111 /* Create and set up the GTK widgets for frame F.
1112 Return true if creation succeeded. */
1115 xg_create_frame_widgets (struct frame
*f
)
1118 GtkWidget
*wvbox
, *whbox
;
1127 if (FRAME_X_EMBEDDED_P (f
))
1129 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
1130 wtop
= gtk_plug_new_for_display (gdpy
, f
->output_data
.x
->parent_desc
);
1133 wtop
= gtk_window_new (GTK_WINDOW_TOPLEVEL
);
1135 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1136 has backported it to Gtk+ 2.0 and they add the resize grip for
1137 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1138 forever, so disable the grip. */
1139 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1140 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1141 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop
), FALSE
);
1144 xg_set_screen (wtop
, f
);
1146 wvbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, 0);
1147 whbox
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1148 gtk_box_set_homogeneous (GTK_BOX (wvbox
), FALSE
);
1149 gtk_box_set_homogeneous (GTK_BOX (whbox
), FALSE
);
1152 wfixed
= emacs_fixed_new (f
);
1154 wfixed
= gtk_fixed_new ();
1157 if (! wtop
|| ! wvbox
|| ! whbox
|| ! wfixed
)
1159 if (wtop
) gtk_widget_destroy (wtop
);
1160 if (wvbox
) gtk_widget_destroy (wvbox
);
1161 if (whbox
) gtk_widget_destroy (whbox
);
1162 if (wfixed
) gtk_widget_destroy (wfixed
);
1168 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1169 gtk_widget_set_name (wtop
, EMACS_CLASS
);
1170 gtk_widget_set_name (wvbox
, "pane");
1171 gtk_widget_set_name (wfixed
, SSDATA (Vx_resource_name
));
1173 /* If this frame has a title or name, set it in the title bar. */
1174 if (! NILP (f
->title
))
1175 title
= SSDATA (ENCODE_UTF_8 (f
->title
));
1176 else if (! NILP (f
->name
))
1177 title
= SSDATA (ENCODE_UTF_8 (f
->name
));
1180 gtk_window_set_title (GTK_WINDOW (wtop
), title
);
1182 if (FRAME_UNDECORATED (f
))
1184 gtk_window_set_decorated (GTK_WINDOW (wtop
), FALSE
);
1185 store_frame_param (f
, Qundecorated
, Qt
);
1188 FRAME_GTK_OUTER_WIDGET (f
) = wtop
;
1189 FRAME_GTK_WIDGET (f
) = wfixed
;
1190 f
->output_data
.x
->vbox_widget
= wvbox
;
1191 f
->output_data
.x
->hbox_widget
= whbox
;
1193 gtk_widget_set_has_window (wfixed
, TRUE
);
1195 gtk_container_add (GTK_CONTAINER (wtop
), wvbox
);
1196 gtk_box_pack_start (GTK_BOX (wvbox
), whbox
, TRUE
, TRUE
, 0);
1197 gtk_box_pack_start (GTK_BOX (whbox
), wfixed
, TRUE
, TRUE
, 0);
1199 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1200 update_frame_tool_bar (f
);
1202 /* We don't want this widget double buffered, because we draw on it
1203 with regular X drawing primitives, so from a GTK/GDK point of
1204 view, the widget is totally blank. When an expose comes, this
1205 will make the widget blank, and then Emacs redraws it. This flickers
1206 a lot, so we turn off double buffering. */
1207 gtk_widget_set_double_buffered (wfixed
, FALSE
);
1209 gtk_window_set_wmclass (GTK_WINDOW (wtop
),
1210 SSDATA (Vx_resource_name
),
1211 SSDATA (Vx_resource_class
));
1213 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1214 GTK is to destroy the widget. We want Emacs to do that instead. */
1215 g_signal_connect (G_OBJECT (wtop
), "delete-event",
1216 G_CALLBACK (delete_cb
), f
);
1218 /* Convert our geometry parameters into a geometry string
1220 GTK will itself handle calculating the real position this way. */
1221 xg_set_geometry (f
);
1223 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1225 gtk_widget_add_events (wfixed
,
1226 GDK_POINTER_MOTION_MASK
1228 | GDK_BUTTON_PRESS_MASK
1229 | GDK_BUTTON_RELEASE_MASK
1230 | GDK_KEY_PRESS_MASK
1231 | GDK_ENTER_NOTIFY_MASK
1232 | GDK_LEAVE_NOTIFY_MASK
1233 | GDK_FOCUS_CHANGE_MASK
1234 | GDK_STRUCTURE_MASK
1235 | GDK_VISIBILITY_NOTIFY_MASK
);
1237 /* Must realize the windows so the X window gets created. It is used
1238 by callers of this function. */
1239 gtk_widget_realize (wfixed
);
1240 FRAME_X_WINDOW (f
) = GTK_WIDGET_TO_X_WIN (wfixed
);
1241 initial_set_up_x_back_buffer (f
);
1243 /* Since GTK clears its window by filling with the background color,
1244 we must keep X and GTK background in sync. */
1245 xg_set_widget_bg (f
, wfixed
, FRAME_BACKGROUND_PIXEL (f
));
1248 /* Also, do not let any background pixmap to be set, this looks very
1249 bad as Emacs overwrites the background pixmap with its own idea
1250 of background color. */
1251 style
= gtk_widget_get_modifier_style (wfixed
);
1253 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1254 style
->bg_pixmap_name
[GTK_STATE_NORMAL
] = g_strdup ("<none>");
1255 gtk_widget_modify_style (wfixed
, style
);
1257 gtk_widget_set_can_focus (wfixed
, TRUE
);
1258 gtk_window_set_resizable (GTK_WINDOW (wtop
), TRUE
);
1261 if (FRAME_OVERRIDE_REDIRECT (f
))
1263 GdkWindow
*gwin
= gtk_widget_get_window (wtop
);
1266 gdk_window_set_override_redirect (gwin
, TRUE
);
1269 #ifdef USE_GTK_TOOLTIP
1270 /* Steal a tool tip window we can move ourselves. */
1271 f
->output_data
.x
->ttip_widget
= 0;
1272 f
->output_data
.x
->ttip_lbl
= 0;
1273 f
->output_data
.x
->ttip_window
= 0;
1274 gtk_widget_set_tooltip_text (wtop
, "Dummy text");
1275 g_signal_connect (wtop
, "query-tooltip", G_CALLBACK (qttip_cb
), f
);
1279 GdkScreen
*screen
= gtk_widget_get_screen (wtop
);
1280 GtkSettings
*gs
= gtk_settings_get_for_screen (screen
);
1281 /* Only connect this signal once per screen. */
1282 if (! g_signal_handler_find (G_OBJECT (gs
),
1283 G_SIGNAL_MATCH_FUNC
,
1285 (gpointer
) G_CALLBACK (style_changed_cb
),
1288 g_signal_connect (G_OBJECT (gs
), "notify::gtk-theme-name",
1289 G_CALLBACK (style_changed_cb
),
1290 gdk_screen_get_display (screen
));
1300 xg_free_frame_widgets (struct frame
*f
)
1302 if (FRAME_GTK_OUTER_WIDGET (f
))
1304 #ifdef USE_GTK_TOOLTIP
1305 struct x_output
*x
= f
->output_data
.x
;
1307 struct xg_frame_tb_info
*tbinfo
1308 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
1313 /* x_free_frame_resources should have taken care of it */
1314 eassert (!FRAME_X_DOUBLE_BUFFERED_P (f
));
1315 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f
));
1316 FRAME_X_WINDOW (f
) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1317 FRAME_X_RAW_DRAWABLE (f
) = 0;
1318 FRAME_GTK_OUTER_WIDGET (f
) = 0;
1319 #ifdef USE_GTK_TOOLTIP
1321 gtk_widget_destroy (x
->ttip_lbl
);
1323 g_object_unref (G_OBJECT (x
->ttip_widget
));
1328 /* Set the normal size hints for the window manager, for frame F.
1329 FLAGS is the flags word to use--or 0 meaning preserve the flags
1330 that the window now has.
1331 If USER_POSITION, set the User Position
1332 flag (this is useful when FLAGS is 0). */
1335 x_wm_set_size_hint (struct frame
*f
, long int flags
, bool user_position
)
1337 /* Must use GTK routines here, otherwise GTK resets the size hints
1338 to its own defaults. */
1339 GdkGeometry size_hints
;
1340 gint hint_flags
= 0;
1341 int base_width
, base_height
;
1342 int min_rows
= 0, min_cols
= 0;
1343 int win_gravity
= f
->win_gravity
;
1344 Lisp_Object fs_state
, frame
;
1345 int scale
= xg_get_gdk_scale ();
1347 /* Don't set size hints during initialization; that apparently leads
1348 to a race condition. See the thread at
1349 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1350 if (NILP (Vafter_init_time
)
1351 || !FRAME_GTK_OUTER_WIDGET (f
)
1352 || FRAME_PARENT_FRAME (f
))
1355 XSETFRAME (frame
, f
);
1356 fs_state
= Fframe_parameter (frame
, Qfullscreen
);
1357 if ((EQ (fs_state
, Qmaximized
) || EQ (fs_state
, Qfullboth
)) &&
1358 (x_wm_supports (f
, FRAME_DISPLAY_INFO (f
)->Xatom_net_wm_state
) ||
1359 x_wm_supports (f
, FRAME_DISPLAY_INFO (f
)->Xatom_net_wm_state_fullscreen
)))
1361 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1362 Gtk3 don't get along and the frame shrinks (!).
1369 memset (&size_hints
, 0, sizeof (size_hints
));
1370 f
->output_data
.x
->size_hints
= size_hints
;
1371 f
->output_data
.x
->hint_flags
= hint_flags
;
1374 flags
= f
->size_hint_flags
;
1376 size_hints
= f
->output_data
.x
->size_hints
;
1377 hint_flags
= f
->output_data
.x
->hint_flags
;
1379 hint_flags
|= GDK_HINT_RESIZE_INC
| GDK_HINT_MIN_SIZE
;
1380 size_hints
.width_inc
= frame_resize_pixelwise
? 1 : FRAME_COLUMN_WIDTH (f
);
1381 size_hints
.height_inc
= frame_resize_pixelwise
? 1 : FRAME_LINE_HEIGHT (f
);
1383 hint_flags
|= GDK_HINT_BASE_SIZE
;
1384 /* Use one row/col here so base_height/width does not become zero.
1385 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it.
1386 Obviously this makes the row/col value displayed off by 1. */
1387 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 1) + FRAME_TOOLBAR_WIDTH (f
);
1388 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 1)
1389 + FRAME_MENUBAR_HEIGHT (f
) + FRAME_TOOLBAR_HEIGHT (f
);
1391 if (min_cols
> 0) --min_cols
; /* We used one col in base_width = ... 1); */
1392 if (min_rows
> 0) --min_rows
; /* We used one row in base_height = ... 1); */
1394 size_hints
.base_width
= base_width
;
1395 size_hints
.base_height
= base_height
;
1396 size_hints
.min_width
= base_width
+ min_cols
* FRAME_COLUMN_WIDTH (f
);
1397 size_hints
.min_height
= base_height
+ min_rows
* FRAME_LINE_HEIGHT (f
);
1399 /* These currently have a one to one mapping with the X values, but I
1400 don't think we should rely on that. */
1401 hint_flags
|= GDK_HINT_WIN_GRAVITY
;
1402 size_hints
.win_gravity
= 0;
1403 if (win_gravity
== NorthWestGravity
)
1404 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_WEST
;
1405 else if (win_gravity
== NorthGravity
)
1406 size_hints
.win_gravity
= GDK_GRAVITY_NORTH
;
1407 else if (win_gravity
== NorthEastGravity
)
1408 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_EAST
;
1409 else if (win_gravity
== WestGravity
)
1410 size_hints
.win_gravity
= GDK_GRAVITY_WEST
;
1411 else if (win_gravity
== CenterGravity
)
1412 size_hints
.win_gravity
= GDK_GRAVITY_CENTER
;
1413 else if (win_gravity
== EastGravity
)
1414 size_hints
.win_gravity
= GDK_GRAVITY_EAST
;
1415 else if (win_gravity
== SouthWestGravity
)
1416 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_WEST
;
1417 else if (win_gravity
== SouthGravity
)
1418 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH
;
1419 else if (win_gravity
== SouthEastGravity
)
1420 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_EAST
;
1421 else if (win_gravity
== StaticGravity
)
1422 size_hints
.win_gravity
= GDK_GRAVITY_STATIC
;
1424 if (x_gtk_use_window_move
)
1426 if (flags
& PPosition
) hint_flags
|= GDK_HINT_POS
;
1427 if (flags
& USPosition
) hint_flags
|= GDK_HINT_USER_POS
;
1428 if (flags
& USSize
) hint_flags
|= GDK_HINT_USER_SIZE
;
1433 hint_flags
&= ~GDK_HINT_POS
;
1434 hint_flags
|= GDK_HINT_USER_POS
;
1437 size_hints
.base_width
/= scale
;
1438 size_hints
.base_height
/= scale
;
1439 size_hints
.width_inc
/= scale
;
1440 size_hints
.height_inc
/= scale
;
1442 if (hint_flags
!= f
->output_data
.x
->hint_flags
1443 || memcmp (&size_hints
,
1444 &f
->output_data
.x
->size_hints
,
1445 sizeof (size_hints
)) != 0)
1448 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1449 NULL
, &size_hints
, hint_flags
);
1450 f
->output_data
.x
->size_hints
= size_hints
;
1451 f
->output_data
.x
->hint_flags
= hint_flags
;
1456 /* Change background color of a frame.
1457 Since GTK uses the background color to clear the window, we must
1458 keep the GTK and X colors in sync.
1459 F is the frame to change,
1460 BG is the pixel value to change to. */
1463 xg_set_background_color (struct frame
*f
, unsigned long bg
)
1465 if (FRAME_GTK_WIDGET (f
))
1468 xg_set_widget_bg (f
, FRAME_GTK_WIDGET (f
), FRAME_BACKGROUND_PIXEL (f
));
1471 for (bar
= FRAME_SCROLL_BARS (f
);
1473 bar
= XSCROLL_BAR (bar
)->next
)
1475 GtkWidget
*scrollbar
=
1476 xg_get_widget_from_map (XSCROLL_BAR (bar
)->x_window
);
1477 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
1478 xg_set_widget_bg (f
, webox
, FRAME_BACKGROUND_PIXEL (f
));
1485 /* Change the frame's decoration (title bar + resize borders). This
1486 might not work with all window managers. */
1488 xg_set_undecorated (struct frame
*f
, Lisp_Object undecorated
)
1490 if (FRAME_GTK_WIDGET (f
))
1493 gtk_window_set_decorated (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1494 NILP (undecorated
) ? TRUE
: FALSE
);
1500 /* Restack F1 below F2, above if ABOVE_FLAG is true. This might not
1501 work with all window managers. */
1503 xg_frame_restack (struct frame
*f1
, struct frame
*f2
, bool above_flag
)
1506 if (FRAME_GTK_OUTER_WIDGET (f1
) && FRAME_GTK_OUTER_WIDGET (f2
))
1508 GdkWindow
*gwin1
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f1
));
1509 GdkWindow
*gwin2
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f2
));
1510 Lisp_Object frame1
, frame2
;
1512 XSETFRAME (frame1
, f1
);
1513 XSETFRAME (frame2
, f2
);
1515 gdk_window_restack (gwin1
, gwin2
, above_flag
);
1522 /* Don't show frame in taskbar, don't ALT-TAB to it. */
1524 xg_set_skip_taskbar (struct frame
*f
, Lisp_Object skip_taskbar
)
1527 if (FRAME_GTK_WIDGET (f
))
1528 gdk_window_set_skip_taskbar_hint
1529 (gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f
)),
1530 NILP (skip_taskbar
) ? FALSE
: TRUE
);
1535 /* Don't give frame focus. */
1537 xg_set_no_focus_on_map (struct frame
*f
, Lisp_Object no_focus_on_map
)
1540 if (FRAME_GTK_WIDGET (f
))
1542 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1543 gboolean g_no_focus_on_map
= NILP (no_focus_on_map
) ? TRUE
: FALSE
;
1545 gtk_window_set_focus_on_map (gwin
, g_no_focus_on_map
);
1552 xg_set_no_accept_focus (struct frame
*f
, Lisp_Object no_accept_focus
)
1555 if (FRAME_GTK_WIDGET (f
))
1557 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1558 gboolean g_no_accept_focus
= NILP (no_accept_focus
) ? TRUE
: FALSE
;
1560 gtk_window_set_accept_focus (gwin
, g_no_accept_focus
);
1566 xg_set_override_redirect (struct frame
*f
, Lisp_Object override_redirect
)
1570 if (FRAME_GTK_OUTER_WIDGET (f
))
1572 GdkWindow
*gwin
= gtk_widget_get_window (FRAME_GTK_OUTER_WIDGET (f
));
1574 gdk_window_set_override_redirect (gwin
, NILP (override_redirect
) ? FALSE
: TRUE
);
1580 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1581 functions so GTK does not overwrite the icon. */
1584 xg_set_frame_icon (struct frame
*f
, Pixmap icon_pixmap
, Pixmap icon_mask
)
1586 GdkPixbuf
*gp
= xg_get_pixbuf_from_pix_and_mask (f
,
1590 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), gp
);
1595 /***********************************************************************
1597 ***********************************************************************/
1598 /* Return the dialog title to use for a dialog of type KEY.
1599 This is the encoding used by lwlib. We use the same for GTK. */
1602 get_dialog_title (char key
)
1604 const char *title
= "";
1612 title
= "Information";
1631 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1632 the dialog, but return TRUE so the event does not propagate further
1633 in GTK. This prevents GTK from destroying the dialog widget automatically
1634 and we can always destroy the widget manually, regardless of how
1635 it was popped down (button press or WM_DELETE_WINDOW).
1636 W is the dialog widget.
1637 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1638 user_data is NULL (not used).
1640 Returns TRUE to end propagation of event. */
1643 dialog_delete_callback (GtkWidget
*w
, GdkEvent
*event
, gpointer user_data
)
1645 gtk_widget_unmap (w
);
1649 /* Create a popup dialog window. See also xg_create_widget below.
1650 WV is a widget_value describing the dialog.
1651 SELECT_CB is the callback to use when a button has been pressed.
1652 DEACTIVATE_CB is the callback to use when the dialog pops down.
1654 Returns the GTK dialog widget. */
1657 create_dialog (widget_value
*wv
,
1658 GCallback select_cb
,
1659 GCallback deactivate_cb
)
1661 const char *title
= get_dialog_title (wv
->name
[0]);
1662 int total_buttons
= wv
->name
[1] - '0';
1663 int right_buttons
= wv
->name
[4] - '0';
1666 int button_spacing
= 10;
1667 GtkWidget
*wdialog
= gtk_dialog_new ();
1668 GtkDialog
*wd
= GTK_DIALOG (wdialog
);
1670 GtkWidget
*whbox_down
;
1672 /* If the number of buttons is greater than 4, make two rows of buttons
1673 instead. This looks better. */
1674 bool make_two_rows
= total_buttons
> 4;
1676 #if GTK_CHECK_VERSION (3, 12, 0)
1677 GtkBuilder
*gbld
= gtk_builder_new ();
1678 GObject
*go
= gtk_buildable_get_internal_child (GTK_BUILDABLE (wd
),
1681 GtkBox
*cur_box
= GTK_BOX (go
);
1682 g_object_unref (G_OBJECT (gbld
));
1684 GtkBox
*cur_box
= GTK_BOX (gtk_dialog_get_action_area (wd
));
1687 if (right_buttons
== 0) right_buttons
= total_buttons
/2;
1688 left_buttons
= total_buttons
- right_buttons
;
1690 gtk_window_set_title (GTK_WINDOW (wdialog
), title
);
1691 gtk_widget_set_name (wdialog
, "emacs-dialog");
1696 GtkWidget
*wvbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, button_spacing
);
1697 GtkWidget
*whbox_up
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1698 gtk_box_set_homogeneous (GTK_BOX (wvbox
), TRUE
);
1699 gtk_box_set_homogeneous (GTK_BOX (whbox_up
), FALSE
);
1700 whbox_down
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
1701 gtk_box_set_homogeneous (GTK_BOX (whbox_down
), FALSE
);
1703 gtk_box_pack_start (cur_box
, wvbox
, FALSE
, FALSE
, 0);
1704 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_up
, FALSE
, FALSE
, 0);
1705 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_down
, FALSE
, FALSE
, 0);
1707 cur_box
= GTK_BOX (whbox_up
);
1710 g_signal_connect (G_OBJECT (wdialog
), "delete-event",
1711 G_CALLBACK (dialog_delete_callback
), 0);
1715 g_signal_connect (G_OBJECT (wdialog
), "close", deactivate_cb
, 0);
1716 g_signal_connect (G_OBJECT (wdialog
), "response", deactivate_cb
, 0);
1719 for (item
= wv
->contents
; item
; item
= item
->next
)
1721 char *utf8_label
= get_utf8_string (item
->value
);
1725 if (item
->name
&& strcmp (item
->name
, "message") == 0)
1727 GtkBox
*wvbox
= GTK_BOX (gtk_dialog_get_content_area (wd
));
1728 /* This is the text part of the dialog. */
1729 w
= gtk_label_new (utf8_label
);
1730 gtk_box_pack_start (wvbox
, gtk_label_new (""), FALSE
, FALSE
, 0);
1731 gtk_box_pack_start (wvbox
, w
, TRUE
, TRUE
, 0);
1732 #if GTK_CHECK_VERSION (3, 14, 0)
1733 gtk_widget_set_halign (w
, GTK_ALIGN_START
);
1734 gtk_widget_set_valign (w
, GTK_ALIGN_CENTER
);
1736 gtk_misc_set_alignment (GTK_MISC (w
), 0.1, 0.5);
1738 /* Try to make dialog look better. Must realize first so
1739 the widget can calculate the size it needs. */
1740 gtk_widget_realize (w
);
1741 gtk_widget_get_preferred_size (w
, NULL
, &req
);
1742 gtk_box_set_spacing (wvbox
, req
.height
);
1743 if (item
->value
&& strlen (item
->value
) > 0)
1744 button_spacing
= 2*req
.width
/strlen (item
->value
);
1745 if (button_spacing
< 10) button_spacing
= 10;
1749 /* This is one button to add to the dialog. */
1750 w
= gtk_button_new_with_label (utf8_label
);
1751 if (! item
->enabled
)
1752 gtk_widget_set_sensitive (w
, FALSE
);
1754 g_signal_connect (G_OBJECT (w
), "clicked",
1755 select_cb
, item
->call_data
);
1757 gtk_box_pack_start (cur_box
, w
, TRUE
, TRUE
, button_spacing
);
1758 if (++button_nr
== left_buttons
)
1761 cur_box
= GTK_BOX (whbox_down
);
1766 g_free (utf8_label
);
1772 struct xg_dialog_data
1780 /* Function that is called when the file or font dialogs pop down.
1781 W is the dialog widget, RESPONSE is the response code.
1782 USER_DATA is what we passed in to g_signal_connect. */
1785 xg_dialog_response_cb (GtkDialog
*w
,
1789 struct xg_dialog_data
*dd
= user_data
;
1790 dd
->response
= response
;
1791 g_main_loop_quit (dd
->loop
);
1795 /* Destroy the dialog. This makes it pop down. */
1798 pop_down_dialog (void *arg
)
1800 struct xg_dialog_data
*dd
= arg
;
1803 if (dd
->w
) gtk_widget_destroy (dd
->w
);
1804 if (dd
->timerid
!= 0) g_source_remove (dd
->timerid
);
1806 g_main_loop_quit (dd
->loop
);
1807 g_main_loop_unref (dd
->loop
);
1812 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1813 Pass DATA as gpointer so we can use this as a callback. */
1816 xg_maybe_add_timer (gpointer data
)
1818 struct xg_dialog_data
*dd
= data
;
1819 struct timespec next_time
= timer_check ();
1823 if (timespec_valid_p (next_time
))
1825 time_t s
= next_time
.tv_sec
;
1826 int per_ms
= TIMESPEC_RESOLUTION
/ 1000;
1827 int ms
= (next_time
.tv_nsec
+ per_ms
- 1) / per_ms
;
1828 if (s
<= ((guint
) -1 - ms
) / 1000)
1829 dd
->timerid
= g_timeout_add (s
* 1000 + ms
, xg_maybe_add_timer
, dd
);
1835 /* Pops up a modal dialog W and waits for response.
1836 We don't use gtk_dialog_run because we want to process emacs timers.
1837 The dialog W is not destroyed when this function returns. */
1840 xg_dialog_run (struct frame
*f
, GtkWidget
*w
)
1842 ptrdiff_t count
= SPECPDL_INDEX ();
1843 struct xg_dialog_data dd
;
1845 xg_set_screen (w
, f
);
1846 gtk_window_set_transient_for (GTK_WINDOW (w
),
1847 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1848 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
1849 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
1851 dd
.loop
= g_main_loop_new (NULL
, FALSE
);
1852 dd
.response
= GTK_RESPONSE_CANCEL
;
1856 g_signal_connect (G_OBJECT (w
),
1858 G_CALLBACK (xg_dialog_response_cb
),
1860 /* Don't destroy the widget if closed by the window manager close button. */
1861 g_signal_connect (G_OBJECT (w
), "delete-event", G_CALLBACK (gtk_true
), NULL
);
1862 gtk_widget_show (w
);
1864 record_unwind_protect_ptr (pop_down_dialog
, &dd
);
1866 (void) xg_maybe_add_timer (&dd
);
1867 g_main_loop_run (dd
.loop
);
1870 unbind_to (count
, Qnil
);
1876 /***********************************************************************
1877 File dialog functions
1878 ***********************************************************************/
1879 /* Return true if the old file selection dialog is being used. */
1882 xg_uses_old_file_dialog (void)
1884 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1885 return x_gtk_use_old_file_dialog
;
1892 typedef char * (*xg_get_file_func
) (GtkWidget
*);
1894 /* Return the selected file for file chooser dialog W.
1895 The returned string must be free:d. */
1898 xg_get_file_name_from_chooser (GtkWidget
*w
)
1900 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w
));
1903 /* Callback called when the "Show hidden files" toggle is pressed.
1904 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1907 xg_toggle_visibility_cb (GtkWidget
*widget
, gpointer data
)
1909 GtkFileChooser
*dialog
= GTK_FILE_CHOOSER (data
);
1911 g_object_get (G_OBJECT (dialog
), "show-hidden", &visible
, NULL
);
1912 g_object_set (G_OBJECT (dialog
), "show-hidden", !visible
, NULL
);
1916 /* Callback called when a property changes in a file chooser.
1917 GOBJECT is the file chooser dialog, ARG1 describes the property.
1918 USER_DATA is the toggle widget in the file chooser dialog.
1919 We use this to update the "Show hidden files" toggle when the user
1920 changes that property by right clicking in the file list. */
1923 xg_toggle_notify_cb (GObject
*gobject
, GParamSpec
*arg1
, gpointer user_data
)
1925 if (strcmp (arg1
->name
, "show-hidden") == 0)
1927 GtkWidget
*wtoggle
= GTK_WIDGET (user_data
);
1928 gboolean visible
, toggle_on
;
1930 g_object_get (G_OBJECT (gobject
), "show-hidden", &visible
, NULL
);
1931 toggle_on
= gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle
));
1933 if (!!visible
!= !!toggle_on
)
1935 gpointer cb
= (gpointer
) G_CALLBACK (xg_toggle_visibility_cb
);
1936 g_signal_handlers_block_by_func (G_OBJECT (wtoggle
), cb
, gobject
);
1937 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), visible
);
1938 g_signal_handlers_unblock_by_func (G_OBJECT (wtoggle
), cb
, gobject
);
1940 x_gtk_show_hidden_files
= visible
;
1944 /* Read a file name from the user using a file chooser dialog.
1945 F is the current frame.
1946 PROMPT is a prompt to show to the user. May not be NULL.
1947 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1948 If MUSTMATCH_P, the returned file name must be an existing
1949 file. (Actually, this only has cosmetic effects, the user can
1950 still enter a non-existing file.) *FUNC is set to a function that
1951 can be used to retrieve the selected file name from the returned widget.
1953 Returns the created widget. */
1956 xg_get_file_with_chooser (struct frame
*f
,
1958 char *default_filename
,
1959 bool mustmatch_p
, bool only_dir_p
,
1960 xg_get_file_func
*func
)
1964 GtkWidget
*filewin
, *wtoggle
, *wbox
;
1965 GtkWidget
*wmessage UNINIT
;
1966 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1967 GtkFileChooserAction action
= (mustmatch_p
?
1968 GTK_FILE_CHOOSER_ACTION_OPEN
:
1969 GTK_FILE_CHOOSER_ACTION_SAVE
);
1972 action
= GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
;
1974 filewin
= gtk_file_chooser_dialog_new (prompt
, gwin
, action
,
1975 XG_TEXT_CANCEL
, GTK_RESPONSE_CANCEL
,
1976 (mustmatch_p
|| only_dir_p
?
1977 XG_TEXT_OPEN
: XG_TEXT_OK
),
1980 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin
), TRUE
);
1982 wbox
= gtk_box_new (GTK_ORIENTATION_VERTICAL
, 0);
1983 gtk_box_set_homogeneous (GTK_BOX (wbox
), FALSE
);
1984 gtk_widget_show (wbox
);
1985 wtoggle
= gtk_check_button_new_with_label ("Show hidden files.");
1987 if (x_gtk_show_hidden_files
)
1989 g_object_set (G_OBJECT (filewin
), "show-hidden", TRUE
, NULL
);
1990 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), TRUE
);
1992 gtk_widget_show (wtoggle
);
1993 g_signal_connect (G_OBJECT (wtoggle
), "clicked",
1994 G_CALLBACK (xg_toggle_visibility_cb
), filewin
);
1995 g_signal_connect (G_OBJECT (filewin
), "notify",
1996 G_CALLBACK (xg_toggle_notify_cb
), wtoggle
);
1998 if (x_gtk_file_dialog_help_text
)
2001 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
2002 Show the C-l help text only for versions < 2.10. */
2003 if (gtk_check_version (2, 10, 0) && action
!= GTK_FILE_CHOOSER_ACTION_SAVE
)
2004 z
= stpcpy (z
, "\nType C-l to display a file name text entry box.\n");
2005 strcpy (z
, "\nIf you don't like this file selector, use the "
2006 "corresponding\nkey binding or customize "
2007 "use-file-dialog to turn it off.");
2009 wmessage
= gtk_label_new (msgbuf
);
2010 gtk_widget_show (wmessage
);
2013 gtk_box_pack_start (GTK_BOX (wbox
), wtoggle
, FALSE
, FALSE
, 0);
2014 if (x_gtk_file_dialog_help_text
)
2015 gtk_box_pack_start (GTK_BOX (wbox
), wmessage
, FALSE
, FALSE
, 0);
2016 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin
), wbox
);
2018 if (default_filename
)
2021 char *utf8_filename
;
2023 file
= build_string (default_filename
);
2025 /* File chooser does not understand ~/... in the file name. It must be
2026 an absolute name starting with /. */
2027 if (default_filename
[0] != '/')
2028 file
= Fexpand_file_name (file
, Qnil
);
2030 utf8_filename
= SSDATA (ENCODE_UTF_8 (file
));
2031 if (! NILP (Ffile_directory_p (file
)))
2032 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin
),
2036 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin
),
2038 if (action
== GTK_FILE_CHOOSER_ACTION_SAVE
)
2040 char *cp
= strrchr (utf8_filename
, '/');
2042 else cp
= utf8_filename
;
2043 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin
), cp
);
2048 *func
= xg_get_file_name_from_chooser
;
2052 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2054 /* Return the selected file for file selector dialog W.
2055 The returned string must be free:d. */
2058 xg_get_file_name_from_selector (GtkWidget
*w
)
2060 GtkFileSelection
*filesel
= GTK_FILE_SELECTION (w
);
2061 return xstrdup (gtk_file_selection_get_filename (filesel
));
2064 /* Create a file selection dialog.
2065 F is the current frame.
2066 PROMPT is a prompt to show to the user. May not be NULL.
2067 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2068 If MUSTMATCH_P, the returned file name must be an existing
2069 file. *FUNC is set to a function that can be used to retrieve the
2070 selected file name from the returned widget.
2072 Returns the created widget. */
2075 xg_get_file_with_selection (struct frame
*f
,
2077 char *default_filename
,
2078 bool mustmatch_p
, bool only_dir_p
,
2079 xg_get_file_func
*func
)
2082 GtkFileSelection
*filesel
;
2084 filewin
= gtk_file_selection_new (prompt
);
2085 filesel
= GTK_FILE_SELECTION (filewin
);
2087 if (default_filename
)
2088 gtk_file_selection_set_filename (filesel
, default_filename
);
2092 /* The selection_entry part of filesel is not documented. */
2093 gtk_widget_set_sensitive (filesel
->selection_entry
, FALSE
);
2094 gtk_file_selection_hide_fileop_buttons (filesel
);
2097 *func
= xg_get_file_name_from_selector
;
2101 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
2103 /* Read a file name from the user using a file dialog, either the old
2104 file selection dialog, or the new file chooser dialog. Which to use
2105 depends on what the GTK version used has, and what the value of
2106 gtk-use-old-file-dialog.
2107 F is the current frame.
2108 PROMPT is a prompt to show to the user. May not be NULL.
2109 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
2110 If MUSTMATCH_P, the returned file name must be an existing
2113 Returns a file name or NULL if no file was selected.
2114 The returned string must be freed by the caller. */
2117 xg_get_file_name (struct frame
*f
,
2119 char *default_filename
,
2125 int filesel_done
= 0;
2126 xg_get_file_func func
;
2128 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2130 if (xg_uses_old_file_dialog ())
2131 w
= xg_get_file_with_selection (f
, prompt
, default_filename
,
2132 mustmatch_p
, only_dir_p
, &func
);
2134 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
2135 mustmatch_p
, only_dir_p
, &func
);
2137 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2138 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
2139 mustmatch_p
, only_dir_p
, &func
);
2140 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2142 gtk_widget_set_name (w
, "emacs-filedialog");
2144 filesel_done
= xg_dialog_run (f
, w
);
2145 if (filesel_done
== GTK_RESPONSE_OK
)
2148 gtk_widget_destroy (w
);
2152 /***********************************************************************
2154 ***********************************************************************/
2156 #ifdef HAVE_FREETYPE
2158 #if USE_NEW_GTK_FONT_CHOOSER
2160 #define XG_WEIGHT_TO_SYMBOL(w) \
2161 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2162 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2163 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2164 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2165 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2166 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2167 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2170 #define XG_STYLE_TO_SYMBOL(s) \
2171 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2172 : s == PANGO_STYLE_ITALIC ? Qitalic \
2175 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2178 static char *x_last_font_name
;
2180 /* Pop up a GTK font selector and return the name of the font the user
2181 selects, as a C string. The returned font name follows GTK's own
2184 `FAMILY [VALUE1 VALUE2] SIZE'
2186 This can be parsed using font_parse_fcname in font.c.
2187 DEFAULT_NAME, if non-zero, is the default font name. */
2190 xg_get_font (struct frame
*f
, const char *default_name
)
2194 Lisp_Object font
= Qnil
;
2196 w
= gtk_font_chooser_dialog_new
2197 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2201 /* Convert fontconfig names to Gtk names, i.e. remove - before
2203 char *p
= strrchr (default_name
, '-');
2207 while (c_isdigit (*ep
))
2209 if (*ep
== '\0') *p
= ' ';
2212 else if (x_last_font_name
)
2213 default_name
= x_last_font_name
;
2216 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w
), default_name
);
2218 gtk_widget_set_name (w
, "emacs-fontdialog");
2219 done
= xg_dialog_run (f
, w
);
2220 if (done
== GTK_RESPONSE_OK
)
2222 #if USE_NEW_GTK_FONT_CHOOSER
2223 /* Use the GTK3 font chooser. */
2224 PangoFontDescription
*desc
2225 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w
));
2229 const char *name
= pango_font_description_get_family (desc
);
2230 gint size
= pango_font_description_get_size (desc
);
2231 PangoWeight weight
= pango_font_description_get_weight (desc
);
2232 PangoStyle style
= pango_font_description_get_style (desc
);
2235 #define FONT_TYPE_WANTED (Qftcr)
2237 #define FONT_TYPE_WANTED (Qxft)
2239 font
= CALLN (Ffont_spec
,
2240 QCname
, build_string (name
),
2241 QCsize
, make_float (pango_units_to_double (size
)),
2242 QCweight
, XG_WEIGHT_TO_SYMBOL (weight
),
2243 QCslant
, XG_STYLE_TO_SYMBOL (style
),
2247 pango_font_description_free (desc
);
2248 dupstring (&x_last_font_name
, name
);
2251 #else /* Use old font selector, which just returns the font name. */
2254 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w
));
2258 font
= build_string (font_name
);
2259 g_free (x_last_font_name
);
2260 x_last_font_name
= font_name
;
2262 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2265 gtk_widget_destroy (w
);
2268 #endif /* HAVE_FREETYPE */
2272 /***********************************************************************
2274 ***********************************************************************/
2276 /* The name of menu items that can be used for customization. Since GTK
2277 RC files are very crude and primitive, we have to set this on all
2278 menu item names so a user can easily customize menu items. */
2280 #define MENU_ITEM_NAME "emacs-menuitem"
2283 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2284 during GC. The next member points to the items. */
2285 static xg_list_node xg_menu_cb_list
;
2287 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2288 during GC. The next member points to the items. */
2289 static xg_list_node xg_menu_item_cb_list
;
2291 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2292 F is the frame CL_DATA will be initialized for.
2293 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2295 The menu bar and all sub menus under the menu bar in a frame
2296 share the same structure, hence the reference count.
2298 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2299 allocated xg_menu_cb_data if CL_DATA is NULL. */
2301 static xg_menu_cb_data
*
2302 make_cl_data (xg_menu_cb_data
*cl_data
, struct frame
*f
, GCallback highlight_cb
)
2306 cl_data
= xmalloc (sizeof *cl_data
);
2308 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2309 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2310 cl_data
->highlight_cb
= highlight_cb
;
2311 cl_data
->ref_count
= 0;
2313 xg_list_insert (&xg_menu_cb_list
, &cl_data
->ptrs
);
2316 cl_data
->ref_count
++;
2321 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2322 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2324 When the menu bar is updated, menu items may have been added and/or
2325 removed, so menu_bar_vector and menu_bar_items_used change. We must
2326 then update CL_DATA since it is used to determine which menu
2327 item that is invoked in the menu.
2328 HIGHLIGHT_CB could change, there is no check that the same
2329 function is given when modifying a menu bar as was given when
2330 creating the menu bar. */
2333 update_cl_data (xg_menu_cb_data
*cl_data
,
2335 GCallback highlight_cb
)
2340 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2341 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2342 cl_data
->highlight_cb
= highlight_cb
;
2346 /* Decrease reference count for CL_DATA.
2347 If reference count is zero, free CL_DATA. */
2350 unref_cl_data (xg_menu_cb_data
*cl_data
)
2352 if (cl_data
&& cl_data
->ref_count
> 0)
2354 cl_data
->ref_count
--;
2355 if (cl_data
->ref_count
== 0)
2357 xg_list_remove (&xg_menu_cb_list
, &cl_data
->ptrs
);
2363 /* Function that marks all lisp data during GC. */
2369 Lisp_Object rest
, frame
;
2371 for (iter
= xg_menu_cb_list
.next
; iter
; iter
= iter
->next
)
2372 mark_object (((xg_menu_cb_data
*) iter
)->menu_bar_vector
);
2374 for (iter
= xg_menu_item_cb_list
.next
; iter
; iter
= iter
->next
)
2376 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) iter
;
2378 if (! NILP (cb_data
->help
))
2379 mark_object (cb_data
->help
);
2382 FOR_EACH_FRAME (rest
, frame
)
2384 struct frame
*f
= XFRAME (frame
);
2386 if (FRAME_X_P (f
) && FRAME_GTK_OUTER_WIDGET (f
))
2388 struct xg_frame_tb_info
*tbinfo
2389 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
2393 mark_object (tbinfo
->last_tool_bar
);
2394 mark_object (tbinfo
->style
);
2400 /* Callback called when a menu item is destroyed. Used to free data.
2401 W is the widget that is being destroyed (not used).
2402 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2405 menuitem_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2409 xg_menu_item_cb_data
*data
= client_data
;
2410 xg_list_remove (&xg_menu_item_cb_list
, &data
->ptrs
);
2415 /* Callback called when the pointer enters/leaves a menu item.
2416 W is the parent of the menu item.
2417 EVENT is either an enter event or leave event.
2418 CLIENT_DATA is not used.
2420 Returns FALSE to tell GTK to keep processing this event. */
2423 menuitem_highlight_callback (GtkWidget
*w
,
2424 GdkEventCrossing
*event
,
2425 gpointer client_data
)
2428 GtkWidget
*subwidget
;
2429 xg_menu_item_cb_data
*data
;
2431 ev
.crossing
= *event
;
2432 subwidget
= gtk_get_event_widget (&ev
);
2433 data
= g_object_get_data (G_OBJECT (subwidget
), XG_ITEM_DATA
);
2436 if (! NILP (data
->help
) && data
->cl_data
->highlight_cb
)
2438 gpointer call_data
= event
->type
== GDK_LEAVE_NOTIFY
? 0 : data
;
2439 GtkCallback func
= (GtkCallback
) data
->cl_data
->highlight_cb
;
2440 (*func
) (subwidget
, call_data
);
2447 /* Callback called when a menu is destroyed. Used to free data.
2448 W is the widget that is being destroyed (not used).
2449 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2452 menu_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2454 unref_cl_data (client_data
);
2457 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2458 must be non-NULL) and can be inserted into a menu item.
2460 Returns the GtkHBox. */
2463 make_widget_for_menu_item (const char *utf8_label
, const char *utf8_key
)
2469 wbox
= gtk_box_new (GTK_ORIENTATION_HORIZONTAL
, 0);
2470 gtk_box_set_homogeneous (GTK_BOX (wbox
), FALSE
);
2471 wlbl
= gtk_label_new (utf8_label
);
2472 wkey
= gtk_label_new (utf8_key
);
2474 #if GTK_CHECK_VERSION (3, 14, 0)
2475 gtk_widget_set_halign (wlbl
, GTK_ALIGN_START
);
2476 gtk_widget_set_valign (wlbl
, GTK_ALIGN_CENTER
);
2477 gtk_widget_set_halign (wkey
, GTK_ALIGN_START
);
2478 gtk_widget_set_valign (wkey
, GTK_ALIGN_CENTER
);
2480 gtk_misc_set_alignment (GTK_MISC (wlbl
), 0.0, 0.5);
2481 gtk_misc_set_alignment (GTK_MISC (wkey
), 0.0, 0.5);
2483 gtk_box_pack_start (GTK_BOX (wbox
), wlbl
, TRUE
, TRUE
, 0);
2484 gtk_box_pack_start (GTK_BOX (wbox
), wkey
, FALSE
, FALSE
, 0);
2486 gtk_widget_set_name (wlbl
, MENU_ITEM_NAME
);
2487 gtk_widget_set_name (wkey
, MENU_ITEM_NAME
);
2488 gtk_widget_set_name (wbox
, MENU_ITEM_NAME
);
2493 /* Make and return a menu item widget with the key to the right.
2494 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2495 UTF8_KEY is the text representing the key binding.
2496 ITEM is the widget_value describing the menu item.
2498 GROUP is an in/out parameter. If the menu item to be created is not
2499 part of any radio menu group, *GROUP contains NULL on entry and exit.
2500 If the menu item to be created is part of a radio menu group, on entry
2501 *GROUP contains the group to use, or NULL if this is the first item
2502 in the group. On exit, *GROUP contains the radio item group.
2504 Unfortunately, keys don't line up as nicely as in Motif,
2505 but the macOS version doesn't either, so I guess that is OK. */
2508 make_menu_item (const char *utf8_label
,
2509 const char *utf8_key
,
2514 GtkWidget
*wtoadd
= 0;
2516 /* It has been observed that some menu items have a NULL name field.
2517 This will lead to this function being called with a NULL utf8_label.
2518 GTK crashes on that so we set a blank label. Why there is a NULL
2519 name remains to be investigated. */
2520 if (! utf8_label
) utf8_label
= " ";
2523 wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
2525 if (item
->button_type
== BUTTON_TYPE_TOGGLE
)
2528 if (utf8_key
) w
= gtk_check_menu_item_new ();
2529 else w
= gtk_check_menu_item_new_with_label (utf8_label
);
2530 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), item
->selected
);
2532 else if (item
->button_type
== BUTTON_TYPE_RADIO
)
2534 if (utf8_key
) w
= gtk_radio_menu_item_new (*group
);
2535 else w
= gtk_radio_menu_item_new_with_label (*group
, utf8_label
);
2536 *group
= gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w
));
2538 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), TRUE
);
2543 if (utf8_key
) w
= gtk_menu_item_new ();
2544 else w
= gtk_menu_item_new_with_label (utf8_label
);
2547 if (wtoadd
) gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
2548 if (! item
->enabled
) gtk_widget_set_sensitive (w
, FALSE
);
2553 /* Create a menu item widget, and connect the callbacks.
2554 ITEM describes the menu item.
2555 F is the frame the created menu belongs to.
2556 SELECT_CB is the callback to use when a menu item is selected.
2557 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2558 CL_DATA points to the callback data to be used for this menu.
2559 GROUP is an in/out parameter. If the menu item to be created is not
2560 part of any radio menu group, *GROUP contains NULL on entry and exit.
2561 If the menu item to be created is part of a radio menu group, on entry
2562 *GROUP contains the group to use, or NULL if this is the first item
2563 in the group. On exit, *GROUP contains the radio item group.
2565 Returns the created GtkWidget. */
2568 xg_create_one_menuitem (widget_value
*item
,
2570 GCallback select_cb
,
2571 GCallback highlight_cb
,
2572 xg_menu_cb_data
*cl_data
,
2578 xg_menu_item_cb_data
*cb_data
;
2580 utf8_label
= get_utf8_string (item
->name
);
2581 utf8_key
= get_utf8_string (item
->key
);
2583 w
= make_menu_item (utf8_label
, utf8_key
, item
, group
);
2585 if (utf8_label
) g_free (utf8_label
);
2586 if (utf8_key
) g_free (utf8_key
);
2588 cb_data
= xmalloc (sizeof *cb_data
);
2590 xg_list_insert (&xg_menu_item_cb_list
, &cb_data
->ptrs
);
2592 cb_data
->select_id
= 0;
2593 cb_data
->help
= item
->help
;
2594 cb_data
->cl_data
= cl_data
;
2595 cb_data
->call_data
= item
->call_data
;
2597 g_signal_connect (G_OBJECT (w
),
2599 G_CALLBACK (menuitem_destroy_callback
),
2602 /* Put cb_data in widget, so we can get at it when modifying menubar */
2603 g_object_set_data (G_OBJECT (w
), XG_ITEM_DATA
, cb_data
);
2605 /* final item, not a submenu */
2606 if (item
->call_data
&& ! item
->contents
)
2610 = g_signal_connect (G_OBJECT (w
), "activate", select_cb
, cb_data
);
2616 /* Create a full menu tree specified by DATA.
2617 F is the frame the created menu belongs to.
2618 SELECT_CB is the callback to use when a menu item is selected.
2619 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2620 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2621 If POP_UP_P, create a popup menu.
2622 If MENU_BAR_P, create a menu bar.
2623 TOPMENU is the topmost GtkWidget that others shall be placed under.
2624 It may be NULL, in that case we create the appropriate widget
2625 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2626 CL_DATA is the callback data we shall use for this menu, or NULL
2627 if we haven't set the first callback yet.
2628 NAME is the name to give to the top level menu if this function
2629 creates it. May be NULL to not set any name.
2631 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2634 This function calls itself to create submenus. */
2637 create_menus (widget_value
*data
,
2639 GCallback select_cb
,
2640 GCallback deactivate_cb
,
2641 GCallback highlight_cb
,
2645 xg_menu_cb_data
*cl_data
,
2649 GtkWidget
*wmenu
= topmenu
;
2650 GSList
*group
= NULL
;
2656 wmenu
= gtk_menu_new ();
2657 xg_set_screen (wmenu
, f
);
2658 /* Connect this to the menu instead of items so we get enter/leave for
2659 disabled items also. TODO: Still does not get enter/leave for
2660 disabled items in detached menus. */
2661 g_signal_connect (G_OBJECT (wmenu
),
2662 "enter-notify-event",
2663 G_CALLBACK (menuitem_highlight_callback
),
2665 g_signal_connect (G_OBJECT (wmenu
),
2666 "leave-notify-event",
2667 G_CALLBACK (menuitem_highlight_callback
),
2672 wmenu
= gtk_menu_bar_new ();
2673 /* Set width of menu bar to a small value so it doesn't enlarge
2674 a small initial frame size. The width will be set to the
2675 width of the frame later on when it is added to a container.
2676 height -1: Natural height. */
2677 gtk_widget_set_size_request (wmenu
, 1, -1);
2680 /* Put cl_data on the top menu for easier access. */
2681 cl_data
= make_cl_data (cl_data
, f
, highlight_cb
);
2682 g_object_set_data (G_OBJECT (wmenu
), XG_FRAME_DATA
, (gpointer
)cl_data
);
2683 g_signal_connect (G_OBJECT (wmenu
), "destroy",
2684 G_CALLBACK (menu_destroy_callback
), cl_data
);
2687 gtk_widget_set_name (wmenu
, name
);
2690 g_signal_connect (G_OBJECT (wmenu
),
2691 "selection-done", deactivate_cb
, 0);
2694 for (item
= data
; item
; item
= item
->next
)
2698 if (pop_up_p
&& !item
->contents
&& !item
->call_data
2699 && !menu_separator_name_p (item
->name
))
2702 /* A title for a popup. We do the same as GTK does when
2703 creating titles, but it does not look good. */
2705 utf8_label
= get_utf8_string (item
->name
);
2707 w
= gtk_menu_item_new_with_label (utf8_label
);
2708 gtk_widget_set_sensitive (w
, FALSE
);
2709 if (utf8_label
) g_free (utf8_label
);
2711 else if (menu_separator_name_p (item
->name
))
2714 /* GTK only have one separator type. */
2715 w
= gtk_separator_menu_item_new ();
2719 w
= xg_create_one_menuitem (item
,
2721 item
->contents
? 0 : select_cb
,
2726 /* Create a possibly empty submenu for menu bar items, since some
2727 themes don't highlight items correctly without it. */
2728 if (item
->contents
|| menu_bar_p
)
2730 GtkWidget
*submenu
= create_menus (item
->contents
,
2740 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
2744 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu
), w
);
2745 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
2751 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2752 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2753 with some text and buttons.
2754 F is the frame the created item belongs to.
2755 NAME is the name to use for the top widget.
2756 VAL is a widget_value structure describing items to be created.
2757 SELECT_CB is the callback to use when a menu item is selected or
2758 a dialog button is pressed.
2759 DEACTIVATE_CB is the callback to use when an item is deactivated.
2760 For a menu, when a sub menu is not shown anymore, for a dialog it is
2761 called when the dialog is popped down.
2762 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2764 Returns the widget created. */
2767 xg_create_widget (const char *type
, const char *name
, struct frame
*f
,
2768 widget_value
*val
, GCallback select_cb
,
2769 GCallback deactivate_cb
, GCallback highlight_cb
)
2772 bool menu_bar_p
= strcmp (type
, "menubar") == 0;
2773 bool pop_up_p
= strcmp (type
, "popup") == 0;
2775 if (strcmp (type
, "dialog") == 0)
2777 w
= create_dialog (val
, select_cb
, deactivate_cb
);
2778 xg_set_screen (w
, f
);
2779 gtk_window_set_transient_for (GTK_WINDOW (w
),
2780 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2781 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
2782 gtk_widget_set_name (w
, "emacs-dialog");
2783 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
2785 else if (menu_bar_p
|| pop_up_p
)
2787 w
= create_menus (val
->contents
,
2798 /* Set the cursor to an arrow for popup menus when they are mapped.
2799 This is done by default for menu bar menus. */
2802 /* Must realize so the GdkWindow inside the widget is created. */
2803 gtk_widget_realize (w
);
2804 xg_set_cursor (w
, FRAME_DISPLAY_INFO (f
)->xg_cursor
);
2809 fprintf (stderr
, "bad type in xg_create_widget: %s, doing nothing\n",
2816 /* Return the label for menu item WITEM. */
2819 xg_get_menu_item_label (GtkMenuItem
*witem
)
2821 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
2822 return gtk_label_get_label (wlabel
);
2825 /* Return true if the menu item WITEM has the text LABEL. */
2828 xg_item_label_same_p (GtkMenuItem
*witem
, const char *label
)
2831 char *utf8_label
= get_utf8_string (label
);
2832 const char *old_label
= witem
? xg_get_menu_item_label (witem
) : 0;
2834 if (! old_label
&& ! utf8_label
)
2836 else if (old_label
&& utf8_label
)
2837 is_same
= strcmp (utf8_label
, old_label
) == 0;
2839 if (utf8_label
) g_free (utf8_label
);
2844 /* Destroy widgets in LIST. */
2847 xg_destroy_widgets (GList
*list
)
2851 for (iter
= list
; iter
; iter
= g_list_next (iter
))
2853 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
2855 /* Destroying the widget will remove it from the container it is in. */
2856 gtk_widget_destroy (w
);
2860 /* Update the top level names in MENUBAR (i.e. not submenus).
2861 F is the frame the menu bar belongs to.
2862 *LIST is a list with the current menu bar names (menu item widgets).
2863 ITER is the item within *LIST that shall be updated.
2864 POS is the numerical position, starting at 0, of ITER in *LIST.
2865 VAL describes what the menu bar shall look like after the update.
2866 SELECT_CB is the callback to use when a menu item is selected.
2867 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2868 CL_DATA points to the callback data to be used for this menu bar.
2870 This function calls itself to walk through the menu bar names. */
2873 xg_update_menubar (GtkWidget
*menubar
,
2879 GCallback select_cb
,
2880 GCallback deactivate_cb
,
2881 GCallback highlight_cb
,
2882 xg_menu_cb_data
*cl_data
)
2884 if (! iter
&& ! val
)
2886 else if (iter
&& ! val
)
2888 /* Item(s) have been removed. Remove all remaining items. */
2889 xg_destroy_widgets (iter
);
2891 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2892 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
2893 gtk_menu_item_new_with_label (""),
2899 else if (! iter
&& val
)
2901 /* Item(s) added. Add all new items in one call. */
2902 create_menus (val
, f
, select_cb
, deactivate_cb
, highlight_cb
,
2903 0, 1, menubar
, cl_data
, 0);
2909 /* Below this neither iter or val is NULL */
2910 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter
->data
), val
->name
))
2912 /* This item is still the same, check next item. */
2914 iter
= g_list_next (iter
);
2917 else /* This item is changed. */
2919 GtkMenuItem
*witem
= GTK_MENU_ITEM (iter
->data
);
2920 GtkMenuItem
*witem2
= 0;
2921 bool val_in_menubar
= 0;
2922 bool iter_in_new_menubar
= 0;
2926 /* See if the changed entry (val) is present later in the menu bar */
2928 iter2
&& ! val_in_menubar
;
2929 iter2
= g_list_next (iter2
))
2931 witem2
= GTK_MENU_ITEM (iter2
->data
);
2932 val_in_menubar
= xg_item_label_same_p (witem2
, val
->name
);
2935 /* See if the current entry (iter) is present later in the
2936 specification for the new menu bar. */
2937 for (cur
= val
; cur
&& ! iter_in_new_menubar
; cur
= cur
->next
)
2938 iter_in_new_menubar
= xg_item_label_same_p (witem
, cur
->name
);
2940 if (val_in_menubar
&& ! iter_in_new_menubar
)
2944 /* This corresponds to:
2949 g_object_ref (G_OBJECT (witem
));
2950 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem
));
2951 gtk_widget_destroy (GTK_WIDGET (witem
));
2953 /* Must get new list since the old changed. */
2954 g_list_free (*list
);
2955 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
2956 while (nr
-- > 0) iter
= g_list_next (iter
);
2958 else if (! val_in_menubar
&& ! iter_in_new_menubar
)
2960 /* This corresponds to:
2963 Rename B to X. This might seem to be a strange thing to do,
2964 since if there is a menu under B it will be totally wrong for X.
2965 But consider editing a C file. Then there is a C-mode menu
2966 (corresponds to B above).
2967 If then doing C-x C-f the minibuf menu (X above) replaces the
2968 C-mode menu. When returning from the minibuffer, we get
2969 back the C-mode menu. Thus we do:
2970 Rename B to X (C-mode to minibuf menu)
2971 Rename X to B (minibuf to C-mode menu).
2972 If the X menu hasn't been invoked, the menu under B
2973 is up to date when leaving the minibuffer. */
2974 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
2975 char *utf8_label
= get_utf8_string (val
->name
);
2977 /* GTK menu items don't notice when their labels have been
2978 changed from underneath them, so we have to explicitly
2979 use g_object_notify to tell listeners (e.g., a GMenuModel
2980 bridge that might be loaded) that the item's label has
2982 gtk_label_set_text (wlabel
, utf8_label
);
2983 #if GTK_CHECK_VERSION (2, 16, 0)
2984 g_object_notify (G_OBJECT (witem
), "label");
2986 if (utf8_label
) g_free (utf8_label
);
2987 iter
= g_list_next (iter
);
2991 else if (! val_in_menubar
&& iter_in_new_menubar
)
2993 /* This corresponds to:
3000 GtkWidget
*w
= xg_create_one_menuitem (val
,
3007 /* Create a possibly empty submenu for menu bar items, since some
3008 themes don't highlight items correctly without it. */
3009 GtkWidget
*submenu
= create_menus (NULL
, f
,
3010 select_cb
, deactivate_cb
,
3012 0, 0, 0, cl_data
, 0);
3014 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
3015 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
), w
, pos
);
3016 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
3018 g_list_free (*list
);
3019 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3020 while (nr
-- > 0) iter
= g_list_next (iter
);
3021 iter
= g_list_next (iter
);
3025 else /* if (val_in_menubar && iter_in_new_menubar) */
3028 /* This corresponds to:
3033 g_object_ref (G_OBJECT (witem2
));
3034 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem2
));
3035 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
3036 GTK_WIDGET (witem2
), pos
);
3037 g_object_unref (G_OBJECT (witem2
));
3039 g_list_free (*list
);
3040 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3041 while (nr
-- > 0) iter
= g_list_next (iter
);
3042 if (iter
) iter
= g_list_next (iter
);
3048 /* Update the rest of the menu bar. */
3049 xg_update_menubar (menubar
, f
, list
, iter
, pos
, val
,
3050 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3053 /* Update the menu item W so it corresponds to VAL.
3054 SELECT_CB is the callback to use when a menu item is selected.
3055 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3056 CL_DATA is the data to set in the widget for menu invocation. */
3059 xg_update_menu_item (widget_value
*val
,
3061 GCallback select_cb
,
3062 GCallback highlight_cb
,
3063 xg_menu_cb_data
*cl_data
)
3070 const char *old_label
= 0;
3071 const char *old_key
= 0;
3072 xg_menu_item_cb_data
*cb_data
;
3073 bool label_changed
= false;
3075 wchild
= XG_BIN_CHILD (w
);
3076 utf8_label
= get_utf8_string (val
->name
);
3077 utf8_key
= get_utf8_string (val
->key
);
3079 /* See if W is a menu item with a key. See make_menu_item above. */
3080 if (GTK_IS_BOX (wchild
))
3082 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wchild
));
3084 wlbl
= GTK_LABEL (list
->data
);
3085 wkey
= GTK_LABEL (list
->next
->data
);
3090 /* Remove the key and keep just the label. */
3091 g_object_ref (G_OBJECT (wlbl
));
3092 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
3093 gtk_container_add (GTK_CONTAINER (w
), GTK_WIDGET (wlbl
));
3094 g_object_unref (G_OBJECT (wlbl
));
3099 else /* Just a label. */
3101 wlbl
= GTK_LABEL (wchild
);
3103 /* Check if there is now a key. */
3106 GtkWidget
*wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
3107 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wtoadd
));
3109 wlbl
= GTK_LABEL (list
->data
);
3110 wkey
= GTK_LABEL (list
->next
->data
);
3113 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
3114 gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
3118 if (wkey
) old_key
= gtk_label_get_label (wkey
);
3119 if (wlbl
) old_label
= gtk_label_get_label (wlbl
);
3121 if (wkey
&& utf8_key
&& (! old_key
|| strcmp (utf8_key
, old_key
) != 0))
3123 label_changed
= true;
3124 gtk_label_set_text (wkey
, utf8_key
);
3127 if (! old_label
|| strcmp (utf8_label
, old_label
) != 0)
3129 label_changed
= true;
3130 gtk_label_set_text (wlbl
, utf8_label
);
3133 if (utf8_key
) g_free (utf8_key
);
3134 if (utf8_label
) g_free (utf8_label
);
3136 if (! val
->enabled
&& gtk_widget_get_sensitive (w
))
3137 gtk_widget_set_sensitive (w
, FALSE
);
3138 else if (val
->enabled
&& ! gtk_widget_get_sensitive (w
))
3139 gtk_widget_set_sensitive (w
, TRUE
);
3141 cb_data
= g_object_get_data (G_OBJECT (w
), XG_ITEM_DATA
);
3144 cb_data
->call_data
= val
->call_data
;
3145 cb_data
->help
= val
->help
;
3146 cb_data
->cl_data
= cl_data
;
3148 /* We assume the callback functions don't change. */
3149 if (val
->call_data
&& ! val
->contents
)
3151 /* This item shall have a select callback. */
3152 if (! cb_data
->select_id
)
3154 = g_signal_connect (G_OBJECT (w
), "activate",
3155 select_cb
, cb_data
);
3157 else if (cb_data
->select_id
)
3159 g_signal_handler_disconnect (w
, cb_data
->select_id
);
3160 cb_data
->select_id
= 0;
3164 #if GTK_CHECK_VERSION (2, 16, 0)
3165 if (label_changed
) /* See comment in xg_update_menubar. */
3166 g_object_notify (G_OBJECT (w
), "label");
3170 /* Update the toggle menu item W so it corresponds to VAL. */
3173 xg_update_toggle_item (widget_value
*val
, GtkWidget
*w
)
3175 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
3178 /* Update the radio menu item W so it corresponds to VAL. */
3181 xg_update_radio_item (widget_value
*val
, GtkWidget
*w
)
3183 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
3186 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3187 SUBMENU may be NULL, in that case a new menu is created.
3188 F is the frame the menu bar belongs to.
3189 VAL describes the contents of the menu bar.
3190 SELECT_CB is the callback to use when a menu item is selected.
3191 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3192 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3193 CL_DATA is the call back data to use for any newly created items.
3195 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3199 xg_update_submenu (GtkWidget
*submenu
,
3202 GCallback select_cb
,
3203 GCallback deactivate_cb
,
3204 GCallback highlight_cb
,
3205 xg_menu_cb_data
*cl_data
)
3207 GtkWidget
*newsub
= submenu
;
3211 GList
*first_radio
= 0;
3214 list
= gtk_container_get_children (GTK_CONTAINER (submenu
));
3216 for (cur
= val
, iter
= list
;
3218 iter
= g_list_next (iter
), cur
= cur
->next
)
3220 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3222 /* Remember first radio button in a group. If we get a mismatch in
3223 a radio group we must rebuild the whole group so that the connections
3224 in GTK becomes correct. */
3225 if (cur
->button_type
== BUTTON_TYPE_RADIO
&& ! first_radio
)
3227 else if (cur
->button_type
!= BUTTON_TYPE_RADIO
3228 && ! GTK_IS_RADIO_MENU_ITEM (w
))
3231 if (GTK_IS_SEPARATOR_MENU_ITEM (w
))
3233 if (! menu_separator_name_p (cur
->name
))
3236 else if (GTK_IS_CHECK_MENU_ITEM (w
))
3238 if (cur
->button_type
!= BUTTON_TYPE_TOGGLE
)
3240 xg_update_toggle_item (cur
, w
);
3241 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3243 else if (GTK_IS_RADIO_MENU_ITEM (w
))
3245 if (cur
->button_type
!= BUTTON_TYPE_RADIO
)
3247 xg_update_radio_item (cur
, w
);
3248 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3250 else if (GTK_IS_MENU_ITEM (w
))
3252 GtkMenuItem
*witem
= GTK_MENU_ITEM (w
);
3255 if (cur
->button_type
!= BUTTON_TYPE_NONE
||
3256 menu_separator_name_p (cur
->name
))
3259 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3261 sub
= gtk_menu_item_get_submenu (witem
);
3262 if (sub
&& ! cur
->contents
)
3264 /* Not a submenu anymore. */
3265 g_object_ref (G_OBJECT (sub
));
3266 remove_submenu (witem
);
3267 gtk_widget_destroy (sub
);
3269 else if (cur
->contents
)
3273 nsub
= xg_update_submenu (sub
, f
, cur
->contents
,
3274 select_cb
, deactivate_cb
,
3275 highlight_cb
, cl_data
);
3277 /* If this item just became a submenu, we must set it. */
3279 gtk_menu_item_set_submenu (witem
, nsub
);
3284 /* Structural difference. Remove everything from here and down
3290 /* Remove widgets from first structural change. */
3293 /* If we are adding new menu items below, we must remove from
3294 first radio button so that radio groups become correct. */
3295 if (cur
&& first_radio
) xg_destroy_widgets (first_radio
);
3296 else xg_destroy_widgets (iter
);
3301 /* More items added. Create them. */
3302 newsub
= create_menus (cur
,
3314 if (list
) g_list_free (list
);
3319 /* Update the MENUBAR.
3320 F is the frame the menu bar belongs to.
3321 VAL describes the contents of the menu bar.
3322 If DEEP_P, rebuild all but the top level menu names in
3323 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3324 SELECT_CB is the callback to use when a menu item is selected.
3325 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3326 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3329 xg_modify_menubar_widgets (GtkWidget
*menubar
, struct frame
*f
,
3330 widget_value
*val
, bool deep_p
,
3331 GCallback select_cb
, GCallback deactivate_cb
,
3332 GCallback highlight_cb
)
3334 xg_menu_cb_data
*cl_data
;
3335 GList
*list
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3339 cl_data
= g_object_get_data (G_OBJECT (menubar
), XG_FRAME_DATA
);
3341 xg_update_menubar (menubar
, f
, &list
, list
, 0, val
->contents
,
3342 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3348 /* Update all sub menus.
3349 We must keep the submenus (GTK menu item widgets) since the
3350 X Window in the XEvent that activates the menu are those widgets. */
3352 /* Update cl_data, menu_item things in F may have changed. */
3353 update_cl_data (cl_data
, f
, highlight_cb
);
3355 for (cur
= val
->contents
; cur
; cur
= cur
->next
)
3360 GtkMenuItem
*witem
= 0;
3362 /* Find sub menu that corresponds to val and update it. */
3363 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3365 witem
= GTK_MENU_ITEM (iter
->data
);
3366 if (xg_item_label_same_p (witem
, cur
->name
))
3368 sub
= gtk_menu_item_get_submenu (witem
);
3373 newsub
= xg_update_submenu (sub
,
3380 /* sub may still be NULL. If we just updated non deep and added
3381 a new menu bar item, it has no sub menu yet. So we set the
3382 newly created sub menu under witem. */
3383 if (newsub
!= sub
&& witem
!= 0)
3385 xg_set_screen (newsub
, f
);
3386 gtk_menu_item_set_submenu (witem
, newsub
);
3392 gtk_widget_show_all (menubar
);
3395 /* Callback called when the menu bar W is mapped.
3396 Used to find the height of the menu bar if we didn't get it
3397 after showing the widget. */
3400 menubar_map_cb (GtkWidget
*w
, gpointer user_data
)
3403 struct frame
*f
= user_data
;
3404 gtk_widget_get_preferred_size (w
, NULL
, &req
);
3405 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3407 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3408 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3412 /* Recompute all the widgets of frame F, when the menu bar has been
3416 xg_update_frame_menubar (struct frame
*f
)
3418 struct x_output
*x
= f
->output_data
.x
;
3421 if (!x
->menubar_widget
|| gtk_widget_get_mapped (x
->menubar_widget
))
3424 if (x
->menubar_widget
&& gtk_widget_get_parent (x
->menubar_widget
))
3425 return; /* Already done this, happens for frames created invisible. */
3429 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
,
3431 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
, 0);
3433 g_signal_connect (x
->menubar_widget
, "map", G_CALLBACK (menubar_map_cb
), f
);
3434 gtk_widget_show_all (x
->menubar_widget
);
3435 gtk_widget_get_preferred_size (x
->menubar_widget
, NULL
, &req
);
3437 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3439 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3440 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3445 /* Get rid of the menu bar of frame F, and free its storage.
3446 This is used when deleting a frame, and when turning off the menu bar. */
3449 free_frame_menubar (struct frame
*f
)
3451 struct x_output
*x
= f
->output_data
.x
;
3453 if (x
->menubar_widget
)
3457 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
), x
->menubar_widget
);
3458 /* The menubar and its children shall be deleted when removed from
3460 x
->menubar_widget
= 0;
3461 FRAME_MENUBAR_HEIGHT (f
) = 0;
3462 adjust_frame_size (f
, -1, -1, 2, 0, Qmenu_bar_lines
);
3468 xg_event_is_for_menubar (struct frame
*f
, const XEvent
*event
)
3470 struct x_output
*x
= f
->output_data
.x
;
3479 if (! x
->menubar_widget
) return 0;
3481 if (! (event
->xbutton
.x
>= 0
3482 && event
->xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
3483 && event
->xbutton
.y
>= 0
3484 && event
->xbutton
.y
< FRAME_MENUBAR_HEIGHT (f
)
3485 && event
->xbutton
.same_screen
))
3488 gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
3489 gw
= gdk_x11_window_lookup_for_display (gdpy
, event
->xbutton
.window
);
3491 gevent
.any
.window
= gw
;
3492 gevent
.any
.type
= GDK_NOTHING
;
3493 gwdesc
= gtk_get_event_widget (&gevent
);
3494 if (! gwdesc
) return 0;
3495 if (! GTK_IS_MENU_BAR (gwdesc
)
3496 && ! GTK_IS_MENU_ITEM (gwdesc
)
3497 && ! gtk_widget_is_ancestor (x
->menubar_widget
, gwdesc
))
3500 list
= gtk_container_get_children (GTK_CONTAINER (x
->menubar_widget
));
3501 if (! list
) return 0;
3502 rec
.x
= event
->xbutton
.x
;
3503 rec
.y
= event
->xbutton
.y
;
3507 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3509 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3510 if (gtk_widget_get_mapped (w
) && gtk_widget_intersect (w
, &rec
, NULL
))
3519 /***********************************************************************
3520 Scroll bar functions
3521 ***********************************************************************/
3524 /* Setting scroll bar values invokes the callback. Use this variable
3525 to indicate that callback should do nothing. */
3527 bool xg_ignore_gtk_scrollbar
;
3529 /* Width and height of scroll bars for the current theme. */
3530 static int scroll_bar_width_for_theme
;
3531 static int scroll_bar_height_for_theme
;
3533 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3534 may be larger than 32 bits. Keep a mapping from integer index to widget
3535 pointers to get around the 32 bit limitation. */
3539 GtkWidget
**widgets
;
3544 /* Grow this much every time we need to allocate more */
3546 #define ID_TO_WIDGET_INCR 32
3548 /* Store the widget pointer W in id_to_widget and return the integer index. */
3551 xg_store_widget_in_map (GtkWidget
*w
)
3555 if (id_to_widget
.max_size
== id_to_widget
.used
)
3558 if (TYPE_MAXIMUM (Window
) - ID_TO_WIDGET_INCR
< id_to_widget
.max_size
)
3559 memory_full (SIZE_MAX
);
3561 new_size
= id_to_widget
.max_size
+ ID_TO_WIDGET_INCR
;
3562 id_to_widget
.widgets
= xnrealloc (id_to_widget
.widgets
,
3563 new_size
, sizeof (GtkWidget
*));
3565 for (i
= id_to_widget
.max_size
; i
< new_size
; ++i
)
3566 id_to_widget
.widgets
[i
] = 0;
3567 id_to_widget
.max_size
= new_size
;
3570 /* Just loop over the array and find a free place. After all,
3571 how many scroll bars are we creating? Should be a small number.
3572 The check above guarantees we will find a free place. */
3573 for (i
= 0; i
< id_to_widget
.max_size
; ++i
)
3575 if (! id_to_widget
.widgets
[i
])
3577 id_to_widget
.widgets
[i
] = w
;
3578 ++id_to_widget
.used
;
3584 /* Should never end up here */
3588 /* Remove pointer at IDX from id_to_widget.
3589 Called when scroll bar is destroyed. */
3592 xg_remove_widget_from_map (ptrdiff_t idx
)
3594 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3596 id_to_widget
.widgets
[idx
] = 0;
3597 --id_to_widget
.used
;
3601 /* Get the widget pointer at IDX from id_to_widget. */
3604 xg_get_widget_from_map (ptrdiff_t idx
)
3606 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3607 return id_to_widget
.widgets
[idx
];
3613 update_theme_scrollbar_width (void)
3616 GtkAdjustment
*vadj
;
3623 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
, 0.1, 0.1, 0.1);
3624 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL
, GTK_ADJUSTMENT (vadj
));
3625 g_object_ref_sink (G_OBJECT (wscroll
));
3626 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3627 gtk_widget_destroy (wscroll
);
3628 g_object_unref (G_OBJECT (wscroll
));
3633 scroll_bar_width_for_theme
= w
;
3637 update_theme_scrollbar_height (void)
3640 GtkAdjustment
*hadj
;
3647 hadj
= gtk_adjustment_new (YG_SB_MIN
, YG_SB_MIN
, YG_SB_MAX
, 0.1, 0.1, 0.1);
3648 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL
, GTK_ADJUSTMENT (hadj
));
3649 g_object_ref_sink (G_OBJECT (wscroll
));
3650 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3651 gtk_widget_destroy (wscroll
);
3652 g_object_unref (G_OBJECT (wscroll
));
3655 scroll_bar_height_for_theme
= w
;
3659 xg_get_default_scrollbar_width (void)
3661 return scroll_bar_width_for_theme
* xg_get_gdk_scale ();
3665 xg_get_default_scrollbar_height (void)
3667 /* Apparently there's no default height for themes. */
3668 return scroll_bar_width_for_theme
* xg_get_gdk_scale ();
3671 /* Return the scrollbar id for X Window WID on display DPY.
3672 Return -1 if WID not in id_to_widget. */
3675 xg_get_scroll_id_for_window (Display
*dpy
, Window wid
)
3680 w
= xg_win_to_widget (dpy
, wid
);
3684 for (idx
= 0; idx
< id_to_widget
.max_size
; ++idx
)
3685 if (id_to_widget
.widgets
[idx
] == w
)
3692 /* Callback invoked when scroll bar WIDGET is destroyed.
3693 DATA is the index into id_to_widget for WIDGET.
3694 We free pointer to last scroll bar values here and remove the index. */
3697 xg_gtk_scroll_destroy (GtkWidget
*widget
, gpointer data
)
3699 intptr_t id
= (intptr_t) data
;
3700 xg_remove_widget_from_map (id
);
3704 xg_finish_scroll_bar_creation (struct frame
*f
,
3706 struct scroll_bar
*bar
,
3707 GCallback scroll_callback
,
3708 GCallback end_callback
,
3709 const char *scroll_bar_name
)
3711 GtkWidget
*webox
= gtk_event_box_new ();
3713 gtk_widget_set_name (wscroll
, scroll_bar_name
);
3715 gtk_range_set_update_policy (GTK_RANGE (wscroll
), GTK_UPDATE_CONTINUOUS
);
3717 g_object_set_data (G_OBJECT (wscroll
), XG_FRAME_DATA
, (gpointer
)f
);
3719 ptrdiff_t scroll_id
= xg_store_widget_in_map (wscroll
);
3721 g_signal_connect (G_OBJECT (wscroll
),
3723 G_CALLBACK (xg_gtk_scroll_destroy
),
3724 (gpointer
) scroll_id
);
3725 g_signal_connect (G_OBJECT (wscroll
),
3729 g_signal_connect (G_OBJECT (wscroll
),
3730 "button-release-event",
3734 /* The scroll bar widget does not draw on a window of its own. Instead
3735 it draws on the parent window, in this case the edit widget. So
3736 whenever the edit widget is cleared, the scroll bar needs to redraw
3737 also, which causes flicker. Put an event box between the edit widget
3738 and the scroll bar, so the scroll bar instead draws itself on the
3739 event box window. */
3740 gtk_fixed_put (GTK_FIXED (f
->output_data
.x
->edit_widget
), webox
, -1, -1);
3741 gtk_container_add (GTK_CONTAINER (webox
), wscroll
);
3743 xg_set_widget_bg (f
, webox
, FRAME_BACKGROUND_PIXEL (f
));
3745 /* N.B. The event box doesn't become a real X11 window until we ask
3746 for its XID via GTK_WIDGET_TO_X_WIN. If the event box is not a
3747 real X window, it and its scroll-bar child try to draw on the
3748 Emacs main window, which we draw over using Xlib. */
3749 gtk_widget_realize (webox
);
3750 GTK_WIDGET_TO_X_WIN (webox
);
3752 /* Set the cursor to an arrow. */
3753 xg_set_cursor (webox
, FRAME_DISPLAY_INFO (f
)->xg_cursor
);
3755 bar
->x_window
= scroll_id
;
3758 /* Create a scroll bar widget for frame F. Store the scroll bar
3760 SCROLL_CALLBACK is the callback to invoke when the value of the
3762 END_CALLBACK is the callback to invoke when scrolling ends.
3763 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3764 to set resources for the widget. */
3767 xg_create_scroll_bar (struct frame
*f
,
3768 struct scroll_bar
*bar
,
3769 GCallback scroll_callback
,
3770 GCallback end_callback
,
3771 const char *scroll_bar_name
)
3775 GtkAdjustment
*vadj
;
3780 /* Page, step increment values are not so important here, they
3781 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3782 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
,
3785 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL
, GTK_ADJUSTMENT (vadj
));
3787 xg_finish_scroll_bar_creation (f
, wscroll
, bar
, scroll_callback
,
3788 end_callback
, scroll_bar_name
);
3789 bar
->horizontal
= 0;
3792 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3793 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3794 of the bar changes. END_CALLBACK is the callback to invoke when
3795 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3796 bar. Can be used to set resources for the widget. */
3799 xg_create_horizontal_scroll_bar (struct frame
*f
,
3800 struct scroll_bar
*bar
,
3801 GCallback scroll_callback
,
3802 GCallback end_callback
,
3803 const char *scroll_bar_name
)
3807 GtkAdjustment
*hadj
;
3812 /* Page, step increment values are not so important here, they
3813 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3814 hadj
= gtk_adjustment_new (YG_SB_MIN
, YG_SB_MIN
, YG_SB_MAX
,
3817 wscroll
= gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL
, GTK_ADJUSTMENT (hadj
));
3819 xg_finish_scroll_bar_creation (f
, wscroll
, bar
, scroll_callback
,
3820 end_callback
, scroll_bar_name
);
3821 bar
->horizontal
= 1;
3824 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3827 xg_remove_scroll_bar (struct frame
*f
, ptrdiff_t scrollbar_id
)
3829 GtkWidget
*w
= xg_get_widget_from_map (scrollbar_id
);
3832 GtkWidget
*wparent
= gtk_widget_get_parent (w
);
3833 gtk_widget_destroy (w
);
3834 gtk_widget_destroy (wparent
);
3835 SET_FRAME_GARBAGED (f
);
3839 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3841 TOP/LEFT are the new pixel positions where the bar shall appear.
3842 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3845 xg_update_scrollbar_pos (struct frame
*f
,
3846 ptrdiff_t scrollbar_id
,
3852 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3855 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3856 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3858 int scale
= xg_get_gdk_scale ();
3864 left
-= (scale
- 1) * ((width
/ scale
) >> 1);
3866 /* Clear out old position. */
3867 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3868 if (gtk_widget_get_parent (wparent
) == wfixed
)
3870 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3871 "x", &oldx
, "y", &oldy
, NULL
);
3872 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3875 /* Move and resize to new values. */
3876 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
3877 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
3880 /* No room. Hide scroll bar as some themes output a warning if
3881 the height is less than the min size. */
3882 gtk_widget_hide (wparent
);
3883 gtk_widget_hide (wscroll
);
3888 gtk_widget_show_all (wparent
);
3889 gtk_widget_set_size_request (wscroll
, width
, height
);
3891 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
3893 /* Clear under old scroll bar position. */
3894 oldw
+= (scale
- 1) * oldw
;
3895 oldx
-= (scale
- 1) * oldw
;
3896 x_clear_area (f
, oldx
, oldy
, oldw
, oldh
);
3901 GtkWidget
*scrollbar
= xg_get_widget_from_map (scrollbar_id
);
3902 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
3904 /* Don't obscure any child frames. */
3905 XLowerWindow (FRAME_X_DISPLAY (f
), GTK_WIDGET_TO_X_WIN (webox
));
3908 /* GTK does not redraw until the main loop is entered again, but
3909 if there are no X events pending we will not enter it. So we sync
3910 here to get some events. */
3913 SET_FRAME_GARBAGED (f
);
3914 cancel_mouse_face (f
);
3919 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3921 TOP/LEFT are the new pixel positions where the bar shall appear.
3922 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3925 xg_update_horizontal_scrollbar_pos (struct frame
*f
,
3926 ptrdiff_t scrollbar_id
,
3933 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3937 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3938 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3941 /* Clear out old position. */
3942 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3943 if (gtk_widget_get_parent (wparent
) == wfixed
)
3945 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3946 "x", &oldx
, "y", &oldy
, NULL
);
3947 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3950 /* Move and resize to new values. */
3951 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
3952 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
3955 /* No room. Hide scroll bar as some themes output a warning if
3956 the width is less than the min size. */
3957 gtk_widget_hide (wparent
);
3958 gtk_widget_hide (wscroll
);
3962 gtk_widget_show_all (wparent
);
3963 gtk_widget_set_size_request (wscroll
, width
, height
);
3965 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
3966 /* Clear under old scroll bar position. */
3967 x_clear_area (f
, oldx
, oldy
, oldw
, oldh
);
3969 /* GTK does not redraw until the main loop is entered again, but
3970 if there are no X events pending we will not enter it. So we sync
3971 here to get some events. */
3974 GtkWidget
*scrollbar
=
3975 xg_get_widget_from_map (scrollbar_id
);
3976 GtkWidget
*webox
= gtk_widget_get_parent (scrollbar
);
3978 /* Don't obscure any child frames. */
3979 XLowerWindow (FRAME_X_DISPLAY (f
), GTK_WIDGET_TO_X_WIN (webox
));
3983 SET_FRAME_GARBAGED (f
);
3984 cancel_mouse_face (f
);
3989 /* Get the current value of the range, truncated to an integer. */
3992 int_gtk_range_get_value (GtkRange
*range
)
3994 return gtk_range_get_value (range
);
3998 /* Set the thumb size and position of scroll bar BAR. We are currently
3999 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4002 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
,
4007 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
4009 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4011 if (wscroll
&& bar
->dragging
== -1)
4021 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
4023 if (scroll_bar_adjust_thumb_portion_p
)
4025 /* We do the same as for MOTIF in xterm.c, use 30 chars per
4026 line rather than the real portion value. This makes the
4027 thumb less likely to resize and that looks better. */
4028 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
4030 /* When the thumb is at the bottom, position == whole.
4031 So we need to increase `whole' to make space for the thumb. */
4039 top
= (gdouble
) position
/ whole
;
4040 shown
= (gdouble
) portion
/ whole
;
4043 size
= clip_to_bounds (1, shown
* XG_SB_RANGE
, XG_SB_RANGE
);
4044 value
= clip_to_bounds (XG_SB_MIN
, top
* XG_SB_RANGE
, XG_SB_MAX
- size
);
4046 /* Assume all lines are of equal size. */
4047 new_step
= size
/ max (1, FRAME_LINES (f
));
4049 old_size
= gtk_adjustment_get_page_size (adj
);
4050 if (old_size
!= size
)
4052 int old_step
= gtk_adjustment_get_step_increment (adj
);
4053 if (old_step
!= new_step
)
4055 gtk_adjustment_set_page_size (adj
, size
);
4056 gtk_adjustment_set_step_increment (adj
, new_step
);
4057 /* Assume a page increment is about 95% of the page size */
4058 gtk_adjustment_set_page_increment (adj
, size
- size
/ 20);
4063 if (changed
|| int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
4067 /* gtk_range_set_value invokes the callback. Set
4068 ignore_gtk_scrollbar to make the callback do nothing */
4069 xg_ignore_gtk_scrollbar
= 1;
4071 if (int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
4072 gtk_range_set_value (GTK_RANGE (wscroll
), (gdouble
)value
);
4074 gtk_adjustment_changed (adj
);
4076 xg_ignore_gtk_scrollbar
= 0;
4083 /* Set the thumb size and position of horizontal scroll bar BAR. We are
4084 currently displaying PORTION out of a whole WHOLE, and our position
4087 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar
*bar
,
4092 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
4094 if (wscroll
&& bar
->dragging
== -1)
4098 int upper
= max (whole
- 1, 0);
4099 int pagesize
= min (upper
, max (portion
, 0));
4100 int value
= max (0, min (position
, upper
- pagesize
));
4101 /* These should be set to something more <portion, whole>
4103 int page_increment
= 4;
4104 int step_increment
= 1;
4107 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
4108 gtk_adjustment_configure (adj
, (gdouble
) value
, (gdouble
) lower
,
4109 (gdouble
) upper
, (gdouble
) step_increment
,
4110 (gdouble
) page_increment
, (gdouble
) pagesize
);
4111 gtk_adjustment_changed (adj
);
4116 /* Return true if EVENT is for a scroll bar in frame F.
4117 When the same X window is used for several Gtk+ widgets, we cannot
4118 say for sure based on the X window alone if an event is for the
4119 frame. This function does additional checks. */
4122 xg_event_is_for_scrollbar (struct frame
*f
, const XEvent
*event
)
4126 if (f
&& event
->type
== ButtonPress
&& event
->xbutton
.button
< 4)
4128 /* Check if press occurred outside the edit widget. */
4129 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
4132 GdkDevice
*gdev
= gdk_device_manager_get_client_pointer
4133 (gdk_display_get_device_manager (gdpy
));
4134 gwin
= gdk_device_get_window_at_position (gdev
, NULL
, NULL
);
4136 gwin
= gdk_display_get_window_at_pointer (gdpy
, NULL
, NULL
);
4138 retval
= gwin
!= gtk_widget_get_window (f
->output_data
.x
->edit_widget
);
4141 && ((event
->type
== ButtonRelease
&& event
->xbutton
.button
< 4)
4142 || event
->type
== MotionNotify
))
4144 /* If we are releasing or moving the scroll bar, it has the grab. */
4145 GtkWidget
*w
= gtk_grab_get_current ();
4146 retval
= w
!= 0 && GTK_IS_SCROLLBAR (w
);
4153 /***********************************************************************
4155 ***********************************************************************/
4157 static GtkPrintSettings
*print_settings
= NULL
;
4158 static GtkPageSetup
*page_setup
= NULL
;
4161 xg_page_setup_dialog (void)
4163 GtkPageSetup
*new_page_setup
= NULL
;
4165 if (print_settings
== NULL
)
4166 print_settings
= gtk_print_settings_new ();
4167 new_page_setup
= gtk_print_run_page_setup_dialog (NULL
, page_setup
,
4170 g_object_unref (page_setup
);
4171 page_setup
= new_page_setup
;
4175 xg_get_page_setup (void)
4177 Lisp_Object orientation_symbol
;
4179 if (page_setup
== NULL
)
4180 page_setup
= gtk_page_setup_new ();
4182 switch (gtk_page_setup_get_orientation (page_setup
))
4184 case GTK_PAGE_ORIENTATION_PORTRAIT
:
4185 orientation_symbol
= Qportrait
;
4187 case GTK_PAGE_ORIENTATION_LANDSCAPE
:
4188 orientation_symbol
= Qlandscape
;
4190 case GTK_PAGE_ORIENTATION_REVERSE_PORTRAIT
:
4191 orientation_symbol
= Qreverse_portrait
;
4193 case GTK_PAGE_ORIENTATION_REVERSE_LANDSCAPE
:
4194 orientation_symbol
= Qreverse_landscape
;
4200 return listn (CONSTYPE_HEAP
, 7,
4201 Fcons (Qorientation
, orientation_symbol
),
4202 #define MAKE_FLOAT_PAGE_SETUP(f) make_float (f (page_setup, GTK_UNIT_POINTS))
4204 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_width
)),
4206 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_page_height
)),
4207 Fcons (Qleft_margin
,
4208 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_left_margin
)),
4209 Fcons (Qright_margin
,
4210 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_right_margin
)),
4212 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_top_margin
)),
4213 Fcons (Qbottom_margin
,
4214 MAKE_FLOAT_PAGE_SETUP (gtk_page_setup_get_bottom_margin
))
4215 #undef MAKE_FLOAT_PAGE_SETUP
4220 draw_page (GtkPrintOperation
*operation
, GtkPrintContext
*context
,
4221 gint page_nr
, gpointer user_data
)
4223 Lisp_Object frames
= *((Lisp_Object
*) user_data
);
4224 struct frame
*f
= XFRAME (Fnth (make_number (page_nr
), frames
));
4225 cairo_t
*cr
= gtk_print_context_get_cairo_context (context
);
4227 x_cr_draw_frame (cr
, f
);
4231 xg_print_frames_dialog (Lisp_Object frames
)
4233 GtkPrintOperation
*print
;
4234 GtkPrintOperationResult res
;
4236 print
= gtk_print_operation_new ();
4237 if (print_settings
!= NULL
)
4238 gtk_print_operation_set_print_settings (print
, print_settings
);
4239 if (page_setup
!= NULL
)
4240 gtk_print_operation_set_default_page_setup (print
, page_setup
);
4241 gtk_print_operation_set_n_pages (print
, XINT (Flength (frames
)));
4242 g_signal_connect (print
, "draw-page", G_CALLBACK (draw_page
), &frames
);
4243 res
= gtk_print_operation_run (print
, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG
,
4245 if (res
== GTK_PRINT_OPERATION_RESULT_APPLY
)
4247 if (print_settings
!= NULL
)
4248 g_object_unref (print_settings
);
4250 g_object_ref (gtk_print_operation_get_print_settings (print
));
4252 g_object_unref (print
);
4255 #endif /* USE_CAIRO */
4259 /***********************************************************************
4261 ***********************************************************************/
4262 /* The key for the data we put in the GtkImage widgets. The data is
4263 the image used by Emacs. We use this to see if we need to update
4264 the GtkImage with a new image. */
4265 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
4267 /* The key for storing the latest modifiers so the activate callback can
4269 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
4271 /* The key for the data we put in the GtkImage widgets. The data is
4272 the stock name used by Emacs. We use this to see if we need to update
4273 the GtkImage with a new image. */
4274 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
4276 /* As above, but this is used for named theme widgets, as opposed to
4278 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
4280 /* Callback function invoked when a tool bar item is pressed.
4281 W is the button widget in the tool bar that got pressed,
4282 CLIENT_DATA is an integer that is the index of the button in the
4283 tool bar. 0 is the first button. */
4286 xg_tool_bar_button_cb (GtkWidget
*widget
,
4287 GdkEventButton
*event
,
4290 intptr_t state
= event
->state
;
4291 gpointer ptr
= (gpointer
) state
;
4292 g_object_set_data (G_OBJECT (widget
), XG_TOOL_BAR_LAST_MODIFIER
, ptr
);
4297 /* Callback function invoked when a tool bar item is pressed.
4298 W is the button widget in the tool bar that got pressed,
4299 CLIENT_DATA is an integer that is the index of the button in the
4300 tool bar. 0 is the first button. */
4303 xg_tool_bar_callback (GtkWidget
*w
, gpointer client_data
)
4305 intptr_t idx
= (intptr_t) client_data
;
4306 gpointer gmod
= g_object_get_data (G_OBJECT (w
), XG_TOOL_BAR_LAST_MODIFIER
);
4307 intptr_t mod
= (intptr_t) gmod
;
4309 struct frame
*f
= g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4310 Lisp_Object key
, frame
;
4311 struct input_event event
;
4314 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4317 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4319 key
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_KEY
);
4320 XSETFRAME (frame
, f
);
4322 /* We generate two events here. The first one is to set the prefix
4323 to `(tool_bar)', see keyboard.c. */
4324 event
.kind
= TOOL_BAR_EVENT
;
4325 event
.frame_or_window
= frame
;
4327 kbd_buffer_store_event (&event
);
4329 event
.kind
= TOOL_BAR_EVENT
;
4330 event
.frame_or_window
= frame
;
4332 /* Convert between the modifier bits GDK uses and the modifier bits
4333 Emacs uses. This assumes GDK and X masks are the same, which they are when
4335 event
.modifiers
= x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f
), mod
);
4336 kbd_buffer_store_event (&event
);
4338 /* Return focus to the frame after we have clicked on a detached
4340 x_focus_frame (f
, false);
4344 xg_get_tool_bar_widgets (GtkWidget
*vb
, GtkWidget
**wimage
)
4346 GList
*clist
= gtk_container_get_children (GTK_CONTAINER (vb
));
4347 GtkWidget
*c1
= clist
->data
;
4348 GtkWidget
*c2
= clist
->next
? clist
->next
->data
: NULL
;
4350 *wimage
= GTK_IS_IMAGE (c1
) ? c1
: c2
;
4351 g_list_free (clist
);
4352 return GTK_IS_LABEL (c1
) ? c1
: c2
;
4356 /* This callback is called when the mouse enters or leaves a tool bar item.
4357 It is used for displaying and hiding the help text.
4358 W is the tool bar item, a button.
4359 EVENT is either an enter event or leave event.
4360 CLIENT_DATA is an integer that is the index of the button in the
4361 tool bar. 0 is the first button.
4363 Returns FALSE to tell GTK to keep processing this event. */
4366 xg_tool_bar_help_callback (GtkWidget
*w
,
4367 GdkEventCrossing
*event
,
4368 gpointer client_data
)
4370 intptr_t idx
= (intptr_t) client_data
;
4371 struct frame
*f
= g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4372 Lisp_Object help
, frame
;
4374 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4377 if (event
->type
== GDK_ENTER_NOTIFY
)
4379 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4380 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_HELP
);
4383 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_CAPTION
);
4388 XSETFRAME (frame
, f
);
4389 kbd_buffer_store_help_event (frame
, help
);
4395 /* This callback is called when a tool bar item shall be redrawn.
4396 It modifies the expose event so that the GtkImage widget redraws the
4397 whole image. This to overcome a bug that makes GtkImage draw the image
4398 in the wrong place when it tries to redraw just a part of the image.
4399 W is the GtkImage to be redrawn.
4400 EVENT is the expose event for W.
4401 CLIENT_DATA is unused.
4403 Returns FALSE to tell GTK to keep processing this event. */
4407 xg_tool_bar_item_expose_callback (GtkWidget
*w
,
4408 GdkEventExpose
*event
,
4409 gpointer client_data
)
4413 gdk_drawable_get_size (event
->window
, &width
, &height
);
4414 event
->area
.x
-= width
> event
->area
.width
? width
-event
->area
.width
: 0;
4415 event
->area
.y
-= height
> event
->area
.height
? height
-event
->area
.height
: 0;
4417 event
->area
.x
= max (0, event
->area
.x
);
4418 event
->area
.y
= max (0, event
->area
.y
);
4420 event
->area
.width
= max (width
, event
->area
.width
);
4421 event
->area
.height
= max (height
, event
->area
.height
);
4427 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4428 #define toolbar_set_orientation(w, o) \
4429 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4431 #define toolbar_set_orientation(w, o) \
4432 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4435 /* Attach a tool bar to frame F. */
4438 xg_pack_tool_bar (struct frame
*f
, Lisp_Object pos
)
4440 struct x_output
*x
= f
->output_data
.x
;
4441 bool into_hbox
= EQ (pos
, Qleft
) || EQ (pos
, Qright
);
4442 GtkWidget
*top_widget
= x
->toolbar_widget
;
4444 toolbar_set_orientation (x
->toolbar_widget
,
4446 ? GTK_ORIENTATION_VERTICAL
4447 : GTK_ORIENTATION_HORIZONTAL
);
4451 gtk_box_pack_start (GTK_BOX (x
->hbox_widget
), top_widget
,
4454 if (EQ (pos
, Qleft
))
4455 gtk_box_reorder_child (GTK_BOX (x
->hbox_widget
),
4458 x
->toolbar_in_hbox
= true;
4462 bool vbox_pos
= x
->menubar_widget
!= 0;
4463 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), top_widget
,
4467 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
),
4470 x
->toolbar_in_hbox
= false;
4472 x
->toolbar_is_packed
= true;
4475 static bool xg_update_tool_bar_sizes (struct frame
*f
);
4478 tb_size_cb (GtkWidget
*widget
,
4479 GdkRectangle
*allocation
,
4482 /* When tool bar is created it has one preferred size. But when size is
4483 allocated between widgets, it may get another. So we must update
4484 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4485 struct frame
*f
= user_data
;
4487 if (xg_update_tool_bar_sizes (f
))
4489 frame_size_history_add (f
, Qtb_size_cb
, 0, 0, Qnil
);
4490 adjust_frame_size (f
, -1, -1, 5, 0, Qtool_bar_lines
);
4494 /* Create a tool bar for frame F. */
4497 xg_create_tool_bar (struct frame
*f
)
4499 struct x_output
*x
= f
->output_data
.x
;
4500 #if GTK_CHECK_VERSION (3, 3, 6)
4501 GtkStyleContext
*gsty
;
4503 struct xg_frame_tb_info
*tbinfo
4504 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4508 tbinfo
= xmalloc (sizeof (*tbinfo
));
4509 tbinfo
->last_tool_bar
= Qnil
;
4510 tbinfo
->style
= Qnil
;
4511 tbinfo
->hmargin
= tbinfo
->vmargin
= 0;
4512 tbinfo
->dir
= GTK_TEXT_DIR_NONE
;
4513 tbinfo
->n_last_items
= 0;
4514 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4519 x
->toolbar_widget
= gtk_toolbar_new ();
4521 gtk_widget_set_name (x
->toolbar_widget
, "emacs-toolbar");
4523 gtk_toolbar_set_style (GTK_TOOLBAR (x
->toolbar_widget
), GTK_TOOLBAR_ICONS
);
4524 toolbar_set_orientation (x
->toolbar_widget
, GTK_ORIENTATION_HORIZONTAL
);
4525 g_signal_connect (x
->toolbar_widget
, "size-allocate",
4526 G_CALLBACK (tb_size_cb
), f
);
4527 #if GTK_CHECK_VERSION (3, 3, 6)
4528 gsty
= gtk_widget_get_style_context (x
->toolbar_widget
);
4529 gtk_style_context_add_class (gsty
, "primary-toolbar");
4534 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4536 /* Find the right-to-left image named by RTL in the tool bar images for F.
4537 Returns IMAGE if RTL is not found. */
4540 find_rtl_image (struct frame
*f
, Lisp_Object image
, Lisp_Object rtl
)
4543 Lisp_Object file
, rtl_name
;
4545 rtl_name
= Ffile_name_nondirectory (rtl
);
4547 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
4549 Lisp_Object rtl_image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4550 if (!NILP (file
= file_for_image (rtl_image
)))
4552 file
= call1 (intern ("file-name-sans-extension"),
4553 Ffile_name_nondirectory (file
));
4554 if (! NILP (Fequal (file
, rtl_name
)))
4565 static GtkToolItem
*
4566 xg_make_tool_item (struct frame
*f
,
4568 GtkWidget
**wbutton
,
4570 int i
, bool horiz
, bool text_image
)
4572 GtkToolItem
*ti
= gtk_tool_item_new ();
4573 GtkWidget
*vb
= gtk_box_new (horiz
4574 ? GTK_ORIENTATION_HORIZONTAL
4575 : GTK_ORIENTATION_VERTICAL
,
4577 GtkWidget
*wb
= gtk_button_new ();
4578 /* The eventbox is here so we can have tooltips on disabled items. */
4579 GtkWidget
*weventbox
= gtk_event_box_new ();
4580 #if GTK_CHECK_VERSION (3, 3, 6)
4581 GtkCssProvider
*css_prov
= gtk_css_provider_new ();
4582 GtkStyleContext
*gsty
;
4584 gtk_css_provider_load_from_data (css_prov
,
4586 " background-color: transparent;"
4590 gsty
= gtk_widget_get_style_context (weventbox
);
4591 gtk_style_context_add_provider (gsty
,
4592 GTK_STYLE_PROVIDER (css_prov
),
4593 GTK_STYLE_PROVIDER_PRIORITY_USER
);
4594 g_object_unref (css_prov
);
4597 gtk_box_set_homogeneous (GTK_BOX (vb
), FALSE
);
4599 if (wimage
&& !text_image
)
4600 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4602 gtk_box_pack_start (GTK_BOX (vb
), gtk_label_new (label
), TRUE
, TRUE
, 0);
4603 if (wimage
&& text_image
)
4604 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4606 gtk_button_set_focus_on_click (GTK_BUTTON (wb
), FALSE
);
4607 gtk_button_set_relief (GTK_BUTTON (wb
), GTK_RELIEF_NONE
);
4608 gtk_container_add (GTK_CONTAINER (wb
), vb
);
4609 gtk_container_add (GTK_CONTAINER (weventbox
), wb
);
4610 gtk_container_add (GTK_CONTAINER (ti
), weventbox
);
4612 if (wimage
|| label
)
4615 gpointer gi
= (gpointer
) ii
;
4617 g_signal_connect (G_OBJECT (wb
), "clicked",
4618 G_CALLBACK (xg_tool_bar_callback
),
4621 g_object_set_data (G_OBJECT (weventbox
), XG_FRAME_DATA
, (gpointer
)f
);
4624 /* Catch expose events to overcome an annoying redraw bug, see
4625 comment for xg_tool_bar_item_expose_callback. */
4626 g_signal_connect (G_OBJECT (ti
),
4628 G_CALLBACK (xg_tool_bar_item_expose_callback
),
4631 gtk_tool_item_set_homogeneous (ti
, FALSE
);
4633 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4634 no distinction based on modifiers in the activate callback,
4635 so we have to do it ourselves. */
4636 g_signal_connect (wb
, "button-release-event",
4637 G_CALLBACK (xg_tool_bar_button_cb
),
4640 g_object_set_data (G_OBJECT (wb
), XG_FRAME_DATA
, (gpointer
)f
);
4642 /* Use enter/leave notify to show help. We use the events
4643 rather than the GtkButton specific signals "enter" and
4644 "leave", so we can have only one callback. The event
4645 will tell us what kind of event it is. */
4646 g_signal_connect (G_OBJECT (weventbox
),
4647 "enter-notify-event",
4648 G_CALLBACK (xg_tool_bar_help_callback
),
4650 g_signal_connect (G_OBJECT (weventbox
),
4651 "leave-notify-event",
4652 G_CALLBACK (xg_tool_bar_help_callback
),
4656 if (wbutton
) *wbutton
= wb
;
4662 is_box_type (GtkWidget
*vb
, bool is_horizontal
)
4666 if (GTK_IS_BOX (vb
))
4668 GtkOrientation ori
= gtk_orientable_get_orientation (GTK_ORIENTABLE (vb
));
4669 ret
= (ori
== GTK_ORIENTATION_HORIZONTAL
&& is_horizontal
)
4670 || (ori
== GTK_ORIENTATION_VERTICAL
&& ! is_horizontal
);
4674 return is_horizontal
? GTK_IS_VBOX (vb
) : GTK_IS_HBOX (vb
);
4680 xg_tool_item_stale_p (GtkWidget
*wbutton
, const char *stock_name
,
4681 const char *icon_name
, const struct image
*img
,
4682 const char *label
, bool horiz
)
4686 GtkWidget
*vb
= XG_BIN_CHILD (wbutton
);
4687 GtkWidget
*wlbl
= xg_get_tool_bar_widgets (vb
, &wimage
);
4689 /* Check if the tool icon matches. */
4690 if (stock_name
&& wimage
)
4692 old
= g_object_get_data (G_OBJECT (wimage
),
4693 XG_TOOL_BAR_STOCK_NAME
);
4694 if (!old
|| strcmp (old
, stock_name
))
4697 else if (icon_name
&& wimage
)
4699 old
= g_object_get_data (G_OBJECT (wimage
),
4700 XG_TOOL_BAR_ICON_NAME
);
4701 if (!old
|| strcmp (old
, icon_name
))
4706 gpointer gold_img
= g_object_get_data (G_OBJECT (wimage
),
4707 XG_TOOL_BAR_IMAGE_DATA
);
4708 Pixmap old_img
= (Pixmap
) gold_img
;
4709 if (old_img
!= img
->pixmap
)
4713 /* Check button configuration and label. */
4714 if (is_box_type (vb
, horiz
)
4715 || (label
? (wlbl
== NULL
) : (wlbl
!= NULL
)))
4718 /* Ensure label is correct. */
4720 gtk_label_set_text (GTK_LABEL (wlbl
), label
);
4725 xg_update_tool_bar_sizes (struct frame
*f
)
4727 struct x_output
*x
= f
->output_data
.x
;
4729 int nl
= 0, nr
= 0, nt
= 0, nb
= 0;
4730 GtkWidget
*top_widget
= x
->toolbar_widget
;
4732 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget
), NULL
, &req
);
4733 if (x
->toolbar_in_hbox
)
4736 gtk_container_child_get (GTK_CONTAINER (x
->hbox_widget
),
4738 "position", &pos
, NULL
);
4739 if (pos
== 0) nl
= req
.width
;
4740 else nr
= req
.width
;
4745 gtk_container_child_get (GTK_CONTAINER (x
->vbox_widget
),
4747 "position", &pos
, NULL
);
4748 if (pos
== 0 || (pos
== 1 && x
->menubar_widget
)) nt
= req
.height
;
4749 else nb
= req
.height
;
4752 if (nl
!= FRAME_TOOLBAR_LEFT_WIDTH (f
)
4753 || nr
!= FRAME_TOOLBAR_RIGHT_WIDTH (f
)
4754 || nt
!= FRAME_TOOLBAR_TOP_HEIGHT (f
)
4755 || nb
!= FRAME_TOOLBAR_BOTTOM_HEIGHT (f
))
4757 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = FRAME_TOOLBAR_LEFT_WIDTH (f
)
4758 = FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
4759 FRAME_TOOLBAR_LEFT_WIDTH (f
) = nl
;
4760 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = nr
;
4761 FRAME_TOOLBAR_TOP_HEIGHT (f
) = nt
;
4762 FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = nb
;
4771 find_icon_from_name (char *name
,
4772 GtkIconTheme
*icon_theme
,
4775 #if ! GTK_CHECK_VERSION (3, 10, 0)
4776 GtkStockItem stock_item
;
4779 if (name
[0] == 'n' && name
[1] == ':')
4781 *icon_name
= name
+ 2;
4784 if (! gtk_icon_theme_has_icon (icon_theme
, *icon_name
))
4788 #if ! GTK_CHECK_VERSION (3, 10, 0)
4789 else if (gtk_stock_lookup (name
, &stock_item
))
4792 else if (gtk_icon_theme_has_icon (icon_theme
, name
))
4807 /* Update the tool bar for frame F. Add new buttons and remove old. */
4810 update_frame_tool_bar (struct frame
*f
)
4813 struct x_output
*x
= f
->output_data
.x
;
4814 int hmargin
= 0, vmargin
= 0;
4815 GtkToolbar
*wtoolbar
;
4817 GtkTextDirection dir
;
4819 bool text_image
, horiz
;
4820 struct xg_frame_tb_info
*tbinfo
;
4822 GtkIconTheme
*icon_theme
;
4825 if (! FRAME_GTK_WIDGET (f
))
4830 if (RANGED_INTEGERP (1, Vtool_bar_button_margin
, INT_MAX
))
4832 hmargin
= XFASTINT (Vtool_bar_button_margin
);
4833 vmargin
= XFASTINT (Vtool_bar_button_margin
);
4835 else if (CONSP (Vtool_bar_button_margin
))
4837 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin
), INT_MAX
))
4838 hmargin
= XFASTINT (XCAR (Vtool_bar_button_margin
));
4840 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin
), INT_MAX
))
4841 vmargin
= XFASTINT (XCDR (Vtool_bar_button_margin
));
4844 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4845 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4846 i.e. zero. This means that margins less than
4847 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4848 hmargin
= max (0, hmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4849 vmargin
= max (0, vmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4851 if (! x
->toolbar_widget
)
4852 xg_create_tool_bar (f
);
4854 wtoolbar
= GTK_TOOLBAR (x
->toolbar_widget
);
4855 dir
= gtk_widget_get_direction (GTK_WIDGET (wtoolbar
));
4857 style
= Ftool_bar_get_system_style ();
4858 screen
= gtk_widget_get_screen (GTK_WIDGET (wtoolbar
));
4859 icon_theme
= gtk_icon_theme_get_for_screen (screen
);
4861 /* Are we up to date? */
4862 tbinfo
= g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
4865 if (! NILP (tbinfo
->last_tool_bar
) && ! NILP (f
->tool_bar_items
)
4866 && tbinfo
->n_last_items
== f
->n_tool_bar_items
4867 && tbinfo
->hmargin
== hmargin
&& tbinfo
->vmargin
== vmargin
4868 && tbinfo
->dir
== dir
4869 && ! NILP (Fequal (tbinfo
->style
, style
))
4870 && ! NILP (Fequal (tbinfo
->last_tool_bar
, f
->tool_bar_items
)))
4876 tbinfo
->last_tool_bar
= f
->tool_bar_items
;
4877 tbinfo
->n_last_items
= f
->n_tool_bar_items
;
4878 tbinfo
->style
= style
;
4879 tbinfo
->hmargin
= hmargin
;
4880 tbinfo
->vmargin
= vmargin
;
4883 text_image
= EQ (style
, Qtext_image_horiz
);
4884 horiz
= EQ (style
, Qboth_horiz
) || text_image
;
4886 for (i
= j
= 0; i
< f
->n_tool_bar_items
; ++i
)
4888 bool enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
4889 bool selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
4893 struct image
*img
= NULL
;
4895 Lisp_Object stock
= Qnil
;
4896 char *stock_name
= NULL
;
4897 char *icon_name
= NULL
;
4899 GtkWidget
*wbutton
= NULL
;
4900 Lisp_Object specified_file
;
4901 bool vert_only
= ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY
));
4903 = (EQ (style
, Qimage
) || (vert_only
&& horiz
)) ? NULL
4904 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL
))
4905 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL
))
4908 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
4910 /* If this is a separator, use a gtk separator item. */
4911 if (EQ (PROP (TOOL_BAR_ITEM_TYPE
), Qt
))
4913 if (ti
== NULL
|| !GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4916 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4918 ti
= gtk_separator_tool_item_new ();
4919 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
4925 /* Otherwise, the tool-bar item is an ordinary button. */
4927 if (ti
&& GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4929 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
4933 if (ti
) wbutton
= XG_BIN_CHILD (XG_BIN_CHILD (ti
));
4935 /* Ignore invalid image specifications. */
4936 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4937 if (!valid_image_p (image
))
4940 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4945 specified_file
= file_for_image (image
);
4946 if (!NILP (specified_file
) && !NILP (Ffboundp (Qx_gtk_map_stock
)))
4947 stock
= call1 (Qx_gtk_map_stock
, specified_file
);
4952 for (tem
= stock
; CONSP (tem
); tem
= XCDR (tem
))
4953 if (! NILP (tem
) && STRINGP (XCAR (tem
)))
4955 stock_name
= find_icon_from_name (SSDATA (XCAR (tem
)),
4958 if (stock_name
|| icon_name
) break;
4961 else if (STRINGP (stock
))
4963 stock_name
= find_icon_from_name (SSDATA (stock
),
4968 if (stock_name
|| icon_name
)
4969 icon_size
= gtk_toolbar_get_icon_size (wtoolbar
);
4971 if (stock_name
== NULL
&& icon_name
== NULL
)
4973 /* No stock image, or stock item not known. Try regular
4974 image. If image is a vector, choose it according to the
4976 if (dir
== GTK_TEXT_DIR_RTL
4977 && !NILP (rtl
= PROP (TOOL_BAR_ITEM_RTL_IMAGE
))
4979 image
= find_rtl_image (f
, image
, rtl
);
4981 if (VECTORP (image
))
4985 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4986 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
4989 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4990 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
4992 eassert (ASIZE (image
) >= idx
);
4993 image
= AREF (image
, idx
);
4998 img_id
= lookup_image (f
, image
);
4999 img
= IMAGE_FROM_ID (f
, img_id
);
5000 prepare_image_for_display (f
, img
);
5002 if (img
->load_failed_p
|| img
->pixmap
== None
)
5005 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5011 /* If there is an existing widget, check if it's stale; if so,
5012 remove it and make a new tool item from scratch. */
5013 if (ti
&& xg_tool_item_stale_p (wbutton
, stock_name
, icon_name
,
5016 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
5025 /* Save the image so we can see if an update is needed the
5026 next time we call xg_tool_item_match_p. */
5027 if (EQ (style
, Qtext
))
5029 else if (stock_name
)
5032 #if GTK_CHECK_VERSION (3, 10, 0)
5033 w
= gtk_image_new_from_icon_name (stock_name
, icon_size
);
5035 w
= gtk_image_new_from_stock (stock_name
, icon_size
);
5037 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_STOCK_NAME
,
5038 (gpointer
) xstrdup (stock_name
),
5039 (GDestroyNotify
) xfree
);
5043 w
= gtk_image_new_from_icon_name (icon_name
, icon_size
);
5044 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_ICON_NAME
,
5045 (gpointer
) xstrdup (icon_name
),
5046 (GDestroyNotify
) xfree
);
5050 w
= xg_get_image_for_pixmap (f
, img
, x
->widget
, NULL
);
5051 g_object_set_data (G_OBJECT (w
), XG_TOOL_BAR_IMAGE_DATA
,
5052 (gpointer
)img
->pixmap
);
5055 #if GTK_CHECK_VERSION (3, 14, 0)
5058 gtk_widget_set_margin_start (w
, hmargin
);
5059 gtk_widget_set_margin_end (w
, hmargin
);
5060 gtk_widget_set_margin_top (w
, vmargin
);
5061 gtk_widget_set_margin_bottom (w
, vmargin
);
5064 if (w
) gtk_misc_set_padding (GTK_MISC (w
), hmargin
, vmargin
);
5066 ti
= xg_make_tool_item (f
, w
, &wbutton
, label
, i
, horiz
, text_image
);
5067 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
5072 gtk_widget_set_sensitive (wbutton
, enabled_p
);
5076 /* Remove buttons not longer needed. */
5079 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
5081 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
5082 } while (ti
!= NULL
);
5084 if (f
->n_tool_bar_items
!= 0)
5086 if (! x
->toolbar_is_packed
)
5087 xg_pack_tool_bar (f
, FRAME_TOOL_BAR_POSITION (f
));
5088 gtk_widget_show_all (x
->toolbar_widget
);
5089 if (xg_update_tool_bar_sizes (f
))
5092 = ((f
->after_make_frame
5093 && !f
->tool_bar_resized
5094 && (EQ (frame_inhibit_implied_resize
, Qt
)
5095 || (CONSP (frame_inhibit_implied_resize
)
5096 && !NILP (Fmemq (Qtool_bar_lines
,
5097 frame_inhibit_implied_resize
))))
5098 /* This will probably fail to DTRT in the
5099 fullheight/-width cases. */
5100 && NILP (get_frame_param (f
, Qfullscreen
)))
5104 frame_size_history_add (f
, Qupdate_frame_tool_bar
, 0, 0, Qnil
);
5105 adjust_frame_size (f
, -1, -1, inhibit
, 0, Qtool_bar_lines
);
5107 f
->tool_bar_resized
= f
->tool_bar_redisplayed
;
5113 /* Deallocate all resources for the tool bar on frame F.
5114 Remove the tool bar. */
5117 free_frame_tool_bar (struct frame
*f
)
5119 struct x_output
*x
= f
->output_data
.x
;
5121 if (x
->toolbar_widget
)
5123 struct xg_frame_tb_info
*tbinfo
;
5124 GtkWidget
*top_widget
= x
->toolbar_widget
;
5127 if (x
->toolbar_is_packed
)
5129 if (x
->toolbar_in_hbox
)
5130 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
5133 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
5137 gtk_widget_destroy (x
->toolbar_widget
);
5139 x
->toolbar_widget
= 0;
5140 x
->toolbar_widget
= 0;
5141 x
->toolbar_is_packed
= false;
5142 FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
5143 FRAME_TOOLBAR_LEFT_WIDTH (f
) = FRAME_TOOLBAR_RIGHT_WIDTH (f
) = 0;
5145 tbinfo
= g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
5150 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f
)),
5155 frame_size_history_add (f
, Qfree_frame_tool_bar
, 0, 0, Qnil
);
5156 adjust_frame_size (f
, -1, -1, 2, 0, Qtool_bar_lines
);
5163 xg_change_toolbar_position (struct frame
*f
, Lisp_Object pos
)
5165 struct x_output
*x
= f
->output_data
.x
;
5166 GtkWidget
*top_widget
= x
->toolbar_widget
;
5168 if (! x
->toolbar_widget
|| ! top_widget
)
5172 g_object_ref (top_widget
);
5173 if (x
->toolbar_is_packed
)
5175 if (x
->toolbar_in_hbox
)
5176 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
5179 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
5183 xg_pack_tool_bar (f
, pos
);
5184 g_object_unref (top_widget
);
5186 if (xg_update_tool_bar_sizes (f
))
5188 frame_size_history_add (f
, Qxg_change_toolbar_position
, 0, 0, Qnil
);
5189 adjust_frame_size (f
, -1, -1, 2, 0, Qtool_bar_lines
);
5198 /***********************************************************************
5200 ***********************************************************************/
5202 xg_initialize (void)
5204 GtkBindingSet
*binding_set
;
5205 GtkSettings
*settings
;
5208 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5209 we keep it permanently linked in. */
5214 xg_ignore_gtk_scrollbar
= 0;
5215 xg_menu_cb_list
.prev
= xg_menu_cb_list
.next
=
5216 xg_menu_item_cb_list
.prev
= xg_menu_item_cb_list
.next
= 0;
5218 id_to_widget
.max_size
= id_to_widget
.used
= 0;
5219 id_to_widget
.widgets
= 0;
5221 settings
= gtk_settings_get_for_screen (gdk_display_get_default_screen
5222 (gdk_display_get_default ()));
5223 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5224 bindings. It doesn't seem to be any way to remove properties,
5225 so we set it to "" which in means "no key". */
5226 gtk_settings_set_string_property (settings
,
5227 "gtk-menu-bar-accel",
5231 /* Make GTK text input widgets use Emacs style keybindings. This is
5233 gtk_settings_set_string_property (settings
,
5234 "gtk-key-theme-name",
5238 /* Make dialogs close on C-g. Since file dialog inherits from
5239 dialog, this works for them also. */
5240 binding_set
= gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG
));
5241 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
5244 /* Make menus close on C-g. */
5245 binding_set
= gtk_binding_set_by_class (g_type_class_ref
5246 (GTK_TYPE_MENU_SHELL
));
5247 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
5249 update_theme_scrollbar_width ();
5250 update_theme_scrollbar_height ();
5252 #ifdef HAVE_FREETYPE
5253 x_last_font_name
= NULL
;
5257 #endif /* USE_GTK */