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