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