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