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