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