1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2012 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29 #include "blockinput.h"
30 #include "syssignal.h"
33 #include "termhooks.h"
37 #include <gdk/gdkkeysyms.h>
38 #include "xsettings.h"
41 #include <X11/Xft/Xft.h>
46 #include "emacsgtkfixed.h"
49 #define FRAME_TOTAL_PIXEL_HEIGHT(f) \
50 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
52 #define FRAME_TOTAL_PIXEL_WIDTH(f) \
53 (FRAME_PIXEL_WIDTH (f) + FRAME_TOOLBAR_WIDTH (f))
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_MAJOR_VERSION > 2 || GTK_MINOR_VERSION > 11
73 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
75 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
79 #ifdef USE_GTK_TOOLTIP
80 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
82 #define gdk_window_get_geometry(w, a, b, c, d) \
83 gdk_window_get_geometry (w, a, b, c, d, 0)
84 #define gdk_x11_window_lookup_for_display(d, w) \
85 gdk_xid_table_lookup_for_display (d, w)
87 #define GDK_KEY_g GDK_g
91 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
93 static void update_theme_scrollbar_width (void);
96 /***********************************************************************
97 Display handling functions
98 ***********************************************************************/
100 /* Keep track of the default display, or NULL if there is none. Emacs
101 may close all its displays. */
103 static GdkDisplay
*gdpy_def
;
105 /* When the GTK widget W is to be created on a display for F that
106 is not the default display, set the display for W.
107 W can be a GtkMenu or a GtkWindow widget. */
110 xg_set_screen (GtkWidget
*w
, FRAME_PTR f
)
112 if (FRAME_X_DISPLAY (f
) != DEFAULT_GDK_DISPLAY ())
114 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
115 GdkScreen
*gscreen
= gdk_display_get_default_screen (gdpy
);
118 gtk_menu_set_screen (GTK_MENU (w
), gscreen
);
120 gtk_window_set_screen (GTK_WINDOW (w
), gscreen
);
125 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
126 *DPY is set to NULL if the display can't be opened.
128 Returns non-zero if display could be opened, zero if display could not
129 be opened, and less than zero if the GTK version doesn't support
130 multiple displays. */
133 xg_display_open (char *display_name
, Display
**dpy
)
137 gdpy
= gdk_display_open (display_name
);
138 if (!gdpy_def
&& gdpy
)
141 gdk_display_manager_set_default_display (gdk_display_manager_get (),
145 *dpy
= gdpy
? GDK_DISPLAY_XDISPLAY (gdpy
) : NULL
;
149 /* Close display DPY. */
152 xg_display_close (Display
*dpy
)
154 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (dpy
);
156 /* If this is the default display, try to change it before closing.
157 If there is no other display to use, gdpy_def is set to NULL, and
158 the next call to xg_display_open resets the default display. */
159 if (gdk_display_get_default () == gdpy
)
161 struct x_display_info
*dpyinfo
;
162 GdkDisplay
*gdpy_new
= NULL
;
164 /* Find another display. */
165 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
166 if (dpyinfo
->display
!= dpy
)
168 gdpy_new
= gdk_x11_lookup_xdisplay (dpyinfo
->display
);
169 gdk_display_manager_set_default_display (gdk_display_manager_get (),
176 #if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION < 10
177 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
178 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
179 can continue running, but there will be memory leaks. */
180 g_object_run_dispose (G_OBJECT (gdpy
));
182 /* This seems to be fixed in GTK 2.10. */
183 gdk_display_close (gdpy
);
188 /***********************************************************************
190 ***********************************************************************/
191 /* The next two variables and functions are taken from lwlib. */
192 static widget_value
*widget_value_free_list
;
193 static int malloc_cpt
;
195 /* Allocate a widget_value structure, either by taking one from the
196 widget_value_free_list or by malloc:ing a new one.
198 Return a pointer to the allocated structure. */
201 malloc_widget_value (void)
204 if (widget_value_free_list
)
206 wv
= widget_value_free_list
;
207 widget_value_free_list
= wv
->free_list
;
212 wv
= (widget_value
*) xmalloc (sizeof (widget_value
));
215 memset (wv
, 0, sizeof (widget_value
));
219 /* This is analogous to free. It frees only what was allocated
220 by malloc_widget_value, and no substructures. */
223 free_widget_value (widget_value
*wv
)
230 /* When the number of already allocated cells is too big,
237 wv
->free_list
= widget_value_free_list
;
238 widget_value_free_list
= wv
;
243 /* Create and return the cursor to be used for popup menus and
244 scroll bars on display DPY. */
247 xg_create_default_cursor (Display
*dpy
)
249 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (dpy
);
250 return gdk_cursor_new_for_display (gdpy
, GDK_LEFT_PTR
);
254 xg_get_pixbuf_from_pixmap (FRAME_PTR f
, Pixmap pix
)
259 unsigned int width
, height
, uunused
;
262 XGetGeometry (FRAME_X_DISPLAY (f
), pix
, &wunused
, &iunused
, &iunused
,
263 &width
, &height
, &uunused
, &uunused
);
265 xim
= XGetImage (FRAME_X_DISPLAY (f
), pix
, 0, 0, width
, height
,
269 tmp_buf
= gdk_pixbuf_new_from_data ((guchar
*) xim
->data
,
282 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
285 xg_get_pixbuf_from_pix_and_mask (FRAME_PTR f
,
290 GdkPixbuf
*icon_buf
, *tmp_buf
;
292 tmp_buf
= xg_get_pixbuf_from_pixmap (f
, pix
);
293 icon_buf
= gdk_pixbuf_add_alpha (tmp_buf
, FALSE
, 0, 0, 0);
294 g_object_unref (G_OBJECT (tmp_buf
));
296 width
= gdk_pixbuf_get_width (icon_buf
);
297 height
= gdk_pixbuf_get_height (icon_buf
);
301 GdkPixbuf
*mask_buf
= xg_get_pixbuf_from_pixmap (f
, mask
);
302 guchar
*pixels
= gdk_pixbuf_get_pixels (icon_buf
);
303 guchar
*mask_pixels
= gdk_pixbuf_get_pixels (mask_buf
);
304 int rowstride
= gdk_pixbuf_get_rowstride (icon_buf
);
305 int mask_rowstride
= gdk_pixbuf_get_rowstride (mask_buf
);
308 for (y
= 0; y
< height
; ++y
)
310 guchar
*iconptr
, *maskptr
;
313 iconptr
= pixels
+ y
* rowstride
;
314 maskptr
= mask_pixels
+ y
* mask_rowstride
;
316 for (x
= 0; x
< width
; ++x
)
318 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
319 just R is sufficient. */
321 iconptr
[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
323 iconptr
+= rowstride
/width
;
324 maskptr
+= mask_rowstride
/width
;
328 g_object_unref (G_OBJECT (mask_buf
));
335 file_for_image (Lisp_Object image
)
337 Lisp_Object specified_file
= Qnil
;
340 for (tail
= XCDR (image
);
341 NILP (specified_file
) && CONSP (tail
) && CONSP (XCDR (tail
));
342 tail
= XCDR (XCDR (tail
)))
343 if (EQ (XCAR (tail
), QCfile
))
344 specified_file
= XCAR (XCDR (tail
));
346 return specified_file
;
349 /* For the image defined in IMG, make and return a GtkImage. For displays with
350 8 planes or less we must make a GdkPixbuf and apply the mask manually.
351 Otherwise the highlighting and dimming the tool bar code in GTK does
352 will look bad. For display with more than 8 planes we just use the
353 pixmap and mask directly. For monochrome displays, GTK doesn't seem
354 able to use external pixmaps, it looks bad whatever we do.
355 The image is defined on the display where frame F is.
356 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
357 If OLD_WIDGET is NULL, a new widget is constructed and returned.
358 If OLD_WIDGET is not NULL, that widget is modified. */
361 xg_get_image_for_pixmap (FRAME_PTR f
,
364 GtkImage
*old_widget
)
368 /* If we have a file, let GTK do all the image handling.
369 This seems to be the only way to make insensitive and activated icons
370 look good in all cases. */
371 Lisp_Object specified_file
= file_for_image (img
->spec
);
374 /* We already loaded the image once before calling this
375 function, so this only fails if the image file has been removed.
376 In that case, use the pixmap already loaded. */
378 if (STRINGP (specified_file
)
379 && STRINGP (file
= x_find_image_file (specified_file
)))
382 old_widget
= GTK_IMAGE (gtk_image_new_from_file (SSDATA (file
)));
384 gtk_image_set_from_file (old_widget
, SSDATA (file
));
386 return GTK_WIDGET (old_widget
);
389 /* No file, do the image handling ourselves. This will look very bad
390 on a monochrome display, and sometimes bad on all displays with
393 /* This is a workaround to make icons look good on pseudo color
394 displays. Apparently GTK expects the images to have an alpha
395 channel. If they don't, insensitive and activated icons will
396 look bad. This workaround does not work on monochrome displays,
397 and is strictly not needed on true color/static color displays (i.e.
398 16 bits and higher). But we do it anyway so we get a pixbuf that is
399 not associated with the img->pixmap. The img->pixmap may be removed
400 by clearing the image cache and then the tool bar redraw fails, since
401 Gtk+ assumes the pixmap is always there. */
402 icon_buf
= xg_get_pixbuf_from_pix_and_mask (f
, img
->pixmap
, img
->mask
);
407 old_widget
= GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf
));
409 gtk_image_set_from_pixbuf (old_widget
, icon_buf
);
411 g_object_unref (G_OBJECT (icon_buf
));
414 return GTK_WIDGET (old_widget
);
418 /* Set CURSOR on W and all widgets W contain. We must do like this
419 for scroll bars and menu because they create widgets internally,
420 and it is those widgets that are visible. */
423 xg_set_cursor (GtkWidget
*w
, GdkCursor
*cursor
)
425 GdkWindow
*window
= gtk_widget_get_window (w
);
426 GList
*children
= gdk_window_peek_children (window
);
428 gdk_window_set_cursor (window
, cursor
);
430 /* The scroll bar widget has more than one GDK window (had to look at
431 the source to figure this out), and there is no way to set cursor
432 on widgets in GTK. So we must set the cursor for all GDK windows.
435 for ( ; children
; children
= g_list_next (children
))
436 gdk_window_set_cursor (GDK_WINDOW (children
->data
), cursor
);
439 /* Insert NODE into linked LIST. */
442 xg_list_insert (xg_list_node
*list
, xg_list_node
*node
)
444 xg_list_node
*list_start
= list
->next
;
446 if (list_start
) list_start
->prev
= node
;
447 node
->next
= list_start
;
452 /* Remove NODE from linked LIST. */
455 xg_list_remove (xg_list_node
*list
, xg_list_node
*node
)
457 xg_list_node
*list_start
= list
->next
;
458 if (node
== list_start
)
460 list
->next
= node
->next
;
461 if (list
->next
) list
->next
->prev
= 0;
465 node
->prev
->next
= node
->next
;
466 if (node
->next
) node
->next
->prev
= node
->prev
;
470 /* Allocate and return a utf8 version of STR. If STR is already
471 utf8 or NULL, just return a copy of STR.
472 A new string is allocated and the caller must free the result
476 get_utf8_string (const char *str
)
480 if (!str
) return NULL
;
482 /* If not UTF-8, try current locale. */
483 if (!g_utf8_validate (str
, -1, NULL
))
484 utf8_str
= g_locale_to_utf8 (str
, -1, 0, 0, 0);
486 return g_strdup (str
);
490 /* Probably some control characters in str. Escape them. */
492 ptrdiff_t nr_bad
= 0;
495 unsigned char *p
= (unsigned char *)str
;
499 while (! (cp
= g_locale_to_utf8 ((char *)p
, -1, &bytes_read
,
500 &bytes_written
, &err
))
501 && err
->code
== G_CONVERT_ERROR_ILLEGAL_SEQUENCE
)
504 p
+= bytes_written
+1;
517 if ((min (PTRDIFF_MAX
, SIZE_MAX
) - len
- 1) / 4 < nr_bad
)
518 memory_full (SIZE_MAX
);
519 up
= utf8_str
= xmalloc (len
+ nr_bad
* 4 + 1);
520 p
= (unsigned char *)str
;
522 while (! (cp
= g_locale_to_utf8 ((char *)p
, -1, &bytes_read
,
523 &bytes_written
, &err
))
524 && err
->code
== G_CONVERT_ERROR_ILLEGAL_SEQUENCE
)
526 strncpy (up
, (char *)p
, bytes_written
);
527 sprintf (up
+ bytes_written
, "\\%03o", p
[bytes_written
]);
528 up
[bytes_written
+4] = '\0';
529 up
+= bytes_written
+4;
530 p
+= bytes_written
+1;
537 strcat (utf8_str
, cp
);
549 /* Check for special colors used in face spec for region face.
550 The colors are fetched from the Gtk+ theme.
551 Return 1 if color was found, 0 if not. */
554 xg_check_special_colors (struct frame
*f
,
555 const char *color_name
,
559 int get_bg
= strcmp ("gtk_selection_bg_color", color_name
) == 0;
560 int get_fg
= !get_bg
&& strcmp ("gtk_selection_fg_color", color_name
) == 0;
562 if (! FRAME_GTK_WIDGET (f
) || ! (get_bg
|| get_fg
))
568 GtkStyleContext
*gsty
569 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f
));
571 char buf
[sizeof "rgbi://" + 3 * (DBL_MAX_10_EXP
+ sizeof "-1.000000" - 1)];
572 int state
= GTK_STATE_FLAG_SELECTED
|GTK_STATE_FLAG_FOCUSED
;
574 gtk_style_context_get_color (gsty
, state
, &col
);
576 gtk_style_context_get_background_color (gsty
, state
, &col
);
578 sprintf (buf
, "rgbi:%lf/%lf/%lf", col
.red
, col
.green
, col
.blue
);
579 success_p
= XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
582 GtkStyle
*gsty
= gtk_widget_get_style (FRAME_GTK_WIDGET (f
));
583 GdkColor
*grgb
= get_bg
584 ? &gsty
->bg
[GTK_STATE_SELECTED
]
585 : &gsty
->fg
[GTK_STATE_SELECTED
];
587 color
->red
= grgb
->red
;
588 color
->green
= grgb
->green
;
589 color
->blue
= grgb
->blue
;
590 color
->pixel
= grgb
->pixel
;
601 /***********************************************************************
603 ***********************************************************************/
604 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
605 We use that to pop down the tooltip. This happens if Gtk+ for some
606 reason wants to change or hide the tooltip. */
608 #ifdef USE_GTK_TOOLTIP
611 hierarchy_ch_cb (GtkWidget
*widget
,
612 GtkWidget
*previous_toplevel
,
615 FRAME_PTR f
= (FRAME_PTR
) user_data
;
616 struct x_output
*x
= f
->output_data
.x
;
617 GtkWidget
*top
= gtk_widget_get_toplevel (x
->ttip_lbl
);
619 if (! top
|| ! GTK_IS_WINDOW (top
))
620 gtk_widget_hide (previous_toplevel
);
623 /* Callback called when Gtk+ thinks a tooltip should be displayed.
624 We use it to get the tooltip window and the tooltip widget so
625 we can manipulate the ourselves.
627 Return FALSE ensures that the tooltip is not shown. */
630 qttip_cb (GtkWidget
*widget
,
633 gboolean keyboard_mode
,
637 FRAME_PTR f
= (FRAME_PTR
) user_data
;
638 struct x_output
*x
= f
->output_data
.x
;
639 if (x
->ttip_widget
== NULL
)
644 g_object_set (G_OBJECT (widget
), "has-tooltip", FALSE
, NULL
);
645 x
->ttip_widget
= tooltip
;
646 g_object_ref (G_OBJECT (tooltip
));
647 x
->ttip_lbl
= gtk_label_new ("");
648 g_object_ref (G_OBJECT (x
->ttip_lbl
));
649 gtk_tooltip_set_custom (tooltip
, x
->ttip_lbl
);
650 x
->ttip_window
= GTK_WINDOW (gtk_widget_get_toplevel (x
->ttip_lbl
));
652 /* Change stupid Gtk+ default line wrapping. */
653 p
= gtk_widget_get_parent (x
->ttip_lbl
);
654 list
= gtk_container_get_children (GTK_CONTAINER (p
));
655 for (iter
= list
; iter
; iter
= g_list_next (iter
))
657 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
658 if (GTK_IS_LABEL (w
))
659 gtk_label_set_line_wrap (GTK_LABEL (w
), FALSE
);
663 /* ATK needs an empty title for some reason. */
664 gtk_window_set_title (x
->ttip_window
, "");
665 /* Realize so we can safely get screen later on. */
666 gtk_widget_realize (GTK_WIDGET (x
->ttip_window
));
667 gtk_widget_realize (x
->ttip_lbl
);
669 g_signal_connect (x
->ttip_lbl
, "hierarchy-changed",
670 G_CALLBACK (hierarchy_ch_cb
), f
);
675 #endif /* USE_GTK_TOOLTIP */
677 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
678 Return zero if no system tooltip available, non-zero otherwise. */
681 xg_prepare_tooltip (FRAME_PTR f
,
686 #ifndef USE_GTK_TOOLTIP
689 struct x_output
*x
= f
->output_data
.x
;
693 GtkSettings
*settings
;
694 gboolean tt_enabled
= TRUE
;
696 Lisp_Object encoded_string
;
698 if (!x
->ttip_lbl
) return 0;
701 encoded_string
= ENCODE_UTF_8 (string
);
702 widget
= GTK_WIDGET (x
->ttip_lbl
);
703 gwin
= gtk_widget_get_window (GTK_WIDGET (x
->ttip_window
));
704 screen
= gdk_window_get_screen (gwin
);
705 settings
= gtk_settings_get_for_screen (screen
);
706 g_object_get (settings
, "gtk-enable-tooltips", &tt_enabled
, NULL
);
709 g_object_set (settings
, "gtk-enable-tooltips", FALSE
, NULL
);
710 /* Record that we disabled it so it can be enabled again. */
711 g_object_set_data (G_OBJECT (x
->ttip_window
), "restore-tt",
715 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
716 g_object_set_data (G_OBJECT
717 (gtk_widget_get_display (GTK_WIDGET (x
->ttip_window
))),
718 "gdk-display-current-tooltip", NULL
);
720 /* Put our dummy widget in so we can get callbacks for unrealize and
721 hierarchy-changed. */
722 gtk_tooltip_set_custom (x
->ttip_widget
, widget
);
723 gtk_tooltip_set_text (x
->ttip_widget
, SSDATA (encoded_string
));
724 gtk_widget_get_preferred_size (GTK_WIDGET (x
->ttip_window
), NULL
, &req
);
725 if (width
) *width
= req
.width
;
726 if (height
) *height
= req
.height
;
731 #endif /* USE_GTK_TOOLTIP */
734 /* Show the tooltip at ROOT_X and ROOT_Y.
735 xg_prepare_tooltip must have been called before this function. */
738 xg_show_tooltip (FRAME_PTR f
, int root_x
, int root_y
)
740 #ifdef USE_GTK_TOOLTIP
741 struct x_output
*x
= f
->output_data
.x
;
745 gtk_window_move (x
->ttip_window
, root_x
, root_y
);
746 gtk_widget_show_all (GTK_WIDGET (x
->ttip_window
));
752 /* Hide tooltip if shown. Do nothing if not shown.
753 Return non-zero if tip was hidden, non-zero if not (i.e. not using
757 xg_hide_tooltip (FRAME_PTR f
)
760 #ifdef USE_GTK_TOOLTIP
761 if (f
->output_data
.x
->ttip_window
)
763 GtkWindow
*win
= f
->output_data
.x
->ttip_window
;
765 gtk_widget_hide (GTK_WIDGET (win
));
767 if (g_object_get_data (G_OBJECT (win
), "restore-tt"))
769 GdkWindow
*gwin
= gtk_widget_get_window (GTK_WIDGET (win
));
770 GdkScreen
*screen
= gdk_window_get_screen (gwin
);
771 GtkSettings
*settings
= gtk_settings_get_for_screen (screen
);
772 g_object_set (settings
, "gtk-enable-tooltips", TRUE
, NULL
);
783 /***********************************************************************
784 General functions for creating widgets, resizing, events, e.t.c.
785 ***********************************************************************/
787 /* Make a geometry string and pass that to GTK. It seems this is the
788 only way to get geometry position right if the user explicitly
789 asked for a position when starting Emacs.
790 F is the frame we shall set geometry for. */
793 xg_set_geometry (FRAME_PTR f
)
795 if (f
->size_hint_flags
& (USPosition
| PPosition
))
797 int left
= f
->left_pos
;
798 int xneg
= f
->size_hint_flags
& XNegative
;
799 int top
= f
->top_pos
;
800 int yneg
= f
->size_hint_flags
& YNegative
;
801 char geom_str
[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
808 sprintf (geom_str
, "=%dx%d%c%d%c%d",
809 FRAME_PIXEL_WIDTH (f
),
810 FRAME_PIXEL_HEIGHT (f
),
811 (xneg
? '-' : '+'), left
,
812 (yneg
? '-' : '+'), top
);
814 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
816 fprintf (stderr
, "Failed to parse: '%s'\n", geom_str
);
820 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
821 and use a GtkFixed widget, this doesn't happen automatically. */
824 xg_clear_under_internal_border (FRAME_PTR f
)
826 if (FRAME_INTERNAL_BORDER_WIDTH (f
) > 0)
828 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
829 gtk_widget_queue_draw (wfixed
);
830 gdk_window_process_all_updates ();
831 x_clear_area (FRAME_X_DISPLAY (f
),
834 FRAME_PIXEL_WIDTH (f
),
835 FRAME_INTERNAL_BORDER_WIDTH (f
), 0);
836 x_clear_area (FRAME_X_DISPLAY (f
),
839 FRAME_INTERNAL_BORDER_WIDTH (f
),
840 FRAME_PIXEL_HEIGHT (f
), 0);
841 x_clear_area (FRAME_X_DISPLAY (f
),
843 0, FRAME_PIXEL_HEIGHT (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
),
844 FRAME_PIXEL_WIDTH (f
),
845 FRAME_INTERNAL_BORDER_WIDTH (f
), 0);
846 x_clear_area (FRAME_X_DISPLAY (f
),
848 FRAME_PIXEL_WIDTH (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
),
850 FRAME_INTERNAL_BORDER_WIDTH (f
),
851 FRAME_PIXEL_HEIGHT (f
), 0);
855 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
856 and a Gtk+ menu bar, we get resize events for the edit part of the
857 frame only. We let Gtk+ deal with the Gtk+ parts.
858 F is the frame to resize.
859 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
862 xg_frame_resized (FRAME_PTR f
, int pixelwidth
, int pixelheight
)
866 if (pixelwidth
== -1 && pixelheight
== -1)
868 if (FRAME_GTK_WIDGET (f
) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f
)))
869 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f
)),
871 &pixelwidth
, &pixelheight
);
876 rows
= FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f
, pixelheight
);
877 columns
= FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f
, pixelwidth
);
879 if (columns
!= FRAME_COLS (f
)
880 || rows
!= FRAME_LINES (f
)
881 || pixelwidth
!= FRAME_PIXEL_WIDTH (f
)
882 || pixelheight
!= FRAME_PIXEL_HEIGHT (f
))
884 FRAME_PIXEL_WIDTH (f
) = pixelwidth
;
885 FRAME_PIXEL_HEIGHT (f
) = pixelheight
;
887 xg_clear_under_internal_border (f
);
888 change_frame_size (f
, rows
, columns
, 0, 1, 0);
889 SET_FRAME_GARBAGED (f
);
890 cancel_mouse_face (f
);
894 /* Resize the outer window of frame F after changing the height.
895 COLUMNS/ROWS is the size the edit area shall have after the resize. */
898 xg_frame_set_char_size (FRAME_PTR f
, int cols
, int rows
)
900 int pixelheight
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, rows
)
901 + FRAME_MENUBAR_HEIGHT (f
) + FRAME_TOOLBAR_HEIGHT (f
);
904 if (FRAME_PIXEL_HEIGHT (f
) == 0)
907 /* Take into account the size of the scroll bar. Always use the
908 number of columns occupied by the scroll bar here otherwise we
909 might end up with a frame width that is not a multiple of the
910 frame's character width which is bad for vertically split
912 f
->scroll_bar_actual_width
913 = FRAME_SCROLL_BAR_COLS (f
) * FRAME_COLUMN_WIDTH (f
);
915 compute_fringe_widths (f
, 0);
917 /* FRAME_TEXT_COLS_TO_PIXEL_WIDTH uses scroll_bar_actual_width, so call it
918 after calculating that value. */
919 pixelwidth
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, cols
)
920 + FRAME_TOOLBAR_WIDTH (f
);
923 /* Do this before resize, as we don't know yet if we will be resized. */
924 xg_clear_under_internal_border (f
);
926 /* Must resize our top level widget. Font size may have changed,
927 but not rows/cols. */
928 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
929 pixelwidth
, pixelheight
);
930 x_wm_set_size_hint (f
, 0, 0);
932 SET_FRAME_GARBAGED (f
);
933 cancel_mouse_face (f
);
935 /* We can not call change_frame_size for a mapped frame,
936 we can not set pixel width/height either. The window manager may
937 override our resize request, XMonad does this all the time.
938 The best we can do is try to sync, so lisp code sees the updated
939 size as fast as possible.
940 For unmapped windows, we can set rows/cols. When
941 the frame is mapped again we will (hopefully) get the correct size. */
942 if (f
->async_visible
)
944 /* Must call this to flush out events */
945 (void)gtk_events_pending ();
947 x_wait_for_event (f
, ConfigureNotify
);
951 change_frame_size (f
, rows
, cols
, 0, 1, 0);
952 FRAME_PIXEL_WIDTH (f
) = pixelwidth
;
953 FRAME_PIXEL_HEIGHT (f
) = pixelheight
;
957 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
958 The policy is to keep the number of editable lines. */
961 xg_height_or_width_changed (FRAME_PTR f
)
963 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
964 FRAME_TOTAL_PIXEL_WIDTH (f
),
965 FRAME_TOTAL_PIXEL_HEIGHT (f
));
966 f
->output_data
.x
->hint_flags
= 0;
967 x_wm_set_size_hint (f
, 0, 0);
970 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
971 Must be done like this, because GtkWidget:s can have "hidden"
972 X Window that aren't accessible.
974 Return 0 if no widget match WDESC. */
977 xg_win_to_widget (Display
*dpy
, Window wdesc
)
980 GtkWidget
*gwdesc
= 0;
984 gdkwin
= gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy
),
989 event
.any
.window
= gdkwin
;
990 event
.any
.type
= GDK_NOTHING
;
991 gwdesc
= gtk_get_event_widget (&event
);
998 /* Set the background of widget W to PIXEL. */
1001 xg_set_widget_bg (FRAME_PTR f
, GtkWidget
*w
, long unsigned int pixel
)
1007 if (XQueryColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &xbg
))
1009 bg
.red
= (double)xbg
.red
/65536.0;
1010 bg
.green
= (double)xbg
.green
/65536.0;
1011 bg
.blue
= (double)xbg
.blue
/65536.0;
1013 gtk_widget_override_background_color (w
, GTK_STATE_FLAG_NORMAL
, &bg
);
1017 GdkColormap
*map
= gtk_widget_get_colormap (w
);
1018 gdk_colormap_query_color (map
, pixel
, &bg
);
1019 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f
), GTK_STATE_NORMAL
, &bg
);
1023 /* Callback called when the gtk theme changes.
1024 We notify lisp code so it can fix faces used for region for example. */
1027 style_changed_cb (GObject
*go
,
1031 struct input_event event
;
1032 GdkDisplay
*gdpy
= (GdkDisplay
*) user_data
;
1033 const char *display_name
= gdk_display_get_name (gdpy
);
1034 Display
*dpy
= GDK_DISPLAY_XDISPLAY (gdpy
);
1037 event
.kind
= CONFIG_CHANGED_EVENT
;
1038 event
.frame_or_window
= build_string (display_name
);
1039 /* Theme doesn't change often, so intern is called seldom. */
1040 event
.arg
= intern ("theme-name");
1041 kbd_buffer_store_event (&event
);
1043 update_theme_scrollbar_width ();
1045 /* If scroll bar width changed, we need set the new size on all frames
1049 Lisp_Object rest
, frame
;
1050 FOR_EACH_FRAME (rest
, frame
)
1052 FRAME_PTR f
= XFRAME (frame
);
1053 if (FRAME_X_DISPLAY (f
) == dpy
)
1055 x_set_scroll_bar_default_width (f
);
1056 xg_frame_set_char_size (f
, FRAME_COLS (f
), FRAME_LINES (f
));
1062 /* Called when a delete-event occurs on WIDGET. */
1065 delete_cb (GtkWidget
*widget
,
1070 /* The event doesn't arrive in the normal event loop. Send event
1072 FRAME_PTR f
= (FRAME_PTR
) user_data
;
1073 struct input_event ie
;
1076 ie
.kind
= DELETE_WINDOW_EVENT
;
1077 XSETFRAME (ie
.frame_or_window
, f
);
1078 kbd_buffer_store_event (&ie
);
1084 /* Create and set up the GTK widgets for frame F.
1085 Return 0 if creation failed, non-zero otherwise. */
1088 xg_create_frame_widgets (FRAME_PTR f
)
1091 GtkWidget
*wvbox
, *whbox
;
1098 if (FRAME_X_EMBEDDED_P (f
))
1099 wtop
= gtk_plug_new (f
->output_data
.x
->parent_desc
);
1101 wtop
= gtk_window_new (GTK_WINDOW_TOPLEVEL
);
1103 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1104 has backported it to Gtk+ 2.0 and they add the resize grip for
1105 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1106 forever, so disable the grip. */
1107 #if GTK_MAJOR_VERSION < 3 && defined (HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1108 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop
), FALSE
);
1111 xg_set_screen (wtop
, f
);
1113 wvbox
= gtk_vbox_new (FALSE
, 0);
1114 whbox
= gtk_hbox_new (FALSE
, 0);
1117 wfixed
= emacs_fixed_new (f
);
1119 wfixed
= gtk_fixed_new ();
1122 if (! wtop
|| ! wvbox
|| ! whbox
|| ! wfixed
)
1124 if (wtop
) gtk_widget_destroy (wtop
);
1125 if (wvbox
) gtk_widget_destroy (wvbox
);
1126 if (whbox
) gtk_widget_destroy (whbox
);
1127 if (wfixed
) gtk_widget_destroy (wfixed
);
1133 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1134 gtk_widget_set_name (wtop
, EMACS_CLASS
);
1135 gtk_widget_set_name (wvbox
, "pane");
1136 gtk_widget_set_name (wfixed
, SSDATA (Vx_resource_name
));
1138 /* If this frame has a title or name, set it in the title bar. */
1139 if (! NILP (f
->title
)) title
= SSDATA (ENCODE_UTF_8 (f
->title
));
1140 else if (! NILP (f
->name
)) title
= SSDATA (ENCODE_UTF_8 (f
->name
));
1142 if (title
) gtk_window_set_title (GTK_WINDOW (wtop
), title
);
1144 FRAME_GTK_OUTER_WIDGET (f
) = wtop
;
1145 FRAME_GTK_WIDGET (f
) = wfixed
;
1146 f
->output_data
.x
->vbox_widget
= wvbox
;
1147 f
->output_data
.x
->hbox_widget
= whbox
;
1149 gtk_widget_set_has_window (wfixed
, TRUE
);
1151 gtk_container_add (GTK_CONTAINER (wtop
), wvbox
);
1152 gtk_box_pack_start (GTK_BOX (wvbox
), whbox
, TRUE
, TRUE
, 0);
1153 gtk_box_pack_start (GTK_BOX (whbox
), wfixed
, TRUE
, TRUE
, 0);
1155 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1156 update_frame_tool_bar (f
);
1158 /* We don't want this widget double buffered, because we draw on it
1159 with regular X drawing primitives, so from a GTK/GDK point of
1160 view, the widget is totally blank. When an expose comes, this
1161 will make the widget blank, and then Emacs redraws it. This flickers
1162 a lot, so we turn off double buffering. */
1163 gtk_widget_set_double_buffered (wfixed
, FALSE
);
1165 gtk_window_set_wmclass (GTK_WINDOW (wtop
),
1166 SSDATA (Vx_resource_name
),
1167 SSDATA (Vx_resource_class
));
1169 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1170 GTK is to destroy the widget. We want Emacs to do that instead. */
1171 g_signal_connect (G_OBJECT (wtop
), "delete-event",
1172 G_CALLBACK (delete_cb
), f
);
1174 /* Convert our geometry parameters into a geometry string
1176 GTK will itself handle calculating the real position this way. */
1177 xg_set_geometry (f
);
1179 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1181 gtk_widget_add_events (wfixed
,
1182 GDK_POINTER_MOTION_MASK
1184 | GDK_BUTTON_PRESS_MASK
1185 | GDK_BUTTON_RELEASE_MASK
1186 | GDK_KEY_PRESS_MASK
1187 | GDK_ENTER_NOTIFY_MASK
1188 | GDK_LEAVE_NOTIFY_MASK
1189 | GDK_FOCUS_CHANGE_MASK
1190 | GDK_STRUCTURE_MASK
1191 | GDK_VISIBILITY_NOTIFY_MASK
);
1193 /* Must realize the windows so the X window gets created. It is used
1194 by callers of this function. */
1195 gtk_widget_realize (wfixed
);
1196 FRAME_X_WINDOW (f
) = GTK_WIDGET_TO_X_WIN (wfixed
);
1198 /* Since GTK clears its window by filling with the background color,
1199 we must keep X and GTK background in sync. */
1200 xg_set_widget_bg (f
, wfixed
, FRAME_BACKGROUND_PIXEL (f
));
1203 /* Also, do not let any background pixmap to be set, this looks very
1204 bad as Emacs overwrites the background pixmap with its own idea
1205 of background color. */
1206 style
= gtk_widget_get_modifier_style (wfixed
);
1208 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1209 style
->bg_pixmap_name
[GTK_STATE_NORMAL
] = g_strdup ("<none>");
1210 gtk_widget_modify_style (wfixed
, style
);
1212 gtk_widget_set_can_focus (wfixed
, TRUE
);
1213 gtk_window_set_resizable (GTK_WINDOW (wtop
), TRUE
);
1216 #ifdef USE_GTK_TOOLTIP
1217 /* Steal a tool tip window we can move ourselves. */
1218 f
->output_data
.x
->ttip_widget
= 0;
1219 f
->output_data
.x
->ttip_lbl
= 0;
1220 f
->output_data
.x
->ttip_window
= 0;
1221 gtk_widget_set_tooltip_text (wtop
, "Dummy text");
1222 g_signal_connect (wtop
, "query-tooltip", G_CALLBACK (qttip_cb
), f
);
1226 GdkScreen
*screen
= gtk_widget_get_screen (wtop
);
1227 GtkSettings
*gs
= gtk_settings_get_for_screen (screen
);
1228 /* Only connect this signal once per screen. */
1229 if (! g_signal_handler_find (G_OBJECT (gs
),
1230 G_SIGNAL_MATCH_FUNC
,
1232 G_CALLBACK (style_changed_cb
),
1235 g_signal_connect (G_OBJECT (gs
), "notify::gtk-theme-name",
1236 G_CALLBACK (style_changed_cb
),
1237 gdk_screen_get_display (screen
));
1247 xg_free_frame_widgets (FRAME_PTR f
)
1249 if (FRAME_GTK_OUTER_WIDGET (f
))
1251 #ifdef USE_GTK_TOOLTIP
1252 struct x_output
*x
= f
->output_data
.x
;
1254 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f
));
1255 FRAME_X_WINDOW (f
) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1256 FRAME_GTK_OUTER_WIDGET (f
) = 0;
1257 #ifdef USE_GTK_TOOLTIP
1259 gtk_widget_destroy (x
->ttip_lbl
);
1261 g_object_unref (G_OBJECT (x
->ttip_widget
));
1266 /* Set the normal size hints for the window manager, for frame F.
1267 FLAGS is the flags word to use--or 0 meaning preserve the flags
1268 that the window now has.
1269 If USER_POSITION is nonzero, we set the User Position
1270 flag (this is useful when FLAGS is 0). */
1273 x_wm_set_size_hint (FRAME_PTR f
, long int flags
, int user_position
)
1275 /* Must use GTK routines here, otherwise GTK resets the size hints
1276 to its own defaults. */
1277 GdkGeometry size_hints
;
1278 gint hint_flags
= 0;
1279 int base_width
, base_height
;
1280 int min_rows
= 0, min_cols
= 0;
1281 int win_gravity
= f
->win_gravity
;
1283 /* Don't set size hints during initialization; that apparently leads
1284 to a race condition. See the thread at
1285 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1286 if (NILP (Vafter_init_time
) || !FRAME_GTK_OUTER_WIDGET (f
))
1291 memset (&size_hints
, 0, sizeof (size_hints
));
1292 f
->output_data
.x
->size_hints
= size_hints
;
1293 f
->output_data
.x
->hint_flags
= hint_flags
;
1296 flags
= f
->size_hint_flags
;
1298 size_hints
= f
->output_data
.x
->size_hints
;
1299 hint_flags
= f
->output_data
.x
->hint_flags
;
1301 hint_flags
|= GDK_HINT_RESIZE_INC
| GDK_HINT_MIN_SIZE
;
1302 size_hints
.width_inc
= FRAME_COLUMN_WIDTH (f
);
1303 size_hints
.height_inc
= FRAME_LINE_HEIGHT (f
);
1305 hint_flags
|= GDK_HINT_BASE_SIZE
;
1306 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0) + FRAME_TOOLBAR_WIDTH (f
);
1307 /* Use one row here so base_height does not become zero.
1308 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it. */
1309 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 1)
1310 + FRAME_MENUBAR_HEIGHT (f
) + FRAME_TOOLBAR_HEIGHT (f
);
1312 check_frame_size (f
, &min_rows
, &min_cols
);
1313 if (min_rows
> 0) --min_rows
; /* We used one row in base_height = ... 1); */
1315 size_hints
.base_width
= base_width
;
1316 size_hints
.base_height
= base_height
;
1317 size_hints
.min_width
= base_width
+ min_cols
* size_hints
.width_inc
;
1318 size_hints
.min_height
= base_height
+ min_rows
* size_hints
.height_inc
;
1320 /* These currently have a one to one mapping with the X values, but I
1321 don't think we should rely on that. */
1322 hint_flags
|= GDK_HINT_WIN_GRAVITY
;
1323 size_hints
.win_gravity
= 0;
1324 if (win_gravity
== NorthWestGravity
)
1325 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_WEST
;
1326 else if (win_gravity
== NorthGravity
)
1327 size_hints
.win_gravity
= GDK_GRAVITY_NORTH
;
1328 else if (win_gravity
== NorthEastGravity
)
1329 size_hints
.win_gravity
= GDK_GRAVITY_NORTH_EAST
;
1330 else if (win_gravity
== WestGravity
)
1331 size_hints
.win_gravity
= GDK_GRAVITY_WEST
;
1332 else if (win_gravity
== CenterGravity
)
1333 size_hints
.win_gravity
= GDK_GRAVITY_CENTER
;
1334 else if (win_gravity
== EastGravity
)
1335 size_hints
.win_gravity
= GDK_GRAVITY_EAST
;
1336 else if (win_gravity
== SouthWestGravity
)
1337 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_WEST
;
1338 else if (win_gravity
== SouthGravity
)
1339 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH
;
1340 else if (win_gravity
== SouthEastGravity
)
1341 size_hints
.win_gravity
= GDK_GRAVITY_SOUTH_EAST
;
1342 else if (win_gravity
== StaticGravity
)
1343 size_hints
.win_gravity
= GDK_GRAVITY_STATIC
;
1347 hint_flags
&= ~GDK_HINT_POS
;
1348 hint_flags
|= GDK_HINT_USER_POS
;
1351 if (hint_flags
!= f
->output_data
.x
->hint_flags
1352 || memcmp (&size_hints
,
1353 &f
->output_data
.x
->size_hints
,
1354 sizeof (size_hints
)) != 0)
1357 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1358 NULL
, &size_hints
, hint_flags
);
1359 f
->output_data
.x
->size_hints
= size_hints
;
1360 f
->output_data
.x
->hint_flags
= hint_flags
;
1365 /* Change background color of a frame.
1366 Since GTK uses the background color to clear the window, we must
1367 keep the GTK and X colors in sync.
1368 F is the frame to change,
1369 BG is the pixel value to change to. */
1372 xg_set_background_color (FRAME_PTR f
, long unsigned int bg
)
1374 if (FRAME_GTK_WIDGET (f
))
1377 xg_set_widget_bg (f
, FRAME_GTK_WIDGET (f
), FRAME_BACKGROUND_PIXEL (f
));
1383 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1384 functions so GTK does not overwrite the icon. */
1387 xg_set_frame_icon (FRAME_PTR f
, Pixmap icon_pixmap
, Pixmap icon_mask
)
1389 GdkPixbuf
*gp
= xg_get_pixbuf_from_pix_and_mask (f
,
1393 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), gp
);
1398 /***********************************************************************
1400 ***********************************************************************/
1401 /* Return the dialog title to use for a dialog of type KEY.
1402 This is the encoding used by lwlib. We use the same for GTK. */
1405 get_dialog_title (char key
)
1407 const char *title
= "";
1415 title
= "Information";
1434 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1435 the dialog, but return TRUE so the event does not propagate further
1436 in GTK. This prevents GTK from destroying the dialog widget automatically
1437 and we can always destroy the widget manually, regardless of how
1438 it was popped down (button press or WM_DELETE_WINDOW).
1439 W is the dialog widget.
1440 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1441 user_data is NULL (not used).
1443 Returns TRUE to end propagation of event. */
1446 dialog_delete_callback (GtkWidget
*w
, GdkEvent
*event
, gpointer user_data
)
1448 gtk_widget_unmap (w
);
1452 /* Create a popup dialog window. See also xg_create_widget below.
1453 WV is a widget_value describing the dialog.
1454 SELECT_CB is the callback to use when a button has been pressed.
1455 DEACTIVATE_CB is the callback to use when the dialog pops down.
1457 Returns the GTK dialog widget. */
1460 create_dialog (widget_value
*wv
,
1461 GCallback select_cb
,
1462 GCallback deactivate_cb
)
1464 const char *title
= get_dialog_title (wv
->name
[0]);
1465 int total_buttons
= wv
->name
[1] - '0';
1466 int right_buttons
= wv
->name
[4] - '0';
1469 int button_spacing
= 10;
1470 GtkWidget
*wdialog
= gtk_dialog_new ();
1471 GtkDialog
*wd
= GTK_DIALOG (wdialog
);
1472 GtkBox
*cur_box
= GTK_BOX (gtk_dialog_get_action_area (wd
));
1474 GtkWidget
*whbox_down
;
1476 /* If the number of buttons is greater than 4, make two rows of buttons
1477 instead. This looks better. */
1478 int make_two_rows
= total_buttons
> 4;
1480 if (right_buttons
== 0) right_buttons
= total_buttons
/2;
1481 left_buttons
= total_buttons
- right_buttons
;
1483 gtk_window_set_title (GTK_WINDOW (wdialog
), title
);
1484 gtk_widget_set_name (wdialog
, "emacs-dialog");
1489 GtkWidget
*wvbox
= gtk_vbox_new (TRUE
, button_spacing
);
1490 GtkWidget
*whbox_up
= gtk_hbox_new (FALSE
, 0);
1491 whbox_down
= gtk_hbox_new (FALSE
, 0);
1493 gtk_box_pack_start (cur_box
, wvbox
, FALSE
, FALSE
, 0);
1494 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_up
, FALSE
, FALSE
, 0);
1495 gtk_box_pack_start (GTK_BOX (wvbox
), whbox_down
, FALSE
, FALSE
, 0);
1497 cur_box
= GTK_BOX (whbox_up
);
1500 g_signal_connect (G_OBJECT (wdialog
), "delete-event",
1501 G_CALLBACK (dialog_delete_callback
), 0);
1505 g_signal_connect (G_OBJECT (wdialog
), "close", deactivate_cb
, 0);
1506 g_signal_connect (G_OBJECT (wdialog
), "response", deactivate_cb
, 0);
1509 for (item
= wv
->contents
; item
; item
= item
->next
)
1511 char *utf8_label
= get_utf8_string (item
->value
);
1515 if (item
->name
&& strcmp (item
->name
, "message") == 0)
1517 GtkBox
*wvbox
= GTK_BOX (gtk_dialog_get_content_area (wd
));
1518 /* This is the text part of the dialog. */
1519 w
= gtk_label_new (utf8_label
);
1520 gtk_box_pack_start (wvbox
, gtk_label_new (""), FALSE
, FALSE
, 0);
1521 gtk_box_pack_start (wvbox
, w
, TRUE
, TRUE
, 0);
1522 gtk_misc_set_alignment (GTK_MISC (w
), 0.1, 0.5);
1524 /* Try to make dialog look better. Must realize first so
1525 the widget can calculate the size it needs. */
1526 gtk_widget_realize (w
);
1527 gtk_widget_get_preferred_size (w
, NULL
, &req
);
1528 gtk_box_set_spacing (wvbox
, req
.height
);
1529 if (item
->value
&& strlen (item
->value
) > 0)
1530 button_spacing
= 2*req
.width
/strlen (item
->value
);
1534 /* This is one button to add to the dialog. */
1535 w
= gtk_button_new_with_label (utf8_label
);
1536 if (! item
->enabled
)
1537 gtk_widget_set_sensitive (w
, FALSE
);
1539 g_signal_connect (G_OBJECT (w
), "clicked",
1540 select_cb
, item
->call_data
);
1542 gtk_box_pack_start (cur_box
, w
, TRUE
, TRUE
, button_spacing
);
1543 if (++button_nr
== left_buttons
)
1546 cur_box
= GTK_BOX (whbox_down
);
1548 gtk_box_pack_start (cur_box
,
1556 g_free (utf8_label
);
1562 struct xg_dialog_data
1570 /* Function that is called when the file or font dialogs pop down.
1571 W is the dialog widget, RESPONSE is the response code.
1572 USER_DATA is what we passed in to g_signal_connect. */
1575 xg_dialog_response_cb (GtkDialog
*w
,
1579 struct xg_dialog_data
*dd
= (struct xg_dialog_data
*)user_data
;
1580 dd
->response
= response
;
1581 g_main_loop_quit (dd
->loop
);
1585 /* Destroy the dialog. This makes it pop down. */
1588 pop_down_dialog (Lisp_Object arg
)
1590 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
1591 struct xg_dialog_data
*dd
= (struct xg_dialog_data
*) p
->pointer
;
1594 if (dd
->w
) gtk_widget_destroy (dd
->w
);
1595 if (dd
->timerid
!= 0) g_source_remove (dd
->timerid
);
1597 g_main_loop_quit (dd
->loop
);
1598 g_main_loop_unref (dd
->loop
);
1605 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1606 We pass in DATA as gpointer* so we can use this as a callback. */
1609 xg_maybe_add_timer (gpointer data
)
1611 struct xg_dialog_data
*dd
= (struct xg_dialog_data
*) data
;
1612 EMACS_TIME next_time
= timer_check ();
1613 long secs
= EMACS_SECS (next_time
);
1614 long usecs
= EMACS_USECS (next_time
);
1618 if (secs
>= 0 && usecs
>= 0 && secs
< ((guint
)-1)/1000)
1620 dd
->timerid
= g_timeout_add (secs
* 1000 + usecs
/1000,
1628 /* Pops up a modal dialog W and waits for response.
1629 We don't use gtk_dialog_run because we want to process emacs timers.
1630 The dialog W is not destroyed when this function returns. */
1633 xg_dialog_run (FRAME_PTR f
, GtkWidget
*w
)
1635 int count
= SPECPDL_INDEX ();
1636 struct xg_dialog_data dd
;
1638 xg_set_screen (w
, f
);
1639 gtk_window_set_transient_for (GTK_WINDOW (w
),
1640 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
1641 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
1642 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
1644 dd
.loop
= g_main_loop_new (NULL
, FALSE
);
1645 dd
.response
= GTK_RESPONSE_CANCEL
;
1649 g_signal_connect (G_OBJECT (w
),
1651 G_CALLBACK (xg_dialog_response_cb
),
1653 /* Don't destroy the widget if closed by the window manager close button. */
1654 g_signal_connect (G_OBJECT (w
), "delete-event", G_CALLBACK (gtk_true
), NULL
);
1655 gtk_widget_show (w
);
1657 record_unwind_protect (pop_down_dialog
, make_save_value (&dd
, 0));
1659 (void) xg_maybe_add_timer (&dd
);
1660 g_main_loop_run (dd
.loop
);
1663 unbind_to (count
, Qnil
);
1669 /***********************************************************************
1670 File dialog functions
1671 ***********************************************************************/
1672 /* Return non-zero if the old file selection dialog is being used.
1673 Return zero if not. */
1676 xg_uses_old_file_dialog (void)
1678 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1679 return x_gtk_use_old_file_dialog
;
1686 typedef char * (*xg_get_file_func
) (GtkWidget
*);
1688 /* Return the selected file for file chooser dialog W.
1689 The returned string must be free:d. */
1692 xg_get_file_name_from_chooser (GtkWidget
*w
)
1694 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w
));
1697 /* Callback called when the "Show hidden files" toggle is pressed.
1698 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1701 xg_toggle_visibility_cb (GtkWidget
*widget
, gpointer data
)
1703 GtkFileChooser
*dialog
= GTK_FILE_CHOOSER (data
);
1705 g_object_get (G_OBJECT (dialog
), "show-hidden", &visible
, NULL
);
1706 g_object_set (G_OBJECT (dialog
), "show-hidden", !visible
, NULL
);
1710 /* Callback called when a property changes in a file chooser.
1711 GOBJECT is the file chooser dialog, ARG1 describes the property.
1712 USER_DATA is the toggle widget in the file chooser dialog.
1713 We use this to update the "Show hidden files" toggle when the user
1714 changes that property by right clicking in the file list. */
1717 xg_toggle_notify_cb (GObject
*gobject
, GParamSpec
*arg1
, gpointer user_data
)
1719 if (strcmp (arg1
->name
, "show-hidden") == 0)
1721 GtkWidget
*wtoggle
= GTK_WIDGET (user_data
);
1722 gboolean visible
, toggle_on
;
1724 g_object_get (G_OBJECT (gobject
), "show-hidden", &visible
, NULL
);
1725 toggle_on
= gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle
));
1727 if (!!visible
!= !!toggle_on
)
1729 g_signal_handlers_block_by_func (G_OBJECT (wtoggle
),
1730 G_CALLBACK (xg_toggle_visibility_cb
),
1732 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), visible
);
1733 g_signal_handlers_unblock_by_func
1734 (G_OBJECT (wtoggle
),
1735 G_CALLBACK (xg_toggle_visibility_cb
),
1738 x_gtk_show_hidden_files
= visible
;
1742 /* Read a file name from the user using a file chooser dialog.
1743 F is the current frame.
1744 PROMPT is a prompt to show to the user. May not be NULL.
1745 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1746 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1747 file. (Actually, this only has cosmetic effects, the user can
1748 still enter a non-existing file.) *FUNC is set to a function that
1749 can be used to retrieve the selected file name from the returned widget.
1751 Returns the created widget. */
1754 xg_get_file_with_chooser (FRAME_PTR f
,
1756 char *default_filename
,
1757 int mustmatch_p
, int only_dir_p
,
1758 xg_get_file_func
*func
)
1762 GtkWidget
*filewin
, *wtoggle
, *wbox
, *wmessage
IF_LINT (= NULL
);
1763 GtkWindow
*gwin
= GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
));
1764 GtkFileChooserAction action
= (mustmatch_p
?
1765 GTK_FILE_CHOOSER_ACTION_OPEN
:
1766 GTK_FILE_CHOOSER_ACTION_SAVE
);
1769 action
= GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER
;
1771 filewin
= gtk_file_chooser_dialog_new (prompt
, gwin
, action
,
1772 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
1773 (mustmatch_p
|| only_dir_p
?
1774 GTK_STOCK_OPEN
: GTK_STOCK_OK
),
1777 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin
), TRUE
);
1779 wbox
= gtk_vbox_new (FALSE
, 0);
1780 gtk_widget_show (wbox
);
1781 wtoggle
= gtk_check_button_new_with_label ("Show hidden files.");
1783 if (x_gtk_show_hidden_files
)
1785 g_object_set (G_OBJECT (filewin
), "show-hidden", TRUE
, NULL
);
1786 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle
), TRUE
);
1788 gtk_widget_show (wtoggle
);
1789 g_signal_connect (G_OBJECT (wtoggle
), "clicked",
1790 G_CALLBACK (xg_toggle_visibility_cb
), filewin
);
1791 g_signal_connect (G_OBJECT (filewin
), "notify",
1792 G_CALLBACK (xg_toggle_notify_cb
), wtoggle
);
1794 if (x_gtk_file_dialog_help_text
)
1797 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1798 Show the C-l help text only for versions < 2.10. */
1799 if (gtk_check_version (2, 10, 0) && action
!= GTK_FILE_CHOOSER_ACTION_SAVE
)
1800 strcat (msgbuf
, "\nType C-l to display a file name text entry box.\n");
1801 strcat (msgbuf
, "\nIf you don't like this file selector, use the "
1802 "corresponding\nkey binding or customize "
1803 "use-file-dialog to turn it off.");
1805 wmessage
= gtk_label_new (msgbuf
);
1806 gtk_widget_show (wmessage
);
1809 gtk_box_pack_start (GTK_BOX (wbox
), wtoggle
, FALSE
, FALSE
, 0);
1810 if (x_gtk_file_dialog_help_text
)
1811 gtk_box_pack_start (GTK_BOX (wbox
), wmessage
, FALSE
, FALSE
, 0);
1812 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin
), wbox
);
1814 if (default_filename
)
1817 struct gcpro gcpro1
;
1818 char *utf8_filename
;
1821 file
= build_string (default_filename
);
1823 /* File chooser does not understand ~/... in the file name. It must be
1824 an absolute name starting with /. */
1825 if (default_filename
[0] != '/')
1826 file
= Fexpand_file_name (file
, Qnil
);
1828 utf8_filename
= SSDATA (ENCODE_UTF_8 (file
));
1829 if (! NILP (Ffile_directory_p (file
)))
1830 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin
),
1834 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin
),
1836 if (action
== GTK_FILE_CHOOSER_ACTION_SAVE
)
1838 char *cp
= strrchr (utf8_filename
, '/');
1840 else cp
= utf8_filename
;
1841 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin
), cp
);
1848 *func
= xg_get_file_name_from_chooser
;
1852 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1854 /* Return the selected file for file selector dialog W.
1855 The returned string must be free:d. */
1858 xg_get_file_name_from_selector (GtkWidget
*w
)
1860 GtkFileSelection
*filesel
= GTK_FILE_SELECTION (w
);
1861 return xstrdup ((char*) gtk_file_selection_get_filename (filesel
));
1864 /* Create a file selection dialog.
1865 F is the current frame.
1866 PROMPT is a prompt to show to the user. May not be NULL.
1867 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1868 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1869 file. *FUNC is set to a function that can be used to retrieve the
1870 selected file name from the returned widget.
1872 Returns the created widget. */
1875 xg_get_file_with_selection (FRAME_PTR f
,
1877 char *default_filename
,
1878 int mustmatch_p
, int only_dir_p
,
1879 xg_get_file_func
*func
)
1882 GtkFileSelection
*filesel
;
1884 filewin
= gtk_file_selection_new (prompt
);
1885 filesel
= GTK_FILE_SELECTION (filewin
);
1887 if (default_filename
)
1888 gtk_file_selection_set_filename (filesel
, default_filename
);
1892 /* The selection_entry part of filesel is not documented. */
1893 gtk_widget_set_sensitive (filesel
->selection_entry
, FALSE
);
1894 gtk_file_selection_hide_fileop_buttons (filesel
);
1897 *func
= xg_get_file_name_from_selector
;
1901 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1903 /* Read a file name from the user using a file dialog, either the old
1904 file selection dialog, or the new file chooser dialog. Which to use
1905 depends on what the GTK version used has, and what the value of
1906 gtk-use-old-file-dialog.
1907 F is the current frame.
1908 PROMPT is a prompt to show to the user. May not be NULL.
1909 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1910 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1913 Returns a file name or NULL if no file was selected.
1914 The returned string must be freed by the caller. */
1917 xg_get_file_name (FRAME_PTR f
,
1919 char *default_filename
,
1925 int filesel_done
= 0;
1926 xg_get_file_func func
;
1928 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1929 /* I really don't know why this is needed, but without this the GLIBC add on
1930 library linuxthreads hangs when the Gnome file chooser backend creates
1932 sigblock (sigmask (__SIGRTMIN
));
1933 #endif /* HAVE_PTHREAD */
1935 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1937 if (xg_uses_old_file_dialog ())
1938 w
= xg_get_file_with_selection (f
, prompt
, default_filename
,
1939 mustmatch_p
, only_dir_p
, &func
);
1941 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
1942 mustmatch_p
, only_dir_p
, &func
);
1944 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
1945 w
= xg_get_file_with_chooser (f
, prompt
, default_filename
,
1946 mustmatch_p
, only_dir_p
, &func
);
1947 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
1949 gtk_widget_set_name (w
, "emacs-filedialog");
1951 filesel_done
= xg_dialog_run (f
, w
);
1953 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1954 sigunblock (sigmask (__SIGRTMIN
));
1957 if (filesel_done
== GTK_RESPONSE_OK
)
1960 gtk_widget_destroy (w
);
1964 #ifdef HAVE_FREETYPE
1965 /* Pop up a GTK font selector and return the name of the font the user
1966 selects, as a C string. The returned font name follows GTK's own
1969 `FAMILY [VALUE1 VALUE2] SIZE'
1971 This can be parsed using font_parse_fcname in font.c.
1972 DEFAULT_NAME, if non-zero, is the default font name. */
1975 xg_get_font_name (FRAME_PTR f
, const char *default_name
)
1978 char *fontname
= NULL
;
1981 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1982 sigblock (sigmask (__SIGRTMIN
));
1983 #endif /* HAVE_PTHREAD */
1985 w
= gtk_font_selection_dialog_new ("Pick a font");
1987 default_name
= "Monospace 10";
1988 gtk_font_selection_dialog_set_font_name (GTK_FONT_SELECTION_DIALOG (w
),
1991 gtk_widget_set_name (w
, "emacs-fontdialog");
1993 done
= xg_dialog_run (f
, w
);
1995 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1996 sigunblock (sigmask (__SIGRTMIN
));
1999 if (done
== GTK_RESPONSE_OK
)
2000 fontname
= gtk_font_selection_dialog_get_font_name
2001 (GTK_FONT_SELECTION_DIALOG (w
));
2003 gtk_widget_destroy (w
);
2006 #endif /* HAVE_FREETYPE */
2010 /***********************************************************************
2012 ***********************************************************************/
2014 /* The name of menu items that can be used for customization. Since GTK
2015 RC files are very crude and primitive, we have to set this on all
2016 menu item names so a user can easily customize menu items. */
2018 #define MENU_ITEM_NAME "emacs-menuitem"
2021 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2022 during GC. The next member points to the items. */
2023 static xg_list_node xg_menu_cb_list
;
2025 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2026 during GC. The next member points to the items. */
2027 static xg_list_node xg_menu_item_cb_list
;
2029 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2030 F is the frame CL_DATA will be initialized for.
2031 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2033 The menu bar and all sub menus under the menu bar in a frame
2034 share the same structure, hence the reference count.
2036 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2037 allocated xg_menu_cb_data if CL_DATA is NULL. */
2039 static xg_menu_cb_data
*
2040 make_cl_data (xg_menu_cb_data
*cl_data
, FRAME_PTR f
, GCallback highlight_cb
)
2044 cl_data
= (xg_menu_cb_data
*) xmalloc (sizeof (*cl_data
));
2046 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2047 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2048 cl_data
->highlight_cb
= highlight_cb
;
2049 cl_data
->ref_count
= 0;
2051 xg_list_insert (&xg_menu_cb_list
, &cl_data
->ptrs
);
2054 cl_data
->ref_count
++;
2059 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2060 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2062 When the menu bar is updated, menu items may have been added and/or
2063 removed, so menu_bar_vector and menu_bar_items_used change. We must
2064 then update CL_DATA since it is used to determine which menu
2065 item that is invoked in the menu.
2066 HIGHLIGHT_CB could change, there is no check that the same
2067 function is given when modifying a menu bar as was given when
2068 creating the menu bar. */
2071 update_cl_data (xg_menu_cb_data
*cl_data
,
2073 GCallback highlight_cb
)
2078 cl_data
->menu_bar_vector
= f
->menu_bar_vector
;
2079 cl_data
->menu_bar_items_used
= f
->menu_bar_items_used
;
2080 cl_data
->highlight_cb
= highlight_cb
;
2084 /* Decrease reference count for CL_DATA.
2085 If reference count is zero, free CL_DATA. */
2088 unref_cl_data (xg_menu_cb_data
*cl_data
)
2090 if (cl_data
&& cl_data
->ref_count
> 0)
2092 cl_data
->ref_count
--;
2093 if (cl_data
->ref_count
== 0)
2095 xg_list_remove (&xg_menu_cb_list
, &cl_data
->ptrs
);
2101 /* Function that marks all lisp data during GC. */
2108 for (iter
= xg_menu_cb_list
.next
; iter
; iter
= iter
->next
)
2109 mark_object (((xg_menu_cb_data
*) iter
)->menu_bar_vector
);
2111 for (iter
= xg_menu_item_cb_list
.next
; iter
; iter
= iter
->next
)
2113 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) iter
;
2115 if (! NILP (cb_data
->help
))
2116 mark_object (cb_data
->help
);
2121 /* Callback called when a menu item is destroyed. Used to free data.
2122 W is the widget that is being destroyed (not used).
2123 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2126 menuitem_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2130 xg_menu_item_cb_data
*data
= (xg_menu_item_cb_data
*) client_data
;
2131 xg_list_remove (&xg_menu_item_cb_list
, &data
->ptrs
);
2136 /* Callback called when the pointer enters/leaves a menu item.
2137 W is the parent of the menu item.
2138 EVENT is either an enter event or leave event.
2139 CLIENT_DATA is not used.
2141 Returns FALSE to tell GTK to keep processing this event. */
2144 menuitem_highlight_callback (GtkWidget
*w
,
2145 GdkEventCrossing
*event
,
2146 gpointer client_data
)
2149 GtkWidget
*subwidget
;
2150 xg_menu_item_cb_data
*data
;
2152 ev
.crossing
= *event
;
2153 subwidget
= gtk_get_event_widget (&ev
);
2154 data
= (xg_menu_item_cb_data
*) g_object_get_data (G_OBJECT (subwidget
),
2158 if (! NILP (data
->help
) && data
->cl_data
->highlight_cb
)
2160 gpointer call_data
= event
->type
== GDK_LEAVE_NOTIFY
? 0 : data
;
2161 GtkCallback func
= (GtkCallback
) data
->cl_data
->highlight_cb
;
2162 (*func
) (subwidget
, call_data
);
2169 /* Callback called when a menu is destroyed. Used to free data.
2170 W is the widget that is being destroyed (not used).
2171 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2174 menu_destroy_callback (GtkWidget
*w
, gpointer client_data
)
2176 unref_cl_data ((xg_menu_cb_data
*) client_data
);
2179 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2180 must be non-NULL) and can be inserted into a menu item.
2182 Returns the GtkHBox. */
2185 make_widget_for_menu_item (const char *utf8_label
, const char *utf8_key
)
2191 wbox
= gtk_hbox_new (FALSE
, 0);
2192 wlbl
= gtk_label_new (utf8_label
);
2193 wkey
= gtk_label_new (utf8_key
);
2195 gtk_misc_set_alignment (GTK_MISC (wlbl
), 0.0, 0.5);
2196 gtk_misc_set_alignment (GTK_MISC (wkey
), 0.0, 0.5);
2198 gtk_box_pack_start (GTK_BOX (wbox
), wlbl
, TRUE
, TRUE
, 0);
2199 gtk_box_pack_start (GTK_BOX (wbox
), wkey
, FALSE
, FALSE
, 0);
2201 gtk_widget_set_name (wlbl
, MENU_ITEM_NAME
);
2202 gtk_widget_set_name (wkey
, MENU_ITEM_NAME
);
2203 gtk_widget_set_name (wbox
, MENU_ITEM_NAME
);
2208 /* Make and return a menu item widget with the key to the right.
2209 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2210 UTF8_KEY is the text representing the key binding.
2211 ITEM is the widget_value describing the menu item.
2213 GROUP is an in/out parameter. If the menu item to be created is not
2214 part of any radio menu group, *GROUP contains NULL on entry and exit.
2215 If the menu item to be created is part of a radio menu group, on entry
2216 *GROUP contains the group to use, or NULL if this is the first item
2217 in the group. On exit, *GROUP contains the radio item group.
2219 Unfortunately, keys don't line up as nicely as in Motif,
2220 but the MacOS X version doesn't either, so I guess that is OK. */
2223 make_menu_item (const char *utf8_label
,
2224 const char *utf8_key
,
2229 GtkWidget
*wtoadd
= 0;
2231 /* It has been observed that some menu items have a NULL name field.
2232 This will lead to this function being called with a NULL utf8_label.
2233 GTK crashes on that so we set a blank label. Why there is a NULL
2234 name remains to be investigated. */
2235 if (! utf8_label
) utf8_label
= " ";
2238 wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
2240 if (item
->button_type
== BUTTON_TYPE_TOGGLE
)
2243 if (utf8_key
) w
= gtk_check_menu_item_new ();
2244 else w
= gtk_check_menu_item_new_with_label (utf8_label
);
2245 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), item
->selected
);
2247 else if (item
->button_type
== BUTTON_TYPE_RADIO
)
2249 if (utf8_key
) w
= gtk_radio_menu_item_new (*group
);
2250 else w
= gtk_radio_menu_item_new_with_label (*group
, utf8_label
);
2251 *group
= gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w
));
2253 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), TRUE
);
2258 if (utf8_key
) w
= gtk_menu_item_new ();
2259 else w
= gtk_menu_item_new_with_label (utf8_label
);
2262 if (wtoadd
) gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
2263 if (! item
->enabled
) gtk_widget_set_sensitive (w
, FALSE
);
2268 static int xg_detached_menus
;
2270 /* Returns non-zero if there are detached menus. */
2273 xg_have_tear_offs (void)
2275 return xg_detached_menus
> 0;
2278 /* Callback invoked when a detached menu window is removed. Here we
2279 decrease the xg_detached_menus count.
2280 WIDGET is the top level window that is removed (the parent of the menu).
2281 CLIENT_DATA is not used. */
2284 tearoff_remove (GtkWidget
*widget
, gpointer client_data
)
2286 if (xg_detached_menus
> 0) --xg_detached_menus
;
2289 /* Callback invoked when a menu is detached. It increases the
2290 xg_detached_menus count.
2291 WIDGET is the GtkTearoffMenuItem.
2292 CLIENT_DATA is not used. */
2295 tearoff_activate (GtkWidget
*widget
, gpointer client_data
)
2297 GtkWidget
*menu
= gtk_widget_get_parent (widget
);
2298 if (gtk_menu_get_tearoff_state (GTK_MENU (menu
)))
2300 ++xg_detached_menus
;
2301 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget
)),
2303 G_CALLBACK (tearoff_remove
), 0);
2308 /* Create a menu item widget, and connect the callbacks.
2309 ITEM describes the menu item.
2310 F is the frame the created menu belongs to.
2311 SELECT_CB is the callback to use when a menu item is selected.
2312 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2313 CL_DATA points to the callback data to be used for this menu.
2314 GROUP is an in/out parameter. If the menu item to be created is not
2315 part of any radio menu group, *GROUP contains NULL on entry and exit.
2316 If the menu item to be created is part of a radio menu group, on entry
2317 *GROUP contains the group to use, or NULL if this is the first item
2318 in the group. On exit, *GROUP contains the radio item group.
2320 Returns the created GtkWidget. */
2323 xg_create_one_menuitem (widget_value
*item
,
2325 GCallback select_cb
,
2326 GCallback highlight_cb
,
2327 xg_menu_cb_data
*cl_data
,
2333 xg_menu_item_cb_data
*cb_data
;
2335 utf8_label
= get_utf8_string (item
->name
);
2336 utf8_key
= get_utf8_string (item
->key
);
2338 w
= make_menu_item (utf8_label
, utf8_key
, item
, group
);
2340 if (utf8_label
) g_free (utf8_label
);
2341 if (utf8_key
) g_free (utf8_key
);
2343 cb_data
= xmalloc (sizeof (xg_menu_item_cb_data
));
2345 xg_list_insert (&xg_menu_item_cb_list
, &cb_data
->ptrs
);
2347 cb_data
->select_id
= 0;
2348 cb_data
->help
= item
->help
;
2349 cb_data
->cl_data
= cl_data
;
2350 cb_data
->call_data
= item
->call_data
;
2352 g_signal_connect (G_OBJECT (w
),
2354 G_CALLBACK (menuitem_destroy_callback
),
2357 /* Put cb_data in widget, so we can get at it when modifying menubar */
2358 g_object_set_data (G_OBJECT (w
), XG_ITEM_DATA
, cb_data
);
2360 /* final item, not a submenu */
2361 if (item
->call_data
&& ! item
->contents
)
2365 = g_signal_connect (G_OBJECT (w
), "activate", select_cb
, cb_data
);
2371 /* Create a full menu tree specified by DATA.
2372 F is the frame the created menu belongs to.
2373 SELECT_CB is the callback to use when a menu item is selected.
2374 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2375 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2376 POP_UP_P is non-zero if we shall create a popup menu.
2377 MENU_BAR_P is non-zero if we shall create a menu bar.
2378 ADD_TEAROFF_P is non-zero if we shall add a tearoff menu item. Ignored
2379 if MENU_BAR_P is non-zero.
2380 TOPMENU is the topmost GtkWidget that others shall be placed under.
2381 It may be NULL, in that case we create the appropriate widget
2382 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2383 CL_DATA is the callback data we shall use for this menu, or NULL
2384 if we haven't set the first callback yet.
2385 NAME is the name to give to the top level menu if this function
2386 creates it. May be NULL to not set any name.
2388 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2391 This function calls itself to create submenus. */
2394 create_menus (widget_value
*data
,
2396 GCallback select_cb
,
2397 GCallback deactivate_cb
,
2398 GCallback highlight_cb
,
2403 xg_menu_cb_data
*cl_data
,
2407 GtkWidget
*wmenu
= topmenu
;
2408 GSList
*group
= NULL
;
2414 wmenu
= gtk_menu_new ();
2415 xg_set_screen (wmenu
, f
);
2416 /* Connect this to the menu instead of items so we get enter/leave for
2417 disabled items also. TODO: Still does not get enter/leave for
2418 disabled items in detached menus. */
2419 g_signal_connect (G_OBJECT (wmenu
),
2420 "enter-notify-event",
2421 G_CALLBACK (menuitem_highlight_callback
),
2423 g_signal_connect (G_OBJECT (wmenu
),
2424 "leave-notify-event",
2425 G_CALLBACK (menuitem_highlight_callback
),
2430 wmenu
= gtk_menu_bar_new ();
2431 /* Set width of menu bar to a small value so it doesn't enlarge
2432 a small initial frame size. The width will be set to the
2433 width of the frame later on when it is added to a container.
2434 height -1: Natural height. */
2435 gtk_widget_set_size_request (wmenu
, 1, -1);
2438 /* Put cl_data on the top menu for easier access. */
2439 cl_data
= make_cl_data (cl_data
, f
, highlight_cb
);
2440 g_object_set_data (G_OBJECT (wmenu
), XG_FRAME_DATA
, (gpointer
)cl_data
);
2441 g_signal_connect (G_OBJECT (wmenu
), "destroy",
2442 G_CALLBACK (menu_destroy_callback
), cl_data
);
2445 gtk_widget_set_name (wmenu
, name
);
2448 g_signal_connect (G_OBJECT (wmenu
),
2449 "selection-done", deactivate_cb
, 0);
2452 if (! menu_bar_p
&& add_tearoff_p
)
2454 GtkWidget
*tearoff
= gtk_tearoff_menu_item_new ();
2455 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu
), tearoff
);
2457 g_signal_connect (G_OBJECT (tearoff
), "activate",
2458 G_CALLBACK (tearoff_activate
), 0);
2461 for (item
= data
; item
; item
= item
->next
)
2465 if (pop_up_p
&& !item
->contents
&& !item
->call_data
2466 && !menu_separator_name_p (item
->name
))
2469 /* A title for a popup. We do the same as GTK does when
2470 creating titles, but it does not look good. */
2472 utf8_label
= get_utf8_string (item
->name
);
2474 gtk_menu_set_title (GTK_MENU (wmenu
), utf8_label
);
2475 w
= gtk_menu_item_new_with_label (utf8_label
);
2476 gtk_widget_set_sensitive (w
, FALSE
);
2477 if (utf8_label
) g_free (utf8_label
);
2479 else if (menu_separator_name_p (item
->name
))
2482 /* GTK only have one separator type. */
2483 w
= gtk_separator_menu_item_new ();
2487 w
= xg_create_one_menuitem (item
,
2489 item
->contents
? 0 : select_cb
,
2494 /* Create a possibly empty submenu for menu bar items, since some
2495 themes don't highlight items correctly without it. */
2496 if (item
->contents
|| menu_bar_p
)
2498 GtkWidget
*submenu
= create_menus (item
->contents
,
2509 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
2513 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu
), w
);
2514 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
2520 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2521 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2522 with some text and buttons.
2523 F is the frame the created item belongs to.
2524 NAME is the name to use for the top widget.
2525 VAL is a widget_value structure describing items to be created.
2526 SELECT_CB is the callback to use when a menu item is selected or
2527 a dialog button is pressed.
2528 DEACTIVATE_CB is the callback to use when an item is deactivated.
2529 For a menu, when a sub menu is not shown anymore, for a dialog it is
2530 called when the dialog is popped down.
2531 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2533 Returns the widget created. */
2536 xg_create_widget (const char *type
, const char *name
, FRAME_PTR f
, widget_value
*val
,
2537 GCallback select_cb
, GCallback deactivate_cb
,
2538 GCallback highlight_cb
)
2541 int menu_bar_p
= strcmp (type
, "menubar") == 0;
2542 int pop_up_p
= strcmp (type
, "popup") == 0;
2544 if (strcmp (type
, "dialog") == 0)
2546 w
= create_dialog (val
, select_cb
, deactivate_cb
);
2547 xg_set_screen (w
, f
);
2548 gtk_window_set_transient_for (GTK_WINDOW (w
),
2549 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
2550 gtk_window_set_destroy_with_parent (GTK_WINDOW (w
), TRUE
);
2551 gtk_widget_set_name (w
, "emacs-dialog");
2552 gtk_window_set_modal (GTK_WINDOW (w
), TRUE
);
2554 else if (menu_bar_p
|| pop_up_p
)
2556 w
= create_menus (val
->contents
,
2568 /* Set the cursor to an arrow for popup menus when they are mapped.
2569 This is done by default for menu bar menus. */
2572 /* Must realize so the GdkWindow inside the widget is created. */
2573 gtk_widget_realize (w
);
2574 xg_set_cursor (w
, FRAME_X_DISPLAY_INFO (f
)->xg_cursor
);
2579 fprintf (stderr
, "bad type in xg_create_widget: %s, doing nothing\n",
2586 /* Return the label for menu item WITEM. */
2589 xg_get_menu_item_label (GtkMenuItem
*witem
)
2591 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
2592 return gtk_label_get_label (wlabel
);
2595 /* Return non-zero if the menu item WITEM has the text LABEL. */
2598 xg_item_label_same_p (GtkMenuItem
*witem
, const char *label
)
2601 char *utf8_label
= get_utf8_string (label
);
2602 const char *old_label
= witem
? xg_get_menu_item_label (witem
) : 0;
2604 if (! old_label
&& ! utf8_label
)
2606 else if (old_label
&& utf8_label
)
2607 is_same
= strcmp (utf8_label
, old_label
) == 0;
2609 if (utf8_label
) g_free (utf8_label
);
2614 /* Destroy widgets in LIST. */
2617 xg_destroy_widgets (GList
*list
)
2621 for (iter
= list
; iter
; iter
= g_list_next (iter
))
2623 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
2625 /* Destroying the widget will remove it from the container it is in. */
2626 gtk_widget_destroy (w
);
2630 /* Update the top level names in MENUBAR (i.e. not submenus).
2631 F is the frame the menu bar belongs to.
2632 *LIST is a list with the current menu bar names (menu item widgets).
2633 ITER is the item within *LIST that shall be updated.
2634 POS is the numerical position, starting at 0, of ITER in *LIST.
2635 VAL describes what the menu bar shall look like after the update.
2636 SELECT_CB is the callback to use when a menu item is selected.
2637 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2638 CL_DATA points to the callback data to be used for this menu bar.
2640 This function calls itself to walk through the menu bar names. */
2643 xg_update_menubar (GtkWidget
*menubar
,
2649 GCallback select_cb
,
2650 GCallback deactivate_cb
,
2651 GCallback highlight_cb
,
2652 xg_menu_cb_data
*cl_data
)
2654 if (! iter
&& ! val
)
2656 else if (iter
&& ! val
)
2658 /* Item(s) have been removed. Remove all remaining items. */
2659 xg_destroy_widgets (iter
);
2661 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2662 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
2663 gtk_menu_item_new_with_label (""),
2669 else if (! iter
&& val
)
2671 /* Item(s) added. Add all new items in one call. */
2672 create_menus (val
, f
, select_cb
, deactivate_cb
, highlight_cb
,
2673 0, 1, 0, menubar
, cl_data
, 0);
2679 /* Below this neither iter or val is NULL */
2680 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter
->data
), val
->name
))
2682 /* This item is still the same, check next item. */
2684 iter
= g_list_next (iter
);
2687 else /* This item is changed. */
2689 GtkMenuItem
*witem
= GTK_MENU_ITEM (iter
->data
);
2690 GtkMenuItem
*witem2
= 0;
2691 int val_in_menubar
= 0;
2692 int iter_in_new_menubar
= 0;
2696 /* See if the changed entry (val) is present later in the menu bar */
2698 iter2
&& ! val_in_menubar
;
2699 iter2
= g_list_next (iter2
))
2701 witem2
= GTK_MENU_ITEM (iter2
->data
);
2702 val_in_menubar
= xg_item_label_same_p (witem2
, val
->name
);
2705 /* See if the current entry (iter) is present later in the
2706 specification for the new menu bar. */
2707 for (cur
= val
; cur
&& ! iter_in_new_menubar
; cur
= cur
->next
)
2708 iter_in_new_menubar
= xg_item_label_same_p (witem
, cur
->name
);
2710 if (val_in_menubar
&& ! iter_in_new_menubar
)
2714 /* This corresponds to:
2719 g_object_ref (G_OBJECT (witem
));
2720 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem
));
2721 gtk_widget_destroy (GTK_WIDGET (witem
));
2723 /* Must get new list since the old changed. */
2724 g_list_free (*list
);
2725 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
2726 while (nr
-- > 0) iter
= g_list_next (iter
);
2728 else if (! val_in_menubar
&& ! iter_in_new_menubar
)
2730 /* This corresponds to:
2733 Rename B to X. This might seem to be a strange thing to do,
2734 since if there is a menu under B it will be totally wrong for X.
2735 But consider editing a C file. Then there is a C-mode menu
2736 (corresponds to B above).
2737 If then doing C-x C-f the minibuf menu (X above) replaces the
2738 C-mode menu. When returning from the minibuffer, we get
2739 back the C-mode menu. Thus we do:
2740 Rename B to X (C-mode to minibuf menu)
2741 Rename X to B (minibuf to C-mode menu).
2742 If the X menu hasn't been invoked, the menu under B
2743 is up to date when leaving the minibuffer. */
2744 GtkLabel
*wlabel
= GTK_LABEL (XG_BIN_CHILD (witem
));
2745 char *utf8_label
= get_utf8_string (val
->name
);
2746 GtkWidget
*submenu
= gtk_menu_item_get_submenu (witem
);
2748 gtk_label_set_text (wlabel
, utf8_label
);
2750 /* If this item has a submenu that has been detached, change
2751 the title in the WM decorations also. */
2752 if (submenu
&& gtk_menu_get_tearoff_state (GTK_MENU (submenu
)))
2753 /* Set the title of the detached window. */
2754 gtk_menu_set_title (GTK_MENU (submenu
), utf8_label
);
2756 if (utf8_label
) g_free (utf8_label
);
2757 iter
= g_list_next (iter
);
2761 else if (! val_in_menubar
&& iter_in_new_menubar
)
2763 /* This corresponds to:
2770 GtkWidget
*w
= xg_create_one_menuitem (val
,
2777 /* Create a possibly empty submenu for menu bar items, since some
2778 themes don't highlight items correctly without it. */
2779 GtkWidget
*submenu
= create_menus (NULL
, f
,
2780 select_cb
, deactivate_cb
,
2782 0, 0, 0, 0, cl_data
, 0);
2783 gtk_widget_set_name (w
, MENU_ITEM_NAME
);
2784 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
), w
, pos
);
2785 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w
), submenu
);
2787 g_list_free (*list
);
2788 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
2789 while (nr
-- > 0) iter
= g_list_next (iter
);
2790 iter
= g_list_next (iter
);
2794 else /* if (val_in_menubar && iter_in_new_menubar) */
2797 /* This corresponds to:
2802 g_object_ref (G_OBJECT (witem2
));
2803 gtk_container_remove (GTK_CONTAINER (menubar
), GTK_WIDGET (witem2
));
2804 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar
),
2805 GTK_WIDGET (witem2
), pos
);
2806 g_object_unref (G_OBJECT (witem2
));
2808 g_list_free (*list
);
2809 *list
= iter
= gtk_container_get_children (GTK_CONTAINER (menubar
));
2810 while (nr
-- > 0) iter
= g_list_next (iter
);
2811 if (iter
) iter
= g_list_next (iter
);
2817 /* Update the rest of the menu bar. */
2818 xg_update_menubar (menubar
, f
, list
, iter
, pos
, val
,
2819 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
2822 /* Update the menu item W so it corresponds to VAL.
2823 SELECT_CB is the callback to use when a menu item is selected.
2824 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2825 CL_DATA is the data to set in the widget for menu invocation. */
2828 xg_update_menu_item (widget_value
*val
,
2830 GCallback select_cb
,
2831 GCallback highlight_cb
,
2832 xg_menu_cb_data
*cl_data
)
2839 const char *old_label
= 0;
2840 const char *old_key
= 0;
2841 xg_menu_item_cb_data
*cb_data
;
2843 wchild
= XG_BIN_CHILD (w
);
2844 utf8_label
= get_utf8_string (val
->name
);
2845 utf8_key
= get_utf8_string (val
->key
);
2847 /* See if W is a menu item with a key. See make_menu_item above. */
2848 if (GTK_IS_HBOX (wchild
))
2850 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wchild
));
2852 wlbl
= GTK_LABEL (list
->data
);
2853 wkey
= GTK_LABEL (list
->next
->data
);
2858 /* Remove the key and keep just the label. */
2859 g_object_ref (G_OBJECT (wlbl
));
2860 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
2861 gtk_container_add (GTK_CONTAINER (w
), GTK_WIDGET (wlbl
));
2862 g_object_unref (G_OBJECT (wlbl
));
2867 else /* Just a label. */
2869 wlbl
= GTK_LABEL (wchild
);
2871 /* Check if there is now a key. */
2874 GtkWidget
*wtoadd
= make_widget_for_menu_item (utf8_label
, utf8_key
);
2875 GList
*list
= gtk_container_get_children (GTK_CONTAINER (wtoadd
));
2877 wlbl
= GTK_LABEL (list
->data
);
2878 wkey
= GTK_LABEL (list
->next
->data
);
2881 gtk_container_remove (GTK_CONTAINER (w
), wchild
);
2882 gtk_container_add (GTK_CONTAINER (w
), wtoadd
);
2887 if (wkey
) old_key
= gtk_label_get_label (wkey
);
2888 if (wlbl
) old_label
= gtk_label_get_label (wlbl
);
2890 if (wkey
&& utf8_key
&& (! old_key
|| strcmp (utf8_key
, old_key
) != 0))
2891 gtk_label_set_text (wkey
, utf8_key
);
2893 if (! old_label
|| strcmp (utf8_label
, old_label
) != 0)
2894 gtk_label_set_text (wlbl
, utf8_label
);
2896 if (utf8_key
) g_free (utf8_key
);
2897 if (utf8_label
) g_free (utf8_label
);
2899 if (! val
->enabled
&& gtk_widget_get_sensitive (w
))
2900 gtk_widget_set_sensitive (w
, FALSE
);
2901 else if (val
->enabled
&& ! gtk_widget_get_sensitive (w
))
2902 gtk_widget_set_sensitive (w
, TRUE
);
2904 cb_data
= (xg_menu_item_cb_data
*) g_object_get_data (G_OBJECT (w
),
2908 cb_data
->call_data
= val
->call_data
;
2909 cb_data
->help
= val
->help
;
2910 cb_data
->cl_data
= cl_data
;
2912 /* We assume the callback functions don't change. */
2913 if (val
->call_data
&& ! val
->contents
)
2915 /* This item shall have a select callback. */
2916 if (! cb_data
->select_id
)
2918 = g_signal_connect (G_OBJECT (w
), "activate",
2919 select_cb
, cb_data
);
2921 else if (cb_data
->select_id
)
2923 g_signal_handler_disconnect (w
, cb_data
->select_id
);
2924 cb_data
->select_id
= 0;
2929 /* Update the toggle menu item W so it corresponds to VAL. */
2932 xg_update_toggle_item (widget_value
*val
, GtkWidget
*w
)
2934 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
2937 /* Update the radio menu item W so it corresponds to VAL. */
2940 xg_update_radio_item (widget_value
*val
, GtkWidget
*w
)
2942 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w
), val
->selected
);
2945 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
2946 SUBMENU may be NULL, in that case a new menu is created.
2947 F is the frame the menu bar belongs to.
2948 VAL describes the contents of the menu bar.
2949 SELECT_CB is the callback to use when a menu item is selected.
2950 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2951 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2952 CL_DATA is the call back data to use for any newly created items.
2954 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
2958 xg_update_submenu (GtkWidget
*submenu
,
2961 GCallback select_cb
,
2962 GCallback deactivate_cb
,
2963 GCallback highlight_cb
,
2964 xg_menu_cb_data
*cl_data
)
2966 GtkWidget
*newsub
= submenu
;
2970 int has_tearoff_p
= 0;
2971 GList
*first_radio
= 0;
2974 list
= gtk_container_get_children (GTK_CONTAINER (submenu
));
2976 for (cur
= val
, iter
= list
;
2978 iter
= g_list_next (iter
), cur
= cur
->next
)
2980 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
2982 /* Skip tearoff items, they have no counterpart in val. */
2983 if (GTK_IS_TEAROFF_MENU_ITEM (w
))
2986 iter
= g_list_next (iter
);
2987 if (iter
) w
= GTK_WIDGET (iter
->data
);
2991 /* Remember first radio button in a group. If we get a mismatch in
2992 a radio group we must rebuild the whole group so that the connections
2993 in GTK becomes correct. */
2994 if (cur
->button_type
== BUTTON_TYPE_RADIO
&& ! first_radio
)
2996 else if (cur
->button_type
!= BUTTON_TYPE_RADIO
2997 && ! GTK_IS_RADIO_MENU_ITEM (w
))
3000 if (GTK_IS_SEPARATOR_MENU_ITEM (w
))
3002 if (! menu_separator_name_p (cur
->name
))
3005 else if (GTK_IS_CHECK_MENU_ITEM (w
))
3007 if (cur
->button_type
!= BUTTON_TYPE_TOGGLE
)
3009 xg_update_toggle_item (cur
, w
);
3010 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3012 else if (GTK_IS_RADIO_MENU_ITEM (w
))
3014 if (cur
->button_type
!= BUTTON_TYPE_RADIO
)
3016 xg_update_radio_item (cur
, w
);
3017 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3019 else if (GTK_IS_MENU_ITEM (w
))
3021 GtkMenuItem
*witem
= GTK_MENU_ITEM (w
);
3024 if (cur
->button_type
!= BUTTON_TYPE_NONE
||
3025 menu_separator_name_p (cur
->name
))
3028 xg_update_menu_item (cur
, w
, select_cb
, highlight_cb
, cl_data
);
3030 sub
= gtk_menu_item_get_submenu (witem
);
3031 if (sub
&& ! cur
->contents
)
3033 /* Not a submenu anymore. */
3034 g_object_ref (G_OBJECT (sub
));
3035 remove_submenu (witem
);
3036 gtk_widget_destroy (sub
);
3038 else if (cur
->contents
)
3042 nsub
= xg_update_submenu (sub
, f
, cur
->contents
,
3043 select_cb
, deactivate_cb
,
3044 highlight_cb
, cl_data
);
3046 /* If this item just became a submenu, we must set it. */
3048 gtk_menu_item_set_submenu (witem
, nsub
);
3053 /* Structural difference. Remove everything from here and down
3059 /* Remove widgets from first structural change. */
3062 /* If we are adding new menu items below, we must remove from
3063 first radio button so that radio groups become correct. */
3064 if (cur
&& first_radio
) xg_destroy_widgets (first_radio
);
3065 else xg_destroy_widgets (iter
);
3070 /* More items added. Create them. */
3071 newsub
= create_menus (cur
,
3084 if (list
) g_list_free (list
);
3089 /* Update the MENUBAR.
3090 F is the frame the menu bar belongs to.
3091 VAL describes the contents of the menu bar.
3092 If DEEP_P is non-zero, rebuild all but the top level menu names in
3093 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3094 SELECT_CB is the callback to use when a menu item is selected.
3095 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3096 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3099 xg_modify_menubar_widgets (GtkWidget
*menubar
, FRAME_PTR f
, widget_value
*val
,
3101 GCallback select_cb
, GCallback deactivate_cb
,
3102 GCallback highlight_cb
)
3104 xg_menu_cb_data
*cl_data
;
3105 GList
*list
= gtk_container_get_children (GTK_CONTAINER (menubar
));
3109 cl_data
= (xg_menu_cb_data
*) g_object_get_data (G_OBJECT (menubar
),
3112 xg_update_menubar (menubar
, f
, &list
, list
, 0, val
->contents
,
3113 select_cb
, deactivate_cb
, highlight_cb
, cl_data
);
3119 /* Update all sub menus.
3120 We must keep the submenus (GTK menu item widgets) since the
3121 X Window in the XEvent that activates the menu are those widgets. */
3123 /* Update cl_data, menu_item things in F may have changed. */
3124 update_cl_data (cl_data
, f
, highlight_cb
);
3126 for (cur
= val
->contents
; cur
; cur
= cur
->next
)
3131 GtkMenuItem
*witem
= 0;
3133 /* Find sub menu that corresponds to val and update it. */
3134 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3136 witem
= GTK_MENU_ITEM (iter
->data
);
3137 if (xg_item_label_same_p (witem
, cur
->name
))
3139 sub
= gtk_menu_item_get_submenu (witem
);
3144 newsub
= xg_update_submenu (sub
,
3151 /* sub may still be NULL. If we just updated non deep and added
3152 a new menu bar item, it has no sub menu yet. So we set the
3153 newly created sub menu under witem. */
3154 if (newsub
!= sub
&& witem
!= 0)
3156 xg_set_screen (newsub
, f
);
3157 gtk_menu_item_set_submenu (witem
, newsub
);
3163 gtk_widget_show_all (menubar
);
3166 /* Callback called when the menu bar W is mapped.
3167 Used to find the height of the menu bar if we didn't get it
3168 after showing the widget. */
3171 menubar_map_cb (GtkWidget
*w
, gpointer user_data
)
3174 FRAME_PTR f
= (FRAME_PTR
) user_data
;
3175 gtk_widget_get_preferred_size (w
, NULL
, &req
);
3176 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3178 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3179 xg_height_or_width_changed (f
);
3183 /* Recompute all the widgets of frame F, when the menu bar has been
3184 changed. Value is non-zero if widgets were updated. */
3187 xg_update_frame_menubar (FRAME_PTR f
)
3189 struct x_output
*x
= f
->output_data
.x
;
3192 if (!x
->menubar_widget
|| gtk_widget_get_mapped (x
->menubar_widget
))
3195 if (x
->menubar_widget
&& gtk_widget_get_parent (x
->menubar_widget
))
3196 return 0; /* Already done this, happens for frames created invisible. */
3200 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
,
3202 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
), x
->menubar_widget
, 0);
3204 g_signal_connect (x
->menubar_widget
, "map", G_CALLBACK (menubar_map_cb
), f
);
3205 gtk_widget_show_all (x
->menubar_widget
);
3206 gtk_widget_get_preferred_size (x
->menubar_widget
, NULL
, &req
);
3208 /* If menu bar doesn't know its height yet, cheat a little so the frame
3209 doesn't jump so much when resized later in menubar_map_cb. */
3210 if (req
.height
== 0)
3213 if (FRAME_MENUBAR_HEIGHT (f
) != req
.height
)
3215 FRAME_MENUBAR_HEIGHT (f
) = req
.height
;
3216 xg_height_or_width_changed (f
);
3223 /* Get rid of the menu bar of frame F, and free its storage.
3224 This is used when deleting a frame, and when turning off the menu bar. */
3227 free_frame_menubar (FRAME_PTR f
)
3229 struct x_output
*x
= f
->output_data
.x
;
3231 if (x
->menubar_widget
)
3235 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
), x
->menubar_widget
);
3236 /* The menubar and its children shall be deleted when removed from
3238 x
->menubar_widget
= 0;
3239 FRAME_MENUBAR_HEIGHT (f
) = 0;
3240 xg_height_or_width_changed (f
);
3246 xg_event_is_for_menubar (FRAME_PTR f
, XEvent
*event
)
3248 struct x_output
*x
= f
->output_data
.x
;
3257 if (! x
->menubar_widget
) return 0;
3259 if (! (event
->xbutton
.x
>= 0
3260 && event
->xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
3261 && event
->xbutton
.y
>= 0
3262 && event
->xbutton
.y
< f
->output_data
.x
->menubar_height
3263 && event
->xbutton
.same_screen
))
3266 gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
3267 gw
= gdk_x11_window_lookup_for_display (gdpy
, event
->xbutton
.window
);
3269 gevent
.any
.window
= gw
;
3270 gevent
.any
.type
= GDK_NOTHING
;
3271 gwdesc
= gtk_get_event_widget (&gevent
);
3272 if (! gwdesc
) return 0;
3273 if (! GTK_IS_MENU_BAR (gwdesc
)
3274 && ! GTK_IS_MENU_ITEM (gwdesc
)
3275 && ! gtk_widget_is_ancestor (x
->menubar_widget
, gwdesc
))
3278 list
= gtk_container_get_children (GTK_CONTAINER (x
->menubar_widget
));
3279 if (! list
) return 0;
3280 rec
.x
= event
->xbutton
.x
;
3281 rec
.y
= event
->xbutton
.y
;
3285 for (iter
= list
; iter
; iter
= g_list_next (iter
))
3287 GtkWidget
*w
= GTK_WIDGET (iter
->data
);
3288 if (gtk_widget_get_mapped (w
) && gtk_widget_intersect (w
, &rec
, NULL
))
3292 return iter
== 0 ? 0 : 1;
3297 /***********************************************************************
3298 Scroll bar functions
3299 ***********************************************************************/
3302 /* Setting scroll bar values invokes the callback. Use this variable
3303 to indicate that callback should do nothing. */
3305 int xg_ignore_gtk_scrollbar
;
3307 /* The width of the scroll bar for the current theme. */
3309 static int scroll_bar_width_for_theme
;
3311 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3312 may be larger than 32 bits. Keep a mapping from integer index to widget
3313 pointers to get around the 32 bit limitation. */
3317 GtkWidget
**widgets
;
3322 /* Grow this much every time we need to allocate more */
3324 #define ID_TO_WIDGET_INCR 32
3326 /* Store the widget pointer W in id_to_widget and return the integer index. */
3329 xg_store_widget_in_map (GtkWidget
*w
)
3333 if (id_to_widget
.max_size
== id_to_widget
.used
)
3336 if (TYPE_MAXIMUM (Window
) - ID_TO_WIDGET_INCR
< id_to_widget
.max_size
)
3337 memory_full (SIZE_MAX
);
3339 new_size
= id_to_widget
.max_size
+ ID_TO_WIDGET_INCR
;
3340 id_to_widget
.widgets
= xnrealloc (id_to_widget
.widgets
,
3341 new_size
, sizeof (GtkWidget
*));
3343 for (i
= id_to_widget
.max_size
; i
< new_size
; ++i
)
3344 id_to_widget
.widgets
[i
] = 0;
3345 id_to_widget
.max_size
= new_size
;
3348 /* Just loop over the array and find a free place. After all,
3349 how many scroll bars are we creating? Should be a small number.
3350 The check above guarantees we will find a free place. */
3351 for (i
= 0; i
< id_to_widget
.max_size
; ++i
)
3353 if (! id_to_widget
.widgets
[i
])
3355 id_to_widget
.widgets
[i
] = w
;
3356 ++id_to_widget
.used
;
3362 /* Should never end up here */
3366 /* Remove pointer at IDX from id_to_widget.
3367 Called when scroll bar is destroyed. */
3370 xg_remove_widget_from_map (ptrdiff_t idx
)
3372 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3374 id_to_widget
.widgets
[idx
] = 0;
3375 --id_to_widget
.used
;
3379 /* Get the widget pointer at IDX from id_to_widget. */
3382 xg_get_widget_from_map (ptrdiff_t idx
)
3384 if (idx
< id_to_widget
.max_size
&& id_to_widget
.widgets
[idx
] != 0)
3385 return id_to_widget
.widgets
[idx
];
3391 update_theme_scrollbar_width (void)
3394 GtkAdjustment
*vadj
;
3401 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
, 0.1, 0.1, 0.1);
3402 wscroll
= gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj
));
3403 g_object_ref_sink (G_OBJECT (wscroll
));
3404 gtk_widget_style_get (wscroll
, "slider-width", &w
, "trough-border", &b
, NULL
);
3405 gtk_widget_destroy (wscroll
);
3406 g_object_unref (G_OBJECT (wscroll
));
3409 scroll_bar_width_for_theme
= w
;
3413 xg_get_default_scrollbar_width (void)
3415 return scroll_bar_width_for_theme
;
3418 /* Return the scrollbar id for X Window WID on display DPY.
3419 Return -1 if WID not in id_to_widget. */
3422 xg_get_scroll_id_for_window (Display
*dpy
, Window wid
)
3427 w
= xg_win_to_widget (dpy
, wid
);
3431 for (idx
= 0; idx
< id_to_widget
.max_size
; ++idx
)
3432 if (id_to_widget
.widgets
[idx
] == w
)
3439 /* Callback invoked when scroll bar WIDGET is destroyed.
3440 DATA is the index into id_to_widget for WIDGET.
3441 We free pointer to last scroll bar values here and remove the index. */
3444 xg_gtk_scroll_destroy (GtkWidget
*widget
, gpointer data
)
3446 intptr_t id
= (intptr_t) data
;
3447 xg_remove_widget_from_map (id
);
3450 /* Create a scroll bar widget for frame F. Store the scroll bar
3452 SCROLL_CALLBACK is the callback to invoke when the value of the
3454 END_CALLBACK is the callback to invoke when scrolling ends.
3455 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3456 to set resources for the widget. */
3459 xg_create_scroll_bar (FRAME_PTR f
,
3460 struct scroll_bar
*bar
,
3461 GCallback scroll_callback
,
3462 GCallback end_callback
,
3463 const char *scroll_bar_name
)
3469 GtkAdjustment
*vadj
;
3474 /* Page, step increment values are not so important here, they
3475 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3476 vadj
= gtk_adjustment_new (XG_SB_MIN
, XG_SB_MIN
, XG_SB_MAX
,
3479 wscroll
= gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj
));
3480 webox
= gtk_event_box_new ();
3481 gtk_widget_set_name (wscroll
, scroll_bar_name
);
3483 gtk_range_set_update_policy (GTK_RANGE (wscroll
), GTK_UPDATE_CONTINUOUS
);
3485 g_object_set_data (G_OBJECT (wscroll
), XG_FRAME_DATA
, (gpointer
)f
);
3487 scroll_id
= xg_store_widget_in_map (wscroll
);
3489 g_signal_connect (G_OBJECT (wscroll
),
3491 G_CALLBACK (xg_gtk_scroll_destroy
),
3492 (gpointer
) scroll_id
);
3493 g_signal_connect (G_OBJECT (wscroll
),
3497 g_signal_connect (G_OBJECT (wscroll
),
3498 "button-release-event",
3502 /* The scroll bar widget does not draw on a window of its own. Instead
3503 it draws on the parent window, in this case the edit widget. So
3504 whenever the edit widget is cleared, the scroll bar needs to redraw
3505 also, which causes flicker. Put an event box between the edit widget
3506 and the scroll bar, so the scroll bar instead draws itself on the
3507 event box window. */
3508 gtk_fixed_put (GTK_FIXED (f
->output_data
.x
->edit_widget
), webox
, -1, -1);
3509 gtk_container_add (GTK_CONTAINER (webox
), wscroll
);
3512 /* Set the cursor to an arrow. */
3513 xg_set_cursor (webox
, FRAME_X_DISPLAY_INFO (f
)->xg_cursor
);
3515 bar
->x_window
= scroll_id
;
3518 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3521 xg_remove_scroll_bar (FRAME_PTR f
, ptrdiff_t scrollbar_id
)
3523 GtkWidget
*w
= xg_get_widget_from_map (scrollbar_id
);
3526 GtkWidget
*wparent
= gtk_widget_get_parent (w
);
3527 gtk_widget_destroy (w
);
3528 gtk_widget_destroy (wparent
);
3529 SET_FRAME_GARBAGED (f
);
3533 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3535 TOP/LEFT are the new pixel positions where the bar shall appear.
3536 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3539 xg_update_scrollbar_pos (FRAME_PTR f
,
3540 ptrdiff_t scrollbar_id
,
3547 GtkWidget
*wscroll
= xg_get_widget_from_map (scrollbar_id
);
3551 GtkWidget
*wfixed
= f
->output_data
.x
->edit_widget
;
3552 GtkWidget
*wparent
= gtk_widget_get_parent (wscroll
);
3555 /* Clear out old position. */
3556 int oldx
= -1, oldy
= -1, oldw
, oldh
;
3557 if (gtk_widget_get_parent (wparent
) == wfixed
)
3559 gtk_container_child_get (GTK_CONTAINER (wfixed
), wparent
,
3560 "x", &oldx
, "y", &oldy
, NULL
);
3561 gtk_widget_get_size_request (wscroll
, &oldw
, &oldh
);
3564 /* Move and resize to new values. */
3565 gtk_fixed_move (GTK_FIXED (wfixed
), wparent
, left
, top
);
3566 gtk_widget_style_get (wscroll
, "min-slider-length", &msl
, NULL
);
3569 /* No room. Hide scroll bar as some themes output a warning if
3570 the height is less than the min size. */
3571 gtk_widget_hide (wparent
);
3572 gtk_widget_hide (wscroll
);
3576 gtk_widget_show_all (wparent
);
3577 gtk_widget_set_size_request (wscroll
, width
, height
);
3579 gtk_widget_queue_draw (wfixed
);
3580 gdk_window_process_all_updates ();
3581 if (oldx
!= -1 && oldw
> 0 && oldh
> 0)
3583 /* Clear under old scroll bar position. This must be done after
3584 the gtk_widget_queue_draw and gdk_window_process_all_updates
3586 x_clear_area (FRAME_X_DISPLAY (f
),
3588 oldx
, oldy
, oldw
, oldh
, 0);
3591 /* GTK does not redraw until the main loop is entered again, but
3592 if there are no X events pending we will not enter it. So we sync
3593 here to get some events. */
3596 SET_FRAME_GARBAGED (f
);
3597 cancel_mouse_face (f
);
3601 /* Get the current value of the range, truncated to an integer. */
3604 int_gtk_range_get_value (GtkRange
*range
)
3606 return gtk_range_get_value (range
);
3610 /* Set the thumb size and position of scroll bar BAR. We are currently
3611 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3614 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
,
3619 GtkWidget
*wscroll
= xg_get_widget_from_map (bar
->x_window
);
3621 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
3623 if (wscroll
&& NILP (bar
->dragging
))
3633 adj
= gtk_range_get_adjustment (GTK_RANGE (wscroll
));
3635 /* We do the same as for MOTIF in xterm.c, assume 30 chars per line
3636 rather than the real portion value. This makes the thumb less likely
3637 to resize and that looks better. */
3638 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
3639 /* When the thumb is at the bottom, position == whole.
3640 So we need to increase `whole' to make space for the thumb. */
3647 top
= (gdouble
) position
/ whole
;
3648 shown
= (gdouble
) portion
/ whole
;
3651 size
= shown
* XG_SB_RANGE
;
3652 size
= min (size
, XG_SB_RANGE
);
3653 size
= max (size
, 1);
3655 value
= top
* XG_SB_RANGE
;
3656 value
= min (value
, XG_SB_MAX
- size
);
3657 value
= max (value
, XG_SB_MIN
);
3659 /* Assume all lines are of equal size. */
3660 new_step
= size
/ max (1, FRAME_LINES (f
));
3662 old_size
= gtk_adjustment_get_page_size (adj
);
3663 if (old_size
!= size
)
3665 int old_step
= gtk_adjustment_get_step_increment (adj
);
3666 if (old_step
!= new_step
)
3668 gtk_adjustment_set_page_size (adj
, size
);
3669 gtk_adjustment_set_step_increment (adj
, new_step
);
3670 /* Assume a page increment is about 95% of the page size */
3671 gtk_adjustment_set_page_increment (adj
, size
- size
/ 20);
3676 if (changed
|| int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
3680 /* gtk_range_set_value invokes the callback. Set
3681 ignore_gtk_scrollbar to make the callback do nothing */
3682 xg_ignore_gtk_scrollbar
= 1;
3684 if (int_gtk_range_get_value (GTK_RANGE (wscroll
)) != value
)
3685 gtk_range_set_value (GTK_RANGE (wscroll
), (gdouble
)value
);
3687 gtk_adjustment_changed (adj
);
3689 xg_ignore_gtk_scrollbar
= 0;
3696 /* Return non-zero if EVENT is for a scroll bar in frame F.
3697 When the same X window is used for several Gtk+ widgets, we cannot
3698 say for sure based on the X window alone if an event is for the
3699 frame. This function does additional checks.
3701 Return non-zero if the event is for a scroll bar, zero otherwise. */
3704 xg_event_is_for_scrollbar (FRAME_PTR f
, XEvent
*event
)
3708 if (f
&& event
->type
== ButtonPress
&& event
->xbutton
.button
< 4)
3710 /* Check if press occurred outside the edit widget. */
3711 GdkDisplay
*gdpy
= gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f
));
3712 retval
= gdk_display_get_window_at_pointer (gdpy
, NULL
, NULL
)
3713 != gtk_widget_get_window (f
->output_data
.x
->edit_widget
);
3716 && ((event
->type
== ButtonRelease
&& event
->xbutton
.button
< 4)
3717 || event
->type
== MotionNotify
))
3719 /* If we are releasing or moving the scroll bar, it has the grab. */
3720 GtkWidget
*w
= gtk_grab_get_current ();
3721 retval
= w
!= 0 && GTK_IS_SCROLLBAR (w
);
3729 /***********************************************************************
3731 ***********************************************************************/
3732 /* The key for the data we put in the GtkImage widgets. The data is
3733 the image used by Emacs. We use this to see if we need to update
3734 the GtkImage with a new image. */
3735 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3737 /* The key for storing the latest modifiers so the activate callback can
3739 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3741 /* The key for storing the button widget in its proxy menu item. */
3742 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3744 /* The key for the data we put in the GtkImage widgets. The data is
3745 the stock name used by Emacs. We use this to see if we need to update
3746 the GtkImage with a new image. */
3747 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3749 /* As above, but this is used for named theme widgets, as opposed to
3751 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3753 /* Callback function invoked when a tool bar item is pressed.
3754 W is the button widget in the tool bar that got pressed,
3755 CLIENT_DATA is an integer that is the index of the button in the
3756 tool bar. 0 is the first button. */
3759 xg_tool_bar_button_cb (GtkWidget
*widget
,
3760 GdkEventButton
*event
,
3763 intptr_t state
= event
->state
;
3764 gpointer ptr
= (gpointer
) state
;
3765 g_object_set_data (G_OBJECT (widget
), XG_TOOL_BAR_LAST_MODIFIER
, ptr
);
3770 /* Callback function invoked when a tool bar item is pressed.
3771 W is the button widget in the tool bar that got pressed,
3772 CLIENT_DATA is an integer that is the index of the button in the
3773 tool bar. 0 is the first button. */
3776 xg_tool_bar_callback (GtkWidget
*w
, gpointer client_data
)
3778 intptr_t idx
= (intptr_t) client_data
;
3779 gpointer gmod
= g_object_get_data (G_OBJECT (w
), XG_TOOL_BAR_LAST_MODIFIER
);
3780 intptr_t mod
= (intptr_t) gmod
;
3782 FRAME_PTR f
= (FRAME_PTR
) g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
3783 Lisp_Object key
, frame
;
3784 struct input_event event
;
3787 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
3790 idx
*= TOOL_BAR_ITEM_NSLOTS
;
3792 key
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_KEY
);
3793 XSETFRAME (frame
, f
);
3795 /* We generate two events here. The first one is to set the prefix
3796 to `(tool_bar)', see keyboard.c. */
3797 event
.kind
= TOOL_BAR_EVENT
;
3798 event
.frame_or_window
= frame
;
3800 kbd_buffer_store_event (&event
);
3802 event
.kind
= TOOL_BAR_EVENT
;
3803 event
.frame_or_window
= frame
;
3805 /* Convert between the modifier bits GDK uses and the modifier bits
3806 Emacs uses. This assumes GDK and X masks are the same, which they are when
3808 event
.modifiers
= x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
), mod
);
3809 kbd_buffer_store_event (&event
);
3811 /* Return focus to the frame after we have clicked on a detached
3813 Fx_focus_frame (frame
);
3816 /* Callback function invoked when a tool bar item is pressed in a detached
3817 tool bar or the overflow drop down menu.
3818 We just call xg_tool_bar_callback.
3819 W is the menu item widget that got pressed,
3820 CLIENT_DATA is an integer that is the index of the button in the
3821 tool bar. 0 is the first button. */
3824 xg_tool_bar_proxy_callback (GtkWidget
*w
, gpointer client_data
)
3826 GtkWidget
*wbutton
= GTK_WIDGET (g_object_get_data (G_OBJECT (w
),
3827 XG_TOOL_BAR_PROXY_BUTTON
));
3828 xg_tool_bar_callback (wbutton
, client_data
);
3833 xg_tool_bar_help_callback (GtkWidget
*w
,
3834 GdkEventCrossing
*event
,
3835 gpointer client_data
);
3837 /* This callback is called when a help is to be shown for an item in
3838 the detached tool bar when the detached tool bar it is not expanded. */
3841 xg_tool_bar_proxy_help_callback (GtkWidget
*w
,
3842 GdkEventCrossing
*event
,
3843 gpointer client_data
)
3845 GtkWidget
*wbutton
= GTK_WIDGET (g_object_get_data (G_OBJECT (w
),
3846 XG_TOOL_BAR_PROXY_BUTTON
));
3848 return xg_tool_bar_help_callback (wbutton
, event
, client_data
);
3852 xg_get_tool_bar_widgets (GtkWidget
*vb
, GtkWidget
**wimage
)
3854 GList
*clist
= gtk_container_get_children (GTK_CONTAINER (vb
));
3855 GtkWidget
*c1
= (GtkWidget
*) clist
->data
;
3856 GtkWidget
*c2
= clist
->next
? (GtkWidget
*) clist
->next
->data
: NULL
;
3858 *wimage
= GTK_IS_IMAGE (c1
) ? c1
: c2
;
3859 g_list_free (clist
);
3860 return GTK_IS_LABEL (c1
) ? c1
: c2
;
3864 /* This callback is called when a tool item should create a proxy item,
3865 such as for the overflow menu. Also called when the tool bar is detached.
3866 If we don't create a proxy menu item, the detached tool bar will be
3870 xg_tool_bar_menu_proxy (GtkToolItem
*toolitem
, gpointer user_data
)
3872 GtkButton
*wbutton
= GTK_BUTTON (XG_BIN_CHILD (XG_BIN_CHILD (toolitem
)));
3873 GtkWidget
*vb
= XG_BIN_CHILD (wbutton
);
3875 GtkLabel
*wlbl
= GTK_LABEL (xg_get_tool_bar_widgets (vb
, &c1
));
3876 GtkImage
*wimage
= GTK_IMAGE (c1
);
3877 GtkWidget
*wmenuitem
= gtk_image_menu_item_new_with_label
3878 (wlbl
? gtk_label_get_text (wlbl
) : "");
3879 GtkWidget
*wmenuimage
;
3882 if (gtk_button_get_use_stock (wbutton
))
3883 wmenuimage
= gtk_image_new_from_stock (gtk_button_get_label (wbutton
),
3884 GTK_ICON_SIZE_MENU
);
3887 GtkSettings
*settings
= gtk_widget_get_settings (GTK_WIDGET (wbutton
));
3888 GtkImageType store_type
= gtk_image_get_storage_type (wimage
);
3890 g_object_set (G_OBJECT (settings
), "gtk-menu-images", TRUE
, NULL
);
3892 if (store_type
== GTK_IMAGE_STOCK
)
3895 gtk_image_get_stock (wimage
, &stock_id
, NULL
);
3896 wmenuimage
= gtk_image_new_from_stock (stock_id
, GTK_ICON_SIZE_MENU
);
3898 else if (store_type
== GTK_IMAGE_ICON_SET
)
3900 GtkIconSet
*icon_set
;
3901 gtk_image_get_icon_set (wimage
, &icon_set
, NULL
);
3902 wmenuimage
= gtk_image_new_from_icon_set (icon_set
,
3903 GTK_ICON_SIZE_MENU
);
3905 else if (store_type
== GTK_IMAGE_PIXBUF
)
3910 gtk_icon_size_lookup_for_settings (settings
, GTK_ICON_SIZE_MENU
,
3913 GdkPixbuf
*src_pixbuf
, *dest_pixbuf
;
3915 src_pixbuf
= gtk_image_get_pixbuf (wimage
);
3916 dest_pixbuf
= gdk_pixbuf_scale_simple (src_pixbuf
, width
, height
,
3917 GDK_INTERP_BILINEAR
);
3919 wmenuimage
= gtk_image_new_from_pixbuf (dest_pixbuf
);
3923 fprintf (stderr
, "internal error: GTK_IMAGE_PIXBUF failed\n");
3927 else if (store_type
== GTK_IMAGE_ICON_NAME
)
3929 const gchar
*icon_name
;
3930 GtkIconSize icon_size
;
3932 gtk_image_get_icon_name (wimage
, &icon_name
, &icon_size
);
3933 wmenuimage
= gtk_image_new_from_icon_name (icon_name
,
3934 GTK_ICON_SIZE_MENU
);
3938 fprintf (stderr
, "internal error: store_type is %d\n", store_type
);
3943 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem
), wmenuimage
);
3945 g_signal_connect (G_OBJECT (wmenuitem
),
3947 G_CALLBACK (xg_tool_bar_proxy_callback
),
3951 g_object_set_data (G_OBJECT (wmenuitem
), XG_TOOL_BAR_PROXY_BUTTON
,
3952 (gpointer
) wbutton
);
3953 gtk_tool_item_set_proxy_menu_item (toolitem
, "Emacs toolbar item", wmenuitem
);
3954 gtk_widget_set_sensitive (wmenuitem
,
3955 gtk_widget_get_sensitive (GTK_WIDGET (wbutton
)));
3957 /* Use enter/leave notify to show help. We use the events
3958 rather than the GtkButton specific signals "enter" and
3959 "leave", so we can have only one callback. The event
3960 will tell us what kind of event it is. */
3961 g_signal_connect (G_OBJECT (wmenuitem
),
3962 "enter-notify-event",
3963 G_CALLBACK (xg_tool_bar_proxy_help_callback
),
3965 g_signal_connect (G_OBJECT (wmenuitem
),
3966 "leave-notify-event",
3967 G_CALLBACK (xg_tool_bar_proxy_help_callback
),
3973 /* This callback is called when a tool bar is detached. We must set
3974 the height of the tool bar to zero when this happens so frame sizes
3975 are correctly calculated.
3976 WBOX is the handle box widget that enables detach/attach of the tool bar.
3977 W is the tool bar widget.
3978 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
3981 xg_tool_bar_detach_callback (GtkHandleBox
*wbox
,
3983 gpointer client_data
)
3985 FRAME_PTR f
= (FRAME_PTR
) client_data
;
3987 g_object_set (G_OBJECT (w
), "show-arrow", !x_gtk_whole_detached_tool_bar
,
3992 GtkRequisition req
, req2
;
3993 FRAME_X_OUTPUT (f
)->toolbar_detached
= 1;
3994 gtk_widget_get_preferred_size (GTK_WIDGET (wbox
), NULL
, &req
);
3995 gtk_widget_get_preferred_size (w
, NULL
, &req2
);
3996 req
.width
-= req2
.width
;
3997 req
.height
-= req2
.height
;
3998 if (FRAME_TOOLBAR_TOP_HEIGHT (f
) != 0)
3999 FRAME_TOOLBAR_TOP_HEIGHT (f
) = req
.height
;
4000 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) != 0)
4001 FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = req
.height
;
4002 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f
) != 0)
4003 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = req
.width
;
4004 else if (FRAME_TOOLBAR_LEFT_WIDTH (f
) != 0)
4005 FRAME_TOOLBAR_LEFT_WIDTH (f
) = req
.width
;
4006 xg_height_or_width_changed (f
);
4010 /* This callback is called when a tool bar is reattached. We must set
4011 the height of the tool bar when this happens so frame sizes
4012 are correctly calculated.
4013 WBOX is the handle box widget that enables detach/attach of the tool bar.
4014 W is the tool bar widget.
4015 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
4018 xg_tool_bar_attach_callback (GtkHandleBox
*wbox
,
4020 gpointer client_data
)
4022 FRAME_PTR f
= (FRAME_PTR
) client_data
;
4023 g_object_set (G_OBJECT (w
), "show-arrow", TRUE
, NULL
);
4027 GtkRequisition req
, req2
;
4028 FRAME_X_OUTPUT (f
)->toolbar_detached
= 0;
4029 gtk_widget_get_preferred_size (GTK_WIDGET (wbox
), NULL
, &req
);
4030 gtk_widget_get_preferred_size (w
, NULL
, &req2
);
4031 req
.width
+= req2
.width
;
4032 req
.height
+= req2
.height
;
4033 if (FRAME_TOOLBAR_TOP_HEIGHT (f
) != 0)
4034 FRAME_TOOLBAR_TOP_HEIGHT (f
) = req
.height
;
4035 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) != 0)
4036 FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = req
.height
;
4037 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f
) != 0)
4038 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = req
.width
;
4039 else if (FRAME_TOOLBAR_LEFT_WIDTH (f
) != 0)
4040 FRAME_TOOLBAR_LEFT_WIDTH (f
) = req
.width
;
4041 xg_height_or_width_changed (f
);
4045 /* This callback is called when the mouse enters or leaves a tool bar item.
4046 It is used for displaying and hiding the help text.
4047 W is the tool bar item, a button.
4048 EVENT is either an enter event or leave event.
4049 CLIENT_DATA is an integer that is the index of the button in the
4050 tool bar. 0 is the first button.
4052 Returns FALSE to tell GTK to keep processing this event. */
4055 xg_tool_bar_help_callback (GtkWidget
*w
,
4056 GdkEventCrossing
*event
,
4057 gpointer client_data
)
4059 intptr_t idx
= (intptr_t) client_data
;
4060 FRAME_PTR f
= (FRAME_PTR
) g_object_get_data (G_OBJECT (w
), XG_FRAME_DATA
);
4061 Lisp_Object help
, frame
;
4063 if (! f
|| ! f
->n_tool_bar_items
|| NILP (f
->tool_bar_items
))
4066 if (event
->type
== GDK_ENTER_NOTIFY
)
4068 idx
*= TOOL_BAR_ITEM_NSLOTS
;
4069 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_HELP
);
4072 help
= AREF (f
->tool_bar_items
, idx
+ TOOL_BAR_ITEM_CAPTION
);
4077 XSETFRAME (frame
, f
);
4078 kbd_buffer_store_help_event (frame
, help
);
4084 /* This callback is called when a tool bar item shall be redrawn.
4085 It modifies the expose event so that the GtkImage widget redraws the
4086 whole image. This to overcome a bug that makes GtkImage draw the image
4087 in the wrong place when it tries to redraw just a part of the image.
4088 W is the GtkImage to be redrawn.
4089 EVENT is the expose event for W.
4090 CLIENT_DATA is unused.
4092 Returns FALSE to tell GTK to keep processing this event. */
4096 xg_tool_bar_item_expose_callback (GtkWidget
*w
,
4097 GdkEventExpose
*event
,
4098 gpointer client_data
)
4102 gdk_drawable_get_size (event
->window
, &width
, &height
);
4103 event
->area
.x
-= width
> event
->area
.width
? width
-event
->area
.width
: 0;
4104 event
->area
.y
-= height
> event
->area
.height
? height
-event
->area
.height
: 0;
4106 event
->area
.x
= max (0, event
->area
.x
);
4107 event
->area
.y
= max (0, event
->area
.y
);
4109 event
->area
.width
= max (width
, event
->area
.width
);
4110 event
->area
.height
= max (height
, event
->area
.height
);
4116 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4117 #define toolbar_set_orientation(w, o) \
4118 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4120 #define toolbar_set_orientation(w, o) \
4121 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4124 /* Attach a tool bar to frame F. */
4127 xg_pack_tool_bar (FRAME_PTR f
, Lisp_Object pos
)
4129 struct x_output
*x
= f
->output_data
.x
;
4130 int into_hbox
= EQ (pos
, Qleft
) || EQ (pos
, Qright
);
4132 toolbar_set_orientation (x
->toolbar_widget
,
4134 ? GTK_ORIENTATION_VERTICAL
4135 : GTK_ORIENTATION_HORIZONTAL
);
4136 if (!x
->handlebox_widget
)
4138 x
->handlebox_widget
= gtk_handle_box_new ();
4139 g_signal_connect (G_OBJECT (x
->handlebox_widget
), "child-detached",
4140 G_CALLBACK (xg_tool_bar_detach_callback
), f
);
4141 g_signal_connect (G_OBJECT (x
->handlebox_widget
), "child-attached",
4142 G_CALLBACK (xg_tool_bar_attach_callback
), f
);
4143 gtk_container_add (GTK_CONTAINER (x
->handlebox_widget
),
4149 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x
->handlebox_widget
),
4151 gtk_box_pack_start (GTK_BOX (x
->hbox_widget
), x
->handlebox_widget
,
4154 if (EQ (pos
, Qleft
))
4155 gtk_box_reorder_child (GTK_BOX (x
->hbox_widget
),
4156 x
->handlebox_widget
,
4158 x
->toolbar_in_hbox
= 1;
4162 int vbox_pos
= x
->menubar_widget
? 1 : 0;
4163 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x
->handlebox_widget
),
4165 gtk_box_pack_start (GTK_BOX (x
->vbox_widget
), x
->handlebox_widget
,
4169 gtk_box_reorder_child (GTK_BOX (x
->vbox_widget
),
4170 x
->handlebox_widget
,
4172 x
->toolbar_in_hbox
= 0;
4176 /* Create a tool bar for frame F. */
4179 xg_create_tool_bar (FRAME_PTR f
)
4181 struct x_output
*x
= f
->output_data
.x
;
4183 x
->toolbar_widget
= gtk_toolbar_new ();
4184 x
->toolbar_detached
= 0;
4186 gtk_widget_set_name (x
->toolbar_widget
, "emacs-toolbar");
4188 gtk_toolbar_set_style (GTK_TOOLBAR (x
->toolbar_widget
), GTK_TOOLBAR_ICONS
);
4189 toolbar_set_orientation (x
->toolbar_widget
, GTK_ORIENTATION_HORIZONTAL
);
4193 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4195 /* Find the right-to-left image named by RTL in the tool bar images for F.
4196 Returns IMAGE if RTL is not found. */
4199 find_rtl_image (FRAME_PTR f
, Lisp_Object image
, Lisp_Object rtl
)
4202 Lisp_Object file
, rtl_name
;
4203 struct gcpro gcpro1
, gcpro2
;
4204 GCPRO2 (file
, rtl_name
);
4206 rtl_name
= Ffile_name_nondirectory (rtl
);
4208 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
4210 Lisp_Object rtl_image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4211 if (!NILP (file
= file_for_image (rtl_image
)))
4213 file
= call1 (intern ("file-name-sans-extension"),
4214 Ffile_name_nondirectory (file
));
4215 if (EQ (Fequal (file
, rtl_name
), Qt
))
4226 static GtkToolItem
*
4227 xg_make_tool_item (FRAME_PTR f
,
4229 GtkWidget
**wbutton
,
4231 int i
, int horiz
, int text_image
)
4233 GtkToolItem
*ti
= gtk_tool_item_new ();
4234 GtkWidget
*vb
= horiz
? gtk_hbox_new (FALSE
, 0) : gtk_vbox_new (FALSE
, 0);
4235 GtkWidget
*wb
= gtk_button_new ();
4236 /* The eventbox is here so we can have tooltips on disabled items. */
4237 GtkWidget
*weventbox
= gtk_event_box_new ();
4239 if (wimage
&& !text_image
)
4240 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4242 gtk_box_pack_start (GTK_BOX (vb
), gtk_label_new (label
), TRUE
, TRUE
, 0);
4243 if (wimage
&& text_image
)
4244 gtk_box_pack_start (GTK_BOX (vb
), wimage
, TRUE
, TRUE
, 0);
4246 gtk_button_set_focus_on_click (GTK_BUTTON (wb
), FALSE
);
4247 gtk_button_set_relief (GTK_BUTTON (wb
), GTK_RELIEF_NONE
);
4248 gtk_container_add (GTK_CONTAINER (wb
), vb
);
4249 gtk_container_add (GTK_CONTAINER (weventbox
), wb
);
4250 gtk_container_add (GTK_CONTAINER (ti
), weventbox
);
4252 if (wimage
|| label
)
4255 gpointer gi
= (gpointer
) ii
;
4257 g_signal_connect (G_OBJECT (ti
), "create-menu-proxy",
4258 G_CALLBACK (xg_tool_bar_menu_proxy
),
4261 g_signal_connect (G_OBJECT (wb
), "clicked",
4262 G_CALLBACK (xg_tool_bar_callback
),
4265 g_object_set_data (G_OBJECT (weventbox
), XG_FRAME_DATA
, (gpointer
)f
);
4268 /* Catch expose events to overcome an annoying redraw bug, see
4269 comment for xg_tool_bar_item_expose_callback. */
4270 g_signal_connect (G_OBJECT (ti
),
4272 G_CALLBACK (xg_tool_bar_item_expose_callback
),
4275 gtk_tool_item_set_homogeneous (ti
, FALSE
);
4277 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4278 no distinction based on modifiers in the activate callback,
4279 so we have to do it ourselves. */
4280 g_signal_connect (wb
, "button-release-event",
4281 G_CALLBACK (xg_tool_bar_button_cb
),
4284 g_object_set_data (G_OBJECT (wb
), XG_FRAME_DATA
, (gpointer
)f
);
4286 /* Use enter/leave notify to show help. We use the events
4287 rather than the GtkButton specific signals "enter" and
4288 "leave", so we can have only one callback. The event
4289 will tell us what kind of event it is. */
4290 /* The EMACS_INT cast avoids a warning. */
4291 g_signal_connect (G_OBJECT (weventbox
),
4292 "enter-notify-event",
4293 G_CALLBACK (xg_tool_bar_help_callback
),
4295 g_signal_connect (G_OBJECT (weventbox
),
4296 "leave-notify-event",
4297 G_CALLBACK (xg_tool_bar_help_callback
),
4301 if (wbutton
) *wbutton
= wb
;
4307 xg_tool_item_stale_p (GtkWidget
*wbutton
, const char *stock_name
,
4308 const char *icon_name
, const struct image
*img
,
4309 const char *label
, int horiz
)
4313 GtkWidget
*vb
= XG_BIN_CHILD (wbutton
);
4314 GtkWidget
*wlbl
= xg_get_tool_bar_widgets (vb
, &wimage
);
4316 /* Check if the tool icon matches. */
4317 if (stock_name
&& wimage
)
4319 old
= g_object_get_data (G_OBJECT (wimage
),
4320 XG_TOOL_BAR_STOCK_NAME
);
4321 if (!old
|| strcmp (old
, stock_name
))
4324 else if (icon_name
&& wimage
)
4326 old
= g_object_get_data (G_OBJECT (wimage
),
4327 XG_TOOL_BAR_ICON_NAME
);
4328 if (!old
|| strcmp (old
, icon_name
))
4333 gpointer gold_img
= g_object_get_data (G_OBJECT (wimage
),
4334 XG_TOOL_BAR_IMAGE_DATA
);
4335 Pixmap old_img
= (Pixmap
) gold_img
;
4336 if (old_img
!= img
->pixmap
)
4340 /* Check button configuration and label. */
4341 if ((horiz
? GTK_IS_VBOX (vb
) : GTK_IS_HBOX (vb
))
4342 || (label
? (wlbl
== NULL
) : (wlbl
!= NULL
)))
4345 /* Ensure label is correct. */
4347 gtk_label_set_text (GTK_LABEL (wlbl
), label
);
4352 xg_update_tool_bar_sizes (FRAME_PTR f
)
4354 struct x_output
*x
= f
->output_data
.x
;
4356 int nl
= 0, nr
= 0, nt
= 0, nb
= 0;
4358 gtk_widget_get_preferred_size (GTK_WIDGET (x
->handlebox_widget
), NULL
, &req
);
4359 if (x
->toolbar_in_hbox
)
4362 gtk_container_child_get (GTK_CONTAINER (x
->hbox_widget
),
4363 x
->handlebox_widget
,
4364 "position", &pos
, NULL
);
4365 if (pos
== 0) nl
= req
.width
;
4366 else nr
= req
.width
;
4371 gtk_container_child_get (GTK_CONTAINER (x
->vbox_widget
),
4372 x
->handlebox_widget
,
4373 "position", &pos
, NULL
);
4374 if (pos
== 0 || (pos
== 1 && x
->menubar_widget
)) nt
= req
.height
;
4375 else nb
= req
.height
;
4378 if (nl
!= FRAME_TOOLBAR_LEFT_WIDTH (f
)
4379 || nr
!= FRAME_TOOLBAR_RIGHT_WIDTH (f
)
4380 || nt
!= FRAME_TOOLBAR_TOP_HEIGHT (f
)
4381 || nb
!= FRAME_TOOLBAR_BOTTOM_HEIGHT (f
))
4383 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = FRAME_TOOLBAR_LEFT_WIDTH (f
)
4384 = FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
4385 FRAME_TOOLBAR_LEFT_WIDTH (f
) = nl
;
4386 FRAME_TOOLBAR_RIGHT_WIDTH (f
) = nr
;
4387 FRAME_TOOLBAR_TOP_HEIGHT (f
) = nt
;
4388 FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = nb
;
4396 /* Update the tool bar for frame F. Add new buttons and remove old. */
4399 update_frame_tool_bar (FRAME_PTR f
)
4402 struct x_output
*x
= f
->output_data
.x
;
4403 int hmargin
= 0, vmargin
= 0;
4404 GtkToolbar
*wtoolbar
;
4406 GtkTextDirection dir
;
4407 int pack_tool_bar
= x
->handlebox_widget
== NULL
;
4409 int text_image
, horiz
;
4411 if (! FRAME_GTK_WIDGET (f
))
4416 if (INTEGERP (Vtool_bar_button_margin
)
4417 && XINT (Vtool_bar_button_margin
) > 0)
4419 hmargin
= XFASTINT (Vtool_bar_button_margin
);
4420 vmargin
= XFASTINT (Vtool_bar_button_margin
);
4422 else if (CONSP (Vtool_bar_button_margin
))
4424 if (INTEGERP (XCAR (Vtool_bar_button_margin
))
4425 && XINT (XCAR (Vtool_bar_button_margin
)) > 0)
4426 hmargin
= XFASTINT (XCAR (Vtool_bar_button_margin
));
4428 if (INTEGERP (XCDR (Vtool_bar_button_margin
))
4429 && XINT (XCDR (Vtool_bar_button_margin
)) > 0)
4430 vmargin
= XFASTINT (XCDR (Vtool_bar_button_margin
));
4433 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4434 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4435 i.e. zero. This means that margins less than
4436 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4437 hmargin
= max (0, hmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4438 vmargin
= max (0, vmargin
- DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
4440 if (! x
->toolbar_widget
)
4441 xg_create_tool_bar (f
);
4443 wtoolbar
= GTK_TOOLBAR (x
->toolbar_widget
);
4444 dir
= gtk_widget_get_direction (GTK_WIDGET (wtoolbar
));
4446 style
= Ftool_bar_get_system_style ();
4447 text_image
= EQ (style
, Qtext_image_horiz
);
4448 horiz
= EQ (style
, Qboth_horiz
) || text_image
;
4450 for (i
= j
= 0; i
< f
->n_tool_bar_items
; ++i
)
4452 int enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
4453 int selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
4457 struct image
*img
= NULL
;
4459 Lisp_Object stock
= Qnil
;
4460 GtkStockItem stock_item
;
4461 char *stock_name
= NULL
;
4462 char *icon_name
= NULL
;
4464 GtkWidget
*wbutton
= NULL
;
4465 Lisp_Object specified_file
;
4466 int vert_only
= ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY
));
4468 = (EQ (style
, Qimage
) || (vert_only
&& horiz
)) ? NULL
4469 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL
))
4470 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL
))
4473 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
4475 /* If this is a separator, use a gtk separator item. */
4476 if (EQ (PROP (TOOL_BAR_ITEM_TYPE
), Qt
))
4478 if (ti
== NULL
|| !GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4481 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4483 ti
= gtk_separator_tool_item_new ();
4484 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
4490 /* Otherwise, the tool-bar item is an ordinary button. */
4492 if (ti
&& GTK_IS_SEPARATOR_TOOL_ITEM (ti
))
4494 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
4498 if (ti
) wbutton
= XG_BIN_CHILD (XG_BIN_CHILD (ti
));
4500 /* Ignore invalid image specifications. */
4501 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
4502 if (!valid_image_p (image
))
4505 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4510 specified_file
= file_for_image (image
);
4511 if (!NILP (specified_file
) && !NILP (Ffboundp (Qx_gtk_map_stock
)))
4512 stock
= call1 (Qx_gtk_map_stock
, specified_file
);
4514 if (STRINGP (stock
))
4516 stock_name
= SSDATA (stock
);
4517 if (stock_name
[0] == 'n' && stock_name
[1] == ':')
4519 GdkScreen
*screen
= gtk_widget_get_screen (GTK_WIDGET (wtoolbar
));
4520 GtkIconTheme
*icon_theme
= gtk_icon_theme_get_for_screen (screen
);
4522 icon_name
= stock_name
+ 2;
4526 if (! gtk_icon_theme_has_icon (icon_theme
, icon_name
))
4529 icon_size
= gtk_toolbar_get_icon_size (wtoolbar
);
4531 else if (gtk_stock_lookup (SSDATA (stock
), &stock_item
))
4532 icon_size
= gtk_toolbar_get_icon_size (wtoolbar
);
4540 if (stock_name
== NULL
&& icon_name
== NULL
)
4542 /* No stock image, or stock item not known. Try regular
4543 image. If image is a vector, choose it according to the
4545 if (dir
== GTK_TEXT_DIR_RTL
4546 && !NILP (rtl
= PROP (TOOL_BAR_ITEM_RTL_IMAGE
))
4548 image
= find_rtl_image (f
, image
, rtl
);
4550 if (VECTORP (image
))
4554 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4555 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
4558 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4559 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
4561 xassert (ASIZE (image
) >= idx
);
4562 image
= AREF (image
, idx
);
4567 img_id
= lookup_image (f
, image
);
4568 img
= IMAGE_FROM_ID (f
, img_id
);
4569 prepare_image_for_display (f
, img
);
4571 if (img
->load_failed_p
|| img
->pixmap
== None
)
4574 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4580 /* If there is an existing widget, check if it's stale; if so,
4581 remove it and make a new tool item from scratch. */
4582 if (ti
&& xg_tool_item_stale_p (wbutton
, stock_name
, icon_name
,
4585 gtk_container_remove (GTK_CONTAINER (wtoolbar
),
4594 /* Save the image so we can see if an update is needed the
4595 next time we call xg_tool_item_match_p. */
4596 if (EQ (style
, Qtext
))
4598 else if (stock_name
)
4600 w
= gtk_image_new_from_stock (stock_name
, icon_size
);
4601 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_STOCK_NAME
,
4602 (gpointer
) xstrdup (stock_name
),
4603 (GDestroyNotify
) xfree
);
4607 w
= gtk_image_new_from_icon_name (icon_name
, icon_size
);
4608 g_object_set_data_full (G_OBJECT (w
), XG_TOOL_BAR_ICON_NAME
,
4609 (gpointer
) xstrdup (icon_name
),
4610 (GDestroyNotify
) xfree
);
4614 w
= xg_get_image_for_pixmap (f
, img
, x
->widget
, NULL
);
4615 g_object_set_data (G_OBJECT (w
), XG_TOOL_BAR_IMAGE_DATA
,
4616 (gpointer
)img
->pixmap
);
4619 if (w
) gtk_misc_set_padding (GTK_MISC (w
), hmargin
, vmargin
);
4620 ti
= xg_make_tool_item (f
, w
, &wbutton
, label
, i
, horiz
, text_image
);
4621 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar
), ti
, j
);
4626 gtk_widget_set_sensitive (wbutton
, enabled_p
);
4630 /* Remove buttons not longer needed. */
4633 ti
= gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar
), j
);
4635 gtk_container_remove (GTK_CONTAINER (wtoolbar
), GTK_WIDGET (ti
));
4636 } while (ti
!= NULL
);
4638 if (f
->n_tool_bar_items
!= 0)
4641 xg_pack_tool_bar (f
, f
->tool_bar_position
);
4642 gtk_widget_show_all (GTK_WIDGET (x
->handlebox_widget
));
4643 if (xg_update_tool_bar_sizes (f
))
4644 xg_height_or_width_changed (f
);
4650 /* Deallocate all resources for the tool bar on frame F.
4651 Remove the tool bar. */
4654 free_frame_tool_bar (FRAME_PTR f
)
4656 struct x_output
*x
= f
->output_data
.x
;
4658 if (x
->toolbar_widget
)
4660 int is_packed
= x
->handlebox_widget
!= 0;
4662 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4663 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
4666 if (x
->toolbar_in_hbox
)
4667 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
4668 x
->handlebox_widget
);
4670 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
4671 x
->handlebox_widget
);
4674 gtk_widget_destroy (x
->toolbar_widget
);
4676 x
->toolbar_widget
= 0;
4677 x
->handlebox_widget
= 0;
4678 FRAME_TOOLBAR_TOP_HEIGHT (f
) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f
) = 0;
4679 FRAME_TOOLBAR_LEFT_WIDTH (f
) = FRAME_TOOLBAR_RIGHT_WIDTH (f
) = 0;
4681 xg_height_or_width_changed (f
);
4688 xg_change_toolbar_position (FRAME_PTR f
, Lisp_Object pos
)
4690 struct x_output
*x
= f
->output_data
.x
;
4692 if (! x
->toolbar_widget
|| ! x
->handlebox_widget
)
4696 g_object_ref (x
->handlebox_widget
);
4697 if (x
->toolbar_in_hbox
)
4698 gtk_container_remove (GTK_CONTAINER (x
->hbox_widget
),
4699 x
->handlebox_widget
);
4701 gtk_container_remove (GTK_CONTAINER (x
->vbox_widget
),
4702 x
->handlebox_widget
);
4703 xg_pack_tool_bar (f
, pos
);
4704 g_object_unref (x
->handlebox_widget
);
4705 if (xg_update_tool_bar_sizes (f
))
4706 xg_height_or_width_changed (f
);
4714 /***********************************************************************
4716 ***********************************************************************/
4718 xg_initialize (void)
4720 GtkBindingSet
*binding_set
;
4723 /* Work around a bug with corrupted data if libXft gets unloaded. This way
4724 we keep it permanently linked in. */
4729 xg_ignore_gtk_scrollbar
= 0;
4730 xg_detached_menus
= 0;
4731 xg_menu_cb_list
.prev
= xg_menu_cb_list
.next
=
4732 xg_menu_item_cb_list
.prev
= xg_menu_item_cb_list
.next
= 0;
4734 id_to_widget
.max_size
= id_to_widget
.used
= 0;
4735 id_to_widget
.widgets
= 0;
4737 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
4738 bindings. It doesn't seem to be any way to remove properties,
4739 so we set it to VoidSymbol which in X means "no key". */
4740 gtk_settings_set_string_property (gtk_settings_get_default (),
4741 "gtk-menu-bar-accel",
4745 /* Make GTK text input widgets use Emacs style keybindings. This is
4747 gtk_settings_set_string_property (gtk_settings_get_default (),
4748 "gtk-key-theme-name",
4752 /* Make dialogs close on C-g. Since file dialog inherits from
4753 dialog, this works for them also. */
4754 binding_set
= gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG
));
4755 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
4758 /* Make menus close on C-g. */
4759 binding_set
= gtk_binding_set_by_class (g_type_class_ref
4760 (GTK_TYPE_MENU_SHELL
));
4761 gtk_binding_entry_add_signal (binding_set
, GDK_KEY_g
, GDK_CONTROL_MASK
,
4763 update_theme_scrollbar_width ();
4766 #endif /* USE_GTK */