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