Merge from emacs-24; up to 2013-01-03T01:56:56Z!rgm@gnu.org
[bpt/emacs.git] / src / gtkutil.c
1 /* Functions for creating and updating GTK widgets.
2
3 Copyright (C) 2003-2013 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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/>. */
19
20 #include <config.h>
21
22 #ifdef USE_GTK
23 #include <float.h>
24 #include <stdio.h>
25
26 #include <c-ctype.h>
27
28 #include "lisp.h"
29 #include "xterm.h"
30 #include "blockinput.h"
31 #include "syssignal.h"
32 #include "window.h"
33 #include "gtkutil.h"
34 #include "termhooks.h"
35 #include "keyboard.h"
36 #include "charset.h"
37 #include "coding.h"
38 #include "font.h"
39
40 #include <gdk/gdkkeysyms.h>
41 #include "xsettings.h"
42
43 #ifdef HAVE_XFT
44 #include <X11/Xft/Xft.h>
45 #endif
46
47 #ifdef HAVE_GTK3
48 #include <gtk/gtkx.h>
49 #include "emacsgtkfixed.h"
50 #endif
51
52 #define FRAME_TOTAL_PIXEL_HEIGHT(f) \
53 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
54
55 #define FRAME_TOTAL_PIXEL_WIDTH(f) \
56 (FRAME_PIXEL_WIDTH (f) + FRAME_TOOLBAR_WIDTH (f))
57
58 #ifndef HAVE_GTK_WIDGET_SET_HAS_WINDOW
59 #define gtk_widget_set_has_window(w, b) \
60 (gtk_fixed_set_has_window (GTK_FIXED (w), b))
61 #endif
62 #ifndef HAVE_GTK_DIALOG_GET_ACTION_AREA
63 #define gtk_dialog_get_action_area(w) ((w)->action_area)
64 #define gtk_dialog_get_content_area(w) ((w)->vbox)
65 #endif
66 #ifndef HAVE_GTK_WIDGET_GET_SENSITIVE
67 #define gtk_widget_get_sensitive(w) (GTK_WIDGET_SENSITIVE (w))
68 #endif
69 #ifndef HAVE_GTK_ADJUSTMENT_GET_PAGE_SIZE
70 #define gtk_adjustment_set_page_size(w, s) ((w)->page_size = (s))
71 #define gtk_adjustment_set_page_increment(w, s) ((w)->page_increment = (s))
72 #define gtk_adjustment_get_step_increment(w) ((w)->step_increment)
73 #define gtk_adjustment_set_step_increment(w, s) ((w)->step_increment = (s))
74 #endif
75 #if GTK_CHECK_VERSION (2, 12, 0)
76 #define remove_submenu(w) gtk_menu_item_set_submenu ((w), NULL)
77 #else
78 #define remove_submenu(w) gtk_menu_item_remove_submenu ((w))
79 #endif
80
81 #if GTK_CHECK_VERSION (3, 2, 0)
82 #define USE_NEW_GTK_FONT_CHOOSER 1
83 #else
84 #define USE_NEW_GTK_FONT_CHOOSER 0
85 #define gtk_font_chooser_dialog_new(x, y) \
86 gtk_font_selection_dialog_new (x)
87 #undef GTK_FONT_CHOOSER
88 #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x)
89 #define gtk_font_chooser_set_font(x, y) \
90 gtk_font_selection_dialog_set_font_name (x, y)
91 #endif
92
93 #ifndef HAVE_GTK3
94 #ifdef USE_GTK_TOOLTIP
95 #define gdk_window_get_screen(w) gdk_drawable_get_screen (w)
96 #endif
97 #define gdk_window_get_geometry(w, a, b, c, d) \
98 gdk_window_get_geometry (w, a, b, c, d, 0)
99 #define gdk_x11_window_lookup_for_display(d, w) \
100 gdk_xid_table_lookup_for_display (d, w)
101 #define gtk_box_new(ori, spacing) \
102 ((ori) == GTK_ORIENTATION_HORIZONTAL \
103 ? gtk_hbox_new (FALSE, (spacing)) : gtk_vbox_new (FALSE, (spacing)))
104 #define gtk_scrollbar_new(ori, spacing) \
105 ((ori) == GTK_ORIENTATION_HORIZONTAL \
106 ? gtk_hscrollbar_new ((spacing)) : gtk_vscrollbar_new ((spacing)))
107 #ifndef GDK_KEY_g
108 #define GDK_KEY_g GDK_g
109 #endif
110 #endif /* HAVE_GTK3 */
111
112 #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x))
113
114 static void update_theme_scrollbar_width (void);
115
116 #define TB_INFO_KEY "xg_frame_tb_info"
117 struct xg_frame_tb_info
118 {
119 Lisp_Object last_tool_bar;
120 Lisp_Object style;
121 int n_last_items;
122 int hmargin, vmargin;
123 GtkTextDirection dir;
124 };
125
126 \f
127 /***********************************************************************
128 Display handling functions
129 ***********************************************************************/
130
131 /* Keep track of the default display, or NULL if there is none. Emacs
132 may close all its displays. */
133
134 static GdkDisplay *gdpy_def;
135
136 /* When the GTK widget W is to be created on a display for F that
137 is not the default display, set the display for W.
138 W can be a GtkMenu or a GtkWindow widget. */
139
140 static void
141 xg_set_screen (GtkWidget *w, struct frame *f)
142 {
143 if (FRAME_X_DISPLAY (f) != DEFAULT_GDK_DISPLAY ())
144 {
145 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
146 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
147
148 if (GTK_IS_MENU (w))
149 gtk_menu_set_screen (GTK_MENU (w), gscreen);
150 else
151 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
152 }
153 }
154
155
156 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
157 *DPY is set to NULL if the display can't be opened.
158
159 Returns non-zero if display could be opened, zero if display could not
160 be opened, and less than zero if the GTK version doesn't support
161 multiple displays. */
162
163 void
164 xg_display_open (char *display_name, Display **dpy)
165 {
166 GdkDisplay *gdpy;
167
168 gdpy = gdk_display_open (display_name);
169 if (!gdpy_def && gdpy)
170 {
171 gdpy_def = gdpy;
172 gdk_display_manager_set_default_display (gdk_display_manager_get (),
173 gdpy);
174 }
175
176 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
177 }
178
179
180 /* Close display DPY. */
181
182 void
183 xg_display_close (Display *dpy)
184 {
185 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
186
187 /* If this is the default display, try to change it before closing.
188 If there is no other display to use, gdpy_def is set to NULL, and
189 the next call to xg_display_open resets the default display. */
190 if (gdk_display_get_default () == gdpy)
191 {
192 struct x_display_info *dpyinfo;
193 GdkDisplay *gdpy_new = NULL;
194
195 /* Find another display. */
196 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
197 if (dpyinfo->display != dpy)
198 {
199 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
200 gdk_display_manager_set_default_display (gdk_display_manager_get (),
201 gdpy_new);
202 break;
203 }
204 gdpy_def = gdpy_new;
205 }
206
207 #if GTK_CHECK_VERSION (2, 0, 0) && ! GTK_CHECK_VERSION (2, 10, 0)
208 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
209 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
210 can continue running, but there will be memory leaks. */
211 g_object_run_dispose (G_OBJECT (gdpy));
212 #else
213 /* This seems to be fixed in GTK 2.10. */
214 gdk_display_close (gdpy);
215 #endif
216 }
217
218 \f
219 /***********************************************************************
220 Utility functions
221 ***********************************************************************/
222 /* The next two variables and functions are taken from lwlib. */
223 static widget_value *widget_value_free_list;
224 static int malloc_cpt;
225
226 /* Allocate a widget_value structure, either by taking one from the
227 widget_value_free_list or by malloc:ing a new one.
228
229 Return a pointer to the allocated structure. */
230
231 widget_value *
232 malloc_widget_value (void)
233 {
234 widget_value *wv;
235 if (widget_value_free_list)
236 {
237 wv = widget_value_free_list;
238 widget_value_free_list = wv->free_list;
239 wv->free_list = 0;
240 }
241 else
242 {
243 wv = xmalloc (sizeof *wv);
244 malloc_cpt++;
245 }
246 memset (wv, 0, sizeof (widget_value));
247 return wv;
248 }
249
250 /* This is analogous to free. It frees only what was allocated
251 by malloc_widget_value, and no substructures. */
252
253 void
254 free_widget_value (widget_value *wv)
255 {
256 if (wv->free_list)
257 emacs_abort ();
258
259 if (malloc_cpt > 25)
260 {
261 /* When the number of already allocated cells is too big,
262 We free it. */
263 xfree (wv);
264 malloc_cpt--;
265 }
266 else
267 {
268 wv->free_list = widget_value_free_list;
269 widget_value_free_list = wv;
270 }
271 }
272
273
274 /* Create and return the cursor to be used for popup menus and
275 scroll bars on display DPY. */
276
277 GdkCursor *
278 xg_create_default_cursor (Display *dpy)
279 {
280 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
281 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
282 }
283
284 static GdkPixbuf *
285 xg_get_pixbuf_from_pixmap (struct frame *f, Pixmap pix)
286 {
287 int iunused;
288 GdkPixbuf *tmp_buf;
289 Window wunused;
290 unsigned int width, height, uunused;
291 XImage *xim;
292
293 XGetGeometry (FRAME_X_DISPLAY (f), pix, &wunused, &iunused, &iunused,
294 &width, &height, &uunused, &uunused);
295
296 xim = XGetImage (FRAME_X_DISPLAY (f), pix, 0, 0, width, height,
297 ~0, XYPixmap);
298 if (!xim) return 0;
299
300 tmp_buf = gdk_pixbuf_new_from_data ((guchar *) xim->data,
301 GDK_COLORSPACE_RGB,
302 FALSE,
303 xim->bitmap_unit,
304 width,
305 height,
306 xim->bytes_per_line,
307 NULL,
308 NULL);
309 XDestroyImage (xim);
310 return tmp_buf;
311 }
312
313 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
314
315 static GdkPixbuf *
316 xg_get_pixbuf_from_pix_and_mask (struct frame *f,
317 Pixmap pix,
318 Pixmap mask)
319 {
320 int width, height;
321 GdkPixbuf *icon_buf, *tmp_buf;
322
323 tmp_buf = xg_get_pixbuf_from_pixmap (f, pix);
324 icon_buf = gdk_pixbuf_add_alpha (tmp_buf, FALSE, 0, 0, 0);
325 g_object_unref (G_OBJECT (tmp_buf));
326
327 width = gdk_pixbuf_get_width (icon_buf);
328 height = gdk_pixbuf_get_height (icon_buf);
329
330 if (mask)
331 {
332 GdkPixbuf *mask_buf = xg_get_pixbuf_from_pixmap (f, mask);
333 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
334 guchar *mask_pixels = gdk_pixbuf_get_pixels (mask_buf);
335 int rowstride = gdk_pixbuf_get_rowstride (icon_buf);
336 int mask_rowstride = gdk_pixbuf_get_rowstride (mask_buf);
337 int y;
338
339 for (y = 0; y < height; ++y)
340 {
341 guchar *iconptr, *maskptr;
342 int x;
343
344 iconptr = pixels + y * rowstride;
345 maskptr = mask_pixels + y * mask_rowstride;
346
347 for (x = 0; x < width; ++x)
348 {
349 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
350 just R is sufficient. */
351 if (maskptr[0] == 0)
352 iconptr[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
353
354 iconptr += rowstride/width;
355 maskptr += mask_rowstride/width;
356 }
357 }
358
359 g_object_unref (G_OBJECT (mask_buf));
360 }
361
362 return icon_buf;
363 }
364
365 static Lisp_Object
366 file_for_image (Lisp_Object image)
367 {
368 Lisp_Object specified_file = Qnil;
369 Lisp_Object tail;
370
371 for (tail = XCDR (image);
372 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
373 tail = XCDR (XCDR (tail)))
374 if (EQ (XCAR (tail), QCfile))
375 specified_file = XCAR (XCDR (tail));
376
377 return specified_file;
378 }
379
380 /* For the image defined in IMG, make and return a GtkImage. For displays with
381 8 planes or less we must make a GdkPixbuf and apply the mask manually.
382 Otherwise the highlighting and dimming the tool bar code in GTK does
383 will look bad. For display with more than 8 planes we just use the
384 pixmap and mask directly. For monochrome displays, GTK doesn't seem
385 able to use external pixmaps, it looks bad whatever we do.
386 The image is defined on the display where frame F is.
387 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
388 If OLD_WIDGET is NULL, a new widget is constructed and returned.
389 If OLD_WIDGET is not NULL, that widget is modified. */
390
391 static GtkWidget *
392 xg_get_image_for_pixmap (struct frame *f,
393 struct image *img,
394 GtkWidget *widget,
395 GtkImage *old_widget)
396 {
397 GdkPixbuf *icon_buf;
398
399 /* If we have a file, let GTK do all the image handling.
400 This seems to be the only way to make insensitive and activated icons
401 look good in all cases. */
402 Lisp_Object specified_file = file_for_image (img->spec);
403 Lisp_Object file;
404
405 /* We already loaded the image once before calling this
406 function, so this only fails if the image file has been removed.
407 In that case, use the pixmap already loaded. */
408
409 if (STRINGP (specified_file)
410 && STRINGP (file = x_find_image_file (specified_file)))
411 {
412 if (! old_widget)
413 old_widget = GTK_IMAGE (gtk_image_new_from_file (SSDATA (file)));
414 else
415 gtk_image_set_from_file (old_widget, SSDATA (file));
416
417 return GTK_WIDGET (old_widget);
418 }
419
420 /* No file, do the image handling ourselves. This will look very bad
421 on a monochrome display, and sometimes bad on all displays with
422 certain themes. */
423
424 /* This is a workaround to make icons look good on pseudo color
425 displays. Apparently GTK expects the images to have an alpha
426 channel. If they don't, insensitive and activated icons will
427 look bad. This workaround does not work on monochrome displays,
428 and is strictly not needed on true color/static color displays (i.e.
429 16 bits and higher). But we do it anyway so we get a pixbuf that is
430 not associated with the img->pixmap. The img->pixmap may be removed
431 by clearing the image cache and then the tool bar redraw fails, since
432 Gtk+ assumes the pixmap is always there. */
433 icon_buf = xg_get_pixbuf_from_pix_and_mask (f, img->pixmap, img->mask);
434
435 if (icon_buf)
436 {
437 if (! old_widget)
438 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
439 else
440 gtk_image_set_from_pixbuf (old_widget, icon_buf);
441
442 g_object_unref (G_OBJECT (icon_buf));
443 }
444
445 return GTK_WIDGET (old_widget);
446 }
447
448
449 /* Set CURSOR on W and all widgets W contain. We must do like this
450 for scroll bars and menu because they create widgets internally,
451 and it is those widgets that are visible. */
452
453 static void
454 xg_set_cursor (GtkWidget *w, GdkCursor *cursor)
455 {
456 GdkWindow *window = gtk_widget_get_window (w);
457 GList *children = gdk_window_peek_children (window);
458
459 gdk_window_set_cursor (window, cursor);
460
461 /* The scroll bar widget has more than one GDK window (had to look at
462 the source to figure this out), and there is no way to set cursor
463 on widgets in GTK. So we must set the cursor for all GDK windows.
464 Ditto for menus. */
465
466 for ( ; children; children = g_list_next (children))
467 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
468 }
469
470 /* Insert NODE into linked LIST. */
471
472 static void
473 xg_list_insert (xg_list_node *list, xg_list_node *node)
474 {
475 xg_list_node *list_start = list->next;
476
477 if (list_start) list_start->prev = node;
478 node->next = list_start;
479 node->prev = 0;
480 list->next = node;
481 }
482
483 /* Remove NODE from linked LIST. */
484
485 static void
486 xg_list_remove (xg_list_node *list, xg_list_node *node)
487 {
488 xg_list_node *list_start = list->next;
489 if (node == list_start)
490 {
491 list->next = node->next;
492 if (list->next) list->next->prev = 0;
493 }
494 else
495 {
496 node->prev->next = node->next;
497 if (node->next) node->next->prev = node->prev;
498 }
499 }
500
501 /* Allocate and return a utf8 version of STR. If STR is already
502 utf8 or NULL, just return a copy of STR.
503 A new string is allocated and the caller must free the result
504 with g_free. */
505
506 static char *
507 get_utf8_string (const char *str)
508 {
509 char *utf8_str;
510
511 if (!str) return NULL;
512
513 /* If not UTF-8, try current locale. */
514 if (!g_utf8_validate (str, -1, NULL))
515 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
516 else
517 return g_strdup (str);
518
519 if (!utf8_str)
520 {
521 /* Probably some control characters in str. Escape them. */
522 ptrdiff_t len;
523 ptrdiff_t nr_bad = 0;
524 gsize bytes_read;
525 gsize bytes_written;
526 unsigned char *p = (unsigned char *)str;
527 char *cp, *up;
528 GError *err = NULL;
529
530 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
531 &bytes_written, &err))
532 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
533 {
534 ++nr_bad;
535 p += bytes_written+1;
536 g_error_free (err);
537 err = NULL;
538 }
539
540 if (err)
541 {
542 g_error_free (err);
543 err = NULL;
544 }
545 if (cp) g_free (cp);
546
547 len = strlen (str);
548 if ((min (PTRDIFF_MAX, SIZE_MAX) - len - 1) / 4 < nr_bad)
549 memory_full (SIZE_MAX);
550 up = utf8_str = xmalloc (len + nr_bad * 4 + 1);
551 p = (unsigned char *)str;
552
553 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
554 &bytes_written, &err))
555 && err->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
556 {
557 memcpy (up, p, bytes_written);
558 sprintf (up + bytes_written, "\\%03o", p[bytes_written]);
559 up += bytes_written+4;
560 p += bytes_written+1;
561 g_error_free (err);
562 err = NULL;
563 }
564
565 if (cp)
566 {
567 strcat (utf8_str, cp);
568 g_free (cp);
569 }
570 if (err)
571 {
572 g_error_free (err);
573 err = NULL;
574 }
575 }
576 return utf8_str;
577 }
578
579 /* Check for special colors used in face spec for region face.
580 The colors are fetched from the Gtk+ theme.
581 Return true if color was found, false if not. */
582
583 bool
584 xg_check_special_colors (struct frame *f,
585 const char *color_name,
586 XColor *color)
587 {
588 bool success_p = 0;
589 bool get_bg = strcmp ("gtk_selection_bg_color", color_name) == 0;
590 bool get_fg = !get_bg && strcmp ("gtk_selection_fg_color", color_name) == 0;
591
592 if (! FRAME_GTK_WIDGET (f) || ! (get_bg || get_fg))
593 return success_p;
594
595 block_input ();
596 {
597 #ifdef HAVE_GTK3
598 GtkStyleContext *gsty
599 = gtk_widget_get_style_context (FRAME_GTK_OUTER_WIDGET (f));
600 GdkRGBA col;
601 char buf[sizeof "rgbi://" + 3 * (DBL_MAX_10_EXP + sizeof "-1.000000" - 1)];
602 int state = GTK_STATE_FLAG_SELECTED|GTK_STATE_FLAG_FOCUSED;
603 if (get_fg)
604 gtk_style_context_get_color (gsty, state, &col);
605 else
606 gtk_style_context_get_background_color (gsty, state, &col);
607
608 sprintf (buf, "rgbi:%lf/%lf/%lf", col.red, col.green, col.blue);
609 success_p = (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
610 buf, color)
611 != 0);
612 #else
613 GtkStyle *gsty = gtk_widget_get_style (FRAME_GTK_WIDGET (f));
614 GdkColor *grgb = get_bg
615 ? &gsty->bg[GTK_STATE_SELECTED]
616 : &gsty->fg[GTK_STATE_SELECTED];
617
618 color->red = grgb->red;
619 color->green = grgb->green;
620 color->blue = grgb->blue;
621 color->pixel = grgb->pixel;
622 success_p = 1;
623 #endif
624
625 }
626 unblock_input ();
627 return success_p;
628 }
629
630
631 \f
632 /***********************************************************************
633 Tooltips
634 ***********************************************************************/
635 /* Gtk+ calls this callback when the parent of our tooltip dummy changes.
636 We use that to pop down the tooltip. This happens if Gtk+ for some
637 reason wants to change or hide the tooltip. */
638
639 #ifdef USE_GTK_TOOLTIP
640
641 static void
642 hierarchy_ch_cb (GtkWidget *widget,
643 GtkWidget *previous_toplevel,
644 gpointer user_data)
645 {
646 struct frame *f = user_data;
647 struct x_output *x = f->output_data.x;
648 GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl);
649
650 if (! top || ! GTK_IS_WINDOW (top))
651 gtk_widget_hide (previous_toplevel);
652 }
653
654 /* Callback called when Gtk+ thinks a tooltip should be displayed.
655 We use it to get the tooltip window and the tooltip widget so
656 we can manipulate the ourselves.
657
658 Return FALSE ensures that the tooltip is not shown. */
659
660 static gboolean
661 qttip_cb (GtkWidget *widget,
662 gint xpos,
663 gint ypos,
664 gboolean keyboard_mode,
665 GtkTooltip *tooltip,
666 gpointer user_data)
667 {
668 struct frame *f = user_data;
669 struct x_output *x = f->output_data.x;
670 if (x->ttip_widget == NULL)
671 {
672 GtkWidget *p;
673 GList *list, *iter;
674
675 g_object_set (G_OBJECT (widget), "has-tooltip", FALSE, NULL);
676 x->ttip_widget = tooltip;
677 g_object_ref (G_OBJECT (tooltip));
678 x->ttip_lbl = gtk_label_new ("");
679 g_object_ref (G_OBJECT (x->ttip_lbl));
680 gtk_tooltip_set_custom (tooltip, x->ttip_lbl);
681 x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl));
682
683 /* Change stupid Gtk+ default line wrapping. */
684 p = gtk_widget_get_parent (x->ttip_lbl);
685 list = gtk_container_get_children (GTK_CONTAINER (p));
686 for (iter = list; iter; iter = g_list_next (iter))
687 {
688 GtkWidget *w = GTK_WIDGET (iter->data);
689 if (GTK_IS_LABEL (w))
690 gtk_label_set_line_wrap (GTK_LABEL (w), FALSE);
691 }
692 g_list_free (list);
693
694 /* ATK needs an empty title for some reason. */
695 gtk_window_set_title (x->ttip_window, "");
696 /* Realize so we can safely get screen later on. */
697 gtk_widget_realize (GTK_WIDGET (x->ttip_window));
698 gtk_widget_realize (x->ttip_lbl);
699
700 g_signal_connect (x->ttip_lbl, "hierarchy-changed",
701 G_CALLBACK (hierarchy_ch_cb), f);
702 }
703 return FALSE;
704 }
705
706 #endif /* USE_GTK_TOOLTIP */
707
708 /* Prepare a tooltip to be shown, i.e. calculate WIDTH and HEIGHT.
709 Return true if a system tooltip is available. */
710
711 bool
712 xg_prepare_tooltip (struct frame *f,
713 Lisp_Object string,
714 int *width,
715 int *height)
716 {
717 #ifndef USE_GTK_TOOLTIP
718 return 0;
719 #else
720 struct x_output *x = f->output_data.x;
721 GtkWidget *widget;
722 GdkWindow *gwin;
723 GdkScreen *screen;
724 GtkSettings *settings;
725 gboolean tt_enabled = TRUE;
726 GtkRequisition req;
727 Lisp_Object encoded_string;
728
729 if (!x->ttip_lbl) return 0;
730
731 block_input ();
732 encoded_string = ENCODE_UTF_8 (string);
733 widget = GTK_WIDGET (x->ttip_lbl);
734 gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window));
735 screen = gdk_window_get_screen (gwin);
736 settings = gtk_settings_get_for_screen (screen);
737 g_object_get (settings, "gtk-enable-tooltips", &tt_enabled, NULL);
738 if (tt_enabled)
739 {
740 g_object_set (settings, "gtk-enable-tooltips", FALSE, NULL);
741 /* Record that we disabled it so it can be enabled again. */
742 g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt",
743 (gpointer)f);
744 }
745
746 /* Prevent Gtk+ from hiding tooltip on mouse move and such. */
747 g_object_set_data (G_OBJECT
748 (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))),
749 "gdk-display-current-tooltip", NULL);
750
751 /* Put our dummy widget in so we can get callbacks for unrealize and
752 hierarchy-changed. */
753 gtk_tooltip_set_custom (x->ttip_widget, widget);
754 gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string));
755 gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req);
756 if (width) *width = req.width;
757 if (height) *height = req.height;
758
759 unblock_input ();
760
761 return 1;
762 #endif /* USE_GTK_TOOLTIP */
763 }
764
765 /* Show the tooltip at ROOT_X and ROOT_Y.
766 xg_prepare_tooltip must have been called before this function. */
767
768 void
769 xg_show_tooltip (struct frame *f, int root_x, int root_y)
770 {
771 #ifdef USE_GTK_TOOLTIP
772 struct x_output *x = f->output_data.x;
773 if (x->ttip_window)
774 {
775 block_input ();
776 gtk_window_move (x->ttip_window, root_x, root_y);
777 gtk_widget_show_all (GTK_WIDGET (x->ttip_window));
778 unblock_input ();
779 }
780 #endif
781 }
782
783 /* Hide tooltip if shown. Do nothing if not shown.
784 Return true if tip was hidden, false if not (i.e. not using
785 system tooltips). */
786
787 bool
788 xg_hide_tooltip (struct frame *f)
789 {
790 bool ret = 0;
791 #ifdef USE_GTK_TOOLTIP
792 if (f->output_data.x->ttip_window)
793 {
794 GtkWindow *win = f->output_data.x->ttip_window;
795 block_input ();
796 gtk_widget_hide (GTK_WIDGET (win));
797
798 if (g_object_get_data (G_OBJECT (win), "restore-tt"))
799 {
800 GdkWindow *gwin = gtk_widget_get_window (GTK_WIDGET (win));
801 GdkScreen *screen = gdk_window_get_screen (gwin);
802 GtkSettings *settings = gtk_settings_get_for_screen (screen);
803 g_object_set (settings, "gtk-enable-tooltips", TRUE, NULL);
804 }
805 unblock_input ();
806
807 ret = 1;
808 }
809 #endif
810 return ret;
811 }
812
813 \f
814 /***********************************************************************
815 General functions for creating widgets, resizing, events, e.t.c.
816 ***********************************************************************/
817
818 static void
819 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
820 const gchar *msg, gpointer user_data)
821 {
822 if (!strstr (msg, "visible children"))
823 fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
824 }
825
826 /* Make a geometry string and pass that to GTK. It seems this is the
827 only way to get geometry position right if the user explicitly
828 asked for a position when starting Emacs.
829 F is the frame we shall set geometry for. */
830
831 static void
832 xg_set_geometry (struct frame *f)
833 {
834 if (f->size_hint_flags & (USPosition | PPosition))
835 {
836 int left = f->left_pos;
837 int xneg = f->size_hint_flags & XNegative;
838 int top = f->top_pos;
839 int yneg = f->size_hint_flags & YNegative;
840 char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
841 guint id;
842
843 if (xneg)
844 left = -left;
845 if (yneg)
846 top = -top;
847
848 sprintf (geom_str, "=%dx%d%c%d%c%d",
849 FRAME_PIXEL_WIDTH (f),
850 FRAME_PIXEL_HEIGHT (f),
851 (xneg ? '-' : '+'), left,
852 (yneg ? '-' : '+'), top);
853
854 /* Silence warning about visible children. */
855 id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
856 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
857
858 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
859 geom_str))
860 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
861
862 g_log_remove_handler ("Gtk", id);
863 }
864 }
865
866 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
867 and use a GtkFixed widget, this doesn't happen automatically. */
868
869 static void
870 xg_clear_under_internal_border (struct frame *f)
871 {
872 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
873 {
874 GtkWidget *wfixed = f->output_data.x->edit_widget;
875 gtk_widget_queue_draw (wfixed);
876 gdk_window_process_all_updates ();
877 x_clear_area (FRAME_X_DISPLAY (f),
878 FRAME_X_WINDOW (f),
879 0, 0,
880 FRAME_PIXEL_WIDTH (f),
881 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
882 x_clear_area (FRAME_X_DISPLAY (f),
883 FRAME_X_WINDOW (f),
884 0, 0,
885 FRAME_INTERNAL_BORDER_WIDTH (f),
886 FRAME_PIXEL_HEIGHT (f), 0);
887 x_clear_area (FRAME_X_DISPLAY (f),
888 FRAME_X_WINDOW (f),
889 0, FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
890 FRAME_PIXEL_WIDTH (f),
891 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
892 x_clear_area (FRAME_X_DISPLAY (f),
893 FRAME_X_WINDOW (f),
894 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
895 0,
896 FRAME_INTERNAL_BORDER_WIDTH (f),
897 FRAME_PIXEL_HEIGHT (f), 0);
898 }
899 }
900
901 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
902 and a Gtk+ menu bar, we get resize events for the edit part of the
903 frame only. We let Gtk+ deal with the Gtk+ parts.
904 F is the frame to resize.
905 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
906
907 void
908 xg_frame_resized (struct frame *f, int pixelwidth, int pixelheight)
909 {
910 int rows, columns;
911
912 if (pixelwidth == -1 && pixelheight == -1)
913 {
914 if (FRAME_GTK_WIDGET (f) && gtk_widget_get_mapped (FRAME_GTK_WIDGET (f)))
915 gdk_window_get_geometry (gtk_widget_get_window (FRAME_GTK_WIDGET (f)),
916 0, 0,
917 &pixelwidth, &pixelheight);
918 else return;
919 }
920
921
922 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelheight);
923 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pixelwidth);
924
925 if (columns != FRAME_COLS (f)
926 || rows != FRAME_LINES (f)
927 || pixelwidth != FRAME_PIXEL_WIDTH (f)
928 || pixelheight != FRAME_PIXEL_HEIGHT (f))
929 {
930 FRAME_PIXEL_WIDTH (f) = pixelwidth;
931 FRAME_PIXEL_HEIGHT (f) = pixelheight;
932
933 xg_clear_under_internal_border (f);
934 change_frame_size (f, rows, columns, 0, 1, 0);
935 SET_FRAME_GARBAGED (f);
936 cancel_mouse_face (f);
937 }
938 }
939
940 /* Resize the outer window of frame F after changing the height.
941 COLUMNS/ROWS is the size the edit area shall have after the resize. */
942
943 void
944 xg_frame_set_char_size (struct frame *f, int cols, int rows)
945 {
946 int pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
947 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
948 int pixelwidth;
949
950 if (FRAME_PIXEL_HEIGHT (f) == 0)
951 return;
952
953 /* Take into account the size of the scroll bar. Always use the
954 number of columns occupied by the scroll bar here otherwise we
955 might end up with a frame width that is not a multiple of the
956 frame's character width which is bad for vertically split
957 windows. */
958 f->scroll_bar_actual_width
959 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
960
961 compute_fringe_widths (f, 0);
962
963 /* FRAME_TEXT_COLS_TO_PIXEL_WIDTH uses scroll_bar_actual_width, so call it
964 after calculating that value. */
965 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols)
966 + FRAME_TOOLBAR_WIDTH (f);
967
968
969 /* Do this before resize, as we don't know yet if we will be resized. */
970 xg_clear_under_internal_border (f);
971
972 /* Must resize our top level widget. Font size may have changed,
973 but not rows/cols. */
974 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
975 pixelwidth, pixelheight);
976 x_wm_set_size_hint (f, 0, 0);
977
978 SET_FRAME_GARBAGED (f);
979 cancel_mouse_face (f);
980
981 /* We can not call change_frame_size for a mapped frame,
982 we can not set pixel width/height either. The window manager may
983 override our resize request, XMonad does this all the time.
984 The best we can do is try to sync, so lisp code sees the updated
985 size as fast as possible.
986 For unmapped windows, we can set rows/cols. When
987 the frame is mapped again we will (hopefully) get the correct size. */
988 if (FRAME_VISIBLE_P (f))
989 {
990 /* Must call this to flush out events */
991 (void)gtk_events_pending ();
992 gdk_flush ();
993 x_wait_for_event (f, ConfigureNotify);
994 }
995 else
996 {
997 change_frame_size (f, rows, cols, 0, 1, 0);
998 FRAME_PIXEL_WIDTH (f) = pixelwidth;
999 FRAME_PIXEL_HEIGHT (f) = pixelheight;
1000 }
1001 }
1002
1003 /* Handle height/width changes (i.e. add/remove/move menu/toolbar).
1004 The policy is to keep the number of editable lines. */
1005
1006 static void
1007 xg_height_or_width_changed (struct frame *f)
1008 {
1009 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1010 FRAME_TOTAL_PIXEL_WIDTH (f),
1011 FRAME_TOTAL_PIXEL_HEIGHT (f));
1012 f->output_data.x->hint_flags = 0;
1013 x_wm_set_size_hint (f, 0, 0);
1014 }
1015
1016 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
1017 Must be done like this, because GtkWidget:s can have "hidden"
1018 X Window that aren't accessible.
1019
1020 Return 0 if no widget match WDESC. */
1021
1022 GtkWidget *
1023 xg_win_to_widget (Display *dpy, Window wdesc)
1024 {
1025 gpointer gdkwin;
1026 GtkWidget *gwdesc = 0;
1027
1028 block_input ();
1029
1030 gdkwin = gdk_x11_window_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
1031 wdesc);
1032 if (gdkwin)
1033 {
1034 GdkEvent event;
1035 event.any.window = gdkwin;
1036 event.any.type = GDK_NOTHING;
1037 gwdesc = gtk_get_event_widget (&event);
1038 }
1039
1040 unblock_input ();
1041 return gwdesc;
1042 }
1043
1044 /* Set the background of widget W to PIXEL. */
1045
1046 static void
1047 xg_set_widget_bg (struct frame *f, GtkWidget *w, long unsigned int pixel)
1048 {
1049 #ifdef HAVE_GTK3
1050 GdkRGBA bg;
1051 XColor xbg;
1052 xbg.pixel = pixel;
1053 if (XQueryColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &xbg))
1054 {
1055 bg.red = (double)xbg.red/65535.0;
1056 bg.green = (double)xbg.green/65535.0;
1057 bg.blue = (double)xbg.blue/65535.0;
1058 bg.alpha = 1.0;
1059 gtk_widget_override_background_color (w, GTK_STATE_FLAG_NORMAL, &bg);
1060 }
1061 #else
1062 GdkColor bg;
1063 GdkColormap *map = gtk_widget_get_colormap (w);
1064 gdk_colormap_query_color (map, pixel, &bg);
1065 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &bg);
1066 #endif
1067 }
1068
1069 /* Callback called when the gtk theme changes.
1070 We notify lisp code so it can fix faces used for region for example. */
1071
1072 static void
1073 style_changed_cb (GObject *go,
1074 GParamSpec *spec,
1075 gpointer user_data)
1076 {
1077 struct input_event event;
1078 GdkDisplay *gdpy = user_data;
1079 const char *display_name = gdk_display_get_name (gdpy);
1080 Display *dpy = GDK_DISPLAY_XDISPLAY (gdpy);
1081
1082 EVENT_INIT (event);
1083 event.kind = CONFIG_CHANGED_EVENT;
1084 event.frame_or_window = build_string (display_name);
1085 /* Theme doesn't change often, so intern is called seldom. */
1086 event.arg = intern ("theme-name");
1087 kbd_buffer_store_event (&event);
1088
1089 update_theme_scrollbar_width ();
1090
1091 /* If scroll bar width changed, we need set the new size on all frames
1092 on this display. */
1093 if (dpy)
1094 {
1095 Lisp_Object rest, frame;
1096 FOR_EACH_FRAME (rest, frame)
1097 {
1098 struct frame *f = XFRAME (frame);
1099 if (FRAME_LIVE_P (f)
1100 && FRAME_X_P (f)
1101 && FRAME_X_DISPLAY (f) == dpy)
1102 {
1103 x_set_scroll_bar_default_width (f);
1104 xg_frame_set_char_size (f, FRAME_COLS (f), FRAME_LINES (f));
1105 }
1106 }
1107 }
1108 }
1109
1110 /* Called when a delete-event occurs on WIDGET. */
1111
1112 static gboolean
1113 delete_cb (GtkWidget *widget,
1114 GdkEvent *event,
1115 gpointer user_data)
1116 {
1117 #ifdef HAVE_GTK3
1118 /* The event doesn't arrive in the normal event loop. Send event
1119 here. */
1120 struct frame *f = user_data;
1121 struct input_event ie;
1122
1123 EVENT_INIT (ie);
1124 ie.kind = DELETE_WINDOW_EVENT;
1125 XSETFRAME (ie.frame_or_window, f);
1126 kbd_buffer_store_event (&ie);
1127 #endif
1128
1129 return TRUE;
1130 }
1131
1132 /* Create and set up the GTK widgets for frame F.
1133 Return true if creation succeeded. */
1134
1135 bool
1136 xg_create_frame_widgets (struct frame *f)
1137 {
1138 GtkWidget *wtop;
1139 GtkWidget *wvbox, *whbox;
1140 GtkWidget *wfixed;
1141 #ifndef HAVE_GTK3
1142 GtkRcStyle *style;
1143 #endif
1144 char *title = 0;
1145
1146 block_input ();
1147
1148 if (FRAME_X_EMBEDDED_P (f))
1149 {
1150 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1151 wtop = gtk_plug_new_for_display (gdpy, f->output_data.x->parent_desc);
1152 }
1153 else
1154 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1155
1156 /* gtk_window_set_has_resize_grip is a Gtk+ 3.0 function but Ubuntu
1157 has backported it to Gtk+ 2.0 and they add the resize grip for
1158 Gtk+ 2.0 applications also. But it has a bug that makes Emacs loop
1159 forever, so disable the grip. */
1160 #if (! GTK_CHECK_VERSION (3, 0, 0) \
1161 && defined HAVE_GTK_WINDOW_SET_HAS_RESIZE_GRIP)
1162 gtk_window_set_has_resize_grip (GTK_WINDOW (wtop), FALSE);
1163 #endif
1164
1165 xg_set_screen (wtop, f);
1166
1167 wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1168 whbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1169 gtk_box_set_homogeneous (GTK_BOX (wvbox), FALSE);
1170 gtk_box_set_homogeneous (GTK_BOX (whbox), FALSE);
1171
1172 #ifdef HAVE_GTK3
1173 wfixed = emacs_fixed_new (f);
1174 #else
1175 wfixed = gtk_fixed_new ();
1176 #endif
1177
1178 if (! wtop || ! wvbox || ! whbox || ! wfixed)
1179 {
1180 if (wtop) gtk_widget_destroy (wtop);
1181 if (wvbox) gtk_widget_destroy (wvbox);
1182 if (whbox) gtk_widget_destroy (whbox);
1183 if (wfixed) gtk_widget_destroy (wfixed);
1184
1185 unblock_input ();
1186 return 0;
1187 }
1188
1189 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
1190 gtk_widget_set_name (wtop, EMACS_CLASS);
1191 gtk_widget_set_name (wvbox, "pane");
1192 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
1193
1194 /* If this frame has a title or name, set it in the title bar. */
1195 if (! NILP (f->title))
1196 title = SSDATA (ENCODE_UTF_8 (f->title));
1197 else if (! NILP (f->name))
1198 title = SSDATA (ENCODE_UTF_8 (f->name));
1199
1200 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
1201
1202 FRAME_GTK_OUTER_WIDGET (f) = wtop;
1203 FRAME_GTK_WIDGET (f) = wfixed;
1204 f->output_data.x->vbox_widget = wvbox;
1205 f->output_data.x->hbox_widget = whbox;
1206
1207 gtk_widget_set_has_window (wfixed, TRUE);
1208
1209 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
1210 gtk_box_pack_start (GTK_BOX (wvbox), whbox, TRUE, TRUE, 0);
1211 gtk_box_pack_start (GTK_BOX (whbox), wfixed, TRUE, TRUE, 0);
1212
1213 if (FRAME_EXTERNAL_TOOL_BAR (f))
1214 update_frame_tool_bar (f);
1215
1216 /* We don't want this widget double buffered, because we draw on it
1217 with regular X drawing primitives, so from a GTK/GDK point of
1218 view, the widget is totally blank. When an expose comes, this
1219 will make the widget blank, and then Emacs redraws it. This flickers
1220 a lot, so we turn off double buffering. */
1221 gtk_widget_set_double_buffered (wfixed, FALSE);
1222
1223 gtk_window_set_wmclass (GTK_WINDOW (wtop),
1224 SSDATA (Vx_resource_name),
1225 SSDATA (Vx_resource_class));
1226
1227 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
1228 GTK is to destroy the widget. We want Emacs to do that instead. */
1229 g_signal_connect (G_OBJECT (wtop), "delete-event",
1230 G_CALLBACK (delete_cb), f);
1231
1232 /* Convert our geometry parameters into a geometry string
1233 and specify it.
1234 GTK will itself handle calculating the real position this way. */
1235 xg_set_geometry (f);
1236 f->win_gravity
1237 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1238
1239 gtk_widget_add_events (wfixed,
1240 GDK_POINTER_MOTION_MASK
1241 | GDK_EXPOSURE_MASK
1242 | GDK_BUTTON_PRESS_MASK
1243 | GDK_BUTTON_RELEASE_MASK
1244 | GDK_KEY_PRESS_MASK
1245 | GDK_ENTER_NOTIFY_MASK
1246 | GDK_LEAVE_NOTIFY_MASK
1247 | GDK_FOCUS_CHANGE_MASK
1248 | GDK_STRUCTURE_MASK
1249 | GDK_VISIBILITY_NOTIFY_MASK);
1250
1251 /* Must realize the windows so the X window gets created. It is used
1252 by callers of this function. */
1253 gtk_widget_realize (wfixed);
1254 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
1255
1256 /* Since GTK clears its window by filling with the background color,
1257 we must keep X and GTK background in sync. */
1258 xg_set_widget_bg (f, wfixed, FRAME_BACKGROUND_PIXEL (f));
1259
1260 #ifndef HAVE_GTK3
1261 /* Also, do not let any background pixmap to be set, this looks very
1262 bad as Emacs overwrites the background pixmap with its own idea
1263 of background color. */
1264 style = gtk_widget_get_modifier_style (wfixed);
1265
1266 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
1267 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
1268 gtk_widget_modify_style (wfixed, style);
1269 #else
1270 gtk_widget_set_can_focus (wfixed, TRUE);
1271 gtk_window_set_resizable (GTK_WINDOW (wtop), TRUE);
1272 #endif
1273
1274 #ifdef USE_GTK_TOOLTIP
1275 /* Steal a tool tip window we can move ourselves. */
1276 f->output_data.x->ttip_widget = 0;
1277 f->output_data.x->ttip_lbl = 0;
1278 f->output_data.x->ttip_window = 0;
1279 gtk_widget_set_tooltip_text (wtop, "Dummy text");
1280 g_signal_connect (wtop, "query-tooltip", G_CALLBACK (qttip_cb), f);
1281 #endif
1282
1283 {
1284 GdkScreen *screen = gtk_widget_get_screen (wtop);
1285 GtkSettings *gs = gtk_settings_get_for_screen (screen);
1286 /* Only connect this signal once per screen. */
1287 if (! g_signal_handler_find (G_OBJECT (gs),
1288 G_SIGNAL_MATCH_FUNC,
1289 0, 0, 0,
1290 G_CALLBACK (style_changed_cb),
1291 0))
1292 {
1293 g_signal_connect (G_OBJECT (gs), "notify::gtk-theme-name",
1294 G_CALLBACK (style_changed_cb),
1295 gdk_screen_get_display (screen));
1296 }
1297 }
1298
1299 unblock_input ();
1300
1301 return 1;
1302 }
1303
1304 void
1305 xg_free_frame_widgets (struct frame *f)
1306 {
1307 if (FRAME_GTK_OUTER_WIDGET (f))
1308 {
1309 #ifdef USE_GTK_TOOLTIP
1310 struct x_output *x = f->output_data.x;
1311 #endif
1312 struct xg_frame_tb_info *tbinfo
1313 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
1314 TB_INFO_KEY);
1315 if (tbinfo)
1316 xfree (tbinfo);
1317
1318 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
1319 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow in xterm.c */
1320 FRAME_GTK_OUTER_WIDGET (f) = 0;
1321 #ifdef USE_GTK_TOOLTIP
1322 if (x->ttip_lbl)
1323 gtk_widget_destroy (x->ttip_lbl);
1324 if (x->ttip_widget)
1325 g_object_unref (G_OBJECT (x->ttip_widget));
1326 #endif
1327 }
1328 }
1329
1330 /* Set the normal size hints for the window manager, for frame F.
1331 FLAGS is the flags word to use--or 0 meaning preserve the flags
1332 that the window now has.
1333 If USER_POSITION, set the User Position
1334 flag (this is useful when FLAGS is 0). */
1335
1336 void
1337 x_wm_set_size_hint (struct frame *f, long int flags, bool user_position)
1338 {
1339 /* Must use GTK routines here, otherwise GTK resets the size hints
1340 to its own defaults. */
1341 GdkGeometry size_hints;
1342 gint hint_flags = 0;
1343 int base_width, base_height;
1344 int min_rows = 0, min_cols = 0;
1345 int win_gravity = f->win_gravity;
1346 Lisp_Object fs_state, frame;
1347
1348 /* Don't set size hints during initialization; that apparently leads
1349 to a race condition. See the thread at
1350 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
1351 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
1352 return;
1353
1354 XSETFRAME (frame, f);
1355 fs_state = Fframe_parameter (frame, Qfullscreen);
1356 if (EQ (fs_state, Qmaximized) || EQ (fs_state, Qfullboth))
1357 {
1358 /* Don't set hints when maximized or fullscreen. Apparently KWin and
1359 Gtk3 don't get along and the frame shrinks (!).
1360 */
1361 return;
1362 }
1363
1364 if (flags)
1365 {
1366 memset (&size_hints, 0, sizeof (size_hints));
1367 f->output_data.x->size_hints = size_hints;
1368 f->output_data.x->hint_flags = hint_flags;
1369 }
1370 else
1371 flags = f->size_hint_flags;
1372
1373 size_hints = f->output_data.x->size_hints;
1374 hint_flags = f->output_data.x->hint_flags;
1375
1376 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
1377 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
1378 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
1379
1380 hint_flags |= GDK_HINT_BASE_SIZE;
1381 /* Use one row/col here so base_height/width does not become zero.
1382 Gtk+ and/or Unity on Ubuntu 12.04 can't handle it. */
1383 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 1) + FRAME_TOOLBAR_WIDTH (f);
1384 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 1)
1385 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
1386
1387 check_frame_size (f, &min_rows, &min_cols);
1388 if (min_cols > 0) --min_cols; /* We used one col in base_width = ... 1); */
1389 if (min_rows > 0) --min_rows; /* We used one row in base_height = ... 1); */
1390
1391 size_hints.base_width = base_width;
1392 size_hints.base_height = base_height;
1393 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
1394 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
1395
1396 /* These currently have a one to one mapping with the X values, but I
1397 don't think we should rely on that. */
1398 hint_flags |= GDK_HINT_WIN_GRAVITY;
1399 size_hints.win_gravity = 0;
1400 if (win_gravity == NorthWestGravity)
1401 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
1402 else if (win_gravity == NorthGravity)
1403 size_hints.win_gravity = GDK_GRAVITY_NORTH;
1404 else if (win_gravity == NorthEastGravity)
1405 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
1406 else if (win_gravity == WestGravity)
1407 size_hints.win_gravity = GDK_GRAVITY_WEST;
1408 else if (win_gravity == CenterGravity)
1409 size_hints.win_gravity = GDK_GRAVITY_CENTER;
1410 else if (win_gravity == EastGravity)
1411 size_hints.win_gravity = GDK_GRAVITY_EAST;
1412 else if (win_gravity == SouthWestGravity)
1413 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
1414 else if (win_gravity == SouthGravity)
1415 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
1416 else if (win_gravity == SouthEastGravity)
1417 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
1418 else if (win_gravity == StaticGravity)
1419 size_hints.win_gravity = GDK_GRAVITY_STATIC;
1420
1421 if (user_position)
1422 {
1423 hint_flags &= ~GDK_HINT_POS;
1424 hint_flags |= GDK_HINT_USER_POS;
1425 }
1426
1427 if (hint_flags != f->output_data.x->hint_flags
1428 || memcmp (&size_hints,
1429 &f->output_data.x->size_hints,
1430 sizeof (size_hints)) != 0)
1431 {
1432 block_input ();
1433 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1434 NULL, &size_hints, hint_flags);
1435 f->output_data.x->size_hints = size_hints;
1436 f->output_data.x->hint_flags = hint_flags;
1437 unblock_input ();
1438 }
1439 }
1440
1441 /* Change background color of a frame.
1442 Since GTK uses the background color to clear the window, we must
1443 keep the GTK and X colors in sync.
1444 F is the frame to change,
1445 BG is the pixel value to change to. */
1446
1447 void
1448 xg_set_background_color (struct frame *f, long unsigned int bg)
1449 {
1450 if (FRAME_GTK_WIDGET (f))
1451 {
1452 block_input ();
1453 xg_set_widget_bg (f, FRAME_GTK_WIDGET (f), FRAME_BACKGROUND_PIXEL (f));
1454 unblock_input ();
1455 }
1456 }
1457
1458
1459 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1460 functions so GTK does not overwrite the icon. */
1461
1462 void
1463 xg_set_frame_icon (struct frame *f, Pixmap icon_pixmap, Pixmap icon_mask)
1464 {
1465 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (f,
1466 icon_pixmap,
1467 icon_mask);
1468 if (gp)
1469 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1470 }
1471
1472
1473 \f
1474 /***********************************************************************
1475 Dialog functions
1476 ***********************************************************************/
1477 /* Return the dialog title to use for a dialog of type KEY.
1478 This is the encoding used by lwlib. We use the same for GTK. */
1479
1480 static const char *
1481 get_dialog_title (char key)
1482 {
1483 const char *title = "";
1484
1485 switch (key) {
1486 case 'E': case 'e':
1487 title = "Error";
1488 break;
1489
1490 case 'I': case 'i':
1491 title = "Information";
1492 break;
1493
1494 case 'L': case 'l':
1495 title = "Prompt";
1496 break;
1497
1498 case 'P': case 'p':
1499 title = "Prompt";
1500 break;
1501
1502 case 'Q': case 'q':
1503 title = "Question";
1504 break;
1505 }
1506
1507 return title;
1508 }
1509
1510 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1511 the dialog, but return TRUE so the event does not propagate further
1512 in GTK. This prevents GTK from destroying the dialog widget automatically
1513 and we can always destroy the widget manually, regardless of how
1514 it was popped down (button press or WM_DELETE_WINDOW).
1515 W is the dialog widget.
1516 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1517 user_data is NULL (not used).
1518
1519 Returns TRUE to end propagation of event. */
1520
1521 static gboolean
1522 dialog_delete_callback (GtkWidget *w, GdkEvent *event, gpointer user_data)
1523 {
1524 gtk_widget_unmap (w);
1525 return TRUE;
1526 }
1527
1528 /* Create a popup dialog window. See also xg_create_widget below.
1529 WV is a widget_value describing the dialog.
1530 SELECT_CB is the callback to use when a button has been pressed.
1531 DEACTIVATE_CB is the callback to use when the dialog pops down.
1532
1533 Returns the GTK dialog widget. */
1534
1535 static GtkWidget *
1536 create_dialog (widget_value *wv,
1537 GCallback select_cb,
1538 GCallback deactivate_cb)
1539 {
1540 const char *title = get_dialog_title (wv->name[0]);
1541 int total_buttons = wv->name[1] - '0';
1542 int right_buttons = wv->name[4] - '0';
1543 int left_buttons;
1544 int button_nr = 0;
1545 int button_spacing = 10;
1546 GtkWidget *wdialog = gtk_dialog_new ();
1547 GtkDialog *wd = GTK_DIALOG (wdialog);
1548 GtkBox *cur_box = GTK_BOX (gtk_dialog_get_action_area (wd));
1549 widget_value *item;
1550 GtkWidget *whbox_down;
1551
1552 /* If the number of buttons is greater than 4, make two rows of buttons
1553 instead. This looks better. */
1554 bool make_two_rows = total_buttons > 4;
1555
1556 if (right_buttons == 0) right_buttons = total_buttons/2;
1557 left_buttons = total_buttons - right_buttons;
1558
1559 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1560 gtk_widget_set_name (wdialog, "emacs-dialog");
1561
1562
1563 if (make_two_rows)
1564 {
1565 GtkWidget *wvbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, button_spacing);
1566 GtkWidget *whbox_up = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1567 gtk_box_set_homogeneous (GTK_BOX (wvbox), TRUE);
1568 gtk_box_set_homogeneous (GTK_BOX (whbox_up), FALSE);
1569 whbox_down = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
1570 gtk_box_set_homogeneous (GTK_BOX (whbox_down), FALSE);
1571
1572 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1573 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1574 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1575
1576 cur_box = GTK_BOX (whbox_up);
1577 }
1578
1579 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1580 G_CALLBACK (dialog_delete_callback), 0);
1581
1582 if (deactivate_cb)
1583 {
1584 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1585 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1586 }
1587
1588 for (item = wv->contents; item; item = item->next)
1589 {
1590 char *utf8_label = get_utf8_string (item->value);
1591 GtkWidget *w;
1592 GtkRequisition req;
1593
1594 if (item->name && strcmp (item->name, "message") == 0)
1595 {
1596 GtkBox *wvbox = GTK_BOX (gtk_dialog_get_content_area (wd));
1597 /* This is the text part of the dialog. */
1598 w = gtk_label_new (utf8_label);
1599 gtk_box_pack_start (wvbox, gtk_label_new (""), FALSE, FALSE, 0);
1600 gtk_box_pack_start (wvbox, w, TRUE, TRUE, 0);
1601 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1602
1603 /* Try to make dialog look better. Must realize first so
1604 the widget can calculate the size it needs. */
1605 gtk_widget_realize (w);
1606 gtk_widget_get_preferred_size (w, NULL, &req);
1607 gtk_box_set_spacing (wvbox, req.height);
1608 if (item->value && strlen (item->value) > 0)
1609 button_spacing = 2*req.width/strlen (item->value);
1610 }
1611 else
1612 {
1613 /* This is one button to add to the dialog. */
1614 w = gtk_button_new_with_label (utf8_label);
1615 if (! item->enabled)
1616 gtk_widget_set_sensitive (w, FALSE);
1617 if (select_cb)
1618 g_signal_connect (G_OBJECT (w), "clicked",
1619 select_cb, item->call_data);
1620
1621 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1622 if (++button_nr == left_buttons)
1623 {
1624 if (make_two_rows)
1625 cur_box = GTK_BOX (whbox_down);
1626 else
1627 gtk_box_pack_start (cur_box,
1628 gtk_label_new (""),
1629 TRUE, TRUE,
1630 button_spacing);
1631 }
1632 }
1633
1634 if (utf8_label)
1635 g_free (utf8_label);
1636 }
1637
1638 return wdialog;
1639 }
1640
1641 struct xg_dialog_data
1642 {
1643 GMainLoop *loop;
1644 int response;
1645 GtkWidget *w;
1646 guint timerid;
1647 };
1648
1649 /* Function that is called when the file or font dialogs pop down.
1650 W is the dialog widget, RESPONSE is the response code.
1651 USER_DATA is what we passed in to g_signal_connect. */
1652
1653 static void
1654 xg_dialog_response_cb (GtkDialog *w,
1655 gint response,
1656 gpointer user_data)
1657 {
1658 struct xg_dialog_data *dd = user_data;
1659 dd->response = response;
1660 g_main_loop_quit (dd->loop);
1661 }
1662
1663
1664 /* Destroy the dialog. This makes it pop down. */
1665
1666 static void
1667 pop_down_dialog (void *arg)
1668 {
1669 struct xg_dialog_data *dd = arg;
1670
1671 block_input ();
1672 if (dd->w) gtk_widget_destroy (dd->w);
1673 if (dd->timerid != 0) g_source_remove (dd->timerid);
1674
1675 g_main_loop_quit (dd->loop);
1676 g_main_loop_unref (dd->loop);
1677
1678 unblock_input ();
1679 }
1680
1681 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1682 We pass in DATA as gpointer* so we can use this as a callback. */
1683
1684 static gboolean
1685 xg_maybe_add_timer (gpointer data)
1686 {
1687 struct xg_dialog_data *dd = data;
1688 EMACS_TIME next_time = timer_check ();
1689
1690 dd->timerid = 0;
1691
1692 if (EMACS_TIME_VALID_P (next_time))
1693 {
1694 time_t s = EMACS_SECS (next_time);
1695 int per_ms = EMACS_TIME_RESOLUTION / 1000;
1696 int ms = (EMACS_NSECS (next_time) + per_ms - 1) / per_ms;
1697 if (s <= ((guint) -1 - ms) / 1000)
1698 dd->timerid = g_timeout_add (s * 1000 + ms, xg_maybe_add_timer, dd);
1699 }
1700 return FALSE;
1701 }
1702
1703
1704 /* Pops up a modal dialog W and waits for response.
1705 We don't use gtk_dialog_run because we want to process emacs timers.
1706 The dialog W is not destroyed when this function returns. */
1707
1708 static int
1709 xg_dialog_run (struct frame *f, GtkWidget *w)
1710 {
1711 ptrdiff_t count = SPECPDL_INDEX ();
1712 struct xg_dialog_data dd;
1713
1714 xg_set_screen (w, f);
1715 gtk_window_set_transient_for (GTK_WINDOW (w),
1716 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1717 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1718 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1719
1720 dd.loop = g_main_loop_new (NULL, FALSE);
1721 dd.response = GTK_RESPONSE_CANCEL;
1722 dd.w = w;
1723 dd.timerid = 0;
1724
1725 g_signal_connect (G_OBJECT (w),
1726 "response",
1727 G_CALLBACK (xg_dialog_response_cb),
1728 &dd);
1729 /* Don't destroy the widget if closed by the window manager close button. */
1730 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1731 gtk_widget_show (w);
1732
1733 record_unwind_protect_ptr (pop_down_dialog, &dd);
1734
1735 (void) xg_maybe_add_timer (&dd);
1736 g_main_loop_run (dd.loop);
1737
1738 dd.w = 0;
1739 unbind_to (count, Qnil);
1740
1741 return dd.response;
1742 }
1743
1744 \f
1745 /***********************************************************************
1746 File dialog functions
1747 ***********************************************************************/
1748 /* Return true if the old file selection dialog is being used. */
1749
1750 bool
1751 xg_uses_old_file_dialog (void)
1752 {
1753 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1754 return x_gtk_use_old_file_dialog;
1755 #else
1756 return 0;
1757 #endif
1758 }
1759
1760
1761 typedef char * (*xg_get_file_func) (GtkWidget *);
1762
1763 /* Return the selected file for file chooser dialog W.
1764 The returned string must be free:d. */
1765
1766 static char *
1767 xg_get_file_name_from_chooser (GtkWidget *w)
1768 {
1769 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1770 }
1771
1772 /* Callback called when the "Show hidden files" toggle is pressed.
1773 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1774
1775 static void
1776 xg_toggle_visibility_cb (GtkWidget *widget, gpointer data)
1777 {
1778 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1779 gboolean visible;
1780 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1781 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1782 }
1783
1784
1785 /* Callback called when a property changes in a file chooser.
1786 GOBJECT is the file chooser dialog, ARG1 describes the property.
1787 USER_DATA is the toggle widget in the file chooser dialog.
1788 We use this to update the "Show hidden files" toggle when the user
1789 changes that property by right clicking in the file list. */
1790
1791 static void
1792 xg_toggle_notify_cb (GObject *gobject, GParamSpec *arg1, gpointer user_data)
1793 {
1794 if (strcmp (arg1->name, "show-hidden") == 0)
1795 {
1796 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1797 gboolean visible, toggle_on;
1798
1799 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1800 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1801
1802 if (!!visible != !!toggle_on)
1803 {
1804 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1805 G_CALLBACK (xg_toggle_visibility_cb),
1806 gobject);
1807 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1808 g_signal_handlers_unblock_by_func
1809 (G_OBJECT (wtoggle),
1810 G_CALLBACK (xg_toggle_visibility_cb),
1811 gobject);
1812 }
1813 x_gtk_show_hidden_files = visible;
1814 }
1815 }
1816
1817 /* Read a file name from the user using a file chooser dialog.
1818 F is the current frame.
1819 PROMPT is a prompt to show to the user. May not be NULL.
1820 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1821 If MUSTMATCH_P, the returned file name must be an existing
1822 file. (Actually, this only has cosmetic effects, the user can
1823 still enter a non-existing file.) *FUNC is set to a function that
1824 can be used to retrieve the selected file name from the returned widget.
1825
1826 Returns the created widget. */
1827
1828 static GtkWidget *
1829 xg_get_file_with_chooser (struct frame *f,
1830 char *prompt,
1831 char *default_filename,
1832 bool mustmatch_p, bool only_dir_p,
1833 xg_get_file_func *func)
1834 {
1835 char msgbuf[1024];
1836
1837 GtkWidget *filewin, *wtoggle, *wbox, *wmessage IF_LINT (= NULL);
1838 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1839 GtkFileChooserAction action = (mustmatch_p ?
1840 GTK_FILE_CHOOSER_ACTION_OPEN :
1841 GTK_FILE_CHOOSER_ACTION_SAVE);
1842
1843 if (only_dir_p)
1844 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1845
1846 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1847 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1848 (mustmatch_p || only_dir_p ?
1849 GTK_STOCK_OPEN : GTK_STOCK_OK),
1850 GTK_RESPONSE_OK,
1851 NULL);
1852 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1853
1854 wbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
1855 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
1856 gtk_widget_show (wbox);
1857 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1858
1859 if (x_gtk_show_hidden_files)
1860 {
1861 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1862 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1863 }
1864 gtk_widget_show (wtoggle);
1865 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1866 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1867 g_signal_connect (G_OBJECT (filewin), "notify",
1868 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1869
1870 if (x_gtk_file_dialog_help_text)
1871 {
1872 msgbuf[0] = '\0';
1873 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1874 Show the C-l help text only for versions < 2.10. */
1875 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1876 strcat (msgbuf, "\nType C-l to display a file name text entry box.\n");
1877 strcat (msgbuf, "\nIf you don't like this file selector, use the "
1878 "corresponding\nkey binding or customize "
1879 "use-file-dialog to turn it off.");
1880
1881 wmessage = gtk_label_new (msgbuf);
1882 gtk_widget_show (wmessage);
1883 }
1884
1885 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1886 if (x_gtk_file_dialog_help_text)
1887 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1888 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1889
1890 if (default_filename)
1891 {
1892 Lisp_Object file;
1893 struct gcpro gcpro1;
1894 char *utf8_filename;
1895 GCPRO1 (file);
1896
1897 file = build_string (default_filename);
1898
1899 /* File chooser does not understand ~/... in the file name. It must be
1900 an absolute name starting with /. */
1901 if (default_filename[0] != '/')
1902 file = Fexpand_file_name (file, Qnil);
1903
1904 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1905 if (! NILP (Ffile_directory_p (file)))
1906 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1907 utf8_filename);
1908 else
1909 {
1910 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1911 utf8_filename);
1912 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1913 {
1914 char *cp = strrchr (utf8_filename, '/');
1915 if (cp) ++cp;
1916 else cp = utf8_filename;
1917 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1918 }
1919 }
1920
1921 UNGCPRO;
1922 }
1923
1924 *func = xg_get_file_name_from_chooser;
1925 return filewin;
1926 }
1927
1928 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1929
1930 /* Return the selected file for file selector dialog W.
1931 The returned string must be free:d. */
1932
1933 static char *
1934 xg_get_file_name_from_selector (GtkWidget *w)
1935 {
1936 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1937 return xstrdup (gtk_file_selection_get_filename (filesel));
1938 }
1939
1940 /* Create a file selection dialog.
1941 F is the current frame.
1942 PROMPT is a prompt to show to the user. May not be NULL.
1943 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1944 If MUSTMATCH_P, the returned file name must be an existing
1945 file. *FUNC is set to a function that can be used to retrieve the
1946 selected file name from the returned widget.
1947
1948 Returns the created widget. */
1949
1950 static GtkWidget *
1951 xg_get_file_with_selection (struct frame *f,
1952 char *prompt,
1953 char *default_filename,
1954 bool mustmatch_p, bool only_dir_p,
1955 xg_get_file_func *func)
1956 {
1957 GtkWidget *filewin;
1958 GtkFileSelection *filesel;
1959
1960 filewin = gtk_file_selection_new (prompt);
1961 filesel = GTK_FILE_SELECTION (filewin);
1962
1963 if (default_filename)
1964 gtk_file_selection_set_filename (filesel, default_filename);
1965
1966 if (mustmatch_p)
1967 {
1968 /* The selection_entry part of filesel is not documented. */
1969 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1970 gtk_file_selection_hide_fileop_buttons (filesel);
1971 }
1972
1973 *func = xg_get_file_name_from_selector;
1974
1975 return filewin;
1976 }
1977 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1978
1979 /* Read a file name from the user using a file dialog, either the old
1980 file selection dialog, or the new file chooser dialog. Which to use
1981 depends on what the GTK version used has, and what the value of
1982 gtk-use-old-file-dialog.
1983 F is the current frame.
1984 PROMPT is a prompt to show to the user. May not be NULL.
1985 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1986 If MUSTMATCH_P, the returned file name must be an existing
1987 file.
1988
1989 Returns a file name or NULL if no file was selected.
1990 The returned string must be freed by the caller. */
1991
1992 char *
1993 xg_get_file_name (struct frame *f,
1994 char *prompt,
1995 char *default_filename,
1996 bool mustmatch_p,
1997 bool only_dir_p)
1998 {
1999 GtkWidget *w = 0;
2000 char *fn = 0;
2001 int filesel_done = 0;
2002 xg_get_file_func func;
2003
2004 #ifdef HAVE_GTK_FILE_SELECTION_NEW
2005
2006 if (xg_uses_old_file_dialog ())
2007 w = xg_get_file_with_selection (f, prompt, default_filename,
2008 mustmatch_p, only_dir_p, &func);
2009 else
2010 w = xg_get_file_with_chooser (f, prompt, default_filename,
2011 mustmatch_p, only_dir_p, &func);
2012
2013 #else /* not HAVE_GTK_FILE_SELECTION_NEW */
2014 w = xg_get_file_with_chooser (f, prompt, default_filename,
2015 mustmatch_p, only_dir_p, &func);
2016 #endif /* not HAVE_GTK_FILE_SELECTION_NEW */
2017
2018 gtk_widget_set_name (w, "emacs-filedialog");
2019
2020 filesel_done = xg_dialog_run (f, w);
2021 if (filesel_done == GTK_RESPONSE_OK)
2022 fn = (*func) (w);
2023
2024 gtk_widget_destroy (w);
2025 return fn;
2026 }
2027
2028 /***********************************************************************
2029 GTK font chooser
2030 ***********************************************************************/
2031
2032 #ifdef HAVE_FREETYPE
2033
2034 #if USE_NEW_GTK_FONT_CHOOSER
2035
2036 #define XG_WEIGHT_TO_SYMBOL(w) \
2037 (w <= PANGO_WEIGHT_THIN ? Qextra_light \
2038 : w <= PANGO_WEIGHT_ULTRALIGHT ? Qlight \
2039 : w <= PANGO_WEIGHT_LIGHT ? Qsemi_light \
2040 : w < PANGO_WEIGHT_MEDIUM ? Qnormal \
2041 : w <= PANGO_WEIGHT_SEMIBOLD ? Qsemi_bold \
2042 : w <= PANGO_WEIGHT_BOLD ? Qbold \
2043 : w <= PANGO_WEIGHT_HEAVY ? Qextra_bold \
2044 : Qultra_bold)
2045
2046 #define XG_STYLE_TO_SYMBOL(s) \
2047 (s == PANGO_STYLE_OBLIQUE ? Qoblique \
2048 : s == PANGO_STYLE_ITALIC ? Qitalic \
2049 : Qnormal)
2050
2051 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2052
2053
2054 static char *x_last_font_name;
2055
2056 /* Pop up a GTK font selector and return the name of the font the user
2057 selects, as a C string. The returned font name follows GTK's own
2058 format:
2059
2060 `FAMILY [VALUE1 VALUE2] SIZE'
2061
2062 This can be parsed using font_parse_fcname in font.c.
2063 DEFAULT_NAME, if non-zero, is the default font name. */
2064
2065 Lisp_Object
2066 xg_get_font (struct frame *f, const char *default_name)
2067 {
2068 GtkWidget *w;
2069 int done = 0;
2070 Lisp_Object font = Qnil;
2071
2072 w = gtk_font_chooser_dialog_new
2073 ("Pick a font", GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2074
2075 if (default_name)
2076 {
2077 /* Convert fontconfig names to Gtk names, i.e. remove - before
2078 number */
2079 char *p = strrchr (default_name, '-');
2080 if (p)
2081 {
2082 char *ep = p+1;
2083 while (c_isdigit (*ep))
2084 ++ep;
2085 if (*ep == '\0') *p = ' ';
2086 }
2087 }
2088 else if (x_last_font_name)
2089 default_name = x_last_font_name;
2090
2091 if (default_name)
2092 gtk_font_chooser_set_font (GTK_FONT_CHOOSER (w), default_name);
2093
2094 gtk_widget_set_name (w, "emacs-fontdialog");
2095 done = xg_dialog_run (f, w);
2096 if (done == GTK_RESPONSE_OK)
2097 {
2098 #if USE_NEW_GTK_FONT_CHOOSER
2099 /* Use the GTK3 font chooser. */
2100 PangoFontDescription *desc
2101 = gtk_font_chooser_get_font_desc (GTK_FONT_CHOOSER (w));
2102
2103 if (desc)
2104 {
2105 Lisp_Object args[10];
2106 const char *name = pango_font_description_get_family (desc);
2107 gint size = pango_font_description_get_size (desc);
2108 PangoWeight weight = pango_font_description_get_weight (desc);
2109 PangoStyle style = pango_font_description_get_style (desc);
2110
2111 args[0] = QCname;
2112 args[1] = build_string (name);
2113
2114 args[2] = QCsize;
2115 args[3] = make_float (pango_units_to_double (size));
2116
2117 args[4] = QCweight;
2118 args[5] = XG_WEIGHT_TO_SYMBOL (weight);
2119
2120 args[6] = QCslant;
2121 args[7] = XG_STYLE_TO_SYMBOL (style);
2122
2123 args[8] = QCtype;
2124 args[9] = Qxft;
2125
2126 font = Ffont_spec (8, args);
2127
2128 pango_font_description_free (desc);
2129 xfree (x_last_font_name);
2130 x_last_font_name = xstrdup (name);
2131 }
2132
2133 #else /* Use old font selector, which just returns the font name. */
2134
2135 char *font_name
2136 = gtk_font_selection_dialog_get_font_name (GTK_FONT_CHOOSER (w));
2137
2138 if (font_name)
2139 {
2140 font = build_string (font_name);
2141 g_free (x_last_font_name);
2142 x_last_font_name = font_name;
2143 }
2144 #endif /* USE_NEW_GTK_FONT_CHOOSER */
2145 }
2146
2147 gtk_widget_destroy (w);
2148 return font;
2149 }
2150 #endif /* HAVE_FREETYPE */
2151
2152
2153 \f
2154 /***********************************************************************
2155 Menu functions.
2156 ***********************************************************************/
2157
2158 /* The name of menu items that can be used for customization. Since GTK
2159 RC files are very crude and primitive, we have to set this on all
2160 menu item names so a user can easily customize menu items. */
2161
2162 #define MENU_ITEM_NAME "emacs-menuitem"
2163
2164
2165 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
2166 during GC. The next member points to the items. */
2167 static xg_list_node xg_menu_cb_list;
2168
2169 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
2170 during GC. The next member points to the items. */
2171 static xg_list_node xg_menu_item_cb_list;
2172
2173 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
2174 F is the frame CL_DATA will be initialized for.
2175 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2176
2177 The menu bar and all sub menus under the menu bar in a frame
2178 share the same structure, hence the reference count.
2179
2180 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
2181 allocated xg_menu_cb_data if CL_DATA is NULL. */
2182
2183 static xg_menu_cb_data *
2184 make_cl_data (xg_menu_cb_data *cl_data, struct frame *f, GCallback highlight_cb)
2185 {
2186 if (! cl_data)
2187 {
2188 cl_data = xmalloc (sizeof *cl_data);
2189 cl_data->f = f;
2190 cl_data->menu_bar_vector = f->menu_bar_vector;
2191 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2192 cl_data->highlight_cb = highlight_cb;
2193 cl_data->ref_count = 0;
2194
2195 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
2196 }
2197
2198 cl_data->ref_count++;
2199
2200 return cl_data;
2201 }
2202
2203 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
2204 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2205
2206 When the menu bar is updated, menu items may have been added and/or
2207 removed, so menu_bar_vector and menu_bar_items_used change. We must
2208 then update CL_DATA since it is used to determine which menu
2209 item that is invoked in the menu.
2210 HIGHLIGHT_CB could change, there is no check that the same
2211 function is given when modifying a menu bar as was given when
2212 creating the menu bar. */
2213
2214 static void
2215 update_cl_data (xg_menu_cb_data *cl_data,
2216 struct frame *f,
2217 GCallback highlight_cb)
2218 {
2219 if (cl_data)
2220 {
2221 cl_data->f = f;
2222 cl_data->menu_bar_vector = f->menu_bar_vector;
2223 cl_data->menu_bar_items_used = f->menu_bar_items_used;
2224 cl_data->highlight_cb = highlight_cb;
2225 }
2226 }
2227
2228 /* Decrease reference count for CL_DATA.
2229 If reference count is zero, free CL_DATA. */
2230
2231 static void
2232 unref_cl_data (xg_menu_cb_data *cl_data)
2233 {
2234 if (cl_data && cl_data->ref_count > 0)
2235 {
2236 cl_data->ref_count--;
2237 if (cl_data->ref_count == 0)
2238 {
2239 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
2240 xfree (cl_data);
2241 }
2242 }
2243 }
2244
2245 /* Function that marks all lisp data during GC. */
2246
2247 void
2248 xg_mark_data (void)
2249 {
2250 xg_list_node *iter;
2251 Lisp_Object rest, frame;
2252
2253 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
2254 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
2255
2256 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
2257 {
2258 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
2259
2260 if (! NILP (cb_data->help))
2261 mark_object (cb_data->help);
2262 }
2263
2264 FOR_EACH_FRAME (rest, frame)
2265 {
2266 struct frame *f = XFRAME (frame);
2267
2268 if (FRAME_X_P (f) && FRAME_GTK_OUTER_WIDGET (f))
2269 {
2270 struct xg_frame_tb_info *tbinfo
2271 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
2272 TB_INFO_KEY);
2273 if (tbinfo)
2274 {
2275 mark_object (tbinfo->last_tool_bar);
2276 mark_object (tbinfo->style);
2277 }
2278 }
2279 }
2280 }
2281
2282
2283 /* Callback called when a menu item is destroyed. Used to free data.
2284 W is the widget that is being destroyed (not used).
2285 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
2286
2287 static void
2288 menuitem_destroy_callback (GtkWidget *w, gpointer client_data)
2289 {
2290 if (client_data)
2291 {
2292 xg_menu_item_cb_data *data = client_data;
2293 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
2294 xfree (data);
2295 }
2296 }
2297
2298 /* Callback called when the pointer enters/leaves a menu item.
2299 W is the parent of the menu item.
2300 EVENT is either an enter event or leave event.
2301 CLIENT_DATA is not used.
2302
2303 Returns FALSE to tell GTK to keep processing this event. */
2304
2305 static gboolean
2306 menuitem_highlight_callback (GtkWidget *w,
2307 GdkEventCrossing *event,
2308 gpointer client_data)
2309 {
2310 GdkEvent ev;
2311 GtkWidget *subwidget;
2312 xg_menu_item_cb_data *data;
2313
2314 ev.crossing = *event;
2315 subwidget = gtk_get_event_widget (&ev);
2316 data = g_object_get_data (G_OBJECT (subwidget), XG_ITEM_DATA);
2317 if (data)
2318 {
2319 if (! NILP (data->help) && data->cl_data->highlight_cb)
2320 {
2321 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
2322 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
2323 (*func) (subwidget, call_data);
2324 }
2325 }
2326
2327 return FALSE;
2328 }
2329
2330 /* Callback called when a menu is destroyed. Used to free data.
2331 W is the widget that is being destroyed (not used).
2332 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
2333
2334 static void
2335 menu_destroy_callback (GtkWidget *w, gpointer client_data)
2336 {
2337 unref_cl_data (client_data);
2338 }
2339
2340 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
2341 must be non-NULL) and can be inserted into a menu item.
2342
2343 Returns the GtkHBox. */
2344
2345 static GtkWidget *
2346 make_widget_for_menu_item (const char *utf8_label, const char *utf8_key)
2347 {
2348 GtkWidget *wlbl;
2349 GtkWidget *wkey;
2350 GtkWidget *wbox;
2351
2352 wbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
2353 gtk_box_set_homogeneous (GTK_BOX (wbox), FALSE);
2354 wlbl = gtk_label_new (utf8_label);
2355 wkey = gtk_label_new (utf8_key);
2356
2357 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
2358 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
2359
2360 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
2361 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
2362
2363 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
2364 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
2365 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
2366
2367 return wbox;
2368 }
2369
2370 /* Make and return a menu item widget with the key to the right.
2371 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
2372 UTF8_KEY is the text representing the key binding.
2373 ITEM is the widget_value describing the menu item.
2374
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.
2380
2381 Unfortunately, keys don't line up as nicely as in Motif,
2382 but the MacOS X version doesn't either, so I guess that is OK. */
2383
2384 static GtkWidget *
2385 make_menu_item (const char *utf8_label,
2386 const char *utf8_key,
2387 widget_value *item,
2388 GSList **group)
2389 {
2390 GtkWidget *w;
2391 GtkWidget *wtoadd = 0;
2392
2393 /* It has been observed that some menu items have a NULL name field.
2394 This will lead to this function being called with a NULL utf8_label.
2395 GTK crashes on that so we set a blank label. Why there is a NULL
2396 name remains to be investigated. */
2397 if (! utf8_label) utf8_label = " ";
2398
2399 if (utf8_key)
2400 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2401
2402 if (item->button_type == BUTTON_TYPE_TOGGLE)
2403 {
2404 *group = NULL;
2405 if (utf8_key) w = gtk_check_menu_item_new ();
2406 else w = gtk_check_menu_item_new_with_label (utf8_label);
2407 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
2408 }
2409 else if (item->button_type == BUTTON_TYPE_RADIO)
2410 {
2411 if (utf8_key) w = gtk_radio_menu_item_new (*group);
2412 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
2413 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
2414 if (item->selected)
2415 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
2416 }
2417 else
2418 {
2419 *group = NULL;
2420 if (utf8_key) w = gtk_menu_item_new ();
2421 else w = gtk_menu_item_new_with_label (utf8_label);
2422 }
2423
2424 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
2425 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
2426
2427 return w;
2428 }
2429
2430 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2431
2432 static int xg_detached_menus;
2433
2434 /* Return true if there are detached menus. */
2435
2436 bool
2437 xg_have_tear_offs (void)
2438 {
2439 return xg_detached_menus > 0;
2440 }
2441
2442 /* Callback invoked when a detached menu window is removed. Here we
2443 decrease the xg_detached_menus count.
2444 WIDGET is the top level window that is removed (the parent of the menu).
2445 CLIENT_DATA is not used. */
2446
2447 static void
2448 tearoff_remove (GtkWidget *widget, gpointer client_data)
2449 {
2450 if (xg_detached_menus > 0) --xg_detached_menus;
2451 }
2452
2453 /* Callback invoked when a menu is detached. It increases the
2454 xg_detached_menus count.
2455 WIDGET is the GtkTearoffMenuItem.
2456 CLIENT_DATA is not used. */
2457
2458 static void
2459 tearoff_activate (GtkWidget *widget, gpointer client_data)
2460 {
2461 GtkWidget *menu = gtk_widget_get_parent (widget);
2462 if (gtk_menu_get_tearoff_state (GTK_MENU (menu)))
2463 {
2464 ++xg_detached_menus;
2465 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget)),
2466 "destroy",
2467 G_CALLBACK (tearoff_remove), 0);
2468 }
2469 }
2470 #else /* ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW */
2471 bool
2472 xg_have_tear_offs (void)
2473 {
2474 return false;
2475 }
2476 #endif /* ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW */
2477
2478 /* Create a menu item widget, and connect the callbacks.
2479 ITEM describes the menu item.
2480 F is the frame the created menu belongs to.
2481 SELECT_CB is the callback to use when a menu item is selected.
2482 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2483 CL_DATA points to the callback data to be used for this menu.
2484 GROUP is an in/out parameter. If the menu item to be created is not
2485 part of any radio menu group, *GROUP contains NULL on entry and exit.
2486 If the menu item to be created is part of a radio menu group, on entry
2487 *GROUP contains the group to use, or NULL if this is the first item
2488 in the group. On exit, *GROUP contains the radio item group.
2489
2490 Returns the created GtkWidget. */
2491
2492 static GtkWidget *
2493 xg_create_one_menuitem (widget_value *item,
2494 struct frame *f,
2495 GCallback select_cb,
2496 GCallback highlight_cb,
2497 xg_menu_cb_data *cl_data,
2498 GSList **group)
2499 {
2500 char *utf8_label;
2501 char *utf8_key;
2502 GtkWidget *w;
2503 xg_menu_item_cb_data *cb_data;
2504
2505 utf8_label = get_utf8_string (item->name);
2506 utf8_key = get_utf8_string (item->key);
2507
2508 w = make_menu_item (utf8_label, utf8_key, item, group);
2509
2510 if (utf8_label) g_free (utf8_label);
2511 if (utf8_key) g_free (utf8_key);
2512
2513 cb_data = xmalloc (sizeof *cb_data);
2514
2515 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2516
2517 cb_data->select_id = 0;
2518 cb_data->help = item->help;
2519 cb_data->cl_data = cl_data;
2520 cb_data->call_data = item->call_data;
2521
2522 g_signal_connect (G_OBJECT (w),
2523 "destroy",
2524 G_CALLBACK (menuitem_destroy_callback),
2525 cb_data);
2526
2527 /* Put cb_data in widget, so we can get at it when modifying menubar */
2528 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2529
2530 /* final item, not a submenu */
2531 if (item->call_data && ! item->contents)
2532 {
2533 if (select_cb)
2534 cb_data->select_id
2535 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2536 }
2537
2538 return w;
2539 }
2540
2541 /* Create a full menu tree specified by DATA.
2542 F is the frame the created menu belongs to.
2543 SELECT_CB is the callback to use when a menu item is selected.
2544 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2545 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2546 If POP_UP_P, create a popup menu.
2547 If MENU_BAR_P, create a menu bar.
2548 If ADD_TEAROFF_P, add a tearoff menu item. Ignored if MENU_BAR_P or
2549 the Gtk+ version used does not have tearoffs.
2550 TOPMENU is the topmost GtkWidget that others shall be placed under.
2551 It may be NULL, in that case we create the appropriate widget
2552 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2553 CL_DATA is the callback data we shall use for this menu, or NULL
2554 if we haven't set the first callback yet.
2555 NAME is the name to give to the top level menu if this function
2556 creates it. May be NULL to not set any name.
2557
2558 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2559 not NULL.
2560
2561 This function calls itself to create submenus. */
2562
2563 static GtkWidget *
2564 create_menus (widget_value *data,
2565 struct frame *f,
2566 GCallback select_cb,
2567 GCallback deactivate_cb,
2568 GCallback highlight_cb,
2569 bool pop_up_p,
2570 bool menu_bar_p,
2571 bool add_tearoff_p,
2572 GtkWidget *topmenu,
2573 xg_menu_cb_data *cl_data,
2574 const char *name)
2575 {
2576 widget_value *item;
2577 GtkWidget *wmenu = topmenu;
2578 GSList *group = NULL;
2579
2580 if (! topmenu)
2581 {
2582 if (! menu_bar_p)
2583 {
2584 wmenu = gtk_menu_new ();
2585 xg_set_screen (wmenu, f);
2586 /* Connect this to the menu instead of items so we get enter/leave for
2587 disabled items also. TODO: Still does not get enter/leave for
2588 disabled items in detached menus. */
2589 g_signal_connect (G_OBJECT (wmenu),
2590 "enter-notify-event",
2591 G_CALLBACK (menuitem_highlight_callback),
2592 NULL);
2593 g_signal_connect (G_OBJECT (wmenu),
2594 "leave-notify-event",
2595 G_CALLBACK (menuitem_highlight_callback),
2596 NULL);
2597 }
2598 else
2599 {
2600 wmenu = gtk_menu_bar_new ();
2601 /* Set width of menu bar to a small value so it doesn't enlarge
2602 a small initial frame size. The width will be set to the
2603 width of the frame later on when it is added to a container.
2604 height -1: Natural height. */
2605 gtk_widget_set_size_request (wmenu, 1, -1);
2606 }
2607
2608 /* Put cl_data on the top menu for easier access. */
2609 cl_data = make_cl_data (cl_data, f, highlight_cb);
2610 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2611 g_signal_connect (G_OBJECT (wmenu), "destroy",
2612 G_CALLBACK (menu_destroy_callback), cl_data);
2613
2614 if (name)
2615 gtk_widget_set_name (wmenu, name);
2616
2617 if (deactivate_cb)
2618 g_signal_connect (G_OBJECT (wmenu),
2619 "selection-done", deactivate_cb, 0);
2620 }
2621
2622 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2623 if (! menu_bar_p && add_tearoff_p)
2624 {
2625 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
2626 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
2627
2628 g_signal_connect (G_OBJECT (tearoff), "activate",
2629 G_CALLBACK (tearoff_activate), 0);
2630 }
2631 #endif
2632
2633 for (item = data; item; item = item->next)
2634 {
2635 GtkWidget *w;
2636
2637 if (pop_up_p && !item->contents && !item->call_data
2638 && !menu_separator_name_p (item->name))
2639 {
2640 char *utf8_label;
2641 /* A title for a popup. We do the same as GTK does when
2642 creating titles, but it does not look good. */
2643 group = NULL;
2644 utf8_label = get_utf8_string (item->name);
2645
2646 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
2647 w = gtk_menu_item_new_with_label (utf8_label);
2648 gtk_widget_set_sensitive (w, FALSE);
2649 if (utf8_label) g_free (utf8_label);
2650 }
2651 else if (menu_separator_name_p (item->name))
2652 {
2653 group = NULL;
2654 /* GTK only have one separator type. */
2655 w = gtk_separator_menu_item_new ();
2656 }
2657 else
2658 {
2659 w = xg_create_one_menuitem (item,
2660 f,
2661 item->contents ? 0 : select_cb,
2662 highlight_cb,
2663 cl_data,
2664 &group);
2665
2666 /* Create a possibly empty submenu for menu bar items, since some
2667 themes don't highlight items correctly without it. */
2668 if (item->contents || menu_bar_p)
2669 {
2670 GtkWidget *submenu = create_menus (item->contents,
2671 f,
2672 select_cb,
2673 deactivate_cb,
2674 highlight_cb,
2675 0,
2676 0,
2677 add_tearoff_p,
2678 0,
2679 cl_data,
2680 0);
2681 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2682 }
2683 }
2684
2685 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2686 gtk_widget_set_name (w, MENU_ITEM_NAME);
2687 }
2688
2689 return wmenu;
2690 }
2691
2692 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2693 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2694 with some text and buttons.
2695 F is the frame the created item belongs to.
2696 NAME is the name to use for the top widget.
2697 VAL is a widget_value structure describing items to be created.
2698 SELECT_CB is the callback to use when a menu item is selected or
2699 a dialog button is pressed.
2700 DEACTIVATE_CB is the callback to use when an item is deactivated.
2701 For a menu, when a sub menu is not shown anymore, for a dialog it is
2702 called when the dialog is popped down.
2703 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2704
2705 Returns the widget created. */
2706
2707 GtkWidget *
2708 xg_create_widget (const char *type, const char *name, struct frame *f,
2709 widget_value *val, GCallback select_cb,
2710 GCallback deactivate_cb, GCallback highlight_cb)
2711 {
2712 GtkWidget *w = 0;
2713 bool menu_bar_p = strcmp (type, "menubar") == 0;
2714 bool pop_up_p = strcmp (type, "popup") == 0;
2715
2716 if (strcmp (type, "dialog") == 0)
2717 {
2718 w = create_dialog (val, select_cb, deactivate_cb);
2719 xg_set_screen (w, f);
2720 gtk_window_set_transient_for (GTK_WINDOW (w),
2721 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2722 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2723 gtk_widget_set_name (w, "emacs-dialog");
2724 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2725 }
2726 else if (menu_bar_p || pop_up_p)
2727 {
2728 w = create_menus (val->contents,
2729 f,
2730 select_cb,
2731 deactivate_cb,
2732 highlight_cb,
2733 pop_up_p,
2734 menu_bar_p,
2735 menu_bar_p,
2736 0,
2737 0,
2738 name);
2739
2740 /* Set the cursor to an arrow for popup menus when they are mapped.
2741 This is done by default for menu bar menus. */
2742 if (pop_up_p)
2743 {
2744 /* Must realize so the GdkWindow inside the widget is created. */
2745 gtk_widget_realize (w);
2746 xg_set_cursor (w, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
2747 }
2748 }
2749 else
2750 {
2751 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2752 type);
2753 }
2754
2755 return w;
2756 }
2757
2758 /* Return the label for menu item WITEM. */
2759
2760 static const char *
2761 xg_get_menu_item_label (GtkMenuItem *witem)
2762 {
2763 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2764 return gtk_label_get_label (wlabel);
2765 }
2766
2767 /* Return true if the menu item WITEM has the text LABEL. */
2768
2769 static bool
2770 xg_item_label_same_p (GtkMenuItem *witem, const char *label)
2771 {
2772 bool is_same = 0;
2773 char *utf8_label = get_utf8_string (label);
2774 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2775
2776 if (! old_label && ! utf8_label)
2777 is_same = 1;
2778 else if (old_label && utf8_label)
2779 is_same = strcmp (utf8_label, old_label) == 0;
2780
2781 if (utf8_label) g_free (utf8_label);
2782
2783 return is_same;
2784 }
2785
2786 /* Destroy widgets in LIST. */
2787
2788 static void
2789 xg_destroy_widgets (GList *list)
2790 {
2791 GList *iter;
2792
2793 for (iter = list; iter; iter = g_list_next (iter))
2794 {
2795 GtkWidget *w = GTK_WIDGET (iter->data);
2796
2797 /* Destroying the widget will remove it from the container it is in. */
2798 gtk_widget_destroy (w);
2799 }
2800 }
2801
2802 /* Update the top level names in MENUBAR (i.e. not submenus).
2803 F is the frame the menu bar belongs to.
2804 *LIST is a list with the current menu bar names (menu item widgets).
2805 ITER is the item within *LIST that shall be updated.
2806 POS is the numerical position, starting at 0, of ITER in *LIST.
2807 VAL describes what the menu bar shall look like after the update.
2808 SELECT_CB is the callback to use when a menu item is selected.
2809 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2810 CL_DATA points to the callback data to be used for this menu bar.
2811
2812 This function calls itself to walk through the menu bar names. */
2813
2814 static void
2815 xg_update_menubar (GtkWidget *menubar,
2816 struct frame *f,
2817 GList **list,
2818 GList *iter,
2819 int pos,
2820 widget_value *val,
2821 GCallback select_cb,
2822 GCallback deactivate_cb,
2823 GCallback highlight_cb,
2824 xg_menu_cb_data *cl_data)
2825 {
2826 if (! iter && ! val)
2827 return;
2828 else if (iter && ! val)
2829 {
2830 /* Item(s) have been removed. Remove all remaining items. */
2831 xg_destroy_widgets (iter);
2832
2833 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2834 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2835 gtk_menu_item_new_with_label (""),
2836 0);
2837 /* All updated. */
2838 val = 0;
2839 iter = 0;
2840 }
2841 else if (! iter && val)
2842 {
2843 /* Item(s) added. Add all new items in one call. */
2844 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2845 0, 1, 0, menubar, cl_data, 0);
2846
2847 /* All updated. */
2848 val = 0;
2849 iter = 0;
2850 }
2851 /* Below this neither iter or val is NULL */
2852 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2853 {
2854 /* This item is still the same, check next item. */
2855 val = val->next;
2856 iter = g_list_next (iter);
2857 ++pos;
2858 }
2859 else /* This item is changed. */
2860 {
2861 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2862 GtkMenuItem *witem2 = 0;
2863 bool val_in_menubar = 0;
2864 bool iter_in_new_menubar = 0;
2865 GList *iter2;
2866 widget_value *cur;
2867
2868 /* See if the changed entry (val) is present later in the menu bar */
2869 for (iter2 = iter;
2870 iter2 && ! val_in_menubar;
2871 iter2 = g_list_next (iter2))
2872 {
2873 witem2 = GTK_MENU_ITEM (iter2->data);
2874 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2875 }
2876
2877 /* See if the current entry (iter) is present later in the
2878 specification for the new menu bar. */
2879 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2880 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2881
2882 if (val_in_menubar && ! iter_in_new_menubar)
2883 {
2884 int nr = pos;
2885
2886 /* This corresponds to:
2887 Current: A B C
2888 New: A C
2889 Remove B. */
2890
2891 g_object_ref (G_OBJECT (witem));
2892 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2893 gtk_widget_destroy (GTK_WIDGET (witem));
2894
2895 /* Must get new list since the old changed. */
2896 g_list_free (*list);
2897 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2898 while (nr-- > 0) iter = g_list_next (iter);
2899 }
2900 else if (! val_in_menubar && ! iter_in_new_menubar)
2901 {
2902 /* This corresponds to:
2903 Current: A B C
2904 New: A X C
2905 Rename B to X. This might seem to be a strange thing to do,
2906 since if there is a menu under B it will be totally wrong for X.
2907 But consider editing a C file. Then there is a C-mode menu
2908 (corresponds to B above).
2909 If then doing C-x C-f the minibuf menu (X above) replaces the
2910 C-mode menu. When returning from the minibuffer, we get
2911 back the C-mode menu. Thus we do:
2912 Rename B to X (C-mode to minibuf menu)
2913 Rename X to B (minibuf to C-mode menu).
2914 If the X menu hasn't been invoked, the menu under B
2915 is up to date when leaving the minibuffer. */
2916 GtkLabel *wlabel = GTK_LABEL (XG_BIN_CHILD (witem));
2917 char *utf8_label = get_utf8_string (val->name);
2918 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
2919
2920 gtk_label_set_text (wlabel, utf8_label);
2921
2922 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
2923 /* If this item has a submenu that has been detached, change
2924 the title in the WM decorations also. */
2925 if (submenu && gtk_menu_get_tearoff_state (GTK_MENU (submenu)))
2926 /* Set the title of the detached window. */
2927 gtk_menu_set_title (GTK_MENU (submenu), utf8_label);
2928 #endif
2929
2930 if (utf8_label) g_free (utf8_label);
2931 iter = g_list_next (iter);
2932 val = val->next;
2933 ++pos;
2934 }
2935 else if (! val_in_menubar && iter_in_new_menubar)
2936 {
2937 /* This corresponds to:
2938 Current: A B C
2939 New: A X B C
2940 Insert X. */
2941
2942 int nr = pos;
2943 GSList *group = 0;
2944 GtkWidget *w = xg_create_one_menuitem (val,
2945 f,
2946 select_cb,
2947 highlight_cb,
2948 cl_data,
2949 &group);
2950
2951 /* Create a possibly empty submenu for menu bar items, since some
2952 themes don't highlight items correctly without it. */
2953 GtkWidget *submenu = create_menus (NULL, f,
2954 select_cb, deactivate_cb,
2955 highlight_cb,
2956 0, 0, 0, 0, cl_data, 0);
2957 gtk_widget_set_name (w, MENU_ITEM_NAME);
2958 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2959 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2960
2961 g_list_free (*list);
2962 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2963 while (nr-- > 0) iter = g_list_next (iter);
2964 iter = g_list_next (iter);
2965 val = val->next;
2966 ++pos;
2967 }
2968 else /* if (val_in_menubar && iter_in_new_menubar) */
2969 {
2970 int nr = pos;
2971 /* This corresponds to:
2972 Current: A B C
2973 New: A C B
2974 Move C before B */
2975
2976 g_object_ref (G_OBJECT (witem2));
2977 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2978 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2979 GTK_WIDGET (witem2), pos);
2980 g_object_unref (G_OBJECT (witem2));
2981
2982 g_list_free (*list);
2983 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2984 while (nr-- > 0) iter = g_list_next (iter);
2985 if (iter) iter = g_list_next (iter);
2986 val = val->next;
2987 ++pos;
2988 }
2989 }
2990
2991 /* Update the rest of the menu bar. */
2992 xg_update_menubar (menubar, f, list, iter, pos, val,
2993 select_cb, deactivate_cb, highlight_cb, cl_data);
2994 }
2995
2996 /* Update the menu item W so it corresponds to VAL.
2997 SELECT_CB is the callback to use when a menu item is selected.
2998 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2999 CL_DATA is the data to set in the widget for menu invocation. */
3000
3001 static void
3002 xg_update_menu_item (widget_value *val,
3003 GtkWidget *w,
3004 GCallback select_cb,
3005 GCallback highlight_cb,
3006 xg_menu_cb_data *cl_data)
3007 {
3008 GtkWidget *wchild;
3009 GtkLabel *wlbl = 0;
3010 GtkLabel *wkey = 0;
3011 char *utf8_label;
3012 char *utf8_key;
3013 const char *old_label = 0;
3014 const char *old_key = 0;
3015 xg_menu_item_cb_data *cb_data;
3016
3017 wchild = XG_BIN_CHILD (w);
3018 utf8_label = get_utf8_string (val->name);
3019 utf8_key = get_utf8_string (val->key);
3020
3021 /* See if W is a menu item with a key. See make_menu_item above. */
3022 if (GTK_IS_BOX (wchild))
3023 {
3024 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
3025
3026 wlbl = GTK_LABEL (list->data);
3027 wkey = GTK_LABEL (list->next->data);
3028 g_list_free (list);
3029
3030 if (! utf8_key)
3031 {
3032 /* Remove the key and keep just the label. */
3033 g_object_ref (G_OBJECT (wlbl));
3034 gtk_container_remove (GTK_CONTAINER (w), wchild);
3035 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
3036 g_object_unref (G_OBJECT (wlbl));
3037 wkey = 0;
3038 }
3039
3040 }
3041 else /* Just a label. */
3042 {
3043 wlbl = GTK_LABEL (wchild);
3044
3045 /* Check if there is now a key. */
3046 if (utf8_key)
3047 {
3048 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
3049 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
3050
3051 wlbl = GTK_LABEL (list->data);
3052 wkey = GTK_LABEL (list->next->data);
3053 g_list_free (list);
3054
3055 gtk_container_remove (GTK_CONTAINER (w), wchild);
3056 gtk_container_add (GTK_CONTAINER (w), wtoadd);
3057 }
3058 }
3059
3060
3061 if (wkey) old_key = gtk_label_get_label (wkey);
3062 if (wlbl) old_label = gtk_label_get_label (wlbl);
3063
3064 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
3065 gtk_label_set_text (wkey, utf8_key);
3066
3067 if (! old_label || strcmp (utf8_label, old_label) != 0)
3068 gtk_label_set_text (wlbl, utf8_label);
3069
3070 if (utf8_key) g_free (utf8_key);
3071 if (utf8_label) g_free (utf8_label);
3072
3073 if (! val->enabled && gtk_widget_get_sensitive (w))
3074 gtk_widget_set_sensitive (w, FALSE);
3075 else if (val->enabled && ! gtk_widget_get_sensitive (w))
3076 gtk_widget_set_sensitive (w, TRUE);
3077
3078 cb_data = g_object_get_data (G_OBJECT (w), XG_ITEM_DATA);
3079 if (cb_data)
3080 {
3081 cb_data->call_data = val->call_data;
3082 cb_data->help = val->help;
3083 cb_data->cl_data = cl_data;
3084
3085 /* We assume the callback functions don't change. */
3086 if (val->call_data && ! val->contents)
3087 {
3088 /* This item shall have a select callback. */
3089 if (! cb_data->select_id)
3090 cb_data->select_id
3091 = g_signal_connect (G_OBJECT (w), "activate",
3092 select_cb, cb_data);
3093 }
3094 else if (cb_data->select_id)
3095 {
3096 g_signal_handler_disconnect (w, cb_data->select_id);
3097 cb_data->select_id = 0;
3098 }
3099 }
3100 }
3101
3102 /* Update the toggle menu item W so it corresponds to VAL. */
3103
3104 static void
3105 xg_update_toggle_item (widget_value *val, GtkWidget *w)
3106 {
3107 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3108 }
3109
3110 /* Update the radio menu item W so it corresponds to VAL. */
3111
3112 static void
3113 xg_update_radio_item (widget_value *val, GtkWidget *w)
3114 {
3115 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
3116 }
3117
3118 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
3119 SUBMENU may be NULL, in that case a new menu is created.
3120 F is the frame the menu bar belongs to.
3121 VAL describes the contents of the menu bar.
3122 SELECT_CB is the callback to use when a menu item is selected.
3123 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3124 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
3125 CL_DATA is the call back data to use for any newly created items.
3126
3127 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
3128 was NULL. */
3129
3130 static GtkWidget *
3131 xg_update_submenu (GtkWidget *submenu,
3132 struct frame *f,
3133 widget_value *val,
3134 GCallback select_cb,
3135 GCallback deactivate_cb,
3136 GCallback highlight_cb,
3137 xg_menu_cb_data *cl_data)
3138 {
3139 GtkWidget *newsub = submenu;
3140 GList *list = 0;
3141 GList *iter;
3142 widget_value *cur;
3143 bool has_tearoff_p = 0;
3144 GList *first_radio = 0;
3145
3146 if (submenu)
3147 list = gtk_container_get_children (GTK_CONTAINER (submenu));
3148
3149 for (cur = val, iter = list;
3150 cur && iter;
3151 iter = g_list_next (iter), cur = cur->next)
3152 {
3153 GtkWidget *w = GTK_WIDGET (iter->data);
3154
3155 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
3156 /* Skip tearoff items, they have no counterpart in val. */
3157 if (GTK_IS_TEAROFF_MENU_ITEM (w))
3158 {
3159 has_tearoff_p = 1;
3160 iter = g_list_next (iter);
3161 if (iter) w = GTK_WIDGET (iter->data);
3162 else break;
3163 }
3164 #endif
3165
3166 /* Remember first radio button in a group. If we get a mismatch in
3167 a radio group we must rebuild the whole group so that the connections
3168 in GTK becomes correct. */
3169 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
3170 first_radio = iter;
3171 else if (cur->button_type != BUTTON_TYPE_RADIO
3172 && ! GTK_IS_RADIO_MENU_ITEM (w))
3173 first_radio = 0;
3174
3175 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
3176 {
3177 if (! menu_separator_name_p (cur->name))
3178 break;
3179 }
3180 else if (GTK_IS_CHECK_MENU_ITEM (w))
3181 {
3182 if (cur->button_type != BUTTON_TYPE_TOGGLE)
3183 break;
3184 xg_update_toggle_item (cur, w);
3185 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3186 }
3187 else if (GTK_IS_RADIO_MENU_ITEM (w))
3188 {
3189 if (cur->button_type != BUTTON_TYPE_RADIO)
3190 break;
3191 xg_update_radio_item (cur, w);
3192 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3193 }
3194 else if (GTK_IS_MENU_ITEM (w))
3195 {
3196 GtkMenuItem *witem = GTK_MENU_ITEM (w);
3197 GtkWidget *sub;
3198
3199 if (cur->button_type != BUTTON_TYPE_NONE ||
3200 menu_separator_name_p (cur->name))
3201 break;
3202
3203 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
3204
3205 sub = gtk_menu_item_get_submenu (witem);
3206 if (sub && ! cur->contents)
3207 {
3208 /* Not a submenu anymore. */
3209 g_object_ref (G_OBJECT (sub));
3210 remove_submenu (witem);
3211 gtk_widget_destroy (sub);
3212 }
3213 else if (cur->contents)
3214 {
3215 GtkWidget *nsub;
3216
3217 nsub = xg_update_submenu (sub, f, cur->contents,
3218 select_cb, deactivate_cb,
3219 highlight_cb, cl_data);
3220
3221 /* If this item just became a submenu, we must set it. */
3222 if (nsub != sub)
3223 gtk_menu_item_set_submenu (witem, nsub);
3224 }
3225 }
3226 else
3227 {
3228 /* Structural difference. Remove everything from here and down
3229 in SUBMENU. */
3230 break;
3231 }
3232 }
3233
3234 /* Remove widgets from first structural change. */
3235 if (iter)
3236 {
3237 /* If we are adding new menu items below, we must remove from
3238 first radio button so that radio groups become correct. */
3239 if (cur && first_radio) xg_destroy_widgets (first_radio);
3240 else xg_destroy_widgets (iter);
3241 }
3242
3243 if (cur)
3244 {
3245 /* More items added. Create them. */
3246 newsub = create_menus (cur,
3247 f,
3248 select_cb,
3249 deactivate_cb,
3250 highlight_cb,
3251 0,
3252 0,
3253 ! has_tearoff_p,
3254 submenu,
3255 cl_data,
3256 0);
3257 }
3258
3259 if (list) g_list_free (list);
3260
3261 return newsub;
3262 }
3263
3264 /* Update the MENUBAR.
3265 F is the frame the menu bar belongs to.
3266 VAL describes the contents of the menu bar.
3267 If DEEP_P, rebuild all but the top level menu names in
3268 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
3269 SELECT_CB is the callback to use when a menu item is selected.
3270 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
3271 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
3272
3273 void
3274 xg_modify_menubar_widgets (GtkWidget *menubar, struct frame *f,
3275 widget_value *val, bool deep_p,
3276 GCallback select_cb, GCallback deactivate_cb,
3277 GCallback highlight_cb)
3278 {
3279 xg_menu_cb_data *cl_data;
3280 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
3281
3282 if (! list) return;
3283
3284 cl_data = g_object_get_data (G_OBJECT (menubar), XG_FRAME_DATA);
3285
3286 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
3287 select_cb, deactivate_cb, highlight_cb, cl_data);
3288
3289 if (deep_p)
3290 {
3291 widget_value *cur;
3292
3293 /* Update all sub menus.
3294 We must keep the submenus (GTK menu item widgets) since the
3295 X Window in the XEvent that activates the menu are those widgets. */
3296
3297 /* Update cl_data, menu_item things in F may have changed. */
3298 update_cl_data (cl_data, f, highlight_cb);
3299
3300 for (cur = val->contents; cur; cur = cur->next)
3301 {
3302 GList *iter;
3303 GtkWidget *sub = 0;
3304 GtkWidget *newsub;
3305 GtkMenuItem *witem = 0;
3306
3307 /* Find sub menu that corresponds to val and update it. */
3308 for (iter = list ; iter; iter = g_list_next (iter))
3309 {
3310 witem = GTK_MENU_ITEM (iter->data);
3311 if (xg_item_label_same_p (witem, cur->name))
3312 {
3313 sub = gtk_menu_item_get_submenu (witem);
3314 break;
3315 }
3316 }
3317
3318 newsub = xg_update_submenu (sub,
3319 f,
3320 cur->contents,
3321 select_cb,
3322 deactivate_cb,
3323 highlight_cb,
3324 cl_data);
3325 /* sub may still be NULL. If we just updated non deep and added
3326 a new menu bar item, it has no sub menu yet. So we set the
3327 newly created sub menu under witem. */
3328 if (newsub != sub && witem != 0)
3329 {
3330 xg_set_screen (newsub, f);
3331 gtk_menu_item_set_submenu (witem, newsub);
3332 }
3333 }
3334 }
3335
3336 g_list_free (list);
3337 gtk_widget_show_all (menubar);
3338 }
3339
3340 /* Callback called when the menu bar W is mapped.
3341 Used to find the height of the menu bar if we didn't get it
3342 after showing the widget. */
3343
3344 static void
3345 menubar_map_cb (GtkWidget *w, gpointer user_data)
3346 {
3347 GtkRequisition req;
3348 struct frame *f = user_data;
3349 gtk_widget_get_preferred_size (w, NULL, &req);
3350 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3351 {
3352 FRAME_MENUBAR_HEIGHT (f) = req.height;
3353 xg_height_or_width_changed (f);
3354 }
3355 }
3356
3357 /* Recompute all the widgets of frame F, when the menu bar has been
3358 changed. */
3359
3360 void
3361 xg_update_frame_menubar (struct frame *f)
3362 {
3363 struct x_output *x = f->output_data.x;
3364 GtkRequisition req;
3365
3366 if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget))
3367 return;
3368
3369 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
3370 return; /* Already done this, happens for frames created invisible. */
3371
3372 block_input ();
3373
3374 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
3375 FALSE, FALSE, 0);
3376 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
3377
3378 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
3379 gtk_widget_show_all (x->menubar_widget);
3380 gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req);
3381
3382 /* If menu bar doesn't know its height yet, cheat a little so the frame
3383 doesn't jump so much when resized later in menubar_map_cb. */
3384 if (req.height == 0)
3385 req.height = 23;
3386
3387 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
3388 {
3389 FRAME_MENUBAR_HEIGHT (f) = req.height;
3390 xg_height_or_width_changed (f);
3391 }
3392 unblock_input ();
3393 }
3394
3395 /* Get rid of the menu bar of frame F, and free its storage.
3396 This is used when deleting a frame, and when turning off the menu bar. */
3397
3398 void
3399 free_frame_menubar (struct frame *f)
3400 {
3401 struct x_output *x = f->output_data.x;
3402
3403 if (x->menubar_widget)
3404 {
3405 block_input ();
3406
3407 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3408 /* The menubar and its children shall be deleted when removed from
3409 the container. */
3410 x->menubar_widget = 0;
3411 FRAME_MENUBAR_HEIGHT (f) = 0;
3412 xg_height_or_width_changed (f);
3413 unblock_input ();
3414 }
3415 }
3416
3417 bool
3418 xg_event_is_for_menubar (struct frame *f, XEvent *event)
3419 {
3420 struct x_output *x = f->output_data.x;
3421 GList *iter;
3422 GdkRectangle rec;
3423 GList *list;
3424 GdkDisplay *gdpy;
3425 GdkWindow *gw;
3426 GdkEvent gevent;
3427 GtkWidget *gwdesc;
3428
3429 if (! x->menubar_widget) return 0;
3430
3431 if (! (event->xbutton.x >= 0
3432 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3433 && event->xbutton.y >= 0
3434 && event->xbutton.y < f->output_data.x->menubar_height
3435 && event->xbutton.same_screen))
3436 return 0;
3437
3438 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3439 gw = gdk_x11_window_lookup_for_display (gdpy, event->xbutton.window);
3440 if (! gw) return 0;
3441 gevent.any.window = gw;
3442 gevent.any.type = GDK_NOTHING;
3443 gwdesc = gtk_get_event_widget (&gevent);
3444 if (! gwdesc) return 0;
3445 if (! GTK_IS_MENU_BAR (gwdesc)
3446 && ! GTK_IS_MENU_ITEM (gwdesc)
3447 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3448 return 0;
3449
3450 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3451 if (! list) return 0;
3452 rec.x = event->xbutton.x;
3453 rec.y = event->xbutton.y;
3454 rec.width = 1;
3455 rec.height = 1;
3456
3457 for (iter = list ; iter; iter = g_list_next (iter))
3458 {
3459 GtkWidget *w = GTK_WIDGET (iter->data);
3460 if (gtk_widget_get_mapped (w) && gtk_widget_intersect (w, &rec, NULL))
3461 break;
3462 }
3463 g_list_free (list);
3464 return iter != 0;
3465 }
3466
3467
3468 \f
3469 /***********************************************************************
3470 Scroll bar functions
3471 ***********************************************************************/
3472
3473
3474 /* Setting scroll bar values invokes the callback. Use this variable
3475 to indicate that callback should do nothing. */
3476
3477 bool xg_ignore_gtk_scrollbar;
3478
3479 /* The width of the scroll bar for the current theme. */
3480
3481 static int scroll_bar_width_for_theme;
3482
3483 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3484 may be larger than 32 bits. Keep a mapping from integer index to widget
3485 pointers to get around the 32 bit limitation. */
3486
3487 static struct
3488 {
3489 GtkWidget **widgets;
3490 ptrdiff_t max_size;
3491 ptrdiff_t used;
3492 } id_to_widget;
3493
3494 /* Grow this much every time we need to allocate more */
3495
3496 #define ID_TO_WIDGET_INCR 32
3497
3498 /* Store the widget pointer W in id_to_widget and return the integer index. */
3499
3500 static ptrdiff_t
3501 xg_store_widget_in_map (GtkWidget *w)
3502 {
3503 ptrdiff_t i;
3504
3505 if (id_to_widget.max_size == id_to_widget.used)
3506 {
3507 ptrdiff_t new_size;
3508 if (TYPE_MAXIMUM (Window) - ID_TO_WIDGET_INCR < id_to_widget.max_size)
3509 memory_full (SIZE_MAX);
3510
3511 new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3512 id_to_widget.widgets = xnrealloc (id_to_widget.widgets,
3513 new_size, sizeof (GtkWidget *));
3514
3515 for (i = id_to_widget.max_size; i < new_size; ++i)
3516 id_to_widget.widgets[i] = 0;
3517 id_to_widget.max_size = new_size;
3518 }
3519
3520 /* Just loop over the array and find a free place. After all,
3521 how many scroll bars are we creating? Should be a small number.
3522 The check above guarantees we will find a free place. */
3523 for (i = 0; i < id_to_widget.max_size; ++i)
3524 {
3525 if (! id_to_widget.widgets[i])
3526 {
3527 id_to_widget.widgets[i] = w;
3528 ++id_to_widget.used;
3529
3530 return i;
3531 }
3532 }
3533
3534 /* Should never end up here */
3535 emacs_abort ();
3536 }
3537
3538 /* Remove pointer at IDX from id_to_widget.
3539 Called when scroll bar is destroyed. */
3540
3541 static void
3542 xg_remove_widget_from_map (ptrdiff_t idx)
3543 {
3544 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3545 {
3546 id_to_widget.widgets[idx] = 0;
3547 --id_to_widget.used;
3548 }
3549 }
3550
3551 /* Get the widget pointer at IDX from id_to_widget. */
3552
3553 static GtkWidget *
3554 xg_get_widget_from_map (ptrdiff_t idx)
3555 {
3556 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3557 return id_to_widget.widgets[idx];
3558
3559 return 0;
3560 }
3561
3562 static void
3563 update_theme_scrollbar_width (void)
3564 {
3565 #ifdef HAVE_GTK3
3566 GtkAdjustment *vadj;
3567 #else
3568 GtkObject *vadj;
3569 #endif
3570 GtkWidget *wscroll;
3571 int w = 0, b = 0;
3572
3573 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX, 0.1, 0.1, 0.1);
3574 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3575 g_object_ref_sink (G_OBJECT (wscroll));
3576 gtk_widget_style_get (wscroll, "slider-width", &w, "trough-border", &b, NULL);
3577 gtk_widget_destroy (wscroll);
3578 g_object_unref (G_OBJECT (wscroll));
3579 w += 2*b;
3580 if (w < 16) w = 16;
3581 scroll_bar_width_for_theme = w;
3582 }
3583
3584 int
3585 xg_get_default_scrollbar_width (void)
3586 {
3587 return scroll_bar_width_for_theme;
3588 }
3589
3590 /* Return the scrollbar id for X Window WID on display DPY.
3591 Return -1 if WID not in id_to_widget. */
3592
3593 ptrdiff_t
3594 xg_get_scroll_id_for_window (Display *dpy, Window wid)
3595 {
3596 ptrdiff_t idx;
3597 GtkWidget *w;
3598
3599 w = xg_win_to_widget (dpy, wid);
3600
3601 if (w)
3602 {
3603 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3604 if (id_to_widget.widgets[idx] == w)
3605 return idx;
3606 }
3607
3608 return -1;
3609 }
3610
3611 /* Callback invoked when scroll bar WIDGET is destroyed.
3612 DATA is the index into id_to_widget for WIDGET.
3613 We free pointer to last scroll bar values here and remove the index. */
3614
3615 static void
3616 xg_gtk_scroll_destroy (GtkWidget *widget, gpointer data)
3617 {
3618 intptr_t id = (intptr_t) data;
3619 xg_remove_widget_from_map (id);
3620 }
3621
3622 /* Create a scroll bar widget for frame F. Store the scroll bar
3623 in BAR.
3624 SCROLL_CALLBACK is the callback to invoke when the value of the
3625 bar changes.
3626 END_CALLBACK is the callback to invoke when scrolling ends.
3627 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3628 to set resources for the widget. */
3629
3630 void
3631 xg_create_scroll_bar (struct frame *f,
3632 struct scroll_bar *bar,
3633 GCallback scroll_callback,
3634 GCallback end_callback,
3635 const char *scroll_bar_name)
3636 {
3637 GtkWidget *wscroll;
3638 GtkWidget *webox;
3639 intptr_t scroll_id;
3640 #ifdef HAVE_GTK3
3641 GtkAdjustment *vadj;
3642 #else
3643 GtkObject *vadj;
3644 #endif
3645
3646 /* Page, step increment values are not so important here, they
3647 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3648 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3649 0.1, 0.1, 0.1);
3650
3651 wscroll = gtk_scrollbar_new (GTK_ORIENTATION_VERTICAL, GTK_ADJUSTMENT (vadj));
3652 webox = gtk_event_box_new ();
3653 gtk_widget_set_name (wscroll, scroll_bar_name);
3654 #ifndef HAVE_GTK3
3655 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3656 #endif
3657 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3658
3659 scroll_id = xg_store_widget_in_map (wscroll);
3660
3661 g_signal_connect (G_OBJECT (wscroll),
3662 "destroy",
3663 G_CALLBACK (xg_gtk_scroll_destroy),
3664 (gpointer) scroll_id);
3665 g_signal_connect (G_OBJECT (wscroll),
3666 "change-value",
3667 scroll_callback,
3668 (gpointer) bar);
3669 g_signal_connect (G_OBJECT (wscroll),
3670 "button-release-event",
3671 end_callback,
3672 (gpointer) bar);
3673
3674 /* The scroll bar widget does not draw on a window of its own. Instead
3675 it draws on the parent window, in this case the edit widget. So
3676 whenever the edit widget is cleared, the scroll bar needs to redraw
3677 also, which causes flicker. Put an event box between the edit widget
3678 and the scroll bar, so the scroll bar instead draws itself on the
3679 event box window. */
3680 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3681 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3682
3683
3684 /* Set the cursor to an arrow. */
3685 xg_set_cursor (webox, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
3686
3687 bar->x_window = scroll_id;
3688 }
3689
3690 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3691
3692 void
3693 xg_remove_scroll_bar (struct frame *f, ptrdiff_t scrollbar_id)
3694 {
3695 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3696 if (w)
3697 {
3698 GtkWidget *wparent = gtk_widget_get_parent (w);
3699 gtk_widget_destroy (w);
3700 gtk_widget_destroy (wparent);
3701 SET_FRAME_GARBAGED (f);
3702 }
3703 }
3704
3705 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3706 in frame F.
3707 TOP/LEFT are the new pixel positions where the bar shall appear.
3708 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3709
3710 void
3711 xg_update_scrollbar_pos (struct frame *f,
3712 ptrdiff_t scrollbar_id,
3713 int top,
3714 int left,
3715 int width,
3716 int height)
3717 {
3718
3719 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3720
3721 if (wscroll)
3722 {
3723 GtkWidget *wfixed = f->output_data.x->edit_widget;
3724 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3725 gint msl;
3726
3727 /* Clear out old position. */
3728 int oldx = -1, oldy = -1, oldw, oldh;
3729 if (gtk_widget_get_parent (wparent) == wfixed)
3730 {
3731 gtk_container_child_get (GTK_CONTAINER (wfixed), wparent,
3732 "x", &oldx, "y", &oldy, NULL);
3733 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3734 }
3735
3736 /* Move and resize to new values. */
3737 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3738 gtk_widget_style_get (wscroll, "min-slider-length", &msl, NULL);
3739 if (msl > height)
3740 {
3741 /* No room. Hide scroll bar as some themes output a warning if
3742 the height is less than the min size. */
3743 gtk_widget_hide (wparent);
3744 gtk_widget_hide (wscroll);
3745 }
3746 else
3747 {
3748 gtk_widget_show_all (wparent);
3749 gtk_widget_set_size_request (wscroll, width, height);
3750 }
3751 gtk_widget_queue_draw (wfixed);
3752 gdk_window_process_all_updates ();
3753 if (oldx != -1 && oldw > 0 && oldh > 0)
3754 {
3755 /* Clear under old scroll bar position. This must be done after
3756 the gtk_widget_queue_draw and gdk_window_process_all_updates
3757 above. */
3758 x_clear_area (FRAME_X_DISPLAY (f),
3759 FRAME_X_WINDOW (f),
3760 oldx, oldy, oldw, oldh, 0);
3761 }
3762
3763 /* GTK does not redraw until the main loop is entered again, but
3764 if there are no X events pending we will not enter it. So we sync
3765 here to get some events. */
3766
3767 x_sync (f);
3768 SET_FRAME_GARBAGED (f);
3769 cancel_mouse_face (f);
3770 }
3771 }
3772
3773 /* Get the current value of the range, truncated to an integer. */
3774
3775 static int
3776 int_gtk_range_get_value (GtkRange *range)
3777 {
3778 return gtk_range_get_value (range);
3779 }
3780
3781
3782 /* Set the thumb size and position of scroll bar BAR. We are currently
3783 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3784
3785 void
3786 xg_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar,
3787 int portion,
3788 int position,
3789 int whole)
3790 {
3791 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3792
3793 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3794
3795 if (wscroll && NILP (bar->dragging))
3796 {
3797 GtkAdjustment *adj;
3798 gdouble shown;
3799 gdouble top;
3800 int size, value;
3801 int old_size;
3802 int new_step;
3803 bool changed = 0;
3804
3805 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3806
3807 if (scroll_bar_adjust_thumb_portion_p)
3808 {
3809 /* We do the same as for MOTIF in xterm.c, use 30 chars per
3810 line rather than the real portion value. This makes the
3811 thumb less likely to resize and that looks better. */
3812 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3813
3814 /* When the thumb is at the bottom, position == whole.
3815 So we need to increase `whole' to make space for the thumb. */
3816 whole += portion;
3817 }
3818
3819 if (whole <= 0)
3820 top = 0, shown = 1;
3821 else
3822 {
3823 top = (gdouble) position / whole;
3824 shown = (gdouble) portion / whole;
3825 }
3826
3827 size = clip_to_bounds (1, shown * XG_SB_RANGE, XG_SB_RANGE);
3828 value = clip_to_bounds (XG_SB_MIN, top * XG_SB_RANGE, XG_SB_MAX - size);
3829
3830 /* Assume all lines are of equal size. */
3831 new_step = size / max (1, FRAME_LINES (f));
3832
3833 old_size = gtk_adjustment_get_page_size (adj);
3834 if (old_size != size)
3835 {
3836 int old_step = gtk_adjustment_get_step_increment (adj);
3837 if (old_step != new_step)
3838 {
3839 gtk_adjustment_set_page_size (adj, size);
3840 gtk_adjustment_set_step_increment (adj, new_step);
3841 /* Assume a page increment is about 95% of the page size */
3842 gtk_adjustment_set_page_increment (adj, size - size / 20);
3843 changed = 1;
3844 }
3845 }
3846
3847 if (changed || int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3848 {
3849 block_input ();
3850
3851 /* gtk_range_set_value invokes the callback. Set
3852 ignore_gtk_scrollbar to make the callback do nothing */
3853 xg_ignore_gtk_scrollbar = 1;
3854
3855 if (int_gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3856 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3857 else if (changed)
3858 gtk_adjustment_changed (adj);
3859
3860 xg_ignore_gtk_scrollbar = 0;
3861
3862 unblock_input ();
3863 }
3864 }
3865 }
3866
3867 /* Return true if EVENT is for a scroll bar in frame F.
3868 When the same X window is used for several Gtk+ widgets, we cannot
3869 say for sure based on the X window alone if an event is for the
3870 frame. This function does additional checks. */
3871
3872 bool
3873 xg_event_is_for_scrollbar (struct frame *f, XEvent *event)
3874 {
3875 bool retval = 0;
3876
3877 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3878 {
3879 /* Check if press occurred outside the edit widget. */
3880 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3881 GdkWindow *gwin;
3882 #ifdef HAVE_GTK3
3883 GdkDevice *gdev = gdk_device_manager_get_client_pointer
3884 (gdk_display_get_device_manager (gdpy));
3885 gwin = gdk_device_get_window_at_position (gdev, NULL, NULL);
3886 #else
3887 gwin = gdk_display_get_window_at_pointer (gdpy, NULL, NULL);
3888 #endif
3889 retval = gwin != gtk_widget_get_window (f->output_data.x->edit_widget);
3890 }
3891 else if (f
3892 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3893 || event->type == MotionNotify))
3894 {
3895 /* If we are releasing or moving the scroll bar, it has the grab. */
3896 GtkWidget *w = gtk_grab_get_current ();
3897 retval = w != 0 && GTK_IS_SCROLLBAR (w);
3898 }
3899
3900 return retval;
3901 }
3902
3903
3904 \f
3905 /***********************************************************************
3906 Tool bar functions
3907 ***********************************************************************/
3908 /* The key for the data we put in the GtkImage widgets. The data is
3909 the image used by Emacs. We use this to see if we need to update
3910 the GtkImage with a new image. */
3911 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3912
3913 /* The key for storing the latest modifiers so the activate callback can
3914 get them. */
3915 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3916
3917 /* The key for storing the button widget in its proxy menu item. */
3918 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3919
3920 /* The key for the data we put in the GtkImage widgets. The data is
3921 the stock name used by Emacs. We use this to see if we need to update
3922 the GtkImage with a new image. */
3923 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3924
3925 /* As above, but this is used for named theme widgets, as opposed to
3926 stock items. */
3927 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3928
3929 /* Callback function invoked when a tool bar item is pressed.
3930 W is the button widget in the tool bar that got pressed,
3931 CLIENT_DATA is an integer that is the index of the button in the
3932 tool bar. 0 is the first button. */
3933
3934 static gboolean
3935 xg_tool_bar_button_cb (GtkWidget *widget,
3936 GdkEventButton *event,
3937 gpointer user_data)
3938 {
3939 intptr_t state = event->state;
3940 gpointer ptr = (gpointer) state;
3941 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
3942 return FALSE;
3943 }
3944
3945
3946 /* Callback function invoked when a tool bar item is pressed.
3947 W is the button widget in the tool bar that got pressed,
3948 CLIENT_DATA is an integer that is the index of the button in the
3949 tool bar. 0 is the first button. */
3950
3951 static void
3952 xg_tool_bar_callback (GtkWidget *w, gpointer client_data)
3953 {
3954 intptr_t idx = (intptr_t) client_data;
3955 gpointer gmod = g_object_get_data (G_OBJECT (w), XG_TOOL_BAR_LAST_MODIFIER);
3956 intptr_t mod = (intptr_t) gmod;
3957
3958 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3959 Lisp_Object key, frame;
3960 struct input_event event;
3961 EVENT_INIT (event);
3962
3963 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3964 return;
3965
3966 idx *= TOOL_BAR_ITEM_NSLOTS;
3967
3968 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
3969 XSETFRAME (frame, f);
3970
3971 /* We generate two events here. The first one is to set the prefix
3972 to `(tool_bar)', see keyboard.c. */
3973 event.kind = TOOL_BAR_EVENT;
3974 event.frame_or_window = frame;
3975 event.arg = frame;
3976 kbd_buffer_store_event (&event);
3977
3978 event.kind = TOOL_BAR_EVENT;
3979 event.frame_or_window = frame;
3980 event.arg = key;
3981 /* Convert between the modifier bits GDK uses and the modifier bits
3982 Emacs uses. This assumes GDK and X masks are the same, which they are when
3983 this is written. */
3984 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), mod);
3985 kbd_buffer_store_event (&event);
3986
3987 /* Return focus to the frame after we have clicked on a detached
3988 tool bar button. */
3989 Fx_focus_frame (frame);
3990 }
3991
3992 /* Callback function invoked when a tool bar item is pressed in a detached
3993 tool bar or the overflow drop down menu.
3994 We just call xg_tool_bar_callback.
3995 W is the menu item widget that got pressed,
3996 CLIENT_DATA is an integer that is the index of the button in the
3997 tool bar. 0 is the first button. */
3998
3999 static void
4000 xg_tool_bar_proxy_callback (GtkWidget *w, gpointer client_data)
4001 {
4002 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
4003 XG_TOOL_BAR_PROXY_BUTTON));
4004 xg_tool_bar_callback (wbutton, client_data);
4005 }
4006
4007
4008 static gboolean
4009 xg_tool_bar_help_callback (GtkWidget *w,
4010 GdkEventCrossing *event,
4011 gpointer client_data);
4012
4013 /* This callback is called when a help is to be shown for an item in
4014 the detached tool bar when the detached tool bar it is not expanded. */
4015
4016 static gboolean
4017 xg_tool_bar_proxy_help_callback (GtkWidget *w,
4018 GdkEventCrossing *event,
4019 gpointer client_data)
4020 {
4021 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
4022 XG_TOOL_BAR_PROXY_BUTTON));
4023
4024 return xg_tool_bar_help_callback (wbutton, event, client_data);
4025 }
4026
4027 static GtkWidget *
4028 xg_get_tool_bar_widgets (GtkWidget *vb, GtkWidget **wimage)
4029 {
4030 GList *clist = gtk_container_get_children (GTK_CONTAINER (vb));
4031 GtkWidget *c1 = clist->data;
4032 GtkWidget *c2 = clist->next ? clist->next->data : NULL;
4033
4034 *wimage = GTK_IS_IMAGE (c1) ? c1 : c2;
4035 g_list_free (clist);
4036 return GTK_IS_LABEL (c1) ? c1 : c2;
4037 }
4038
4039
4040 /* This callback is called when a tool item should create a proxy item,
4041 such as for the overflow menu. Also called when the tool bar is detached.
4042 If we don't create a proxy menu item, the detached tool bar will be
4043 blank. */
4044
4045 static gboolean
4046 xg_tool_bar_menu_proxy (GtkToolItem *toolitem, gpointer user_data)
4047 {
4048 GtkButton *wbutton = GTK_BUTTON (XG_BIN_CHILD (XG_BIN_CHILD (toolitem)));
4049 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4050 GtkWidget *c1;
4051 GtkLabel *wlbl = GTK_LABEL (xg_get_tool_bar_widgets (vb, &c1));
4052 GtkImage *wimage = GTK_IMAGE (c1);
4053 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label
4054 (wlbl ? gtk_label_get_text (wlbl) : "");
4055 GtkWidget *wmenuimage;
4056
4057
4058 if (gtk_button_get_use_stock (wbutton))
4059 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
4060 GTK_ICON_SIZE_MENU);
4061 else
4062 {
4063 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
4064 GtkImageType store_type = gtk_image_get_storage_type (wimage);
4065
4066 g_object_set (G_OBJECT (settings), "gtk-menu-images", TRUE, NULL);
4067
4068 if (store_type == GTK_IMAGE_STOCK)
4069 {
4070 gchar *stock_id;
4071 gtk_image_get_stock (wimage, &stock_id, NULL);
4072 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
4073 }
4074 else if (store_type == GTK_IMAGE_ICON_SET)
4075 {
4076 GtkIconSet *icon_set;
4077 gtk_image_get_icon_set (wimage, &icon_set, NULL);
4078 wmenuimage = gtk_image_new_from_icon_set (icon_set,
4079 GTK_ICON_SIZE_MENU);
4080 }
4081 else if (store_type == GTK_IMAGE_PIXBUF)
4082 {
4083 gint width, height;
4084
4085 if (settings &&
4086 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
4087 &width, &height))
4088 {
4089 GdkPixbuf *src_pixbuf, *dest_pixbuf;
4090
4091 src_pixbuf = gtk_image_get_pixbuf (wimage);
4092 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
4093 GDK_INTERP_BILINEAR);
4094
4095 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
4096 }
4097 else
4098 {
4099 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
4100 emacs_abort ();
4101 }
4102 }
4103 else if (store_type == GTK_IMAGE_ICON_NAME)
4104 {
4105 const gchar *icon_name;
4106 GtkIconSize icon_size;
4107
4108 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
4109 wmenuimage = gtk_image_new_from_icon_name (icon_name,
4110 GTK_ICON_SIZE_MENU);
4111 }
4112 else
4113 {
4114 fprintf (stderr, "internal error: store_type is %d\n", store_type);
4115 emacs_abort ();
4116 }
4117 }
4118 if (wmenuimage)
4119 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
4120
4121 g_signal_connect (G_OBJECT (wmenuitem),
4122 "activate",
4123 G_CALLBACK (xg_tool_bar_proxy_callback),
4124 user_data);
4125
4126
4127 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
4128 (gpointer) wbutton);
4129 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
4130 gtk_widget_set_sensitive (wmenuitem,
4131 gtk_widget_get_sensitive (GTK_WIDGET (wbutton)));
4132
4133 /* Use enter/leave notify to show help. We use the events
4134 rather than the GtkButton specific signals "enter" and
4135 "leave", so we can have only one callback. The event
4136 will tell us what kind of event it is. */
4137 g_signal_connect (G_OBJECT (wmenuitem),
4138 "enter-notify-event",
4139 G_CALLBACK (xg_tool_bar_proxy_help_callback),
4140 user_data);
4141 g_signal_connect (G_OBJECT (wmenuitem),
4142 "leave-notify-event",
4143 G_CALLBACK (xg_tool_bar_proxy_help_callback),
4144 user_data);
4145
4146 return TRUE;
4147 }
4148
4149 /* This callback is called when a tool bar is detached. We must set
4150 the height of the tool bar to zero when this happens so frame sizes
4151 are correctly calculated.
4152 WBOX is the handle box widget that enables detach/attach of the tool bar.
4153 W is the tool bar widget.
4154 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
4155
4156 static void
4157 xg_tool_bar_detach_callback (GtkHandleBox *wbox,
4158 GtkWidget *w,
4159 gpointer client_data)
4160 {
4161 struct frame *f = client_data;
4162
4163 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
4164 NULL);
4165
4166 if (f)
4167 {
4168 GtkRequisition req, req2;
4169
4170 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4171 gtk_widget_get_preferred_size (w, NULL, &req2);
4172 req.width -= req2.width;
4173 req.height -= req2.height;
4174 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4175 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4176 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4177 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4178 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4179 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4180 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4181 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4182 xg_height_or_width_changed (f);
4183 }
4184 }
4185
4186 /* This callback is called when a tool bar is reattached. We must set
4187 the height of the tool bar when this happens so frame sizes
4188 are correctly calculated.
4189 WBOX is the handle box widget that enables detach/attach of the tool bar.
4190 W is the tool bar widget.
4191 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
4192
4193 static void
4194 xg_tool_bar_attach_callback (GtkHandleBox *wbox,
4195 GtkWidget *w,
4196 gpointer client_data)
4197 {
4198 struct frame *f = client_data;
4199 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
4200
4201 if (f)
4202 {
4203 GtkRequisition req, req2;
4204
4205 gtk_widget_get_preferred_size (GTK_WIDGET (wbox), NULL, &req);
4206 gtk_widget_get_preferred_size (w, NULL, &req2);
4207 req.width += req2.width;
4208 req.height += req2.height;
4209 if (FRAME_TOOLBAR_TOP_HEIGHT (f) != 0)
4210 FRAME_TOOLBAR_TOP_HEIGHT (f) = req.height;
4211 else if (FRAME_TOOLBAR_BOTTOM_HEIGHT (f) != 0)
4212 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = req.height;
4213 else if (FRAME_TOOLBAR_RIGHT_WIDTH (f) != 0)
4214 FRAME_TOOLBAR_RIGHT_WIDTH (f) = req.width;
4215 else if (FRAME_TOOLBAR_LEFT_WIDTH (f) != 0)
4216 FRAME_TOOLBAR_LEFT_WIDTH (f) = req.width;
4217 xg_height_or_width_changed (f);
4218 }
4219 }
4220
4221 /* This callback is called when the mouse enters or leaves a tool bar item.
4222 It is used for displaying and hiding the help text.
4223 W is the tool bar item, a button.
4224 EVENT is either an enter event or leave event.
4225 CLIENT_DATA is an integer that is the index of the button in the
4226 tool bar. 0 is the first button.
4227
4228 Returns FALSE to tell GTK to keep processing this event. */
4229
4230 static gboolean
4231 xg_tool_bar_help_callback (GtkWidget *w,
4232 GdkEventCrossing *event,
4233 gpointer client_data)
4234 {
4235 intptr_t idx = (intptr_t) client_data;
4236 struct frame *f = g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
4237 Lisp_Object help, frame;
4238
4239 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
4240 return FALSE;
4241
4242 if (event->type == GDK_ENTER_NOTIFY)
4243 {
4244 idx *= TOOL_BAR_ITEM_NSLOTS;
4245 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
4246
4247 if (NILP (help))
4248 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
4249 }
4250 else
4251 help = Qnil;
4252
4253 XSETFRAME (frame, f);
4254 kbd_buffer_store_help_event (frame, help);
4255
4256 return FALSE;
4257 }
4258
4259
4260 /* This callback is called when a tool bar item shall be redrawn.
4261 It modifies the expose event so that the GtkImage widget redraws the
4262 whole image. This to overcome a bug that makes GtkImage draw the image
4263 in the wrong place when it tries to redraw just a part of the image.
4264 W is the GtkImage to be redrawn.
4265 EVENT is the expose event for W.
4266 CLIENT_DATA is unused.
4267
4268 Returns FALSE to tell GTK to keep processing this event. */
4269
4270 #ifndef HAVE_GTK3
4271 static gboolean
4272 xg_tool_bar_item_expose_callback (GtkWidget *w,
4273 GdkEventExpose *event,
4274 gpointer client_data)
4275 {
4276 gint width, height;
4277
4278 gdk_drawable_get_size (event->window, &width, &height);
4279 event->area.x -= width > event->area.width ? width-event->area.width : 0;
4280 event->area.y -= height > event->area.height ? height-event->area.height : 0;
4281
4282 event->area.x = max (0, event->area.x);
4283 event->area.y = max (0, event->area.y);
4284
4285 event->area.width = max (width, event->area.width);
4286 event->area.height = max (height, event->area.height);
4287
4288 return FALSE;
4289 }
4290 #endif
4291
4292 #ifdef HAVE_GTK_ORIENTABLE_SET_ORIENTATION
4293 #define toolbar_set_orientation(w, o) \
4294 gtk_orientable_set_orientation (GTK_ORIENTABLE (w), o)
4295 #else
4296 #define toolbar_set_orientation(w, o) \
4297 gtk_toolbar_set_orientation (GTK_TOOLBAR (w), o)
4298 #endif
4299
4300 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4301 #define TOOLBAR_TOP_WIDGET(x) ((x)->handlebox_widget)
4302 #else
4303 #define TOOLBAR_TOP_WIDGET(x) ((x)->toolbar_widget)
4304 #endif
4305
4306 /* Attach a tool bar to frame F. */
4307
4308 static void
4309 xg_pack_tool_bar (struct frame *f, Lisp_Object pos)
4310 {
4311 struct x_output *x = f->output_data.x;
4312 bool into_hbox = EQ (pos, Qleft) || EQ (pos, Qright);
4313 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4314
4315 toolbar_set_orientation (x->toolbar_widget,
4316 into_hbox
4317 ? GTK_ORIENTATION_VERTICAL
4318 : GTK_ORIENTATION_HORIZONTAL);
4319 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4320 if (!x->handlebox_widget)
4321 {
4322 top_widget = x->handlebox_widget = gtk_handle_box_new ();
4323 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
4324 G_CALLBACK (xg_tool_bar_detach_callback), f);
4325 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
4326 G_CALLBACK (xg_tool_bar_attach_callback), f);
4327 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
4328 x->toolbar_widget);
4329 }
4330 #endif
4331
4332 if (into_hbox)
4333 {
4334 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4335 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4336 GTK_POS_TOP);
4337 #endif
4338 gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget,
4339 FALSE, FALSE, 0);
4340
4341 if (EQ (pos, Qleft))
4342 gtk_box_reorder_child (GTK_BOX (x->hbox_widget),
4343 top_widget,
4344 0);
4345 x->toolbar_in_hbox = true;
4346 }
4347 else
4348 {
4349 bool vbox_pos = x->menubar_widget != 0;
4350 #ifdef HAVE_GTK_HANDLE_BOX_NEW
4351 gtk_handle_box_set_handle_position (GTK_HANDLE_BOX (x->handlebox_widget),
4352 GTK_POS_LEFT);
4353 #endif
4354 gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget,
4355 FALSE, FALSE, 0);
4356
4357 if (EQ (pos, Qtop))
4358 gtk_box_reorder_child (GTK_BOX (x->vbox_widget),
4359 top_widget,
4360 vbox_pos);
4361 x->toolbar_in_hbox = false;
4362 }
4363 x->toolbar_is_packed = true;
4364 }
4365
4366 static bool xg_update_tool_bar_sizes (struct frame *f);
4367
4368 static void
4369 tb_size_cb (GtkWidget *widget,
4370 GdkRectangle *allocation,
4371 gpointer user_data)
4372 {
4373 /* When tool bar is created it has one preferred size. But when size is
4374 allocated between widgets, it may get another. So we must update
4375 size hints if tool bar size changes. Seen on Fedora 18 at least. */
4376 struct frame *f = user_data;
4377 if (xg_update_tool_bar_sizes (f))
4378 x_wm_set_size_hint (f, 0, 0);
4379 }
4380
4381 /* Create a tool bar for frame F. */
4382
4383 static void
4384 xg_create_tool_bar (struct frame *f)
4385 {
4386 struct x_output *x = f->output_data.x;
4387 #if GTK_CHECK_VERSION (3, 3, 6)
4388 GtkStyleContext *gsty;
4389 #endif
4390 struct xg_frame_tb_info *tbinfo
4391 = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4392 TB_INFO_KEY);
4393 if (! tbinfo)
4394 {
4395 tbinfo = xmalloc (sizeof (*tbinfo));
4396 tbinfo->last_tool_bar = Qnil;
4397 tbinfo->style = Qnil;
4398 tbinfo->hmargin = tbinfo->vmargin = 0;
4399 tbinfo->dir = GTK_TEXT_DIR_NONE;
4400 tbinfo->n_last_items = 0;
4401 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4402 TB_INFO_KEY,
4403 tbinfo);
4404 }
4405
4406 x->toolbar_widget = gtk_toolbar_new ();
4407
4408 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
4409
4410 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
4411 toolbar_set_orientation (x->toolbar_widget, GTK_ORIENTATION_HORIZONTAL);
4412 g_signal_connect (x->toolbar_widget, "size-allocate",
4413 G_CALLBACK (tb_size_cb), f);
4414 #if GTK_CHECK_VERSION (3, 3, 6)
4415 gsty = gtk_widget_get_style_context (x->toolbar_widget);
4416 gtk_style_context_add_class (gsty, "primary-toolbar");
4417 #endif
4418 }
4419
4420
4421 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
4422
4423 /* Find the right-to-left image named by RTL in the tool bar images for F.
4424 Returns IMAGE if RTL is not found. */
4425
4426 static Lisp_Object
4427 find_rtl_image (struct frame *f, Lisp_Object image, Lisp_Object rtl)
4428 {
4429 int i;
4430 Lisp_Object file, rtl_name;
4431 struct gcpro gcpro1, gcpro2;
4432 GCPRO2 (file, rtl_name);
4433
4434 rtl_name = Ffile_name_nondirectory (rtl);
4435
4436 for (i = 0; i < f->n_tool_bar_items; ++i)
4437 {
4438 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
4439 if (!NILP (file = file_for_image (rtl_image)))
4440 {
4441 file = call1 (intern ("file-name-sans-extension"),
4442 Ffile_name_nondirectory (file));
4443 if (! NILP (Fequal (file, rtl_name)))
4444 {
4445 image = rtl_image;
4446 break;
4447 }
4448 }
4449 }
4450
4451 return image;
4452 }
4453
4454 static GtkToolItem *
4455 xg_make_tool_item (struct frame *f,
4456 GtkWidget *wimage,
4457 GtkWidget **wbutton,
4458 const char *label,
4459 int i, bool horiz, bool text_image)
4460 {
4461 GtkToolItem *ti = gtk_tool_item_new ();
4462 GtkWidget *vb = gtk_box_new (horiz
4463 ? GTK_ORIENTATION_HORIZONTAL
4464 : GTK_ORIENTATION_VERTICAL,
4465 0);
4466 GtkWidget *wb = gtk_button_new ();
4467 /* The eventbox is here so we can have tooltips on disabled items. */
4468 GtkWidget *weventbox = gtk_event_box_new ();
4469 #if GTK_CHECK_VERSION (3, 3, 6)
4470 GtkCssProvider *css_prov = gtk_css_provider_new ();
4471 GtkStyleContext *gsty;
4472
4473 gtk_css_provider_load_from_data (css_prov,
4474 "GtkEventBox {"
4475 " background-color: transparent;"
4476 "}",
4477 -1, NULL);
4478
4479 gsty = gtk_widget_get_style_context (weventbox);
4480 gtk_style_context_add_provider (gsty,
4481 GTK_STYLE_PROVIDER (css_prov),
4482 GTK_STYLE_PROVIDER_PRIORITY_USER);
4483 g_object_unref (css_prov);
4484 #endif
4485
4486 gtk_box_set_homogeneous (GTK_BOX (vb), FALSE);
4487
4488 if (wimage && !text_image)
4489 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4490 if (label)
4491 gtk_box_pack_start (GTK_BOX (vb), gtk_label_new (label), TRUE, TRUE, 0);
4492 if (wimage && text_image)
4493 gtk_box_pack_start (GTK_BOX (vb), wimage, TRUE, TRUE, 0);
4494
4495 gtk_button_set_focus_on_click (GTK_BUTTON (wb), FALSE);
4496 gtk_button_set_relief (GTK_BUTTON (wb), GTK_RELIEF_NONE);
4497 gtk_container_add (GTK_CONTAINER (wb), vb);
4498 gtk_container_add (GTK_CONTAINER (weventbox), wb);
4499 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4500
4501 if (wimage || label)
4502 {
4503 intptr_t ii = i;
4504 gpointer gi = (gpointer) ii;
4505
4506 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4507 G_CALLBACK (xg_tool_bar_menu_proxy),
4508 gi);
4509
4510 g_signal_connect (G_OBJECT (wb), "clicked",
4511 G_CALLBACK (xg_tool_bar_callback),
4512 gi);
4513
4514 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4515
4516 #ifndef HAVE_GTK3
4517 /* Catch expose events to overcome an annoying redraw bug, see
4518 comment for xg_tool_bar_item_expose_callback. */
4519 g_signal_connect (G_OBJECT (ti),
4520 "expose-event",
4521 G_CALLBACK (xg_tool_bar_item_expose_callback),
4522 0);
4523 #endif
4524 gtk_tool_item_set_homogeneous (ti, FALSE);
4525
4526 /* Callback to save modifier mask (Shift/Control, etc). GTK makes
4527 no distinction based on modifiers in the activate callback,
4528 so we have to do it ourselves. */
4529 g_signal_connect (wb, "button-release-event",
4530 G_CALLBACK (xg_tool_bar_button_cb),
4531 NULL);
4532
4533 g_object_set_data (G_OBJECT (wb), XG_FRAME_DATA, (gpointer)f);
4534
4535 /* Use enter/leave notify to show help. We use the events
4536 rather than the GtkButton specific signals "enter" and
4537 "leave", so we can have only one callback. The event
4538 will tell us what kind of event it is. */
4539 g_signal_connect (G_OBJECT (weventbox),
4540 "enter-notify-event",
4541 G_CALLBACK (xg_tool_bar_help_callback),
4542 gi);
4543 g_signal_connect (G_OBJECT (weventbox),
4544 "leave-notify-event",
4545 G_CALLBACK (xg_tool_bar_help_callback),
4546 gi);
4547 }
4548
4549 if (wbutton) *wbutton = wb;
4550
4551 return ti;
4552 }
4553
4554 static bool
4555 is_box_type (GtkWidget *vb, bool is_horizontal)
4556 {
4557 #ifdef HAVE_GTK3
4558 bool ret = 0;
4559 if (GTK_IS_BOX (vb))
4560 {
4561 GtkOrientation ori = gtk_orientable_get_orientation (GTK_ORIENTABLE (vb));
4562 ret = (ori == GTK_ORIENTATION_HORIZONTAL && is_horizontal)
4563 || (ori == GTK_ORIENTATION_VERTICAL && ! is_horizontal);
4564 }
4565 return ret;
4566 #else
4567 return is_horizontal ? GTK_IS_VBOX (vb) : GTK_IS_HBOX (vb);
4568 #endif
4569 }
4570
4571
4572 static bool
4573 xg_tool_item_stale_p (GtkWidget *wbutton, const char *stock_name,
4574 const char *icon_name, const struct image *img,
4575 const char *label, bool horiz)
4576 {
4577 gpointer old;
4578 GtkWidget *wimage;
4579 GtkWidget *vb = XG_BIN_CHILD (wbutton);
4580 GtkWidget *wlbl = xg_get_tool_bar_widgets (vb, &wimage);
4581
4582 /* Check if the tool icon matches. */
4583 if (stock_name && wimage)
4584 {
4585 old = g_object_get_data (G_OBJECT (wimage),
4586 XG_TOOL_BAR_STOCK_NAME);
4587 if (!old || strcmp (old, stock_name))
4588 return 1;
4589 }
4590 else if (icon_name && wimage)
4591 {
4592 old = g_object_get_data (G_OBJECT (wimage),
4593 XG_TOOL_BAR_ICON_NAME);
4594 if (!old || strcmp (old, icon_name))
4595 return 1;
4596 }
4597 else if (wimage)
4598 {
4599 gpointer gold_img = g_object_get_data (G_OBJECT (wimage),
4600 XG_TOOL_BAR_IMAGE_DATA);
4601 Pixmap old_img = (Pixmap) gold_img;
4602 if (old_img != img->pixmap)
4603 return 1;
4604 }
4605
4606 /* Check button configuration and label. */
4607 if (is_box_type (vb, horiz)
4608 || (label ? (wlbl == NULL) : (wlbl != NULL)))
4609 return 1;
4610
4611 /* Ensure label is correct. */
4612 if (label && wlbl)
4613 gtk_label_set_text (GTK_LABEL (wlbl), label);
4614 return 0;
4615 }
4616
4617 static bool
4618 xg_update_tool_bar_sizes (struct frame *f)
4619 {
4620 struct x_output *x = f->output_data.x;
4621 GtkRequisition req;
4622 int nl = 0, nr = 0, nt = 0, nb = 0;
4623 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4624
4625 gtk_widget_get_preferred_size (GTK_WIDGET (top_widget), NULL, &req);
4626 if (x->toolbar_in_hbox)
4627 {
4628 int pos;
4629 gtk_container_child_get (GTK_CONTAINER (x->hbox_widget),
4630 top_widget,
4631 "position", &pos, NULL);
4632 if (pos == 0) nl = req.width;
4633 else nr = req.width;
4634 }
4635 else
4636 {
4637 int pos;
4638 gtk_container_child_get (GTK_CONTAINER (x->vbox_widget),
4639 top_widget,
4640 "position", &pos, NULL);
4641 if (pos == 0 || (pos == 1 && x->menubar_widget)) nt = req.height;
4642 else nb = req.height;
4643 }
4644
4645 if (nl != FRAME_TOOLBAR_LEFT_WIDTH (f)
4646 || nr != FRAME_TOOLBAR_RIGHT_WIDTH (f)
4647 || nt != FRAME_TOOLBAR_TOP_HEIGHT (f)
4648 || nb != FRAME_TOOLBAR_BOTTOM_HEIGHT (f))
4649 {
4650 FRAME_TOOLBAR_RIGHT_WIDTH (f) = FRAME_TOOLBAR_LEFT_WIDTH (f)
4651 = FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4652 FRAME_TOOLBAR_LEFT_WIDTH (f) = nl;
4653 FRAME_TOOLBAR_RIGHT_WIDTH (f) = nr;
4654 FRAME_TOOLBAR_TOP_HEIGHT (f) = nt;
4655 FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = nb;
4656 return 1;
4657 }
4658
4659 return 0;
4660 }
4661
4662
4663 /* Update the tool bar for frame F. Add new buttons and remove old. */
4664
4665 void
4666 update_frame_tool_bar (struct frame *f)
4667 {
4668 int i, j;
4669 struct x_output *x = f->output_data.x;
4670 int hmargin = 0, vmargin = 0;
4671 GtkToolbar *wtoolbar;
4672 GtkToolItem *ti;
4673 GtkTextDirection dir;
4674 Lisp_Object style;
4675 bool text_image, horiz;
4676 struct xg_frame_tb_info *tbinfo;
4677
4678 if (! FRAME_GTK_WIDGET (f))
4679 return;
4680
4681 block_input ();
4682
4683 if (RANGED_INTEGERP (1, Vtool_bar_button_margin, INT_MAX))
4684 {
4685 hmargin = XFASTINT (Vtool_bar_button_margin);
4686 vmargin = XFASTINT (Vtool_bar_button_margin);
4687 }
4688 else if (CONSP (Vtool_bar_button_margin))
4689 {
4690 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin), INT_MAX))
4691 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
4692
4693 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin), INT_MAX))
4694 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
4695 }
4696
4697 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
4698 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
4699 i.e. zero. This means that margins less than
4700 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
4701 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4702 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
4703
4704 if (! x->toolbar_widget)
4705 xg_create_tool_bar (f);
4706
4707 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
4708 dir = gtk_widget_get_direction (GTK_WIDGET (wtoolbar));
4709
4710 style = Ftool_bar_get_system_style ();
4711
4712 /* Are we up to date? */
4713 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4714 TB_INFO_KEY);
4715
4716 if (! NILP (tbinfo->last_tool_bar) && ! NILP (f->tool_bar_items)
4717 && tbinfo->n_last_items == f->n_tool_bar_items
4718 && tbinfo->hmargin == hmargin && tbinfo->vmargin == vmargin
4719 && tbinfo->dir == dir
4720 && ! NILP (Fequal (tbinfo->style, style))
4721 && ! NILP (Fequal (tbinfo->last_tool_bar, f->tool_bar_items)))
4722 {
4723 unblock_input ();
4724 return;
4725 }
4726
4727 tbinfo->last_tool_bar = f->tool_bar_items;
4728 tbinfo->n_last_items = f->n_tool_bar_items;
4729 tbinfo->style = style;
4730 tbinfo->hmargin = hmargin;
4731 tbinfo->vmargin = vmargin;
4732 tbinfo->dir = dir;
4733
4734 text_image = EQ (style, Qtext_image_horiz);
4735 horiz = EQ (style, Qboth_horiz) || text_image;
4736
4737 for (i = j = 0; i < f->n_tool_bar_items; ++i)
4738 {
4739 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
4740 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
4741 int idx;
4742 ptrdiff_t img_id;
4743 int icon_size = 0;
4744 struct image *img = NULL;
4745 Lisp_Object image;
4746 Lisp_Object stock = Qnil;
4747 GtkStockItem stock_item;
4748 char *stock_name = NULL;
4749 char *icon_name = NULL;
4750 Lisp_Object rtl;
4751 GtkWidget *wbutton = NULL;
4752 Lisp_Object specified_file;
4753 bool vert_only = ! NILP (PROP (TOOL_BAR_ITEM_VERT_ONLY));
4754 const char *label
4755 = (EQ (style, Qimage) || (vert_only && horiz)) ? NULL
4756 : STRINGP (PROP (TOOL_BAR_ITEM_LABEL))
4757 ? SSDATA (PROP (TOOL_BAR_ITEM_LABEL))
4758 : "";
4759
4760 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4761
4762 /* If this is a separator, use a gtk separator item. */
4763 if (EQ (PROP (TOOL_BAR_ITEM_TYPE), Qt))
4764 {
4765 if (ti == NULL || !GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4766 {
4767 if (ti)
4768 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4769 GTK_WIDGET (ti));
4770 ti = gtk_separator_tool_item_new ();
4771 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4772 }
4773 j++;
4774 continue;
4775 }
4776
4777 /* Otherwise, the tool-bar item is an ordinary button. */
4778
4779 if (ti && GTK_IS_SEPARATOR_TOOL_ITEM (ti))
4780 {
4781 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4782 ti = NULL;
4783 }
4784
4785 if (ti) wbutton = XG_BIN_CHILD (XG_BIN_CHILD (ti));
4786
4787 /* Ignore invalid image specifications. */
4788 image = PROP (TOOL_BAR_ITEM_IMAGES);
4789 if (!valid_image_p (image))
4790 {
4791 if (ti)
4792 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4793 GTK_WIDGET (ti));
4794 continue;
4795 }
4796
4797 specified_file = file_for_image (image);
4798 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4799 stock = call1 (Qx_gtk_map_stock, specified_file);
4800
4801 if (STRINGP (stock))
4802 {
4803 stock_name = SSDATA (stock);
4804 if (stock_name[0] == 'n' && stock_name[1] == ':')
4805 {
4806 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4807 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
4808
4809 icon_name = stock_name + 2;
4810 stock_name = NULL;
4811 stock = Qnil;
4812
4813 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
4814 icon_name = NULL;
4815 else
4816 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4817 }
4818 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
4819 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4820 else
4821 {
4822 stock = Qnil;
4823 stock_name = NULL;
4824 }
4825 }
4826
4827 if (stock_name == NULL && icon_name == NULL)
4828 {
4829 /* No stock image, or stock item not known. Try regular
4830 image. If image is a vector, choose it according to the
4831 button state. */
4832 if (dir == GTK_TEXT_DIR_RTL
4833 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4834 && STRINGP (rtl))
4835 image = find_rtl_image (f, image, rtl);
4836
4837 if (VECTORP (image))
4838 {
4839 if (enabled_p)
4840 idx = (selected_p
4841 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4842 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4843 else
4844 idx = (selected_p
4845 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4846 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4847
4848 eassert (ASIZE (image) >= idx);
4849 image = AREF (image, idx);
4850 }
4851 else
4852 idx = -1;
4853
4854 img_id = lookup_image (f, image);
4855 img = IMAGE_FROM_ID (f, img_id);
4856 prepare_image_for_display (f, img);
4857
4858 if (img->load_failed_p || img->pixmap == None)
4859 {
4860 if (ti)
4861 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4862 GTK_WIDGET (ti));
4863 continue;
4864 }
4865 }
4866
4867 /* If there is an existing widget, check if it's stale; if so,
4868 remove it and make a new tool item from scratch. */
4869 if (ti && xg_tool_item_stale_p (wbutton, stock_name, icon_name,
4870 img, label, horiz))
4871 {
4872 gtk_container_remove (GTK_CONTAINER (wtoolbar),
4873 GTK_WIDGET (ti));
4874 ti = NULL;
4875 }
4876
4877 if (ti == NULL)
4878 {
4879 GtkWidget *w;
4880
4881 /* Save the image so we can see if an update is needed the
4882 next time we call xg_tool_item_match_p. */
4883 if (EQ (style, Qtext))
4884 w = NULL;
4885 else if (stock_name)
4886 {
4887 w = gtk_image_new_from_stock (stock_name, icon_size);
4888 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4889 (gpointer) xstrdup (stock_name),
4890 (GDestroyNotify) xfree);
4891 }
4892 else if (icon_name)
4893 {
4894 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4895 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4896 (gpointer) xstrdup (icon_name),
4897 (GDestroyNotify) xfree);
4898 }
4899 else
4900 {
4901 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4902 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4903 (gpointer)img->pixmap);
4904 }
4905
4906 if (w) gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4907 ti = xg_make_tool_item (f, w, &wbutton, label, i, horiz, text_image);
4908 gtk_toolbar_insert (GTK_TOOLBAR (wtoolbar), ti, j);
4909 }
4910
4911 #undef PROP
4912
4913 gtk_widget_set_sensitive (wbutton, enabled_p);
4914 j++;
4915 }
4916
4917 /* Remove buttons not longer needed. */
4918 do
4919 {
4920 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (wtoolbar), j);
4921 if (ti)
4922 gtk_container_remove (GTK_CONTAINER (wtoolbar), GTK_WIDGET (ti));
4923 } while (ti != NULL);
4924
4925 if (f->n_tool_bar_items != 0)
4926 {
4927 if (! x->toolbar_is_packed)
4928 xg_pack_tool_bar (f, f->tool_bar_position);
4929 gtk_widget_show_all (TOOLBAR_TOP_WIDGET (x));
4930 if (xg_update_tool_bar_sizes (f))
4931 xg_height_or_width_changed (f);
4932 }
4933
4934 unblock_input ();
4935 }
4936
4937 /* Deallocate all resources for the tool bar on frame F.
4938 Remove the tool bar. */
4939
4940 void
4941 free_frame_tool_bar (struct frame *f)
4942 {
4943 struct x_output *x = f->output_data.x;
4944
4945 if (x->toolbar_widget)
4946 {
4947 struct xg_frame_tb_info *tbinfo;
4948 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4949
4950 block_input ();
4951 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4952 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
4953 if (x->toolbar_is_packed)
4954 {
4955 if (x->toolbar_in_hbox)
4956 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
4957 top_widget);
4958 else
4959 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4960 top_widget);
4961 }
4962 else
4963 gtk_widget_destroy (x->toolbar_widget);
4964
4965 x->toolbar_widget = 0;
4966 TOOLBAR_TOP_WIDGET (x) = 0;
4967 x->toolbar_is_packed = false;
4968 FRAME_TOOLBAR_TOP_HEIGHT (f) = FRAME_TOOLBAR_BOTTOM_HEIGHT (f) = 0;
4969 FRAME_TOOLBAR_LEFT_WIDTH (f) = FRAME_TOOLBAR_RIGHT_WIDTH (f) = 0;
4970
4971 tbinfo = g_object_get_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4972 TB_INFO_KEY);
4973 if (tbinfo)
4974 {
4975 xfree (tbinfo);
4976 g_object_set_data (G_OBJECT (FRAME_GTK_OUTER_WIDGET (f)),
4977 TB_INFO_KEY,
4978 NULL);
4979 }
4980
4981 xg_height_or_width_changed (f);
4982
4983 unblock_input ();
4984 }
4985 }
4986
4987 void
4988 xg_change_toolbar_position (struct frame *f, Lisp_Object pos)
4989 {
4990 struct x_output *x = f->output_data.x;
4991 GtkWidget *top_widget = TOOLBAR_TOP_WIDGET (x);
4992
4993 if (! x->toolbar_widget || ! top_widget)
4994 return;
4995
4996 block_input ();
4997 g_object_ref (top_widget);
4998 if (x->toolbar_is_packed)
4999 {
5000 if (x->toolbar_in_hbox)
5001 gtk_container_remove (GTK_CONTAINER (x->hbox_widget),
5002 top_widget);
5003 else
5004 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
5005 top_widget);
5006 }
5007
5008 xg_pack_tool_bar (f, pos);
5009 g_object_unref (top_widget);
5010 if (xg_update_tool_bar_sizes (f))
5011 xg_height_or_width_changed (f);
5012
5013 unblock_input ();
5014 }
5015
5016
5017 \f
5018 /***********************************************************************
5019 Initializing
5020 ***********************************************************************/
5021 void
5022 xg_initialize (void)
5023 {
5024 GtkBindingSet *binding_set;
5025 GtkSettings *settings;
5026
5027 #if HAVE_XFT
5028 /* Work around a bug with corrupted data if libXft gets unloaded. This way
5029 we keep it permanently linked in. */
5030 XftInit (0);
5031 #endif
5032
5033 gdpy_def = NULL;
5034 xg_ignore_gtk_scrollbar = 0;
5035 #ifdef HAVE_GTK_TEAROFF_MENU_ITEM_NEW
5036 xg_detached_menus = 0;
5037 #endif
5038 xg_menu_cb_list.prev = xg_menu_cb_list.next =
5039 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
5040
5041 id_to_widget.max_size = id_to_widget.used = 0;
5042 id_to_widget.widgets = 0;
5043
5044 settings = gtk_settings_get_for_screen (gdk_display_get_default_screen
5045 (gdk_display_get_default ()));
5046 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
5047 bindings. It doesn't seem to be any way to remove properties,
5048 so we set it to "" which in means "no key". */
5049 gtk_settings_set_string_property (settings,
5050 "gtk-menu-bar-accel",
5051 "",
5052 EMACS_CLASS);
5053
5054 /* Make GTK text input widgets use Emacs style keybindings. This is
5055 Emacs after all. */
5056 gtk_settings_set_string_property (settings,
5057 "gtk-key-theme-name",
5058 "Emacs",
5059 EMACS_CLASS);
5060
5061 /* Make dialogs close on C-g. Since file dialog inherits from
5062 dialog, this works for them also. */
5063 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
5064 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5065 "close", 0);
5066
5067 /* Make menus close on C-g. */
5068 binding_set = gtk_binding_set_by_class (g_type_class_ref
5069 (GTK_TYPE_MENU_SHELL));
5070 gtk_binding_entry_add_signal (binding_set, GDK_KEY_g, GDK_CONTROL_MASK,
5071 "cancel", 0);
5072 update_theme_scrollbar_width ();
5073
5074 #ifdef HAVE_FREETYPE
5075 x_last_font_name = NULL;
5076 #endif
5077 }
5078
5079 #endif /* USE_GTK */