* xfns.c (syms_of_xfns): Remove x-gtk-whole-detached-tool-bar.
[emacs.git] / src / gtkutil.c
blob89897f8afa5c52db24e07da5a3192baa20b8f40e
1 /* Functions for creating and updating GTK widgets.
3 Copyright (C) 2003-2014 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 <stdio.h>
26 #include <c-ctype.h>
28 #include "lisp.h"
29 #include "xterm.h"
30 #include "blockinput.h"
31 #include "syssignal.h"
32 #include "window.h"
33 #include "buffer.h"
34 #include "gtkutil.h"
35 #include "termhooks.h"
36 #include "keyboard.h"
37 #include "charset.h"
38 #include "coding.h"
39 #include "font.h"
41 #include <gdk/gdkkeysyms.h>
42 #include "xsettings.h"
44 #ifdef HAVE_XFT
45 #include <X11/Xft/Xft.h>
46 #endif
48 #ifdef HAVE_GTK3
49 #include <gtk/gtkx.h>
50 #include "emacsgtkfixed.h"
51 #endif
53 #define FRAME_TOTAL_PIXEL_HEIGHT(f) \
54 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
56 #define FRAME_TOTAL_PIXEL_WIDTH(f) \
57 (FRAME_PIXEL_WIDTH (f) + FRAME_TOOLBAR_WIDTH (f))
59 #ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
60 #define gtk_widget_set_has_window(w, b) \
61 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
62 #endif
63 #ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
64 #define gtk_dialog_get_action_area(w) ((w)->action_area)
65 #define gtk_dialog_get_content_area(w) ((w)->vbox)
66 #endif
67 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
68 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
69 #endif
70 #ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
71 #define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
72 #define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
73 #define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
74 #define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
75 #endif
76 #if GTK_CHECK_VERSION (2, 12, 0)
77 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
78 #else
79 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
80 #endif
82 #ifdef HAVE_FREETYPE
83 #if GTK_CHECK_VERSION (3, 2, 0)
84 #define USE_NEW_GTK_FONT_CHOOSER 1
85 #else
86 #define USE_NEW_GTK_FONT_CHOOSER 0
87 #define gtk_font_chooser_dialog_new(x, y) \
88 gtk_font_selection_dialog_new (x)
89 #undef GTK_FONT_CHOOSER
90 #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
91 #define gtk_font_chooser_set_font(x, y) \
92 gtk_font_selection_dialog_set_font_name (x, y)
93 #endif
94 #endif /* HAVE_FREETYPE */
96 #if GTK_CHECK_VERSION (3, 10, 0)
97 #define XG_TEXT_CANCEL "Cancel"
98 #define XG_TEXT_OK "OK"
99 #define XG_TEXT_OPEN "Open"
100 #else
101 #define XG_TEXT_CANCEL GTK_STOCK_CANCEL
102 #define XG_TEXT_OK GTK_STOCK_OK
103 #define XG_TEXT_OPEN GTK_STOCK_OPEN
104 #endif
106 #ifndef HAVE_GTK3
107 #ifdef USE_GTK_TOOLTIP
108 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
109 #endif
110 #define gdk_window_get_geometry(w, a, b, c, d) \
111 gdk_window_get_geometry (w, a, b, c, d, 0)
112 #define gdk_x11_window_lookup_for_display(d, w) \
113 gdk_xid_table_lookup_for_display (d, w)
114 #define gtk_box_new(ori, spacing) \
115 ((ori) == GTK_ORIENTATION_HORIZONTAL \
116 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
117 #define gtk_scrollbar_new(ori, spacing) \
118 ((ori) == GTK_ORIENTATION_HORIZONTAL \
119 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
120 #ifndef GDK_KEY_g
121 #define GDK_KEY_g GDK_g
122 #endif
123 #endif /* HAVE_GTK3 */
125 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
127 static void update_theme_scrollbar_width (void);
128 static void update_theme_scrollbar_height (void);
130 #define TB_INFO_KEY "xg_frame_tb_info"
131 struct xg_frame_tb_info
133 Lisp_Object last_tool_bar;
134 Lisp_Object style;
135 int n_last_items;
136 int hmargin, vmargin;
137 GtkTextDirection dir;
141 /***********************************************************************
142 Display handling functions
143 ***********************************************************************/
145 /* Keep track of the default display, or NULL if there is none. Emacs
146 may close all its displays. */
148 static GdkDisplay *gdpy_def;
150 /* When the GTK widget W is to be created on a display for F that
151 is not the default display, set the display for W.
152 W can be a GtkMenu or a GtkWindow widget. */
154 static void
155 xg_set_screen (GtkWidget *w, struct frame *f)
157 if (FRAME_X_DISPLAY (f) != DEFAULT_GDK_DISPLAY ())
159 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
160 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
162 if (GTK_IS_MENU (w))
163 gtk_menu_set_screen (GTK_MENU (w), gscreen);
164 else
165 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
170 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
171 *DPY is set to NULL if the display can't be opened.
173 Returns non-zero if display could be opened, zero if display could not
174 be opened, and less than zero if the GTK version doesn't support
175 multiple displays. */
177 void
178 xg_display_open (char *display_name, Display **dpy)
180 GdkDisplay *gdpy;
182 gdpy = gdk_display_open (display_name);
183 if (!gdpy_def && gdpy)
185 gdpy_def = gdpy;
186 gdk_display_manager_set_default_display (gdk_display_manager_get (),
187 gdpy);
190 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
194 /* Close display DPY. */
196 void
197 xg_display_close (Display *dpy)
199 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
201 /* If this is the default display, try to change it before closing.
202 If there is no other display to use, gdpy_def is set to NULL, and
203 the next call to xg_display_open resets the default display. */
204 if (gdk_display_get_default () == gdpy)
206 struct x_display_info *dpyinfo;
207 GdkDisplay *gdpy_new = NULL;
209 /* Find another display. */
210 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
211 if (dpyinfo->display != dpy)
213 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
214 gdk_display_manager_set_default_display (gdk_display_manager_get (),
215 gdpy_new);
216 break;
218 gdpy_def = gdpy_new;
221 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
222 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
223 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
224 can continue running, but there will be memory leaks. */
225 g_object_run_dispose (G_OBJECT (gdpy));
226 #else
227 /* This seems to be fixed in GTK 2.10. */
228 gdk_display_close (gdpy);
229 #endif
233 /***********************************************************************
234 Utility functions
235 ***********************************************************************/
237 /* Create and return the cursor to be used for popup menus and
238 scroll bars on display DPY. */
240 GdkCursor *
241 xg_create_default_cursor (Display *dpy)
243 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
244 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
247 static GdkPixbuf *
248 xg_get_pixbuf_from_pixmap (struct frame *f, Pixmap pix)
250 int iunused;
251 GdkPixbuf *tmp_buf;
252 Window wunused;
253 unsigned int width, height, uunused;
254 XImage *xim;
256 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
257 &width, &height, &uunused, &uunused);
259 xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
260 ~0, XYPixmap);
261 if (!xim) return 0;
263 tmp_buf = gdk_pixbuf_new_from_data ((guchar *) xim->data,
264 GDK_COLORSPACE_RGB,
265 FALSE,
266 xim->bitmap_unit,
267 width,
268 height,
269 xim->bytes_per_line,
270 NULL,
271 NULL);
272 XDestroyImage (xim);
273 return tmp_buf;
276 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
278 static GdkPixbuf *
279 xg_get_pixbuf_from_pix_and_mask (struct frame *f,
280 Pixmap pix,
281 Pixmap mask)
283 int width, height;
284 GdkPixbuf *icon_buf, *tmp_buf;
286 tmp_buf = xg_get_pixbuf_from_pixmap (f, pix);
287 icon_buf = gdk_pixbuf_add_alpha (tmp_buf, FALSE, 0, 0, 0);
288 g_object_unref (G_OBJECT (tmp_buf));
290 width = gdk_pixbuf_get_width (icon_buf);
291 height = gdk_pixbuf_get_height (icon_buf);
293 if (mask)
295 GdkPixbuf *mask_buf = xg_get_pixbuf_from_pixmap (f, mask);
296 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
297 guchar *mask_pixels = gdk_pixbuf_get_pixels (mask_buf);
298 int rowstride = gdk_pixbuf_get_rowstride (icon_buf);
299 int mask_rowstride = gdk_pixbuf_get_rowstride (mask_buf);
300 int y;
302 for (y = 0; y < height; ++y)
304 guchar *iconptr, *maskptr;
305 int x;
307 iconptr = pixels + y * rowstride;
308 maskptr = mask_pixels + y * mask_rowstride;
310 for (x = 0; x < width; ++x)
312 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
313 just R is sufficient. */
314 if (maskptr[0] == 0)
315 iconptr[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
317 iconptr += rowstride/width;
318 maskptr += mask_rowstride/width;
322 g_object_unref (G_OBJECT (mask_buf));
325 return icon_buf;
328 static Lisp_Object
329 file_for_image (Lisp_Object image)
331 Lisp_Object specified_file = Qnil;
332 Lisp_Object tail;
334 for (tail = XCDR (image);
335 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
336 tail = XCDR (XCDR (tail)))
337 if (EQ (XCAR (tail), QCfile))
338 specified_file = XCAR (XCDR (tail));
340 return specified_file;
343 /* For the image defined in IMG, make and return a GtkImage. For displays with
344 8 planes or less we must make a GdkPixbuf and apply the mask manually.
345 Otherwise the highlighting and dimming the tool bar code in GTK does
346 will look bad. For display with more than 8 planes we just use the
347 pixmap and mask directly. For monochrome displays, GTK doesn't seem
348 able to use external pixmaps, it looks bad whatever we do.
349 The image is defined on the display where frame F is.
350 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
351 If OLD_WIDGET is NULL, a new widget is constructed and returned.
352 If OLD_WIDGET is not NULL, that widget is modified. */
354 static GtkWidget *
355 xg_get_image_for_pixmap (struct frame *f,
356 struct image *img,
357 GtkWidget *widget,
358 GtkImage *old_widget)
360 GdkPixbuf *icon_buf;
362 /* If we have a file, let GTK do all the image handling.
363 This seems to be the only way to make insensitive and activated icons
364 look good in all cases. */
365 Lisp_Object specified_file = file_for_image (img->spec);
366 Lisp_Object file;
368 /* We already loaded the image once before calling this
369 function, so this only fails if the image file has been removed.
370 In that case, use the pixmap already loaded. */
372 if (STRINGP (specified_file)
373 && STRINGP (file = x_find_image_file (specified_file)))
375 if (! old_widget)
376 old_widget = GTK_IMAGE (gtk_image_new_from_file (SSDATA (file)));
377 else
378 gtk_image_set_from_file (old_widget, SSDATA (file));
380 return GTK_WIDGET (old_widget);
383 /* No file, do the image handling ourselves. This will look very bad
384 on a monochrome display, and sometimes bad on all displays with
385 certain themes. */
387 /* This is a workaround to make icons look good on pseudo color
388 displays. Apparently GTK expects the images to have an alpha
389 channel. If they don't, insensitive and activated icons will
390 look bad. This workaround does not work on monochrome displays,
391 and is strictly not needed on true color/static color displays (i.e.
392 16 bits and higher). But we do it anyway so we get a pixbuf that is
393 not associated with the img->pixmap. The img->pixmap may be removed
394 by clearing the image cache and then the tool bar redraw fails, since
395 Gtk+ assumes the pixmap is always there. */
396 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
398 if (icon_buf)
400 if (! old_widget)
401 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
402 else
403 gtk_image_set_from_pixbuf (old_widget, icon_buf);
405 g_object_unref (G_OBJECT (icon_buf));
408 return GTK_WIDGET (old_widget);
412 /* Set CURSOR on W and all widgets W contain. We must do like this
413 for scroll bars and menu because they create widgets internally,
414 and it is those widgets that are visible. */
416 static void
417 xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
419 GdkWindow *window = gtk_widget_get_window (w);
420 GList *children = gdk_window_peek_children (window);
422 gdk_window_set_cursor (window, cursor);
424 /* The scroll bar widget has more than one GDK window (had to look at
425 the source to figure this out), and there is no way to set cursor
426 on widgets in GTK. So we must set the cursor for all GDK windows.
427 Ditto for menus. */
429 for ( ; children; children = g_list_next (children))
430 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
433 /* Insert NODE into linked LIST. */
435 static void
436 xg_list_insert (xg_list_node *list, xg_list_node *node)
438 xg_list_node *list_start = list->next;
440 if (list_start) list_start->prev = node;
441 node->next = list_start;
442 node->prev = 0;
443 list->next = node;
446 /* Remove NODE from linked LIST. */
448 static void
449 xg_list_remove (xg_list_node *list, xg_list_node *node)
451 xg_list_node *list_start = list->next;
452 if (node == list_start)
454 list->next = node->next;
455 if (list->next) list->next->prev = 0;
457 else
459 node->prev->next = node->next;
460 if (node->next) node->next->prev = node->prev;
464 /* Allocate and return a utf8 version of STR. If STR is already
465 utf8 or NULL, just return a copy of STR.
466 A new string is allocated and the caller must free the result
467 with g_free. */
469 static char *
470 get_utf8_string (const char *str)
472 char *utf8_str;
474 if (!str) return NULL;
476 /* If not UTF-8, try current locale. */
477 if (!g_utf8_validate (str, -1, NULL))
478 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
479 else
480 return g_strdup (str);
482 if (!utf8_str)
484 /* Probably some control characters in str. Escape them. */
485 ptrdiff_t len;
486 ptrdiff_t nr_bad = 0;
487 gsize bytes_read;
488 gsize bytes_written;
489 unsigned char *p = (unsigned char *)str;
490 char *cp, *up;
491 GError *err = NULL;
493 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
494 &bytes_written, &err))
495 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
497 ++nr_bad;
498 p += bytes_written+1;
499 g_error_free (err);
500 err = NULL;
503 if (err)
505 g_error_free (err);
506 err = NULL;
508 if (cp) g_free (cp);
510 len = strlen (str);
511 if ((min (PTRDIFF_MAX, SIZE_MAX) - len - 1) / 4 < nr_bad)
512 memory_full (SIZE_MAX);
513 up = utf8_str = xmalloc (len + nr_bad * 4 + 1);
514 p = (unsigned char *)str;
516 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
517 &bytes_written, &err))
518 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
520 memcpy (up, p, bytes_written);
521 up += bytes_written;
522 up += sprintf (up, "\\%03o", p[bytes_written]);
523 p += bytes_written + 1;
524 g_error_free (err);
525 err = NULL;
528 if (cp)
530 strcpy (up, cp);
531 g_free (cp);
533 if (err)
535 g_error_free (err);
536 err = NULL;
539 return utf8_str;
542 /* Check for special colors used in face spec for region face.
543 The colors are fetched from the Gtk+ theme.
544 Return true if color was found, false if not. */
546 bool
547 xg_check_special_colors (struct frame *f,
548 const char *color_name,
549 XColor *color)
551 bool success_p = 0;
552 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
553 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
555 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
556 return success_p;
558 block_input ();
560 #ifdef HAVE_GTK3
561 GtkStyleContext *gsty
562 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
563 GdkRGBA col;
564 char buf[sizeof "rgb://rrrr/gggg/bbbb"];
565 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
566 if (get_fg)
567 gtk_style_context_get_color (gsty, state, &col);
568 else
569 gtk_style_context_get_background_color (gsty, state, &col);
571 sprintf (buf, "rgb:%04x/%04x/%04x",
572 (int)(col.red * 65535),
573 (int)(col.green * 65535),
574 (int)(col.blue * 65535));
575 success_p = (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
576 buf, color)
577 != 0);
578 #else
579 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
580 GdkColor *grgb = get_bg
581 ? &gsty->bg[GTK_STATE_SELECTED]
582 : &gsty->fg[GTK_STATE_SELECTED];
584 color->red = grgb->red;
585 color->green = grgb->green;
586 color->blue = grgb->blue;
587 color->pixel = grgb->pixel;
588 success_p = 1;
589 #endif
592 unblock_input ();
593 return success_p;
598 /***********************************************************************
599 Tooltips
600 ***********************************************************************/
601 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
602 We use that to pop down the tooltip. This happens if Gtk+ for some
603 reason wants to change or hide the tooltip. */
605 #ifdef USE_GTK_TOOLTIP
607 static void
608 hierarchy_ch_cb (GtkWidget *widget,
609 GtkWidget *previous_toplevel,
610 gpointer user_data)
612 struct frame *f = user_data;
613 struct x_output *x = f->output_data.x;
614 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
616 if (! top || ! GTK_IS_WINDOW (top))
617 gtk_widget_hide (previous_toplevel);
620 /* Callback called when Gtk+ thinks a tooltip should be displayed.
621 We use it to get the tooltip window and the tooltip widget so
622 we can manipulate the ourselves.
624 Return FALSE ensures that the tooltip is not shown. */
626 static gboolean
627 qttip_cb (GtkWidget *widget,
628 gint xpos,
629 gint ypos,
630 gboolean keyboard_mode,
631 GtkTooltip *tooltip,
632 gpointer user_data)
634 struct frame *f = user_data;
635 struct x_output *x = f->output_data.x;
636 if (x->ttip_widget == NULL)
638 GtkWidget *p;
639 GList *list, *iter;
641 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
642 x->ttip_widget = tooltip;
643 g_object_ref (G_OBJECT (tooltip));
644 x->ttip_lbl = gtk_label_new ("");
645 g_object_ref (G_OBJECT (x->ttip_lbl));
646 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
647 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
649 /* Change stupid Gtk+ default line wrapping. */
650 p = gtk_widget_get_parent (x->ttip_lbl);
651 list = gtk_container_get_children (GTK_CONTAINER (p));
652 for (iter = list; iter; iter = g_list_next (iter))
654 GtkWidget *w = GTK_WIDGET (iter->data);
655 if (GTK_IS_LABEL (w))
656 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
658 g_list_free (list);
660 /* ATK needs an empty title for some reason. */
661 gtk_window_set_title (x->ttip_window, "");
662 /* Realize so we can safely get screen later on. */
663 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
664 gtk_widget_realize (x->ttip_lbl);
666 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
667 G_CALLBACK (hierarchy_ch_cb), f);
669 return FALSE;
672 #endif /* USE_GTK_TOOLTIP */
674 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
675 Return true if a system tooltip is available. */
677 bool
678 xg_prepare_tooltip (struct frame *f,
679 Lisp_Object string,
680 int *width,
681 int *height)
683 #ifndef USE_GTK_TOOLTIP
684 return 0;
685 #else
686 struct x_output *x = f->output_data.x;
687 GtkWidget *widget;
688 GdkWindow *gwin;
689 GdkScreen *screen;
690 GtkSettings *settings;
691 gboolean tt_enabled = TRUE;
692 GtkRequisition req;
693 Lisp_Object encoded_string;
695 if (!x->ttip_lbl) return 0;
697 block_input ();
698 encoded_string = ENCODE_UTF_8 (string);
699 widget = GTK_WIDGET (x->ttip_lbl);
700 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
701 screen = gdk_window_get_screen (gwin);
702 settings = gtk_settings_get_for_screen (screen);
703 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
704 if (tt_enabled)
706 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
707 /* Record that we disabled it so it can be enabled again. */
708 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
709 (gpointer)f);
712 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
713 g_object_set_data (G_OBJECT
714 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
715 "gdk-display-current-tooltip", NULL);
717 /* Put our dummy widget in so we can get callbacks for unrealize and
718 hierarchy-changed. */
719 gtk_tooltip_set_custom (x->ttip_widget, widget);
720 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
721 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
722 if (width) *width = req.width;
723 if (height) *height = req.height;
725 unblock_input ();
727 return 1;
728 #endif /* USE_GTK_TOOLTIP */
731 /* Show the tooltip at ROOT_X and ROOT_Y.
732 xg_prepare_tooltip must have been called before this function. */
734 void
735 xg_show_tooltip (struct frame *f, int root_x, int root_y)
737 #ifdef USE_GTK_TOOLTIP
738 struct x_output *x = f->output_data.x;
739 if (x->ttip_window)
741 block_input ();
742 gtk_window_move (x->ttip_window, root_x, root_y);
743 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
744 unblock_input ();
746 #endif
749 /* Hide tooltip if shown. Do nothing if not shown.
750 Return true if tip was hidden, false if not (i.e. not using
751 system tooltips). */
753 bool
754 xg_hide_tooltip (struct frame *f)
756 bool ret = 0;
757 #ifdef USE_GTK_TOOLTIP
758 if (f->output_data.x->ttip_window)
760 GtkWindow *win = f->output_data.x->ttip_window;
761 block_input ();
762 gtk_widget_hide (GTK_WIDGET (win));
764 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
766 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
767 GdkScreen *screen = gdk_window_get_screen (gwin);
768 GtkSettings *settings = gtk_settings_get_for_screen (screen);
769 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
771 unblock_input ();
773 ret = 1;
775 #endif
776 return ret;
780 /***********************************************************************
781 General functions for creating widgets, resizing, events, e.t.c.
782 ***********************************************************************/
784 static void
785 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
786 const gchar *msg, gpointer user_data)
788 if (!strstr (msg, "visible children"))
789 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
792 /* Make a geometry string and pass that to GTK. It seems this is the
793 only way to get geometry position right if the user explicitly
794 asked for a position when starting Emacs.
795 F is the frame we shall set geometry for. */
797 static void
798 xg_set_geometry (struct frame *f)
800 if (f->size_hint_flags & (USPosition | PPosition))
802 int left = f->left_pos;
803 int xneg = f->size_hint_flags & XNegative;
804 int top = f->top_pos;
805 int yneg = f->size_hint_flags & YNegative;
806 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
807 guint id;
809 if (xneg)
810 left = -left;
811 if (yneg)
812 top = -top;
814 sprintf (geom_str, "=%dx%d%c%d%c%d",
815 FRAME_PIXEL_WIDTH (f),
816 FRAME_PIXEL_HEIGHT (f),
817 (xneg ? '-' : '+'), left,
818 (yneg ? '-' : '+'), top);
820 /* Silence warning about visible children. */
821 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
822 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
824 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
825 geom_str))
826 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
828 g_log_remove_handler ("Gtk", id);
832 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
833 and use a GtkFixed widget, this doesn't happen automatically. */
835 void
836 xg_clear_under_internal_border (struct frame *f)
838 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
840 GtkWidget *wfixed = f->output_data.x->edit_widget;
842 gtk_widget_queue_draw (wfixed);
843 gdk_window_process_all_updates ();
845 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 0, 0,
846 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
848 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 0, 0,
849 FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
851 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 0,
852 FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
853 FRAME_PIXEL_WIDTH (f), FRAME_INTERNAL_BORDER_WIDTH (f));
855 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
856 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
857 0, FRAME_INTERNAL_BORDER_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
861 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
862 and a Gtk+ menu bar, we get resize events for the edit part of the
863 frame only. We let Gtk+ deal with the Gtk+ parts.
864 F is the frame to resize.
865 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
867 void
868 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
870 int width, height;
872 if (pixelwidth == -1 && pixelheight == -1)
874 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
875 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
876 0, 0,
877 &pixelwidth, &pixelheight);
878 else return;
882 width = FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth);
883 height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight);
885 if (width != FRAME_TEXT_WIDTH (f)
886 || height != FRAME_TEXT_HEIGHT (f)
887 || pixelwidth != FRAME_PIXEL_WIDTH (f)
888 || pixelheight != FRAME_PIXEL_HEIGHT (f))
890 FRAME_PIXEL_WIDTH (f) = pixelwidth;
891 FRAME_PIXEL_HEIGHT (f) = pixelheight;
893 xg_clear_under_internal_border (f);
894 change_frame_size (f, width, height, 0, 1, 0, 1);
895 SET_FRAME_GARBAGED (f);
896 cancel_mouse_face (f);
898 do_pending_window_change (0);
902 /* Resize the outer window of frame F after changing the height.
903 COLUMNS/ROWS is the size the edit area shall have after the resize. */
905 void
906 xg_frame_set_char_size (struct frame *f, int width, int height)
908 int pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
909 int pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
911 if (FRAME_PIXEL_HEIGHT (f) == 0)
912 return;
914 /* Do this before resize, as we don't know yet if we will be resized. */
915 xg_clear_under_internal_border (f);
917 /* Must resize our top level widget. Font size may have changed,
918 but not rows/cols. */
919 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
920 pixelwidth + FRAME_TOOLBAR_WIDTH (f),
921 pixelheight + FRAME_TOOLBAR_HEIGHT (f)
922 + FRAME_MENUBAR_HEIGHT (f));
923 x_wm_set_size_hint (f, 0, 0);
925 SET_FRAME_GARBAGED (f);
926 cancel_mouse_face (f);
928 /* We can not call change_frame_size for a mapped frame,
929 we can not set pixel width/height either. The window manager may
930 override our resize request, XMonad does this all the time.
931 The best we can do is try to sync, so lisp code sees the updated
932 size as fast as possible.
933 For unmapped windows, we can set rows/cols. When
934 the frame is mapped again we will (hopefully) get the correct size. */
935 if (FRAME_VISIBLE_P (f))
937 /* Must call this to flush out events */
938 (void)gtk_events_pending ();
939 gdk_flush ();
940 x_wait_for_event (f, ConfigureNotify);
942 else
943 adjust_frame_size (f, -1, -1, 5, 0);
946 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
947 The policy is to keep the number of editable lines. */
949 static void
950 xg_height_or_width_changed (struct frame *f)
952 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
953 FRAME_TOTAL_PIXEL_WIDTH (f),
954 FRAME_TOTAL_PIXEL_HEIGHT (f));
955 f->output_data.x->hint_flags = 0;
956 x_wm_set_size_hint (f, 0, 0);
959 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
960 Must be done like this, because GtkWidget:s can have "hidden"
961 X Window that aren't accessible.
963 Return 0 if no widget match WDESC. */
965 GtkWidget *
966 xg_win_to_widget (Display *dpy, Window wdesc)
968 gpointer gdkwin;
969 GtkWidget *gwdesc = 0;
971 block_input ();
973 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
974 wdesc);
975 if (gdkwin)
977 GdkEvent event;
978 event.any.window = gdkwin;
979 event.any.type = GDK_NOTHING;
980 gwdesc = gtk_get_event_widget (&event);
983 unblock_input ();
984 return gwdesc;
987 /* Set the background of widget W to PIXEL. */
989 static void
990 xg_set_widget_bg (struct frame *f, GtkWidget *w, unsigned long pixel)
992 #ifdef HAVE_GTK3
993 GdkRGBA bg;
994 XColor xbg;
995 xbg.pixel = pixel;
996 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
998 bg.red = (double)xbg.red/65535.0;
999 bg.green = (double)xbg.green/65535.0;
1000 bg.blue = (double)xbg.blue/65535.0;
1001 bg.alpha = 1.0;
1002 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1004 #else
1005 GdkColor bg;
1006 GdkColormap *map = gtk_widget_get_colormap (w);
1007 gdk_colormap_query_color (map, pixel, &bg);
1008 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1009 #endif
1012 /* Callback called when the gtk theme changes.
1013 We notify lisp code so it can fix faces used for region for example. */
1015 static void
1016 style_changed_cb (GObject *go,
1017 GParamSpec *spec,
1018 gpointer user_data)
1020 struct input_event event;
1021 GdkDisplay *gdpy = user_data;
1022 const char *display_name = gdk_display_get_name (gdpy);
1023 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1025 EVENT_INIT (event);
1026 event.kind = CONFIG_CHANGED_EVENT;
1027 event.frame_or_window = build_string (display_name);
1028 /* Theme doesn't change often, so intern is called seldom. */
1029 event.arg = intern ("theme-name");
1030 kbd_buffer_store_event (&event);
1032 update_theme_scrollbar_width ();
1033 update_theme_scrollbar_height ();
1035 /* If scroll bar width changed, we need set the new size on all frames
1036 on this display. */
1037 if (dpy)
1039 Lisp_Object rest, frame;
1040 FOR_EACH_FRAME (rest, frame)
1042 struct frame *f = XFRAME (frame);
1043 if (FRAME_LIVE_P (f)
1044 && FRAME_X_P (f)
1045 && FRAME_X_DISPLAY (f) == dpy)
1047 x_set_scroll_bar_default_width (f);
1048 x_set_scroll_bar_default_height (f);
1049 xg_frame_set_char_size (f, FRAME_TEXT_WIDTH (f), FRAME_TEXT_HEIGHT (f));
1055 /* Called when a delete-event occurs on WIDGET. */
1057 static gboolean
1058 delete_cb (GtkWidget *widget,
1059 GdkEvent *event,
1060 gpointer user_data)
1062 #ifdef HAVE_GTK3
1063 /* The event doesn't arrive in the normal event loop. Send event
1064 here. */
1065 struct frame *f = user_data;
1066 struct input_event ie;
1068 EVENT_INIT (ie);
1069 ie.kind = DELETE_WINDOW_EVENT;
1070 XSETFRAME (ie.frame_or_window, f);
1071 kbd_buffer_store_event (&ie);
1072 #endif
1074 return TRUE;
1077 /* Create and set up the GTK widgets for frame F.
1078 Return true if creation succeeded. */
1080 bool
1081 xg_create_frame_widgets (struct frame *f)
1083 GtkWidget *wtop;
1084 GtkWidget *wvbox, *whbox;
1085 GtkWidget *wfixed;
1086 #ifndef HAVE_GTK3
1087 GtkRcStyle *style;
1088 #endif
1089 char *title = 0;
1091 block_input ();
1093 if (FRAME_X_EMBEDDED_P (f))
1095 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1096 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1098 else
1099 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1101 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1102 has backported it to Gtk+ 2.0 and they add the resize grip for
1103 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1104 forever, so disable the grip. */
1105 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1106 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1107 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1108 #endif
1110 xg_set_screen (wtop, f);
1112 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1113 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1114 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1115 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1117 #ifdef HAVE_GTK3
1118 wfixed = emacs_fixed_new (f);
1119 #else
1120 wfixed = gtk_fixed_new ();
1121 #endif
1123 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1125 if (wtop) gtk_widget_destroy (wtop);
1126 if (wvbox) gtk_widget_destroy (wvbox);
1127 if (whbox) gtk_widget_destroy (whbox);
1128 if (wfixed) gtk_widget_destroy (wfixed);
1130 unblock_input ();
1131 return 0;
1134 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1135 gtk_widget_set_name (wtop, EMACS_CLASS);
1136 gtk_widget_set_name (wvbox, "pane");
1137 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1139 /* If this frame has a title or name, set it in the title bar. */
1140 if (! NILP (f->title))
1141 title = SSDATA (ENCODE_UTF_8 (f->title));
1142 else if (! NILP (f->name))
1143 title = SSDATA (ENCODE_UTF_8 (f->name));
1145 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
1147 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1148 FRAME_GTK_WIDGET (f) = wfixed;
1149 f->output_data.x->vbox_widget = wvbox;
1150 f->output_data.x->hbox_widget = whbox;
1152 gtk_widget_set_has_window (wfixed, TRUE);
1154 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1155 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1156 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1158 if (FRAME_EXTERNAL_TOOL_BAR (f))
1159 update_frame_tool_bar (f);
1161 /* We don't want this widget double buffered, because we draw on it
1162 with regular X drawing primitives, so from a GTK/GDK point of
1163 view, the widget is totally blank. When an expose comes, this
1164 will make the widget blank, and then Emacs redraws it. This flickers
1165 a lot, so we turn off double buffering. */
1166 gtk_widget_set_double_buffered (wfixed, FALSE);
1168 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1169 SSDATA (Vx_resource_name),
1170 SSDATA (Vx_resource_class));
1172 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1173 GTK is to destroy the widget. We want Emacs to do that instead. */
1174 g_signal_connect (G_OBJECT (wtop), "delete-event",
1175 G_CALLBACK (delete_cb), f);
1177 /* Convert our geometry parameters into a geometry string
1178 and specify it.
1179 GTK will itself handle calculating the real position this way. */
1180 xg_set_geometry (f);
1181 f->win_gravity
1182 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1184 gtk_widget_add_events (wfixed,
1185 GDK_POINTER_MOTION_MASK
1186 | GDK_EXPOSURE_MASK
1187 | GDK_BUTTON_PRESS_MASK
1188 | GDK_BUTTON_RELEASE_MASK
1189 | GDK_KEY_PRESS_MASK
1190 | GDK_ENTER_NOTIFY_MASK
1191 | GDK_LEAVE_NOTIFY_MASK
1192 | GDK_FOCUS_CHANGE_MASK
1193 | GDK_STRUCTURE_MASK
1194 | GDK_VISIBILITY_NOTIFY_MASK);
1196 /* Must realize the windows so the X window gets created. It is used
1197 by callers of this function. */
1198 gtk_widget_realize (wfixed);
1199 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1201 /* Since GTK clears its window by filling with the background color,
1202 we must keep X and GTK background in sync. */
1203 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1205 #ifndef HAVE_GTK3
1206 /* Also, do not let any background pixmap to be set, this looks very
1207 bad as Emacs overwrites the background pixmap with its own idea
1208 of background color. */
1209 style = gtk_widget_get_modifier_style (wfixed);
1211 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1212 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1213 gtk_widget_modify_style (wfixed, style);
1214 #else
1215 gtk_widget_set_can_focus (wfixed, TRUE);
1216 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1217 #endif
1219 #ifdef USE_GTK_TOOLTIP
1220 /* Steal a tool tip window we can move ourselves. */
1221 f->output_data.x->ttip_widget = 0;
1222 f->output_data.x->ttip_lbl = 0;
1223 f->output_data.x->ttip_window = 0;
1224 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1225 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1226 #endif
1229 GdkScreen *screen = gtk_widget_get_screen (wtop);
1230 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1231 /* Only connect this signal once per screen. */
1232 if (! g_signal_handler_find (G_OBJECT (gs),
1233 G_SIGNAL_MATCH_FUNC,
1234 0, 0, 0,
1235 G_CALLBACK (style_changed_cb),
1238 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1239 G_CALLBACK (style_changed_cb),
1240 gdk_screen_get_display (screen));
1244 unblock_input ();
1246 return 1;
1249 void
1250 xg_free_frame_widgets (struct frame *f)
1252 if (FRAME_GTK_OUTER_WIDGET (f))
1254 #ifdef USE_GTK_TOOLTIP
1255 struct x_output *x = f->output_data.x;
1256 #endif
1257 struct xg_frame_tb_info *tbinfo
1258 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1259 TB_INFO_KEY);
1260 if (tbinfo)
1261 xfree (tbinfo);
1263 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1264 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1265 FRAME_GTK_OUTER_WIDGET (f) = 0;
1266 #ifdef USE_GTK_TOOLTIP
1267 if (x->ttip_lbl)
1268 gtk_widget_destroy (x->ttip_lbl);
1269 if (x->ttip_widget)
1270 g_object_unref (G_OBJECT (x->ttip_widget));
1271 #endif
1275 /* Set the normal size hints for the window manager, for frame F.
1276 FLAGS is the flags word to use--or 0 meaning preserve the flags
1277 that the window now has.
1278 If USER_POSITION, set the User Position
1279 flag (this is useful when FLAGS is 0). */
1281 void
1282 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1284 /* Must use GTK routines here, otherwise GTK resets the size hints
1285 to its own defaults. */
1286 GdkGeometry size_hints;
1287 gint hint_flags = 0;
1288 int base_width, base_height;
1289 int min_rows = 0, min_cols = 0;
1290 int win_gravity = f->win_gravity;
1291 Lisp_Object fs_state, frame;
1293 /* Don't set size hints during initialization; that apparently leads
1294 to a race condition. See the thread at
1295 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1296 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1297 return;
1299 XSETFRAME (frame, f);
1300 fs_state = Fframe_parameter (frame, Qfullscreen);
1301 if (EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth))
1303 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1304 Gtk3 don't get along and the frame shrinks (!).
1306 return;
1309 if (flags)
1311 memset (&size_hints, 0, sizeof (size_hints));
1312 f->output_data.x->size_hints = size_hints;
1313 f->output_data.x->hint_flags = hint_flags;
1315 else
1316 flags = f->size_hint_flags;
1318 size_hints = f->output_data.x->size_hints;
1319 hint_flags = f->output_data.x->hint_flags;
1321 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1322 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
1323 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
1325 hint_flags |= GDK_HINT_BASE_SIZE;
1326 /* Use one row/col here so base_height/width does not become zero.
1327 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it. */
1328 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1329 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1330 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1332 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1333 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1335 size_hints.base_width = base_width;
1336 size_hints.base_height = base_height;
1337 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
1338 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
1340 /* These currently have a one to one mapping with the X values, but I
1341 don't think we should rely on that. */
1342 hint_flags |= GDK_HINT_WIN_GRAVITY;
1343 size_hints.win_gravity = 0;
1344 if (win_gravity == NorthWestGravity)
1345 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1346 else if (win_gravity == NorthGravity)
1347 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1348 else if (win_gravity == NorthEastGravity)
1349 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1350 else if (win_gravity == WestGravity)
1351 size_hints.win_gravity = GDK_GRAVITY_WEST;
1352 else if (win_gravity == CenterGravity)
1353 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1354 else if (win_gravity == EastGravity)
1355 size_hints.win_gravity = GDK_GRAVITY_EAST;
1356 else if (win_gravity == SouthWestGravity)
1357 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1358 else if (win_gravity == SouthGravity)
1359 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1360 else if (win_gravity == SouthEastGravity)
1361 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1362 else if (win_gravity == StaticGravity)
1363 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1365 if (user_position)
1367 hint_flags &= ~GDK_HINT_POS;
1368 hint_flags |= GDK_HINT_USER_POS;
1371 if (hint_flags != f->output_data.x->hint_flags
1372 || memcmp (&size_hints,
1373 &f->output_data.x->size_hints,
1374 sizeof (size_hints)) != 0)
1376 block_input ();
1377 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1378 NULL, &size_hints, hint_flags);
1379 f->output_data.x->size_hints = size_hints;
1380 f->output_data.x->hint_flags = hint_flags;
1381 unblock_input ();
1385 /* Change background color of a frame.
1386 Since GTK uses the background color to clear the window, we must
1387 keep the GTK and X colors in sync.
1388 F is the frame to change,
1389 BG is the pixel value to change to. */
1391 void
1392 xg_set_background_color (struct frame *f, unsigned long bg)
1394 if (FRAME_GTK_WIDGET (f))
1396 block_input ();
1397 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1398 unblock_input ();
1403 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1404 functions so GTK does not overwrite the icon. */
1406 void
1407 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1409 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1410 icon_pixmap,
1411 icon_mask);
1412 if (gp)
1413 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1418 /***********************************************************************
1419 Dialog functions
1420 ***********************************************************************/
1421 /* Return the dialog title to use for a dialog of type KEY.
1422 This is the encoding used by lwlib. We use the same for GTK. */
1424 static const char *
1425 get_dialog_title (char key)
1427 const char *title = "";
1429 switch (key) {
1430 case 'E': case 'e':
1431 title = "Error";
1432 break;
1434 case 'I': case 'i':
1435 title = "Information";
1436 break;
1438 case 'L': case 'l':
1439 title = "Prompt";
1440 break;
1442 case 'P': case 'p':
1443 title = "Prompt";
1444 break;
1446 case 'Q': case 'q':
1447 title = "Question";
1448 break;
1451 return title;
1454 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1455 the dialog, but return TRUE so the event does not propagate further
1456 in GTK. This prevents GTK from destroying the dialog widget automatically
1457 and we can always destroy the widget manually, regardless of how
1458 it was popped down (button press or WM_DELETE_WINDOW).
1459 W is the dialog widget.
1460 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1461 user_data is NULL (not used).
1463 Returns TRUE to end propagation of event. */
1465 static gboolean
1466 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1468 gtk_widget_unmap (w);
1469 return TRUE;
1472 /* Create a popup dialog window. See also xg_create_widget below.
1473 WV is a widget_value describing the dialog.
1474 SELECT_CB is the callback to use when a button has been pressed.
1475 DEACTIVATE_CB is the callback to use when the dialog pops down.
1477 Returns the GTK dialog widget. */
1479 static GtkWidget *
1480 create_dialog (widget_value *wv,
1481 GCallback select_cb,
1482 GCallback deactivate_cb)
1484 const char *title = get_dialog_title (wv->name[0]);
1485 int total_buttons = wv->name[1] - '0';
1486 int right_buttons = wv->name[4] - '0';
1487 int left_buttons;
1488 int button_nr = 0;
1489 int button_spacing = 10;
1490 GtkWidget *wdialog = gtk_dialog_new ();
1491 GtkDialog *wd = GTK_DIALOG (wdialog);
1492 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1493 widget_value *item;
1494 GtkWidget *whbox_down;
1496 /* If the number of buttons is greater than 4, make two rows of buttons
1497 instead. This looks better. */
1498 bool make_two_rows = total_buttons > 4;
1500 if (right_buttons == 0) right_buttons = total_buttons/2;
1501 left_buttons = total_buttons - right_buttons;
1503 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1504 gtk_widget_set_name (wdialog, "emacs-dialog");
1507 if (make_two_rows)
1509 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1510 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1511 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1512 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1513 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1514 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1516 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1517 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1518 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1520 cur_box = GTK_BOX (whbox_up);
1523 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1524 G_CALLBACK (dialog_delete_callback), 0);
1526 if (deactivate_cb)
1528 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1529 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1532 for (item = wv->contents; item; item = item->next)
1534 char *utf8_label = get_utf8_string (item->value);
1535 GtkWidget *w;
1536 GtkRequisition req;
1538 if (item->name && strcmp (item->name, "message") == 0)
1540 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1541 /* This is the text part of the dialog. */
1542 w = gtk_label_new (utf8_label);
1543 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1544 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1545 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1547 /* Try to make dialog look better. Must realize first so
1548 the widget can calculate the size it needs. */
1549 gtk_widget_realize (w);
1550 gtk_widget_get_preferred_size (w, NULL, &req);
1551 gtk_box_set_spacing (wvbox, req.height);
1552 if (item->value && strlen (item->value) > 0)
1553 button_spacing = 2*req.width/strlen (item->value);
1554 if (button_spacing < 10) button_spacing = 10;
1556 else
1558 /* This is one button to add to the dialog. */
1559 w = gtk_button_new_with_label (utf8_label);
1560 if (! item->enabled)
1561 gtk_widget_set_sensitive (w, FALSE);
1562 if (select_cb)
1563 g_signal_connect (G_OBJECT (w), "clicked",
1564 select_cb, item->call_data);
1566 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1567 if (++button_nr == left_buttons)
1569 if (make_two_rows)
1570 cur_box = GTK_BOX (whbox_down);
1574 if (utf8_label)
1575 g_free (utf8_label);
1578 return wdialog;
1581 struct xg_dialog_data
1583 GMainLoop *loop;
1584 int response;
1585 GtkWidget *w;
1586 guint timerid;
1589 /* Function that is called when the file or font dialogs pop down.
1590 W is the dialog widget, RESPONSE is the response code.
1591 USER_DATA is what we passed in to g_signal_connect. */
1593 static void
1594 xg_dialog_response_cb (GtkDialog *w,
1595 gint response,
1596 gpointer user_data)
1598 struct xg_dialog_data *dd = user_data;
1599 dd->response = response;
1600 g_main_loop_quit (dd->loop);
1604 /* Destroy the dialog. This makes it pop down. */
1606 static void
1607 pop_down_dialog (void *arg)
1609 struct xg_dialog_data *dd = arg;
1611 block_input ();
1612 if (dd->w) gtk_widget_destroy (dd->w);
1613 if (dd->timerid != 0) g_source_remove (dd->timerid);
1615 g_main_loop_quit (dd->loop);
1616 g_main_loop_unref (dd->loop);
1618 unblock_input ();
1621 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1622 We pass in DATA as gpointer* so we can use this as a callback. */
1624 static gboolean
1625 xg_maybe_add_timer (gpointer data)
1627 struct xg_dialog_data *dd = data;
1628 struct timespec next_time = timer_check ();
1630 dd->timerid = 0;
1632 if (timespec_valid_p (next_time))
1634 time_t s = next_time.tv_sec;
1635 int per_ms = TIMESPEC_RESOLUTION / 1000;
1636 int ms = (next_time.tv_nsec + per_ms - 1) / per_ms;
1637 if (s <= ((guint) -1 - ms) / 1000)
1638 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1640 return FALSE;
1644 /* Pops up a modal dialog W and waits for response.
1645 We don't use gtk_dialog_run because we want to process emacs timers.
1646 The dialog W is not destroyed when this function returns. */
1648 static int
1649 xg_dialog_run (struct frame *f, GtkWidget *w)
1651 ptrdiff_t count = SPECPDL_INDEX ();
1652 struct xg_dialog_data dd;
1654 xg_set_screen (w, f);
1655 gtk_window_set_transient_for (GTK_WINDOW (w),
1656 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1657 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1658 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1660 dd.loop = g_main_loop_new (NULL, FALSE);
1661 dd.response = GTK_RESPONSE_CANCEL;
1662 dd.w = w;
1663 dd.timerid = 0;
1665 g_signal_connect (G_OBJECT (w),
1666 "response",
1667 G_CALLBACK (xg_dialog_response_cb),
1668 &dd);
1669 /* Don't destroy the widget if closed by the window manager close button. */
1670 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1671 gtk_widget_show (w);
1673 record_unwind_protect_ptr (pop_down_dialog, &dd);
1675 (void) xg_maybe_add_timer (&dd);
1676 g_main_loop_run (dd.loop);
1678 dd.w = 0;
1679 unbind_to (count, Qnil);
1681 return dd.response;
1685 /***********************************************************************
1686 File dialog functions
1687 ***********************************************************************/
1688 /* Return true if the old file selection dialog is being used. */
1690 bool
1691 xg_uses_old_file_dialog (void)
1693 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1694 return x_gtk_use_old_file_dialog;
1695 #else
1696 return 0;
1697 #endif
1701 typedef char * (*xg_get_file_func) (GtkWidget *);
1703 /* Return the selected file for file chooser dialog W.
1704 The returned string must be free:d. */
1706 static char *
1707 xg_get_file_name_from_chooser (GtkWidget *w)
1709 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1712 /* Callback called when the "Show hidden files" toggle is pressed.
1713 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1715 static void
1716 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1718 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1719 gboolean visible;
1720 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1721 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1725 /* Callback called when a property changes in a file chooser.
1726 GOBJECT is the file chooser dialog, ARG1 describes the property.
1727 USER_DATA is the toggle widget in the file chooser dialog.
1728 We use this to update the "Show hidden files" toggle when the user
1729 changes that property by right clicking in the file list. */
1731 static void
1732 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1734 if (strcmp (arg1->name, "show-hidden") == 0)
1736 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1737 gboolean visible, toggle_on;
1739 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1740 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1742 if (!!visible != !!toggle_on)
1744 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1745 G_CALLBACK (xg_toggle_visibility_cb),
1746 gobject);
1747 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1748 g_signal_handlers_unblock_by_func
1749 (G_OBJECT (wtoggle),
1750 G_CALLBACK (xg_toggle_visibility_cb),
1751 gobject);
1753 x_gtk_show_hidden_files = visible;
1757 /* Read a file name from the user using a file chooser dialog.
1758 F is the current frame.
1759 PROMPT is a prompt to show to the user. May not be NULL.
1760 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1761 If MUSTMATCH_P, the returned file name must be an existing
1762 file. (Actually, this only has cosmetic effects, the user can
1763 still enter a non-existing file.) *FUNC is set to a function that
1764 can be used to retrieve the selected file name from the returned widget.
1766 Returns the created widget. */
1768 static GtkWidget *
1769 xg_get_file_with_chooser (struct frame *f,
1770 char *prompt,
1771 char *default_filename,
1772 bool mustmatch_p, bool only_dir_p,
1773 xg_get_file_func *func)
1775 char msgbuf[1024];
1777 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
1778 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1779 GtkFileChooserAction action = (mustmatch_p ?
1780 GTK_FILE_CHOOSER_ACTION_OPEN :
1781 GTK_FILE_CHOOSER_ACTION_SAVE);
1783 if (only_dir_p)
1784 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1786 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1787 XG_TEXT_CANCEL, GTK_RESPONSE_CANCEL,
1788 (mustmatch_p || only_dir_p ?
1789 XG_TEXT_OPEN : XG_TEXT_OK),
1790 GTK_RESPONSE_OK,
1791 NULL);
1792 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1794 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1795 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
1796 gtk_widget_show (wbox);
1797 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1799 if (x_gtk_show_hidden_files)
1801 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1802 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1804 gtk_widget_show (wtoggle);
1805 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1806 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1807 g_signal_connect (G_OBJECT (filewin), "notify",
1808 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1810 if (x_gtk_file_dialog_help_text)
1812 msgbuf[0] = '\0';
1813 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1814 Show the C-l help text only for versions < 2.10. */
1815 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1816 strcat (msgbuf, "\nType C-l to display a file name text entry box.\n");
1817 strcat (msgbuf, "\nIf you don't like this file selector, use the "
1818 "corresponding\nkey binding or customize "
1819 "use-file-dialog to turn it off.");
1821 wmessage = gtk_label_new (msgbuf);
1822 gtk_widget_show (wmessage);
1825 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1826 if (x_gtk_file_dialog_help_text)
1827 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1828 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1830 if (default_filename)
1832 Lisp_Object file;
1833 struct gcpro gcpro1;
1834 char *utf8_filename;
1835 GCPRO1 (file);
1837 file = build_string (default_filename);
1839 /* File chooser does not understand ~/... in the file name. It must be
1840 an absolute name starting with /. */
1841 if (default_filename[0] != '/')
1842 file = Fexpand_file_name (file, Qnil);
1844 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1845 if (! NILP (Ffile_directory_p (file)))
1846 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1847 utf8_filename);
1848 else
1850 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1851 utf8_filename);
1852 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1854 char *cp = strrchr (utf8_filename, '/');
1855 if (cp) ++cp;
1856 else cp = utf8_filename;
1857 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1861 UNGCPRO;
1864 *func = xg_get_file_name_from_chooser;
1865 return filewin;
1868 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1870 /* Return the selected file for file selector dialog W.
1871 The returned string must be free:d. */
1873 static char *
1874 xg_get_file_name_from_selector (GtkWidget *w)
1876 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1877 return xstrdup (gtk_file_selection_get_filename (filesel));
1880 /* Create a file selection dialog.
1881 F is the current frame.
1882 PROMPT is a prompt to show to the user. May not be NULL.
1883 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1884 If MUSTMATCH_P, the returned file name must be an existing
1885 file. *FUNC is set to a function that can be used to retrieve the
1886 selected file name from the returned widget.
1888 Returns the created widget. */
1890 static GtkWidget *
1891 xg_get_file_with_selection (struct frame *f,
1892 char *prompt,
1893 char *default_filename,
1894 bool mustmatch_p, bool only_dir_p,
1895 xg_get_file_func *func)
1897 GtkWidget *filewin;
1898 GtkFileSelection *filesel;
1900 filewin = gtk_file_selection_new (prompt);
1901 filesel = GTK_FILE_SELECTION (filewin);
1903 if (default_filename)
1904 gtk_file_selection_set_filename (filesel, default_filename);
1906 if (mustmatch_p)
1908 /* The selection_entry part of filesel is not documented. */
1909 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1910 gtk_file_selection_hide_fileop_buttons (filesel);
1913 *func = xg_get_file_name_from_selector;
1915 return filewin;
1917 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1919 /* Read a file name from the user using a file dialog, either the old
1920 file selection dialog, or the new file chooser dialog. Which to use
1921 depends on what the GTK version used has, and what the value of
1922 gtk-use-old-file-dialog.
1923 F is the current frame.
1924 PROMPT is a prompt to show to the user. May not be NULL.
1925 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1926 If MUSTMATCH_P, the returned file name must be an existing
1927 file.
1929 Returns a file name or NULL if no file was selected.
1930 The returned string must be freed by the caller. */
1932 char *
1933 xg_get_file_name (struct frame *f,
1934 char *prompt,
1935 char *default_filename,
1936 bool mustmatch_p,
1937 bool only_dir_p)
1939 GtkWidget *w = 0;
1940 char *fn = 0;
1941 int filesel_done = 0;
1942 xg_get_file_func func;
1944 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1946 if (xg_uses_old_file_dialog ())
1947 w = xg_get_file_with_selection (f, prompt, default_filename,
1948 mustmatch_p, only_dir_p, &func);
1949 else
1950 w = xg_get_file_with_chooser (f, prompt, default_filename,
1951 mustmatch_p, only_dir_p, &func);
1953 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
1954 w = xg_get_file_with_chooser (f, prompt, default_filename,
1955 mustmatch_p, only_dir_p, &func);
1956 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
1958 gtk_widget_set_name (w, "emacs-filedialog");
1960 filesel_done = xg_dialog_run (f, w);
1961 if (filesel_done == GTK_RESPONSE_OK)
1962 fn = (*func) (w);
1964 gtk_widget_destroy (w);
1965 return fn;
1968 /***********************************************************************
1969 GTK font chooser
1970 ***********************************************************************/
1972 #ifdef HAVE_FREETYPE
1974 #if USE_NEW_GTK_FONT_CHOOSER
1976 #define XG_WEIGHT_TO_SYMBOL(w) \
1977 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
1978 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
1979 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
1980 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
1981 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
1982 : w <= PANGO_WEIGHT_BOLD ? Qbold \
1983 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
1984 : Qultra_bold)
1986 #define XG_STYLE_TO_SYMBOL(s) \
1987 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
1988 : s == PANGO_STYLE_ITALIC ? Qitalic \
1989 : Qnormal)
1991 #endif /* USE_NEW_GTK_FONT_CHOOSER */
1994 static char *x_last_font_name;
1996 /* Pop up a GTK font selector and return the name of the font the user
1997 selects, as a C string. The returned font name follows GTK's own
1998 format:
2000 `FAMILY [VALUE1 VALUE2] SIZE'
2002 This can be parsed using font_parse_fcname in font.c.
2003 DEFAULT_NAME, if non-zero, is the default font name. */
2005 Lisp_Object
2006 xg_get_font (struct frame *f, const char *default_name)
2008 GtkWidget *w;
2009 int done = 0;
2010 Lisp_Object font = Qnil;
2012 w = gtk_font_chooser_dialog_new
2013 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2015 if (default_name)
2017 /* Convert fontconfig names to Gtk names, i.e. remove - before
2018 number */
2019 char *p = strrchr (default_name, '-');
2020 if (p)
2022 char *ep = p+1;
2023 while (c_isdigit (*ep))
2024 ++ep;
2025 if (*ep == '\0') *p = ' ';
2028 else if (x_last_font_name)
2029 default_name = x_last_font_name;
2031 if (default_name)
2032 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2034 gtk_widget_set_name (w, "emacs-fontdialog");
2035 done = xg_dialog_run (f, w);
2036 if (done == GTK_RESPONSE_OK)
2038 #if USE_NEW_GTK_FONT_CHOOSER
2039 /* Use the GTK3 font chooser. */
2040 PangoFontDescription *desc
2041 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2043 if (desc)
2045 Lisp_Object args[10];
2046 const char *name = pango_font_description_get_family (desc);
2047 gint size = pango_font_description_get_size (desc);
2048 PangoWeight weight = pango_font_description_get_weight (desc);
2049 PangoStyle style = pango_font_description_get_style (desc);
2051 args[0] = QCname;
2052 args[1] = build_string (name);
2054 args[2] = QCsize;
2055 args[3] = make_float (pango_units_to_double (size));
2057 args[4] = QCweight;
2058 args[5] = XG_WEIGHT_TO_SYMBOL (weight);
2060 args[6] = QCslant;
2061 args[7] = XG_STYLE_TO_SYMBOL (style);
2063 args[8] = QCtype;
2064 args[9] = Qxft;
2066 font = Ffont_spec (8, args);
2068 pango_font_description_free (desc);
2069 dupstring (&x_last_font_name, name);
2072 #else /* Use old font selector, which just returns the font name. */
2074 char *font_name
2075 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2077 if (font_name)
2079 font = build_string (font_name);
2080 g_free (x_last_font_name);
2081 x_last_font_name = font_name;
2083 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2086 gtk_widget_destroy (w);
2087 return font;
2089 #endif /* HAVE_FREETYPE */
2093 /***********************************************************************
2094 Menu functions.
2095 ***********************************************************************/
2097 /* The name of menu items that can be used for customization. Since GTK
2098 RC files are very crude and primitive, we have to set this on all
2099 menu item names so a user can easily customize menu items. */
2101 #define MENU_ITEM_NAME "emacs-menuitem"
2104 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2105 during GC. The next member points to the items. */
2106 static xg_list_node xg_menu_cb_list;
2108 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2109 during GC. The next member points to the items. */
2110 static xg_list_node xg_menu_item_cb_list;
2112 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2113 F is the frame CL_DATA will be initialized for.
2114 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2116 The menu bar and all sub menus under the menu bar in a frame
2117 share the same structure, hence the reference count.
2119 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2120 allocated xg_menu_cb_data if CL_DATA is NULL. */
2122 static xg_menu_cb_data *
2123 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2125 if (! cl_data)
2127 cl_data = xmalloc (sizeof *cl_data);
2128 cl_data->f = f;
2129 cl_data->menu_bar_vector = f->menu_bar_vector;
2130 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2131 cl_data->highlight_cb = highlight_cb;
2132 cl_data->ref_count = 0;
2134 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2137 cl_data->ref_count++;
2139 return cl_data;
2142 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2143 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2145 When the menu bar is updated, menu items may have been added and/or
2146 removed, so menu_bar_vector and menu_bar_items_used change. We must
2147 then update CL_DATA since it is used to determine which menu
2148 item that is invoked in the menu.
2149 HIGHLIGHT_CB could change, there is no check that the same
2150 function is given when modifying a menu bar as was given when
2151 creating the menu bar. */
2153 static void
2154 update_cl_data (xg_menu_cb_data *cl_data,
2155 struct frame *f,
2156 GCallback highlight_cb)
2158 if (cl_data)
2160 cl_data->f = f;
2161 cl_data->menu_bar_vector = f->menu_bar_vector;
2162 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2163 cl_data->highlight_cb = highlight_cb;
2167 /* Decrease reference count for CL_DATA.
2168 If reference count is zero, free CL_DATA. */
2170 static void
2171 unref_cl_data (xg_menu_cb_data *cl_data)
2173 if (cl_data && cl_data->ref_count > 0)
2175 cl_data->ref_count--;
2176 if (cl_data->ref_count == 0)
2178 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2179 xfree (cl_data);
2184 /* Function that marks all lisp data during GC. */
2186 void
2187 xg_mark_data (void)
2189 xg_list_node *iter;
2190 Lisp_Object rest, frame;
2192 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2193 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2195 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2197 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2199 if (! NILP (cb_data->help))
2200 mark_object (cb_data->help);
2203 FOR_EACH_FRAME (rest, frame)
2205 struct frame *f = XFRAME (frame);
2207 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2209 struct xg_frame_tb_info *tbinfo
2210 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2211 TB_INFO_KEY);
2212 if (tbinfo)
2214 mark_object (tbinfo->last_tool_bar);
2215 mark_object (tbinfo->style);
2222 /* Callback called when a menu item is destroyed. Used to free data.
2223 W is the widget that is being destroyed (not used).
2224 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2226 static void
2227 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2229 if (client_data)
2231 xg_menu_item_cb_data *data = client_data;
2232 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2233 xfree (data);
2237 /* Callback called when the pointer enters/leaves a menu item.
2238 W is the parent of the menu item.
2239 EVENT is either an enter event or leave event.
2240 CLIENT_DATA is not used.
2242 Returns FALSE to tell GTK to keep processing this event. */
2244 static gboolean
2245 menuitem_highlight_callback (GtkWidget *w,
2246 GdkEventCrossing *event,
2247 gpointer client_data)
2249 GdkEvent ev;
2250 GtkWidget *subwidget;
2251 xg_menu_item_cb_data *data;
2253 ev.crossing = *event;
2254 subwidget = gtk_get_event_widget (&ev);
2255 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2256 if (data)
2258 if (! NILP (data->help) && data->cl_data->highlight_cb)
2260 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2261 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2262 (*func) (subwidget, call_data);
2266 return FALSE;
2269 /* Callback called when a menu is destroyed. Used to free data.
2270 W is the widget that is being destroyed (not used).
2271 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2273 static void
2274 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2276 unref_cl_data (client_data);
2279 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2280 must be non-NULL) and can be inserted into a menu item.
2282 Returns the GtkHBox. */
2284 static GtkWidget *
2285 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2287 GtkWidget *wlbl;
2288 GtkWidget *wkey;
2289 GtkWidget *wbox;
2291 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2292 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2293 wlbl = gtk_label_new (utf8_label);
2294 wkey = gtk_label_new (utf8_key);
2296 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2297 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2299 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2300 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2302 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2303 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2304 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2306 return wbox;
2309 /* Make and return a menu item widget with the key to the right.
2310 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2311 UTF8_KEY is the text representing the key binding.
2312 ITEM is the widget_value describing the menu item.
2314 GROUP is an in/out parameter. If the menu item to be created is not
2315 part of any radio menu group, *GROUP contains NULL on entry and exit.
2316 If the menu item to be created is part of a radio menu group, on entry
2317 *GROUP contains the group to use, or NULL if this is the first item
2318 in the group. On exit, *GROUP contains the radio item group.
2320 Unfortunately, keys don't line up as nicely as in Motif,
2321 but the MacOS X version doesn't either, so I guess that is OK. */
2323 static GtkWidget *
2324 make_menu_item (const char *utf8_label,
2325 const char *utf8_key,
2326 widget_value *item,
2327 GSList **group)
2329 GtkWidget *w;
2330 GtkWidget *wtoadd = 0;
2332 /* It has been observed that some menu items have a NULL name field.
2333 This will lead to this function being called with a NULL utf8_label.
2334 GTK crashes on that so we set a blank label. Why there is a NULL
2335 name remains to be investigated. */
2336 if (! utf8_label) utf8_label = " ";
2338 if (utf8_key)
2339 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2341 if (item->button_type == BUTTON_TYPE_TOGGLE)
2343 *group = NULL;
2344 if (utf8_key) w = gtk_check_menu_item_new ();
2345 else w = gtk_check_menu_item_new_with_label (utf8_label);
2346 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2348 else if (item->button_type == BUTTON_TYPE_RADIO)
2350 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2351 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2352 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2353 if (item->selected)
2354 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2356 else
2358 *group = NULL;
2359 if (utf8_key) w = gtk_menu_item_new ();
2360 else w = gtk_menu_item_new_with_label (utf8_label);
2363 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2364 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2366 return w;
2369 /* Create a menu item widget, and connect the callbacks.
2370 ITEM describes the menu item.
2371 F is the frame the created menu belongs to.
2372 SELECT_CB is the callback to use when a menu item is selected.
2373 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2374 CL_DATA points to the callback data to be used for this menu.
2375 GROUP is an in/out parameter. If the menu item to be created is not
2376 part of any radio menu group, *GROUP contains NULL on entry and exit.
2377 If the menu item to be created is part of a radio menu group, on entry
2378 *GROUP contains the group to use, or NULL if this is the first item
2379 in the group. On exit, *GROUP contains the radio item group.
2381 Returns the created GtkWidget. */
2383 static GtkWidget *
2384 xg_create_one_menuitem (widget_value *item,
2385 struct frame *f,
2386 GCallback select_cb,
2387 GCallback highlight_cb,
2388 xg_menu_cb_data *cl_data,
2389 GSList **group)
2391 char *utf8_label;
2392 char *utf8_key;
2393 GtkWidget *w;
2394 xg_menu_item_cb_data *cb_data;
2396 utf8_label = get_utf8_string (item->name);
2397 utf8_key = get_utf8_string (item->key);
2399 w = make_menu_item (utf8_label, utf8_key, item, group);
2401 if (utf8_label) g_free (utf8_label);
2402 if (utf8_key) g_free (utf8_key);
2404 cb_data = xmalloc (sizeof *cb_data);
2406 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2408 cb_data->select_id = 0;
2409 cb_data->help = item->help;
2410 cb_data->cl_data = cl_data;
2411 cb_data->call_data = item->call_data;
2413 g_signal_connect (G_OBJECT (w),
2414 "destroy",
2415 G_CALLBACK (menuitem_destroy_callback),
2416 cb_data);
2418 /* Put cb_data in widget, so we can get at it when modifying menubar */
2419 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2421 /* final item, not a submenu */
2422 if (item->call_data && ! item->contents)
2424 if (select_cb)
2425 cb_data->select_id
2426 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2429 return w;
2432 /* Create a full menu tree specified by DATA.
2433 F is the frame the created menu belongs to.
2434 SELECT_CB is the callback to use when a menu item is selected.
2435 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2436 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2437 If POP_UP_P, create a popup menu.
2438 If MENU_BAR_P, create a menu bar.
2439 TOPMENU is the topmost GtkWidget that others shall be placed under.
2440 It may be NULL, in that case we create the appropriate widget
2441 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2442 CL_DATA is the callback data we shall use for this menu, or NULL
2443 if we haven't set the first callback yet.
2444 NAME is the name to give to the top level menu if this function
2445 creates it. May be NULL to not set any name.
2447 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2448 not NULL.
2450 This function calls itself to create submenus. */
2452 static GtkWidget *
2453 create_menus (widget_value *data,
2454 struct frame *f,
2455 GCallback select_cb,
2456 GCallback deactivate_cb,
2457 GCallback highlight_cb,
2458 bool pop_up_p,
2459 bool menu_bar_p,
2460 GtkWidget *topmenu,
2461 xg_menu_cb_data *cl_data,
2462 const char *name)
2464 widget_value *item;
2465 GtkWidget *wmenu = topmenu;
2466 GSList *group = NULL;
2468 if (! topmenu)
2470 if (! menu_bar_p)
2472 wmenu = gtk_menu_new ();
2473 xg_set_screen (wmenu, f);
2474 /* Connect this to the menu instead of items so we get enter/leave for
2475 disabled items also. TODO: Still does not get enter/leave for
2476 disabled items in detached menus. */
2477 g_signal_connect (G_OBJECT (wmenu),
2478 "enter-notify-event",
2479 G_CALLBACK (menuitem_highlight_callback),
2480 NULL);
2481 g_signal_connect (G_OBJECT (wmenu),
2482 "leave-notify-event",
2483 G_CALLBACK (menuitem_highlight_callback),
2484 NULL);
2486 else
2488 wmenu = gtk_menu_bar_new ();
2489 /* Set width of menu bar to a small value so it doesn't enlarge
2490 a small initial frame size. The width will be set to the
2491 width of the frame later on when it is added to a container.
2492 height -1: Natural height. */
2493 gtk_widget_set_size_request (wmenu, 1, -1);
2496 /* Put cl_data on the top menu for easier access. */
2497 cl_data = make_cl_data (cl_data, f, highlight_cb);
2498 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2499 g_signal_connect (G_OBJECT (wmenu), "destroy",
2500 G_CALLBACK (menu_destroy_callback), cl_data);
2502 if (name)
2503 gtk_widget_set_name (wmenu, name);
2505 if (deactivate_cb)
2506 g_signal_connect (G_OBJECT (wmenu),
2507 "selection-done", deactivate_cb, 0);
2510 for (item = data; item; item = item->next)
2512 GtkWidget *w;
2514 if (pop_up_p && !item->contents && !item->call_data
2515 && !menu_separator_name_p (item->name))
2517 char *utf8_label;
2518 /* A title for a popup. We do the same as GTK does when
2519 creating titles, but it does not look good. */
2520 group = NULL;
2521 utf8_label = get_utf8_string (item->name);
2523 w = gtk_menu_item_new_with_label (utf8_label);
2524 gtk_widget_set_sensitive (w, FALSE);
2525 if (utf8_label) g_free (utf8_label);
2527 else if (menu_separator_name_p (item->name))
2529 group = NULL;
2530 /* GTK only have one separator type. */
2531 w = gtk_separator_menu_item_new ();
2533 else
2535 w = xg_create_one_menuitem (item,
2537 item->contents ? 0 : select_cb,
2538 highlight_cb,
2539 cl_data,
2540 &group);
2542 /* Create a possibly empty submenu for menu bar items, since some
2543 themes don't highlight items correctly without it. */
2544 if (item->contents || menu_bar_p)
2546 GtkWidget *submenu = create_menus (item->contents,
2548 select_cb,
2549 deactivate_cb,
2550 highlight_cb,
2554 cl_data,
2556 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2560 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2561 gtk_widget_set_name (w, MENU_ITEM_NAME);
2564 return wmenu;
2567 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2568 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2569 with some text and buttons.
2570 F is the frame the created item belongs to.
2571 NAME is the name to use for the top widget.
2572 VAL is a widget_value structure describing items to be created.
2573 SELECT_CB is the callback to use when a menu item is selected or
2574 a dialog button is pressed.
2575 DEACTIVATE_CB is the callback to use when an item is deactivated.
2576 For a menu, when a sub menu is not shown anymore, for a dialog it is
2577 called when the dialog is popped down.
2578 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2580 Returns the widget created. */
2582 GtkWidget *
2583 xg_create_widget (const char *type, const char *name, struct frame *f,
2584 widget_value *val, GCallback select_cb,
2585 GCallback deactivate_cb, GCallback highlight_cb)
2587 GtkWidget *w = 0;
2588 bool menu_bar_p = strcmp (type, "menubar") == 0;
2589 bool pop_up_p = strcmp (type, "popup") == 0;
2591 if (strcmp (type, "dialog") == 0)
2593 w = create_dialog (val, select_cb, deactivate_cb);
2594 xg_set_screen (w, f);
2595 gtk_window_set_transient_for (GTK_WINDOW (w),
2596 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2597 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2598 gtk_widget_set_name (w, "emacs-dialog");
2599 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2601 else if (menu_bar_p || pop_up_p)
2603 w = create_menus (val->contents,
2605 select_cb,
2606 deactivate_cb,
2607 highlight_cb,
2608 pop_up_p,
2609 menu_bar_p,
2612 name);
2614 /* Set the cursor to an arrow for popup menus when they are mapped.
2615 This is done by default for menu bar menus. */
2616 if (pop_up_p)
2618 /* Must realize so the GdkWindow inside the widget is created. */
2619 gtk_widget_realize (w);
2620 xg_set_cursor (w, FRAME_DISPLAY_INFO (f)->xg_cursor);
2623 else
2625 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2626 type);
2629 return w;
2632 /* Return the label for menu item WITEM. */
2634 static const char *
2635 xg_get_menu_item_label (GtkMenuItem *witem)
2637 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2638 return gtk_label_get_label (wlabel);
2641 /* Return true if the menu item WITEM has the text LABEL. */
2643 static bool
2644 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2646 bool is_same = 0;
2647 char *utf8_label = get_utf8_string (label);
2648 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2650 if (! old_label && ! utf8_label)
2651 is_same = 1;
2652 else if (old_label && utf8_label)
2653 is_same = strcmp (utf8_label, old_label) == 0;
2655 if (utf8_label) g_free (utf8_label);
2657 return is_same;
2660 /* Destroy widgets in LIST. */
2662 static void
2663 xg_destroy_widgets (GList *list)
2665 GList *iter;
2667 for (iter = list; iter; iter = g_list_next (iter))
2669 GtkWidget *w = GTK_WIDGET (iter->data);
2671 /* Destroying the widget will remove it from the container it is in. */
2672 gtk_widget_destroy (w);
2676 /* Update the top level names in MENUBAR (i.e. not submenus).
2677 F is the frame the menu bar belongs to.
2678 *LIST is a list with the current menu bar names (menu item widgets).
2679 ITER is the item within *LIST that shall be updated.
2680 POS is the numerical position, starting at 0, of ITER in *LIST.
2681 VAL describes what the menu bar shall look like after the update.
2682 SELECT_CB is the callback to use when a menu item is selected.
2683 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2684 CL_DATA points to the callback data to be used for this menu bar.
2686 This function calls itself to walk through the menu bar names. */
2688 static void
2689 xg_update_menubar (GtkWidget *menubar,
2690 struct frame *f,
2691 GList **list,
2692 GList *iter,
2693 int pos,
2694 widget_value *val,
2695 GCallback select_cb,
2696 GCallback deactivate_cb,
2697 GCallback highlight_cb,
2698 xg_menu_cb_data *cl_data)
2700 if (! iter && ! val)
2701 return;
2702 else if (iter && ! val)
2704 /* Item(s) have been removed. Remove all remaining items. */
2705 xg_destroy_widgets (iter);
2707 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2708 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2709 gtk_menu_item_new_with_label (""),
2711 /* All updated. */
2712 val = 0;
2713 iter = 0;
2715 else if (! iter && val)
2717 /* Item(s) added. Add all new items in one call. */
2718 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2719 0, 1, menubar, cl_data, 0);
2721 /* All updated. */
2722 val = 0;
2723 iter = 0;
2725 /* Below this neither iter or val is NULL */
2726 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2728 /* This item is still the same, check next item. */
2729 val = val->next;
2730 iter = g_list_next (iter);
2731 ++pos;
2733 else /* This item is changed. */
2735 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2736 GtkMenuItem *witem2 = 0;
2737 bool val_in_menubar = 0;
2738 bool iter_in_new_menubar = 0;
2739 GList *iter2;
2740 widget_value *cur;
2742 /* See if the changed entry (val) is present later in the menu bar */
2743 for (iter2 = iter;
2744 iter2 && ! val_in_menubar;
2745 iter2 = g_list_next (iter2))
2747 witem2 = GTK_MENU_ITEM (iter2->data);
2748 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2751 /* See if the current entry (iter) is present later in the
2752 specification for the new menu bar. */
2753 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2754 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2756 if (val_in_menubar && ! iter_in_new_menubar)
2758 int nr = pos;
2760 /* This corresponds to:
2761 Current: A B C
2762 New: A C
2763 Remove B. */
2765 g_object_ref (G_OBJECT (witem));
2766 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2767 gtk_widget_destroy (GTK_WIDGET (witem));
2769 /* Must get new list since the old changed. */
2770 g_list_free (*list);
2771 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2772 while (nr-- > 0) iter = g_list_next (iter);
2774 else if (! val_in_menubar && ! iter_in_new_menubar)
2776 /* This corresponds to:
2777 Current: A B C
2778 New: A X C
2779 Rename B to X. This might seem to be a strange thing to do,
2780 since if there is a menu under B it will be totally wrong for X.
2781 But consider editing a C file. Then there is a C-mode menu
2782 (corresponds to B above).
2783 If then doing C-x C-f the minibuf menu (X above) replaces the
2784 C-mode menu. When returning from the minibuffer, we get
2785 back the C-mode menu. Thus we do:
2786 Rename B to X (C-mode to minibuf menu)
2787 Rename X to B (minibuf to C-mode menu).
2788 If the X menu hasn't been invoked, the menu under B
2789 is up to date when leaving the minibuffer. */
2790 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2791 char *utf8_label = get_utf8_string (val->name);
2792 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
2794 /* GTK menu items don't notice when their labels have been
2795 changed from underneath them, so we have to explicitly
2796 use g_object_notify to tell listeners (e.g., a GMenuModel
2797 bridge that might be loaded) that the item's label has
2798 changed. */
2799 gtk_label_set_text (wlabel, utf8_label);
2800 g_object_notify (G_OBJECT (witem), "label");
2802 if (utf8_label) g_free (utf8_label);
2803 iter = g_list_next (iter);
2804 val = val->next;
2805 ++pos;
2807 else if (! val_in_menubar && iter_in_new_menubar)
2809 /* This corresponds to:
2810 Current: A B C
2811 New: A X B C
2812 Insert X. */
2814 int nr = pos;
2815 GSList *group = 0;
2816 GtkWidget *w = xg_create_one_menuitem (val,
2818 select_cb,
2819 highlight_cb,
2820 cl_data,
2821 &group);
2823 /* Create a possibly empty submenu for menu bar items, since some
2824 themes don't highlight items correctly without it. */
2825 GtkWidget *submenu = create_menus (NULL, f,
2826 select_cb, deactivate_cb,
2827 highlight_cb,
2828 0, 0, 0, cl_data, 0);
2830 gtk_widget_set_name (w, MENU_ITEM_NAME);
2831 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2832 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2834 g_list_free (*list);
2835 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2836 while (nr-- > 0) iter = g_list_next (iter);
2837 iter = g_list_next (iter);
2838 val = val->next;
2839 ++pos;
2841 else /* if (val_in_menubar && iter_in_new_menubar) */
2843 int nr = pos;
2844 /* This corresponds to:
2845 Current: A B C
2846 New: A C B
2847 Move C before B */
2849 g_object_ref (G_OBJECT (witem2));
2850 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2851 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2852 GTK_WIDGET (witem2), pos);
2853 g_object_unref (G_OBJECT (witem2));
2855 g_list_free (*list);
2856 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2857 while (nr-- > 0) iter = g_list_next (iter);
2858 if (iter) iter = g_list_next (iter);
2859 val = val->next;
2860 ++pos;
2864 /* Update the rest of the menu bar. */
2865 xg_update_menubar (menubar, f, list, iter, pos, val,
2866 select_cb, deactivate_cb, highlight_cb, cl_data);
2869 /* Update the menu item W so it corresponds to VAL.
2870 SELECT_CB is the callback to use when a menu item is selected.
2871 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2872 CL_DATA is the data to set in the widget for menu invocation. */
2874 static void
2875 xg_update_menu_item (widget_value *val,
2876 GtkWidget *w,
2877 GCallback select_cb,
2878 GCallback highlight_cb,
2879 xg_menu_cb_data *cl_data)
2881 GtkWidget *wchild;
2882 GtkLabel *wlbl = 0;
2883 GtkLabel *wkey = 0;
2884 char *utf8_label;
2885 char *utf8_key;
2886 const char *old_label = 0;
2887 const char *old_key = 0;
2888 xg_menu_item_cb_data *cb_data;
2889 bool label_changed = false;
2891 wchild = XG_BIN_CHILD (w);
2892 utf8_label = get_utf8_string (val->name);
2893 utf8_key = get_utf8_string (val->key);
2895 /* See if W is a menu item with a key. See make_menu_item above. */
2896 if (GTK_IS_BOX (wchild))
2898 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
2900 wlbl = GTK_LABEL (list->data);
2901 wkey = GTK_LABEL (list->next->data);
2902 g_list_free (list);
2904 if (! utf8_key)
2906 /* Remove the key and keep just the label. */
2907 g_object_ref (G_OBJECT (wlbl));
2908 gtk_container_remove (GTK_CONTAINER (w), wchild);
2909 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
2910 g_object_unref (G_OBJECT (wlbl));
2911 wkey = 0;
2915 else /* Just a label. */
2917 wlbl = GTK_LABEL (wchild);
2919 /* Check if there is now a key. */
2920 if (utf8_key)
2922 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2923 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
2925 wlbl = GTK_LABEL (list->data);
2926 wkey = GTK_LABEL (list->next->data);
2927 g_list_free (list);
2929 gtk_container_remove (GTK_CONTAINER (w), wchild);
2930 gtk_container_add (GTK_CONTAINER (w), wtoadd);
2934 if (wkey) old_key = gtk_label_get_label (wkey);
2935 if (wlbl) old_label = gtk_label_get_label (wlbl);
2937 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
2939 label_changed = true;
2940 gtk_label_set_text (wkey, utf8_key);
2943 if (! old_label || strcmp (utf8_label, old_label) != 0)
2945 label_changed = true;
2946 gtk_label_set_text (wlbl, utf8_label);
2949 if (utf8_key) g_free (utf8_key);
2950 if (utf8_label) g_free (utf8_label);
2952 if (! val->enabled && gtk_widget_get_sensitive (w))
2953 gtk_widget_set_sensitive (w, FALSE);
2954 else if (val->enabled && ! gtk_widget_get_sensitive (w))
2955 gtk_widget_set_sensitive (w, TRUE);
2957 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
2958 if (cb_data)
2960 cb_data->call_data = val->call_data;
2961 cb_data->help = val->help;
2962 cb_data->cl_data = cl_data;
2964 /* We assume the callback functions don't change. */
2965 if (val->call_data && ! val->contents)
2967 /* This item shall have a select callback. */
2968 if (! cb_data->select_id)
2969 cb_data->select_id
2970 = g_signal_connect (G_OBJECT (w), "activate",
2971 select_cb, cb_data);
2973 else if (cb_data->select_id)
2975 g_signal_handler_disconnect (w, cb_data->select_id);
2976 cb_data->select_id = 0;
2980 if (label_changed) /* See comment in xg_update_menubar. */
2981 g_object_notify (G_OBJECT (w), "label");
2984 /* Update the toggle menu item W so it corresponds to VAL. */
2986 static void
2987 xg_update_toggle_item (widget_value *val, GtkWidget *w)
2989 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2992 /* Update the radio menu item W so it corresponds to VAL. */
2994 static void
2995 xg_update_radio_item (widget_value *val, GtkWidget *w)
2997 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3000 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3001 SUBMENU may be NULL, in that case a new menu is created.
3002 F is the frame the menu bar belongs to.
3003 VAL describes the contents of the menu bar.
3004 SELECT_CB is the callback to use when a menu item is selected.
3005 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3006 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3007 CL_DATA is the call back data to use for any newly created items.
3009 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3010 was NULL. */
3012 static GtkWidget *
3013 xg_update_submenu (GtkWidget *submenu,
3014 struct frame *f,
3015 widget_value *val,
3016 GCallback select_cb,
3017 GCallback deactivate_cb,
3018 GCallback highlight_cb,
3019 xg_menu_cb_data *cl_data)
3021 GtkWidget *newsub = submenu;
3022 GList *list = 0;
3023 GList *iter;
3024 widget_value *cur;
3025 GList *first_radio = 0;
3027 if (submenu)
3028 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3030 for (cur = val, iter = list;
3031 cur && iter;
3032 iter = g_list_next (iter), cur = cur->next)
3034 GtkWidget *w = GTK_WIDGET (iter->data);
3036 /* Remember first radio button in a group. If we get a mismatch in
3037 a radio group we must rebuild the whole group so that the connections
3038 in GTK becomes correct. */
3039 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3040 first_radio = iter;
3041 else if (cur->button_type != BUTTON_TYPE_RADIO
3042 && ! GTK_IS_RADIO_MENU_ITEM (w))
3043 first_radio = 0;
3045 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3047 if (! menu_separator_name_p (cur->name))
3048 break;
3050 else if (GTK_IS_CHECK_MENU_ITEM (w))
3052 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3053 break;
3054 xg_update_toggle_item (cur, w);
3055 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3057 else if (GTK_IS_RADIO_MENU_ITEM (w))
3059 if (cur->button_type != BUTTON_TYPE_RADIO)
3060 break;
3061 xg_update_radio_item (cur, w);
3062 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3064 else if (GTK_IS_MENU_ITEM (w))
3066 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3067 GtkWidget *sub;
3069 if (cur->button_type != BUTTON_TYPE_NONE ||
3070 menu_separator_name_p (cur->name))
3071 break;
3073 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3075 sub = gtk_menu_item_get_submenu (witem);
3076 if (sub && ! cur->contents)
3078 /* Not a submenu anymore. */
3079 g_object_ref (G_OBJECT (sub));
3080 remove_submenu (witem);
3081 gtk_widget_destroy (sub);
3083 else if (cur->contents)
3085 GtkWidget *nsub;
3087 nsub = xg_update_submenu (sub, f, cur->contents,
3088 select_cb, deactivate_cb,
3089 highlight_cb, cl_data);
3091 /* If this item just became a submenu, we must set it. */
3092 if (nsub != sub)
3093 gtk_menu_item_set_submenu (witem, nsub);
3096 else
3098 /* Structural difference. Remove everything from here and down
3099 in SUBMENU. */
3100 break;
3104 /* Remove widgets from first structural change. */
3105 if (iter)
3107 /* If we are adding new menu items below, we must remove from
3108 first radio button so that radio groups become correct. */
3109 if (cur && first_radio) xg_destroy_widgets (first_radio);
3110 else xg_destroy_widgets (iter);
3113 if (cur)
3115 /* More items added. Create them. */
3116 newsub = create_menus (cur,
3118 select_cb,
3119 deactivate_cb,
3120 highlight_cb,
3123 submenu,
3124 cl_data,
3128 if (list) g_list_free (list);
3130 return newsub;
3133 /* Update the MENUBAR.
3134 F is the frame the menu bar belongs to.
3135 VAL describes the contents of the menu bar.
3136 If DEEP_P, rebuild all but the top level menu names in
3137 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3138 SELECT_CB is the callback to use when a menu item is selected.
3139 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3140 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3142 void
3143 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3144 widget_value *val, bool deep_p,
3145 GCallback select_cb, GCallback deactivate_cb,
3146 GCallback highlight_cb)
3148 xg_menu_cb_data *cl_data;
3149 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3151 if (! list) return;
3153 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3155 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3156 select_cb, deactivate_cb, highlight_cb, cl_data);
3158 if (deep_p)
3160 widget_value *cur;
3162 /* Update all sub menus.
3163 We must keep the submenus (GTK menu item widgets) since the
3164 X Window in the XEvent that activates the menu are those widgets. */
3166 /* Update cl_data, menu_item things in F may have changed. */
3167 update_cl_data (cl_data, f, highlight_cb);
3169 for (cur = val->contents; cur; cur = cur->next)
3171 GList *iter;
3172 GtkWidget *sub = 0;
3173 GtkWidget *newsub;
3174 GtkMenuItem *witem = 0;
3176 /* Find sub menu that corresponds to val and update it. */
3177 for (iter = list ; iter; iter = g_list_next (iter))
3179 witem = GTK_MENU_ITEM (iter->data);
3180 if (xg_item_label_same_p (witem, cur->name))
3182 sub = gtk_menu_item_get_submenu (witem);
3183 break;
3187 newsub = xg_update_submenu (sub,
3189 cur->contents,
3190 select_cb,
3191 deactivate_cb,
3192 highlight_cb,
3193 cl_data);
3194 /* sub may still be NULL. If we just updated non deep and added
3195 a new menu bar item, it has no sub menu yet. So we set the
3196 newly created sub menu under witem. */
3197 if (newsub != sub && witem != 0)
3199 xg_set_screen (newsub, f);
3200 gtk_menu_item_set_submenu (witem, newsub);
3205 g_list_free (list);
3206 gtk_widget_show_all (menubar);
3209 /* Callback called when the menu bar W is mapped.
3210 Used to find the height of the menu bar if we didn't get it
3211 after showing the widget. */
3213 static void
3214 menubar_map_cb (GtkWidget *w, gpointer user_data)
3216 GtkRequisition req;
3217 struct frame *f = user_data;
3218 gtk_widget_get_preferred_size (w, NULL, &req);
3219 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3221 FRAME_MENUBAR_HEIGHT (f) = req.height;
3222 xg_height_or_width_changed (f);
3226 /* Recompute all the widgets of frame F, when the menu bar has been
3227 changed. */
3229 void
3230 xg_update_frame_menubar (struct frame *f)
3232 struct x_output *x = f->output_data.x;
3233 GtkRequisition req;
3235 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3236 return;
3238 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3239 return; /* Already done this, happens for frames created invisible. */
3241 block_input ();
3243 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3244 FALSE, FALSE, 0);
3245 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3247 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3248 gtk_widget_show_all (x->menubar_widget);
3249 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3251 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3253 FRAME_MENUBAR_HEIGHT (f) = req.height;
3254 xg_height_or_width_changed (f);
3256 unblock_input ();
3259 /* Get rid of the menu bar of frame F, and free its storage.
3260 This is used when deleting a frame, and when turning off the menu bar. */
3262 void
3263 free_frame_menubar (struct frame *f)
3265 struct x_output *x = f->output_data.x;
3267 if (x->menubar_widget)
3269 block_input ();
3271 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3272 /* The menubar and its children shall be deleted when removed from
3273 the container. */
3274 x->menubar_widget = 0;
3275 FRAME_MENUBAR_HEIGHT (f) = 0;
3276 xg_height_or_width_changed (f);
3277 unblock_input ();
3281 bool
3282 xg_event_is_for_menubar (struct frame *f, const XEvent *event)
3284 struct x_output *x = f->output_data.x;
3285 GList *iter;
3286 GdkRectangle rec;
3287 GList *list;
3288 GdkDisplay *gdpy;
3289 GdkWindow *gw;
3290 GdkEvent gevent;
3291 GtkWidget *gwdesc;
3293 if (! x->menubar_widget) return 0;
3295 if (! (event->xbutton.x >= 0
3296 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3297 && event->xbutton.y >= 0
3298 && event->xbutton.y < FRAME_MENUBAR_HEIGHT (f)
3299 && event->xbutton.same_screen))
3300 return 0;
3302 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3303 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3304 if (! gw) return 0;
3305 gevent.any.window = gw;
3306 gevent.any.type = GDK_NOTHING;
3307 gwdesc = gtk_get_event_widget (&gevent);
3308 if (! gwdesc) return 0;
3309 if (! GTK_IS_MENU_BAR (gwdesc)
3310 && ! GTK_IS_MENU_ITEM (gwdesc)
3311 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3312 return 0;
3314 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3315 if (! list) return 0;
3316 rec.x = event->xbutton.x;
3317 rec.y = event->xbutton.y;
3318 rec.width = 1;
3319 rec.height = 1;
3321 for (iter = list ; iter; iter = g_list_next (iter))
3323 GtkWidget *w = GTK_WIDGET (iter->data);
3324 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3325 break;
3327 g_list_free (list);
3328 return iter != 0;
3333 /***********************************************************************
3334 Scroll bar functions
3335 ***********************************************************************/
3338 /* Setting scroll bar values invokes the callback. Use this variable
3339 to indicate that callback should do nothing. */
3341 bool xg_ignore_gtk_scrollbar;
3343 /* Width and height of scroll bars for the current theme. */
3344 static int scroll_bar_width_for_theme;
3345 static int scroll_bar_height_for_theme;
3347 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3348 may be larger than 32 bits. Keep a mapping from integer index to widget
3349 pointers to get around the 32 bit limitation. */
3351 static struct
3353 GtkWidget **widgets;
3354 ptrdiff_t max_size;
3355 ptrdiff_t used;
3356 } id_to_widget;
3358 /* Grow this much every time we need to allocate more */
3360 #define ID_TO_WIDGET_INCR 32
3362 /* Store the widget pointer W in id_to_widget and return the integer index. */
3364 static ptrdiff_t
3365 xg_store_widget_in_map (GtkWidget *w)
3367 ptrdiff_t i;
3369 if (id_to_widget.max_size == id_to_widget.used)
3371 ptrdiff_t new_size;
3372 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3373 memory_full (SIZE_MAX);
3375 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3376 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3377 new_size, sizeof (GtkWidget *));
3379 for (i = id_to_widget.max_size; i < new_size; ++i)
3380 id_to_widget.widgets[i] = 0;
3381 id_to_widget.max_size = new_size;
3384 /* Just loop over the array and find a free place. After all,
3385 how many scroll bars are we creating? Should be a small number.
3386 The check above guarantees we will find a free place. */
3387 for (i = 0; i < id_to_widget.max_size; ++i)
3389 if (! id_to_widget.widgets[i])
3391 id_to_widget.widgets[i] = w;
3392 ++id_to_widget.used;
3394 return i;
3398 /* Should never end up here */
3399 emacs_abort ();
3402 /* Remove pointer at IDX from id_to_widget.
3403 Called when scroll bar is destroyed. */
3405 static void
3406 xg_remove_widget_from_map (ptrdiff_t idx)
3408 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3410 id_to_widget.widgets[idx] = 0;
3411 --id_to_widget.used;
3415 /* Get the widget pointer at IDX from id_to_widget. */
3417 static GtkWidget *
3418 xg_get_widget_from_map (ptrdiff_t idx)
3420 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3421 return id_to_widget.widgets[idx];
3423 return 0;
3426 static void
3427 update_theme_scrollbar_width (void)
3429 #ifdef HAVE_GTK3
3430 GtkAdjustment *vadj;
3431 #else
3432 GtkObject *vadj;
3433 #endif
3434 GtkWidget *wscroll;
3435 int w = 0, b = 0;
3437 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3438 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3439 g_object_ref_sink (G_OBJECT (wscroll));
3440 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3441 gtk_widget_destroy (wscroll);
3442 g_object_unref (G_OBJECT (wscroll));
3443 w += 2*b;
3444 if (w < 16) w = 16;
3445 scroll_bar_width_for_theme = w;
3448 static void
3449 update_theme_scrollbar_height (void)
3451 #ifdef HAVE_GTK3
3452 GtkAdjustment *hadj;
3453 #else
3454 GtkObject *hadj;
3455 #endif
3456 GtkWidget *wscroll;
3457 int w = 0, b = 0;
3459 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX, 0.1, 0.1, 0.1);
3460 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3461 g_object_ref_sink (G_OBJECT (wscroll));
3462 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3463 gtk_widget_destroy (wscroll);
3464 g_object_unref (G_OBJECT (wscroll));
3465 w += 2*b;
3466 if (w < 12) w = 12;
3467 scroll_bar_height_for_theme = w;
3471 xg_get_default_scrollbar_width (void)
3473 return scroll_bar_width_for_theme;
3477 xg_get_default_scrollbar_height (void)
3479 /* Apparently there's no default height for themes. */
3480 return scroll_bar_width_for_theme;
3483 /* Return the scrollbar id for X Window WID on display DPY.
3484 Return -1 if WID not in id_to_widget. */
3486 ptrdiff_t
3487 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3489 ptrdiff_t idx;
3490 GtkWidget *w;
3492 w = xg_win_to_widget (dpy, wid);
3494 if (w)
3496 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3497 if (id_to_widget.widgets[idx] == w)
3498 return idx;
3501 return -1;
3504 /* Callback invoked when scroll bar WIDGET is destroyed.
3505 DATA is the index into id_to_widget for WIDGET.
3506 We free pointer to last scroll bar values here and remove the index. */
3508 static void
3509 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3511 intptr_t id = (intptr_t) data;
3512 xg_remove_widget_from_map (id);
3515 /* Create a scroll bar widget for frame F. Store the scroll bar
3516 in BAR.
3517 SCROLL_CALLBACK is the callback to invoke when the value of the
3518 bar changes.
3519 END_CALLBACK is the callback to invoke when scrolling ends.
3520 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3521 to set resources for the widget. */
3523 void
3524 xg_create_scroll_bar (struct frame *f,
3525 struct scroll_bar *bar,
3526 GCallback scroll_callback,
3527 GCallback end_callback,
3528 const char *scroll_bar_name)
3530 GtkWidget *wscroll;
3531 GtkWidget *webox;
3532 intptr_t scroll_id;
3533 #ifdef HAVE_GTK3
3534 GtkAdjustment *vadj;
3535 #else
3536 GtkObject *vadj;
3537 #endif
3539 /* Page, step increment values are not so important here, they
3540 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3541 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3542 0.1, 0.1, 0.1);
3544 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3545 webox = gtk_event_box_new ();
3546 gtk_widget_set_name (wscroll, scroll_bar_name);
3547 #ifndef HAVE_GTK3
3548 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3549 #endif
3550 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3552 scroll_id = xg_store_widget_in_map (wscroll);
3554 g_signal_connect (G_OBJECT (wscroll),
3555 "destroy",
3556 G_CALLBACK (xg_gtk_scroll_destroy),
3557 (gpointer) scroll_id);
3558 g_signal_connect (G_OBJECT (wscroll),
3559 "change-value",
3560 scroll_callback,
3561 (gpointer) bar);
3562 g_signal_connect (G_OBJECT (wscroll),
3563 "button-release-event",
3564 end_callback,
3565 (gpointer) bar);
3567 /* The scroll bar widget does not draw on a window of its own. Instead
3568 it draws on the parent window, in this case the edit widget. So
3569 whenever the edit widget is cleared, the scroll bar needs to redraw
3570 also, which causes flicker. Put an event box between the edit widget
3571 and the scroll bar, so the scroll bar instead draws itself on the
3572 event box window. */
3573 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3574 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3577 /* Set the cursor to an arrow. */
3578 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3580 bar->x_window = scroll_id;
3581 bar->horizontal = 0;
3584 /* Create a horizontal scroll bar widget for frame F. Store the scroll
3585 bar in BAR. SCROLL_CALLBACK is the callback to invoke when the value
3586 of the bar changes. END_CALLBACK is the callback to invoke when
3587 scrolling ends. SCROLL_BAR_NAME is the name we use for the scroll
3588 bar. Can be used to set resources for the widget. */
3590 void
3591 xg_create_horizontal_scroll_bar (struct frame *f,
3592 struct scroll_bar *bar,
3593 GCallback scroll_callback,
3594 GCallback end_callback,
3595 const char *scroll_bar_name)
3597 GtkWidget *wscroll;
3598 GtkWidget *webox;
3599 intptr_t scroll_id;
3600 #ifdef HAVE_GTK3
3601 GtkAdjustment *hadj;
3602 #else
3603 GtkObject *hadj;
3604 #endif
3606 /* Page, step increment values are not so important here, they
3607 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3608 hadj = gtk_adjustment_new (YG_SB_MIN, YG_SB_MIN, YG_SB_MAX,
3609 0.1, 0.1, 0.1);
3611 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, GTK_ADJUSTMENT (hadj));
3612 webox = gtk_event_box_new ();
3613 gtk_widget_set_name (wscroll, scroll_bar_name);
3614 #ifndef HAVE_GTK3
3615 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3616 #endif
3617 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3619 scroll_id = xg_store_widget_in_map (wscroll);
3621 g_signal_connect (G_OBJECT (wscroll),
3622 "destroy",
3623 G_CALLBACK (xg_gtk_scroll_destroy),
3624 (gpointer) scroll_id);
3625 g_signal_connect (G_OBJECT (wscroll),
3626 "change-value",
3627 scroll_callback,
3628 (gpointer) bar);
3629 g_signal_connect (G_OBJECT (wscroll),
3630 "button-release-event",
3631 end_callback,
3632 (gpointer) bar);
3634 /* The scroll bar widget does not draw on a window of its own. Instead
3635 it draws on the parent window, in this case the edit widget. So
3636 whenever the edit widget is cleared, the scroll bar needs to redraw
3637 also, which causes flicker. Put an event box between the edit widget
3638 and the scroll bar, so the scroll bar instead draws itself on the
3639 event box window. */
3640 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3641 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3644 /* Set the cursor to an arrow. */
3645 xg_set_cursor (webox, FRAME_DISPLAY_INFO (f)->xg_cursor);
3647 bar->x_window = scroll_id;
3648 bar->horizontal = 1;
3651 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3653 void
3654 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3656 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3657 if (w)
3659 GtkWidget *wparent = gtk_widget_get_parent (w);
3660 gtk_widget_destroy (w);
3661 gtk_widget_destroy (wparent);
3662 SET_FRAME_GARBAGED (f);
3666 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3667 in frame F.
3668 TOP/LEFT are the new pixel positions where the bar shall appear.
3669 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3671 void
3672 xg_update_scrollbar_pos (struct frame *f,
3673 ptrdiff_t scrollbar_id,
3674 int top,
3675 int left,
3676 int width,
3677 int height)
3680 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3682 if (wscroll)
3684 GtkWidget *wfixed = f->output_data.x->edit_widget;
3685 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3686 gint msl;
3688 /* Clear out old position. */
3689 int oldx = -1, oldy = -1, oldw, oldh;
3690 if (gtk_widget_get_parent (wparent) == wfixed)
3692 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3693 "x", &oldx, "y", &oldy, NULL);
3694 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3697 /* Move and resize to new values. */
3698 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3699 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3700 if (msl > height)
3702 /* No room. Hide scroll bar as some themes output a warning if
3703 the height is less than the min size. */
3704 gtk_widget_hide (wparent);
3705 gtk_widget_hide (wscroll);
3707 else
3709 gtk_widget_show_all (wparent);
3710 gtk_widget_set_size_request (wscroll, width, height);
3712 gtk_widget_queue_draw (wfixed);
3713 gdk_window_process_all_updates ();
3714 if (oldx != -1 && oldw > 0 && oldh > 0)
3715 /* Clear under old scroll bar position. This must be done after
3716 the gtk_widget_queue_draw and gdk_window_process_all_updates
3717 above. */
3718 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3719 oldx, oldy, oldw, oldh);
3721 /* GTK does not redraw until the main loop is entered again, but
3722 if there are no X events pending we will not enter it. So we sync
3723 here to get some events. */
3725 x_sync (f);
3726 SET_FRAME_GARBAGED (f);
3727 cancel_mouse_face (f);
3732 /* Update the position of the horizontal scroll bar represented by SCROLLBAR_ID
3733 in frame F.
3734 TOP/LEFT are the new pixel positions where the bar shall appear.
3735 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3737 void
3738 xg_update_horizontal_scrollbar_pos (struct frame *f,
3739 ptrdiff_t scrollbar_id,
3740 int top,
3741 int left,
3742 int width,
3743 int height)
3746 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3748 if (wscroll)
3750 GtkWidget *wfixed = f->output_data.x->edit_widget;
3751 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3752 gint msl;
3754 /* Clear out old position. */
3755 int oldx = -1, oldy = -1, oldw, oldh;
3756 if (gtk_widget_get_parent (wparent) == wfixed)
3758 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3759 "x", &oldx, "y", &oldy, NULL);
3760 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3763 /* Move and resize to new values. */
3764 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3765 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3766 if (msl > width)
3768 /* No room. Hide scroll bar as some themes output a warning if
3769 the width is less than the min size. */
3770 gtk_widget_hide (wparent);
3771 gtk_widget_hide (wscroll);
3773 else
3775 gtk_widget_show_all (wparent);
3776 gtk_widget_set_size_request (wscroll, width, height);
3778 gtk_widget_queue_draw (wfixed);
3779 gdk_window_process_all_updates ();
3780 if (oldx != -1 && oldw > 0 && oldh > 0)
3781 /* Clear under old scroll bar position. This must be done after
3782 the gtk_widget_queue_draw and gdk_window_process_all_updates
3783 above. */
3784 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3785 oldx, oldy, oldw, oldh);
3787 /* GTK does not redraw until the main loop is entered again, but
3788 if there are no X events pending we will not enter it. So we sync
3789 here to get some events. */
3791 x_sync (f);
3792 SET_FRAME_GARBAGED (f);
3793 cancel_mouse_face (f);
3798 /* Get the current value of the range, truncated to an integer. */
3800 static int
3801 int_gtk_range_get_value (GtkRange *range)
3803 return gtk_range_get_value (range);
3807 /* Set the thumb size and position of scroll bar BAR. We are currently
3808 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3810 void
3811 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3812 int portion,
3813 int position,
3814 int whole)
3816 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3818 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3820 if (wscroll && bar->dragging == -1)
3822 GtkAdjustment *adj;
3823 gdouble shown;
3824 gdouble top;
3825 int size, value;
3826 int old_size;
3827 int new_step;
3828 bool changed = 0;
3830 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3832 if (scroll_bar_adjust_thumb_portion_p)
3834 /* We do the same as for MOTIF in xterm.c, use 30 chars per
3835 line rather than the real portion value. This makes the
3836 thumb less likely to resize and that looks better. */
3837 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3839 /* When the thumb is at the bottom, position == whole.
3840 So we need to increase `whole' to make space for the thumb. */
3841 whole += portion;
3844 if (whole <= 0)
3845 top = 0, shown = 1;
3846 else
3848 top = (gdouble) position / whole;
3849 shown = (gdouble) portion / whole;
3852 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
3853 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
3855 /* Assume all lines are of equal size. */
3856 new_step = size / max (1, FRAME_LINES (f));
3858 old_size = gtk_adjustment_get_page_size (adj);
3859 if (old_size != size)
3861 int old_step = gtk_adjustment_get_step_increment (adj);
3862 if (old_step != new_step)
3864 gtk_adjustment_set_page_size (adj, size);
3865 gtk_adjustment_set_step_increment (adj, new_step);
3866 /* Assume a page increment is about 95% of the page size */
3867 gtk_adjustment_set_page_increment (adj, size - size / 20);
3868 changed = 1;
3872 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3874 block_input ();
3876 /* gtk_range_set_value invokes the callback. Set
3877 ignore_gtk_scrollbar to make the callback do nothing */
3878 xg_ignore_gtk_scrollbar = 1;
3880 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3881 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3882 else if (changed)
3883 gtk_adjustment_changed (adj);
3885 xg_ignore_gtk_scrollbar = 0;
3887 unblock_input ();
3892 /* Set the thumb size and position of horizontal scroll bar BAR. We are
3893 currently displaying PORTION out of a whole WHOLE, and our position
3894 POSITION. */
3895 void
3896 xg_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar *bar,
3897 int portion,
3898 int position,
3899 int whole)
3901 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3903 if (wscroll && bar->dragging == -1)
3905 GtkAdjustment *adj;
3906 int lower = 0;
3907 int upper = max (whole - 1, 0);
3908 int pagesize = min (upper, max (portion, 0));
3909 int value = max (0, min (position, upper - pagesize));
3910 /* These should be set to something more <portion, whole>
3911 related. */
3912 int page_increment = 4;
3913 int step_increment = 1;
3915 block_input ();
3916 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3917 #if GTK_CHECK_VERSION (2, 3, 16)
3918 gtk_adjustment_configure (adj, (gdouble) value, (gdouble) lower,
3919 (gdouble) upper, (gdouble) step_increment,
3920 (gdouble) page_increment, (gdouble) pagesize);
3921 #else
3922 gtk_adjustment_set_lower (adj, (gdouble) lower);
3923 gtk_adjustment_set_upper (adj, (gdouble) upper);
3924 gtk_adjustment_set_page_size (adj, (gdouble) pagesize);
3925 gtk_adjustment_set_value (adj, (gdouble) value);
3926 gtk_adjustment_set_page_increment (adj, (gdouble) page_increment);
3927 gtk_adjustment_set_step_increment (adj, (gdouble) step_increment);
3928 #endif
3929 gtk_adjustment_changed (adj);
3930 unblock_input ();
3934 /* Return true if EVENT is for a scroll bar in frame F.
3935 When the same X window is used for several Gtk+ widgets, we cannot
3936 say for sure based on the X window alone if an event is for the
3937 frame. This function does additional checks. */
3939 bool
3940 xg_event_is_for_scrollbar (struct frame *f, const XEvent *event)
3942 bool retval = 0;
3944 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3946 /* Check if press occurred outside the edit widget. */
3947 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3948 GdkWindow *gwin;
3949 #ifdef HAVE_GTK3
3950 GdkDevice *gdev = gdk_device_manager_get_client_pointer
3951 (gdk_display_get_device_manager (gdpy));
3952 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
3953 #else
3954 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
3955 #endif
3956 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
3958 else if (f
3959 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3960 || event->type == MotionNotify))
3962 /* If we are releasing or moving the scroll bar, it has the grab. */
3963 GtkWidget *w = gtk_grab_get_current ();
3964 retval = w != 0 && GTK_IS_SCROLLBAR (w);
3967 return retval;
3972 /***********************************************************************
3973 Tool bar functions
3974 ***********************************************************************/
3975 /* The key for the data we put in the GtkImage widgets. The data is
3976 the image used by Emacs. We use this to see if we need to update
3977 the GtkImage with a new image. */
3978 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3980 /* The key for storing the latest modifiers so the activate callback can
3981 get them. */
3982 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3984 /* The key for storing the button widget in its proxy menu item. */
3985 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3987 /* The key for the data we put in the GtkImage widgets. The data is
3988 the stock name used by Emacs. We use this to see if we need to update
3989 the GtkImage with a new image. */
3990 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3992 /* As above, but this is used for named theme widgets, as opposed to
3993 stock items. */
3994 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3996 /* Callback function invoked when a tool bar item is pressed.
3997 W is the button widget in the tool bar that got pressed,
3998 CLIENT_DATA is an integer that is the index of the button in the
3999 tool bar. 0 is the first button. */
4001 static gboolean
4002 xg_tool_bar_button_cb (GtkWidget *widget,
4003 GdkEventButton *event,
4004 gpointer user_data)
4006 intptr_t state = event->state;
4007 gpointer ptr = (gpointer) state;
4008 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
4009 return FALSE;
4013 /* Callback function invoked when a tool bar item is pressed.
4014 W is the button widget in the tool bar that got pressed,
4015 CLIENT_DATA is an integer that is the index of the button in the
4016 tool bar. 0 is the first button. */
4018 static void
4019 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
4021 intptr_t idx = (intptr_t) client_data;
4022 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
4023 intptr_t mod = (intptr_t) gmod;
4025 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4026 Lisp_Object key, frame;
4027 struct input_event event;
4028 EVENT_INIT (event);
4030 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4031 return;
4033 idx *= TOOL_BAR_ITEM_NSLOTS;
4035 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
4036 XSETFRAME (frame, f);
4038 /* We generate two events here. The first one is to set the prefix
4039 to `(tool_bar)', see keyboard.c. */
4040 event.kind = TOOL_BAR_EVENT;
4041 event.frame_or_window = frame;
4042 event.arg = frame;
4043 kbd_buffer_store_event (&event);
4045 event.kind = TOOL_BAR_EVENT;
4046 event.frame_or_window = frame;
4047 event.arg = key;
4048 /* Convert between the modifier bits GDK uses and the modifier bits
4049 Emacs uses. This assumes GDK and X masks are the same, which they are when
4050 this is written. */
4051 event.modifiers = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), mod);
4052 kbd_buffer_store_event (&event);
4054 /* Return focus to the frame after we have clicked on a detached
4055 tool bar button. */
4056 x_focus_frame (f);
4059 /* Callback function invoked when a tool bar item is pressed in a detached
4060 tool bar or the overflow drop down menu.
4061 We just call xg_tool_bar_callback.
4062 W is the menu item widget that got pressed,
4063 CLIENT_DATA is an integer that is the index of the button in the
4064 tool bar. 0 is the first button. */
4066 static void
4067 xg_tool_bar_proxy_callback (GtkWidget *w, gpointer client_data)
4069 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
4070 XG_TOOL_BAR_PROXY_BUTTON));
4071 xg_tool_bar_callback (wbutton, client_data);
4075 static gboolean
4076 xg_tool_bar_help_callback (GtkWidget *w,
4077 GdkEventCrossing *event,
4078 gpointer client_data);
4080 /* This callback is called when a help is to be shown for an item in
4081 the detached tool bar when the detached tool bar it is not expanded. */
4083 static gboolean
4084 xg_tool_bar_proxy_help_callback (GtkWidget *w,
4085 GdkEventCrossing *event,
4086 gpointer client_data)
4088 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
4089 XG_TOOL_BAR_PROXY_BUTTON));
4091 return xg_tool_bar_help_callback (wbutton, event, client_data);
4094 static GtkWidget *
4095 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4097 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4098 GtkWidget *c1 = clist->data;
4099 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4101 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4102 g_list_free (clist);
4103 return GTK_IS_LABEL (c1) ? c1 : c2;
4107 /* This callback is called when the mouse enters or leaves a tool bar item.
4108 It is used for displaying and hiding the help text.
4109 W is the tool bar item, a button.
4110 EVENT is either an enter event or leave event.
4111 CLIENT_DATA is an integer that is the index of the button in the
4112 tool bar. 0 is the first button.
4114 Returns FALSE to tell GTK to keep processing this event. */
4116 static gboolean
4117 xg_tool_bar_help_callback (GtkWidget *w,
4118 GdkEventCrossing *event,
4119 gpointer client_data)
4121 intptr_t idx = (intptr_t) client_data;
4122 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4123 Lisp_Object help, frame;
4125 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4126 return FALSE;
4128 if (event->type == GDK_ENTER_NOTIFY)
4130 idx *= TOOL_BAR_ITEM_NSLOTS;
4131 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4133 if (NILP (help))
4134 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4136 else
4137 help = Qnil;
4139 XSETFRAME (frame, f);
4140 kbd_buffer_store_help_event (frame, help);
4142 return FALSE;
4146 /* This callback is called when a tool bar item shall be redrawn.
4147 It modifies the expose event so that the GtkImage widget redraws the
4148 whole image. This to overcome a bug that makes GtkImage draw the image
4149 in the wrong place when it tries to redraw just a part of the image.
4150 W is the GtkImage to be redrawn.
4151 EVENT is the expose event for W.
4152 CLIENT_DATA is unused.
4154 Returns FALSE to tell GTK to keep processing this event. */
4156 #ifndef HAVE_GTK3
4157 static gboolean
4158 xg_tool_bar_item_expose_callback (GtkWidget *w,
4159 GdkEventExpose *event,
4160 gpointer client_data)
4162 gint width, height;
4164 gdk_drawable_get_size (event->window, &width, &height);
4165 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4166 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4168 event->area.x = max (0, event->area.x);
4169 event->area.y = max (0, event->area.y);
4171 event->area.width = max (width, event->area.width);
4172 event->area.height = max (height, event->area.height);
4174 return FALSE;
4176 #endif
4178 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4179 #define toolbar_set_orientation(w, o) \
4180 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4181 #else
4182 #define toolbar_set_orientation(w, o) \
4183 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4184 #endif
4186 #define TOOLBAR_TOP_WIDGET(x) ((x)->toolbar_widget)
4188 /* Attach a tool bar to frame F. */
4190 static void
4191 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4193 struct x_output *x = f->output_data.x;
4194 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4195 GtkWidget *top_widget = x->toolbar_widget;
4197 toolbar_set_orientation (x->toolbar_widget,
4198 into_hbox
4199 ? GTK_ORIENTATION_VERTICAL
4200 : GTK_ORIENTATION_HORIZONTAL);
4202 if (into_hbox)
4204 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4205 FALSE, FALSE, 0);
4207 if (EQ (pos, Qleft))
4208 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4209 top_widget,
4211 x->toolbar_in_hbox = true;
4213 else
4215 bool vbox_pos = x->menubar_widget != 0;
4216 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4217 FALSE, FALSE, 0);
4219 if (EQ (pos, Qtop))
4220 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4221 top_widget,
4222 vbox_pos);
4223 x->toolbar_in_hbox = false;
4225 x->toolbar_is_packed = true;
4228 static bool xg_update_tool_bar_sizes (struct frame *f);
4230 static void
4231 tb_size_cb (GtkWidget *widget,
4232 GdkRectangle *allocation,
4233 gpointer user_data)
4235 /* When tool bar is created it has one preferred size. But when size is
4236 allocated between widgets, it may get another. So we must update
4237 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4238 struct frame *f = user_data;
4239 if (xg_update_tool_bar_sizes (f))
4240 xg_height_or_width_changed (f);
4243 /* Create a tool bar for frame F. */
4245 static void
4246 xg_create_tool_bar (struct frame *f)
4248 struct x_output *x = f->output_data.x;
4249 #if GTK_CHECK_VERSION (3, 3, 6)
4250 GtkStyleContext *gsty;
4251 #endif
4252 struct xg_frame_tb_info *tbinfo
4253 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4254 TB_INFO_KEY);
4255 if (! tbinfo)
4257 tbinfo = xmalloc (sizeof (*tbinfo));
4258 tbinfo->last_tool_bar = Qnil;
4259 tbinfo->style = Qnil;
4260 tbinfo->hmargin = tbinfo->vmargin = 0;
4261 tbinfo->dir = GTK_TEXT_DIR_NONE;
4262 tbinfo->n_last_items = 0;
4263 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4264 TB_INFO_KEY,
4265 tbinfo);
4268 x->toolbar_widget = gtk_toolbar_new ();
4270 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4272 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4273 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4274 g_signal_connect (x->toolbar_widget, "size-allocate",
4275 G_CALLBACK (tb_size_cb), f);
4276 #if GTK_CHECK_VERSION (3, 3, 6)
4277 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4278 gtk_style_context_add_class (gsty, "primary-toolbar");
4279 #endif
4283 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4285 /* Find the right-to-left image named by RTL in the tool bar images for F.
4286 Returns IMAGE if RTL is not found. */
4288 static Lisp_Object
4289 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4291 int i;
4292 Lisp_Object file, rtl_name;
4293 struct gcpro gcpro1, gcpro2;
4294 GCPRO2 (file, rtl_name);
4296 rtl_name = Ffile_name_nondirectory (rtl);
4298 for (i = 0; i < f->n_tool_bar_items; ++i)
4300 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4301 if (!NILP (file = file_for_image (rtl_image)))
4303 file = call1 (intern ("file-name-sans-extension"),
4304 Ffile_name_nondirectory (file));
4305 if (! NILP (Fequal (file, rtl_name)))
4307 image = rtl_image;
4308 break;
4313 return image;
4316 static GtkToolItem *
4317 xg_make_tool_item (struct frame *f,
4318 GtkWidget *wimage,
4319 GtkWidget **wbutton,
4320 const char *label,
4321 int i, bool horiz, bool text_image)
4323 GtkToolItem *ti = gtk_tool_item_new ();
4324 GtkWidget *vb = gtk_box_new (horiz
4325 ? GTK_ORIENTATION_HORIZONTAL
4326 : GTK_ORIENTATION_VERTICAL,
4328 GtkWidget *wb = gtk_button_new ();
4329 /* The eventbox is here so we can have tooltips on disabled items. */
4330 GtkWidget *weventbox = gtk_event_box_new ();
4331 #if GTK_CHECK_VERSION (3, 3, 6)
4332 GtkCssProvider *css_prov = gtk_css_provider_new ();
4333 GtkStyleContext *gsty;
4335 gtk_css_provider_load_from_data (css_prov,
4336 "GtkEventBox {"
4337 " background-color: transparent;"
4338 "}",
4339 -1, NULL);
4341 gsty = gtk_widget_get_style_context (weventbox);
4342 gtk_style_context_add_provider (gsty,
4343 GTK_STYLE_PROVIDER (css_prov),
4344 GTK_STYLE_PROVIDER_PRIORITY_USER);
4345 g_object_unref (css_prov);
4346 #endif
4348 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4350 if (wimage && !text_image)
4351 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4352 if (label)
4353 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4354 if (wimage && text_image)
4355 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4357 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4358 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4359 gtk_container_add (GTK_CONTAINER (wb), vb);
4360 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4361 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4363 if (wimage || label)
4365 intptr_t ii = i;
4366 gpointer gi = (gpointer) ii;
4368 g_signal_connect (G_OBJECT (wb), "clicked",
4369 G_CALLBACK (xg_tool_bar_callback),
4370 gi);
4372 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4374 #ifndef HAVE_GTK3
4375 /* Catch expose events to overcome an annoying redraw bug, see
4376 comment for xg_tool_bar_item_expose_callback. */
4377 g_signal_connect (G_OBJECT (ti),
4378 "expose-event",
4379 G_CALLBACK (xg_tool_bar_item_expose_callback),
4381 #endif
4382 gtk_tool_item_set_homogeneous (ti, FALSE);
4384 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4385 no distinction based on modifiers in the activate callback,
4386 so we have to do it ourselves. */
4387 g_signal_connect (wb, "button-release-event",
4388 G_CALLBACK (xg_tool_bar_button_cb),
4389 NULL);
4391 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4393 /* Use enter/leave notify to show help. We use the events
4394 rather than the GtkButton specific signals "enter" and
4395 "leave", so we can have only one callback. The event
4396 will tell us what kind of event it is. */
4397 g_signal_connect (G_OBJECT (weventbox),
4398 "enter-notify-event",
4399 G_CALLBACK (xg_tool_bar_help_callback),
4400 gi);
4401 g_signal_connect (G_OBJECT (weventbox),
4402 "leave-notify-event",
4403 G_CALLBACK (xg_tool_bar_help_callback),
4404 gi);
4407 if (wbutton) *wbutton = wb;
4409 return ti;
4412 static bool
4413 is_box_type (GtkWidget *vb, bool is_horizontal)
4415 #ifdef HAVE_GTK3
4416 bool ret = 0;
4417 if (GTK_IS_BOX (vb))
4419 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4420 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4421 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4423 return ret;
4424 #else
4425 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4426 #endif
4430 static bool
4431 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4432 const char *icon_name, const struct image *img,
4433 const char *label, bool horiz)
4435 gpointer old;
4436 GtkWidget *wimage;
4437 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4438 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4440 /* Check if the tool icon matches. */
4441 if (stock_name && wimage)
4443 old = g_object_get_data (G_OBJECT (wimage),
4444 XG_TOOL_BAR_STOCK_NAME);
4445 if (!old || strcmp (old, stock_name))
4446 return 1;
4448 else if (icon_name && wimage)
4450 old = g_object_get_data (G_OBJECT (wimage),
4451 XG_TOOL_BAR_ICON_NAME);
4452 if (!old || strcmp (old, icon_name))
4453 return 1;
4455 else if (wimage)
4457 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4458 XG_TOOL_BAR_IMAGE_DATA);
4459 Pixmap old_img = (Pixmap) gold_img;
4460 if (old_img != img->pixmap)
4461 return 1;
4464 /* Check button configuration and label. */
4465 if (is_box_type (vb, horiz)
4466 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4467 return 1;
4469 /* Ensure label is correct. */
4470 if (label && wlbl)
4471 gtk_label_set_text (GTK_LABEL (wlbl), label);
4472 return 0;
4475 static bool
4476 xg_update_tool_bar_sizes (struct frame *f)
4478 struct x_output *x = f->output_data.x;
4479 GtkRequisition req;
4480 int nl = 0, nr = 0, nt = 0, nb = 0;
4481 GtkWidget *top_widget = x->toolbar_widget;
4483 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4484 if (x->toolbar_in_hbox)
4486 int pos;
4487 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4488 top_widget,
4489 "position", &pos, NULL);
4490 if (pos == 0) nl = req.width;
4491 else nr = req.width;
4493 else
4495 int pos;
4496 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4497 top_widget,
4498 "position", &pos, NULL);
4499 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4500 else nb = req.height;
4503 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4504 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4505 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4506 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4508 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4509 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4510 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4511 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4512 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4513 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4514 return 1;
4517 return 0;
4520 static char *
4521 find_icon_from_name (char *name,
4522 GtkIconTheme *icon_theme,
4523 char **icon_name)
4525 #if ! GTK_CHECK_VERSION (3, 10, 0)
4526 GtkStockItem stock_item;
4527 #endif
4529 if (name[0] == 'n' && name[1] == ':')
4531 *icon_name = name + 2;
4532 name = NULL;
4534 if (! gtk_icon_theme_has_icon (icon_theme, *icon_name))
4535 *icon_name = NULL;
4538 #if ! GTK_CHECK_VERSION (3, 10, 0)
4539 else if (gtk_stock_lookup (name, &stock_item))
4540 *icon_name = NULL;
4541 #endif
4542 else if (gtk_icon_theme_has_icon (icon_theme, name))
4544 *icon_name = name;
4545 name = NULL;
4547 else
4549 name = NULL;
4550 *icon_name = NULL;
4553 return name;
4557 /* Update the tool bar for frame F. Add new buttons and remove old. */
4559 void
4560 update_frame_tool_bar (struct frame *f)
4562 int i, j;
4563 struct x_output *x = f->output_data.x;
4564 int hmargin = 0, vmargin = 0;
4565 GtkToolbar *wtoolbar;
4566 GtkToolItem *ti;
4567 GtkTextDirection dir;
4568 Lisp_Object style;
4569 bool text_image, horiz;
4570 struct xg_frame_tb_info *tbinfo;
4571 GdkScreen *screen;
4572 GtkIconTheme *icon_theme;
4575 if (! FRAME_GTK_WIDGET (f))
4576 return;
4578 block_input ();
4580 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4582 hmargin = XFASTINT (Vtool_bar_button_margin);
4583 vmargin = XFASTINT (Vtool_bar_button_margin);
4585 else if (CONSP (Vtool_bar_button_margin))
4587 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4588 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4590 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4591 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4594 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4595 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4596 i.e. zero. This means that margins less than
4597 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4598 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4599 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4601 if (! x->toolbar_widget)
4602 xg_create_tool_bar (f);
4604 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4605 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4607 style = Ftool_bar_get_system_style ();
4608 screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4609 icon_theme = gtk_icon_theme_get_for_screen (screen);
4611 /* Are we up to date? */
4612 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4613 TB_INFO_KEY);
4615 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4616 && tbinfo->n_last_items == f->n_tool_bar_items
4617 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4618 && tbinfo->dir == dir
4619 && ! NILP (Fequal (tbinfo->style, style))
4620 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4622 unblock_input ();
4623 return;
4626 tbinfo->last_tool_bar = f->tool_bar_items;
4627 tbinfo->n_last_items = f->n_tool_bar_items;
4628 tbinfo->style = style;
4629 tbinfo->hmargin = hmargin;
4630 tbinfo->vmargin = vmargin;
4631 tbinfo->dir = dir;
4633 text_image = EQ (style, Qtext_image_horiz);
4634 horiz = EQ (style, Qboth_horiz) || text_image;
4636 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4638 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4639 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4640 int idx;
4641 ptrdiff_t img_id;
4642 int icon_size = 0;
4643 struct image *img = NULL;
4644 Lisp_Object image;
4645 Lisp_Object stock = Qnil;
4646 char *stock_name = NULL;
4647 char *icon_name = NULL;
4648 Lisp_Object rtl;
4649 GtkWidget *wbutton = NULL;
4650 Lisp_Object specified_file;
4651 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4652 const char *label
4653 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4654 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4655 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4656 : "";
4658 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4660 /* If this is a separator, use a gtk separator item. */
4661 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4663 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4665 if (ti)
4666 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4667 GTK_WIDGET (ti));
4668 ti = gtk_separator_tool_item_new ();
4669 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4671 j++;
4672 continue;
4675 /* Otherwise, the tool-bar item is an ordinary button. */
4677 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4679 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4680 ti = NULL;
4683 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4685 /* Ignore invalid image specifications. */
4686 image = PROP (TOOL_BAR_ITEM_IMAGES);
4687 if (!valid_image_p (image))
4689 if (ti)
4690 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4691 GTK_WIDGET (ti));
4692 continue;
4695 specified_file = file_for_image (image);
4696 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4697 stock = call1 (Qx_gtk_map_stock, specified_file);
4699 if (CONSP (stock))
4701 Lisp_Object tem;
4702 for (tem = stock; CONSP (tem); tem = XCDR (tem))
4703 if (! NILP (tem) && STRINGP (XCAR (tem)))
4705 stock_name = find_icon_from_name (SSDATA (XCAR (tem)),
4706 icon_theme,
4707 &icon_name);
4708 if (stock_name || icon_name) break;
4711 else if (STRINGP (stock))
4713 stock_name = find_icon_from_name (SSDATA (stock),
4714 icon_theme,
4715 &icon_name);
4718 if (stock_name || icon_name)
4719 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4721 if (stock_name == NULL && icon_name == NULL)
4723 /* No stock image, or stock item not known. Try regular
4724 image. If image is a vector, choose it according to the
4725 button state. */
4726 if (dir == GTK_TEXT_DIR_RTL
4727 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4728 && STRINGP (rtl))
4729 image = find_rtl_image (f, image, rtl);
4731 if (VECTORP (image))
4733 if (enabled_p)
4734 idx = (selected_p
4735 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4736 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4737 else
4738 idx = (selected_p
4739 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4740 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4742 eassert (ASIZE (image) >= idx);
4743 image = AREF (image, idx);
4745 else
4746 idx = -1;
4748 img_id = lookup_image (f, image);
4749 img = IMAGE_FROM_ID (f, img_id);
4750 prepare_image_for_display (f, img);
4752 if (img->load_failed_p || img->pixmap == None)
4754 if (ti)
4755 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4756 GTK_WIDGET (ti));
4757 continue;
4761 /* If there is an existing widget, check if it's stale; if so,
4762 remove it and make a new tool item from scratch. */
4763 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4764 img, label, horiz))
4766 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4767 GTK_WIDGET (ti));
4768 ti = NULL;
4771 if (ti == NULL)
4773 GtkWidget *w;
4775 /* Save the image so we can see if an update is needed the
4776 next time we call xg_tool_item_match_p. */
4777 if (EQ (style, Qtext))
4778 w = NULL;
4779 else if (stock_name)
4782 #if GTK_CHECK_VERSION (3, 10, 0)
4783 w = gtk_image_new_from_icon_name (stock_name, icon_size);
4784 #else
4785 w = gtk_image_new_from_stock (stock_name, icon_size);
4786 #endif
4787 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4788 (gpointer) xstrdup (stock_name),
4789 (GDestroyNotify) xfree);
4791 else if (icon_name)
4793 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4794 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4795 (gpointer) xstrdup (icon_name),
4796 (GDestroyNotify) xfree);
4798 else
4800 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4801 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4802 (gpointer)img->pixmap);
4805 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4806 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4807 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4810 #undef PROP
4812 gtk_widget_set_sensitive (wbutton, enabled_p);
4813 j++;
4816 /* Remove buttons not longer needed. */
4819 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4820 if (ti)
4821 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4822 } while (ti != NULL);
4824 if (f->n_tool_bar_items != 0)
4826 if (! x->toolbar_is_packed)
4827 xg_pack_tool_bar (f, FRAME_TOOL_BAR_POSITION (f));
4828 gtk_widget_show_all (x->toolbar_widget);
4829 if (xg_update_tool_bar_sizes (f))
4830 xg_height_or_width_changed (f);
4833 unblock_input ();
4836 /* Deallocate all resources for the tool bar on frame F.
4837 Remove the tool bar. */
4839 void
4840 free_frame_tool_bar (struct frame *f)
4842 struct x_output *x = f->output_data.x;
4844 if (x->toolbar_widget)
4846 struct xg_frame_tb_info *tbinfo;
4847 GtkWidget *top_widget = x->toolbar_widget;
4849 block_input ();
4850 if (x->toolbar_is_packed)
4852 if (x->toolbar_in_hbox)
4853 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4854 top_widget);
4855 else
4856 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4857 top_widget);
4859 else
4860 gtk_widget_destroy (x->toolbar_widget);
4862 x->toolbar_widget = 0;
4863 x->toolbar_widget = 0;
4864 x->toolbar_is_packed = false;
4865 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4866 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
4868 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4869 TB_INFO_KEY);
4870 if (tbinfo)
4872 xfree (tbinfo);
4873 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4874 TB_INFO_KEY,
4875 NULL);
4878 xg_height_or_width_changed (f);
4880 unblock_input ();
4884 void
4885 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
4887 struct x_output *x = f->output_data.x;
4888 GtkWidget *top_widget = x->toolbar_widget;
4890 if (! x->toolbar_widget || ! top_widget)
4891 return;
4893 block_input ();
4894 g_object_ref (top_widget);
4895 if (x->toolbar_is_packed)
4897 if (x->toolbar_in_hbox)
4898 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4899 top_widget);
4900 else
4901 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4902 top_widget);
4905 xg_pack_tool_bar (f, pos);
4906 g_object_unref (top_widget);
4907 if (xg_update_tool_bar_sizes (f))
4908 xg_height_or_width_changed (f);
4910 unblock_input ();
4915 /***********************************************************************
4916 Initializing
4917 ***********************************************************************/
4918 void
4919 xg_initialize (void)
4921 GtkBindingSet *binding_set;
4922 GtkSettings *settings;
4924 #if HAVE_XFT
4925 /* Work around a bug with corrupted data if libXft gets unloaded. This way
4926 we keep it permanently linked in. */
4927 XftInit (0);
4928 #endif
4930 gdpy_def = NULL;
4931 xg_ignore_gtk_scrollbar = 0;
4932 xg_menu_cb_list.prev = xg_menu_cb_list.next =
4933 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
4935 id_to_widget.max_size = id_to_widget.used = 0;
4936 id_to_widget.widgets = 0;
4938 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
4939 (gdk_display_get_default ()));
4940 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
4941 bindings. It doesn't seem to be any way to remove properties,
4942 so we set it to "" which in means "no key". */
4943 gtk_settings_set_string_property (settings,
4944 "gtk-menu-bar-accel",
4946 EMACS_CLASS);
4948 /* Make GTK text input widgets use Emacs style keybindings. This is
4949 Emacs after all. */
4950 gtk_settings_set_string_property (settings,
4951 "gtk-key-theme-name",
4952 "Emacs",
4953 EMACS_CLASS);
4955 /* Make dialogs close on C-g. Since file dialog inherits from
4956 dialog, this works for them also. */
4957 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
4958 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
4959 "close", 0);
4961 /* Make menus close on C-g. */
4962 binding_set = gtk_binding_set_by_class (g_type_class_ref
4963 (GTK_TYPE_MENU_SHELL));
4964 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
4965 "cancel", 0);
4966 update_theme_scrollbar_width ();
4967 update_theme_scrollbar_height ();
4969 #ifdef HAVE_FREETYPE
4970 x_last_font_name = NULL;
4971 #endif
4974 #endif /* USE_GTK */