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