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