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