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