* fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive case.
[emacs.git] / src / gtkutil.c
blob4cf421b6616683827f7538a911b1cb3e72498266
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/>. */
20 #include <config.h>
22 #ifdef USE_GTK
23 #include <float.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include <setjmp.h>
27 #include "lisp.h"
28 #include "xterm.h"
29 #include "blockinput.h"
30 #include "syssignal.h"
31 #include "window.h"
32 #include "gtkutil.h"
33 #include "termhooks.h"
34 #include "keyboard.h"
35 #include "charset.h"
36 #include "coding.h"
37 #include <gdk/gdkkeysyms.h>
38 #include "xsettings.h"
40 #ifdef HAVE_XFT
41 #include <X11/Xft/Xft.h>
42 #endif
44 #ifdef HAVE_GTK3
45 #include <gtk/gtkx.h>
46 #include "emacsgtkfixed.h"
47 #endif
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))
58 #endif
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)
62 #endif
63 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
64 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
65 #endif
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))
71 #endif
72 #if GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION > 11
73 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
74 #else
75 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
76 #endif
78 #ifndef HAVE_GTK3
79 #ifdef USE_GTK_TOOLTIP
80 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
81 #endif
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)
86 #ifndef GDK_KEY_g
87 #define GDK_KEY_g GDK_g
88 #endif
89 #endif
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. */
109 static void
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);
117 if (GTK_IS_MENU (w))
118 gtk_menu_set_screen (GTK_MENU (w), gscreen);
119 else
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. */
132 void
133 xg_display_open (char *display_name, Display **dpy)
135 GdkDisplay *gdpy;
137 gdpy = gdk_display_open (display_name);
138 if (!gdpy_def && gdpy)
140 gdpy_def = gdpy;
141 gdk_display_manager_set_default_display (gdk_display_manager_get (),
142 gdpy);
145 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
149 /* Close display DPY. */
151 void
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 (),
170 gdpy_new);
171 break;
173 gdpy_def = gdpy_new;
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));
181 #else
182 /* This seems to be fixed in GTK 2.10. */
183 gdk_display_close (gdpy);
184 #endif
188 /***********************************************************************
189 Utility functions
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. */
200 widget_value *
201 malloc_widget_value (void)
203 widget_value *wv;
204 if (widget_value_free_list)
206 wv = widget_value_free_list;
207 widget_value_free_list = wv->free_list;
208 wv->free_list = 0;
210 else
212 wv = (widget_value *) xmalloc (sizeof (widget_value));
213 malloc_cpt++;
215 memset (wv, 0, sizeof (widget_value));
216 return wv;
219 /* This is analogous to free. It frees only what was allocated
220 by malloc_widget_value, and no substructures. */
222 void
223 free_widget_value (widget_value *wv)
225 if (wv->free_list)
226 abort ();
228 if (malloc_cpt > 25)
230 /* When the number of already allocated cells is too big,
231 We free it. */
232 xfree (wv);
233 malloc_cpt--;
235 else
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. */
246 GdkCursor *
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);
253 static GdkPixbuf *
254 xg_get_pixbuf_from_pixmap (FRAME_PTR f, Pixmap pix)
256 int iunused;
257 GdkPixbuf *tmp_buf;
258 Window wunused;
259 unsigned int width, height, uunused;
260 XImage *xim;
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,
266 ~0, XYPixmap);
267 if (!xim) return 0;
269 tmp_buf = gdk_pixbuf_new_from_data ((guchar *) xim->data,
270 GDK_COLORSPACE_RGB,
271 FALSE,
272 xim->bitmap_unit,
273 width,
274 height,
275 xim->bytes_per_line,
276 NULL,
277 NULL);
278 XDestroyImage (xim);
279 return tmp_buf;
282 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
284 static GdkPixbuf *
285 xg_get_pixbuf_from_pix_and_mask (FRAME_PTR f,
286 Pixmap pix,
287 Pixmap mask)
289 int width, height;
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);
299 if (mask)
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);
306 int y;
308 for (y = 0; y < height; ++y)
310 guchar *iconptr, *maskptr;
311 int x;
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. */
320 if (maskptr[0] == 0)
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));
331 return icon_buf;
334 static Lisp_Object
335 file_for_image (Lisp_Object image)
337 Lisp_Object specified_file = Qnil;
338 Lisp_Object tail;
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. */
360 static GtkWidget *
361 xg_get_image_for_pixmap (FRAME_PTR f,
362 struct image *img,
363 GtkWidget *widget,
364 GtkImage *old_widget)
366 GdkPixbuf *icon_buf;
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);
372 Lisp_Object file;
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)))
381 if (! old_widget)
382 old_widget = GTK_IMAGE (gtk_image_new_from_file (SSDATA (file)));
383 else
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
391 certain themes. */
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);
404 if (icon_buf)
406 if (! old_widget)
407 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
408 else
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. */
422 static void
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.
433 Ditto for menus. */
435 for ( ; children; children = g_list_next (children))
436 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
439 /* Insert NODE into linked LIST. */
441 static void
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;
448 node->prev = 0;
449 list->next = node;
452 /* Remove NODE from linked LIST. */
454 static void
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;
463 else
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
473 with g_free. */
475 static char *
476 get_utf8_string (const char *str)
478 char *utf8_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);
485 else
486 return g_strdup (str);
488 if (!utf8_str)
490 /* Probably some control characters in str. Escape them. */
491 ptrdiff_t len;
492 ptrdiff_t nr_bad = 0;
493 gsize bytes_read;
494 gsize bytes_written;
495 unsigned char *p = (unsigned char *)str;
496 char *cp, *up;
497 GError *err = NULL;
499 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
500 &bytes_written, &err))
501 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
503 ++nr_bad;
504 p += bytes_written+1;
505 g_error_free (err);
506 err = NULL;
509 if (err)
511 g_error_free (err);
512 err = NULL;
514 if (cp) g_free (cp);
516 len = strlen (str);
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;
531 g_error_free (err);
532 err = NULL;
535 if (cp)
537 strcat (utf8_str, cp);
538 g_free (cp);
540 if (err)
542 g_error_free (err);
543 err = NULL;
546 return utf8_str;
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,
556 XColor *color)
558 int success_p = 0;
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))
563 return success_p;
565 BLOCK_INPUT;
567 #ifdef HAVE_GTK3
568 GtkStyleContext *gsty
569 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
570 GdkRGBA col;
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;
573 if (get_fg)
574 gtk_style_context_get_color (gsty, state, &col);
575 else
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),
580 buf, color);
581 #else
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;
591 success_p = 1;
592 #endif
595 UNBLOCK_INPUT;
596 return success_p;
601 /***********************************************************************
602 Tooltips
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
610 static void
611 hierarchy_ch_cb (GtkWidget *widget,
612 GtkWidget *previous_toplevel,
613 gpointer user_data)
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. */
629 static gboolean
630 qttip_cb (GtkWidget *widget,
631 gint xpos,
632 gint ypos,
633 gboolean keyboard_mode,
634 GtkTooltip *tooltip,
635 gpointer user_data)
637 FRAME_PTR f = (FRAME_PTR) user_data;
638 struct x_output *x = f->output_data.x;
639 if (x->ttip_widget == NULL)
641 GtkWidget *p;
642 GList *list, *iter;
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);
661 g_list_free (list);
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);
672 return FALSE;
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,
682 Lisp_Object string,
683 int *width,
684 int *height)
686 #ifndef USE_GTK_TOOLTIP
687 return 0;
688 #else
689 struct x_output *x = f->output_data.x;
690 GtkWidget *widget;
691 GdkWindow *gwin;
692 GdkScreen *screen;
693 GtkSettings *settings;
694 gboolean tt_enabled = TRUE;
695 GtkRequisition req;
696 Lisp_Object encoded_string;
698 if (!x->ttip_lbl) return 0;
700 BLOCK_INPUT;
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);
707 if (tt_enabled)
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",
712 (gpointer)f);
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;
728 UNBLOCK_INPUT;
730 return 1;
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. */
737 void
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;
742 if (x->ttip_window)
744 BLOCK_INPUT;
745 gtk_window_move (x->ttip_window, root_x, root_y);
746 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
747 UNBLOCK_INPUT;
749 #endif
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
754 system tooltips). */
757 xg_hide_tooltip (FRAME_PTR f)
759 int ret = 0;
760 #ifdef USE_GTK_TOOLTIP
761 if (f->output_data.x->ttip_window)
763 GtkWindow *win = f->output_data.x->ttip_window;
764 BLOCK_INPUT;
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);
774 UNBLOCK_INPUT;
776 ret = 1;
778 #endif
779 return ret;
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. */
792 static void
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)];
803 if (xneg)
804 left = -left;
805 if (yneg)
806 top = -top;
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)),
815 geom_str))
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. */
823 static void
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),
832 FRAME_X_WINDOW (f),
833 0, 0,
834 FRAME_PIXEL_WIDTH (f),
835 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
836 x_clear_area (FRAME_X_DISPLAY (f),
837 FRAME_X_WINDOW (f),
838 0, 0,
839 FRAME_INTERNAL_BORDER_WIDTH (f),
840 FRAME_PIXEL_HEIGHT (f), 0);
841 x_clear_area (FRAME_X_DISPLAY (f),
842 FRAME_X_WINDOW (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),
847 FRAME_X_WINDOW (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. */
861 void
862 xg_frame_resized (FRAME_PTR f, int pixelwidth, int pixelheight)
864 int rows, columns;
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)),
870 0, 0,
871 &pixelwidth, &pixelheight);
872 else return;
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. */
897 void
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);
902 int pixelwidth;
904 if (FRAME_PIXEL_HEIGHT (f) == 0)
905 return;
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
911 windows. */
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 ();
946 gdk_flush ();
947 x_wait_for_event (f, ConfigureNotify);
949 else
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. */
960 static void
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. */
976 GtkWidget *
977 xg_win_to_widget (Display *dpy, Window wdesc)
979 gpointer gdkwin;
980 GtkWidget *gwdesc = 0;
982 BLOCK_INPUT;
984 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
985 wdesc);
986 if (gdkwin)
988 GdkEvent event;
989 event.any.window = gdkwin;
990 event.any.type = GDK_NOTHING;
991 gwdesc = gtk_get_event_widget (&event);
994 UNBLOCK_INPUT;
995 return gwdesc;
998 /* Set the background of widget W to PIXEL. */
1000 static void
1001 xg_set_widget_bg (FRAME_PTR f, GtkWidget *w, long unsigned int pixel)
1003 #ifdef HAVE_GTK3
1004 GdkRGBA bg;
1005 XColor xbg;
1006 xbg.pixel = 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;
1012 bg.alpha = 1.0;
1013 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1015 #else
1016 GdkColor 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);
1020 #endif
1023 /* Callback called when the gtk theme changes.
1024 We notify lisp code so it can fix faces used for region for example. */
1026 static void
1027 style_changed_cb (GObject *go,
1028 GParamSpec *spec,
1029 gpointer user_data)
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);
1036 EVENT_INIT (event);
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
1046 on this display. */
1047 if (dpy)
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. */
1064 static gboolean
1065 delete_cb (GtkWidget *widget,
1066 GdkEvent *event,
1067 gpointer user_data)
1069 #ifdef HAVE_GTK3
1070 /* The event doesn't arrive in the normal event loop. Send event
1071 here. */
1072 FRAME_PTR f = (FRAME_PTR) user_data;
1073 struct input_event ie;
1075 EVENT_INIT (ie);
1076 ie.kind = DELETE_WINDOW_EVENT;
1077 XSETFRAME (ie.frame_or_window, f);
1078 kbd_buffer_store_event (&ie);
1079 #endif
1081 return TRUE;
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)
1090 GtkWidget *wtop;
1091 GtkWidget *wvbox, *whbox;
1092 GtkWidget *wfixed;
1093 #ifndef HAVE_GTK3
1094 GtkRcStyle *style;
1095 #endif
1096 char *title = 0;
1098 BLOCK_INPUT;
1100 if (FRAME_X_EMBEDDED_P (f))
1101 wtop = gtk_plug_new (f->output_data.x->parent_desc);
1102 else
1103 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1105 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1106 has backported it to Gtk+ 2.0 and they add the resize grip for
1107 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1108 forever, so disable the grip. */
1109 #if GTK_MAJOR_VERSION < 3 && defined (HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1110 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1111 #endif
1113 xg_set_screen (wtop, f);
1115 wvbox = gtk_vbox_new (FALSE, 0);
1116 whbox = gtk_hbox_new (FALSE, 0);
1118 #ifdef HAVE_GTK3
1119 wfixed = emacs_fixed_new (f);
1120 #else
1121 wfixed = gtk_fixed_new ();
1122 #endif
1124 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1126 if (wtop) gtk_widget_destroy (wtop);
1127 if (wvbox) gtk_widget_destroy (wvbox);
1128 if (whbox) gtk_widget_destroy (whbox);
1129 if (wfixed) gtk_widget_destroy (wfixed);
1131 UNBLOCK_INPUT;
1132 return 0;
1135 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1136 gtk_widget_set_name (wtop, EMACS_CLASS);
1137 gtk_widget_set_name (wvbox, "pane");
1138 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1140 /* If this frame has a title or name, set it in the title bar. */
1141 if (! NILP (f->title)) title = SSDATA (ENCODE_UTF_8 (f->title));
1142 else if (! NILP (f->name)) title = SSDATA (ENCODE_UTF_8 (f->name));
1144 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
1146 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1147 FRAME_GTK_WIDGET (f) = wfixed;
1148 f->output_data.x->vbox_widget = wvbox;
1149 f->output_data.x->hbox_widget = whbox;
1151 gtk_widget_set_has_window (wfixed, TRUE);
1153 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1154 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1155 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1157 if (FRAME_EXTERNAL_TOOL_BAR (f))
1158 update_frame_tool_bar (f);
1160 /* We don't want this widget double buffered, because we draw on it
1161 with regular X drawing primitives, so from a GTK/GDK point of
1162 view, the widget is totally blank. When an expose comes, this
1163 will make the widget blank, and then Emacs redraws it. This flickers
1164 a lot, so we turn off double buffering. */
1165 gtk_widget_set_double_buffered (wfixed, FALSE);
1167 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1168 SSDATA (Vx_resource_name),
1169 SSDATA (Vx_resource_class));
1171 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1172 GTK is to destroy the widget. We want Emacs to do that instead. */
1173 g_signal_connect (G_OBJECT (wtop), "delete-event",
1174 G_CALLBACK (delete_cb), f);
1176 /* Convert our geometry parameters into a geometry string
1177 and specify it.
1178 GTK will itself handle calculating the real position this way. */
1179 xg_set_geometry (f);
1180 f->win_gravity
1181 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1183 gtk_widget_add_events (wfixed,
1184 GDK_POINTER_MOTION_MASK
1185 | GDK_EXPOSURE_MASK
1186 | GDK_BUTTON_PRESS_MASK
1187 | GDK_BUTTON_RELEASE_MASK
1188 | GDK_KEY_PRESS_MASK
1189 | GDK_ENTER_NOTIFY_MASK
1190 | GDK_LEAVE_NOTIFY_MASK
1191 | GDK_FOCUS_CHANGE_MASK
1192 | GDK_STRUCTURE_MASK
1193 | GDK_VISIBILITY_NOTIFY_MASK);
1195 /* Must realize the windows so the X window gets created. It is used
1196 by callers of this function. */
1197 gtk_widget_realize (wfixed);
1198 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1200 /* Since GTK clears its window by filling with the background color,
1201 we must keep X and GTK background in sync. */
1202 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1204 #ifndef HAVE_GTK3
1205 /* Also, do not let any background pixmap to be set, this looks very
1206 bad as Emacs overwrites the background pixmap with its own idea
1207 of background color. */
1208 style = gtk_widget_get_modifier_style (wfixed);
1210 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1211 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1212 gtk_widget_modify_style (wfixed, style);
1213 #else
1214 gtk_widget_set_can_focus (wfixed, TRUE);
1215 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1216 #endif
1218 #ifdef USE_GTK_TOOLTIP
1219 /* Steal a tool tip window we can move ourselves. */
1220 f->output_data.x->ttip_widget = 0;
1221 f->output_data.x->ttip_lbl = 0;
1222 f->output_data.x->ttip_window = 0;
1223 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1224 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1225 #endif
1228 GdkScreen *screen = gtk_widget_get_screen (wtop);
1229 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1230 /* Only connect this signal once per screen. */
1231 if (! g_signal_handler_find (G_OBJECT (gs),
1232 G_SIGNAL_MATCH_FUNC,
1233 0, 0, 0,
1234 G_CALLBACK (style_changed_cb),
1237 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1238 G_CALLBACK (style_changed_cb),
1239 gdk_screen_get_display (screen));
1243 UNBLOCK_INPUT;
1245 return 1;
1248 void
1249 xg_free_frame_widgets (FRAME_PTR f)
1251 if (FRAME_GTK_OUTER_WIDGET (f))
1253 #ifdef USE_GTK_TOOLTIP
1254 struct x_output *x = f->output_data.x;
1255 #endif
1256 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1257 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1258 FRAME_GTK_OUTER_WIDGET (f) = 0;
1259 #ifdef USE_GTK_TOOLTIP
1260 if (x->ttip_lbl)
1261 gtk_widget_destroy (x->ttip_lbl);
1262 if (x->ttip_widget)
1263 g_object_unref (G_OBJECT (x->ttip_widget));
1264 #endif
1268 /* Set the normal size hints for the window manager, for frame F.
1269 FLAGS is the flags word to use--or 0 meaning preserve the flags
1270 that the window now has.
1271 If USER_POSITION is nonzero, we set the User Position
1272 flag (this is useful when FLAGS is 0). */
1274 void
1275 x_wm_set_size_hint (FRAME_PTR f, long int flags, int user_position)
1277 /* Must use GTK routines here, otherwise GTK resets the size hints
1278 to its own defaults. */
1279 GdkGeometry size_hints;
1280 gint hint_flags = 0;
1281 int base_width, base_height;
1282 int min_rows = 0, min_cols = 0;
1283 int win_gravity = f->win_gravity;
1285 /* Don't set size hints during initialization; that apparently leads
1286 to a race condition. See the thread at
1287 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1288 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1289 return;
1291 if (flags)
1293 memset (&size_hints, 0, sizeof (size_hints));
1294 f->output_data.x->size_hints = size_hints;
1295 f->output_data.x->hint_flags = hint_flags;
1297 else
1298 flags = f->size_hint_flags;
1300 size_hints = f->output_data.x->size_hints;
1301 hint_flags = f->output_data.x->hint_flags;
1303 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1304 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
1305 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
1307 hint_flags |= GDK_HINT_BASE_SIZE;
1308 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0) + FRAME_TOOLBAR_WIDTH (f);
1309 /* Use one row here so base_height does not become zero.
1310 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it. */
1311 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1312 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1314 check_frame_size (f, &min_rows, &min_cols);
1315 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1317 size_hints.base_width = base_width;
1318 size_hints.base_height = base_height;
1319 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
1320 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
1322 /* These currently have a one to one mapping with the X values, but I
1323 don't think we should rely on that. */
1324 hint_flags |= GDK_HINT_WIN_GRAVITY;
1325 size_hints.win_gravity = 0;
1326 if (win_gravity == NorthWestGravity)
1327 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1328 else if (win_gravity == NorthGravity)
1329 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1330 else if (win_gravity == NorthEastGravity)
1331 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1332 else if (win_gravity == WestGravity)
1333 size_hints.win_gravity = GDK_GRAVITY_WEST;
1334 else if (win_gravity == CenterGravity)
1335 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1336 else if (win_gravity == EastGravity)
1337 size_hints.win_gravity = GDK_GRAVITY_EAST;
1338 else if (win_gravity == SouthWestGravity)
1339 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1340 else if (win_gravity == SouthGravity)
1341 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1342 else if (win_gravity == SouthEastGravity)
1343 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1344 else if (win_gravity == StaticGravity)
1345 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1347 if (user_position)
1349 hint_flags &= ~GDK_HINT_POS;
1350 hint_flags |= GDK_HINT_USER_POS;
1353 if (hint_flags != f->output_data.x->hint_flags
1354 || memcmp (&size_hints,
1355 &f->output_data.x->size_hints,
1356 sizeof (size_hints)) != 0)
1358 BLOCK_INPUT;
1359 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1360 NULL, &size_hints, hint_flags);
1361 f->output_data.x->size_hints = size_hints;
1362 f->output_data.x->hint_flags = hint_flags;
1363 UNBLOCK_INPUT;
1367 /* Change background color of a frame.
1368 Since GTK uses the background color to clear the window, we must
1369 keep the GTK and X colors in sync.
1370 F is the frame to change,
1371 BG is the pixel value to change to. */
1373 void
1374 xg_set_background_color (FRAME_PTR f, long unsigned int bg)
1376 if (FRAME_GTK_WIDGET (f))
1378 BLOCK_INPUT;
1379 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1380 UNBLOCK_INPUT;
1385 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1386 functions so GTK does not overwrite the icon. */
1388 void
1389 xg_set_frame_icon (FRAME_PTR f, Pixmap icon_pixmap, Pixmap icon_mask)
1391 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1392 icon_pixmap,
1393 icon_mask);
1394 if (gp)
1395 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1400 /***********************************************************************
1401 Dialog functions
1402 ***********************************************************************/
1403 /* Return the dialog title to use for a dialog of type KEY.
1404 This is the encoding used by lwlib. We use the same for GTK. */
1406 static const char *
1407 get_dialog_title (char key)
1409 const char *title = "";
1411 switch (key) {
1412 case 'E': case 'e':
1413 title = "Error";
1414 break;
1416 case 'I': case 'i':
1417 title = "Information";
1418 break;
1420 case 'L': case 'l':
1421 title = "Prompt";
1422 break;
1424 case 'P': case 'p':
1425 title = "Prompt";
1426 break;
1428 case 'Q': case 'q':
1429 title = "Question";
1430 break;
1433 return title;
1436 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1437 the dialog, but return TRUE so the event does not propagate further
1438 in GTK. This prevents GTK from destroying the dialog widget automatically
1439 and we can always destroy the widget manually, regardless of how
1440 it was popped down (button press or WM_DELETE_WINDOW).
1441 W is the dialog widget.
1442 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1443 user_data is NULL (not used).
1445 Returns TRUE to end propagation of event. */
1447 static gboolean
1448 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1450 gtk_widget_unmap (w);
1451 return TRUE;
1454 /* Create a popup dialog window. See also xg_create_widget below.
1455 WV is a widget_value describing the dialog.
1456 SELECT_CB is the callback to use when a button has been pressed.
1457 DEACTIVATE_CB is the callback to use when the dialog pops down.
1459 Returns the GTK dialog widget. */
1461 static GtkWidget *
1462 create_dialog (widget_value *wv,
1463 GCallback select_cb,
1464 GCallback deactivate_cb)
1466 const char *title = get_dialog_title (wv->name[0]);
1467 int total_buttons = wv->name[1] - '0';
1468 int right_buttons = wv->name[4] - '0';
1469 int left_buttons;
1470 int button_nr = 0;
1471 int button_spacing = 10;
1472 GtkWidget *wdialog = gtk_dialog_new ();
1473 GtkDialog *wd = GTK_DIALOG (wdialog);
1474 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1475 widget_value *item;
1476 GtkWidget *whbox_down;
1478 /* If the number of buttons is greater than 4, make two rows of buttons
1479 instead. This looks better. */
1480 int make_two_rows = total_buttons > 4;
1482 if (right_buttons == 0) right_buttons = total_buttons/2;
1483 left_buttons = total_buttons - right_buttons;
1485 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1486 gtk_widget_set_name (wdialog, "emacs-dialog");
1489 if (make_two_rows)
1491 GtkWidget *wvbox = gtk_vbox_new (TRUE, button_spacing);
1492 GtkWidget *whbox_up = gtk_hbox_new (FALSE, 0);
1493 whbox_down = gtk_hbox_new (FALSE, 0);
1495 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1496 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1497 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1499 cur_box = GTK_BOX (whbox_up);
1502 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1503 G_CALLBACK (dialog_delete_callback), 0);
1505 if (deactivate_cb)
1507 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1508 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1511 for (item = wv->contents; item; item = item->next)
1513 char *utf8_label = get_utf8_string (item->value);
1514 GtkWidget *w;
1515 GtkRequisition req;
1517 if (item->name && strcmp (item->name, "message") == 0)
1519 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1520 /* This is the text part of the dialog. */
1521 w = gtk_label_new (utf8_label);
1522 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1523 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1524 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1526 /* Try to make dialog look better. Must realize first so
1527 the widget can calculate the size it needs. */
1528 gtk_widget_realize (w);
1529 gtk_widget_get_preferred_size (w, NULL, &req);
1530 gtk_box_set_spacing (wvbox, req.height);
1531 if (item->value && strlen (item->value) > 0)
1532 button_spacing = 2*req.width/strlen (item->value);
1534 else
1536 /* This is one button to add to the dialog. */
1537 w = gtk_button_new_with_label (utf8_label);
1538 if (! item->enabled)
1539 gtk_widget_set_sensitive (w, FALSE);
1540 if (select_cb)
1541 g_signal_connect (G_OBJECT (w), "clicked",
1542 select_cb, item->call_data);
1544 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1545 if (++button_nr == left_buttons)
1547 if (make_two_rows)
1548 cur_box = GTK_BOX (whbox_down);
1549 else
1550 gtk_box_pack_start (cur_box,
1551 gtk_label_new (""),
1552 TRUE, TRUE,
1553 button_spacing);
1557 if (utf8_label)
1558 g_free (utf8_label);
1561 return wdialog;
1564 struct xg_dialog_data
1566 GMainLoop *loop;
1567 int response;
1568 GtkWidget *w;
1569 guint timerid;
1572 /* Function that is called when the file or font dialogs pop down.
1573 W is the dialog widget, RESPONSE is the response code.
1574 USER_DATA is what we passed in to g_signal_connect. */
1576 static void
1577 xg_dialog_response_cb (GtkDialog *w,
1578 gint response,
1579 gpointer user_data)
1581 struct xg_dialog_data *dd = (struct xg_dialog_data *)user_data;
1582 dd->response = response;
1583 g_main_loop_quit (dd->loop);
1587 /* Destroy the dialog. This makes it pop down. */
1589 static Lisp_Object
1590 pop_down_dialog (Lisp_Object arg)
1592 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
1593 struct xg_dialog_data *dd = (struct xg_dialog_data *) p->pointer;
1595 BLOCK_INPUT;
1596 if (dd->w) gtk_widget_destroy (dd->w);
1597 if (dd->timerid != 0) g_source_remove (dd->timerid);
1599 g_main_loop_quit (dd->loop);
1600 g_main_loop_unref (dd->loop);
1602 UNBLOCK_INPUT;
1604 return Qnil;
1607 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1608 We pass in DATA as gpointer* so we can use this as a callback. */
1610 static gboolean
1611 xg_maybe_add_timer (gpointer data)
1613 struct xg_dialog_data *dd = (struct xg_dialog_data *) data;
1614 EMACS_TIME next_time = timer_check ();
1615 long secs = EMACS_SECS (next_time);
1616 long usecs = EMACS_USECS (next_time);
1618 dd->timerid = 0;
1620 if (secs >= 0 && usecs >= 0 && secs < ((guint)-1)/1000)
1622 dd->timerid = g_timeout_add (secs * 1000 + usecs/1000,
1623 xg_maybe_add_timer,
1624 dd);
1626 return FALSE;
1630 /* Pops up a modal dialog W and waits for response.
1631 We don't use gtk_dialog_run because we want to process emacs timers.
1632 The dialog W is not destroyed when this function returns. */
1634 static int
1635 xg_dialog_run (FRAME_PTR f, GtkWidget *w)
1637 ptrdiff_t count = SPECPDL_INDEX ();
1638 struct xg_dialog_data dd;
1640 xg_set_screen (w, f);
1641 gtk_window_set_transient_for (GTK_WINDOW (w),
1642 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1643 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1644 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1646 dd.loop = g_main_loop_new (NULL, FALSE);
1647 dd.response = GTK_RESPONSE_CANCEL;
1648 dd.w = w;
1649 dd.timerid = 0;
1651 g_signal_connect (G_OBJECT (w),
1652 "response",
1653 G_CALLBACK (xg_dialog_response_cb),
1654 &dd);
1655 /* Don't destroy the widget if closed by the window manager close button. */
1656 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1657 gtk_widget_show (w);
1659 record_unwind_protect (pop_down_dialog, make_save_value (&dd, 0));
1661 (void) xg_maybe_add_timer (&dd);
1662 g_main_loop_run (dd.loop);
1664 dd.w = 0;
1665 unbind_to (count, Qnil);
1667 return dd.response;
1671 /***********************************************************************
1672 File dialog functions
1673 ***********************************************************************/
1674 /* Return non-zero if the old file selection dialog is being used.
1675 Return zero if not. */
1678 xg_uses_old_file_dialog (void)
1680 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1681 return x_gtk_use_old_file_dialog;
1682 #else
1683 return 0;
1684 #endif
1688 typedef char * (*xg_get_file_func) (GtkWidget *);
1690 /* Return the selected file for file chooser dialog W.
1691 The returned string must be free:d. */
1693 static char *
1694 xg_get_file_name_from_chooser (GtkWidget *w)
1696 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1699 /* Callback called when the "Show hidden files" toggle is pressed.
1700 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1702 static void
1703 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1705 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1706 gboolean visible;
1707 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1708 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1712 /* Callback called when a property changes in a file chooser.
1713 GOBJECT is the file chooser dialog, ARG1 describes the property.
1714 USER_DATA is the toggle widget in the file chooser dialog.
1715 We use this to update the "Show hidden files" toggle when the user
1716 changes that property by right clicking in the file list. */
1718 static void
1719 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1721 if (strcmp (arg1->name, "show-hidden") == 0)
1723 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1724 gboolean visible, toggle_on;
1726 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1727 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1729 if (!!visible != !!toggle_on)
1731 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1732 G_CALLBACK (xg_toggle_visibility_cb),
1733 gobject);
1734 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1735 g_signal_handlers_unblock_by_func
1736 (G_OBJECT (wtoggle),
1737 G_CALLBACK (xg_toggle_visibility_cb),
1738 gobject);
1740 x_gtk_show_hidden_files = visible;
1744 /* Read a file name from the user using a file chooser dialog.
1745 F is the current frame.
1746 PROMPT is a prompt to show to the user. May not be NULL.
1747 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1748 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1749 file. (Actually, this only has cosmetic effects, the user can
1750 still enter a non-existing file.) *FUNC is set to a function that
1751 can be used to retrieve the selected file name from the returned widget.
1753 Returns the created widget. */
1755 static GtkWidget *
1756 xg_get_file_with_chooser (FRAME_PTR f,
1757 char *prompt,
1758 char *default_filename,
1759 int mustmatch_p, int only_dir_p,
1760 xg_get_file_func *func)
1762 char msgbuf[1024];
1764 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
1765 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1766 GtkFileChooserAction action = (mustmatch_p ?
1767 GTK_FILE_CHOOSER_ACTION_OPEN :
1768 GTK_FILE_CHOOSER_ACTION_SAVE);
1770 if (only_dir_p)
1771 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1773 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1774 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1775 (mustmatch_p || only_dir_p ?
1776 GTK_STOCK_OPEN : GTK_STOCK_OK),
1777 GTK_RESPONSE_OK,
1778 NULL);
1779 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1781 wbox = gtk_vbox_new (FALSE, 0);
1782 gtk_widget_show (wbox);
1783 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1785 if (x_gtk_show_hidden_files)
1787 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1788 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1790 gtk_widget_show (wtoggle);
1791 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1792 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1793 g_signal_connect (G_OBJECT (filewin), "notify",
1794 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1796 if (x_gtk_file_dialog_help_text)
1798 msgbuf[0] = '\0';
1799 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1800 Show the C-l help text only for versions < 2.10. */
1801 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1802 strcat (msgbuf, "\nType C-l to display a file name text entry box.\n");
1803 strcat (msgbuf, "\nIf you don't like this file selector, use the "
1804 "corresponding\nkey binding or customize "
1805 "use-file-dialog to turn it off.");
1807 wmessage = gtk_label_new (msgbuf);
1808 gtk_widget_show (wmessage);
1811 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1812 if (x_gtk_file_dialog_help_text)
1813 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1814 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1816 if (default_filename)
1818 Lisp_Object file;
1819 struct gcpro gcpro1;
1820 char *utf8_filename;
1821 GCPRO1 (file);
1823 file = build_string (default_filename);
1825 /* File chooser does not understand ~/... in the file name. It must be
1826 an absolute name starting with /. */
1827 if (default_filename[0] != '/')
1828 file = Fexpand_file_name (file, Qnil);
1830 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1831 if (! NILP (Ffile_directory_p (file)))
1832 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1833 utf8_filename);
1834 else
1836 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1837 utf8_filename);
1838 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1840 char *cp = strrchr (utf8_filename, '/');
1841 if (cp) ++cp;
1842 else cp = utf8_filename;
1843 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1847 UNGCPRO;
1850 *func = xg_get_file_name_from_chooser;
1851 return filewin;
1854 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1856 /* Return the selected file for file selector dialog W.
1857 The returned string must be free:d. */
1859 static char *
1860 xg_get_file_name_from_selector (GtkWidget *w)
1862 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1863 return xstrdup ((char*) gtk_file_selection_get_filename (filesel));
1866 /* Create a file selection dialog.
1867 F is the current frame.
1868 PROMPT is a prompt to show to the user. May not be NULL.
1869 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1870 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1871 file. *FUNC is set to a function that can be used to retrieve the
1872 selected file name from the returned widget.
1874 Returns the created widget. */
1876 static GtkWidget *
1877 xg_get_file_with_selection (FRAME_PTR f,
1878 char *prompt,
1879 char *default_filename,
1880 int mustmatch_p, int only_dir_p,
1881 xg_get_file_func *func)
1883 GtkWidget *filewin;
1884 GtkFileSelection *filesel;
1886 filewin = gtk_file_selection_new (prompt);
1887 filesel = GTK_FILE_SELECTION (filewin);
1889 if (default_filename)
1890 gtk_file_selection_set_filename (filesel, default_filename);
1892 if (mustmatch_p)
1894 /* The selection_entry part of filesel is not documented. */
1895 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1896 gtk_file_selection_hide_fileop_buttons (filesel);
1899 *func = xg_get_file_name_from_selector;
1901 return filewin;
1903 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1905 /* Read a file name from the user using a file dialog, either the old
1906 file selection dialog, or the new file chooser dialog. Which to use
1907 depends on what the GTK version used has, and what the value of
1908 gtk-use-old-file-dialog.
1909 F is the current frame.
1910 PROMPT is a prompt to show to the user. May not be NULL.
1911 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1912 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1913 file.
1915 Returns a file name or NULL if no file was selected.
1916 The returned string must be freed by the caller. */
1918 char *
1919 xg_get_file_name (FRAME_PTR f,
1920 char *prompt,
1921 char *default_filename,
1922 int mustmatch_p,
1923 int only_dir_p)
1925 GtkWidget *w = 0;
1926 char *fn = 0;
1927 int filesel_done = 0;
1928 xg_get_file_func func;
1930 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1931 /* I really don't know why this is needed, but without this the GLIBC add on
1932 library linuxthreads hangs when the Gnome file chooser backend creates
1933 threads. */
1934 sigblock (sigmask (__SIGRTMIN));
1935 #endif /* HAVE_PTHREAD */
1937 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1939 if (xg_uses_old_file_dialog ())
1940 w = xg_get_file_with_selection (f, prompt, default_filename,
1941 mustmatch_p, only_dir_p, &func);
1942 else
1943 w = xg_get_file_with_chooser (f, prompt, default_filename,
1944 mustmatch_p, only_dir_p, &func);
1946 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
1947 w = xg_get_file_with_chooser (f, prompt, default_filename,
1948 mustmatch_p, only_dir_p, &func);
1949 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
1951 gtk_widget_set_name (w, "emacs-filedialog");
1953 filesel_done = xg_dialog_run (f, w);
1955 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1956 sigunblock (sigmask (__SIGRTMIN));
1957 #endif
1959 if (filesel_done == GTK_RESPONSE_OK)
1960 fn = (*func) (w);
1962 gtk_widget_destroy (w);
1963 return fn;
1966 #ifdef HAVE_FREETYPE
1967 /* Pop up a GTK font selector and return the name of the font the user
1968 selects, as a C string. The returned font name follows GTK's own
1969 format:
1971 `FAMILY [VALUE1 VALUE2] SIZE'
1973 This can be parsed using font_parse_fcname in font.c.
1974 DEFAULT_NAME, if non-zero, is the default font name. */
1976 char *
1977 xg_get_font_name (FRAME_PTR f, const char *default_name)
1979 GtkWidget *w;
1980 char *fontname = NULL;
1981 int done = 0;
1983 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1984 sigblock (sigmask (__SIGRTMIN));
1985 #endif /* HAVE_PTHREAD */
1987 w = gtk_font_selection_dialog_new ("Pick a font");
1988 if (!default_name)
1989 default_name = "Monospace 10";
1990 gtk_font_selection_dialog_set_font_name (GTK_FONT_SELECTION_DIALOG (w),
1991 default_name);
1993 gtk_widget_set_name (w, "emacs-fontdialog");
1995 done = xg_dialog_run (f, w);
1997 #if defined (HAVE_PTHREAD) && defined (__SIGRTMIN)
1998 sigunblock (sigmask (__SIGRTMIN));
1999 #endif
2001 if (done == GTK_RESPONSE_OK)
2002 fontname = gtk_font_selection_dialog_get_font_name
2003 (GTK_FONT_SELECTION_DIALOG (w));
2005 gtk_widget_destroy (w);
2006 return fontname;
2008 #endif /* HAVE_FREETYPE */
2012 /***********************************************************************
2013 Menu functions.
2014 ***********************************************************************/
2016 /* The name of menu items that can be used for customization. Since GTK
2017 RC files are very crude and primitive, we have to set this on all
2018 menu item names so a user can easily customize menu items. */
2020 #define MENU_ITEM_NAME "emacs-menuitem"
2023 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2024 during GC. The next member points to the items. */
2025 static xg_list_node xg_menu_cb_list;
2027 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2028 during GC. The next member points to the items. */
2029 static xg_list_node xg_menu_item_cb_list;
2031 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2032 F is the frame CL_DATA will be initialized for.
2033 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2035 The menu bar and all sub menus under the menu bar in a frame
2036 share the same structure, hence the reference count.
2038 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2039 allocated xg_menu_cb_data if CL_DATA is NULL. */
2041 static xg_menu_cb_data *
2042 make_cl_data (xg_menu_cb_data *cl_data, FRAME_PTR f, GCallback highlight_cb)
2044 if (! cl_data)
2046 cl_data = (xg_menu_cb_data*) xmalloc (sizeof (*cl_data));
2047 cl_data->f = f;
2048 cl_data->menu_bar_vector = f->menu_bar_vector;
2049 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2050 cl_data->highlight_cb = highlight_cb;
2051 cl_data->ref_count = 0;
2053 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2056 cl_data->ref_count++;
2058 return cl_data;
2061 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2062 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2064 When the menu bar is updated, menu items may have been added and/or
2065 removed, so menu_bar_vector and menu_bar_items_used change. We must
2066 then update CL_DATA since it is used to determine which menu
2067 item that is invoked in the menu.
2068 HIGHLIGHT_CB could change, there is no check that the same
2069 function is given when modifying a menu bar as was given when
2070 creating the menu bar. */
2072 static void
2073 update_cl_data (xg_menu_cb_data *cl_data,
2074 FRAME_PTR f,
2075 GCallback highlight_cb)
2077 if (cl_data)
2079 cl_data->f = f;
2080 cl_data->menu_bar_vector = f->menu_bar_vector;
2081 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2082 cl_data->highlight_cb = highlight_cb;
2086 /* Decrease reference count for CL_DATA.
2087 If reference count is zero, free CL_DATA. */
2089 static void
2090 unref_cl_data (xg_menu_cb_data *cl_data)
2092 if (cl_data && cl_data->ref_count > 0)
2094 cl_data->ref_count--;
2095 if (cl_data->ref_count == 0)
2097 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2098 xfree (cl_data);
2103 /* Function that marks all lisp data during GC. */
2105 void
2106 xg_mark_data (void)
2108 xg_list_node *iter;
2110 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2111 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2113 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2115 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2117 if (! NILP (cb_data->help))
2118 mark_object (cb_data->help);
2123 /* Callback called when a menu item is destroyed. Used to free data.
2124 W is the widget that is being destroyed (not used).
2125 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2127 static void
2128 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2130 if (client_data)
2132 xg_menu_item_cb_data *data = (xg_menu_item_cb_data*) client_data;
2133 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2134 xfree (data);
2138 /* Callback called when the pointer enters/leaves a menu item.
2139 W is the parent of the menu item.
2140 EVENT is either an enter event or leave event.
2141 CLIENT_DATA is not used.
2143 Returns FALSE to tell GTK to keep processing this event. */
2145 static gboolean
2146 menuitem_highlight_callback (GtkWidget *w,
2147 GdkEventCrossing *event,
2148 gpointer client_data)
2150 GdkEvent ev;
2151 GtkWidget *subwidget;
2152 xg_menu_item_cb_data *data;
2154 ev.crossing = *event;
2155 subwidget = gtk_get_event_widget (&ev);
2156 data = (xg_menu_item_cb_data *) g_object_get_data (G_OBJECT (subwidget),
2157 XG_ITEM_DATA);
2158 if (data)
2160 if (! NILP (data->help) && data->cl_data->highlight_cb)
2162 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2163 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2164 (*func) (subwidget, call_data);
2168 return FALSE;
2171 /* Callback called when a menu is destroyed. Used to free data.
2172 W is the widget that is being destroyed (not used).
2173 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2175 static void
2176 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2178 unref_cl_data ((xg_menu_cb_data*) client_data);
2181 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2182 must be non-NULL) and can be inserted into a menu item.
2184 Returns the GtkHBox. */
2186 static GtkWidget *
2187 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2189 GtkWidget *wlbl;
2190 GtkWidget *wkey;
2191 GtkWidget *wbox;
2193 wbox = gtk_hbox_new (FALSE, 0);
2194 wlbl = gtk_label_new (utf8_label);
2195 wkey = gtk_label_new (utf8_key);
2197 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2198 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2200 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2201 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2203 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2204 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2205 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2207 return wbox;
2210 /* Make and return a menu item widget with the key to the right.
2211 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2212 UTF8_KEY is the text representing the key binding.
2213 ITEM is the widget_value describing the menu item.
2215 GROUP is an in/out parameter. If the menu item to be created is not
2216 part of any radio menu group, *GROUP contains NULL on entry and exit.
2217 If the menu item to be created is part of a radio menu group, on entry
2218 *GROUP contains the group to use, or NULL if this is the first item
2219 in the group. On exit, *GROUP contains the radio item group.
2221 Unfortunately, keys don't line up as nicely as in Motif,
2222 but the MacOS X version doesn't either, so I guess that is OK. */
2224 static GtkWidget *
2225 make_menu_item (const char *utf8_label,
2226 const char *utf8_key,
2227 widget_value *item,
2228 GSList **group)
2230 GtkWidget *w;
2231 GtkWidget *wtoadd = 0;
2233 /* It has been observed that some menu items have a NULL name field.
2234 This will lead to this function being called with a NULL utf8_label.
2235 GTK crashes on that so we set a blank label. Why there is a NULL
2236 name remains to be investigated. */
2237 if (! utf8_label) utf8_label = " ";
2239 if (utf8_key)
2240 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2242 if (item->button_type == BUTTON_TYPE_TOGGLE)
2244 *group = NULL;
2245 if (utf8_key) w = gtk_check_menu_item_new ();
2246 else w = gtk_check_menu_item_new_with_label (utf8_label);
2247 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2249 else if (item->button_type == BUTTON_TYPE_RADIO)
2251 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2252 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2253 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2254 if (item->selected)
2255 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2257 else
2259 *group = NULL;
2260 if (utf8_key) w = gtk_menu_item_new ();
2261 else w = gtk_menu_item_new_with_label (utf8_label);
2264 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2265 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2267 return w;
2270 static int xg_detached_menus;
2272 /* Returns non-zero if there are detached menus. */
2275 xg_have_tear_offs (void)
2277 return xg_detached_menus > 0;
2280 /* Callback invoked when a detached menu window is removed. Here we
2281 decrease the xg_detached_menus count.
2282 WIDGET is the top level window that is removed (the parent of the menu).
2283 CLIENT_DATA is not used. */
2285 static void
2286 tearoff_remove (GtkWidget *widget, gpointer client_data)
2288 if (xg_detached_menus > 0) --xg_detached_menus;
2291 /* Callback invoked when a menu is detached. It increases the
2292 xg_detached_menus count.
2293 WIDGET is the GtkTearoffMenuItem.
2294 CLIENT_DATA is not used. */
2296 static void
2297 tearoff_activate (GtkWidget *widget, gpointer client_data)
2299 GtkWidget *menu = gtk_widget_get_parent (widget);
2300 if (gtk_menu_get_tearoff_state (GTK_MENU (menu)))
2302 ++xg_detached_menus;
2303 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget)),
2304 "destroy",
2305 G_CALLBACK (tearoff_remove), 0);
2310 /* Create a menu item widget, and connect the callbacks.
2311 ITEM describes the menu item.
2312 F is the frame the created menu belongs to.
2313 SELECT_CB is the callback to use when a menu item is selected.
2314 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2315 CL_DATA points to the callback data to be used for this menu.
2316 GROUP is an in/out parameter. If the menu item to be created is not
2317 part of any radio menu group, *GROUP contains NULL on entry and exit.
2318 If the menu item to be created is part of a radio menu group, on entry
2319 *GROUP contains the group to use, or NULL if this is the first item
2320 in the group. On exit, *GROUP contains the radio item group.
2322 Returns the created GtkWidget. */
2324 static GtkWidget *
2325 xg_create_one_menuitem (widget_value *item,
2326 FRAME_PTR f,
2327 GCallback select_cb,
2328 GCallback highlight_cb,
2329 xg_menu_cb_data *cl_data,
2330 GSList **group)
2332 char *utf8_label;
2333 char *utf8_key;
2334 GtkWidget *w;
2335 xg_menu_item_cb_data *cb_data;
2337 utf8_label = get_utf8_string (item->name);
2338 utf8_key = get_utf8_string (item->key);
2340 w = make_menu_item (utf8_label, utf8_key, item, group);
2342 if (utf8_label) g_free (utf8_label);
2343 if (utf8_key) g_free (utf8_key);
2345 cb_data = xmalloc (sizeof (xg_menu_item_cb_data));
2347 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2349 cb_data->select_id = 0;
2350 cb_data->help = item->help;
2351 cb_data->cl_data = cl_data;
2352 cb_data->call_data = item->call_data;
2354 g_signal_connect (G_OBJECT (w),
2355 "destroy",
2356 G_CALLBACK (menuitem_destroy_callback),
2357 cb_data);
2359 /* Put cb_data in widget, so we can get at it when modifying menubar */
2360 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2362 /* final item, not a submenu */
2363 if (item->call_data && ! item->contents)
2365 if (select_cb)
2366 cb_data->select_id
2367 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2370 return w;
2373 /* Create a full menu tree specified by DATA.
2374 F is the frame the created menu belongs to.
2375 SELECT_CB is the callback to use when a menu item is selected.
2376 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2377 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2378 POP_UP_P is non-zero if we shall create a popup menu.
2379 MENU_BAR_P is non-zero if we shall create a menu bar.
2380 ADD_TEAROFF_P is non-zero if we shall add a tearoff menu item. Ignored
2381 if MENU_BAR_P is non-zero.
2382 TOPMENU is the topmost GtkWidget that others shall be placed under.
2383 It may be NULL, in that case we create the appropriate widget
2384 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2385 CL_DATA is the callback data we shall use for this menu, or NULL
2386 if we haven't set the first callback yet.
2387 NAME is the name to give to the top level menu if this function
2388 creates it. May be NULL to not set any name.
2390 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2391 not NULL.
2393 This function calls itself to create submenus. */
2395 static GtkWidget *
2396 create_menus (widget_value *data,
2397 FRAME_PTR f,
2398 GCallback select_cb,
2399 GCallback deactivate_cb,
2400 GCallback highlight_cb,
2401 int pop_up_p,
2402 int menu_bar_p,
2403 int add_tearoff_p,
2404 GtkWidget *topmenu,
2405 xg_menu_cb_data *cl_data,
2406 const char *name)
2408 widget_value *item;
2409 GtkWidget *wmenu = topmenu;
2410 GSList *group = NULL;
2412 if (! topmenu)
2414 if (! menu_bar_p)
2416 wmenu = gtk_menu_new ();
2417 xg_set_screen (wmenu, f);
2418 /* Connect this to the menu instead of items so we get enter/leave for
2419 disabled items also. TODO: Still does not get enter/leave for
2420 disabled items in detached menus. */
2421 g_signal_connect (G_OBJECT (wmenu),
2422 "enter-notify-event",
2423 G_CALLBACK (menuitem_highlight_callback),
2424 NULL);
2425 g_signal_connect (G_OBJECT (wmenu),
2426 "leave-notify-event",
2427 G_CALLBACK (menuitem_highlight_callback),
2428 NULL);
2430 else
2432 wmenu = gtk_menu_bar_new ();
2433 /* Set width of menu bar to a small value so it doesn't enlarge
2434 a small initial frame size. The width will be set to the
2435 width of the frame later on when it is added to a container.
2436 height -1: Natural height. */
2437 gtk_widget_set_size_request (wmenu, 1, -1);
2440 /* Put cl_data on the top menu for easier access. */
2441 cl_data = make_cl_data (cl_data, f, highlight_cb);
2442 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2443 g_signal_connect (G_OBJECT (wmenu), "destroy",
2444 G_CALLBACK (menu_destroy_callback), cl_data);
2446 if (name)
2447 gtk_widget_set_name (wmenu, name);
2449 if (deactivate_cb)
2450 g_signal_connect (G_OBJECT (wmenu),
2451 "selection-done", deactivate_cb, 0);
2454 if (! menu_bar_p && add_tearoff_p)
2456 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
2457 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
2459 g_signal_connect (G_OBJECT (tearoff), "activate",
2460 G_CALLBACK (tearoff_activate), 0);
2463 for (item = data; item; item = item->next)
2465 GtkWidget *w;
2467 if (pop_up_p && !item->contents && !item->call_data
2468 && !menu_separator_name_p (item->name))
2470 char *utf8_label;
2471 /* A title for a popup. We do the same as GTK does when
2472 creating titles, but it does not look good. */
2473 group = NULL;
2474 utf8_label = get_utf8_string (item->name);
2476 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
2477 w = gtk_menu_item_new_with_label (utf8_label);
2478 gtk_widget_set_sensitive (w, FALSE);
2479 if (utf8_label) g_free (utf8_label);
2481 else if (menu_separator_name_p (item->name))
2483 group = NULL;
2484 /* GTK only have one separator type. */
2485 w = gtk_separator_menu_item_new ();
2487 else
2489 w = xg_create_one_menuitem (item,
2491 item->contents ? 0 : select_cb,
2492 highlight_cb,
2493 cl_data,
2494 &group);
2496 /* Create a possibly empty submenu for menu bar items, since some
2497 themes don't highlight items correctly without it. */
2498 if (item->contents || menu_bar_p)
2500 GtkWidget *submenu = create_menus (item->contents,
2502 select_cb,
2503 deactivate_cb,
2504 highlight_cb,
2507 add_tearoff_p,
2509 cl_data,
2511 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2515 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2516 gtk_widget_set_name (w, MENU_ITEM_NAME);
2519 return wmenu;
2522 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2523 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2524 with some text and buttons.
2525 F is the frame the created item belongs to.
2526 NAME is the name to use for the top widget.
2527 VAL is a widget_value structure describing items to be created.
2528 SELECT_CB is the callback to use when a menu item is selected or
2529 a dialog button is pressed.
2530 DEACTIVATE_CB is the callback to use when an item is deactivated.
2531 For a menu, when a sub menu is not shown anymore, for a dialog it is
2532 called when the dialog is popped down.
2533 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2535 Returns the widget created. */
2537 GtkWidget *
2538 xg_create_widget (const char *type, const char *name, FRAME_PTR f, widget_value *val,
2539 GCallback select_cb, GCallback deactivate_cb,
2540 GCallback highlight_cb)
2542 GtkWidget *w = 0;
2543 int menu_bar_p = strcmp (type, "menubar") == 0;
2544 int pop_up_p = strcmp (type, "popup") == 0;
2546 if (strcmp (type, "dialog") == 0)
2548 w = create_dialog (val, select_cb, deactivate_cb);
2549 xg_set_screen (w, f);
2550 gtk_window_set_transient_for (GTK_WINDOW (w),
2551 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2552 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2553 gtk_widget_set_name (w, "emacs-dialog");
2554 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2556 else if (menu_bar_p || pop_up_p)
2558 w = create_menus (val->contents,
2560 select_cb,
2561 deactivate_cb,
2562 highlight_cb,
2563 pop_up_p,
2564 menu_bar_p,
2565 menu_bar_p,
2568 name);
2570 /* Set the cursor to an arrow for popup menus when they are mapped.
2571 This is done by default for menu bar menus. */
2572 if (pop_up_p)
2574 /* Must realize so the GdkWindow inside the widget is created. */
2575 gtk_widget_realize (w);
2576 xg_set_cursor (w, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
2579 else
2581 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2582 type);
2585 return w;
2588 /* Return the label for menu item WITEM. */
2590 static const char *
2591 xg_get_menu_item_label (GtkMenuItem *witem)
2593 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2594 return gtk_label_get_label (wlabel);
2597 /* Return non-zero if the menu item WITEM has the text LABEL. */
2599 static int
2600 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2602 int is_same = 0;
2603 char *utf8_label = get_utf8_string (label);
2604 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2606 if (! old_label && ! utf8_label)
2607 is_same = 1;
2608 else if (old_label && utf8_label)
2609 is_same = strcmp (utf8_label, old_label) == 0;
2611 if (utf8_label) g_free (utf8_label);
2613 return is_same;
2616 /* Destroy widgets in LIST. */
2618 static void
2619 xg_destroy_widgets (GList *list)
2621 GList *iter;
2623 for (iter = list; iter; iter = g_list_next (iter))
2625 GtkWidget *w = GTK_WIDGET (iter->data);
2627 /* Destroying the widget will remove it from the container it is in. */
2628 gtk_widget_destroy (w);
2632 /* Update the top level names in MENUBAR (i.e. not submenus).
2633 F is the frame the menu bar belongs to.
2634 *LIST is a list with the current menu bar names (menu item widgets).
2635 ITER is the item within *LIST that shall be updated.
2636 POS is the numerical position, starting at 0, of ITER in *LIST.
2637 VAL describes what the menu bar shall look like after the update.
2638 SELECT_CB is the callback to use when a menu item is selected.
2639 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2640 CL_DATA points to the callback data to be used for this menu bar.
2642 This function calls itself to walk through the menu bar names. */
2644 static void
2645 xg_update_menubar (GtkWidget *menubar,
2646 FRAME_PTR f,
2647 GList **list,
2648 GList *iter,
2649 int pos,
2650 widget_value *val,
2651 GCallback select_cb,
2652 GCallback deactivate_cb,
2653 GCallback highlight_cb,
2654 xg_menu_cb_data *cl_data)
2656 if (! iter && ! val)
2657 return;
2658 else if (iter && ! val)
2660 /* Item(s) have been removed. Remove all remaining items. */
2661 xg_destroy_widgets (iter);
2663 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2664 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2665 gtk_menu_item_new_with_label (""),
2667 /* All updated. */
2668 val = 0;
2669 iter = 0;
2671 else if (! iter && val)
2673 /* Item(s) added. Add all new items in one call. */
2674 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2675 0, 1, 0, menubar, cl_data, 0);
2677 /* All updated. */
2678 val = 0;
2679 iter = 0;
2681 /* Below this neither iter or val is NULL */
2682 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2684 /* This item is still the same, check next item. */
2685 val = val->next;
2686 iter = g_list_next (iter);
2687 ++pos;
2689 else /* This item is changed. */
2691 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2692 GtkMenuItem *witem2 = 0;
2693 int val_in_menubar = 0;
2694 int iter_in_new_menubar = 0;
2695 GList *iter2;
2696 widget_value *cur;
2698 /* See if the changed entry (val) is present later in the menu bar */
2699 for (iter2 = iter;
2700 iter2 && ! val_in_menubar;
2701 iter2 = g_list_next (iter2))
2703 witem2 = GTK_MENU_ITEM (iter2->data);
2704 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2707 /* See if the current entry (iter) is present later in the
2708 specification for the new menu bar. */
2709 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2710 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2712 if (val_in_menubar && ! iter_in_new_menubar)
2714 int nr = pos;
2716 /* This corresponds to:
2717 Current: A B C
2718 New: A C
2719 Remove B. */
2721 g_object_ref (G_OBJECT (witem));
2722 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2723 gtk_widget_destroy (GTK_WIDGET (witem));
2725 /* Must get new list since the old changed. */
2726 g_list_free (*list);
2727 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2728 while (nr-- > 0) iter = g_list_next (iter);
2730 else if (! val_in_menubar && ! iter_in_new_menubar)
2732 /* This corresponds to:
2733 Current: A B C
2734 New: A X C
2735 Rename B to X. This might seem to be a strange thing to do,
2736 since if there is a menu under B it will be totally wrong for X.
2737 But consider editing a C file. Then there is a C-mode menu
2738 (corresponds to B above).
2739 If then doing C-x C-f the minibuf menu (X above) replaces the
2740 C-mode menu. When returning from the minibuffer, we get
2741 back the C-mode menu. Thus we do:
2742 Rename B to X (C-mode to minibuf menu)
2743 Rename X to B (minibuf to C-mode menu).
2744 If the X menu hasn't been invoked, the menu under B
2745 is up to date when leaving the minibuffer. */
2746 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2747 char *utf8_label = get_utf8_string (val->name);
2748 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
2750 gtk_label_set_text (wlabel, utf8_label);
2752 /* If this item has a submenu that has been detached, change
2753 the title in the WM decorations also. */
2754 if (submenu && gtk_menu_get_tearoff_state (GTK_MENU (submenu)))
2755 /* Set the title of the detached window. */
2756 gtk_menu_set_title (GTK_MENU (submenu), utf8_label);
2758 if (utf8_label) g_free (utf8_label);
2759 iter = g_list_next (iter);
2760 val = val->next;
2761 ++pos;
2763 else if (! val_in_menubar && iter_in_new_menubar)
2765 /* This corresponds to:
2766 Current: A B C
2767 New: A X B C
2768 Insert X. */
2770 int nr = pos;
2771 GSList *group = 0;
2772 GtkWidget *w = xg_create_one_menuitem (val,
2774 select_cb,
2775 highlight_cb,
2776 cl_data,
2777 &group);
2779 /* Create a possibly empty submenu for menu bar items, since some
2780 themes don't highlight items correctly without it. */
2781 GtkWidget *submenu = create_menus (NULL, f,
2782 select_cb, deactivate_cb,
2783 highlight_cb,
2784 0, 0, 0, 0, cl_data, 0);
2785 gtk_widget_set_name (w, MENU_ITEM_NAME);
2786 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2787 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2789 g_list_free (*list);
2790 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2791 while (nr-- > 0) iter = g_list_next (iter);
2792 iter = g_list_next (iter);
2793 val = val->next;
2794 ++pos;
2796 else /* if (val_in_menubar && iter_in_new_menubar) */
2798 int nr = pos;
2799 /* This corresponds to:
2800 Current: A B C
2801 New: A C B
2802 Move C before B */
2804 g_object_ref (G_OBJECT (witem2));
2805 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2806 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2807 GTK_WIDGET (witem2), pos);
2808 g_object_unref (G_OBJECT (witem2));
2810 g_list_free (*list);
2811 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2812 while (nr-- > 0) iter = g_list_next (iter);
2813 if (iter) iter = g_list_next (iter);
2814 val = val->next;
2815 ++pos;
2819 /* Update the rest of the menu bar. */
2820 xg_update_menubar (menubar, f, list, iter, pos, val,
2821 select_cb, deactivate_cb, highlight_cb, cl_data);
2824 /* Update the menu item W so it corresponds to VAL.
2825 SELECT_CB is the callback to use when a menu item is selected.
2826 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2827 CL_DATA is the data to set in the widget for menu invocation. */
2829 static void
2830 xg_update_menu_item (widget_value *val,
2831 GtkWidget *w,
2832 GCallback select_cb,
2833 GCallback highlight_cb,
2834 xg_menu_cb_data *cl_data)
2836 GtkWidget *wchild;
2837 GtkLabel *wlbl = 0;
2838 GtkLabel *wkey = 0;
2839 char *utf8_label;
2840 char *utf8_key;
2841 const char *old_label = 0;
2842 const char *old_key = 0;
2843 xg_menu_item_cb_data *cb_data;
2845 wchild = XG_BIN_CHILD (w);
2846 utf8_label = get_utf8_string (val->name);
2847 utf8_key = get_utf8_string (val->key);
2849 /* See if W is a menu item with a key. See make_menu_item above. */
2850 if (GTK_IS_HBOX (wchild))
2852 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
2854 wlbl = GTK_LABEL (list->data);
2855 wkey = GTK_LABEL (list->next->data);
2856 g_list_free (list);
2858 if (! utf8_key)
2860 /* Remove the key and keep just the label. */
2861 g_object_ref (G_OBJECT (wlbl));
2862 gtk_container_remove (GTK_CONTAINER (w), wchild);
2863 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
2864 g_object_unref (G_OBJECT (wlbl));
2865 wkey = 0;
2869 else /* Just a label. */
2871 wlbl = GTK_LABEL (wchild);
2873 /* Check if there is now a key. */
2874 if (utf8_key)
2876 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2877 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
2879 wlbl = GTK_LABEL (list->data);
2880 wkey = GTK_LABEL (list->next->data);
2881 g_list_free (list);
2883 gtk_container_remove (GTK_CONTAINER (w), wchild);
2884 gtk_container_add (GTK_CONTAINER (w), wtoadd);
2889 if (wkey) old_key = gtk_label_get_label (wkey);
2890 if (wlbl) old_label = gtk_label_get_label (wlbl);
2892 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
2893 gtk_label_set_text (wkey, utf8_key);
2895 if (! old_label || strcmp (utf8_label, old_label) != 0)
2896 gtk_label_set_text (wlbl, utf8_label);
2898 if (utf8_key) g_free (utf8_key);
2899 if (utf8_label) g_free (utf8_label);
2901 if (! val->enabled && gtk_widget_get_sensitive (w))
2902 gtk_widget_set_sensitive (w, FALSE);
2903 else if (val->enabled && ! gtk_widget_get_sensitive (w))
2904 gtk_widget_set_sensitive (w, TRUE);
2906 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (w),
2907 XG_ITEM_DATA);
2908 if (cb_data)
2910 cb_data->call_data = val->call_data;
2911 cb_data->help = val->help;
2912 cb_data->cl_data = cl_data;
2914 /* We assume the callback functions don't change. */
2915 if (val->call_data && ! val->contents)
2917 /* This item shall have a select callback. */
2918 if (! cb_data->select_id)
2919 cb_data->select_id
2920 = g_signal_connect (G_OBJECT (w), "activate",
2921 select_cb, cb_data);
2923 else if (cb_data->select_id)
2925 g_signal_handler_disconnect (w, cb_data->select_id);
2926 cb_data->select_id = 0;
2931 /* Update the toggle menu item W so it corresponds to VAL. */
2933 static void
2934 xg_update_toggle_item (widget_value *val, GtkWidget *w)
2936 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2939 /* Update the radio menu item W so it corresponds to VAL. */
2941 static void
2942 xg_update_radio_item (widget_value *val, GtkWidget *w)
2944 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2947 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
2948 SUBMENU may be NULL, in that case a new menu is created.
2949 F is the frame the menu bar belongs to.
2950 VAL describes the contents of the menu bar.
2951 SELECT_CB is the callback to use when a menu item is selected.
2952 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2953 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2954 CL_DATA is the call back data to use for any newly created items.
2956 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
2957 was NULL. */
2959 static GtkWidget *
2960 xg_update_submenu (GtkWidget *submenu,
2961 FRAME_PTR f,
2962 widget_value *val,
2963 GCallback select_cb,
2964 GCallback deactivate_cb,
2965 GCallback highlight_cb,
2966 xg_menu_cb_data *cl_data)
2968 GtkWidget *newsub = submenu;
2969 GList *list = 0;
2970 GList *iter;
2971 widget_value *cur;
2972 int has_tearoff_p = 0;
2973 GList *first_radio = 0;
2975 if (submenu)
2976 list = gtk_container_get_children (GTK_CONTAINER (submenu));
2978 for (cur = val, iter = list;
2979 cur && iter;
2980 iter = g_list_next (iter), cur = cur->next)
2982 GtkWidget *w = GTK_WIDGET (iter->data);
2984 /* Skip tearoff items, they have no counterpart in val. */
2985 if (GTK_IS_TEAROFF_MENU_ITEM (w))
2987 has_tearoff_p = 1;
2988 iter = g_list_next (iter);
2989 if (iter) w = GTK_WIDGET (iter->data);
2990 else break;
2993 /* Remember first radio button in a group. If we get a mismatch in
2994 a radio group we must rebuild the whole group so that the connections
2995 in GTK becomes correct. */
2996 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
2997 first_radio = iter;
2998 else if (cur->button_type != BUTTON_TYPE_RADIO
2999 && ! GTK_IS_RADIO_MENU_ITEM (w))
3000 first_radio = 0;
3002 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3004 if (! menu_separator_name_p (cur->name))
3005 break;
3007 else if (GTK_IS_CHECK_MENU_ITEM (w))
3009 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3010 break;
3011 xg_update_toggle_item (cur, w);
3012 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3014 else if (GTK_IS_RADIO_MENU_ITEM (w))
3016 if (cur->button_type != BUTTON_TYPE_RADIO)
3017 break;
3018 xg_update_radio_item (cur, w);
3019 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3021 else if (GTK_IS_MENU_ITEM (w))
3023 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3024 GtkWidget *sub;
3026 if (cur->button_type != BUTTON_TYPE_NONE ||
3027 menu_separator_name_p (cur->name))
3028 break;
3030 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3032 sub = gtk_menu_item_get_submenu (witem);
3033 if (sub && ! cur->contents)
3035 /* Not a submenu anymore. */
3036 g_object_ref (G_OBJECT (sub));
3037 remove_submenu (witem);
3038 gtk_widget_destroy (sub);
3040 else if (cur->contents)
3042 GtkWidget *nsub;
3044 nsub = xg_update_submenu (sub, f, cur->contents,
3045 select_cb, deactivate_cb,
3046 highlight_cb, cl_data);
3048 /* If this item just became a submenu, we must set it. */
3049 if (nsub != sub)
3050 gtk_menu_item_set_submenu (witem, nsub);
3053 else
3055 /* Structural difference. Remove everything from here and down
3056 in SUBMENU. */
3057 break;
3061 /* Remove widgets from first structural change. */
3062 if (iter)
3064 /* If we are adding new menu items below, we must remove from
3065 first radio button so that radio groups become correct. */
3066 if (cur && first_radio) xg_destroy_widgets (first_radio);
3067 else xg_destroy_widgets (iter);
3070 if (cur)
3072 /* More items added. Create them. */
3073 newsub = create_menus (cur,
3075 select_cb,
3076 deactivate_cb,
3077 highlight_cb,
3080 ! has_tearoff_p,
3081 submenu,
3082 cl_data,
3086 if (list) g_list_free (list);
3088 return newsub;
3091 /* Update the MENUBAR.
3092 F is the frame the menu bar belongs to.
3093 VAL describes the contents of the menu bar.
3094 If DEEP_P is non-zero, rebuild all but the top level menu names in
3095 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3096 SELECT_CB is the callback to use when a menu item is selected.
3097 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3098 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3100 void
3101 xg_modify_menubar_widgets (GtkWidget *menubar, FRAME_PTR f, widget_value *val,
3102 int deep_p,
3103 GCallback select_cb, GCallback deactivate_cb,
3104 GCallback highlight_cb)
3106 xg_menu_cb_data *cl_data;
3107 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3109 if (! list) return;
3111 cl_data = (xg_menu_cb_data*) g_object_get_data (G_OBJECT (menubar),
3112 XG_FRAME_DATA);
3114 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3115 select_cb, deactivate_cb, highlight_cb, cl_data);
3117 if (deep_p)
3119 widget_value *cur;
3121 /* Update all sub menus.
3122 We must keep the submenus (GTK menu item widgets) since the
3123 X Window in the XEvent that activates the menu are those widgets. */
3125 /* Update cl_data, menu_item things in F may have changed. */
3126 update_cl_data (cl_data, f, highlight_cb);
3128 for (cur = val->contents; cur; cur = cur->next)
3130 GList *iter;
3131 GtkWidget *sub = 0;
3132 GtkWidget *newsub;
3133 GtkMenuItem *witem = 0;
3135 /* Find sub menu that corresponds to val and update it. */
3136 for (iter = list ; iter; iter = g_list_next (iter))
3138 witem = GTK_MENU_ITEM (iter->data);
3139 if (xg_item_label_same_p (witem, cur->name))
3141 sub = gtk_menu_item_get_submenu (witem);
3142 break;
3146 newsub = xg_update_submenu (sub,
3148 cur->contents,
3149 select_cb,
3150 deactivate_cb,
3151 highlight_cb,
3152 cl_data);
3153 /* sub may still be NULL. If we just updated non deep and added
3154 a new menu bar item, it has no sub menu yet. So we set the
3155 newly created sub menu under witem. */
3156 if (newsub != sub && witem != 0)
3158 xg_set_screen (newsub, f);
3159 gtk_menu_item_set_submenu (witem, newsub);
3164 g_list_free (list);
3165 gtk_widget_show_all (menubar);
3168 /* Callback called when the menu bar W is mapped.
3169 Used to find the height of the menu bar if we didn't get it
3170 after showing the widget. */
3172 static void
3173 menubar_map_cb (GtkWidget *w, gpointer user_data)
3175 GtkRequisition req;
3176 FRAME_PTR f = (FRAME_PTR) user_data;
3177 gtk_widget_get_preferred_size (w, NULL, &req);
3178 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3180 FRAME_MENUBAR_HEIGHT (f) = req.height;
3181 xg_height_or_width_changed (f);
3185 /* Recompute all the widgets of frame F, when the menu bar has been
3186 changed. Value is non-zero if widgets were updated. */
3189 xg_update_frame_menubar (FRAME_PTR f)
3191 struct x_output *x = f->output_data.x;
3192 GtkRequisition req;
3194 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3195 return 0;
3197 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3198 return 0; /* Already done this, happens for frames created invisible. */
3200 BLOCK_INPUT;
3202 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3203 FALSE, FALSE, 0);
3204 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3206 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3207 gtk_widget_show_all (x->menubar_widget);
3208 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3210 /* If menu bar doesn't know its height yet, cheat a little so the frame
3211 doesn't jump so much when resized later in menubar_map_cb. */
3212 if (req.height == 0)
3213 req.height = 23;
3215 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3217 FRAME_MENUBAR_HEIGHT (f) = req.height;
3218 xg_height_or_width_changed (f);
3220 UNBLOCK_INPUT;
3222 return 1;
3225 /* Get rid of the menu bar of frame F, and free its storage.
3226 This is used when deleting a frame, and when turning off the menu bar. */
3228 void
3229 free_frame_menubar (FRAME_PTR f)
3231 struct x_output *x = f->output_data.x;
3233 if (x->menubar_widget)
3235 BLOCK_INPUT;
3237 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3238 /* The menubar and its children shall be deleted when removed from
3239 the container. */
3240 x->menubar_widget = 0;
3241 FRAME_MENUBAR_HEIGHT (f) = 0;
3242 xg_height_or_width_changed (f);
3243 UNBLOCK_INPUT;
3248 xg_event_is_for_menubar (FRAME_PTR f, XEvent *event)
3250 struct x_output *x = f->output_data.x;
3251 GList *iter;
3252 GdkRectangle rec;
3253 GList *list;
3254 GdkDisplay *gdpy;
3255 GdkWindow *gw;
3256 GdkEvent gevent;
3257 GtkWidget *gwdesc;
3259 if (! x->menubar_widget) return 0;
3261 if (! (event->xbutton.x >= 0
3262 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3263 && event->xbutton.y >= 0
3264 && event->xbutton.y < f->output_data.x->menubar_height
3265 && event->xbutton.same_screen))
3266 return 0;
3268 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3269 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3270 if (! gw) return 0;
3271 gevent.any.window = gw;
3272 gevent.any.type = GDK_NOTHING;
3273 gwdesc = gtk_get_event_widget (&gevent);
3274 if (! gwdesc) return 0;
3275 if (! GTK_IS_MENU_BAR (gwdesc)
3276 && ! GTK_IS_MENU_ITEM (gwdesc)
3277 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3278 return 0;
3280 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3281 if (! list) return 0;
3282 rec.x = event->xbutton.x;
3283 rec.y = event->xbutton.y;
3284 rec.width = 1;
3285 rec.height = 1;
3287 for (iter = list ; iter; iter = g_list_next (iter))
3289 GtkWidget *w = GTK_WIDGET (iter->data);
3290 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3291 break;
3293 g_list_free (list);
3294 return iter == 0 ? 0 : 1;
3299 /***********************************************************************
3300 Scroll bar functions
3301 ***********************************************************************/
3304 /* Setting scroll bar values invokes the callback. Use this variable
3305 to indicate that callback should do nothing. */
3307 int xg_ignore_gtk_scrollbar;
3309 /* The width of the scroll bar for the current theme. */
3311 static int scroll_bar_width_for_theme;
3313 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3314 may be larger than 32 bits. Keep a mapping from integer index to widget
3315 pointers to get around the 32 bit limitation. */
3317 static struct
3319 GtkWidget **widgets;
3320 ptrdiff_t max_size;
3321 ptrdiff_t used;
3322 } id_to_widget;
3324 /* Grow this much every time we need to allocate more */
3326 #define ID_TO_WIDGET_INCR 32
3328 /* Store the widget pointer W in id_to_widget and return the integer index. */
3330 static ptrdiff_t
3331 xg_store_widget_in_map (GtkWidget *w)
3333 ptrdiff_t i;
3335 if (id_to_widget.max_size == id_to_widget.used)
3337 ptrdiff_t new_size;
3338 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3339 memory_full (SIZE_MAX);
3341 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3342 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3343 new_size, sizeof (GtkWidget *));
3345 for (i = id_to_widget.max_size; i < new_size; ++i)
3346 id_to_widget.widgets[i] = 0;
3347 id_to_widget.max_size = new_size;
3350 /* Just loop over the array and find a free place. After all,
3351 how many scroll bars are we creating? Should be a small number.
3352 The check above guarantees we will find a free place. */
3353 for (i = 0; i < id_to_widget.max_size; ++i)
3355 if (! id_to_widget.widgets[i])
3357 id_to_widget.widgets[i] = w;
3358 ++id_to_widget.used;
3360 return i;
3364 /* Should never end up here */
3365 abort ();
3368 /* Remove pointer at IDX from id_to_widget.
3369 Called when scroll bar is destroyed. */
3371 static void
3372 xg_remove_widget_from_map (ptrdiff_t idx)
3374 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3376 id_to_widget.widgets[idx] = 0;
3377 --id_to_widget.used;
3381 /* Get the widget pointer at IDX from id_to_widget. */
3383 static GtkWidget *
3384 xg_get_widget_from_map (ptrdiff_t idx)
3386 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3387 return id_to_widget.widgets[idx];
3389 return 0;
3392 static void
3393 update_theme_scrollbar_width (void)
3395 #ifdef HAVE_GTK3
3396 GtkAdjustment *vadj;
3397 #else
3398 GtkObject *vadj;
3399 #endif
3400 GtkWidget *wscroll;
3401 int w = 0, b = 0;
3403 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3404 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
3405 g_object_ref_sink (G_OBJECT (wscroll));
3406 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3407 gtk_widget_destroy (wscroll);
3408 g_object_unref (G_OBJECT (wscroll));
3409 w += 2*b;
3410 if (w < 16) w = 16;
3411 scroll_bar_width_for_theme = w;
3415 xg_get_default_scrollbar_width (void)
3417 return scroll_bar_width_for_theme;
3420 /* Return the scrollbar id for X Window WID on display DPY.
3421 Return -1 if WID not in id_to_widget. */
3423 ptrdiff_t
3424 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3426 ptrdiff_t idx;
3427 GtkWidget *w;
3429 w = xg_win_to_widget (dpy, wid);
3431 if (w)
3433 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3434 if (id_to_widget.widgets[idx] == w)
3435 return idx;
3438 return -1;
3441 /* Callback invoked when scroll bar WIDGET is destroyed.
3442 DATA is the index into id_to_widget for WIDGET.
3443 We free pointer to last scroll bar values here and remove the index. */
3445 static void
3446 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3448 intptr_t id = (intptr_t) data;
3449 xg_remove_widget_from_map (id);
3452 /* Create a scroll bar widget for frame F. Store the scroll bar
3453 in BAR.
3454 SCROLL_CALLBACK is the callback to invoke when the value of the
3455 bar changes.
3456 END_CALLBACK is the callback to invoke when scrolling ends.
3457 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3458 to set resources for the widget. */
3460 void
3461 xg_create_scroll_bar (FRAME_PTR f,
3462 struct scroll_bar *bar,
3463 GCallback scroll_callback,
3464 GCallback end_callback,
3465 const char *scroll_bar_name)
3467 GtkWidget *wscroll;
3468 GtkWidget *webox;
3469 intptr_t scroll_id;
3470 #ifdef HAVE_GTK3
3471 GtkAdjustment *vadj;
3472 #else
3473 GtkObject *vadj;
3474 #endif
3476 /* Page, step increment values are not so important here, they
3477 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3478 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3479 0.1, 0.1, 0.1);
3481 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
3482 webox = gtk_event_box_new ();
3483 gtk_widget_set_name (wscroll, scroll_bar_name);
3484 #ifndef HAVE_GTK3
3485 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3486 #endif
3487 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3489 scroll_id = xg_store_widget_in_map (wscroll);
3491 g_signal_connect (G_OBJECT (wscroll),
3492 "destroy",
3493 G_CALLBACK (xg_gtk_scroll_destroy),
3494 (gpointer) scroll_id);
3495 g_signal_connect (G_OBJECT (wscroll),
3496 "change-value",
3497 scroll_callback,
3498 (gpointer) bar);
3499 g_signal_connect (G_OBJECT (wscroll),
3500 "button-release-event",
3501 end_callback,
3502 (gpointer) bar);
3504 /* The scroll bar widget does not draw on a window of its own. Instead
3505 it draws on the parent window, in this case the edit widget. So
3506 whenever the edit widget is cleared, the scroll bar needs to redraw
3507 also, which causes flicker. Put an event box between the edit widget
3508 and the scroll bar, so the scroll bar instead draws itself on the
3509 event box window. */
3510 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3511 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3514 /* Set the cursor to an arrow. */
3515 xg_set_cursor (webox, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
3517 bar->x_window = scroll_id;
3520 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3522 void
3523 xg_remove_scroll_bar (FRAME_PTR f, ptrdiff_t scrollbar_id)
3525 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3526 if (w)
3528 GtkWidget *wparent = gtk_widget_get_parent (w);
3529 gtk_widget_destroy (w);
3530 gtk_widget_destroy (wparent);
3531 SET_FRAME_GARBAGED (f);
3535 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3536 in frame F.
3537 TOP/LEFT are the new pixel positions where the bar shall appear.
3538 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3540 void
3541 xg_update_scrollbar_pos (FRAME_PTR f,
3542 ptrdiff_t scrollbar_id,
3543 int top,
3544 int left,
3545 int width,
3546 int height)
3549 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3551 if (wscroll)
3553 GtkWidget *wfixed = f->output_data.x->edit_widget;
3554 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3555 gint msl;
3557 /* Clear out old position. */
3558 int oldx = -1, oldy = -1, oldw, oldh;
3559 if (gtk_widget_get_parent (wparent) == wfixed)
3561 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3562 "x", &oldx, "y", &oldy, NULL);
3563 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3566 /* Move and resize to new values. */
3567 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3568 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3569 if (msl > height)
3571 /* No room. Hide scroll bar as some themes output a warning if
3572 the height is less than the min size. */
3573 gtk_widget_hide (wparent);
3574 gtk_widget_hide (wscroll);
3576 else
3578 gtk_widget_show_all (wparent);
3579 gtk_widget_set_size_request (wscroll, width, height);
3581 gtk_widget_queue_draw (wfixed);
3582 gdk_window_process_all_updates ();
3583 if (oldx != -1 && oldw > 0 && oldh > 0)
3585 /* Clear under old scroll bar position. This must be done after
3586 the gtk_widget_queue_draw and gdk_window_process_all_updates
3587 above. */
3588 x_clear_area (FRAME_X_DISPLAY (f),
3589 FRAME_X_WINDOW (f),
3590 oldx, oldy, oldw, oldh, 0);
3593 /* GTK does not redraw until the main loop is entered again, but
3594 if there are no X events pending we will not enter it. So we sync
3595 here to get some events. */
3597 x_sync (f);
3598 SET_FRAME_GARBAGED (f);
3599 cancel_mouse_face (f);
3603 /* Get the current value of the range, truncated to an integer. */
3605 static int
3606 int_gtk_range_get_value (GtkRange *range)
3608 return gtk_range_get_value (range);
3612 /* Set the thumb size and position of scroll bar BAR. We are currently
3613 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3615 void
3616 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3617 int portion,
3618 int position,
3619 int whole)
3621 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3623 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3625 if (wscroll && NILP (bar->dragging))
3627 GtkAdjustment *adj;
3628 gdouble shown;
3629 gdouble top;
3630 int size, value;
3631 int old_size;
3632 int new_step;
3633 int changed = 0;
3635 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3637 /* We do the same as for MOTIF in xterm.c, assume 30 chars per line
3638 rather than the real portion value. This makes the thumb less likely
3639 to resize and that looks better. */
3640 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3641 /* When the thumb is at the bottom, position == whole.
3642 So we need to increase `whole' to make space for the thumb. */
3643 whole += portion;
3645 if (whole <= 0)
3646 top = 0, shown = 1;
3647 else
3649 top = (gdouble) position / whole;
3650 shown = (gdouble) portion / whole;
3653 size = shown * XG_SB_RANGE;
3654 size = min (size, XG_SB_RANGE);
3655 size = max (size, 1);
3657 value = top * XG_SB_RANGE;
3658 value = min (value, XG_SB_MAX - size);
3659 value = max (value, XG_SB_MIN);
3661 /* Assume all lines are of equal size. */
3662 new_step = size / max (1, FRAME_LINES (f));
3664 old_size = gtk_adjustment_get_page_size (adj);
3665 if (old_size != size)
3667 int old_step = gtk_adjustment_get_step_increment (adj);
3668 if (old_step != new_step)
3670 gtk_adjustment_set_page_size (adj, size);
3671 gtk_adjustment_set_step_increment (adj, new_step);
3672 /* Assume a page increment is about 95% of the page size */
3673 gtk_adjustment_set_page_increment (adj, size - size / 20);
3674 changed = 1;
3678 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3680 BLOCK_INPUT;
3682 /* gtk_range_set_value invokes the callback. Set
3683 ignore_gtk_scrollbar to make the callback do nothing */
3684 xg_ignore_gtk_scrollbar = 1;
3686 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3687 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3688 else if (changed)
3689 gtk_adjustment_changed (adj);
3691 xg_ignore_gtk_scrollbar = 0;
3693 UNBLOCK_INPUT;
3698 /* Return non-zero if EVENT is for a scroll bar in frame F.
3699 When the same X window is used for several Gtk+ widgets, we cannot
3700 say for sure based on the X window alone if an event is for the
3701 frame. This function does additional checks.
3703 Return non-zero if the event is for a scroll bar, zero otherwise. */
3706 xg_event_is_for_scrollbar (FRAME_PTR f, XEvent *event)
3708 int retval = 0;
3710 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3712 /* Check if press occurred outside the edit widget. */
3713 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3714 retval = gdk_display_get_window_at_pointer (gdpy, NULL, NULL)
3715 != gtk_widget_get_window (f->output_data.x->edit_widget);
3717 else if (f
3718 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3719 || event->type == MotionNotify))
3721 /* If we are releasing or moving the scroll bar, it has the grab. */
3722 GtkWidget *w = gtk_grab_get_current ();
3723 retval = w != 0 && GTK_IS_SCROLLBAR (w);
3726 return retval;
3731 /***********************************************************************
3732 Tool bar functions
3733 ***********************************************************************/
3734 /* The key for the data we put in the GtkImage widgets. The data is
3735 the image used by Emacs. We use this to see if we need to update
3736 the GtkImage with a new image. */
3737 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3739 /* The key for storing the latest modifiers so the activate callback can
3740 get them. */
3741 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3743 /* The key for storing the button widget in its proxy menu item. */
3744 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3746 /* The key for the data we put in the GtkImage widgets. The data is
3747 the stock name used by Emacs. We use this to see if we need to update
3748 the GtkImage with a new image. */
3749 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3751 /* As above, but this is used for named theme widgets, as opposed to
3752 stock items. */
3753 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3755 /* Callback function invoked when a tool bar item is pressed.
3756 W is the button widget in the tool bar that got pressed,
3757 CLIENT_DATA is an integer that is the index of the button in the
3758 tool bar. 0 is the first button. */
3760 static gboolean
3761 xg_tool_bar_button_cb (GtkWidget *widget,
3762 GdkEventButton *event,
3763 gpointer user_data)
3765 intptr_t state = event->state;
3766 gpointer ptr = (gpointer) state;
3767 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
3768 return FALSE;
3772 /* Callback function invoked when a tool bar item is pressed.
3773 W is the button widget in the tool bar that got pressed,
3774 CLIENT_DATA is an integer that is the index of the button in the
3775 tool bar. 0 is the first button. */
3777 static void
3778 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
3780 intptr_t idx = (intptr_t) client_data;
3781 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
3782 intptr_t mod = (intptr_t) gmod;
3784 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3785 Lisp_Object key, frame;
3786 struct input_event event;
3787 EVENT_INIT (event);
3789 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3790 return;
3792 idx *= TOOL_BAR_ITEM_NSLOTS;
3794 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
3795 XSETFRAME (frame, f);
3797 /* We generate two events here. The first one is to set the prefix
3798 to `(tool_bar)', see keyboard.c. */
3799 event.kind = TOOL_BAR_EVENT;
3800 event.frame_or_window = frame;
3801 event.arg = frame;
3802 kbd_buffer_store_event (&event);
3804 event.kind = TOOL_BAR_EVENT;
3805 event.frame_or_window = frame;
3806 event.arg = key;
3807 /* Convert between the modifier bits GDK uses and the modifier bits
3808 Emacs uses. This assumes GDK and X masks are the same, which they are when
3809 this is written. */
3810 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), mod);
3811 kbd_buffer_store_event (&event);
3813 /* Return focus to the frame after we have clicked on a detached
3814 tool bar button. */
3815 Fx_focus_frame (frame);
3818 /* Callback function invoked when a tool bar item is pressed in a detached
3819 tool bar or the overflow drop down menu.
3820 We just call xg_tool_bar_callback.
3821 W is the menu item widget that got pressed,
3822 CLIENT_DATA is an integer that is the index of the button in the
3823 tool bar. 0 is the first button. */
3825 static void
3826 xg_tool_bar_proxy_callback (GtkWidget *w, gpointer client_data)
3828 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3829 XG_TOOL_BAR_PROXY_BUTTON));
3830 xg_tool_bar_callback (wbutton, client_data);
3834 static gboolean
3835 xg_tool_bar_help_callback (GtkWidget *w,
3836 GdkEventCrossing *event,
3837 gpointer client_data);
3839 /* This callback is called when a help is to be shown for an item in
3840 the detached tool bar when the detached tool bar it is not expanded. */
3842 static gboolean
3843 xg_tool_bar_proxy_help_callback (GtkWidget *w,
3844 GdkEventCrossing *event,
3845 gpointer client_data)
3847 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3848 XG_TOOL_BAR_PROXY_BUTTON));
3850 return xg_tool_bar_help_callback (wbutton, event, client_data);
3853 static GtkWidget *
3854 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
3856 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
3857 GtkWidget *c1 = (GtkWidget *) clist->data;
3858 GtkWidget *c2 = clist->next ? (GtkWidget *) clist->next->data : NULL;
3860 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
3861 g_list_free (clist);
3862 return GTK_IS_LABEL (c1) ? c1 : c2;
3866 /* This callback is called when a tool item should create a proxy item,
3867 such as for the overflow menu. Also called when the tool bar is detached.
3868 If we don't create a proxy menu item, the detached tool bar will be
3869 blank. */
3871 static gboolean
3872 xg_tool_bar_menu_proxy (GtkToolItem *toolitem, gpointer user_data)
3874 GtkButton *wbutton = GTK_BUTTON (XG_BIN_CHILD (XG_BIN_CHILD (toolitem)));
3875 GtkWidget *vb = XG_BIN_CHILD (wbutton);
3876 GtkWidget *c1;
3877 GtkLabel *wlbl = GTK_LABEL (xg_get_tool_bar_widgets (vb, &c1));
3878 GtkImage *wimage = GTK_IMAGE (c1);
3879 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label
3880 (wlbl ? gtk_label_get_text (wlbl) : "");
3881 GtkWidget *wmenuimage;
3884 if (gtk_button_get_use_stock (wbutton))
3885 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
3886 GTK_ICON_SIZE_MENU);
3887 else
3889 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
3890 GtkImageType store_type = gtk_image_get_storage_type (wimage);
3892 g_object_set (G_OBJECT (settings), "gtk-menu-images", TRUE, NULL);
3894 if (store_type == GTK_IMAGE_STOCK)
3896 gchar *stock_id;
3897 gtk_image_get_stock (wimage, &stock_id, NULL);
3898 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
3900 else if (store_type == GTK_IMAGE_ICON_SET)
3902 GtkIconSet *icon_set;
3903 gtk_image_get_icon_set (wimage, &icon_set, NULL);
3904 wmenuimage = gtk_image_new_from_icon_set (icon_set,
3905 GTK_ICON_SIZE_MENU);
3907 else if (store_type == GTK_IMAGE_PIXBUF)
3909 gint width, height;
3911 if (settings &&
3912 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
3913 &width, &height))
3915 GdkPixbuf *src_pixbuf, *dest_pixbuf;
3917 src_pixbuf = gtk_image_get_pixbuf (wimage);
3918 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
3919 GDK_INTERP_BILINEAR);
3921 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
3923 else
3925 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
3926 abort ();
3929 else if (store_type == GTK_IMAGE_ICON_NAME)
3931 const gchar *icon_name;
3932 GtkIconSize icon_size;
3934 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
3935 wmenuimage = gtk_image_new_from_icon_name (icon_name,
3936 GTK_ICON_SIZE_MENU);
3938 else
3940 fprintf (stderr, "internal error: store_type is %d\n", store_type);
3941 abort ();
3944 if (wmenuimage)
3945 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
3947 g_signal_connect (G_OBJECT (wmenuitem),
3948 "activate",
3949 G_CALLBACK (xg_tool_bar_proxy_callback),
3950 user_data);
3953 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
3954 (gpointer) wbutton);
3955 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
3956 gtk_widget_set_sensitive (wmenuitem,
3957 gtk_widget_get_sensitive (GTK_WIDGET (wbutton)));
3959 /* Use enter/leave notify to show help. We use the events
3960 rather than the GtkButton specific signals "enter" and
3961 "leave", so we can have only one callback. The event
3962 will tell us what kind of event it is. */
3963 g_signal_connect (G_OBJECT (wmenuitem),
3964 "enter-notify-event",
3965 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3966 user_data);
3967 g_signal_connect (G_OBJECT (wmenuitem),
3968 "leave-notify-event",
3969 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3970 user_data);
3972 return TRUE;
3975 /* This callback is called when a tool bar is detached. We must set
3976 the height of the tool bar to zero when this happens so frame sizes
3977 are correctly calculated.
3978 WBOX is the handle box widget that enables detach/attach of the tool bar.
3979 W is the tool bar widget.
3980 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
3982 static void
3983 xg_tool_bar_detach_callback (GtkHandleBox *wbox,
3984 GtkWidget *w,
3985 gpointer client_data)
3987 FRAME_PTR f = (FRAME_PTR) client_data;
3989 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
3990 NULL);
3992 if (f)
3994 GtkRequisition req, req2;
3995 FRAME_X_OUTPUT (f)->toolbar_detached = 1;
3996 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
3997 gtk_widget_get_preferred_size (w, NULL, &req2);
3998 req.width -= req2.width;
3999 req.height -= req2.height;
4000 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4001 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4002 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4003 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4004 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4005 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4006 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4007 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4008 xg_height_or_width_changed (f);
4012 /* This callback is called when a tool bar is reattached. We must set
4013 the height of the tool bar when this happens so frame sizes
4014 are correctly calculated.
4015 WBOX is the handle box widget that enables detach/attach of the tool bar.
4016 W is the tool bar widget.
4017 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
4019 static void
4020 xg_tool_bar_attach_callback (GtkHandleBox *wbox,
4021 GtkWidget *w,
4022 gpointer client_data)
4024 FRAME_PTR f = (FRAME_PTR) client_data;
4025 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
4027 if (f)
4029 GtkRequisition req, req2;
4030 FRAME_X_OUTPUT (f)->toolbar_detached = 0;
4031 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4032 gtk_widget_get_preferred_size (w, NULL, &req2);
4033 req.width += req2.width;
4034 req.height += req2.height;
4035 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4036 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4037 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4038 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4039 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4040 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4041 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4042 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4043 xg_height_or_width_changed (f);
4047 /* This callback is called when the mouse enters or leaves a tool bar item.
4048 It is used for displaying and hiding the help text.
4049 W is the tool bar item, a button.
4050 EVENT is either an enter event or leave event.
4051 CLIENT_DATA is an integer that is the index of the button in the
4052 tool bar. 0 is the first button.
4054 Returns FALSE to tell GTK to keep processing this event. */
4056 static gboolean
4057 xg_tool_bar_help_callback (GtkWidget *w,
4058 GdkEventCrossing *event,
4059 gpointer client_data)
4061 intptr_t idx = (intptr_t) client_data;
4062 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4063 Lisp_Object help, frame;
4065 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4066 return FALSE;
4068 if (event->type == GDK_ENTER_NOTIFY)
4070 idx *= TOOL_BAR_ITEM_NSLOTS;
4071 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4073 if (NILP (help))
4074 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4076 else
4077 help = Qnil;
4079 XSETFRAME (frame, f);
4080 kbd_buffer_store_help_event (frame, help);
4082 return FALSE;
4086 /* This callback is called when a tool bar item shall be redrawn.
4087 It modifies the expose event so that the GtkImage widget redraws the
4088 whole image. This to overcome a bug that makes GtkImage draw the image
4089 in the wrong place when it tries to redraw just a part of the image.
4090 W is the GtkImage to be redrawn.
4091 EVENT is the expose event for W.
4092 CLIENT_DATA is unused.
4094 Returns FALSE to tell GTK to keep processing this event. */
4096 #ifndef HAVE_GTK3
4097 static gboolean
4098 xg_tool_bar_item_expose_callback (GtkWidget *w,
4099 GdkEventExpose *event,
4100 gpointer client_data)
4102 gint width, height;
4104 gdk_drawable_get_size (event->window, &width, &height);
4105 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4106 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4108 event->area.x = max (0, event->area.x);
4109 event->area.y = max (0, event->area.y);
4111 event->area.width = max (width, event->area.width);
4112 event->area.height = max (height, event->area.height);
4114 return FALSE;
4116 #endif
4118 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4119 #define toolbar_set_orientation(w, o) \
4120 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4121 #else
4122 #define toolbar_set_orientation(w, o) \
4123 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4124 #endif
4126 /* Attach a tool bar to frame F. */
4128 static void
4129 xg_pack_tool_bar (FRAME_PTR f, Lisp_Object pos)
4131 struct x_output *x = f->output_data.x;
4132 int into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4134 toolbar_set_orientation (x->toolbar_widget,
4135 into_hbox
4136 ? GTK_ORIENTATION_VERTICAL
4137 : GTK_ORIENTATION_HORIZONTAL);
4138 if (!x->handlebox_widget)
4140 x->handlebox_widget = gtk_handle_box_new ();
4141 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
4142 G_CALLBACK (xg_tool_bar_detach_callback), f);
4143 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
4144 G_CALLBACK (xg_tool_bar_attach_callback), f);
4145 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
4146 x->toolbar_widget);
4149 if (into_hbox)
4151 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4152 GTK_POS_TOP);
4153 gtk_box_pack_start (GTK_BOX (x->hbox_widget), x->handlebox_widget,
4154 FALSE, FALSE, 0);
4156 if (EQ (pos, Qleft))
4157 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4158 x->handlebox_widget,
4160 x->toolbar_in_hbox = 1;
4162 else
4164 int vbox_pos = x->menubar_widget ? 1 : 0;
4165 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4166 GTK_POS_LEFT);
4167 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->handlebox_widget,
4168 FALSE, FALSE, 0);
4170 if (EQ (pos, Qtop))
4171 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4172 x->handlebox_widget,
4173 vbox_pos);
4174 x->toolbar_in_hbox = 0;
4178 /* Create a tool bar for frame F. */
4180 static void
4181 xg_create_tool_bar (FRAME_PTR f)
4183 struct x_output *x = f->output_data.x;
4185 x->toolbar_widget = gtk_toolbar_new ();
4186 x->toolbar_detached = 0;
4188 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4190 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4191 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4195 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4197 /* Find the right-to-left image named by RTL in the tool bar images for F.
4198 Returns IMAGE if RTL is not found. */
4200 static Lisp_Object
4201 find_rtl_image (FRAME_PTR f, Lisp_Object image, Lisp_Object rtl)
4203 int i;
4204 Lisp_Object file, rtl_name;
4205 struct gcpro gcpro1, gcpro2;
4206 GCPRO2 (file, rtl_name);
4208 rtl_name = Ffile_name_nondirectory (rtl);
4210 for (i = 0; i < f->n_tool_bar_items; ++i)
4212 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4213 if (!NILP (file = file_for_image (rtl_image)))
4215 file = call1 (intern ("file-name-sans-extension"),
4216 Ffile_name_nondirectory (file));
4217 if (EQ (Fequal (file, rtl_name), Qt))
4219 image = rtl_image;
4220 break;
4225 return image;
4228 static GtkToolItem *
4229 xg_make_tool_item (FRAME_PTR f,
4230 GtkWidget *wimage,
4231 GtkWidget **wbutton,
4232 const char *label,
4233 int i, int horiz, int text_image)
4235 GtkToolItem *ti = gtk_tool_item_new ();
4236 GtkWidget *vb = horiz ? gtk_hbox_new (FALSE, 0) : gtk_vbox_new (FALSE, 0);
4237 GtkWidget *wb = gtk_button_new ();
4238 /* The eventbox is here so we can have tooltips on disabled items. */
4239 GtkWidget *weventbox = gtk_event_box_new ();
4241 if (wimage && !text_image)
4242 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4243 if (label)
4244 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4245 if (wimage && text_image)
4246 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4248 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4249 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4250 gtk_container_add (GTK_CONTAINER (wb), vb);
4251 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4252 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4254 if (wimage || label)
4256 intptr_t ii = i;
4257 gpointer gi = (gpointer) ii;
4259 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4260 G_CALLBACK (xg_tool_bar_menu_proxy),
4261 gi);
4263 g_signal_connect (G_OBJECT (wb), "clicked",
4264 G_CALLBACK (xg_tool_bar_callback),
4265 gi);
4267 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4269 #ifndef HAVE_GTK3
4270 /* Catch expose events to overcome an annoying redraw bug, see
4271 comment for xg_tool_bar_item_expose_callback. */
4272 g_signal_connect (G_OBJECT (ti),
4273 "expose-event",
4274 G_CALLBACK (xg_tool_bar_item_expose_callback),
4276 #endif
4277 gtk_tool_item_set_homogeneous (ti, FALSE);
4279 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4280 no distinction based on modifiers in the activate callback,
4281 so we have to do it ourselves. */
4282 g_signal_connect (wb, "button-release-event",
4283 G_CALLBACK (xg_tool_bar_button_cb),
4284 NULL);
4286 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4288 /* Use enter/leave notify to show help. We use the events
4289 rather than the GtkButton specific signals "enter" and
4290 "leave", so we can have only one callback. The event
4291 will tell us what kind of event it is. */
4292 g_signal_connect (G_OBJECT (weventbox),
4293 "enter-notify-event",
4294 G_CALLBACK (xg_tool_bar_help_callback),
4295 gi);
4296 g_signal_connect (G_OBJECT (weventbox),
4297 "leave-notify-event",
4298 G_CALLBACK (xg_tool_bar_help_callback),
4299 gi);
4302 if (wbutton) *wbutton = wb;
4304 return ti;
4307 static int
4308 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4309 const char *icon_name, const struct image *img,
4310 const char *label, int horiz)
4312 gpointer old;
4313 GtkWidget *wimage;
4314 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4315 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4317 /* Check if the tool icon matches. */
4318 if (stock_name && wimage)
4320 old = g_object_get_data (G_OBJECT (wimage),
4321 XG_TOOL_BAR_STOCK_NAME);
4322 if (!old || strcmp (old, stock_name))
4323 return 1;
4325 else if (icon_name && wimage)
4327 old = g_object_get_data (G_OBJECT (wimage),
4328 XG_TOOL_BAR_ICON_NAME);
4329 if (!old || strcmp (old, icon_name))
4330 return 1;
4332 else if (wimage)
4334 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4335 XG_TOOL_BAR_IMAGE_DATA);
4336 Pixmap old_img = (Pixmap) gold_img;
4337 if (old_img != img->pixmap)
4338 return 1;
4341 /* Check button configuration and label. */
4342 if ((horiz ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb))
4343 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4344 return 1;
4346 /* Ensure label is correct. */
4347 if (label && wlbl)
4348 gtk_label_set_text (GTK_LABEL (wlbl), label);
4349 return 0;
4352 static int
4353 xg_update_tool_bar_sizes (FRAME_PTR f)
4355 struct x_output *x = f->output_data.x;
4356 GtkRequisition req;
4357 int nl = 0, nr = 0, nt = 0, nb = 0;
4359 gtk_widget_get_preferred_size (GTK_WIDGET (x->handlebox_widget), NULL, &req);
4360 if (x->toolbar_in_hbox)
4362 int pos;
4363 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4364 x->handlebox_widget,
4365 "position", &pos, NULL);
4366 if (pos == 0) nl = req.width;
4367 else nr = req.width;
4369 else
4371 int pos;
4372 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4373 x->handlebox_widget,
4374 "position", &pos, NULL);
4375 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4376 else nb = req.height;
4379 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4380 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4381 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4382 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4384 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4385 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4386 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4387 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4388 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4389 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4390 return 1;
4393 return 0;
4397 /* Update the tool bar for frame F. Add new buttons and remove old. */
4399 void
4400 update_frame_tool_bar (FRAME_PTR f)
4402 int i, j;
4403 struct x_output *x = f->output_data.x;
4404 int hmargin = 0, vmargin = 0;
4405 GtkToolbar *wtoolbar;
4406 GtkToolItem *ti;
4407 GtkTextDirection dir;
4408 int pack_tool_bar = x->handlebox_widget == NULL;
4409 Lisp_Object style;
4410 int text_image, horiz;
4412 if (! FRAME_GTK_WIDGET (f))
4413 return;
4415 BLOCK_INPUT;
4417 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4419 hmargin = XFASTINT (Vtool_bar_button_margin);
4420 vmargin = XFASTINT (Vtool_bar_button_margin);
4422 else if (CONSP (Vtool_bar_button_margin))
4424 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4425 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4427 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4428 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4431 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4432 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4433 i.e. zero. This means that margins less than
4434 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4435 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4436 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4438 if (! x->toolbar_widget)
4439 xg_create_tool_bar (f);
4441 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4442 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4444 style = Ftool_bar_get_system_style ();
4445 text_image = EQ (style, Qtext_image_horiz);
4446 horiz = EQ (style, Qboth_horiz) || text_image;
4448 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4450 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4451 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4452 int idx;
4453 ptrdiff_t img_id;
4454 int icon_size = 0;
4455 struct image *img = NULL;
4456 Lisp_Object image;
4457 Lisp_Object stock = Qnil;
4458 GtkStockItem stock_item;
4459 char *stock_name = NULL;
4460 char *icon_name = NULL;
4461 Lisp_Object rtl;
4462 GtkWidget *wbutton = NULL;
4463 Lisp_Object specified_file;
4464 int vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4465 const char *label
4466 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4467 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4468 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4469 : "";
4471 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4473 /* If this is a separator, use a gtk separator item. */
4474 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4476 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4478 if (ti)
4479 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4480 GTK_WIDGET (ti));
4481 ti = gtk_separator_tool_item_new ();
4482 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4484 j++;
4485 continue;
4488 /* Otherwise, the tool-bar item is an ordinary button. */
4490 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4492 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4493 ti = NULL;
4496 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4498 /* Ignore invalid image specifications. */
4499 image = PROP (TOOL_BAR_ITEM_IMAGES);
4500 if (!valid_image_p (image))
4502 if (ti)
4503 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4504 GTK_WIDGET (ti));
4505 continue;
4508 specified_file = file_for_image (image);
4509 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4510 stock = call1 (Qx_gtk_map_stock, specified_file);
4512 if (STRINGP (stock))
4514 stock_name = SSDATA (stock);
4515 if (stock_name[0] == 'n' && stock_name[1] == ':')
4517 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4518 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
4520 icon_name = stock_name + 2;
4521 stock_name = NULL;
4522 stock = Qnil;
4524 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
4525 icon_name = NULL;
4526 else
4527 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4529 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
4530 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4531 else
4533 stock = Qnil;
4534 stock_name = NULL;
4538 if (stock_name == NULL && icon_name == NULL)
4540 /* No stock image, or stock item not known. Try regular
4541 image. If image is a vector, choose it according to the
4542 button state. */
4543 if (dir == GTK_TEXT_DIR_RTL
4544 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4545 && STRINGP (rtl))
4546 image = find_rtl_image (f, image, rtl);
4548 if (VECTORP (image))
4550 if (enabled_p)
4551 idx = (selected_p
4552 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4553 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4554 else
4555 idx = (selected_p
4556 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4557 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4559 xassert (ASIZE (image) >= idx);
4560 image = AREF (image, idx);
4562 else
4563 idx = -1;
4565 img_id = lookup_image (f, image);
4566 img = IMAGE_FROM_ID (f, img_id);
4567 prepare_image_for_display (f, img);
4569 if (img->load_failed_p || img->pixmap == None)
4571 if (ti)
4572 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4573 GTK_WIDGET (ti));
4574 continue;
4578 /* If there is an existing widget, check if it's stale; if so,
4579 remove it and make a new tool item from scratch. */
4580 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4581 img, label, horiz))
4583 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4584 GTK_WIDGET (ti));
4585 ti = NULL;
4588 if (ti == NULL)
4590 GtkWidget *w;
4592 /* Save the image so we can see if an update is needed the
4593 next time we call xg_tool_item_match_p. */
4594 if (EQ (style, Qtext))
4595 w = NULL;
4596 else if (stock_name)
4598 w = gtk_image_new_from_stock (stock_name, icon_size);
4599 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4600 (gpointer) xstrdup (stock_name),
4601 (GDestroyNotify) xfree);
4603 else if (icon_name)
4605 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4606 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4607 (gpointer) xstrdup (icon_name),
4608 (GDestroyNotify) xfree);
4610 else
4612 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4613 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4614 (gpointer)img->pixmap);
4617 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4618 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4619 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4622 #undef PROP
4624 gtk_widget_set_sensitive (wbutton, enabled_p);
4625 j++;
4628 /* Remove buttons not longer needed. */
4631 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4632 if (ti)
4633 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4634 } while (ti != NULL);
4636 if (f->n_tool_bar_items != 0)
4638 if (pack_tool_bar)
4639 xg_pack_tool_bar (f, f->tool_bar_position);
4640 gtk_widget_show_all (GTK_WIDGET (x->handlebox_widget));
4641 if (xg_update_tool_bar_sizes (f))
4642 xg_height_or_width_changed (f);
4645 UNBLOCK_INPUT;
4648 /* Deallocate all resources for the tool bar on frame F.
4649 Remove the tool bar. */
4651 void
4652 free_frame_tool_bar (FRAME_PTR f)
4654 struct x_output *x = f->output_data.x;
4656 if (x->toolbar_widget)
4658 int is_packed = x->handlebox_widget != 0;
4659 BLOCK_INPUT;
4660 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4661 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
4662 if (is_packed)
4664 if (x->toolbar_in_hbox)
4665 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4666 x->handlebox_widget);
4667 else
4668 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4669 x->handlebox_widget);
4671 else
4672 gtk_widget_destroy (x->toolbar_widget);
4674 x->toolbar_widget = 0;
4675 x->handlebox_widget = 0;
4676 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4677 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
4679 xg_height_or_width_changed (f);
4681 UNBLOCK_INPUT;
4686 xg_change_toolbar_position (FRAME_PTR f, Lisp_Object pos)
4688 struct x_output *x = f->output_data.x;
4690 if (! x->toolbar_widget || ! x->handlebox_widget)
4691 return 1;
4693 BLOCK_INPUT;
4694 g_object_ref (x->handlebox_widget);
4695 if (x->toolbar_in_hbox)
4696 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4697 x->handlebox_widget);
4698 else
4699 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4700 x->handlebox_widget);
4701 xg_pack_tool_bar (f, pos);
4702 g_object_unref (x->handlebox_widget);
4703 if (xg_update_tool_bar_sizes (f))
4704 xg_height_or_width_changed (f);
4706 UNBLOCK_INPUT;
4707 return 1;
4712 /***********************************************************************
4713 Initializing
4714 ***********************************************************************/
4715 void
4716 xg_initialize (void)
4718 GtkBindingSet *binding_set;
4720 #if HAVE_XFT
4721 /* Work around a bug with corrupted data if libXft gets unloaded. This way
4722 we keep it permanently linked in. */
4723 XftInit (0);
4724 #endif
4726 gdpy_def = NULL;
4727 xg_ignore_gtk_scrollbar = 0;
4728 xg_detached_menus = 0;
4729 xg_menu_cb_list.prev = xg_menu_cb_list.next =
4730 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
4732 id_to_widget.max_size = id_to_widget.used = 0;
4733 id_to_widget.widgets = 0;
4735 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
4736 bindings. It doesn't seem to be any way to remove properties,
4737 so we set it to VoidSymbol which in X means "no key". */
4738 gtk_settings_set_string_property (gtk_settings_get_default (),
4739 "gtk-menu-bar-accel",
4740 "VoidSymbol",
4741 EMACS_CLASS);
4743 /* Make GTK text input widgets use Emacs style keybindings. This is
4744 Emacs after all. */
4745 gtk_settings_set_string_property (gtk_settings_get_default (),
4746 "gtk-key-theme-name",
4747 "Emacs",
4748 EMACS_CLASS);
4750 /* Make dialogs close on C-g. Since file dialog inherits from
4751 dialog, this works for them also. */
4752 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
4753 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
4754 "close", 0);
4756 /* Make menus close on C-g. */
4757 binding_set = gtk_binding_set_by_class (g_type_class_ref
4758 (GTK_TYPE_MENU_SHELL));
4759 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
4760 "cancel", 0);
4761 update_theme_scrollbar_width ();
4764 #endif /* USE_GTK */