* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
[emacs.git] / src / gtkutil.c
blobcabe74f3d616e9c5211c2b42d0cfc0cd9ccd49b4
1 /* Functions for creating and updating GTK widgets.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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 /* Callback called when the menu bar W is mapped.
2940 Used to find the height of the menu bar if we didn't get it
2941 after showing the widget. */
2943 static void
2944 menubar_map_cb (GtkWidget *w, gpointer user_data)
2946 GtkRequisition req;
2947 FRAME_PTR f = (FRAME_PTR) user_data;
2948 gtk_widget_size_request (w, &req);
2949 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
2951 FRAME_MENUBAR_HEIGHT (f) = req.height;
2952 xg_height_changed (f);
2956 /* Recompute all the widgets of frame F, when the menu bar has been
2957 changed. Value is non-zero if widgets were updated. */
2960 xg_update_frame_menubar (f)
2961 FRAME_PTR f;
2963 struct x_output *x = f->output_data.x;
2964 GtkRequisition req;
2966 if (!x->menubar_widget || GTK_WIDGET_MAPPED (x->menubar_widget))
2967 return 0;
2969 if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget))
2970 return 0; /* Already done this, happens for frames created invisible. */
2972 BLOCK_INPUT;
2974 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
2975 FALSE, FALSE, 0);
2976 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
2978 g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f);
2979 gtk_widget_show_all (x->menubar_widget);
2980 gtk_widget_size_request (x->menubar_widget, &req);
2981 /* If menu bar doesn't know its height yet, cheat a little so the frame
2982 doesn't jump so much when resized later in menubar_map_cb. */
2983 if (req.height == 0)
2984 req.height = 23;
2986 if (FRAME_MENUBAR_HEIGHT (f) != req.height)
2988 FRAME_MENUBAR_HEIGHT (f) = req.height;
2989 xg_height_changed (f);
2991 UNBLOCK_INPUT;
2993 return 1;
2996 /* Get rid of the menu bar of frame F, and free its storage.
2997 This is used when deleting a frame, and when turning off the menu bar. */
2999 void
3000 free_frame_menubar (f)
3001 FRAME_PTR f;
3003 struct x_output *x = f->output_data.x;
3005 if (x->menubar_widget)
3007 BLOCK_INPUT;
3009 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
3010 /* The menubar and its children shall be deleted when removed from
3011 the container. */
3012 x->menubar_widget = 0;
3013 FRAME_MENUBAR_HEIGHT (f) = 0;
3014 xg_height_changed (f);
3015 UNBLOCK_INPUT;
3020 xg_event_is_for_menubar (FRAME_PTR f, XEvent *event)
3022 struct x_output *x = f->output_data.x;
3023 GList *iter;
3024 GdkRectangle rec;
3025 GList *list;
3026 GdkDisplay *gdpy;
3027 GdkWindow *gw;
3028 GdkEvent gevent;
3029 GtkWidget *gwdesc;
3031 if (! x->menubar_widget) return 0;
3033 if (! (event->xbutton.x >= 0
3034 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
3035 && event->xbutton.y >= 0
3036 && event->xbutton.y < f->output_data.x->menubar_height
3037 && event->xbutton.same_screen))
3038 return 0;
3040 gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3041 gw = gdk_xid_table_lookup_for_display (gdpy, event->xbutton.window);
3042 if (! gw) return 0;
3043 gevent.any.window = gw;
3044 gwdesc = gtk_get_event_widget (&gevent);
3045 if (! gwdesc) return 0;
3046 if (! GTK_IS_MENU_BAR (gwdesc)
3047 && ! GTK_IS_MENU_ITEM (gwdesc)
3048 && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc))
3049 return 0;
3051 list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget));
3052 if (! list) return 0;
3053 rec.x = event->xbutton.x;
3054 rec.y = event->xbutton.y;
3055 rec.width = 1;
3056 rec.height = 1;
3058 for (iter = list ; iter; iter = g_list_next (iter))
3060 GtkWidget *w = GTK_WIDGET (iter->data);
3061 if (GTK_WIDGET_MAPPED (w) && gtk_widget_intersect (w, &rec, NULL))
3062 break;
3064 g_list_free (list);
3065 return iter == 0 ? 0 : 1;
3070 /***********************************************************************
3071 Scroll bar functions
3072 ***********************************************************************/
3075 /* Setting scroll bar values invokes the callback. Use this variable
3076 to indicate that callback should do nothing. */
3078 int xg_ignore_gtk_scrollbar;
3080 /* Xlib's `Window' fits in 32 bits. But we want to store pointers, and they
3081 may be larger than 32 bits. Keep a mapping from integer index to widget
3082 pointers to get around the 32 bit limitation. */
3084 static struct
3086 GtkWidget **widgets;
3087 int max_size;
3088 int used;
3089 } id_to_widget;
3091 /* Grow this much every time we need to allocate more */
3093 #define ID_TO_WIDGET_INCR 32
3095 /* Store the widget pointer W in id_to_widget and return the integer index. */
3097 static int
3098 xg_store_widget_in_map (w)
3099 GtkWidget *w;
3101 int i;
3103 if (id_to_widget.max_size == id_to_widget.used)
3105 int new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
3107 id_to_widget.widgets = xrealloc (id_to_widget.widgets,
3108 sizeof (GtkWidget *)*new_size);
3110 for (i = id_to_widget.max_size; i < new_size; ++i)
3111 id_to_widget.widgets[i] = 0;
3112 id_to_widget.max_size = new_size;
3115 /* Just loop over the array and find a free place. After all,
3116 how many scroll bars are we creating? Should be a small number.
3117 The check above guarantees we will find a free place. */
3118 for (i = 0; i < id_to_widget.max_size; ++i)
3120 if (! id_to_widget.widgets[i])
3122 id_to_widget.widgets[i] = w;
3123 ++id_to_widget.used;
3125 return i;
3129 /* Should never end up here */
3130 abort ();
3133 /* Remove pointer at IDX from id_to_widget.
3134 Called when scroll bar is destroyed. */
3136 static void
3137 xg_remove_widget_from_map (idx)
3138 int idx;
3140 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3142 id_to_widget.widgets[idx] = 0;
3143 --id_to_widget.used;
3147 /* Get the widget pointer at IDX from id_to_widget. */
3149 static GtkWidget *
3150 xg_get_widget_from_map (idx)
3151 int idx;
3153 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
3154 return id_to_widget.widgets[idx];
3156 return 0;
3159 /* Return the scrollbar id for X Window WID on display DPY.
3160 Return -1 if WID not in id_to_widget. */
3163 xg_get_scroll_id_for_window (dpy, wid)
3164 Display *dpy;
3165 Window wid;
3167 int idx;
3168 GtkWidget *w;
3170 w = xg_win_to_widget (dpy, wid);
3172 if (w)
3174 for (idx = 0; idx < id_to_widget.max_size; ++idx)
3175 if (id_to_widget.widgets[idx] == w)
3176 return idx;
3179 return -1;
3182 /* Callback invoked when scroll bar WIDGET is destroyed.
3183 DATA is the index into id_to_widget for WIDGET.
3184 We free pointer to last scroll bar values here and remove the index. */
3186 static void
3187 xg_gtk_scroll_destroy (widget, data)
3188 GtkWidget *widget;
3189 gpointer data;
3191 int id = (int) (EMACS_INT) data; /* The EMACS_INT cast avoids a warning. */
3192 xg_remove_widget_from_map (id);
3195 /* Create a scroll bar widget for frame F. Store the scroll bar
3196 in BAR.
3197 SCROLL_CALLBACK is the callback to invoke when the value of the
3198 bar changes.
3199 END_CALLBACK is the callback to invoke when scrolling ends.
3200 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
3201 to set resources for the widget. */
3203 void
3204 xg_create_scroll_bar (f, bar, scroll_callback, end_callback, scroll_bar_name)
3205 FRAME_PTR f;
3206 struct scroll_bar *bar;
3207 GCallback scroll_callback, end_callback;
3208 char *scroll_bar_name;
3210 GtkWidget *wscroll;
3211 GtkWidget *webox;
3212 GtkObject *vadj;
3213 int scroll_id;
3215 /* Page, step increment values are not so important here, they
3216 will be corrected in x_set_toolkit_scroll_bar_thumb. */
3217 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
3218 0.1, 0.1, 0.1);
3220 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
3221 webox = gtk_event_box_new ();
3222 gtk_widget_set_name (wscroll, scroll_bar_name);
3223 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
3224 g_object_set_data (G_OBJECT (wscroll), XG_FRAME_DATA, (gpointer)f);
3226 scroll_id = xg_store_widget_in_map (wscroll);
3228 /* The EMACS_INT cast avoids a warning. */
3229 g_signal_connect (G_OBJECT (wscroll),
3230 "destroy",
3231 G_CALLBACK (xg_gtk_scroll_destroy),
3232 (gpointer) (EMACS_INT) scroll_id);
3233 g_signal_connect (G_OBJECT (wscroll),
3234 "change-value",
3235 scroll_callback,
3236 (gpointer) bar);
3237 g_signal_connect (G_OBJECT (wscroll),
3238 "button-release-event",
3239 end_callback,
3240 (gpointer) bar);
3242 /* The scroll bar widget does not draw on a window of its own. Instead
3243 it draws on the parent window, in this case the edit widget. So
3244 whenever the edit widget is cleared, the scroll bar needs to redraw
3245 also, which causes flicker. Put an event box between the edit widget
3246 and the scroll bar, so the scroll bar instead draws itself on the
3247 event box window. */
3248 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget), webox, -1, -1);
3249 gtk_container_add (GTK_CONTAINER (webox), wscroll);
3252 /* Set the cursor to an arrow. */
3253 xg_set_cursor (webox, FRAME_X_DISPLAY_INFO (f)->xg_cursor);
3255 bar->x_window = scroll_id;
3258 /* Make the scroll bar represented by SCROLLBAR_ID visible. */
3260 void
3261 xg_show_scroll_bar (scrollbar_id)
3262 int scrollbar_id;
3264 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3265 if (w)
3266 gtk_widget_show_all (gtk_widget_get_parent (w));
3269 /* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
3271 void
3272 xg_remove_scroll_bar (f, scrollbar_id)
3273 FRAME_PTR f;
3274 int scrollbar_id;
3276 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
3277 if (w)
3279 GtkWidget *wparent = gtk_widget_get_parent (w);
3280 gtk_widget_destroy (w);
3281 gtk_widget_destroy (wparent);
3282 SET_FRAME_GARBAGED (f);
3286 /* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
3287 in frame F.
3288 TOP/LEFT are the new pixel positions where the bar shall appear.
3289 WIDTH, HEIGHT is the size in pixels the bar shall have. */
3291 void
3292 xg_update_scrollbar_pos (f, scrollbar_id, top, left, width, height)
3293 FRAME_PTR f;
3294 int scrollbar_id;
3295 int top;
3296 int left;
3297 int width;
3298 int height;
3301 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
3303 if (wscroll)
3305 GtkWidget *wfixed = f->output_data.x->edit_widget;
3306 GtkWidget *wparent = gtk_widget_get_parent (wscroll);
3307 GtkFixed *wf = GTK_FIXED (wfixed);
3309 /* Clear out old position. */
3310 GList *iter;
3311 int oldx = -1, oldy = -1, oldw, oldh;
3312 for (iter = wf->children; iter; iter = iter->next)
3313 if (((GtkFixedChild *)iter->data)->widget == wparent)
3315 GtkFixedChild *ch = (GtkFixedChild *)iter->data;
3316 if (ch->x != left || ch->y != top)
3318 oldx = ch->x;
3319 oldy = ch->y;
3320 gtk_widget_get_size_request (wscroll, &oldw, &oldh);
3322 break;
3325 /* Move and resize to new values. */
3326 gtk_fixed_move (GTK_FIXED (wfixed), wparent, left, top);
3327 gtk_widget_set_size_request (wscroll, width, height);
3328 gtk_widget_queue_draw (wfixed);
3329 gdk_window_process_all_updates ();
3330 if (oldx != -1)
3332 /* Clear under old scroll bar position. This must be done after
3333 the gtk_widget_queue_draw and gdk_window_process_all_updates
3334 above. */
3335 x_clear_area (FRAME_X_DISPLAY (f),
3336 FRAME_X_WINDOW (f),
3337 oldx, oldy, oldw, oldh, 0);
3340 /* GTK does not redraw until the main loop is entered again, but
3341 if there are no X events pending we will not enter it. So we sync
3342 here to get some events. */
3344 x_sync (f);
3345 SET_FRAME_GARBAGED (f);
3346 cancel_mouse_face (f);
3350 /* Set the thumb size and position of scroll bar BAR. We are currently
3351 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3353 void
3354 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
3355 struct scroll_bar *bar;
3356 int portion, position, whole;
3358 GtkWidget *wscroll = xg_get_widget_from_map (bar->x_window);
3360 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3362 if (wscroll && NILP (bar->dragging))
3364 GtkAdjustment *adj;
3365 gdouble shown;
3366 gdouble top;
3367 int size, value;
3368 int new_step;
3369 int changed = 0;
3371 adj = gtk_range_get_adjustment (GTK_RANGE (wscroll));
3373 /* We do the same as for MOTIF in xterm.c, assume 30 chars per line
3374 rather than the real portion value. This makes the thumb less likely
3375 to resize and that looks better. */
3376 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
3377 /* When the thumb is at the bottom, position == whole.
3378 So we need to increase `whole' to make space for the thumb. */
3379 whole += portion;
3381 if (whole <= 0)
3382 top = 0, shown = 1;
3383 else
3385 top = (gdouble) position / whole;
3386 shown = (gdouble) portion / whole;
3389 size = shown * XG_SB_RANGE;
3390 size = min (size, XG_SB_RANGE);
3391 size = max (size, 1);
3393 value = top * XG_SB_RANGE;
3394 value = min (value, XG_SB_MAX - size);
3395 value = max (value, XG_SB_MIN);
3397 /* Assume all lines are of equal size. */
3398 new_step = size / max (1, FRAME_LINES (f));
3400 if ((int) adj->page_size != size
3401 || (int) adj->step_increment != new_step)
3403 adj->page_size = size;
3404 adj->step_increment = new_step;
3405 /* Assume a page increment is about 95% of the page size */
3406 adj->page_increment = (int) (0.95*adj->page_size);
3407 changed = 1;
3410 if (changed || (int) gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3412 BLOCK_INPUT;
3414 /* gtk_range_set_value invokes the callback. Set
3415 ignore_gtk_scrollbar to make the callback do nothing */
3416 xg_ignore_gtk_scrollbar = 1;
3418 if ((int) gtk_range_get_value (GTK_RANGE (wscroll)) != value)
3419 gtk_range_set_value (GTK_RANGE (wscroll), (gdouble)value);
3420 else if (changed)
3421 gtk_adjustment_changed (adj);
3423 xg_ignore_gtk_scrollbar = 0;
3425 UNBLOCK_INPUT;
3430 /* Return non-zero if EVENT is for a scroll bar in frame F.
3431 When the same X window is used for several Gtk+ widgets, we cannot
3432 say for sure based on the X window alone if an event is for the
3433 frame. This function does additional checks.
3435 Return non-zero if the event is for a scroll bar, zero otherwise. */
3438 xg_event_is_for_scrollbar (f, event)
3439 FRAME_PTR f;
3440 XEvent *event;
3442 int retval = 0;
3444 if (f && event->type == ButtonPress && event->xbutton.button < 4)
3446 /* Check if press occurred outside the edit widget. */
3447 GdkDisplay *gdpy = gdk_x11_lookup_xdisplay (FRAME_X_DISPLAY (f));
3448 retval = gdk_display_get_window_at_pointer (gdpy, NULL, NULL)
3449 != f->output_data.x->edit_widget->window;
3451 else if (f
3452 && ((event->type == ButtonRelease && event->xbutton.button < 4)
3453 || event->type == MotionNotify))
3455 /* If we are releasing or moving the scroll bar, it has the grab. */
3456 retval = gtk_grab_get_current () != 0
3457 && gtk_grab_get_current () != f->output_data.x->edit_widget;
3460 return retval;
3465 /***********************************************************************
3466 Tool bar functions
3467 ***********************************************************************/
3468 /* The key for the data we put in the GtkImage widgets. The data is
3469 the image used by Emacs. We use this to see if we need to update
3470 the GtkImage with a new image. */
3471 #define XG_TOOL_BAR_IMAGE_DATA "emacs-tool-bar-image"
3473 /* The key for storing the latest modifiers so the activate callback can
3474 get them. */
3475 #define XG_TOOL_BAR_LAST_MODIFIER "emacs-tool-bar-modifier"
3477 /* The key for storing the button widget in its proxy menu item. */
3478 #define XG_TOOL_BAR_PROXY_BUTTON "emacs-tool-bar-proxy-button"
3480 /* The key for the data we put in the GtkImage widgets. The data is
3481 the stock name used by Emacs. We use this to see if we need to update
3482 the GtkImage with a new image. */
3483 #define XG_TOOL_BAR_STOCK_NAME "emacs-tool-bar-stock-name"
3485 /* As above, but this is used for named theme widgets, as opposed to
3486 stock items. */
3487 #define XG_TOOL_BAR_ICON_NAME "emacs-tool-bar-icon-name"
3489 /* Callback function invoked when a tool bar item is pressed.
3490 W is the button widget in the tool bar that got pressed,
3491 CLIENT_DATA is an integer that is the index of the button in the
3492 tool bar. 0 is the first button. */
3494 static gboolean
3495 xg_tool_bar_button_cb (widget, event, user_data)
3496 GtkWidget *widget;
3497 GdkEventButton *event;
3498 gpointer user_data;
3500 /* Casts to avoid warnings when gpointer is 64 bits and int is 32 bits */
3501 gpointer ptr = (gpointer) (EMACS_INT) event->state;
3502 g_object_set_data (G_OBJECT (widget), XG_TOOL_BAR_LAST_MODIFIER, ptr);
3503 return FALSE;
3507 /* Callback function invoked when a tool bar item is pressed.
3508 W is the button widget in the tool bar that got pressed,
3509 CLIENT_DATA is an integer that is the index of the button in the
3510 tool bar. 0 is the first button. */
3512 static void
3513 xg_tool_bar_callback (w, client_data)
3514 GtkWidget *w;
3515 gpointer client_data;
3517 /* The EMACS_INT cast avoids a warning. */
3518 int idx = (int) (EMACS_INT) client_data;
3519 int mod = (int) (EMACS_INT) g_object_get_data (G_OBJECT (w),
3520 XG_TOOL_BAR_LAST_MODIFIER);
3522 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3523 Lisp_Object key, frame;
3524 struct input_event event;
3525 EVENT_INIT (event);
3527 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3528 return;
3530 idx *= TOOL_BAR_ITEM_NSLOTS;
3532 key = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_KEY);
3533 XSETFRAME (frame, f);
3535 /* We generate two events here. The first one is to set the prefix
3536 to `(tool_bar)', see keyboard.c. */
3537 event.kind = TOOL_BAR_EVENT;
3538 event.frame_or_window = frame;
3539 event.arg = frame;
3540 kbd_buffer_store_event (&event);
3542 event.kind = TOOL_BAR_EVENT;
3543 event.frame_or_window = frame;
3544 event.arg = key;
3545 /* Convert between the modifier bits GDK uses and the modifier bits
3546 Emacs uses. This assumes GDK and X masks are the same, which they are when
3547 this is written. */
3548 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), mod);
3549 kbd_buffer_store_event (&event);
3551 /* Return focus to the frame after we have clicked on a detached
3552 tool bar button. */
3553 Fx_focus_frame (frame);
3556 /* Callback function invoked when a tool bar item is pressed in a detached
3557 tool bar or the overflow drop down menu.
3558 We just call xg_tool_bar_callback.
3559 W is the menu item widget that got pressed,
3560 CLIENT_DATA is an integer that is the index of the button in the
3561 tool bar. 0 is the first button. */
3563 static void
3564 xg_tool_bar_proxy_callback (w, client_data)
3565 GtkWidget *w;
3566 gpointer client_data;
3568 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3569 XG_TOOL_BAR_PROXY_BUTTON));
3570 xg_tool_bar_callback (wbutton, client_data);
3574 static gboolean
3575 xg_tool_bar_help_callback P_ ((GtkWidget *w,
3576 GdkEventCrossing *event,
3577 gpointer client_data));
3579 /* This callback is called when a help is to be shown for an item in
3580 the detached tool bar when the detached tool bar it is not expanded. */
3582 static gboolean
3583 xg_tool_bar_proxy_help_callback (w, event, client_data)
3584 GtkWidget *w;
3585 GdkEventCrossing *event;
3586 gpointer client_data;
3588 GtkWidget *wbutton = GTK_WIDGET (g_object_get_data (G_OBJECT (w),
3589 XG_TOOL_BAR_PROXY_BUTTON));
3591 return xg_tool_bar_help_callback (wbutton, event, client_data);
3595 /* This callback is called when a tool item should create a proxy item,
3596 such as for the overflow menu. Also called when the tool bar is detached.
3597 If we don't create a proxy menu item, the detached tool bar will be
3598 blank. */
3600 static gboolean
3601 xg_tool_bar_menu_proxy (toolitem, user_data)
3602 GtkToolItem *toolitem;
3603 gpointer user_data;
3605 GtkWidget *weventbox = gtk_bin_get_child (GTK_BIN (toolitem));
3606 GtkButton *wbutton = GTK_BUTTON (gtk_bin_get_child (GTK_BIN (weventbox)));
3607 GtkWidget *wmenuitem = gtk_image_menu_item_new_with_label ("");
3608 GtkWidget *wmenuimage;
3610 if (gtk_button_get_use_stock (wbutton))
3611 wmenuimage = gtk_image_new_from_stock (gtk_button_get_label (wbutton),
3612 GTK_ICON_SIZE_MENU);
3613 else
3615 GtkImage *wimage = GTK_IMAGE (gtk_bin_get_child (GTK_BIN (wbutton)));
3616 GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (wbutton));
3617 GtkImageType store_type = gtk_image_get_storage_type (wimage);
3619 g_object_set (G_OBJECT (settings), "gtk-menu-images", TRUE, NULL);
3621 if (store_type == GTK_IMAGE_STOCK)
3623 gchar *stock_id;
3624 gtk_image_get_stock (wimage, &stock_id, NULL);
3625 wmenuimage = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
3627 else if (store_type == GTK_IMAGE_ICON_SET)
3629 GtkIconSet *icon_set;
3630 gtk_image_get_icon_set (wimage, &icon_set, NULL);
3631 wmenuimage = gtk_image_new_from_icon_set (icon_set,
3632 GTK_ICON_SIZE_MENU);
3634 else if (store_type == GTK_IMAGE_PIXBUF)
3636 gint width, height;
3638 if (settings &&
3639 gtk_icon_size_lookup_for_settings (settings, GTK_ICON_SIZE_MENU,
3640 &width, &height))
3642 GdkPixbuf *src_pixbuf, *dest_pixbuf;
3644 src_pixbuf = gtk_image_get_pixbuf (wimage);
3645 dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
3646 GDK_INTERP_BILINEAR);
3648 wmenuimage = gtk_image_new_from_pixbuf (dest_pixbuf);
3650 else
3652 fprintf (stderr, "internal error: GTK_IMAGE_PIXBUF failed\n");
3653 abort ();
3656 else if (store_type == GTK_IMAGE_ICON_NAME)
3658 const gchar *icon_name;
3659 GtkIconSize icon_size;
3661 gtk_image_get_icon_name (wimage, &icon_name, &icon_size);
3662 wmenuimage = gtk_image_new_from_icon_name (icon_name,
3663 GTK_ICON_SIZE_MENU);
3665 else
3667 fprintf (stderr, "internal error: store_type is %d\n", store_type);
3668 abort ();
3671 if (wmenuimage)
3672 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (wmenuitem), wmenuimage);
3674 g_signal_connect (G_OBJECT (wmenuitem),
3675 "activate",
3676 G_CALLBACK (xg_tool_bar_proxy_callback),
3677 user_data);
3680 g_object_set_data (G_OBJECT (wmenuitem), XG_TOOL_BAR_PROXY_BUTTON,
3681 (gpointer) wbutton);
3682 gtk_tool_item_set_proxy_menu_item (toolitem, "Emacs toolbar item", wmenuitem);
3683 gtk_widget_set_sensitive (wmenuitem, GTK_WIDGET_SENSITIVE (wbutton));
3685 /* Use enter/leave notify to show help. We use the events
3686 rather than the GtkButton specific signals "enter" and
3687 "leave", so we can have only one callback. The event
3688 will tell us what kind of event it is. */
3689 g_signal_connect (G_OBJECT (wmenuitem),
3690 "enter-notify-event",
3691 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3692 user_data);
3693 g_signal_connect (G_OBJECT (wmenuitem),
3694 "leave-notify-event",
3695 G_CALLBACK (xg_tool_bar_proxy_help_callback),
3696 user_data);
3698 return TRUE;
3701 /* This callback is called when a tool bar is detached. We must set
3702 the height of the tool bar to zero when this happens so frame sizes
3703 are correctly calculated.
3704 WBOX is the handle box widget that enables detach/attach of the tool bar.
3705 W is the tool bar widget.
3706 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
3708 static void
3709 xg_tool_bar_detach_callback (wbox, w, client_data)
3710 GtkHandleBox *wbox;
3711 GtkWidget *w;
3712 gpointer client_data;
3714 FRAME_PTR f = (FRAME_PTR) client_data;
3715 extern int x_gtk_whole_detached_tool_bar;
3717 g_object_set (G_OBJECT (w), "show-arrow", !x_gtk_whole_detached_tool_bar,
3718 NULL);
3720 if (f)
3722 FRAME_X_OUTPUT (f)->toolbar_detached = 1;
3724 /* When detaching a tool bar, not everything dissapear. There are
3725 a few pixels left that are used to drop the tool bar back into
3726 place. */
3727 FRAME_TOOLBAR_HEIGHT (f) = 4;
3728 xg_height_changed (f);
3732 /* This callback is called when a tool bar is reattached. We must set
3733 the height of the tool bar when this happens so frame sizes
3734 are correctly calculated.
3735 WBOX is the handle box widget that enables detach/attach of the tool bar.
3736 W is the tool bar widget.
3737 CLIENT_DATA is a pointer to the frame the tool bar belongs to. */
3739 static void
3740 xg_tool_bar_attach_callback (wbox, w, client_data)
3741 GtkHandleBox *wbox;
3742 GtkWidget *w;
3743 gpointer client_data;
3745 FRAME_PTR f = (FRAME_PTR) client_data;
3746 g_object_set (G_OBJECT (w), "show-arrow", TRUE, NULL);
3748 if (f)
3750 GtkRequisition req;
3752 FRAME_X_OUTPUT (f)->toolbar_detached = 0;
3754 gtk_widget_size_request (w, &req);
3755 FRAME_TOOLBAR_HEIGHT (f) = req.height;
3756 xg_height_changed (f);
3760 /* This callback is called when the mouse enters or leaves a tool bar item.
3761 It is used for displaying and hiding the help text.
3762 W is the tool bar item, a button.
3763 EVENT is either an enter event or leave event.
3764 CLIENT_DATA is an integer that is the index of the button in the
3765 tool bar. 0 is the first button.
3767 Returns FALSE to tell GTK to keep processing this event. */
3769 static gboolean
3770 xg_tool_bar_help_callback (w, event, client_data)
3771 GtkWidget *w;
3772 GdkEventCrossing *event;
3773 gpointer client_data;
3775 /* The EMACS_INT cast avoids a warning. */
3776 int idx = (int) (EMACS_INT) client_data;
3777 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (w), XG_FRAME_DATA);
3778 Lisp_Object help, frame;
3780 if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items))
3781 return FALSE;
3783 if (event->type == GDK_ENTER_NOTIFY)
3785 idx *= TOOL_BAR_ITEM_NSLOTS;
3786 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_HELP);
3788 if (NILP (help))
3789 help = AREF (f->tool_bar_items, idx + TOOL_BAR_ITEM_CAPTION);
3791 else
3792 help = Qnil;
3794 XSETFRAME (frame, f);
3795 kbd_buffer_store_help_event (frame, help);
3797 return FALSE;
3801 /* This callback is called when a tool bar item shall be redrawn.
3802 It modifies the expose event so that the GtkImage widget redraws the
3803 whole image. This to overcome a bug that makes GtkImage draw the image
3804 in the wrong place when it tries to redraw just a part of the image.
3805 W is the GtkImage to be redrawn.
3806 EVENT is the expose event for W.
3807 CLIENT_DATA is unused.
3809 Returns FALSE to tell GTK to keep processing this event. */
3811 static gboolean
3812 xg_tool_bar_item_expose_callback (w, event, client_data)
3813 GtkWidget *w;
3814 GdkEventExpose *event;
3815 gpointer client_data;
3817 gint width, height;
3819 gdk_drawable_get_size (event->window, &width, &height);
3821 event->area.x -= width > event->area.width ? width-event->area.width : 0;
3822 event->area.y -= height > event->area.height ? height-event->area.height : 0;
3824 event->area.x = max (0, event->area.x);
3825 event->area.y = max (0, event->area.y);
3827 event->area.width = max (width, event->area.width);
3828 event->area.height = max (height, event->area.height);
3830 return FALSE;
3833 /* Attach a tool bar to frame F. */
3835 static void
3836 xg_pack_tool_bar (f)
3837 FRAME_PTR f;
3839 struct x_output *x = f->output_data.x;
3840 int vbox_pos = x->menubar_widget ? 1 : 0;
3842 x->handlebox_widget = gtk_handle_box_new ();
3843 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-detached",
3844 G_CALLBACK (xg_tool_bar_detach_callback), f);
3845 g_signal_connect (G_OBJECT (x->handlebox_widget), "child-attached",
3846 G_CALLBACK (xg_tool_bar_attach_callback), f);
3848 gtk_container_add (GTK_CONTAINER (x->handlebox_widget),
3849 x->toolbar_widget);
3851 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->handlebox_widget,
3852 FALSE, FALSE, 0);
3854 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->handlebox_widget,
3855 vbox_pos);
3856 gtk_widget_show_all (x->handlebox_widget);
3859 /* Create a tool bar for frame F. */
3861 static void
3862 xg_create_tool_bar (f)
3863 FRAME_PTR f;
3865 struct x_output *x = f->output_data.x;
3867 x->toolbar_widget = gtk_toolbar_new ();
3868 x->toolbar_detached = 0;
3870 gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar");
3872 /* We only have icons, so override any user setting. We could
3873 use the caption property of the toolbar item (see update_frame_tool_bar
3874 below), but some of those strings are long, making the toolbar so
3875 long it does not fit on the screen. The GtkToolbar widget makes every
3876 item equal size, so the longest caption determine the size of every
3877 tool bar item. I think the creators of the GtkToolbar widget
3878 counted on 4 or 5 character long strings. */
3879 gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS);
3880 gtk_toolbar_set_orientation (GTK_TOOLBAR (x->toolbar_widget),
3881 GTK_ORIENTATION_HORIZONTAL);
3885 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
3887 /* Find the right-to-left image named by RTL in the tool bar images for F.
3888 Returns IMAGE if RTL is not found. */
3890 static Lisp_Object
3891 find_rtl_image (f, image, rtl)
3892 FRAME_PTR f;
3893 Lisp_Object image;
3894 Lisp_Object rtl;
3896 int i;
3897 Lisp_Object file, rtl_name;
3898 struct gcpro gcpro1, gcpro2;
3899 GCPRO2 (file, rtl_name);
3901 rtl_name = Ffile_name_nondirectory (rtl);
3903 for (i = 0; i < f->n_tool_bar_items; ++i)
3905 Lisp_Object rtl_image = PROP (TOOL_BAR_ITEM_IMAGES);
3906 if (!NILP (file = file_for_image (rtl_image)))
3908 file = call1 (intern ("file-name-sans-extension"),
3909 Ffile_name_nondirectory (file));
3910 if (EQ (Fequal (file, rtl_name), Qt))
3912 image = rtl_image;
3913 break;
3918 return image;
3921 /* Update the tool bar for frame F. Add new buttons and remove old. */
3923 extern Lisp_Object Qx_gtk_map_stock;
3925 void
3926 update_frame_tool_bar (f)
3927 FRAME_PTR f;
3929 int i;
3930 GtkRequisition old_req, new_req;
3931 struct x_output *x = f->output_data.x;
3932 int hmargin = 0, vmargin = 0;
3933 GtkToolbar *wtoolbar;
3934 GtkToolItem *ti;
3935 GtkTextDirection dir;
3936 int pack_tool_bar = x->handlebox_widget == NULL;
3938 if (! FRAME_GTK_WIDGET (f))
3939 return;
3941 BLOCK_INPUT;
3943 if (INTEGERP (Vtool_bar_button_margin)
3944 && XINT (Vtool_bar_button_margin) > 0)
3946 hmargin = XFASTINT (Vtool_bar_button_margin);
3947 vmargin = XFASTINT (Vtool_bar_button_margin);
3949 else if (CONSP (Vtool_bar_button_margin))
3951 if (INTEGERP (XCAR (Vtool_bar_button_margin))
3952 && XINT (XCAR (Vtool_bar_button_margin)) > 0)
3953 hmargin = XFASTINT (XCAR (Vtool_bar_button_margin));
3955 if (INTEGERP (XCDR (Vtool_bar_button_margin))
3956 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
3957 vmargin = XFASTINT (XCDR (Vtool_bar_button_margin));
3960 /* The natural size (i.e. when GTK uses 0 as margin) looks best,
3961 so take DEFAULT_TOOL_BAR_BUTTON_MARGIN to mean "default for GTK",
3962 i.e. zero. This means that margins less than
3963 DEFAULT_TOOL_BAR_BUTTON_MARGIN has no effect. */
3964 hmargin = max (0, hmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
3965 vmargin = max (0, vmargin - DEFAULT_TOOL_BAR_BUTTON_MARGIN);
3967 if (! x->toolbar_widget)
3968 xg_create_tool_bar (f);
3970 wtoolbar = GTK_TOOLBAR (x->toolbar_widget);
3971 gtk_widget_size_request (GTK_WIDGET (wtoolbar), &old_req);
3972 dir = gtk_widget_get_direction (x->toolbar_widget);
3974 for (i = 0; i < f->n_tool_bar_items; ++i)
3976 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
3977 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
3978 int idx;
3979 int img_id;
3980 int icon_size = 0;
3981 struct image *img = NULL;
3982 Lisp_Object image;
3983 Lisp_Object stock = Qnil;
3984 GtkStockItem stock_item;
3985 char *stock_name = NULL;
3986 char *icon_name = NULL;
3987 Lisp_Object rtl;
3988 GtkWidget *wbutton = NULL;
3989 GtkWidget *weventbox;
3990 Lisp_Object specified_file;
3992 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (x->toolbar_widget), i);
3994 if (ti)
3996 weventbox = gtk_bin_get_child (GTK_BIN (ti));
3997 wbutton = gtk_bin_get_child (GTK_BIN (weventbox));
4000 image = PROP (TOOL_BAR_ITEM_IMAGES);
4002 /* Ignore invalid image specifications. */
4003 if (!valid_image_p (image))
4005 if (wbutton) gtk_widget_hide (wbutton);
4006 continue;
4009 specified_file = file_for_image (image);
4010 if (!NILP (specified_file) && !NILP (Ffboundp (Qx_gtk_map_stock)))
4011 stock = call1 (Qx_gtk_map_stock, specified_file);
4013 if (STRINGP (stock))
4015 stock_name = SSDATA (stock);
4016 if (stock_name[0] == 'n' && stock_name[1] == ':')
4018 GdkScreen *screen = gtk_widget_get_screen (GTK_WIDGET (wtoolbar));
4019 GtkIconTheme *icon_theme = gtk_icon_theme_get_for_screen (screen);
4021 icon_name = stock_name + 2;
4022 stock_name = NULL;
4023 stock = Qnil;
4025 if (! gtk_icon_theme_has_icon (icon_theme, icon_name))
4026 icon_name = NULL;
4027 else
4028 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4030 else if (gtk_stock_lookup (SSDATA (stock), &stock_item))
4031 icon_size = gtk_toolbar_get_icon_size (wtoolbar);
4032 else
4034 stock = Qnil;
4035 stock_name = NULL;
4039 if (stock_name == NULL && icon_name == NULL)
4041 /* No stock image, or stock item not known. Try regular image. */
4043 /* If image is a vector, choose the image according to the
4044 button state. */
4045 if (dir == GTK_TEXT_DIR_RTL
4046 && !NILP (rtl = PROP (TOOL_BAR_ITEM_RTL_IMAGE))
4047 && STRINGP (rtl))
4049 image = find_rtl_image (f, image, rtl);
4052 if (VECTORP (image))
4054 if (enabled_p)
4055 idx = (selected_p
4056 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
4057 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
4058 else
4059 idx = (selected_p
4060 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
4061 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
4063 xassert (ASIZE (image) >= idx);
4064 image = AREF (image, idx);
4066 else
4067 idx = -1;
4069 img_id = lookup_image (f, image);
4070 img = IMAGE_FROM_ID (f, img_id);
4071 prepare_image_for_display (f, img);
4073 if (img->load_failed_p || img->pixmap == None)
4075 if (ti)
4076 gtk_widget_hide_all (GTK_WIDGET (ti));
4077 else
4079 /* Insert an empty (non-image) button */
4080 weventbox = gtk_event_box_new ();
4081 wbutton = gtk_button_new ();
4082 gtk_button_set_focus_on_click (GTK_BUTTON (wbutton), FALSE);
4083 gtk_button_set_relief (GTK_BUTTON (wbutton),
4084 GTK_RELIEF_NONE);
4085 gtk_container_add (GTK_CONTAINER (weventbox), wbutton);
4086 ti = gtk_tool_item_new ();
4087 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4088 gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, -1);
4090 continue;
4094 if (ti == NULL)
4096 GtkWidget *w;
4097 if (stock_name)
4099 w = gtk_image_new_from_stock (stock_name, icon_size);
4100 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_STOCK_NAME,
4101 (gpointer) xstrdup (stock_name),
4102 (GDestroyNotify) xfree);
4104 else if (icon_name)
4106 w = gtk_image_new_from_icon_name (icon_name, icon_size);
4107 g_object_set_data_full (G_OBJECT (w), XG_TOOL_BAR_ICON_NAME,
4108 (gpointer) xstrdup (icon_name),
4109 (GDestroyNotify) xfree);
4111 else
4113 w = xg_get_image_for_pixmap (f, img, x->widget, NULL);
4114 /* Save the image so we can see if an update is needed when
4115 this function is called again. */
4116 g_object_set_data (G_OBJECT (w), XG_TOOL_BAR_IMAGE_DATA,
4117 (gpointer)img->pixmap);
4120 gtk_misc_set_padding (GTK_MISC (w), hmargin, vmargin);
4121 wbutton = gtk_button_new ();
4122 gtk_button_set_focus_on_click (GTK_BUTTON (wbutton), FALSE);
4123 gtk_button_set_relief (GTK_BUTTON (wbutton), GTK_RELIEF_NONE);
4124 gtk_container_add (GTK_CONTAINER (wbutton), w);
4125 weventbox = gtk_event_box_new ();
4126 gtk_container_add (GTK_CONTAINER (weventbox), wbutton);
4127 ti = gtk_tool_item_new ();
4128 gtk_container_add (GTK_CONTAINER (ti), weventbox);
4129 gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, -1);
4132 /* The EMACS_INT cast avoids a warning. */
4133 g_signal_connect (G_OBJECT (ti), "create-menu-proxy",
4134 G_CALLBACK (xg_tool_bar_menu_proxy),
4135 (gpointer) (EMACS_INT) i);
4137 g_signal_connect (G_OBJECT (wbutton), "clicked",
4138 G_CALLBACK (xg_tool_bar_callback),
4139 (gpointer) (EMACS_INT) i);
4141 gtk_widget_show_all (GTK_WIDGET (ti));
4144 g_object_set_data (G_OBJECT (weventbox), XG_FRAME_DATA, (gpointer)f);
4146 /* Catch expose events to overcome an annoying redraw bug, see
4147 comment for xg_tool_bar_item_expose_callback. */
4148 g_signal_connect (G_OBJECT (ti),
4149 "expose-event",
4150 G_CALLBACK (xg_tool_bar_item_expose_callback),
4153 gtk_widget_set_sensitive (wbutton, enabled_p);
4154 gtk_tool_item_set_homogeneous (ti, FALSE);
4156 /* Callback to save modifyer mask (Shift/Control, etc). GTK makes
4157 no distinction based on modifiers in the activate callback,
4158 so we have to do it ourselves. */
4159 g_signal_connect (wbutton, "button-release-event",
4160 G_CALLBACK (xg_tool_bar_button_cb),
4161 NULL);
4163 g_object_set_data (G_OBJECT (wbutton), XG_FRAME_DATA, (gpointer)f);
4165 /* Use enter/leave notify to show help. We use the events
4166 rather than the GtkButton specific signals "enter" and
4167 "leave", so we can have only one callback. The event
4168 will tell us what kind of event it is. */
4169 /* The EMACS_INT cast avoids a warning. */
4170 g_signal_connect (G_OBJECT (weventbox),
4171 "enter-notify-event",
4172 G_CALLBACK (xg_tool_bar_help_callback),
4173 (gpointer) (EMACS_INT) i);
4174 g_signal_connect (G_OBJECT (weventbox),
4175 "leave-notify-event",
4176 G_CALLBACK (xg_tool_bar_help_callback),
4177 (gpointer) (EMACS_INT) i);
4179 else
4181 GtkWidget *wimage = gtk_bin_get_child (GTK_BIN (wbutton));
4182 Pixmap old_img = (Pixmap)g_object_get_data (G_OBJECT (wimage),
4183 XG_TOOL_BAR_IMAGE_DATA);
4184 gpointer old_stock_name = g_object_get_data (G_OBJECT (wimage),
4185 XG_TOOL_BAR_STOCK_NAME);
4186 gpointer old_icon_name = g_object_get_data (G_OBJECT (wimage),
4187 XG_TOOL_BAR_ICON_NAME);
4188 if (stock_name &&
4189 (! old_stock_name || strcmp (old_stock_name, stock_name) != 0))
4191 gtk_image_set_from_stock (GTK_IMAGE (wimage),
4192 stock_name, icon_size);
4193 g_object_set_data_full (G_OBJECT (wimage), XG_TOOL_BAR_STOCK_NAME,
4194 (gpointer) xstrdup (stock_name),
4195 (GDestroyNotify) xfree);
4196 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_IMAGE_DATA,
4197 NULL);
4198 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_ICON_NAME, NULL);
4200 else if (icon_name &&
4201 (! old_icon_name || strcmp (old_icon_name, icon_name) != 0))
4203 gtk_image_set_from_icon_name (GTK_IMAGE (wimage),
4204 icon_name, icon_size);
4205 g_object_set_data_full (G_OBJECT (wimage), XG_TOOL_BAR_ICON_NAME,
4206 (gpointer) xstrdup (icon_name),
4207 (GDestroyNotify) xfree);
4208 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_IMAGE_DATA,
4209 NULL);
4210 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_STOCK_NAME,
4211 NULL);
4213 else if (img && old_img != img->pixmap)
4215 (void) xg_get_image_for_pixmap (f, img, x->widget, wimage);
4216 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_IMAGE_DATA,
4217 (gpointer)img->pixmap);
4219 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_STOCK_NAME,
4220 NULL);
4221 g_object_set_data (G_OBJECT (wimage), XG_TOOL_BAR_ICON_NAME, NULL);
4224 gtk_misc_set_padding (GTK_MISC (wimage), hmargin, vmargin);
4226 gtk_widget_set_sensitive (wbutton, enabled_p);
4227 gtk_widget_show_all (GTK_WIDGET (ti));
4230 #undef PROP
4233 /* Remove buttons not longer needed. We just hide them so they
4234 can be reused later on. */
4237 ti = gtk_toolbar_get_nth_item (GTK_TOOLBAR (x->toolbar_widget), i++);
4238 if (ti) gtk_widget_hide_all (GTK_WIDGET (ti));
4239 } while (ti != NULL);
4241 new_req.height = 0;
4242 if (pack_tool_bar && f->n_tool_bar_items != 0)
4243 xg_pack_tool_bar (f);
4246 gtk_widget_size_request (GTK_WIDGET (x->toolbar_widget), &new_req);
4247 if (old_req.height != new_req.height
4248 && ! FRAME_X_OUTPUT (f)->toolbar_detached)
4250 FRAME_TOOLBAR_HEIGHT (f) = new_req.height;
4251 xg_height_changed (f);
4253 UNBLOCK_INPUT;
4256 /* Deallocate all resources for the tool bar on frame F.
4257 Remove the tool bar. */
4259 void
4260 free_frame_tool_bar (f)
4261 FRAME_PTR f;
4263 struct x_output *x = f->output_data.x;
4265 if (x->toolbar_widget)
4267 int is_packed = x->handlebox_widget != 0;
4268 BLOCK_INPUT;
4269 /* We may have created the toolbar_widget in xg_create_tool_bar, but
4270 not the x->handlebox_widget which is created in xg_pack_tool_bar. */
4271 if (is_packed)
4272 gtk_container_remove (GTK_CONTAINER (x->vbox_widget),
4273 x->handlebox_widget);
4274 else
4275 gtk_widget_destroy (x->toolbar_widget);
4277 x->toolbar_widget = 0;
4278 x->handlebox_widget = 0;
4279 FRAME_TOOLBAR_HEIGHT (f) = 0;
4280 xg_height_changed (f);
4282 UNBLOCK_INPUT;
4288 /***********************************************************************
4289 Initializing
4290 ***********************************************************************/
4291 void
4292 xg_initialize ()
4294 GtkBindingSet *binding_set;
4296 #if HAVE_XFT
4297 /* Work around a bug with corrupted data if libXft gets unloaded. This way
4298 we keep it permanently linked in. */
4299 XftInit (0);
4300 #endif
4302 gdpy_def = NULL;
4303 xg_ignore_gtk_scrollbar = 0;
4304 xg_detached_menus = 0;
4305 xg_menu_cb_list.prev = xg_menu_cb_list.next =
4306 xg_menu_item_cb_list.prev = xg_menu_item_cb_list.next = 0;
4308 id_to_widget.max_size = id_to_widget.used = 0;
4309 id_to_widget.widgets = 0;
4311 /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
4312 bindings. It doesn't seem to be any way to remove properties,
4313 so we set it to VoidSymbol which in X means "no key". */
4314 gtk_settings_set_string_property (gtk_settings_get_default (),
4315 "gtk-menu-bar-accel",
4316 "VoidSymbol",
4317 EMACS_CLASS);
4319 /* Make GTK text input widgets use Emacs style keybindings. This is
4320 Emacs after all. */
4321 gtk_settings_set_string_property (gtk_settings_get_default (),
4322 "gtk-key-theme-name",
4323 "Emacs",
4324 EMACS_CLASS);
4326 /* Make dialogs close on C-g. Since file dialog inherits from
4327 dialog, this works for them also. */
4328 binding_set = gtk_binding_set_by_class (g_type_class_ref (GTK_TYPE_DIALOG));
4329 gtk_binding_entry_add_signal (binding_set, GDK_g, GDK_CONTROL_MASK,
4330 "close", 0);
4332 /* Make menus close on C-g. */
4333 binding_set = gtk_binding_set_by_class (g_type_class_ref
4334 (GTK_TYPE_MENU_SHELL));
4335 gtk_binding_entry_add_signal (binding_set, GDK_g, GDK_CONTROL_MASK,
4336 "cancel", 0);
4339 #endif /* USE_GTK */
4341 /* arch-tag: fe7104da-bc1e-4aba-9bd1-f349c528f7e3
4342 (do not change this comment) */