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