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