Fix permissions handling (CVE-2010-0825).
[emacs.git] / src / gtkutil.c
blob2764382e8a13456cfeabd63bced4a3001985e91a
1 /* Functions for creating and updating GTK widgets.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #ifdef USE_GTK
23 #include <string.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include <setjmp.h>
27 #include "lisp.h"
28 #include "xterm.h"
29 #include "blockinput.h"
30 #include "syssignal.h"
31 #include "window.h"
32 #include "gtkutil.h"
33 #include "termhooks.h"
34 #include "keyboard.h"
35 #include "charset.h"
36 #include "coding.h"
37 #include <gdk/gdkkeysyms.h>
39 #ifdef HAVE_XFT
40 #include <X11/Xft/Xft.h>
41 #endif
43 #define FRAME_TOTAL_PIXEL_HEIGHT(f) \
44 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
46 /* Avoid "differ in sign" warnings */
47 #define SSDATA(x) ((char *) SDATA (x))
50 /***********************************************************************
51 Display handling functions
52 ***********************************************************************/
54 #ifdef HAVE_GTK_MULTIDISPLAY
56 /* Keep track of the default display, or NULL if there is none. Emacs
57 may close all its displays. */
59 static GdkDisplay *gdpy_def;
61 /* When the GTK widget W is to be created on a display for F that
62 is not the default display, set the display for W.
63 W can be a GtkMenu or a GtkWindow widget. */
65 static void
66 xg_set_screen (w, f)
67 GtkWidget *w;
68 FRAME_PTR f;
70 if (FRAME_X_DISPLAY (f) != GDK_DISPLAY ())
72 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
73 GdkScreen *gscreen = gdk_display_get_default_screen (gdpy);
75 if (GTK_IS_MENU (w))
76 gtk_menu_set_screen (GTK_MENU (w), gscreen);
77 else
78 gtk_window_set_screen (GTK_WINDOW (w), gscreen);
83 #else /* not HAVE_GTK_MULTIDISPLAY */
85 /* Make some defines so we can use the GTK 2.2 functions when
86 compiling with GTK 2.0. */
88 #define xg_set_screen(w, f)
89 #define gdk_xid_table_lookup_for_display(dpy, w) gdk_xid_table_lookup (w)
90 #define gdk_pixmap_foreign_new_for_display(dpy, p) gdk_pixmap_foreign_new (p)
91 #define gdk_cursor_new_for_display(dpy, c) gdk_cursor_new (c)
92 #define gdk_x11_lookup_xdisplay(dpy) 0
93 #define GdkDisplay void
95 #endif /* not HAVE_GTK_MULTIDISPLAY */
97 /* Open a display named by DISPLAY_NAME. The display is returned in *DPY.
98 *DPY is set to NULL if the display can't be opened.
100 Returns non-zero if display could be opened, zero if display could not
101 be opened, and less than zero if the GTK version doesn't support
102 multipe displays. */
105 xg_display_open (display_name, dpy)
106 char *display_name;
107 Display **dpy;
109 #ifdef HAVE_GTK_MULTIDISPLAY
110 GdkDisplay *gdpy;
112 gdpy = gdk_display_open (display_name);
113 if (!gdpy_def && gdpy)
115 gdpy_def = gdpy;
116 gdk_display_manager_set_default_display (gdk_display_manager_get (),
117 gdpy);
120 *dpy = gdpy ? GDK_DISPLAY_XDISPLAY (gdpy) : NULL;
121 return gdpy != NULL;
123 #else /* not HAVE_GTK_MULTIDISPLAY */
125 return -1;
126 #endif /* not HAVE_GTK_MULTIDISPLAY */
130 /* Close display DPY. */
132 void
133 xg_display_close (Display *dpy)
135 #ifdef HAVE_GTK_MULTIDISPLAY
136 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
138 /* If this is the default display, try to change it before closing.
139 If there is no other display to use, gdpy_def is set to NULL, and
140 the next call to xg_display_open resets the default display. */
141 if (gdk_display_get_default () == gdpy)
143 struct x_display_info *dpyinfo;
144 GdkDisplay *gdpy_new = NULL;
146 /* Find another display. */
147 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
148 if (dpyinfo->display != dpy)
150 gdpy_new = gdk_x11_lookup_xdisplay (dpyinfo->display);
151 gdk_display_manager_set_default_display (gdk_display_manager_get (),
152 gdpy_new);
153 break;
155 gdpy_def = gdpy_new;
158 #if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION < 10
159 /* GTK 2.2-2.8 has a bug that makes gdk_display_close crash (bug
160 http://bugzilla.gnome.org/show_bug.cgi?id=85715). This way we
161 can continue running, but there will be memory leaks. */
162 g_object_run_dispose (G_OBJECT (gdpy));
163 #else
164 /* This seems to be fixed in GTK 2.10. */
165 gdk_display_close (gdpy);
166 #endif
167 #endif /* HAVE_GTK_MULTIDISPLAY */
171 /***********************************************************************
172 Utility functions
173 ***********************************************************************/
174 /* The next two variables and functions are taken from lwlib. */
175 static widget_value *widget_value_free_list;
176 static int malloc_cpt;
178 /* Allocate a widget_value structure, either by taking one from the
179 widget_value_free_list or by malloc:ing a new one.
181 Return a pointer to the allocated structure. */
183 widget_value *
184 malloc_widget_value ()
186 widget_value *wv;
187 if (widget_value_free_list)
189 wv = widget_value_free_list;
190 widget_value_free_list = wv->free_list;
191 wv->free_list = 0;
193 else
195 wv = (widget_value *) xmalloc (sizeof (widget_value));
196 malloc_cpt++;
198 memset (wv, 0, sizeof (widget_value));
199 return wv;
202 /* This is analogous to free. It frees only what was allocated
203 by malloc_widget_value, and no substructures. */
205 void
206 free_widget_value (wv)
207 widget_value *wv;
209 if (wv->free_list)
210 abort ();
212 if (malloc_cpt > 25)
214 /* When the number of already allocated cells is too big,
215 We free it. */
216 xfree (wv);
217 malloc_cpt--;
219 else
221 wv->free_list = widget_value_free_list;
222 widget_value_free_list = wv;
227 /* Create and return the cursor to be used for popup menus and
228 scroll bars on display DPY. */
230 GdkCursor *
231 xg_create_default_cursor (dpy)
232 Display *dpy;
234 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (dpy);
235 return gdk_cursor_new_for_display (gdpy, GDK_LEFT_PTR);
238 /* Apply GMASK to GPIX and return a GdkPixbuf with an alpha channel. */
240 static GdkPixbuf *
241 xg_get_pixbuf_from_pix_and_mask (gpix, gmask, cmap)
242 GdkPixmap *gpix;
243 GdkPixmap *gmask;
244 GdkColormap *cmap;
246 int width, height;
247 GdkPixbuf *icon_buf, *tmp_buf;
249 gdk_drawable_get_size (gpix, &width, &height);
250 tmp_buf = gdk_pixbuf_get_from_drawable (NULL, gpix, cmap,
251 0, 0, 0, 0, width, height);
252 icon_buf = gdk_pixbuf_add_alpha (tmp_buf, FALSE, 0, 0, 0);
253 g_object_unref (G_OBJECT (tmp_buf));
255 if (gmask)
257 GdkPixbuf *mask_buf = gdk_pixbuf_get_from_drawable (NULL,
258 gmask,
259 NULL,
260 0, 0, 0, 0,
261 width, height);
262 guchar *pixels = gdk_pixbuf_get_pixels (icon_buf);
263 guchar *mask_pixels = gdk_pixbuf_get_pixels (mask_buf);
264 int rowstride = gdk_pixbuf_get_rowstride (icon_buf);
265 int mask_rowstride = gdk_pixbuf_get_rowstride (mask_buf);
266 int y;
268 for (y = 0; y < height; ++y)
270 guchar *iconptr, *maskptr;
271 int x;
273 iconptr = pixels + y * rowstride;
274 maskptr = mask_pixels + y * mask_rowstride;
276 for (x = 0; x < width; ++x)
278 /* In a bitmap, RGB is either 255/255/255 or 0/0/0. Checking
279 just R is sufficient. */
280 if (maskptr[0] == 0)
281 iconptr[3] = 0; /* 0, 1, 2 is R, G, B. 3 is alpha. */
283 iconptr += rowstride/width;
284 maskptr += mask_rowstride/width;
288 g_object_unref (G_OBJECT (mask_buf));
291 return icon_buf;
294 static Lisp_Object
295 file_for_image (image)
296 Lisp_Object image;
298 Lisp_Object specified_file = Qnil;
299 Lisp_Object tail;
300 extern Lisp_Object QCfile;
302 for (tail = XCDR (image);
303 NILP (specified_file) && CONSP (tail) && CONSP (XCDR (tail));
304 tail = XCDR (XCDR (tail)))
305 if (EQ (XCAR (tail), QCfile))
306 specified_file = XCAR (XCDR (tail));
308 return specified_file;
311 /* For the image defined in IMG, make and return a GtkImage. For displays with
312 8 planes or less we must make a GdkPixbuf and apply the mask manually.
313 Otherwise the highlightning and dimming the tool bar code in GTK does
314 will look bad. For display with more than 8 planes we just use the
315 pixmap and mask directly. For monochrome displays, GTK doesn't seem
316 able to use external pixmaps, it looks bad whatever we do.
317 The image is defined on the display where frame F is.
318 WIDGET is used to find the GdkColormap to use for the GdkPixbuf.
319 If OLD_WIDGET is NULL, a new widget is constructed and returned.
320 If OLD_WIDGET is not NULL, that widget is modified. */
322 static GtkWidget *
323 xg_get_image_for_pixmap (f, img, widget, old_widget)
324 FRAME_PTR f;
325 struct image *img;
326 GtkWidget *widget;
327 GtkImage *old_widget;
329 GdkPixmap *gpix;
330 GdkPixmap *gmask;
331 GdkDisplay *gdpy;
332 GdkColormap *cmap;
333 GdkPixbuf *icon_buf;
335 /* If we have a file, let GTK do all the image handling.
336 This seems to be the only way to make insensitive and activated icons
337 look good in all cases. */
338 Lisp_Object specified_file = file_for_image (img->spec);
339 Lisp_Object file;
341 /* We already loaded the image once before calling this
342 function, so this only fails if the image file has been removed.
343 In that case, use the pixmap already loaded. */
345 if (STRINGP (specified_file)
346 && STRINGP (file = x_find_image_file (specified_file)))
348 if (! old_widget)
349 old_widget = GTK_IMAGE (gtk_image_new_from_file (SSDATA (file)));
350 else
351 gtk_image_set_from_file (old_widget, SSDATA (file));
353 return GTK_WIDGET (old_widget);
356 /* No file, do the image handling ourselves. This will look very bad
357 on a monochrome display, and sometimes bad on all displays with
358 certain themes. */
360 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
361 gpix = gdk_pixmap_foreign_new_for_display (gdpy, img->pixmap);
362 gmask = img->mask ? gdk_pixmap_foreign_new_for_display (gdpy, img->mask) : 0;
364 /* This is a workaround to make icons look good on pseudo color
365 displays. Apparently GTK expects the images to have an alpha
366 channel. If they don't, insensitive and activated icons will
367 look bad. This workaround does not work on monochrome displays,
368 and is strictly not needed on true color/static color displays (i.e.
369 16 bits and higher). But we do it anyway so we get a pixbuf that is
370 not associated with the img->pixmap. The img->pixmap may be removed
371 by clearing the image cache and then the tool bar redraw fails, since
372 Gtk+ assumes the pixmap is always there. */
373 cmap = gtk_widget_get_colormap (widget);
374 icon_buf = xg_get_pixbuf_from_pix_and_mask (gpix, gmask, cmap);
376 if (! old_widget)
377 old_widget = GTK_IMAGE (gtk_image_new_from_pixbuf (icon_buf));
378 else
379 gtk_image_set_from_pixbuf (old_widget, icon_buf);
381 g_object_unref (G_OBJECT (icon_buf));
383 g_object_unref (G_OBJECT (gpix));
384 if (gmask) g_object_unref (G_OBJECT (gmask));
386 return GTK_WIDGET (old_widget);
390 /* Set CURSOR on W and all widgets W contain. We must do like this
391 for scroll bars and menu because they create widgets internally,
392 and it is those widgets that are visible. */
394 static void
395 xg_set_cursor (w, cursor)
396 GtkWidget *w;
397 GdkCursor *cursor;
399 GList *children = gdk_window_peek_children (w->window);
401 gdk_window_set_cursor (w->window, cursor);
403 /* The scroll bar widget has more than one GDK window (had to look at
404 the source to figure this out), and there is no way to set cursor
405 on widgets in GTK. So we must set the cursor for all GDK windows.
406 Ditto for menus. */
408 for ( ; children; children = g_list_next (children))
409 gdk_window_set_cursor (GDK_WINDOW (children->data), cursor);
412 /* Insert NODE into linked LIST. */
414 static void
415 xg_list_insert (xg_list_node *list, xg_list_node *node)
417 xg_list_node *list_start = list->next;
419 if (list_start) list_start->prev = node;
420 node->next = list_start;
421 node->prev = 0;
422 list->next = node;
425 /* Remove NODE from linked LIST. */
427 static void
428 xg_list_remove (xg_list_node *list, xg_list_node *node)
430 xg_list_node *list_start = list->next;
431 if (node == list_start)
433 list->next = node->next;
434 if (list->next) list->next->prev = 0;
436 else
438 node->prev->next = node->next;
439 if (node->next) node->next->prev = node->prev;
443 /* Allocate and return a utf8 version of STR. If STR is already
444 utf8 or NULL, just return STR.
445 If not, a new string is allocated and the caller must free the result
446 with g_free. */
448 static char *
449 get_utf8_string (str)
450 char *str;
452 char *utf8_str = str;
454 if (!str) return NULL;
456 /* If not UTF-8, try current locale. */
457 if (!g_utf8_validate (str, -1, NULL))
458 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
460 if (!utf8_str)
462 /* Probably some control characters in str. Escape them. */
463 size_t nr_bad = 0;
464 gsize bytes_read;
465 gsize bytes_written;
466 unsigned char *p = (unsigned char *)str;
467 char *cp, *up;
468 GError *error = NULL;
470 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
471 &bytes_written, &error))
472 && error->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
474 ++nr_bad;
475 p += bytes_written+1;
476 g_error_free (error);
477 error = NULL;
480 if (error)
482 g_error_free (error);
483 error = NULL;
485 if (cp) g_free (cp);
487 up = utf8_str = xmalloc (strlen (str) + nr_bad * 4 + 1);
488 p = (unsigned char *)str;
490 while (! (cp = g_locale_to_utf8 ((char *)p, -1, &bytes_read,
491 &bytes_written, &error))
492 && error->code == G_CONVERT_ERROR_ILLEGAL_SEQUENCE)
494 strncpy (up, (char *)p, bytes_written);
495 sprintf (up + bytes_written, "\\%03o", p[bytes_written]);
496 up[bytes_written+4] = '\0';
497 up += bytes_written+4;
498 p += bytes_written+1;
499 g_error_free (error);
500 error = NULL;
503 if (cp)
505 strcat (utf8_str, cp);
506 g_free (cp);
508 if (error)
510 g_error_free (error);
511 error = NULL;
514 return utf8_str;
519 /***********************************************************************
520 General functions for creating widgets, resizing, events, e.t.c.
521 ***********************************************************************/
523 /* Make a geometry string and pass that to GTK. It seems this is the
524 only way to get geometry position right if the user explicitly
525 asked for a position when starting Emacs.
526 F is the frame we shall set geometry for. */
528 static void
529 xg_set_geometry (f)
530 FRAME_PTR f;
532 if (f->size_hint_flags & USPosition)
534 int left = f->left_pos;
535 int xneg = f->size_hint_flags & XNegative;
536 int top = f->top_pos;
537 int yneg = f->size_hint_flags & YNegative;
538 char geom_str[32];
540 if (xneg)
541 left = -left;
542 if (yneg)
543 top = -top;
545 sprintf (geom_str, "=%dx%d%c%d%c%d",
546 FRAME_PIXEL_WIDTH (f),
547 FRAME_TOTAL_PIXEL_HEIGHT (f),
548 (xneg ? '-' : '+'), left,
549 (yneg ? '-' : '+'), top);
551 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
552 geom_str))
553 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
555 else if (f->size_hint_flags & PPosition)
556 gtk_window_move (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
557 f->left_pos, f->top_pos);
560 /* Clear under internal border if any. As we use a mix of Gtk+ and X calls
561 and use a GtkFixed widget, this doesn't happen automatically. */
563 static void
564 xg_clear_under_internal_border (f)
565 FRAME_PTR f;
567 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
569 GtkWidget *wfixed = f->output_data.x->edit_widget;
570 gtk_widget_queue_draw (wfixed);
571 gdk_window_process_all_updates ();
572 x_clear_area (FRAME_X_DISPLAY (f),
573 FRAME_X_WINDOW (f),
574 0, 0,
575 FRAME_PIXEL_WIDTH (f),
576 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
577 x_clear_area (FRAME_X_DISPLAY (f),
578 FRAME_X_WINDOW (f),
579 0, 0,
580 FRAME_INTERNAL_BORDER_WIDTH (f),
581 FRAME_PIXEL_HEIGHT (f), 0);
582 x_clear_area (FRAME_X_DISPLAY (f),
583 FRAME_X_WINDOW (f),
584 0, FRAME_PIXEL_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
585 FRAME_PIXEL_WIDTH (f),
586 FRAME_INTERNAL_BORDER_WIDTH (f), 0);
587 x_clear_area (FRAME_X_DISPLAY (f),
588 FRAME_X_WINDOW (f),
589 FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f),
591 FRAME_INTERNAL_BORDER_WIDTH (f),
592 FRAME_PIXEL_HEIGHT (f), 0);
596 /* Function to handle resize of our frame. As we have a Gtk+ tool bar
597 and a Gtk+ menu bar, we get resize events for the edit part of the
598 frame only. We let Gtk+ deal with the Gtk+ parts.
599 F is the frame to resize.
600 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
602 void
603 xg_frame_resized (f, pixelwidth, pixelheight)
604 FRAME_PTR f;
605 int pixelwidth, pixelheight;
607 int rows, columns;
609 if (pixelwidth == -1 && pixelheight == -1)
611 if (FRAME_GTK_WIDGET (f) && GTK_WIDGET_MAPPED (FRAME_GTK_WIDGET (f)))
612 gdk_window_get_geometry (FRAME_GTK_WIDGET (f)->window, 0, 0,
613 &pixelwidth, &pixelheight, 0);
614 else return;
618 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelheight);
619 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pixelwidth);
621 if (columns != FRAME_COLS (f)
622 || rows != FRAME_LINES (f)
623 || pixelwidth != FRAME_PIXEL_WIDTH (f)
624 || pixelheight != FRAME_PIXEL_HEIGHT (f))
626 FRAME_PIXEL_WIDTH (f) = pixelwidth;
627 FRAME_PIXEL_HEIGHT (f) = pixelheight;
629 xg_clear_under_internal_border (f);
630 change_frame_size (f, rows, columns, 0, 1, 0);
631 SET_FRAME_GARBAGED (f);
632 cancel_mouse_face (f);
636 /* Resize the outer window of frame F after chainging the height.
637 COLUMNS/ROWS is the size the edit area shall have after the resize. */
639 void
640 xg_frame_set_char_size (f, cols, rows)
641 FRAME_PTR f;
642 int cols;
643 int rows;
645 int pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
646 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
647 int pixelwidth;
649 if (FRAME_PIXEL_HEIGHT (f) == 0)
650 return;
652 /* Take into account the size of the scroll bar. Always use the
653 number of columns occupied by the scroll bar here otherwise we
654 might end up with a frame width that is not a multiple of the
655 frame's character width which is bad for vertically split
656 windows. */
657 f->scroll_bar_actual_width
658 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
660 compute_fringe_widths (f, 0);
662 /* FRAME_TEXT_COLS_TO_PIXEL_WIDTH uses scroll_bar_actual_width, so call it
663 after calculating that value. */
664 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
667 /* Do this before resize, as we don't know yet if we will be resized. */
668 xg_clear_under_internal_border (f);
670 /* Must resize our top level widget. Font size may have changed,
671 but not rows/cols. */
672 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
673 pixelwidth, pixelheight);
674 x_wm_set_size_hint (f, 0, 0);
676 SET_FRAME_GARBAGED (f);
677 cancel_mouse_face (f);
679 /* We can not call change_frame_size for a mapped frame,
680 we can not set pixel width/height either. The window manager may
681 override our resize request, XMonad does this all the time.
682 The best we can do is try to sync, so lisp code sees the updated
683 size as fast as possible.
684 For unmapped windows, we can set rows/cols. When
685 the frame is mapped again we will (hopefully) get the correct size. */
686 if (f->async_visible)
688 /* Must call this to flush out events */
689 (void)gtk_events_pending ();
690 gdk_flush ();
691 x_wait_for_event (f, ConfigureNotify);
693 else
695 change_frame_size (f, rows, cols, 0, 1, 0);
696 FRAME_PIXEL_WIDTH (f) = pixelwidth;
697 FRAME_PIXEL_HEIGHT (f) = pixelheight;
701 /* Handle height changes (i.e. add/remove menu/toolbar).
702 The policy is to keep the number of editable lines. */
704 static void
705 xg_height_changed (f)
706 FRAME_PTR f;
708 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
709 FRAME_PIXEL_WIDTH (f), FRAME_TOTAL_PIXEL_HEIGHT (f));
710 f->output_data.x->hint_flags = 0;
711 x_wm_set_size_hint (f, 0, 0);
714 /* Convert an X Window WSESC on display DPY to its corresponding GtkWidget.
715 Must be done like this, because GtkWidget:s can have "hidden"
716 X Window that aren't accessible.
718 Return 0 if no widget match WDESC. */
720 GtkWidget *
721 xg_win_to_widget (dpy, wdesc)
722 Display *dpy;
723 Window wdesc;
725 gpointer gdkwin;
726 GtkWidget *gwdesc = 0;
728 BLOCK_INPUT;
730 gdkwin = gdk_xid_table_lookup_for_display (gdk_x11_lookup_xdisplay (dpy),
731 wdesc);
732 if (gdkwin)
734 GdkEvent event;
735 event.any.window = gdkwin;
736 gwdesc = gtk_get_event_widget (&event);
739 UNBLOCK_INPUT;
740 return gwdesc;
743 /* Fill in the GdkColor C so that it represents PIXEL.
744 W is the widget that color will be used for. Used to find colormap. */
746 static void
747 xg_pix_to_gcolor (w, pixel, c)
748 GtkWidget *w;
749 unsigned long pixel;
750 GdkColor *c;
752 GdkColormap *map = gtk_widget_get_colormap (w);
753 gdk_colormap_query_color (map, pixel, c);
756 /* Create and set up the GTK widgets for frame F.
757 Return 0 if creation failed, non-zero otherwise. */
760 xg_create_frame_widgets (f)
761 FRAME_PTR f;
763 GtkWidget *wtop;
764 GtkWidget *wvbox;
765 GtkWidget *wfixed;
766 GdkColor bg;
767 GtkRcStyle *style;
768 char *title = 0;
770 BLOCK_INPUT;
772 if (FRAME_X_EMBEDDED_P (f))
773 wtop = gtk_plug_new (f->output_data.x->parent_desc);
774 else
775 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
777 xg_set_screen (wtop, f);
779 wvbox = gtk_vbox_new (FALSE, 0);
780 wfixed = gtk_fixed_new (); /* Must have this to place scroll bars */
782 if (! wtop || ! wvbox || ! wfixed)
784 if (wtop) gtk_widget_destroy (wtop);
785 if (wvbox) gtk_widget_destroy (wvbox);
786 if (wfixed) gtk_widget_destroy (wfixed);
788 UNBLOCK_INPUT;
789 return 0;
792 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
793 gtk_widget_set_name (wtop, EMACS_CLASS);
794 gtk_widget_set_name (wvbox, "pane");
795 gtk_widget_set_name (wfixed, SSDATA (Vx_resource_name));
797 /* If this frame has a title or name, set it in the title bar. */
798 if (! NILP (f->title)) title = SSDATA (ENCODE_UTF_8 (f->title));
799 else if (! NILP (f->name)) title = SSDATA (ENCODE_UTF_8 (f->name));
801 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
803 FRAME_GTK_OUTER_WIDGET (f) = wtop;
804 FRAME_GTK_WIDGET (f) = wfixed;
805 f->output_data.x->vbox_widget = wvbox;
807 gtk_fixed_set_has_window (GTK_FIXED (wfixed), TRUE);
809 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
810 gtk_box_pack_end (GTK_BOX (wvbox), wfixed, TRUE, TRUE, 0);
812 if (FRAME_EXTERNAL_TOOL_BAR (f))
813 update_frame_tool_bar (f);
815 /* We don't want this widget double buffered, because we draw on it
816 with regular X drawing primitives, so from a GTK/GDK point of
817 view, the widget is totally blank. When an expose comes, this
818 will make the widget blank, and then Emacs redraws it. This flickers
819 a lot, so we turn off double buffering. */
820 gtk_widget_set_double_buffered (wfixed, FALSE);
822 gtk_window_set_wmclass (GTK_WINDOW (wtop),
823 SSDATA (Vx_resource_name),
824 SSDATA (Vx_resource_class));
826 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
827 GTK is to destroy the widget. We want Emacs to do that instead. */
828 g_signal_connect (G_OBJECT (wtop), "delete-event",
829 G_CALLBACK (gtk_true), 0);
831 /* Convert our geometry parameters into a geometry string
832 and specify it.
833 GTK will itself handle calculating the real position this way. */
834 xg_set_geometry (f);
835 f->win_gravity
836 = gtk_window_get_gravity (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
838 gtk_widget_add_events (wfixed,
839 GDK_POINTER_MOTION_MASK
840 | GDK_EXPOSURE_MASK
841 | GDK_BUTTON_PRESS_MASK
842 | GDK_BUTTON_RELEASE_MASK
843 | GDK_KEY_PRESS_MASK
844 | GDK_ENTER_NOTIFY_MASK
845 | GDK_LEAVE_NOTIFY_MASK
846 | GDK_FOCUS_CHANGE_MASK
847 | GDK_STRUCTURE_MASK
848 | GDK_VISIBILITY_NOTIFY_MASK);
850 /* Must realize the windows so the X window gets created. It is used
851 by callers of this function. */
852 gtk_widget_realize (wfixed);
853 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
855 /* Since GTK clears its window by filling with the background color,
856 we must keep X and GTK background in sync. */
857 xg_pix_to_gcolor (wfixed, FRAME_BACKGROUND_PIXEL (f), &bg);
858 gtk_widget_modify_bg (wfixed, GTK_STATE_NORMAL, &bg);
860 /* Also, do not let any background pixmap to be set, this looks very
861 bad as Emacs overwrites the background pixmap with its own idea
862 of background color. */
863 style = gtk_widget_get_modifier_style (wfixed);
865 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
866 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
867 gtk_widget_modify_style (wfixed, style);
869 /* GTK does not set any border, and they look bad with GTK. */
870 /* That they look bad is no excuse for imposing this here. --Stef
871 It should be done by providing the proper default in Fx_create_Frame.
872 f->border_width = 0;
873 f->internal_border_width = 0; */
875 UNBLOCK_INPUT;
877 return 1;
880 /* Set the normal size hints for the window manager, for frame F.
881 FLAGS is the flags word to use--or 0 meaning preserve the flags
882 that the window now has.
883 If USER_POSITION is nonzero, we set the User Position
884 flag (this is useful when FLAGS is 0). */
886 void
887 x_wm_set_size_hint (f, flags, user_position)
888 FRAME_PTR f;
889 long flags;
890 int user_position;
892 /* Must use GTK routines here, otherwise GTK resets the size hints
893 to its own defaults. */
894 GdkGeometry size_hints;
895 gint hint_flags = 0;
896 int base_width, base_height;
897 int min_rows = 0, min_cols = 0;
898 int win_gravity = f->win_gravity;
900 /* Don't set size hints during initialization; that apparently leads
901 to a race condition. See the thread at
902 http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html */
903 if (NILP (Vafter_init_time) || !FRAME_GTK_OUTER_WIDGET (f))
904 return;
906 if (flags)
908 memset (&size_hints, 0, sizeof (size_hints));
909 f->output_data.x->size_hints = size_hints;
910 f->output_data.x->hint_flags = hint_flags;
912 else
913 flags = f->size_hint_flags;
915 size_hints = f->output_data.x->size_hints;
916 hint_flags = f->output_data.x->hint_flags;
918 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
919 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
920 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
922 hint_flags |= GDK_HINT_BASE_SIZE;
923 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
924 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0)
925 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
927 check_frame_size (f, &min_rows, &min_cols);
929 size_hints.base_width = base_width;
930 size_hints.base_height = base_height;
931 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
932 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
934 /* These currently have a one to one mapping with the X values, but I
935 don't think we should rely on that. */
936 hint_flags |= GDK_HINT_WIN_GRAVITY;
937 size_hints.win_gravity = 0;
938 if (win_gravity == NorthWestGravity)
939 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
940 else if (win_gravity == NorthGravity)
941 size_hints.win_gravity = GDK_GRAVITY_NORTH;
942 else if (win_gravity == NorthEastGravity)
943 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
944 else if (win_gravity == WestGravity)
945 size_hints.win_gravity = GDK_GRAVITY_WEST;
946 else if (win_gravity == CenterGravity)
947 size_hints.win_gravity = GDK_GRAVITY_CENTER;
948 else if (win_gravity == EastGravity)
949 size_hints.win_gravity = GDK_GRAVITY_EAST;
950 else if (win_gravity == SouthWestGravity)
951 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
952 else if (win_gravity == SouthGravity)
953 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
954 else if (win_gravity == SouthEastGravity)
955 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
956 else if (win_gravity == StaticGravity)
957 size_hints.win_gravity = GDK_GRAVITY_STATIC;
959 if (flags & PPosition) hint_flags |= GDK_HINT_POS;
960 if (flags & USPosition) hint_flags |= GDK_HINT_USER_POS;
961 if (flags & USSize) hint_flags |= GDK_HINT_USER_SIZE;
963 if (user_position)
965 hint_flags &= ~GDK_HINT_POS;
966 hint_flags |= GDK_HINT_USER_POS;
969 if (hint_flags != f->output_data.x->hint_flags
970 || memcmp (&size_hints,
971 &f->output_data.x->size_hints,
972 sizeof (size_hints)) != 0)
974 BLOCK_INPUT;
975 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
976 NULL, &size_hints, hint_flags);
977 f->output_data.x->size_hints = size_hints;
978 f->output_data.x->hint_flags = hint_flags;
979 UNBLOCK_INPUT;
983 /* Change background color of a frame.
984 Since GTK uses the background color to clear the window, we must
985 keep the GTK and X colors in sync.
986 F is the frame to change,
987 BG is the pixel value to change to. */
989 void
990 xg_set_background_color (f, bg)
991 FRAME_PTR f;
992 unsigned long bg;
994 if (FRAME_GTK_WIDGET (f))
996 GdkColor gdk_bg;
998 BLOCK_INPUT;
999 xg_pix_to_gcolor (FRAME_GTK_WIDGET (f), bg, &gdk_bg);
1000 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &gdk_bg);
1001 UNBLOCK_INPUT;
1006 /* Set the frame icon to ICON_PIXMAP/MASK. This must be done with GTK
1007 functions so GTK does not overwrite the icon. */
1009 void
1010 xg_set_frame_icon (f, icon_pixmap, icon_mask)
1011 FRAME_PTR f;
1012 Pixmap icon_pixmap;
1013 Pixmap icon_mask;
1015 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
1016 GdkPixmap *gpix = gdk_pixmap_foreign_new_for_display (gdpy, icon_pixmap);
1017 GdkPixmap *gmask = gdk_pixmap_foreign_new_for_display (gdpy, icon_mask);
1018 GdkPixbuf *gp = xg_get_pixbuf_from_pix_and_mask (gpix, gmask, NULL);
1020 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)), gp);
1025 /***********************************************************************
1026 Dialog functions
1027 ***********************************************************************/
1028 /* Return the dialog title to use for a dialog of type KEY.
1029 This is the encoding used by lwlib. We use the same for GTK. */
1031 static char *
1032 get_dialog_title (char key)
1034 char *title = "";
1036 switch (key) {
1037 case 'E': case 'e':
1038 title = "Error";
1039 break;
1041 case 'I': case 'i':
1042 title = "Information";
1043 break;
1045 case 'L': case 'l':
1046 title = "Prompt";
1047 break;
1049 case 'P': case 'p':
1050 title = "Prompt";
1051 break;
1053 case 'Q': case 'q':
1054 title = "Question";
1055 break;
1058 return title;
1061 /* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
1062 the dialog, but return TRUE so the event does not propagate further
1063 in GTK. This prevents GTK from destroying the dialog widget automatically
1064 and we can always destrou the widget manually, regardles of how
1065 it was popped down (button press or WM_DELETE_WINDOW).
1066 W is the dialog widget.
1067 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
1068 user_data is NULL (not used).
1070 Returns TRUE to end propagation of event. */
1072 static gboolean
1073 dialog_delete_callback (w, event, user_data)
1074 GtkWidget *w;
1075 GdkEvent *event;
1076 gpointer user_data;
1078 gtk_widget_unmap (w);
1079 return TRUE;
1082 /* Create a popup dialog window. See also xg_create_widget below.
1083 WV is a widget_value describing the dialog.
1084 SELECT_CB is the callback to use when a button has been pressed.
1085 DEACTIVATE_CB is the callback to use when the dialog pops down.
1087 Returns the GTK dialog widget. */
1089 static GtkWidget *
1090 create_dialog (wv, select_cb, deactivate_cb)
1091 widget_value *wv;
1092 GCallback select_cb;
1093 GCallback deactivate_cb;
1095 char *title = get_dialog_title (wv->name[0]);
1096 int total_buttons = wv->name[1] - '0';
1097 int right_buttons = wv->name[4] - '0';
1098 int left_buttons;
1099 int button_nr = 0;
1100 int button_spacing = 10;
1101 GtkWidget *wdialog = gtk_dialog_new ();
1102 widget_value *item;
1103 GtkBox *cur_box;
1104 GtkWidget *wvbox;
1105 GtkWidget *whbox_up;
1106 GtkWidget *whbox_down;
1108 /* If the number of buttons is greater than 4, make two rows of buttons
1109 instead. This looks better. */
1110 int make_two_rows = total_buttons > 4;
1112 if (right_buttons == 0) right_buttons = total_buttons/2;
1113 left_buttons = total_buttons - right_buttons;
1115 gtk_window_set_title (GTK_WINDOW (wdialog), title);
1116 gtk_widget_set_name (wdialog, "emacs-dialog");
1118 cur_box = GTK_BOX (GTK_DIALOG (wdialog)->action_area);
1120 if (make_two_rows)
1122 wvbox = gtk_vbox_new (TRUE, button_spacing);
1123 whbox_up = gtk_hbox_new (FALSE, 0);
1124 whbox_down = gtk_hbox_new (FALSE, 0);
1126 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
1127 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
1128 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
1130 cur_box = GTK_BOX (whbox_up);
1133 g_signal_connect (G_OBJECT (wdialog), "delete-event",
1134 G_CALLBACK (dialog_delete_callback), 0);
1136 if (deactivate_cb)
1138 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
1139 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
1142 for (item = wv->contents; item; item = item->next)
1144 char *utf8_label = get_utf8_string (item->value);
1145 GtkWidget *w;
1146 GtkRequisition req;
1148 if (item->name && strcmp (item->name, "message") == 0)
1150 /* This is the text part of the dialog. */
1151 w = gtk_label_new (utf8_label);
1152 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (wdialog)->vbox),
1153 gtk_label_new (""),
1154 FALSE, FALSE, 0);
1155 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (wdialog)->vbox), w,
1156 TRUE, TRUE, 0);
1157 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
1159 /* Try to make dialog look better. Must realize first so
1160 the widget can calculate the size it needs. */
1161 gtk_widget_realize (w);
1162 gtk_widget_size_request (w, &req);
1163 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (wdialog)->vbox),
1164 req.height);
1165 if (item->value && strlen (item->value) > 0)
1166 button_spacing = 2*req.width/strlen (item->value);
1168 else
1170 /* This is one button to add to the dialog. */
1171 w = gtk_button_new_with_label (utf8_label);
1172 if (! item->enabled)
1173 gtk_widget_set_sensitive (w, FALSE);
1174 if (select_cb)
1175 g_signal_connect (G_OBJECT (w), "clicked",
1176 select_cb, item->call_data);
1178 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
1179 if (++button_nr == left_buttons)
1181 if (make_two_rows)
1182 cur_box = GTK_BOX (whbox_down);
1183 else
1184 gtk_box_pack_start (cur_box,
1185 gtk_label_new (""),
1186 TRUE, TRUE,
1187 button_spacing);
1191 if (utf8_label && utf8_label != item->value)
1192 g_free (utf8_label);
1195 return wdialog;
1198 struct xg_dialog_data
1200 GMainLoop *loop;
1201 int response;
1202 GtkWidget *w;
1203 guint timerid;
1206 /* Function that is called when the file or font dialogs pop down.
1207 W is the dialog widget, RESPONSE is the response code.
1208 USER_DATA is what we passed in to g_signal_connect. */
1210 static void
1211 xg_dialog_response_cb (w,
1212 response,
1213 user_data)
1214 GtkDialog *w;
1215 gint response;
1216 gpointer user_data;
1218 struct xg_dialog_data *dd = (struct xg_dialog_data *)user_data;
1219 dd->response = response;
1220 g_main_loop_quit (dd->loop);
1224 /* Destroy the dialog. This makes it pop down. */
1226 static Lisp_Object
1227 pop_down_dialog (arg)
1228 Lisp_Object arg;
1230 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
1231 struct xg_dialog_data *dd = (struct xg_dialog_data *) p->pointer;
1233 BLOCK_INPUT;
1234 if (dd->w) gtk_widget_destroy (dd->w);
1235 if (dd->timerid != 0) g_source_remove (dd->timerid);
1237 g_main_loop_quit (dd->loop);
1238 g_main_loop_unref (dd->loop);
1240 UNBLOCK_INPUT;
1242 return Qnil;
1245 /* If there are any emacs timers pending, add a timeout to main loop in DATA.
1246 We pass in DATA as gpointer* so we can use this as a callback. */
1248 static gboolean
1249 xg_maybe_add_timer (data)
1250 gpointer data;
1252 struct xg_dialog_data *dd = (struct xg_dialog_data *) data;
1253 EMACS_TIME next_time = timer_check (1);
1254 long secs = EMACS_SECS (next_time);
1255 long usecs = EMACS_USECS (next_time);
1257 dd->timerid = 0;
1259 if (secs >= 0 && usecs >= 0 && secs < ((guint)-1)/1000)
1261 dd->timerid = g_timeout_add (secs * 1000 + usecs/1000,
1262 xg_maybe_add_timer,
1263 dd);
1265 return FALSE;
1269 /* Pops up a modal dialog W and waits for response.
1270 We don't use gtk_dialog_run because we want to process emacs timers.
1271 The dialog W is not destroyed when this function returns. */
1273 static int
1274 xg_dialog_run (f, w)
1275 FRAME_PTR f;
1276 GtkWidget *w;
1279 int count = SPECPDL_INDEX ();
1280 struct xg_dialog_data dd;
1282 xg_set_screen (w, f);
1283 gtk_window_set_transient_for (GTK_WINDOW (w),
1284 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1285 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1286 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
1288 dd.loop = g_main_loop_new (NULL, FALSE);
1289 dd.response = GTK_RESPONSE_CANCEL;
1290 dd.w = w;
1291 dd.timerid = 0;
1293 g_signal_connect (G_OBJECT (w),
1294 "response",
1295 G_CALLBACK (xg_dialog_response_cb),
1296 &dd);
1297 /* Don't destroy the widget if closed by the window manager close button. */
1298 g_signal_connect (G_OBJECT (w), "delete-event", G_CALLBACK (gtk_true), NULL);
1299 gtk_widget_show (w);
1301 record_unwind_protect (pop_down_dialog, make_save_value (&dd, 0));
1303 (void) xg_maybe_add_timer (&dd);
1304 g_main_loop_run (dd.loop);
1306 dd.w = 0;
1307 unbind_to (count, Qnil);
1309 return dd.response;
1313 /***********************************************************************
1314 File dialog functions
1315 ***********************************************************************/
1316 /* Return non-zero if the old file selection dialog is being used.
1317 Return zero if not. */
1320 xg_uses_old_file_dialog ()
1322 #ifdef HAVE_GTK_FILE_BOTH
1323 extern int x_gtk_use_old_file_dialog;
1324 return x_gtk_use_old_file_dialog;
1325 #else /* ! HAVE_GTK_FILE_BOTH */
1327 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1328 return 1;
1329 #else
1330 return 0;
1331 #endif
1333 #endif /* ! HAVE_GTK_FILE_BOTH */
1337 typedef char * (*xg_get_file_func) P_ ((GtkWidget *));
1339 #ifdef HAVE_GTK_FILE_CHOOSER_DIALOG_NEW
1341 /* Return the selected file for file chooser dialog W.
1342 The returned string must be free:d. */
1344 static char *
1345 xg_get_file_name_from_chooser (w)
1346 GtkWidget *w;
1348 return gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (w));
1351 /* Callback called when the "Show hidden files" toggle is pressed.
1352 WIDGET is the toggle widget, DATA is the file chooser dialog. */
1354 static void
1355 xg_toggle_visibility_cb (widget, data)
1356 GtkWidget *widget;
1357 gpointer data;
1359 GtkFileChooser *dialog = GTK_FILE_CHOOSER (data);
1360 gboolean visible;
1361 g_object_get (G_OBJECT (dialog), "show-hidden", &visible, NULL);
1362 g_object_set (G_OBJECT (dialog), "show-hidden", !visible, NULL);
1366 /* Callback called when a property changes in a file chooser.
1367 GOBJECT is the file chooser dialog, ARG1 describes the property.
1368 USER_DATA is the toggle widget in the file chooser dialog.
1369 We use this to update the "Show hidden files" toggle when the user
1370 changes that property by right clicking in the file list. */
1372 static void
1373 xg_toggle_notify_cb (gobject, arg1, user_data)
1374 GObject *gobject;
1375 GParamSpec *arg1;
1376 gpointer user_data;
1378 extern int x_gtk_show_hidden_files;
1380 if (strcmp (arg1->name, "show-hidden") == 0)
1382 GtkWidget *wtoggle = GTK_WIDGET (user_data);
1383 gboolean visible, toggle_on;
1385 g_object_get (G_OBJECT (gobject), "show-hidden", &visible, NULL);
1386 toggle_on = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (wtoggle));
1388 if (!!visible != !!toggle_on)
1390 g_signal_handlers_block_by_func (G_OBJECT (wtoggle),
1391 G_CALLBACK (xg_toggle_visibility_cb),
1392 gobject);
1393 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), visible);
1394 g_signal_handlers_unblock_by_func
1395 (G_OBJECT (wtoggle),
1396 G_CALLBACK (xg_toggle_visibility_cb),
1397 gobject);
1399 x_gtk_show_hidden_files = visible;
1403 /* Read a file name from the user using a file chooser dialog.
1404 F is the current frame.
1405 PROMPT is a prompt to show to the user. May not be NULL.
1406 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1407 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1408 file. *FUNC is set to a function that can be used to retrieve the
1409 selected file name from the returned widget.
1411 Returns the created widget. */
1413 static GtkWidget *
1414 xg_get_file_with_chooser (f, prompt, default_filename,
1415 mustmatch_p, only_dir_p, func)
1416 FRAME_PTR f;
1417 char *prompt;
1418 char *default_filename;
1419 int mustmatch_p, only_dir_p;
1420 xg_get_file_func *func;
1422 char message[1024];
1424 GtkWidget *filewin, *wtoggle, *wbox, *wmessage;
1425 GtkWindow *gwin = GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f));
1426 GtkFileChooserAction action = (mustmatch_p ?
1427 GTK_FILE_CHOOSER_ACTION_OPEN :
1428 GTK_FILE_CHOOSER_ACTION_SAVE);
1429 extern int x_gtk_show_hidden_files;
1430 extern int x_gtk_file_dialog_help_text;
1433 if (only_dir_p)
1434 action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1436 filewin = gtk_file_chooser_dialog_new (prompt, gwin, action,
1437 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1438 (mustmatch_p || only_dir_p ?
1439 GTK_STOCK_OPEN : GTK_STOCK_OK),
1440 GTK_RESPONSE_OK,
1441 NULL);
1442 gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (filewin), TRUE);
1444 wbox = gtk_vbox_new (FALSE, 0);
1445 gtk_widget_show (wbox);
1446 wtoggle = gtk_check_button_new_with_label ("Show hidden files.");
1448 if (x_gtk_show_hidden_files)
1450 g_object_set (G_OBJECT (filewin), "show-hidden", TRUE, NULL);
1451 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (wtoggle), TRUE);
1453 gtk_widget_show (wtoggle);
1454 g_signal_connect (G_OBJECT (wtoggle), "clicked",
1455 G_CALLBACK (xg_toggle_visibility_cb), filewin);
1456 g_signal_connect (G_OBJECT (filewin), "notify",
1457 G_CALLBACK (xg_toggle_notify_cb), wtoggle);
1459 if (x_gtk_file_dialog_help_text)
1461 message[0] = '\0';
1462 /* Gtk+ 2.10 has the file name text entry box integrated in the dialog.
1463 Show the C-l help text only for versions < 2.10. */
1464 if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE)
1465 strcat (message, "\nType C-l to display a file name text entry box.\n");
1466 strcat (message, "\nIf you don't like this file selector, use the "
1467 "corresponding\nkey binding or customize "
1468 "use-file-dialog to turn it off.");
1470 wmessage = gtk_label_new (message);
1471 gtk_widget_show (wmessage);
1474 gtk_box_pack_start (GTK_BOX (wbox), wtoggle, FALSE, FALSE, 0);
1475 if (x_gtk_file_dialog_help_text)
1476 gtk_box_pack_start (GTK_BOX (wbox), wmessage, FALSE, FALSE, 0);
1477 gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (filewin), wbox);
1479 if (default_filename)
1481 Lisp_Object file;
1482 struct gcpro gcpro1;
1483 char *utf8_filename;
1484 GCPRO1 (file);
1486 file = build_string (default_filename);
1488 /* File chooser does not understand ~/... in the file name. It must be
1489 an absolute name starting with /. */
1490 if (default_filename[0] != '/')
1491 file = Fexpand_file_name (file, Qnil);
1493 utf8_filename = SSDATA (ENCODE_UTF_8 (file));
1494 if (! NILP (Ffile_directory_p (file)))
1495 gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (filewin),
1496 utf8_filename);
1497 else
1499 gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (filewin),
1500 utf8_filename);
1501 if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
1503 char *cp = strrchr (utf8_filename, '/');
1504 if (cp) ++cp;
1505 else cp = utf8_filename;
1506 gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (filewin), cp);
1510 UNGCPRO;
1513 *func = xg_get_file_name_from_chooser;
1514 return filewin;
1516 #endif /* HAVE_GTK_FILE_CHOOSER_DIALOG_NEW */
1518 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1520 /* Return the selected file for file selector dialog W.
1521 The returned string must be free:d. */
1523 static char *
1524 xg_get_file_name_from_selector (w)
1525 GtkWidget *w;
1527 GtkFileSelection *filesel = GTK_FILE_SELECTION (w);
1528 return xstrdup ((char*) gtk_file_selection_get_filename (filesel));
1531 /* Create a file selection dialog.
1532 F is the current frame.
1533 PROMPT is a prompt to show to the user. May not be NULL.
1534 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1535 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1536 file. *FUNC is set to a function that can be used to retrieve the
1537 selected file name from the returned widget.
1539 Returns the created widget. */
1541 static GtkWidget *
1542 xg_get_file_with_selection (f, prompt, default_filename,
1543 mustmatch_p, only_dir_p, func)
1544 FRAME_PTR f;
1545 char *prompt;
1546 char *default_filename;
1547 int mustmatch_p, only_dir_p;
1548 xg_get_file_func *func;
1550 GtkWidget *filewin;
1551 GtkFileSelection *filesel;
1553 filewin = gtk_file_selection_new (prompt);
1554 filesel = GTK_FILE_SELECTION (filewin);
1556 if (default_filename)
1557 gtk_file_selection_set_filename (filesel, default_filename);
1559 if (mustmatch_p)
1561 /* The selection_entry part of filesel is not documented. */
1562 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
1563 gtk_file_selection_hide_fileop_buttons (filesel);
1566 *func = xg_get_file_name_from_selector;
1568 return filewin;
1570 #endif /* HAVE_GTK_FILE_SELECTION_NEW */
1572 /* Read a file name from the user using a file dialog, either the old
1573 file selection dialog, or the new file chooser dialog. Which to use
1574 depends on what the GTK version used has, and what the value of
1575 gtk-use-old-file-dialog.
1576 F is the current frame.
1577 PROMPT is a prompt to show to the user. May not be NULL.
1578 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
1579 If MUSTMATCH_P is non-zero, the returned file name must be an existing
1580 file.
1582 Returns a file name or NULL if no file was selected.
1583 The returned string must be freed by the caller. */
1585 char *
1586 xg_get_file_name (f, prompt, default_filename, mustmatch_p, only_dir_p)
1587 FRAME_PTR f;
1588 char *prompt;
1589 char *default_filename;
1590 int mustmatch_p, only_dir_p;
1592 GtkWidget *w = 0;
1593 char *fn = 0;
1594 int filesel_done = 0;
1595 xg_get_file_func func;
1597 #if defined (HAVE_GTK_AND_PTHREAD) && defined (__SIGRTMIN)
1598 /* I really don't know why this is needed, but without this the GLIBC add on
1599 library linuxthreads hangs when the Gnome file chooser backend creates
1600 threads. */
1601 sigblock (sigmask (__SIGRTMIN));
1602 #endif /* HAVE_GTK_AND_PTHREAD */
1604 #ifdef HAVE_GTK_FILE_BOTH
1606 if (xg_uses_old_file_dialog ())
1607 w = xg_get_file_with_selection (f, prompt, default_filename,
1608 mustmatch_p, only_dir_p, &func);
1609 else
1610 w = xg_get_file_with_chooser (f, prompt, default_filename,
1611 mustmatch_p, only_dir_p, &func);
1613 #else /* not HAVE_GTK_FILE_BOTH */
1615 #ifdef HAVE_GTK_FILE_SELECTION_NEW
1616 w = xg_get_file_with_selection (f, prompt, default_filename,
1617 mustmatch_p, only_dir_p, &func);
1618 #endif
1619 #ifdef HAVE_GTK_FILE_CHOOSER_DIALOG_NEW
1620 w = xg_get_file_with_chooser (f, prompt, default_filename,
1621 mustmatch_p, only_dir_p, &func);
1622 #endif
1624 #endif /* HAVE_GTK_FILE_BOTH */
1626 gtk_widget_set_name (w, "emacs-filedialog");
1628 filesel_done = xg_dialog_run (f, w);
1630 #if defined (HAVE_GTK_AND_PTHREAD) && defined (__SIGRTMIN)
1631 sigunblock (sigmask (__SIGRTMIN));
1632 #endif
1634 if (filesel_done == GTK_RESPONSE_OK)
1635 fn = (*func) (w);
1637 gtk_widget_destroy (w);
1638 return fn;
1641 #ifdef HAVE_FREETYPE
1642 /* Pop up a GTK font selector and return the name of the font the user
1643 selects, as a C string. The returned font name follows GTK's own
1644 format:
1646 `FAMILY [VALUE1 VALUE2] SIZE'
1648 This can be parsed using font_parse_fcname in font.c.
1649 DEFAULT_NAME, if non-zero, is the default font name. */
1651 char *
1652 xg_get_font_name (f, default_name)
1653 FRAME_PTR f;
1654 char *default_name;
1656 GtkWidget *w;
1657 char *fontname = NULL;
1658 int done = 0;
1660 #if defined (HAVE_GTK_AND_PTHREAD) && defined (__SIGRTMIN)
1661 sigblock (sigmask (__SIGRTMIN));
1662 #endif /* HAVE_GTK_AND_PTHREAD */
1664 w = gtk_font_selection_dialog_new ("Pick a font");
1665 if (!default_name)
1666 default_name = "Monospace 10";
1667 gtk_font_selection_dialog_set_font_name (GTK_FONT_SELECTION_DIALOG (w),
1668 default_name);
1670 gtk_widget_set_name (w, "emacs-fontdialog");
1672 done = xg_dialog_run (f, w);
1674 #if defined (HAVE_GTK_AND_PTHREAD) && defined (__SIGRTMIN)
1675 sigunblock (sigmask (__SIGRTMIN));
1676 #endif
1678 if (done == GTK_RESPONSE_OK)
1679 fontname = gtk_font_selection_dialog_get_font_name
1680 (GTK_FONT_SELECTION_DIALOG (w));
1682 gtk_widget_destroy (w);
1683 return fontname;
1685 #endif /* HAVE_FREETYPE */
1689 /***********************************************************************
1690 Menu functions.
1691 ***********************************************************************/
1693 /* The name of menu items that can be used for customization. Since GTK
1694 RC files are very crude and primitive, we have to set this on all
1695 menu item names so a user can easily customize menu items. */
1697 #define MENU_ITEM_NAME "emacs-menuitem"
1700 /* Linked list of all allocated struct xg_menu_cb_data. Used for marking
1701 during GC. The next member points to the items. */
1702 static xg_list_node xg_menu_cb_list;
1704 /* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
1705 during GC. The next member points to the items. */
1706 static xg_list_node xg_menu_item_cb_list;
1708 /* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
1709 F is the frame CL_DATA will be initialized for.
1710 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1712 The menu bar and all sub menus under the menu bar in a frame
1713 share the same structure, hence the reference count.
1715 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
1716 allocated xg_menu_cb_data if CL_DATA is NULL. */
1718 static xg_menu_cb_data *
1719 make_cl_data (cl_data, f, highlight_cb)
1720 xg_menu_cb_data *cl_data;
1721 FRAME_PTR f;
1722 GCallback highlight_cb;
1724 if (! cl_data)
1726 cl_data = (xg_menu_cb_data*) xmalloc (sizeof (*cl_data));
1727 cl_data->f = f;
1728 cl_data->menu_bar_vector = f->menu_bar_vector;
1729 cl_data->menu_bar_items_used = f->menu_bar_items_used;
1730 cl_data->highlight_cb = highlight_cb;
1731 cl_data->ref_count = 0;
1733 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
1736 cl_data->ref_count++;
1738 return cl_data;
1741 /* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
1742 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1744 When the menu bar is updated, menu items may have been added and/or
1745 removed, so menu_bar_vector and menu_bar_items_used change. We must
1746 then update CL_DATA since it is used to determine which menu
1747 item that is invoked in the menu.
1748 HIGHLIGHT_CB could change, there is no check that the same
1749 function is given when modifying a menu bar as was given when
1750 creating the menu bar. */
1752 static void
1753 update_cl_data (cl_data, f, highlight_cb)
1754 xg_menu_cb_data *cl_data;
1755 FRAME_PTR f;
1756 GCallback highlight_cb;
1758 if (cl_data)
1760 cl_data->f = f;
1761 cl_data->menu_bar_vector = f->menu_bar_vector;
1762 cl_data->menu_bar_items_used = f->menu_bar_items_used;
1763 cl_data->highlight_cb = highlight_cb;
1767 /* Decrease reference count for CL_DATA.
1768 If reference count is zero, free CL_DATA. */
1770 static void
1771 unref_cl_data (cl_data)
1772 xg_menu_cb_data *cl_data;
1774 if (cl_data && cl_data->ref_count > 0)
1776 cl_data->ref_count--;
1777 if (cl_data->ref_count == 0)
1779 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
1780 xfree (cl_data);
1785 /* Function that marks all lisp data during GC. */
1787 void
1788 xg_mark_data ()
1790 xg_list_node *iter;
1792 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
1793 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
1795 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
1797 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
1799 if (! NILP (cb_data->help))
1800 mark_object (cb_data->help);
1805 /* Callback called when a menu item is destroyed. Used to free data.
1806 W is the widget that is being destroyed (not used).
1807 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
1809 static void
1810 menuitem_destroy_callback (w, client_data)
1811 GtkWidget *w;
1812 gpointer client_data;
1814 if (client_data)
1816 xg_menu_item_cb_data *data = (xg_menu_item_cb_data*) client_data;
1817 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
1818 xfree (data);
1822 /* Callback called when the pointer enters/leaves a menu item.
1823 W is the parent of the menu item.
1824 EVENT is either an enter event or leave event.
1825 CLIENT_DATA is not used.
1827 Returns FALSE to tell GTK to keep processing this event. */
1829 static gboolean
1830 menuitem_highlight_callback (w, event, client_data)
1831 GtkWidget *w;
1832 GdkEventCrossing *event;
1833 gpointer client_data;
1835 GdkEvent ev;
1836 GtkWidget *subwidget;
1837 xg_menu_item_cb_data *data;
1839 ev.crossing = *event;
1840 subwidget = gtk_get_event_widget (&ev);
1841 data = (xg_menu_item_cb_data *) g_object_get_data (G_OBJECT (subwidget),
1842 XG_ITEM_DATA);
1843 if (data)
1845 if (! NILP (data->help) && data->cl_data->highlight_cb)
1847 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : data;
1848 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
1849 (*func) (subwidget, call_data);
1853 return FALSE;
1856 /* Callback called when a menu is destroyed. Used to free data.
1857 W is the widget that is being destroyed (not used).
1858 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
1860 static void
1861 menu_destroy_callback (w, client_data)
1862 GtkWidget *w;
1863 gpointer client_data;
1865 unref_cl_data ((xg_menu_cb_data*) client_data);
1868 /* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
1869 must be non-NULL) and can be inserted into a menu item.
1871 Returns the GtkHBox. */
1873 static GtkWidget *
1874 make_widget_for_menu_item (utf8_label, utf8_key)
1875 char *utf8_label;
1876 char *utf8_key;
1878 GtkWidget *wlbl;
1879 GtkWidget *wkey;
1880 GtkWidget *wbox;
1882 wbox = gtk_hbox_new (FALSE, 0);
1883 wlbl = gtk_label_new (utf8_label);
1884 wkey = gtk_label_new (utf8_key);
1886 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
1887 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
1889 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
1890 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
1892 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
1893 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
1894 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
1896 return wbox;
1899 /* Make and return a menu item widget with the key to the right.
1900 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
1901 UTF8_KEY is the text representing the key binding.
1902 ITEM is the widget_value describing the menu item.
1904 GROUP is an in/out parameter. If the menu item to be created is not
1905 part of any radio menu group, *GROUP contains NULL on entry and exit.
1906 If the menu item to be created is part of a radio menu group, on entry
1907 *GROUP contains the group to use, or NULL if this is the first item
1908 in the group. On exit, *GROUP contains the radio item group.
1910 Unfortunately, keys don't line up as nicely as in Motif,
1911 but the MacOS X version doesn't either, so I guess that is OK. */
1913 static GtkWidget *
1914 make_menu_item (utf8_label, utf8_key, item, group)
1915 char *utf8_label;
1916 char *utf8_key;
1917 widget_value *item;
1918 GSList **group;
1920 GtkWidget *w;
1921 GtkWidget *wtoadd = 0;
1923 /* It has been observed that some menu items have a NULL name field.
1924 This will lead to this function being called with a NULL utf8_label.
1925 GTK crashes on that so we set a blank label. Why there is a NULL
1926 name remains to be investigated. */
1927 if (! utf8_label) utf8_label = " ";
1929 if (utf8_key)
1930 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
1932 if (item->button_type == BUTTON_TYPE_TOGGLE)
1934 *group = NULL;
1935 if (utf8_key) w = gtk_check_menu_item_new ();
1936 else w = gtk_check_menu_item_new_with_label (utf8_label);
1937 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
1939 else if (item->button_type == BUTTON_TYPE_RADIO)
1941 if (utf8_key) w = gtk_radio_menu_item_new (*group);
1942 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
1943 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
1944 if (item->selected)
1945 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
1947 else
1949 *group = NULL;
1950 if (utf8_key) w = gtk_menu_item_new ();
1951 else w = gtk_menu_item_new_with_label (utf8_label);
1954 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
1955 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
1957 return w;
1960 /* Return non-zero if LABEL specifies a separator (GTK only has one
1961 separator type) */
1963 static const char* separator_names[] = {
1964 "space",
1965 "no-line",
1966 "single-line",
1967 "double-line",
1968 "single-dashed-line",
1969 "double-dashed-line",
1970 "shadow-etched-in",
1971 "shadow-etched-out",
1972 "shadow-etched-in-dash",
1973 "shadow-etched-out-dash",
1974 "shadow-double-etched-in",
1975 "shadow-double-etched-out",
1976 "shadow-double-etched-in-dash",
1977 "shadow-double-etched-out-dash",
1981 static int
1982 xg_separator_p (char *label)
1984 if (! label) return 0;
1985 else if (strlen (label) > 3
1986 && strncmp (label, "--", 2) == 0
1987 && label[2] != '-')
1989 int i;
1991 label += 2;
1992 for (i = 0; separator_names[i]; ++i)
1993 if (strcmp (label, separator_names[i]) == 0)
1994 return 1;
1996 else
1998 /* Old-style separator, maybe. It's a separator if it contains
1999 only dashes. */
2000 while (*label == '-')
2001 ++label;
2002 if (*label == 0) return 1;
2005 return 0;
2008 static int xg_detached_menus;
2010 /* Returns non-zero if there are detached menus. */
2013 xg_have_tear_offs ()
2015 return xg_detached_menus > 0;
2018 /* Callback invoked when a detached menu window is removed. Here we
2019 decrease the xg_detached_menus count.
2020 WIDGET is the top level window that is removed (the parent of the menu).
2021 CLIENT_DATA is not used. */
2023 static void
2024 tearoff_remove (widget, client_data)
2025 GtkWidget *widget;
2026 gpointer client_data;
2028 if (xg_detached_menus > 0) --xg_detached_menus;
2031 /* Callback invoked when a menu is detached. It increases the
2032 xg_detached_menus count.
2033 WIDGET is the GtkTearoffMenuItem.
2034 CLIENT_DATA is not used. */
2036 static void
2037 tearoff_activate (widget, client_data)
2038 GtkWidget *widget;
2039 gpointer client_data;
2041 GtkWidget *menu = gtk_widget_get_parent (widget);
2042 if (gtk_menu_get_tearoff_state (GTK_MENU (menu)))
2044 ++xg_detached_menus;
2045 g_signal_connect (G_OBJECT (gtk_widget_get_toplevel (widget)),
2046 "destroy",
2047 G_CALLBACK (tearoff_remove), 0);
2052 /* Create a menu item widget, and connect the callbacks.
2053 ITEM decribes the menu item.
2054 F is the frame the created menu belongs to.
2055 SELECT_CB is the callback to use when a menu item is selected.
2056 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2057 CL_DATA points to the callback data to be used for this menu.
2058 GROUP is an in/out parameter. If the menu item to be created is not
2059 part of any radio menu group, *GROUP contains NULL on entry and exit.
2060 If the menu item to be created is part of a radio menu group, on entry
2061 *GROUP contains the group to use, or NULL if this is the first item
2062 in the group. On exit, *GROUP contains the radio item group.
2064 Returns the created GtkWidget. */
2066 static GtkWidget *
2067 xg_create_one_menuitem (item, f, select_cb, highlight_cb, cl_data, group)
2068 widget_value *item;
2069 FRAME_PTR f;
2070 GCallback select_cb;
2071 GCallback highlight_cb;
2072 xg_menu_cb_data *cl_data;
2073 GSList **group;
2075 char *utf8_label;
2076 char *utf8_key;
2077 GtkWidget *w;
2078 xg_menu_item_cb_data *cb_data;
2080 utf8_label = get_utf8_string (item->name);
2081 utf8_key = get_utf8_string (item->key);
2083 w = make_menu_item (utf8_label, utf8_key, item, group);
2085 if (utf8_label && utf8_label != item->name) g_free (utf8_label);
2086 if (utf8_key && utf8_key != item->key) g_free (utf8_key);
2088 cb_data = xmalloc (sizeof (xg_menu_item_cb_data));
2090 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
2092 cb_data->select_id = 0;
2093 cb_data->help = item->help;
2094 cb_data->cl_data = cl_data;
2095 cb_data->call_data = item->call_data;
2097 g_signal_connect (G_OBJECT (w),
2098 "destroy",
2099 G_CALLBACK (menuitem_destroy_callback),
2100 cb_data);
2102 /* Put cb_data in widget, so we can get at it when modifying menubar */
2103 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
2105 /* final item, not a submenu */
2106 if (item->call_data && ! item->contents)
2108 if (select_cb)
2109 cb_data->select_id
2110 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
2113 return w;
2116 static GtkWidget *create_menus P_ ((widget_value *, FRAME_PTR, GCallback,
2117 GCallback, GCallback, int, int, int,
2118 GtkWidget *, xg_menu_cb_data *, char *));
2120 /* Create a full menu tree specified by DATA.
2121 F is the frame the created menu belongs to.
2122 SELECT_CB is the callback to use when a menu item is selected.
2123 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2124 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2125 POP_UP_P is non-zero if we shall create a popup menu.
2126 MENU_BAR_P is non-zero if we shall create a menu bar.
2127 ADD_TEAROFF_P is non-zero if we shall add a teroff menu item. Ignored
2128 if MENU_BAR_P is non-zero.
2129 TOPMENU is the topmost GtkWidget that others shall be placed under.
2130 It may be NULL, in that case we create the appropriate widget
2131 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
2132 CL_DATA is the callback data we shall use for this menu, or NULL
2133 if we haven't set the first callback yet.
2134 NAME is the name to give to the top level menu if this function
2135 creates it. May be NULL to not set any name.
2137 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
2138 not NULL.
2140 This function calls itself to create submenus. */
2142 static GtkWidget *
2143 create_menus (data, f, select_cb, deactivate_cb, highlight_cb,
2144 pop_up_p, menu_bar_p, add_tearoff_p, topmenu, cl_data, name)
2145 widget_value *data;
2146 FRAME_PTR f;
2147 GCallback select_cb;
2148 GCallback deactivate_cb;
2149 GCallback highlight_cb;
2150 int pop_up_p;
2151 int menu_bar_p;
2152 int add_tearoff_p;
2153 GtkWidget *topmenu;
2154 xg_menu_cb_data *cl_data;
2155 char *name;
2157 widget_value *item;
2158 GtkWidget *wmenu = topmenu;
2159 GSList *group = NULL;
2161 if (! topmenu)
2163 if (! menu_bar_p)
2165 wmenu = gtk_menu_new ();
2166 xg_set_screen (wmenu, f);
2167 /* Connect this to the menu instead of items so we get enter/leave for
2168 disabled items also. TODO: Still does not get enter/leave for
2169 disabled items in detached menus. */
2170 g_signal_connect (G_OBJECT (wmenu),
2171 "enter-notify-event",
2172 G_CALLBACK (menuitem_highlight_callback),
2173 NULL);
2174 g_signal_connect (G_OBJECT (wmenu),
2175 "leave-notify-event",
2176 G_CALLBACK (menuitem_highlight_callback),
2177 NULL);
2179 else
2181 wmenu = gtk_menu_bar_new ();
2182 /* Set width of menu bar to a small value so it doesn't enlarge
2183 a small initial frame size. The width will be set to the
2184 width of the frame later on when it is added to a container.
2185 height -1: Natural height. */
2186 gtk_widget_set_size_request (wmenu, 1, -1);
2189 /* Put cl_data on the top menu for easier access. */
2190 cl_data = make_cl_data (cl_data, f, highlight_cb);
2191 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
2192 g_signal_connect (G_OBJECT (wmenu), "destroy",
2193 G_CALLBACK (menu_destroy_callback), cl_data);
2195 if (name)
2196 gtk_widget_set_name (wmenu, name);
2198 if (deactivate_cb)
2199 g_signal_connect (G_OBJECT (wmenu),
2200 "selection-done", deactivate_cb, 0);
2203 if (! menu_bar_p && add_tearoff_p)
2205 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
2206 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
2208 g_signal_connect (G_OBJECT (tearoff), "activate",
2209 G_CALLBACK (tearoff_activate), 0);
2212 for (item = data; item; item = item->next)
2214 GtkWidget *w;
2216 if (pop_up_p && !item->contents && !item->call_data
2217 && !xg_separator_p (item->name))
2219 char *utf8_label;
2220 /* A title for a popup. We do the same as GTK does when
2221 creating titles, but it does not look good. */
2222 group = NULL;
2223 utf8_label = get_utf8_string (item->name);
2225 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
2226 w = gtk_menu_item_new_with_label (utf8_label);
2227 gtk_widget_set_sensitive (w, FALSE);
2228 if (utf8_label && utf8_label != item->name) g_free (utf8_label);
2230 else if (xg_separator_p (item->name))
2232 group = NULL;
2233 /* GTK only have one separator type. */
2234 w = gtk_separator_menu_item_new ();
2236 else
2238 w = xg_create_one_menuitem (item,
2240 item->contents ? 0 : select_cb,
2241 highlight_cb,
2242 cl_data,
2243 &group);
2245 /* Create a possibly empty submenu for menu bar items, since some
2246 themes don't highlight items correctly without it. */
2247 if (item->contents || menu_bar_p)
2249 GtkWidget *submenu = create_menus (item->contents,
2251 select_cb,
2252 deactivate_cb,
2253 highlight_cb,
2256 add_tearoff_p,
2258 cl_data,
2260 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2264 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
2265 gtk_widget_set_name (w, MENU_ITEM_NAME);
2268 return wmenu;
2271 /* Create a menubar, popup menu or dialog, depending on the TYPE argument.
2272 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
2273 with some text and buttons.
2274 F is the frame the created item belongs to.
2275 NAME is the name to use for the top widget.
2276 VAL is a widget_value structure describing items to be created.
2277 SELECT_CB is the callback to use when a menu item is selected or
2278 a dialog button is pressed.
2279 DEACTIVATE_CB is the callback to use when an item is deactivated.
2280 For a menu, when a sub menu is not shown anymore, for a dialog it is
2281 called when the dialog is popped down.
2282 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2284 Returns the widget created. */
2286 GtkWidget *
2287 xg_create_widget (type, name, f, val,
2288 select_cb, deactivate_cb, highlight_cb)
2289 char *type;
2290 char *name;
2291 FRAME_PTR f;
2292 widget_value *val;
2293 GCallback select_cb;
2294 GCallback deactivate_cb;
2295 GCallback highlight_cb;
2297 GtkWidget *w = 0;
2298 int menu_bar_p = strcmp (type, "menubar") == 0;
2299 int pop_up_p = strcmp (type, "popup") == 0;
2301 if (strcmp (type, "dialog") == 0)
2303 w = create_dialog (val, select_cb, deactivate_cb);
2304 xg_set_screen (w, f);
2305 gtk_window_set_transient_for (GTK_WINDOW (w),
2306 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
2307 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
2308 gtk_widget_set_name (w, "emacs-dialog");
2309 gtk_window_set_modal (GTK_WINDOW (w), TRUE);
2311 else if (menu_bar_p || pop_up_p)
2313 w = create_menus (val->contents,
2315 select_cb,
2316 deactivate_cb,
2317 highlight_cb,
2318 pop_up_p,
2319 menu_bar_p,
2320 menu_bar_p,
2323 name);
2325 /* Set the cursor to an arrow for popup menus when they are mapped.
2326 This is done by default for menu bar menus. */
2327 if (pop_up_p)
2329 /* Must realize so the GdkWindow inside the widget is created. */
2330 gtk_widget_realize (w);
2331 xg_set_cursor (w, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
2334 else
2336 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
2337 type);
2340 return w;
2343 /* Return the label for menu item WITEM. */
2345 static const char *
2346 xg_get_menu_item_label (witem)
2347 GtkMenuItem *witem;
2349 GtkLabel *wlabel = GTK_LABEL (gtk_bin_get_child (GTK_BIN (witem)));
2350 return gtk_label_get_label (wlabel);
2353 /* Return non-zero if the menu item WITEM has the text LABEL. */
2355 static int
2356 xg_item_label_same_p (witem, label)
2357 GtkMenuItem *witem;
2358 char *label;
2360 int is_same = 0;
2361 char *utf8_label = get_utf8_string (label);
2362 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
2364 if (! old_label && ! utf8_label)
2365 is_same = 1;
2366 else if (old_label && utf8_label)
2367 is_same = strcmp (utf8_label, old_label) == 0;
2369 if (utf8_label && utf8_label != label) g_free (utf8_label);
2371 return is_same;
2374 /* Destroy widgets in LIST. */
2376 static void
2377 xg_destroy_widgets (list)
2378 GList *list;
2380 GList *iter;
2382 for (iter = list; iter; iter = g_list_next (iter))
2384 GtkWidget *w = GTK_WIDGET (iter->data);
2386 /* Destroying the widget will remove it from the container it is in. */
2387 gtk_widget_destroy (w);
2391 /* Update the top level names in MENUBAR (i.e. not submenus).
2392 F is the frame the menu bar belongs to.
2393 *LIST is a list with the current menu bar names (menu item widgets).
2394 ITER is the item within *LIST that shall be updated.
2395 POS is the numerical position, starting at 0, of ITER in *LIST.
2396 VAL describes what the menu bar shall look like after the update.
2397 SELECT_CB is the callback to use when a menu item is selected.
2398 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2399 CL_DATA points to the callback data to be used for this menu bar.
2401 This function calls itself to walk through the menu bar names. */
2403 static void
2404 xg_update_menubar (menubar, f, list, iter, pos, val,
2405 select_cb, deactivate_cb, highlight_cb, cl_data)
2406 GtkWidget *menubar;
2407 FRAME_PTR f;
2408 GList **list;
2409 GList *iter;
2410 int pos;
2411 widget_value *val;
2412 GCallback select_cb;
2413 GCallback deactivate_cb;
2414 GCallback highlight_cb;
2415 xg_menu_cb_data *cl_data;
2417 if (! iter && ! val)
2418 return;
2419 else if (iter && ! val)
2421 /* Item(s) have been removed. Remove all remaining items. */
2422 xg_destroy_widgets (iter);
2424 /* Add a blank entry so the menubar doesn't collapse to nothing. */
2425 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2426 gtk_menu_item_new_with_label (""),
2428 /* All updated. */
2429 val = 0;
2430 iter = 0;
2432 else if (! iter && val)
2434 /* Item(s) added. Add all new items in one call. */
2435 create_menus (val, f, select_cb, deactivate_cb, highlight_cb,
2436 0, 1, 0, menubar, cl_data, 0);
2438 /* All updated. */
2439 val = 0;
2440 iter = 0;
2442 /* Below this neither iter or val is NULL */
2443 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
2445 /* This item is still the same, check next item. */
2446 val = val->next;
2447 iter = g_list_next (iter);
2448 ++pos;
2450 else /* This item is changed. */
2452 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
2453 GtkMenuItem *witem2 = 0;
2454 int val_in_menubar = 0;
2455 int iter_in_new_menubar = 0;
2456 GList *iter2;
2457 widget_value *cur;
2459 /* See if the changed entry (val) is present later in the menu bar */
2460 for (iter2 = iter;
2461 iter2 && ! val_in_menubar;
2462 iter2 = g_list_next (iter2))
2464 witem2 = GTK_MENU_ITEM (iter2->data);
2465 val_in_menubar = xg_item_label_same_p (witem2, val->name);
2468 /* See if the current entry (iter) is present later in the
2469 specification for the new menu bar. */
2470 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
2471 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
2473 if (val_in_menubar && ! iter_in_new_menubar)
2475 int nr = pos;
2477 /* This corresponds to:
2478 Current: A B C
2479 New: A C
2480 Remove B. */
2482 gtk_widget_ref (GTK_WIDGET (witem));
2483 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
2484 gtk_widget_destroy (GTK_WIDGET (witem));
2486 /* Must get new list since the old changed. */
2487 g_list_free (*list);
2488 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2489 while (nr-- > 0) iter = g_list_next (iter);
2491 else if (! val_in_menubar && ! iter_in_new_menubar)
2493 /* This corresponds to:
2494 Current: A B C
2495 New: A X C
2496 Rename B to X. This might seem to be a strange thing to do,
2497 since if there is a menu under B it will be totally wrong for X.
2498 But consider editing a C file. Then there is a C-mode menu
2499 (corresponds to B above).
2500 If then doing C-x C-f the minibuf menu (X above) replaces the
2501 C-mode menu. When returning from the minibuffer, we get
2502 back the C-mode menu. Thus we do:
2503 Rename B to X (C-mode to minibuf menu)
2504 Rename X to B (minibuf to C-mode menu).
2505 If the X menu hasn't been invoked, the menu under B
2506 is up to date when leaving the minibuffer. */
2507 GtkLabel *wlabel = GTK_LABEL (gtk_bin_get_child (GTK_BIN (witem)));
2508 char *utf8_label = get_utf8_string (val->name);
2509 GtkWidget *submenu = gtk_menu_item_get_submenu (witem);
2511 gtk_label_set_text (wlabel, utf8_label);
2513 /* If this item has a submenu that has been detached, change
2514 the title in the WM decorations also. */
2515 if (submenu && gtk_menu_get_tearoff_state (GTK_MENU (submenu)))
2516 /* Set the title of the detached window. */
2517 gtk_menu_set_title (GTK_MENU (submenu), utf8_label);
2519 iter = g_list_next (iter);
2520 val = val->next;
2521 ++pos;
2523 else if (! val_in_menubar && iter_in_new_menubar)
2525 /* This corresponds to:
2526 Current: A B C
2527 New: A X B C
2528 Insert X. */
2530 int nr = pos;
2531 GList *group = 0;
2532 GtkWidget *w = xg_create_one_menuitem (val,
2534 select_cb,
2535 highlight_cb,
2536 cl_data,
2537 &group);
2539 /* Create a possibly empty submenu for menu bar items, since some
2540 themes don't highlight items correctly without it. */
2541 GtkWidget *submenu = create_menus (NULL, f,
2542 select_cb, deactivate_cb,
2543 highlight_cb,
2544 0, 0, 0, 0, cl_data, 0);
2545 gtk_widget_set_name (w, MENU_ITEM_NAME);
2546 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
2547 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
2549 g_list_free (*list);
2550 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2551 while (nr-- > 0) iter = g_list_next (iter);
2552 iter = g_list_next (iter);
2553 val = val->next;
2554 ++pos;
2556 else /* if (val_in_menubar && iter_in_new_menubar) */
2558 int nr = pos;
2559 /* This corresponds to:
2560 Current: A B C
2561 New: A C B
2562 Move C before B */
2564 gtk_widget_ref (GTK_WIDGET (witem2));
2565 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
2566 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
2567 GTK_WIDGET (witem2), pos);
2568 gtk_widget_unref (GTK_WIDGET (witem2));
2570 g_list_free (*list);
2571 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
2572 while (nr-- > 0) iter = g_list_next (iter);
2573 if (iter) iter = g_list_next (iter);
2574 val = val->next;
2575 ++pos;
2579 /* Update the rest of the menu bar. */
2580 xg_update_menubar (menubar, f, list, iter, pos, val,
2581 select_cb, deactivate_cb, highlight_cb, cl_data);
2584 /* Update the menu item W so it corresponds to VAL.
2585 SELECT_CB is the callback to use when a menu item is selected.
2586 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2587 CL_DATA is the data to set in the widget for menu invocation. */
2589 static void
2590 xg_update_menu_item (val, w, select_cb, highlight_cb, cl_data)
2591 widget_value *val;
2592 GtkWidget *w;
2593 GCallback select_cb;
2594 GCallback highlight_cb;
2595 xg_menu_cb_data *cl_data;
2597 GtkWidget *wchild;
2598 GtkLabel *wlbl = 0;
2599 GtkLabel *wkey = 0;
2600 char *utf8_label;
2601 char *utf8_key;
2602 const char *old_label = 0;
2603 const char *old_key = 0;
2604 xg_menu_item_cb_data *cb_data;
2606 wchild = gtk_bin_get_child (GTK_BIN (w));
2607 utf8_label = get_utf8_string (val->name);
2608 utf8_key = get_utf8_string (val->key);
2610 /* See if W is a menu item with a key. See make_menu_item above. */
2611 if (GTK_IS_HBOX (wchild))
2613 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
2615 wlbl = GTK_LABEL (list->data);
2616 wkey = GTK_LABEL (list->next->data);
2617 g_list_free (list);
2619 if (! utf8_key)
2621 /* Remove the key and keep just the label. */
2622 gtk_widget_ref (GTK_WIDGET (wlbl));
2623 gtk_container_remove (GTK_CONTAINER (w), wchild);
2624 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
2625 wkey = 0;
2629 else /* Just a label. */
2631 wlbl = GTK_LABEL (wchild);
2633 /* Check if there is now a key. */
2634 if (utf8_key)
2636 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
2637 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
2639 wlbl = GTK_LABEL (list->data);
2640 wkey = GTK_LABEL (list->next->data);
2641 g_list_free (list);
2643 gtk_container_remove (GTK_CONTAINER (w), wchild);
2644 gtk_container_add (GTK_CONTAINER (w), wtoadd);
2649 if (wkey) old_key = gtk_label_get_label (wkey);
2650 if (wlbl) old_label = gtk_label_get_label (wlbl);
2652 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
2653 gtk_label_set_text (wkey, utf8_key);
2655 if (! old_label || strcmp (utf8_label, old_label) != 0)
2656 gtk_label_set_text (wlbl, utf8_label);
2658 if (utf8_key && utf8_key != val->key) g_free (utf8_key);
2659 if (utf8_label && utf8_label != val->name) g_free (utf8_label);
2661 if (! val->enabled && GTK_WIDGET_SENSITIVE (w))
2662 gtk_widget_set_sensitive (w, FALSE);
2663 else if (val->enabled && ! GTK_WIDGET_SENSITIVE (w))
2664 gtk_widget_set_sensitive (w, TRUE);
2666 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (w),
2667 XG_ITEM_DATA);
2668 if (cb_data)
2670 cb_data->call_data = val->call_data;
2671 cb_data->help = val->help;
2672 cb_data->cl_data = cl_data;
2674 /* We assume the callback functions don't change. */
2675 if (val->call_data && ! val->contents)
2677 /* This item shall have a select callback. */
2678 if (! cb_data->select_id)
2679 cb_data->select_id
2680 = g_signal_connect (G_OBJECT (w), "activate",
2681 select_cb, cb_data);
2683 else if (cb_data->select_id)
2685 g_signal_handler_disconnect (w, cb_data->select_id);
2686 cb_data->select_id = 0;
2691 /* Update the toggle menu item W so it corresponds to VAL. */
2693 static void
2694 xg_update_toggle_item (val, w)
2695 widget_value *val;
2696 GtkWidget *w;
2698 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2701 /* Update the radio menu item W so it corresponds to VAL. */
2703 static void
2704 xg_update_radio_item (val, w)
2705 widget_value *val;
2706 GtkWidget *w;
2708 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2711 /* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
2712 SUBMENU may be NULL, in that case a new menu is created.
2713 F is the frame the menu bar belongs to.
2714 VAL describes the contents of the menu bar.
2715 SELECT_CB is the callback to use when a menu item is selected.
2716 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2717 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2718 CL_DATA is the call back data to use for any newly created items.
2720 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
2721 was NULL. */
2723 static GtkWidget *
2724 xg_update_submenu (submenu, f, val,
2725 select_cb, deactivate_cb, highlight_cb, cl_data)
2726 GtkWidget *submenu;
2727 FRAME_PTR f;
2728 widget_value *val;
2729 GCallback select_cb;
2730 GCallback deactivate_cb;
2731 GCallback highlight_cb;
2732 xg_menu_cb_data *cl_data;
2734 GtkWidget *newsub = submenu;
2735 GList *list = 0;
2736 GList *iter;
2737 widget_value *cur;
2738 int has_tearoff_p = 0;
2739 GList *first_radio = 0;
2741 if (submenu)
2742 list = gtk_container_get_children (GTK_CONTAINER (submenu));
2744 for (cur = val, iter = list;
2745 cur && iter;
2746 iter = g_list_next (iter), cur = cur->next)
2748 GtkWidget *w = GTK_WIDGET (iter->data);
2750 /* Skip tearoff items, they have no counterpart in val. */
2751 if (GTK_IS_TEAROFF_MENU_ITEM (w))
2753 has_tearoff_p = 1;
2754 iter = g_list_next (iter);
2755 if (iter) w = GTK_WIDGET (iter->data);
2756 else break;
2759 /* Remember first radio button in a group. If we get a mismatch in
2760 a radio group we must rebuild the whole group so that the connections
2761 in GTK becomes correct. */
2762 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
2763 first_radio = iter;
2764 else if (cur->button_type != BUTTON_TYPE_RADIO
2765 && ! GTK_IS_RADIO_MENU_ITEM (w))
2766 first_radio = 0;
2768 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
2770 if (! xg_separator_p (cur->name))
2771 break;
2773 else if (GTK_IS_CHECK_MENU_ITEM (w))
2775 if (cur->button_type != BUTTON_TYPE_TOGGLE)
2776 break;
2777 xg_update_toggle_item (cur, w);
2778 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2780 else if (GTK_IS_RADIO_MENU_ITEM (w))
2782 if (cur->button_type != BUTTON_TYPE_RADIO)
2783 break;
2784 xg_update_radio_item (cur, w);
2785 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2787 else if (GTK_IS_MENU_ITEM (w))
2789 GtkMenuItem *witem = GTK_MENU_ITEM (w);
2790 GtkWidget *sub;
2792 if (cur->button_type != BUTTON_TYPE_NONE ||
2793 xg_separator_p (cur->name))
2794 break;
2796 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2798 sub = gtk_menu_item_get_submenu (witem);
2799 if (sub && ! cur->contents)
2801 /* Not a submenu anymore. */
2802 gtk_widget_ref (sub);
2803 gtk_menu_item_remove_submenu (witem);
2804 gtk_widget_destroy (sub);
2806 else if (cur->contents)
2808 GtkWidget *nsub;
2810 nsub = xg_update_submenu (sub, f, cur->contents,
2811 select_cb, deactivate_cb,
2812 highlight_cb, cl_data);
2814 /* If this item just became a submenu, we must set it. */
2815 if (nsub != sub)
2816 gtk_menu_item_set_submenu (witem, nsub);
2819 else
2821 /* Structural difference. Remove everything from here and down
2822 in SUBMENU. */
2823 break;
2827 /* Remove widgets from first structual change. */
2828 if (iter)
2830 /* If we are adding new menu items below, we must remove from
2831 first radio button so that radio groups become correct. */
2832 if (cur && first_radio) xg_destroy_widgets (first_radio);
2833 else xg_destroy_widgets (iter);
2836 if (cur)
2838 /* More items added. Create them. */
2839 newsub = create_menus (cur,
2841 select_cb,
2842 deactivate_cb,
2843 highlight_cb,
2846 ! has_tearoff_p,
2847 submenu,
2848 cl_data,
2852 if (list) g_list_free (list);
2854 return newsub;
2857 /* Update the MENUBAR.
2858 F is the frame the menu bar belongs to.
2859 VAL describes the contents of the menu bar.
2860 If DEEP_P is non-zero, rebuild all but the top level menu names in
2861 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
2862 SELECT_CB is the callback to use when a menu item is selected.
2863 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2864 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
2866 void
2867 xg_modify_menubar_widgets (menubar, f, val, deep_p,
2868 select_cb, deactivate_cb, highlight_cb)
2869 GtkWidget *menubar;
2870 FRAME_PTR f;
2871 widget_value *val;
2872 int deep_p;
2873 GCallback select_cb;
2874 GCallback deactivate_cb;
2875 GCallback highlight_cb;
2877 xg_menu_cb_data *cl_data;
2878 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
2880 if (! list) return;
2882 cl_data = (xg_menu_cb_data*) g_object_get_data (G_OBJECT (menubar),
2883 XG_FRAME_DATA);
2885 xg_update_menubar (menubar, f, &list, list, 0, val->contents,
2886 select_cb, deactivate_cb, highlight_cb, cl_data);
2888 if (deep_p)
2890 widget_value *cur;
2892 /* Update all sub menus.
2893 We must keep the submenus (GTK menu item widgets) since the
2894 X Window in the XEvent that activates the menu are those widgets. */
2896 /* Update cl_data, menu_item things in F may have changed. */
2897 update_cl_data (cl_data, f, highlight_cb);
2899 for (cur = val->contents; cur; cur = cur->next)
2901 GList *iter;
2902 GtkWidget *sub = 0;
2903 GtkWidget *newsub;
2904 GtkMenuItem *witem;
2906 /* Find sub menu that corresponds to val and update it. */
2907 for (iter = list ; iter; iter = g_list_next (iter))
2909 witem = GTK_MENU_ITEM (iter->data);
2910 if (xg_item_label_same_p (witem, cur->name))
2912 sub = gtk_menu_item_get_submenu (witem);
2913 break;
2917 newsub = xg_update_submenu (sub,
2919 cur->contents,
2920 select_cb,
2921 deactivate_cb,
2922 highlight_cb,
2923 cl_data);
2924 /* sub may still be NULL. If we just updated non deep and added
2925 a new menu bar item, it has no sub menu yet. So we set the
2926 newly created sub menu under witem. */
2927 if (newsub != sub)
2929 xg_set_screen (newsub, f);
2930 gtk_menu_item_set_submenu (witem, newsub);
2935 g_list_free (list);
2936 gtk_widget_show_all (menubar);
2939 /* Recompute all the widgets of frame F, when the menu bar has been
2940 changed. Value is non-zero if widgets were updated. */
2943 xg_update_frame_menubar (f)
2944 FRAME_PTR f;
2946 struct x_output *x = f->output_data.x;
2947 GtkRequisition req;
2949 if (!x->menubar_widget || GTK_WIDGET_MAPPED (x->menubar_widget))
2950 return 0;
2952 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
2953 return 0; /* Already done this, happens for frames created invisible. */
2955 BLOCK_INPUT;
2957 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
2958 FALSE, FALSE, 0);
2959 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
2961 gtk_widget_show_all (x->menubar_widget);
2962 gtk_widget_size_request (x->menubar_widget, &req);
2963 FRAME_MENUBAR_HEIGHT (f) = req.height;
2964 xg_height_changed (f);
2965 UNBLOCK_INPUT;
2967 return 1;
2970 /* Get rid of the menu bar of frame F, and free its storage.
2971 This is used when deleting a frame, and when turning off the menu bar. */
2973 void
2974 free_frame_menubar (f)
2975 FRAME_PTR f;
2977 struct x_output *x = f->output_data.x;
2979 if (x->menubar_widget)
2981 BLOCK_INPUT;
2983 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
2984 /* The menubar and its children shall be deleted when removed from
2985 the container. */
2986 x->menubar_widget = 0;
2987 FRAME_MENUBAR_HEIGHT (f) = 0;
2988 xg_height_changed (f);
2989 UNBLOCK_INPUT;
2995 /***********************************************************************
2996 Scroll bar functions
2997 ***********************************************************************/
3000 /* Setting scroll bar values invokes the callback. Use this variable
3001 to indicate that callback should do nothing. */
3003 int xg_ignore_gtk_scrollbar;
3005 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3006 may be larger than 32 bits. Keep a mapping from integer index to widget
3007 pointers to get around the 32 bit limitation. */
3009 static struct
3011 GtkWidget **widgets;
3012 int max_size;
3013 int used;
3014 } id_to_widget;
3016 /* Grow this much every time we need to allocate more */
3018 #define ID_TO_WIDGET_INCR 32
3020 /* Store the widget pointer W in id_to_widget and return the integer index. */
3022 static int
3023 xg_store_widget_in_map (w)
3024 GtkWidget *w;
3026 int i;
3028 if (id_to_widget.max_size == id_to_widget.used)
3030 int new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3032 id_to_widget.widgets = xrealloc (id_to_widget.widgets,
3033 sizeof (GtkWidget *)*new_size);
3035 for (i = id_to_widget.max_size; i < new_size; ++i)
3036 id_to_widget.widgets[i] = 0;
3037 id_to_widget.max_size = new_size;
3040 /* Just loop over the array and find a free place. After all,
3041 how many scroll bars are we creating? Should be a small number.
3042 The check above guarantees we will find a free place. */
3043 for (i = 0; i < id_to_widget.max_size; ++i)
3045 if (! id_to_widget.widgets[i])
3047 id_to_widget.widgets[i] = w;
3048 ++id_to_widget.used;
3050 return i;
3054 /* Should never end up here */
3055 abort ();
3058 /* Remove pointer at IDX from id_to_widget.
3059 Called when scroll bar is destroyed. */
3061 static void
3062 xg_remove_widget_from_map (idx)
3063 int idx;
3065 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3067 id_to_widget.widgets[idx] = 0;
3068 --id_to_widget.used;
3072 /* Get the widget pointer at IDX from id_to_widget. */
3074 static GtkWidget *
3075 xg_get_widget_from_map (idx)
3076 int idx;
3078 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3079 return id_to_widget.widgets[idx];
3081 return 0;
3084 /* Return the scrollbar id for X Window WID on display DPY.
3085 Return -1 if WID not in id_to_widget. */
3088 xg_get_scroll_id_for_window (dpy, wid)
3089 Display *dpy;
3090 Window wid;
3092 int idx;
3093 GtkWidget *w;
3095 w = xg_win_to_widget (dpy, wid);
3097 if (w)
3099 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3100 if (id_to_widget.widgets[idx] == w)
3101 return idx;
3104 return -1;
3107 /* Callback invoked when scroll bar WIDGET is destroyed.
3108 DATA is the index into id_to_widget for WIDGET.
3109 We free pointer to last scroll bar values here and remove the index. */
3111 static void
3112 xg_gtk_scroll_destroy (widget, data)
3113 GtkWidget *widget;
3114 gpointer data;
3116 int id = (int) (EMACS_INT) data; /* The EMACS_INT cast avoids a warning. */
3117 xg_remove_widget_from_map (id);
3120 /* Create a scroll bar widget for frame F. Store the scroll bar
3121 in BAR.
3122 SCROLL_CALLBACK is the callback to invoke when the value of the
3123 bar changes.
3124 END_CALLBACK is the callback to invoke when scrolling ends.
3125 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3126 to set resources for the widget. */
3128 void
3129 xg_create_scroll_bar (f, bar, scroll_callback, end_callback, scroll_bar_name)
3130 FRAME_PTR f;
3131 struct scroll_bar *bar;
3132 GCallback scroll_callback, end_callback;
3133 char *scroll_bar_name;
3135 GtkWidget *wscroll;
3136 GtkWidget *webox;
3137 GtkObject *vadj;
3138 int scroll_id;
3140 /* Page, step increment values are not so important here, they
3141 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3142 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3143 0.1, 0.1, 0.1);
3145 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
3146 webox = gtk_event_box_new ();
3147 gtk_widget_set_name (wscroll, scroll_bar_name);
3148 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3149 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3151 scroll_id = xg_store_widget_in_map (wscroll);
3153 /* The EMACS_INT cast avoids a warning. */
3154 g_signal_connect (G_OBJECT (wscroll),
3155 "destroy",
3156 G_CALLBACK (xg_gtk_scroll_destroy),
3157 (gpointer) (EMACS_INT) scroll_id);
3158 g_signal_connect (G_OBJECT (wscroll),
3159 "change-value",
3160 scroll_callback,
3161 (gpointer) bar);
3162 g_signal_connect (G_OBJECT (wscroll),
3163 "button-release-event",
3164 end_callback,
3165 (gpointer) bar);
3167 /* The scroll bar widget does not draw on a window of its own. Instead
3168 it draws on the parent window, in this case the edit widget. So
3169 whenever the edit widget is cleared, the scroll bar needs to redraw
3170 also, which causes flicker. Put an event box between the edit widget
3171 and the scroll bar, so the scroll bar instead draws itself on the
3172 event box window. */
3173 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3174 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3177 /* Set the cursor to an arrow. */
3178 xg_set_cursor (webox, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
3180 bar->x_window = scroll_id;
3183 /* Make the scroll bar represented by SCROLLBAR_ID visible. */
3185 void
3186 xg_show_scroll_bar (scrollbar_id)
3187 int scrollbar_id;
3189 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3190 if (w)
3191 gtk_widget_show_all (gtk_widget_get_parent (w));
3194 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3196 void
3197 xg_remove_scroll_bar (f, scrollbar_id)
3198 FRAME_PTR f;
3199 int scrollbar_id;
3201 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3202 if (w)
3204 GtkWidget *wparent = gtk_widget_get_parent (w);
3205 gtk_widget_destroy (w);
3206 gtk_widget_destroy (wparent);
3207 SET_FRAME_GARBAGED (f);
3211 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3212 in frame F.
3213 TOP/LEFT are the new pixel positions where the bar shall appear.
3214 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3216 void
3217 xg_update_scrollbar_pos (f, scrollbar_id, top, left, width, height)
3218 FRAME_PTR f;
3219 int scrollbar_id;
3220 int top;
3221 int left;
3222 int width;
3223 int height;
3226 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3228 if (wscroll)
3230 GtkWidget *wfixed = f->output_data.x->edit_widget;
3231 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3232 GtkFixed *wf = GTK_FIXED (wfixed);
3234 /* Clear out old position. */
3235 GList *iter;
3236 int oldx = -1, oldy = -1, oldw, oldh;
3237 for (iter = wf->children; iter; iter = iter->next)
3238 if (((GtkFixedChild *)iter->data)->widget == wparent)
3240 GtkFixedChild *ch = (GtkFixedChild *)iter->data;
3241 if (ch->x != left || ch->y != top)
3243 oldx = ch->x;
3244 oldy = ch->y;
3245 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3247 break;
3250 /* Move and resize to new values. */
3251 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3252 gtk_widget_set_size_request (wscroll, width, height);
3253 gtk_widget_queue_draw (wfixed);
3254 gdk_window_process_all_updates ();
3255 if (oldx != -1)
3257 /* Clear under old scroll bar position. This must be done after
3258 the gtk_widget_queue_draw and gdk_window_process_all_updates
3259 above. */
3260 x_clear_area (FRAME_X_DISPLAY (f),
3261 FRAME_X_WINDOW (f),
3262 oldx, oldy, oldw, oldh, 0);
3265 /* GTK does not redraw until the main loop is entered again, but
3266 if there are no X events pending we will not enter it. So we sync
3267 here to get some events. */
3269 x_sync (f);
3270 SET_FRAME_GARBAGED (f);
3271 cancel_mouse_face (f);
3275 /* Set the thumb size and position of scroll bar BAR. We are currently
3276 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3278 void
3279 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
3280 struct scroll_bar *bar;
3281 int portion, position, whole;
3283 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3285 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3287 if (wscroll && NILP (bar->dragging))
3289 GtkAdjustment *adj;
3290 gdouble shown;
3291 gdouble top;
3292 int size, value;
3293 int new_step;
3294 int changed = 0;
3296 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3298 /* We do the same as for MOTIF in xterm.c, assume 30 chars per line
3299 rather than the real portion value. This makes the thumb less likely
3300 to resize and that looks better. */
3301 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3302 /* When the thumb is at the bottom, position == whole.
3303 So we need to increase `whole' to make space for the thumb. */
3304 whole += portion;
3306 if (whole <= 0)
3307 top = 0, shown = 1;
3308 else
3310 top = (gdouble) position / whole;
3311 shown = (gdouble) portion / whole;
3314 size = shown * XG_SB_RANGE;
3315 size = min (size, XG_SB_RANGE);
3316 size = max (size, 1);
3318 value = top * XG_SB_RANGE;
3319 value = min (value, XG_SB_MAX - size);
3320 value = max (value, XG_SB_MIN);
3322 /* Assume all lines are of equal size. */
3323 new_step = size / max (1, FRAME_LINES (f));
3325 if ((int) adj->page_size != size
3326 || (int) adj->step_increment != new_step)
3328 adj->page_size = size;
3329 adj->step_increment = new_step;
3330 /* Assume a page increment is about 95% of the page size */
3331 adj->page_increment = (int) (0.95*adj->page_size);
3332 changed = 1;
3335 if (changed || (int) gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3337 BLOCK_INPUT;
3339 /* gtk_range_set_value invokes the callback. Set
3340 ignore_gtk_scrollbar to make the callback do nothing */
3341 xg_ignore_gtk_scrollbar = 1;
3343 if ((int) gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3344 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3345 else if (changed)
3346 gtk_adjustment_changed (adj);
3348 xg_ignore_gtk_scrollbar = 0;
3350 UNBLOCK_INPUT;
3355 /* Return non-zero if EVENT is for a scroll bar in frame F.
3356 When the same X window is used for several Gtk+ widgets, we cannot
3357 say for sure based on the X window alone if an event is for the
3358 frame. This function does additional checks.
3360 Return non-zero if the event is for a scroll bar, zero otherwise. */
3363 xg_event_is_for_scrollbar (f, event)
3364 FRAME_PTR f;
3365 XEvent *event;
3367 int retval = 0;
3369 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3371 /* Check if press occurred outside the edit widget. */
3372 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3373 retval = gdk_display_get_window_at_pointer (gdpy, NULL, NULL)
3374 != f->output_data.x->edit_widget->window;
3376 else if (f
3377 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3378 || event->type == MotionNotify))
3380 /* If we are releasing or moving the scroll bar, it has the grab. */
3381 retval = gtk_grab_get_current () != 0
3382 && gtk_grab_get_current () != f->output_data.x->edit_widget;
3385 return retval;
3390 /***********************************************************************
3391 Tool bar functions
3392 ***********************************************************************/
3393 /* The key for the data we put in the GtkImage widgets. The data is
3394 the image used by Emacs. We use this to see if we need to update
3395 the GtkImage with a new image. */
3396 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3398 /* The key for storing the latest modifiers so the activate callback can
3399 get them. */
3400 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3402 /* The key for storing the button widget in its proxy menu item. */
3403 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3405 /* The key for the data we put in the GtkImage widgets. The data is
3406 the stock name used by Emacs. We use this to see if we need to update
3407 the GtkImage with a new image. */
3408 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3410 /* As above, but this is used for named theme widgets, as opposed to
3411 stock items. */
3412 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3414 /* Callback function invoked when a tool bar item is pressed.
3415 W is the button widget in the tool bar that got pressed,
3416 CLIENT_DATA is an integer that is the index of the button in the
3417 tool bar. 0 is the first button. */
3419 static gboolean
3420 xg_tool_bar_button_cb (widget, event, user_data)
3421 GtkWidget *widget;
3422 GdkEventButton *event;
3423 gpointer user_data;
3425 /* Casts to avoid warnings when gpointer is 64 bits and int is 32 bits */
3426 gpointer ptr = (gpointer) (EMACS_INT) event->state;
3427 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
3428 return FALSE;
3432 /* Callback function invoked when a tool bar item is pressed.
3433 W is the button widget in the tool bar that got pressed,
3434 CLIENT_DATA is an integer that is the index of the button in the
3435 tool bar. 0 is the first button. */
3437 static void
3438 xg_tool_bar_callback (w, client_data)
3439 GtkWidget *w;
3440 gpointer client_data;
3442 /* The EMACS_INT cast avoids a warning. */
3443 int idx = (int) (EMACS_INT) client_data;
3444 int mod = (int) (EMACS_INT) g_object_get_data (G_OBJECT (w),
3445 XG_TOOL_BAR_LAST_MODIFIER);
3447 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3448 Lisp_Object key, frame;
3449 struct input_event event;
3450 EVENT_INIT (event);
3452 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3453 return;
3455 idx *= TOOL_BAR_ITEM_NSLOTS;
3457 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
3458 XSETFRAME (frame, f);
3460 /* We generate two events here. The first one is to set the prefix
3461 to `(tool_bar)', see keyboard.c. */
3462 event.kind = TOOL_BAR_EVENT;
3463 event.frame_or_window = frame;
3464 event.arg = frame;
3465 kbd_buffer_store_event (&event);
3467 event.kind = TOOL_BAR_EVENT;
3468 event.frame_or_window = frame;
3469 event.arg = key;
3470 /* Convert between the modifier bits GDK uses and the modifier bits
3471 Emacs uses. This assumes GDK and X masks are the same, which they are when
3472 this is written. */
3473 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), mod);
3474 kbd_buffer_store_event (&event);
3476 /* Return focus to the frame after we have clicked on a detached
3477 tool bar button. */
3478 Fx_focus_frame (frame);
3481 /* Callback function invoked when a tool bar item is pressed in a detached
3482 tool bar or the overflow drop down menu.
3483 We just call xg_tool_bar_callback.
3484 W is the menu item widget that got pressed,
3485 CLIENT_DATA is an integer that is the index of the button in the
3486 tool bar. 0 is the first button. */
3488 static void
3489 xg_tool_bar_proxy_callback (w, client_data)
3490 GtkWidget *w;
3491 gpointer client_data;
3493 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3494 XG_TOOL_BAR_PROXY_BUTTON));
3495 xg_tool_bar_callback (wbutton, client_data);
3499 static gboolean
3500 xg_tool_bar_help_callback P_ ((GtkWidget *w,
3501 GdkEventCrossing *event,
3502 gpointer client_data));
3504 /* This callback is called when a help is to be shown for an item in
3505 the detached tool bar when the detached tool bar it is not expanded. */
3507 static gboolean
3508 xg_tool_bar_proxy_help_callback (w, event, client_data)
3509 GtkWidget *w;
3510 GdkEventCrossing *event;
3511 gpointer client_data;
3513 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3514 XG_TOOL_BAR_PROXY_BUTTON));
3516 return xg_tool_bar_help_callback (wbutton, event, client_data);
3520 /* This callback is called when a tool item should create a proxy item,
3521 such as for the overflow menu. Also called when the tool bar is detached.
3522 If we don't create a proxy menu item, the detached tool bar will be
3523 blank. */
3525 static gboolean
3526 xg_tool_bar_menu_proxy (toolitem, user_data)
3527 GtkToolItem *toolitem;
3528 gpointer user_data;
3530 GtkWidget *weventbox = gtk_bin_get_child (GTK_BIN (toolitem));
3531 GtkButton *wbutton = GTK_BUTTON (gtk_bin_get_child (GTK_BIN (weventbox)));
3532 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label ("");
3533 GtkWidget *wmenuimage;
3535 if (gtk_button_get_use_stock (wbutton))
3536 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
3537 GTK_ICON_SIZE_MENU);
3538 else
3540 GtkImage *wimage = GTK_IMAGE (gtk_bin_get_child (GTK_BIN (wbutton)));
3541 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
3542 GtkImageType store_type = gtk_image_get_storage_type (wimage);
3544 if (store_type == GTK_IMAGE_STOCK)
3546 gchar *stock_id;
3547 gtk_image_get_stock (wimage, &stock_id, NULL);
3548 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
3550 else if (store_type == GTK_IMAGE_ICON_SET)
3552 GtkIconSet *icon_set;
3553 gtk_image_get_icon_set (wimage, &icon_set, NULL);
3554 wmenuimage = gtk_image_new_from_icon_set (icon_set,
3555 GTK_ICON_SIZE_MENU);
3557 else if (store_type == GTK_IMAGE_PIXBUF)
3559 gint width, height;
3561 if (settings &&
3562 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
3563 &width, &height))
3565 GdkPixbuf *src_pixbuf, *dest_pixbuf;
3567 src_pixbuf = gtk_image_get_pixbuf (wimage);
3568 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
3569 GDK_INTERP_BILINEAR);
3571 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
3573 else
3575 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
3576 abort ();
3579 else if (store_type == GTK_IMAGE_ICON_NAME)
3581 const gchar *icon_name;
3582 GtkIconSize icon_size;
3584 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
3585 wmenuimage = gtk_image_new_from_icon_name (icon_name,
3586 GTK_ICON_SIZE_MENU);
3588 else
3590 fprintf (stderr, "internal error: store_type is %d\n", store_type);
3591 abort ();
3594 if (wmenuimage)
3595 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
3597 g_signal_connect (G_OBJECT (wmenuitem),
3598 "activate",
3599 G_CALLBACK (xg_tool_bar_proxy_callback),
3600 user_data);
3603 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
3604 (gpointer) wbutton);
3605 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
3606 gtk_widget_set_sensitive (wmenuitem, GTK_WIDGET_SENSITIVE (wbutton));
3608 /* Use enter/leave notify to show help. We use the events
3609 rather than the GtkButton specific signals "enter" and
3610 "leave", so we can have only one callback. The event
3611 will tell us what kind of event it is. */
3612 g_signal_connect (G_OBJECT (wmenuitem),
3613 "enter-notify-event",
3614 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3615 user_data);
3616 g_signal_connect (G_OBJECT (wmenuitem),
3617 "leave-notify-event",
3618 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3619 user_data);
3621 return TRUE;
3624 /* This callback is called when a tool bar is detached. We must set
3625 the height of the tool bar to zero when this happens so frame sizes
3626 are correctly calculated.
3627 WBOX is the handle box widget that enables detach/attach of the tool bar.
3628 W is the tool bar widget.
3629 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
3631 static void
3632 xg_tool_bar_detach_callback (wbox, w, client_data)
3633 GtkHandleBox *wbox;
3634 GtkWidget *w;
3635 gpointer client_data;
3637 FRAME_PTR f = (FRAME_PTR) client_data;
3638 extern int x_gtk_whole_detached_tool_bar;
3640 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
3641 NULL);
3643 if (f)
3645 FRAME_X_OUTPUT (f)->toolbar_detached = 1;
3647 /* When detaching a tool bar, not everything dissapear. There are
3648 a few pixels left that are used to drop the tool bar back into
3649 place. */
3650 FRAME_TOOLBAR_HEIGHT (f) = 4;
3651 xg_height_changed (f);
3655 /* This callback is called when a tool bar is reattached. We must set
3656 the height of the tool bar when this happens so frame sizes
3657 are correctly calculated.
3658 WBOX is the handle box widget that enables detach/attach of the tool bar.
3659 W is the tool bar widget.
3660 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
3662 static void
3663 xg_tool_bar_attach_callback (wbox, w, client_data)
3664 GtkHandleBox *wbox;
3665 GtkWidget *w;
3666 gpointer client_data;
3668 FRAME_PTR f = (FRAME_PTR) client_data;
3669 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
3671 if (f)
3673 GtkRequisition req;
3675 FRAME_X_OUTPUT (f)->toolbar_detached = 0;
3677 gtk_widget_size_request (w, &req);
3678 FRAME_TOOLBAR_HEIGHT (f) = req.height;
3679 xg_height_changed (f);
3683 /* This callback is called when the mouse enters or leaves a tool bar item.
3684 It is used for displaying and hiding the help text.
3685 W is the tool bar item, a button.
3686 EVENT is either an enter event or leave event.
3687 CLIENT_DATA is an integer that is the index of the button in the
3688 tool bar. 0 is the first button.
3690 Returns FALSE to tell GTK to keep processing this event. */
3692 static gboolean
3693 xg_tool_bar_help_callback (w, event, client_data)
3694 GtkWidget *w;
3695 GdkEventCrossing *event;
3696 gpointer client_data;
3698 /* The EMACS_INT cast avoids a warning. */
3699 int idx = (int) (EMACS_INT) client_data;
3700 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3701 Lisp_Object help, frame;
3703 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3704 return FALSE;
3706 if (event->type == GDK_ENTER_NOTIFY)
3708 idx *= TOOL_BAR_ITEM_NSLOTS;
3709 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
3711 if (NILP (help))
3712 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
3714 else
3715 help = Qnil;
3717 XSETFRAME (frame, f);
3718 kbd_buffer_store_help_event (frame, help);
3720 return FALSE;
3724 /* This callback is called when a tool bar item shall be redrawn.
3725 It modifies the expose event so that the GtkImage widget redraws the
3726 whole image. This to overcome a bug that makes GtkImage draw the image
3727 in the wrong place when it tries to redraw just a part of the image.
3728 W is the GtkImage to be redrawn.
3729 EVENT is the expose event for W.
3730 CLIENT_DATA is unused.
3732 Returns FALSE to tell GTK to keep processing this event. */
3734 static gboolean
3735 xg_tool_bar_item_expose_callback (w, event, client_data)
3736 GtkWidget *w;
3737 GdkEventExpose *event;
3738 gpointer client_data;
3740 gint width, height;
3742 gdk_drawable_get_size (event->window, &width, &height);
3744 event->area.x -= width > event->area.width ? width-event->area.width : 0;
3745 event->area.y -= height > event->area.height ? height-event->area.height : 0;
3747 event->area.x = max (0, event->area.x);
3748 event->area.y = max (0, event->area.y);
3750 event->area.width = max (width, event->area.width);
3751 event->area.height = max (height, event->area.height);
3753 return FALSE;
3756 /* Attach a tool bar to frame F. */
3758 static void
3759 xg_pack_tool_bar (f)
3760 FRAME_PTR f;
3762 struct x_output *x = f->output_data.x;
3763 int vbox_pos = x->menubar_widget ? 1 : 0;
3765 x->handlebox_widget = gtk_handle_box_new ();
3766 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
3767 G_CALLBACK (xg_tool_bar_detach_callback), f);
3768 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
3769 G_CALLBACK (xg_tool_bar_attach_callback), f);
3771 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
3772 x->toolbar_widget);
3774 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->handlebox_widget,
3775 FALSE, FALSE, 0);
3777 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->handlebox_widget,
3778 vbox_pos);
3779 gtk_widget_show_all (x->handlebox_widget);
3782 /* Create a tool bar for frame F. */
3784 static void
3785 xg_create_tool_bar (f)
3786 FRAME_PTR f;
3788 struct x_output *x = f->output_data.x;
3790 x->toolbar_widget = gtk_toolbar_new ();
3791 x->toolbar_detached = 0;
3793 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
3795 /* We only have icons, so override any user setting. We could
3796 use the caption property of the toolbar item (see update_frame_tool_bar
3797 below), but some of those strings are long, making the toolbar so
3798 long it does not fit on the screen. The GtkToolbar widget makes every
3799 item equal size, so the longest caption determine the size of every
3800 tool bar item. I think the creators of the GtkToolbar widget
3801 counted on 4 or 5 character long strings. */
3802 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
3803 gtk_toolbar_set_orientation (GTK_TOOLBAR (x->toolbar_widget),
3804 GTK_ORIENTATION_HORIZONTAL);
3808 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
3810 /* Find the right-to-left image named by RTL in the tool bar images for F.
3811 Returns IMAGE if RTL is not found. */
3813 static Lisp_Object
3814 find_rtl_image (f, image, rtl)
3815 FRAME_PTR f;
3816 Lisp_Object image;
3817 Lisp_Object rtl;
3819 int i;
3820 Lisp_Object file, rtl_name;
3821 struct gcpro gcpro1, gcpro2;
3822 GCPRO2 (file, rtl_name);
3824 rtl_name = Ffile_name_nondirectory (rtl);
3826 for (i = 0; i < f->n_tool_bar_items; ++i)
3828 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
3829 if (!NILP (file = file_for_image (rtl_image)))
3831 file = call1 (intern ("file-name-sans-extension"),
3832 Ffile_name_nondirectory (file));
3833 if (EQ (Fequal (file, rtl_name), Qt))
3835 image = rtl_image;
3836 break;
3841 return image;
3844 /* Update the tool bar for frame F. Add new buttons and remove old. */
3846 extern Lisp_Object Qx_gtk_map_stock;
3848 void
3849 update_frame_tool_bar (f)
3850 FRAME_PTR f;
3852 int i;
3853 GtkRequisition old_req, new_req;
3854 struct x_output *x = f->output_data.x;
3855 int hmargin = 0, vmargin = 0;
3856 GtkToolbar *wtoolbar;
3857 GtkToolItem *ti;
3858 GtkTextDirection dir;
3859 int pack_tool_bar = x->handlebox_widget == NULL;
3861 if (! FRAME_GTK_WIDGET (f))
3862 return;
3864 BLOCK_INPUT;
3866 if (INTEGERP (Vtool_bar_button_margin)
3867 && XINT (Vtool_bar_button_margin) > 0)
3869 hmargin = XFASTINT (Vtool_bar_button_margin);
3870 vmargin = XFASTINT (Vtool_bar_button_margin);
3872 else if (CONSP (Vtool_bar_button_margin))
3874 if (INTEGERP (XCAR (Vtool_bar_button_margin))
3875 && XINT (XCAR (Vtool_bar_button_margin)) > 0)
3876 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
3878 if (INTEGERP (XCDR (Vtool_bar_button_margin))
3879 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
3880 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
3883 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
3884 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
3885 i.e. zero. This means that margins less than
3886 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
3887 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
3888 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
3890 if (! x->toolbar_widget)
3891 xg_create_tool_bar (f);
3893 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
3894 gtk_widget_size_request (GTK_WIDGET (wtoolbar), &old_req);
3895 dir = gtk_widget_get_direction (x->toolbar_widget);
3897 for (i = 0; i < f->n_tool_bar_items; ++i)
3899 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
3900 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
3901 int idx;
3902 int img_id;
3903 int icon_size = 0;
3904 struct image *img = NULL;
3905 Lisp_Object image;
3906 Lisp_Object stock = Qnil;
3907 GtkStockItem stock_item;
3908 char *stock_name = NULL;
3909 char *icon_name = NULL;
3910 Lisp_Object rtl;
3911 GtkWidget *wbutton = NULL;
3912 GtkWidget *weventbox;
3913 Lisp_Object specified_file;
3915 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (x->toolbar_widget), i);
3917 if (ti)
3919 weventbox = gtk_bin_get_child (GTK_BIN (ti));
3920 wbutton = gtk_bin_get_child (GTK_BIN (weventbox));
3923 image = PROP (TOOL_BAR_ITEM_IMAGES);
3925 /* Ignore invalid image specifications. */
3926 if (!valid_image_p (image))
3928 if (wbutton) gtk_widget_hide (wbutton);
3929 continue;
3932 specified_file = file_for_image (image);
3933 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
3934 stock = call1 (Qx_gtk_map_stock, specified_file);
3936 if (STRINGP (stock))
3938 stock_name = SSDATA (stock);
3939 if (stock_name[0] == 'n' && stock_name[1] == ':')
3941 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
3942 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
3944 icon_name = stock_name + 2;
3945 stock_name = NULL;
3946 stock = Qnil;
3948 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
3949 icon_name = NULL;
3950 else
3951 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
3953 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
3954 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
3955 else
3957 stock = Qnil;
3958 stock_name = NULL;
3962 if (stock_name == NULL && icon_name == NULL)
3964 /* No stock image, or stock item not known. Try regular image. */
3966 /* If image is a vector, choose the image according to the
3967 button state. */
3968 if (dir == GTK_TEXT_DIR_RTL
3969 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
3970 && STRINGP (rtl))
3972 image = find_rtl_image (f, image, rtl);
3975 if (VECTORP (image))
3977 if (enabled_p)
3978 idx = (selected_p
3979 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
3980 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
3981 else
3982 idx = (selected_p
3983 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
3984 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
3986 xassert (ASIZE (image) >= idx);
3987 image = AREF (image, idx);
3989 else
3990 idx = -1;
3992 img_id = lookup_image (f, image);
3993 img = IMAGE_FROM_ID (f, img_id);
3994 prepare_image_for_display (f, img);
3996 if (img->load_failed_p || img->pixmap == None)
3998 if (ti)
3999 gtk_widget_hide_all (GTK_WIDGET (ti));
4000 else
4002 /* Insert an empty (non-image) button */
4003 weventbox = gtk_event_box_new ();
4004 wbutton = gtk_button_new ();
4005 gtk_button_set_focus_on_click (GTK_BUTTON (wbutton), FALSE);
4006 gtk_button_set_relief (GTK_BUTTON (wbutton),
4007 GTK_RELIEF_NONE);
4008 gtk_container_add (GTK_CONTAINER (weventbox), wbutton);
4009 ti = gtk_tool_item_new ();
4010 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4011 gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, -1);
4013 continue;
4017 if (ti == NULL)
4019 GtkWidget *w;
4020 if (stock_name)
4022 w = gtk_image_new_from_stock (stock_name, icon_size);
4023 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4024 (gpointer) xstrdup (stock_name),
4025 (GDestroyNotify) xfree);
4027 else if (icon_name)
4029 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4030 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4031 (gpointer) xstrdup (icon_name),
4032 (GDestroyNotify) xfree);
4034 else
4036 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4037 /* Save the image so we can see if an update is needed when
4038 this function is called again. */
4039 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4040 (gpointer)img->pixmap);
4043 gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4044 wbutton = gtk_button_new ();
4045 gtk_button_set_focus_on_click (GTK_BUTTON (wbutton), FALSE);
4046 gtk_button_set_relief (GTK_BUTTON (wbutton), GTK_RELIEF_NONE);
4047 gtk_container_add (GTK_CONTAINER (wbutton), w);
4048 weventbox = gtk_event_box_new ();
4049 gtk_container_add (GTK_CONTAINER (weventbox), wbutton);
4050 ti = gtk_tool_item_new ();
4051 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4052 gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, -1);
4055 /* The EMACS_INT cast avoids a warning. */
4056 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4057 G_CALLBACK (xg_tool_bar_menu_proxy),
4058 (gpointer) (EMACS_INT) i);
4060 g_signal_connect (G_OBJECT (wbutton), "clicked",
4061 G_CALLBACK (xg_tool_bar_callback),
4062 (gpointer) (EMACS_INT) i);
4064 gtk_widget_show_all (GTK_WIDGET (ti));
4067 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4069 /* Catch expose events to overcome an annoying redraw bug, see
4070 comment for xg_tool_bar_item_expose_callback. */
4071 g_signal_connect (G_OBJECT (ti),
4072 "expose-event",
4073 G_CALLBACK (xg_tool_bar_item_expose_callback),
4076 gtk_widget_set_sensitive (wbutton, enabled_p);
4077 gtk_tool_item_set_homogeneous (ti, FALSE);
4079 /* Callback to save modifyer mask (Shift/Control, etc). GTK makes
4080 no distinction based on modifiers in the activate callback,
4081 so we have to do it ourselves. */
4082 g_signal_connect (wbutton, "button-release-event",
4083 G_CALLBACK (xg_tool_bar_button_cb),
4084 NULL);
4086 g_object_set_data (G_OBJECT (wbutton), XG_FRAME_DATA, (gpointer)f);
4088 /* Use enter/leave notify to show help. We use the events
4089 rather than the GtkButton specific signals "enter" and
4090 "leave", so we can have only one callback. The event
4091 will tell us what kind of event it is. */
4092 /* The EMACS_INT cast avoids a warning. */
4093 g_signal_connect (G_OBJECT (weventbox),
4094 "enter-notify-event",
4095 G_CALLBACK (xg_tool_bar_help_callback),
4096 (gpointer) (EMACS_INT) i);
4097 g_signal_connect (G_OBJECT (weventbox),
4098 "leave-notify-event",
4099 G_CALLBACK (xg_tool_bar_help_callback),
4100 (gpointer) (EMACS_INT) i);
4102 else
4104 GtkWidget *wimage = gtk_bin_get_child (GTK_BIN (wbutton));
4105 Pixmap old_img = (Pixmap)g_object_get_data (G_OBJECT (wimage),
4106 XG_TOOL_BAR_IMAGE_DATA);
4107 gpointer old_stock_name = g_object_get_data (G_OBJECT (wimage),
4108 XG_TOOL_BAR_STOCK_NAME);
4109 gpointer old_icon_name = g_object_get_data (G_OBJECT (wimage),
4110 XG_TOOL_BAR_ICON_NAME);
4111 if (stock_name &&
4112 (! old_stock_name || strcmp (old_stock_name, stock_name) != 0))
4114 gtk_image_set_from_stock (GTK_IMAGE (wimage),
4115 stock_name, icon_size);
4116 g_object_set_data_full (G_OBJECT (wimage), XG_TOOL_BAR_STOCK_NAME,
4117 (gpointer) xstrdup (stock_name),
4118 (GDestroyNotify) xfree);
4119 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_IMAGE_DATA,
4120 NULL);
4121 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_ICON_NAME, NULL);
4123 else if (icon_name &&
4124 (! old_icon_name || strcmp (old_icon_name, icon_name) != 0))
4126 gtk_image_set_from_icon_name (GTK_IMAGE (wimage),
4127 icon_name, icon_size);
4128 g_object_set_data_full (G_OBJECT (wimage), XG_TOOL_BAR_ICON_NAME,
4129 (gpointer) xstrdup (icon_name),
4130 (GDestroyNotify) xfree);
4131 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_IMAGE_DATA,
4132 NULL);
4133 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_STOCK_NAME,
4134 NULL);
4136 else if (img && old_img != img->pixmap)
4138 (void) xg_get_image_for_pixmap (f, img, x->widget, wimage);
4139 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_IMAGE_DATA,
4140 (gpointer)img->pixmap);
4142 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_STOCK_NAME,
4143 NULL);
4144 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_ICON_NAME, NULL);
4147 gtk_misc_set_padding (GTK_MISC (wimage), hmargin, vmargin);
4149 gtk_widget_set_sensitive (wbutton, enabled_p);
4150 gtk_widget_show_all (GTK_WIDGET (ti));
4153 #undef PROP
4156 /* Remove buttons not longer needed. We just hide them so they
4157 can be reused later on. */
4160 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (x->toolbar_widget), i++);
4161 if (ti) gtk_widget_hide_all (GTK_WIDGET (ti));
4162 } while (ti != NULL);
4164 new_req.height = 0;
4165 if (pack_tool_bar && f->n_tool_bar_items != 0)
4166 xg_pack_tool_bar (f);
4169 gtk_widget_size_request (GTK_WIDGET (x->toolbar_widget), &new_req);
4170 if (old_req.height != new_req.height
4171 && ! FRAME_X_OUTPUT (f)->toolbar_detached)
4173 FRAME_TOOLBAR_HEIGHT (f) = new_req.height;
4174 xg_height_changed (f);
4176 UNBLOCK_INPUT;
4179 /* Deallocate all resources for the tool bar on frame F.
4180 Remove the tool bar. */
4182 void
4183 free_frame_tool_bar (f)
4184 FRAME_PTR f;
4186 struct x_output *x = f->output_data.x;
4188 if (x->toolbar_widget)
4190 int is_packed = x->handlebox_widget != 0;
4191 BLOCK_INPUT;
4192 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4193 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
4194 if (is_packed)
4195 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4196 x->handlebox_widget);
4197 else
4198 gtk_widget_destroy (x->toolbar_widget);
4200 x->toolbar_widget = 0;
4201 x->handlebox_widget = 0;
4202 FRAME_TOOLBAR_HEIGHT (f) = 0;
4203 xg_height_changed (f);
4205 UNBLOCK_INPUT;
4211 /***********************************************************************
4212 Initializing
4213 ***********************************************************************/
4214 void
4215 xg_initialize ()
4217 GtkBindingSet *binding_set;
4219 #if HAVE_XFT
4220 /* Work around a bug with corrupted data if libXft gets unloaded. This way
4221 we keep it permanently linked in. */
4222 XftInit (0);
4223 #endif
4225 gdpy_def = NULL;
4226 xg_ignore_gtk_scrollbar = 0;
4227 xg_detached_menus = 0;
4228 xg_menu_cb_list.prev = xg_menu_cb_list.next =
4229 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
4231 id_to_widget.max_size = id_to_widget.used = 0;
4232 id_to_widget.widgets = 0;
4234 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
4235 bindings. It doesn't seem to be any way to remove properties,
4236 so we set it to VoidSymbol which in X means "no key". */
4237 gtk_settings_set_string_property (gtk_settings_get_default (),
4238 "gtk-menu-bar-accel",
4239 "VoidSymbol",
4240 EMACS_CLASS);
4242 /* Make GTK text input widgets use Emacs style keybindings. This is
4243 Emacs after all. */
4244 gtk_settings_set_string_property (gtk_settings_get_default (),
4245 "gtk-key-theme-name",
4246 "Emacs",
4247 EMACS_CLASS);
4249 /* Make dialogs close on C-g. Since file dialog inherits from
4250 dialog, this works for them also. */
4251 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
4252 gtk_binding_entry_add_signal (binding_set, GDK_g, GDK_CONTROL_MASK,
4253 "close", 0);
4255 /* Make menus close on C-g. */
4256 binding_set = gtk_binding_set_by_class (g_type_class_ref
4257 (GTK_TYPE_MENU_SHELL));
4258 gtk_binding_entry_add_signal (binding_set, GDK_g, GDK_CONTROL_MASK,
4259 "cancel", 0);
4262 #endif /* USE_GTK */
4264 /* arch-tag: fe7104da-bc1e-4aba-9bd1-f349c528f7e3
4265 (do not change this comment) */