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