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