*** empty log message ***
[bpt/emacs.git] / src / gtkutil.c
CommitLineData
f392e843
JD
1/* Functions for creating and updating GTK widgets.
2 Copyright (C) 2003
3 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22#include "config.h"
23
24#ifdef USE_GTK
e8794476
JD
25#include <string.h>
26#include <stdio.h>
f392e843
JD
27#include "lisp.h"
28#include "xterm.h"
29#include "blockinput.h"
30#include "window.h"
31#include "atimer.h"
32#include "gtkutil.h"
33#include "termhooks.h"
5b07197a
DL
34#include "keyboard.h"
35#include "charset.h"
36#include "coding.h"
f392e843
JD
37#include <gdk/gdkkeysyms.h>
38
39#define FRAME_TOTAL_PIXEL_HEIGHT(f) \
be786000 40 (FRAME_PIXEL_HEIGHT (f) + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
cea9be54
JD
41
42
f392e843
JD
43\f
44/***********************************************************************
45 Utility functions
46 ***********************************************************************/
47/* The timer for scroll bar repetition and menu bar timeouts.
48 NULL if no timer is started. */
49static struct atimer *xg_timer;
50
51/* The cursor used for scroll bars and popup menus.
52 We only have one cursor for all scroll bars and all popup menus. */
53static GdkCursor *xg_left_ptr_cursor;
54
55
56/* The next two variables and functions are taken from lwlib. */
57static widget_value *widget_value_free_list;
58static int malloc_cpt;
59
60/* Allocate a widget_value structure, either by taking one from the
61 widget_value_free_list or by malloc:ing a new one.
62
63 Return a pointer to the allocated structure. */
64widget_value *
65malloc_widget_value ()
66{
67 widget_value *wv;
68 if (widget_value_free_list)
69 {
70 wv = widget_value_free_list;
71 widget_value_free_list = wv->free_list;
72 wv->free_list = 0;
73 }
74 else
75 {
76 wv = (widget_value *) malloc (sizeof (widget_value));
77 malloc_cpt++;
78 }
79 memset (wv, 0, sizeof (widget_value));
80 return wv;
81}
82
83/* This is analogous to free. It frees only what was allocated
84 by malloc_widget_value, and no substructures. */
85void
86free_widget_value (wv)
87 widget_value *wv;
88{
89 if (wv->free_list)
90 abort ();
91
92 if (malloc_cpt > 25)
93 {
94 /* When the number of already allocated cells is too big,
95 We free it. */
96 free (wv);
97 malloc_cpt--;
98 }
99 else
100 {
101 wv->free_list = widget_value_free_list;
102 widget_value_free_list = wv;
103 }
104}
105
106/* Set *CURSOR on W and all widgets W contain. We must do like this
107 for scroll bars and menu because they create widgets internally,
108 and it is those widgets that are visible.
109
110 If *CURSOR is NULL, create a GDK_LEFT_PTR cursor and set *CURSOR to
111 the created cursor. */
112void
113xg_set_cursor (w, cursor)
114 GtkWidget *w;
115 GdkCursor **cursor;
116{
117 GList *children = gdk_window_peek_children (w->window);
118
119 /* Create the cursor unless already created. */
120 if (! *cursor)
121 *cursor = gdk_cursor_new (GDK_LEFT_PTR);
122
123 gdk_window_set_cursor (w->window, *cursor);
124
125 /* The scroll bar widget has more than one GDK window (had to look at
126 the source to figure this out), and there is no way to set cursor
127 on widgets in GTK. So we must set the cursor for all GDK windows.
128 Ditto for menus. */
129
130 for ( ; children; children = g_list_next (children))
131 gdk_window_set_cursor (GDK_WINDOW (children->data), *cursor);
132}
133
134/* Timer function called when a timeout occurs for xg_timer.
135 This function processes all GTK events in a recursive event loop.
136 This is done because GTK timer events are not seen by Emacs event
137 detection, Emacs only looks for X events. When a scroll bar has the
138 pointer (detected by button press/release events below) an Emacs
139 timer is started, and this function can then check if the GTK timer
140 has expired by calling the GTK event loop.
141 Also, when a menu is active, it has a small timeout before it
142 pops down the sub menu under it. */
143static void
144xg_process_timeouts (timer)
145 struct atimer *timer;
146{
147 BLOCK_INPUT;
148 /* Ideally we would like to just handle timer events, like the Xt version
149 of this does in xterm.c, but there is no such feature in GTK. */
150 while (gtk_events_pending ())
151 gtk_main_iteration ();
152 UNBLOCK_INPUT;
153}
154
155/* Start the xg_timer with an interval of 0.1 seconds, if not already started.
156 xg_process_timeouts is called when the timer expires. The timer
7863d625 157 started is continuous, i.e. runs until xg_stop_timer is called. */
f392e843
JD
158static void
159xg_start_timer ()
160{
161 if (! xg_timer)
162 {
163 EMACS_TIME interval;
164 EMACS_SET_SECS_USECS (interval, 0, 100000);
165 xg_timer = start_atimer (ATIMER_CONTINUOUS,
166 interval,
167 xg_process_timeouts,
168 0);
169 }
170}
171
172/* Stop the xg_timer if started. */
173static void
174xg_stop_timer ()
175{
176 if (xg_timer)
177 {
178 cancel_atimer (xg_timer);
179 xg_timer = 0;
180 }
181}
182
183/* Insert NODE into linked LIST. */
184static void
185xg_list_insert (xg_list_node *list, xg_list_node *node)
186{
187 xg_list_node *list_start = list->next;
177c0ea7 188
f392e843
JD
189 if (list_start) list_start->prev = node;
190 node->next = list_start;
191 node->prev = 0;
192 list->next = node;
193}
194
195/* Remove NODE from linked LIST. */
196static void
197xg_list_remove (xg_list_node *list, xg_list_node *node)
198{
199 xg_list_node *list_start = list->next;
200 if (node == list_start)
201 {
202 list->next = node->next;
203 if (list->next) list->next->prev = 0;
204 }
205 else
206 {
207 node->prev->next = node->next;
208 if (node->next) node->next->prev = node->prev;
209 }
210}
211
212/* Allocate and return a utf8 version of STR. If STR is already
213 utf8 or NULL, just return STR.
214 If not, a new string is allocated and the caller must free the result
215 with g_free. */
216static char *
217get_utf8_string (str)
218 char *str;
219{
220 char *utf8_str = str;
177c0ea7 221
f392e843
JD
222 /* If not UTF-8, try current locale. */
223 if (str && !g_utf8_validate (str, -1, NULL))
224 utf8_str = g_locale_to_utf8 (str, -1, 0, 0, 0);
225
226 return utf8_str;
227}
228
229
230\f
231/***********************************************************************
232 General functions for creating widgets, resizing, events, e.t.c.
233 ***********************************************************************/
234
235/* Make a geometry string and pass that to GTK. It seems this is the
236 only way to get geometry position right if the user explicitly
237 asked for a position when starting Emacs.
238 F is the frame we shall set geometry for. */
239static void
240xg_set_geometry (f)
241 FRAME_PTR f;
242{
be786000 243 if (f->size_hint_flags & USPosition)
f392e843 244 {
be786000
KS
245 int left = f->left_pos;
246 int xneg = f->size_hint_flags & XNegative;
247 int top = f->top_pos;
248 int yneg = f->size_hint_flags & YNegative;
f392e843 249 char geom_str[32];
177c0ea7 250
f392e843
JD
251 if (xneg)
252 left = -left;
253 if (yneg)
254 top = -top;
255
256 sprintf (geom_str, "=%dx%d%c%d%c%d",
be786000 257 FRAME_PIXEL_WIDTH (f),
f392e843
JD
258 FRAME_TOTAL_PIXEL_HEIGHT (f),
259 (xneg ? '-' : '+'), left,
260 (yneg ? '-' : '+'), top);
261
262 if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
263 geom_str))
264 fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
265 }
266}
267
177c0ea7 268
f392e843
JD
269/* Resize the outer window of frame F after chainging the height.
270 This happend when the menu bar or the tool bar is added or removed.
271 COLUMNS/ROWS is the size the edit area shall have after the resize. */
272static void
273xg_resize_outer_widget (f, columns, rows)
274 FRAME_PTR f;
275 int columns;
276 int rows;
277{
278 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
be786000 279 FRAME_PIXEL_WIDTH (f), FRAME_TOTAL_PIXEL_HEIGHT (f));
f392e843
JD
280
281 /* base_height is now changed. */
282 x_wm_set_size_hint (f, 0, 0);
283
284 /* If we are not mapped yet, set geometry once again, as window
285 height now have changed. */
286 if (! GTK_WIDGET_MAPPED (FRAME_GTK_OUTER_WIDGET (f)))
287 xg_set_geometry (f);
288
289 xg_frame_set_char_size (f, columns, rows);
290 gdk_window_process_all_updates ();
291}
292
0cb35f4e
JD
293/* This gets called after the frame F has been cleared. Since that is
294 done with X calls, we need to redraw GTK widget (scroll bars). */
295void
296xg_frame_cleared (f)
297 FRAME_PTR f;
298{
de38ae5a 299 GtkWidget *w = f->output_data.x->widget;
0cb35f4e 300
de38ae5a 301 if (w)
0cb35f4e 302 {
de38ae5a
JD
303 gtk_container_set_reallocate_redraws (GTK_CONTAINER (w), TRUE);
304 gtk_container_foreach (GTK_CONTAINER (w),
305 (GtkCallback) gtk_widget_queue_draw,
306 0);
0cb35f4e
JD
307 gdk_window_process_all_updates ();
308 }
309}
310
f392e843
JD
311/* Function to handle resize of our widgets. Since Emacs has some layouts
312 that does not fit well with GTK standard containers, we do most layout
313 manually.
314 F is the frame to resize.
315 PIXELWIDTH, PIXELHEIGHT is the new size in pixels. */
316void
317xg_resize_widgets (f, pixelwidth, pixelheight)
318 FRAME_PTR f;
319 int pixelwidth, pixelheight;
320{
321 int mbheight = FRAME_MENUBAR_HEIGHT (f);
322 int tbheight = FRAME_TOOLBAR_HEIGHT (f);
be786000
KS
323 int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, (pixelheight
324 - mbheight - tbheight));
325 int columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, pixelwidth);
177c0ea7 326
f392e843 327 if (FRAME_GTK_WIDGET (f)
be786000
KS
328 && (columns != FRAME_COLS (f) || rows != FRAME_LINES (f)
329 || pixelwidth != FRAME_PIXEL_WIDTH (f) || pixelheight != FRAME_PIXEL_HEIGHT (f)))
f392e843
JD
330 {
331 struct x_output *x = f->output_data.x;
332 GtkAllocation all;
333
334 all.y = mbheight + tbheight;
335 all.x = 0;
336
337 all.width = pixelwidth;
338 all.height = pixelheight - mbheight - tbheight;
339
340 gtk_widget_size_allocate (x->edit_widget, &all);
cea9be54 341
f392e843
JD
342 change_frame_size (f, rows, columns, 0, 1, 0);
343 SET_FRAME_GARBAGED (f);
344 cancel_mouse_face (f);
345 }
346}
347
348
349/* Update our widget size to be COLS/ROWS characters for frame F. */
350void
351xg_frame_set_char_size (f, cols, rows)
352 FRAME_PTR f;
353 int cols;
354 int rows;
355{
be786000 356 int pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
f392e843 357 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
5fd6f727 358 int pixelwidth;
177c0ea7 359
f392e843
JD
360 /* Take into account the size of the scroll bar. Always use the
361 number of columns occupied by the scroll bar here otherwise we
362 might end up with a frame width that is not a multiple of the
363 frame's character width which is bad for vertically split
364 windows. */
be786000
KS
365 f->scroll_bar_actual_width
366 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
f392e843 367
055d3c98 368 compute_fringe_widths (f, 0);
f392e843 369
be786000 370 /* FRAME_TEXT_COLS_TO_PIXEL_WIDTH uses scroll_bar_actual_width, so call it
5fd6f727 371 after calculating that value. */
be786000 372 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5fd6f727 373
f392e843
JD
374 /* Must resize our top level widget. Font size may have changed,
375 but not rows/cols. */
376 gtk_window_resize (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
377 pixelwidth, pixelheight);
378 xg_resize_widgets (f, pixelwidth, pixelheight);
5fd6f727
JD
379
380 SET_FRAME_GARBAGED (f);
381 cancel_mouse_face (f);
f392e843
JD
382}
383
384/* Convert an X Window WSESC to its corresponding GtkWidget.
385 Must be done like this, because GtkWidget:s can have "hidden"
386 X Window that aren't accessible.
387
388 Return 0 if no widget match WDESC. */
389GtkWidget *
390xg_win_to_widget (wdesc)
391 Window wdesc;
392{
393 gpointer gdkwin;
394 GtkWidget *gwdesc = 0;
395
396 BLOCK_INPUT;
397 gdkwin = gdk_xid_table_lookup (wdesc);
398 if (gdkwin)
399 {
400 GdkEvent event;
401 event.any.window = gdkwin;
402 gwdesc = gtk_get_event_widget (&event);
403 }
177c0ea7 404
f392e843
JD
405 UNBLOCK_INPUT;
406 return gwdesc;
407}
408
409/* Fill in the GdkColor C so that it represents PIXEL.
410 W is the widget that color will be used for. Used to find colormap. */
411static void
412xg_pix_to_gcolor (w, pixel, c)
413 GtkWidget *w;
414 unsigned long pixel;
415 GdkColor *c;
416{
417 GdkColormap *map = gtk_widget_get_colormap (w);
418 gdk_colormap_query_color (map, pixel, c);
419}
420
7863d625
JD
421/* Turning off double buffering for our GtkFixed widget has the side
422 effect of turning it off also for its children (scroll bars).
423 But we want those to be double buffered to not flicker so handle
424 expose manually here.
425 WIDGET is the GtkFixed widget that gets exposed.
426 EVENT is the expose event.
427 USER_DATA is unused.
428
429 Return TRUE to tell GTK that this expose event has been fully handeled
430 and that GTK shall do nothing more with it. */
431static gboolean
432xg_fixed_handle_expose(GtkWidget *widget,
433 GdkEventExpose *event,
434 gpointer user_data)
435{
436 GList *iter;
5fd6f727 437
7863d625
JD
438 for (iter = GTK_FIXED (widget)->children; iter; iter = g_list_next (iter))
439 {
440 GtkFixedChild *child_data = (GtkFixedChild *) iter->data;
441 GtkWidget *child = child_data->widget;
442 GdkWindow *window = child->window;
443 GdkRegion *region = gtk_widget_region_intersect (child, event->region);
444
445 if (! gdk_region_empty (region))
446 {
447 GdkEvent child_event;
448 child_event.expose = *event;
449 child_event.expose.region = region;
450
451 /* Turn on double buffering, i.e. draw to an off screen area. */
452 gdk_window_begin_paint_region (window, region);
453
454 /* Tell child to redraw itself. */
455 gdk_region_get_clipbox (region, &child_event.expose.area);
456 gtk_widget_send_expose (child, &child_event);
457 gdk_window_process_updates (window, TRUE);
458
459 /* Copy off screen area to the window. */
460 gdk_window_end_paint (window);
461 }
462
463 gdk_region_destroy (region);
464 }
465
466 return TRUE;
467}
468
f392e843
JD
469/* Create and set up the GTK widgets for frame F.
470 Return 0 if creation failed, non-zero otherwise. */
471int
472xg_create_frame_widgets (f)
473 FRAME_PTR f;
474{
475 GtkWidget *wtop;
476 GtkWidget *wvbox;
477 GtkWidget *wfixed;
478 GdkColor bg;
479 GtkRcStyle *style;
480 int i;
481 char *title = 0;
177c0ea7 482
f392e843
JD
483 BLOCK_INPUT;
484
485 wtop = gtk_window_new (GTK_WINDOW_TOPLEVEL);
486 wvbox = gtk_vbox_new (FALSE, 0);
487 wfixed = gtk_fixed_new (); /* Must have this to place scroll bars */
177c0ea7 488
f392e843
JD
489 if (! wtop || ! wvbox || ! wfixed)
490 {
491 if (wtop) gtk_widget_destroy (wtop);
492 if (wvbox) gtk_widget_destroy (wvbox);
493 if (wfixed) gtk_widget_destroy (wfixed);
494
495 return 0;
496 }
497
498 /* Use same names as the Xt port does. I.e. Emacs.pane.emacs by default */
499 gtk_widget_set_name (wtop, EMACS_CLASS);
500 gtk_widget_set_name (wvbox, "pane");
501 gtk_widget_set_name (wfixed, SDATA (Vx_resource_name));
502
503 /* If this frame has a title or name, set it in the title bar. */
5b07197a
DL
504 if (! NILP (f->title)) title = SDATA (ENCODE_UTF_8 (f->title));
505 else if (! NILP (f->name)) title = SDATA (ENCODE_UTF_8 (f->name));
f392e843
JD
506
507 if (title) gtk_window_set_title (GTK_WINDOW (wtop), title);
177c0ea7 508
f392e843
JD
509 FRAME_GTK_OUTER_WIDGET (f) = wtop;
510 FRAME_GTK_WIDGET (f) = wfixed;
511 f->output_data.x->vbox_widget = wvbox;
512
513 gtk_fixed_set_has_window (GTK_FIXED (wfixed), TRUE);
514
be786000 515 gtk_widget_set_size_request (wfixed, FRAME_PIXEL_WIDTH (f), FRAME_PIXEL_HEIGHT (f));
177c0ea7 516
f392e843
JD
517 gtk_container_add (GTK_CONTAINER (wtop), wvbox);
518 gtk_box_pack_end (GTK_BOX (wvbox), wfixed, TRUE, TRUE, 0);
519
520 if (FRAME_EXTERNAL_TOOL_BAR (f))
521 update_frame_tool_bar (f);
522
523 /* The tool bar is created but first there are no items in it.
524 This causes it to be zero height. Later items are added, but then
525 the frame is already mapped, so there is a "jumping" resize.
526 This makes geometry handling difficult, for example -0-0 will end
527 up in the wrong place as tool bar height has not been taken into account.
528 So we cheat a bit by setting a height that is what it will have
529 later on when tool bar items are added. */
b73e73bf 530 if (FRAME_EXTERNAL_TOOL_BAR (f) && FRAME_TOOLBAR_HEIGHT (f) == 0)
f392e843 531 FRAME_TOOLBAR_HEIGHT (f) = 34;
177c0ea7 532
7863d625
JD
533
534 /* We don't want this widget double buffered, because we draw on it
535 with regular X drawing primitives, so from a GTK/GDK point of
536 view, the widget is totally blank. When an expose comes, this
537 will make the widget blank, and then Emacs redraws it. This flickers
538 a lot, so we turn off double buffering. */
f392e843 539 gtk_widget_set_double_buffered (wfixed, FALSE);
7863d625
JD
540
541 /* Turning off double buffering above has the side effect of turning
542 it off also for its children (scroll bars). But we want those
543 to be double buffered to not flicker so handle expose manually. */
544 g_signal_connect (G_OBJECT (wfixed), "expose-event",
545 G_CALLBACK (xg_fixed_handle_expose), 0);
177c0ea7 546
f392e843
JD
547 /* GTK documents says use gtk_window_set_resizable. But then a user
548 can't shrink the window from its starting size. */
549 gtk_window_set_policy (GTK_WINDOW (wtop), TRUE, TRUE, TRUE);
550 gtk_window_set_wmclass (GTK_WINDOW (wtop),
551 SDATA (Vx_resource_name),
552 SDATA (Vx_resource_class));
553
554 /* Add callback to do nothing on WM_DELETE_WINDOW. The default in
555 GTK is to destroy the widget. We want Emacs to do that instead. */
556 g_signal_connect (G_OBJECT (wtop), "delete-event",
557 G_CALLBACK (gtk_true), 0);
177c0ea7 558
f392e843
JD
559 /* Convert our geometry parameters into a geometry string
560 and specify it.
561 GTK will itself handle calculating the real position this way. */
562 xg_set_geometry (f);
563
564 gtk_widget_add_events (wfixed,
565 GDK_POINTER_MOTION_MASK
566 | GDK_EXPOSURE_MASK
567 | GDK_BUTTON_PRESS_MASK
568 | GDK_BUTTON_RELEASE_MASK
569 | GDK_KEY_PRESS_MASK
570 | GDK_ENTER_NOTIFY_MASK
571 | GDK_LEAVE_NOTIFY_MASK
572 | GDK_FOCUS_CHANGE_MASK
573 | GDK_STRUCTURE_MASK
574 | GDK_VISIBILITY_NOTIFY_MASK);
575
576 /* Must realize the windows so the X window gets created. It is used
577 by callers of this function. */
578 gtk_widget_realize (wfixed);
579 FRAME_X_WINDOW (f) = GTK_WIDGET_TO_X_WIN (wfixed);
580
581 /* Since GTK clears its window by filling with the background color,
582 we must keep X and GTK background in sync. */
583 xg_pix_to_gcolor (wfixed, f->output_data.x->background_pixel, &bg);
584 gtk_widget_modify_bg (wfixed, GTK_STATE_NORMAL, &bg);
585
586 /* Also, do not let any background pixmap to be set, this looks very
587 bad as Emacs overwrites the background pixmap with its own idea
588 of background color. */
589 style = gtk_widget_get_modifier_style (wfixed);
590
591 /* Must use g_strdup because gtk_widget_modify_style does g_free. */
592 style->bg_pixmap_name[GTK_STATE_NORMAL] = g_strdup ("<none>");
593 gtk_widget_modify_style (wfixed, style);
177c0ea7 594
f392e843 595 /* GTK does not set any border, and they look bad with GTK. */
be786000
KS
596 f->border_width = 0;
597 f->internal_border_width = 0;
f392e843
JD
598
599 UNBLOCK_INPUT;
600
601 return 1;
602}
603
604/* Set the normal size hints for the window manager, for frame F.
605 FLAGS is the flags word to use--or 0 meaning preserve the flags
606 that the window now has.
607 If USER_POSITION is nonzero, we set the User Position
608 flag (this is useful when FLAGS is 0). */
609void
610x_wm_set_size_hint (f, flags, user_position)
611 FRAME_PTR f;
612 long flags;
613 int user_position;
614{
615 if (FRAME_GTK_OUTER_WIDGET (f))
616 {
617 /* Must use GTK routines here, otherwise GTK resets the size hints
618 to its own defaults. */
619 GdkGeometry size_hints;
620 gint hint_flags = 0;
621 int base_width, base_height;
622 int min_rows = 0, min_cols = 0;
be786000 623 int win_gravity = f->win_gravity;
177c0ea7 624
f392e843
JD
625 if (flags)
626 {
627 memset (&size_hints, 0, sizeof (size_hints));
628 f->output_data.x->size_hints = size_hints;
629 f->output_data.x->hint_flags = hint_flags;
630 }
631 else
be786000 632 flags = f->size_hint_flags;
177c0ea7 633
f392e843
JD
634 size_hints = f->output_data.x->size_hints;
635 hint_flags = f->output_data.x->hint_flags;
636
637 hint_flags |= GDK_HINT_RESIZE_INC | GDK_HINT_MIN_SIZE;
be786000
KS
638 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
639 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
f392e843
JD
640
641 hint_flags |= GDK_HINT_BASE_SIZE;
be786000
KS
642 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
643 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0)
f392e843
JD
644 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
645
646 check_frame_size (f, &min_rows, &min_cols);
647
648 size_hints.base_width = base_width;
649 size_hints.base_height = base_height;
650 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
651 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
652
177c0ea7 653
f392e843
JD
654 /* These currently have a one to one mapping with the X values, but I
655 don't think we should rely on that. */
656 hint_flags |= GDK_HINT_WIN_GRAVITY;
657 size_hints.win_gravity = 0;
658 if (win_gravity == NorthWestGravity)
659 size_hints.win_gravity = GDK_GRAVITY_NORTH_WEST;
660 else if (win_gravity == NorthGravity)
661 size_hints.win_gravity = GDK_GRAVITY_NORTH;
662 else if (win_gravity == NorthEastGravity)
663 size_hints.win_gravity = GDK_GRAVITY_NORTH_EAST;
664 else if (win_gravity == WestGravity)
665 size_hints.win_gravity = GDK_GRAVITY_WEST;
666 else if (win_gravity == CenterGravity)
667 size_hints.win_gravity = GDK_GRAVITY_CENTER;
668 else if (win_gravity == EastGravity)
669 size_hints.win_gravity = GDK_GRAVITY_EAST;
670 else if (win_gravity == SouthWestGravity)
671 size_hints.win_gravity = GDK_GRAVITY_SOUTH_WEST;
672 else if (win_gravity == SouthGravity)
673 size_hints.win_gravity = GDK_GRAVITY_SOUTH;
674 else if (win_gravity == SouthEastGravity)
675 size_hints.win_gravity = GDK_GRAVITY_SOUTH_EAST;
676 else if (win_gravity == StaticGravity)
677 size_hints.win_gravity = GDK_GRAVITY_STATIC;
678
679 if (flags & PPosition) hint_flags |= GDK_HINT_POS;
680 if (flags & USPosition) hint_flags |= GDK_HINT_USER_POS;
681 if (flags & USSize) hint_flags |= GDK_HINT_USER_SIZE;
682
683 if (user_position)
684 {
685 hint_flags &= ~GDK_HINT_POS;
686 hint_flags |= GDK_HINT_USER_POS;
687 }
688
689 BLOCK_INPUT;
690
691 gtk_window_set_geometry_hints (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
692 FRAME_GTK_OUTER_WIDGET (f),
693 &size_hints,
694 hint_flags);
695
696 f->output_data.x->size_hints = size_hints;
697 f->output_data.x->hint_flags = hint_flags;
698 UNBLOCK_INPUT;
699 }
700}
701
702/* Change background color of a frame.
703 Since GTK uses the background colour to clear the window, we must
704 keep the GTK and X colors in sync.
705 F is the frame to change,
706 BG is the pixel value to change to. */
707void
708xg_set_background_color (f, bg)
709 FRAME_PTR f;
710 unsigned long bg;
711{
712 if (FRAME_GTK_WIDGET (f))
713 {
714 GdkColor gdk_bg;
715
716 BLOCK_INPUT;
717 xg_pix_to_gcolor (FRAME_GTK_WIDGET (f), bg, &gdk_bg);
718 gtk_widget_modify_bg (FRAME_GTK_WIDGET (f), GTK_STATE_NORMAL, &gdk_bg);
719 UNBLOCK_INPUT;
720 }
721}
722
723
724\f
725/***********************************************************************
726 Dialog functions
727 ***********************************************************************/
728/* Return the dialog title to use for a dialog of type KEY.
729 This is the encoding used by lwlib. We use the same for GTK. */
730static char *
731get_dialog_title (char key)
732{
733 char *title = "";
177c0ea7 734
f392e843
JD
735 switch (key) {
736 case 'E': case 'e':
737 title = "Error";
738 break;
739
740 case 'I': case 'i':
741 title = "Information";
742 break;
743
744 case 'L': case 'l':
745 title = "Prompt";
746 break;
747
748 case 'P': case 'p':
749 title = "Prompt";
750 break;
751
752 case 'Q': case 'q':
753 title = "Question";
754 break;
755 }
756
757 return title;
758}
759
760/* Callback for dialogs that get WM_DELETE_WINDOW. We pop down
761 the dialog, but return TRUE so the event does not propagate further
762 in GTK. This prevents GTK from destroying the dialog widget automatically
763 and we can always destrou the widget manually, regardles of how
764 it was popped down (button press or WM_DELETE_WINDOW).
765 W is the dialog widget.
766 EVENT is the GdkEvent that represents WM_DELETE_WINDOW (not used).
767 user_data is NULL (not used).
768
769 Returns TRUE to end propagation of event. */
770static gboolean
771dialog_delete_callback (w, event, user_data)
772 GtkWidget *w;
773 GdkEvent *event;
774 gpointer user_data;
775{
776 gtk_widget_unmap (w);
777 return TRUE;
778}
779
780/* Create a popup dialog window. See also xg_create_widget below.
781 WV is a widget_value describing the dialog.
782 SELECT_CB is the callback to use when a button has been pressed.
783 DEACTIVATE_CB is the callback to use when the dialog pops down.
784
785 Returns the GTK dialog widget. */
786static GtkWidget *
787create_dialog (wv, select_cb, deactivate_cb)
788 widget_value *wv;
789 GCallback select_cb;
790 GCallback deactivate_cb;
791{
792 char *title = get_dialog_title (wv->name[0]);
793 int total_buttons = wv->name[1] - '0';
794 int right_buttons = wv->name[4] - '0';
795 int left_buttons;
796 int button_nr = 0;
797 int button_spacing = 10;
798 GtkWidget *wdialog = gtk_dialog_new ();
799 widget_value *item;
800 GtkBox *cur_box;
801 GtkWidget *wvbox;
802 GtkWidget *whbox_up;
803 GtkWidget *whbox_down;
804
805 /* If the number of buttons is greater than 4, make two rows of buttons
806 instead. This looks better. */
807 int make_two_rows = total_buttons > 4;
808
809 if (right_buttons == 0) right_buttons = total_buttons/2;
810 left_buttons = total_buttons - right_buttons;
811
812 gtk_window_set_title (GTK_WINDOW (wdialog), title);
813 gtk_widget_set_name (wdialog, "emacs-dialog");
814
815 cur_box = GTK_BOX (GTK_DIALOG (wdialog)->action_area);
816
817 if (make_two_rows)
818 {
819 wvbox = gtk_vbox_new (TRUE, button_spacing);
820 whbox_up = gtk_hbox_new (FALSE, 0);
821 whbox_down = gtk_hbox_new (FALSE, 0);
822
823 gtk_box_pack_start (cur_box, wvbox, FALSE, FALSE, 0);
824 gtk_box_pack_start (GTK_BOX (wvbox), whbox_up, FALSE, FALSE, 0);
825 gtk_box_pack_start (GTK_BOX (wvbox), whbox_down, FALSE, FALSE, 0);
826
827 cur_box = GTK_BOX (whbox_up);
828 }
829
830 g_signal_connect (G_OBJECT (wdialog), "delete-event",
831 G_CALLBACK (dialog_delete_callback), 0);
177c0ea7 832
f392e843
JD
833 if (deactivate_cb)
834 {
835 g_signal_connect (G_OBJECT (wdialog), "close", deactivate_cb, 0);
836 g_signal_connect (G_OBJECT (wdialog), "response", deactivate_cb, 0);
837 }
838
839 for (item = wv->contents; item; item = item->next)
840 {
841 char *utf8_label = get_utf8_string (item->value);
842 GtkWidget *w;
843 GtkRequisition req;
844
0a1d6de0 845 if (item->name && strcmp (item->name, "message") == 0)
f392e843
JD
846 {
847 /* This is the text part of the dialog. */
848 w = gtk_label_new (utf8_label);
849 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (wdialog)->vbox),
850 gtk_label_new (""),
851 FALSE, FALSE, 0);
852 gtk_box_pack_start (GTK_BOX (GTK_DIALOG (wdialog)->vbox), w,
853 TRUE, TRUE, 0);
854 gtk_misc_set_alignment (GTK_MISC (w), 0.1, 0.5);
855
856 /* Try to make dialog look better. Must realize first so
857 the widget can calculate the size it needs. */
858 gtk_widget_realize (w);
859 gtk_widget_size_request (w, &req);
860 gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (wdialog)->vbox),
861 req.height);
0a1d6de0 862 if (item->value && strlen (item->value) > 0)
f392e843
JD
863 button_spacing = 2*req.width/strlen (item->value);
864 }
865 else
866 {
867 /* This is one button to add to the dialog. */
4b1b4443 868 w = gtk_button_new_with_label (utf8_label);
f392e843
JD
869 if (! item->enabled)
870 gtk_widget_set_sensitive (w, FALSE);
871 if (select_cb)
872 g_signal_connect (G_OBJECT (w), "clicked",
873 select_cb, item->call_data);
874
875 gtk_box_pack_start (cur_box, w, TRUE, TRUE, button_spacing);
876 if (++button_nr == left_buttons)
877 {
878 if (make_two_rows)
879 cur_box = GTK_BOX (whbox_down);
880 else
881 gtk_box_pack_start (cur_box,
882 gtk_label_new (""),
883 TRUE, TRUE,
884 button_spacing);
885 }
886 }
887
888 if (utf8_label && utf8_label != item->value)
889 g_free (utf8_label);
890 }
891
892 return wdialog;
893}
894
895
896enum
897{
898 XG_FILE_NOT_DONE,
899 XG_FILE_OK,
900 XG_FILE_CANCEL,
901 XG_FILE_DESTROYED,
902};
903
904/* Callback function invoked when the Ok button is pressed in
905 a file dialog.
906 W is the file dialog widget,
907 ARG points to an integer where we record what has happend. */
908static void
909xg_file_sel_ok (w, arg)
910 GtkWidget *w;
911 gpointer arg;
912{
913 *(int*)arg = XG_FILE_OK;
914}
915
916/* Callback function invoked when the Cancel button is pressed in
917 a file dialog.
918 W is the file dialog widget,
919 ARG points to an integer where we record what has happend. */
920static void
921xg_file_sel_cancel (w, arg)
922 GtkWidget *w;
923 gpointer arg;
924{
925 *(int*)arg = XG_FILE_CANCEL;
926}
927
928/* Callback function invoked when the file dialog is destroyed (i.e.
929 popped down). We must keep track of this, because if this
930 happens, GTK destroys the widget. But if for example, Ok is pressed,
931 the dialog is popped down, but the dialog widget is not destroyed.
932 W is the file dialog widget,
933 ARG points to an integer where we record what has happend. */
934static void
935xg_file_sel_destroy (w, arg)
936 GtkWidget *w;
937 gpointer arg;
938{
939 *(int*)arg = XG_FILE_DESTROYED;
940}
941
942/* Read a file name from the user using a file dialog.
943 F is the current frame.
944 PROMPT is a prompt to show to the user. May not be NULL.
945 DEFAULT_FILENAME is a default selection to be displayed. May be NULL.
946 If MUSTMATCH_P is non-zero, the returned file name must be an existing
947 file.
948
949 Returns a file name or NULL if no file was selected.
950 The returned string must be freed by the caller. */
951char *
952xg_get_file_name (f, prompt, default_filename, mustmatch_p)
953 FRAME_PTR f;
954 char *prompt;
955 char *default_filename;
956 int mustmatch_p;
957{
958 GtkWidget *filewin;
959 GtkFileSelection *filesel;
960 int filesel_done = XG_FILE_NOT_DONE;
961 char *fn = 0;
177c0ea7 962
f392e843
JD
963 filewin = gtk_file_selection_new (prompt);
964 filesel = GTK_FILE_SELECTION (filewin);
965
966 gtk_widget_set_name (filewin, "emacs-filedialog");
967
968 gtk_window_set_transient_for (GTK_WINDOW (filewin),
969 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
970 gtk_window_set_destroy_with_parent (GTK_WINDOW (filewin), TRUE);
971
972 g_signal_connect (G_OBJECT (filesel->ok_button),
973 "clicked",
974 G_CALLBACK (xg_file_sel_ok),
975 &filesel_done);
976 g_signal_connect (G_OBJECT (filesel->cancel_button),
977 "clicked",
978 G_CALLBACK (xg_file_sel_cancel),
979 &filesel_done);
980 g_signal_connect (G_OBJECT (filesel),
981 "destroy",
982 G_CALLBACK (xg_file_sel_destroy),
983 &filesel_done);
984
985 if (default_filename)
986 gtk_file_selection_set_filename (filesel, default_filename);
987
988 if (mustmatch_p)
989 {
990 /* The selection_entry part of filesel is not documented. */
991 gtk_widget_set_sensitive (filesel->selection_entry, FALSE);
992 gtk_file_selection_hide_fileop_buttons (filesel);
993 }
994
177c0ea7 995
f392e843 996 gtk_widget_show_all (filewin);
177c0ea7 997
f392e843
JD
998 while (filesel_done == XG_FILE_NOT_DONE)
999 gtk_main_iteration ();
1000
1001 if (filesel_done == XG_FILE_OK)
1002 fn = xstrdup ((char*) gtk_file_selection_get_filename (filesel));
1003
1004 if (filesel_done != XG_FILE_DESTROYED)
1005 gtk_widget_destroy (filewin);
1006
1007 return fn;
1008}
1009
1010\f
1011/***********************************************************************
1012 Menu functions.
1013 ***********************************************************************/
1014
1015/* The name of menu items that can be used for citomization. Since GTK
1016 RC files are very crude and primitive, we have to set this on all
1017 menu item names so a user can easily cutomize menu items. */
1018
1019#define MENU_ITEM_NAME "emacs-menuitem"
1020
1021
1022/* Linked list of all allocated struct xg_menu_cb_data. Used for marking
1023 during GC. The next member points to the items. */
1024static xg_list_node xg_menu_cb_list;
1025
1026/* Linked list of all allocated struct xg_menu_item_cb_data. Used for marking
1027 during GC. The next member points to the items. */
1028static xg_list_node xg_menu_item_cb_list;
1029
1030/* Allocate and initialize CL_DATA if NULL, otherwise increase ref_count.
1031 F is the frame CL_DATA will be initialized for.
1032 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1033
1034 The menu bar and all sub menus under the menu bar in a frame
1035 share the same structure, hence the reference count.
177c0ea7 1036
f392e843
JD
1037 Returns CL_DATA if CL_DATA is not NULL, or a pointer to a newly
1038 allocated xg_menu_cb_data if CL_DATA is NULL. */
1039static xg_menu_cb_data *
1040make_cl_data (cl_data, f, highlight_cb)
1041 xg_menu_cb_data *cl_data;
1042 FRAME_PTR f;
1043 GCallback highlight_cb;
1044{
1045 if (! cl_data)
1046 {
1047 cl_data = (xg_menu_cb_data*) xmalloc (sizeof (*cl_data));
1048 cl_data->f = f;
1049 cl_data->menu_bar_vector = f->menu_bar_vector;
1050 cl_data->menu_bar_items_used = f->menu_bar_items_used;
1051 cl_data->highlight_cb = highlight_cb;
1052 cl_data->ref_count = 0;
1053
1054 xg_list_insert (&xg_menu_cb_list, &cl_data->ptrs);
1055 }
1056
1057 cl_data->ref_count++;
1058
1059 return cl_data;
1060}
1061
1062/* Update CL_DATA with values from frame F and with HIGHLIGHT_CB.
1063 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1064
1065 When the menu bar is updated, menu items may have been added and/or
1066 removed, so menu_bar_vector and menu_bar_items_used change. We must
1067 then update CL_DATA since it is used to determine which menu
1068 item that is invoked in the menu.
1069 HIGHLIGHT_CB could change, there is no check that the same
1070 function is given when modifying a menu bar as was given when
1071 creating the menu bar. */
1072static void
1073update_cl_data (cl_data, f, highlight_cb)
1074 xg_menu_cb_data *cl_data;
1075 FRAME_PTR f;
1076 GCallback highlight_cb;
1077{
1078 if (cl_data)
1079 {
1080 cl_data->f = f;
1081 cl_data->menu_bar_vector = f->menu_bar_vector;
1082 cl_data->menu_bar_items_used = f->menu_bar_items_used;
1083 cl_data->highlight_cb = highlight_cb;
1084 }
1085}
1086
1087/* Decrease reference count for CL_DATA.
1088 If reference count is zero, free CL_DATA. */
1089static void
1090unref_cl_data (cl_data)
1091 xg_menu_cb_data *cl_data;
1092{
1093 if (cl_data && cl_data->ref_count > 0)
1094 {
1095 cl_data->ref_count--;
1096 if (cl_data->ref_count == 0)
1097 {
1098 xg_list_remove (&xg_menu_cb_list, &cl_data->ptrs);
1099 xfree (cl_data);
1100 }
1101 }
1102}
1103
1104/* Function that marks all lisp data during GC. */
1105void
1106xg_mark_data ()
1107{
1108 xg_list_node *iter;
1109
1110 for (iter = xg_menu_cb_list.next; iter; iter = iter->next)
631f2082 1111 mark_object (((xg_menu_cb_data *) iter)->menu_bar_vector);
f392e843
JD
1112
1113 for (iter = xg_menu_item_cb_list.next; iter; iter = iter->next)
1114 {
1115 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data *) iter;
1116
1117 if (! NILP (cb_data->help))
631f2082 1118 mark_object (cb_data->help);
f392e843
JD
1119 }
1120}
1121
1122
1123/* Callback called when a menu item is destroyed. Used to free data.
1124 W is the widget that is being destroyed (not used).
1125 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W. */
1126static void
1127menuitem_destroy_callback (w, client_data)
1128 GtkWidget *w;
1129 gpointer client_data;
1130{
1131 if (client_data)
1132 {
1133 xg_menu_item_cb_data *data = (xg_menu_item_cb_data*) client_data;
1134 xg_list_remove (&xg_menu_item_cb_list, &data->ptrs);
1135 xfree (data);
1136 }
1137}
1138
1139/* Callback called when the pointer enters/leaves a menu item.
1140 W is the menu item.
1141 EVENT is either an enter event or leave event.
1142 CLIENT_DATA points to the xg_menu_item_cb_data associated with the W.
1143
1144 Returns FALSE to tell GTK to keep processing this event. */
1145static gboolean
1146menuitem_highlight_callback (w, event, client_data)
1147 GtkWidget *w;
1148 GdkEventCrossing *event;
1149 gpointer client_data;
1150{
1151 if (client_data)
1152 {
1153 xg_menu_item_cb_data *data = (xg_menu_item_cb_data*) client_data;
1154 gpointer call_data = event->type == GDK_LEAVE_NOTIFY ? 0 : client_data;
177c0ea7 1155
f392e843
JD
1156 if (! NILP (data->help) && data->cl_data->highlight_cb)
1157 {
1158 GtkCallback func = (GtkCallback) data->cl_data->highlight_cb;
1159 (*func) (w, call_data);
1160 }
1161 }
1162
1163 return FALSE;
1164}
1165
1166/* Callback called when a menu is destroyed. Used to free data.
1167 W is the widget that is being destroyed (not used).
1168 CLIENT_DATA points to the xg_menu_cb_data associated with W. */
1169static void
1170menu_destroy_callback (w, client_data)
1171 GtkWidget *w;
1172 gpointer client_data;
1173{
1174 unref_cl_data ((xg_menu_cb_data*) client_data);
1175}
1176
1177/* Callback called when a menu does a grab or ungrab. That means the
1178 menu has been activated or deactivated.
1179 Used to start a timer so the small timeout the menus in GTK uses before
1180 popping down a menu is seen by Emacs (see xg_process_timeouts above).
1181 W is the widget that does the grab (not used).
1182 UNGRAB_P is TRUE if this is an ungrab, FALSE if it is a grab.
1183 CLIENT_DATA is NULL (not used). */
1184static void
1185menu_grab_callback (GtkWidget *widget,
1186 gboolean ungrab_p,
1187 gpointer client_data)
1188{
1189 /* Keep track of total number of grabs. */
1190 static int cnt;
1191
1192 if (ungrab_p) cnt--;
1193 else cnt++;
1194
1195 if (cnt > 0 && ! xg_timer) xg_start_timer ();
1196 else if (cnt == 0 && xg_timer) xg_stop_timer ();
1197}
1198
1199/* Make a GTK widget that contains both UTF8_LABEL and UTF8_KEY (both
1200 must be non-NULL) and can be inserted into a menu item.
1201
1202 Returns the GtkHBox. */
1203static GtkWidget *
1204make_widget_for_menu_item (utf8_label, utf8_key)
1205 char *utf8_label;
1206 char *utf8_key;
1207{
1208 GtkWidget *wlbl;
1209 GtkWidget *wkey;
1210 GtkWidget *wbox;
177c0ea7 1211
f392e843 1212 wbox = gtk_hbox_new (FALSE, 0);
4b1b4443 1213 wlbl = gtk_label_new (utf8_label);
f392e843
JD
1214 wkey = gtk_label_new (utf8_key);
1215
1216 gtk_misc_set_alignment (GTK_MISC (wlbl), 0.0, 0.5);
1217 gtk_misc_set_alignment (GTK_MISC (wkey), 0.0, 0.5);
177c0ea7 1218
f392e843
JD
1219 gtk_box_pack_start (GTK_BOX (wbox), wlbl, TRUE, TRUE, 0);
1220 gtk_box_pack_start (GTK_BOX (wbox), wkey, FALSE, FALSE, 0);
1221
1222 gtk_widget_set_name (wlbl, MENU_ITEM_NAME);
1223 gtk_widget_set_name (wkey, MENU_ITEM_NAME);
7863d625 1224 gtk_widget_set_name (wbox, MENU_ITEM_NAME);
f392e843
JD
1225
1226 return wbox;
1227}
1228
1229/* Make and return a menu item widget with the key to the right.
1230 UTF8_LABEL is the text for the menu item (GTK uses UTF8 internally).
1231 UTF8_KEY is the text representing the key binding.
1232 ITEM is the widget_value describing the menu item.
177c0ea7 1233
f392e843
JD
1234 GROUP is an in/out parameter. If the menu item to be created is not
1235 part of any radio menu group, *GROUP contains NULL on entry and exit.
1236 If the menu item to be created is part of a radio menu group, on entry
1237 *GROUP contains the group to use, or NULL if this is the first item
1238 in the group. On exit, *GROUP contains the radio item group.
1239
1240 Unfortunately, keys don't line up as nicely as in Motif,
1241 but the MacOS X version doesn't either, so I guess that is OK. */
1242static GtkWidget *
1243make_menu_item (utf8_label, utf8_key, item, group)
1244 char *utf8_label;
1245 char *utf8_key;
1246 widget_value *item;
1247 GSList **group;
1248{
1249 GtkWidget *w;
1250 GtkWidget *wtoadd = 0;
177c0ea7 1251
adcb132c
JD
1252 /* It has been observed that some menu items have a NULL name field.
1253 This will lead to this function being called with a NULL utf8_label.
1254 GTK crashes on that so we set a blank label. Why there is a NULL
1255 name remains to be investigated. */
1256 if (! utf8_label) utf8_label = " ";
1257
f392e843
JD
1258 if (utf8_key)
1259 wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
177c0ea7 1260
f392e843
JD
1261 if (item->button_type == BUTTON_TYPE_TOGGLE)
1262 {
1263 *group = NULL;
1264 if (utf8_key) w = gtk_check_menu_item_new ();
4b1b4443 1265 else w = gtk_check_menu_item_new_with_label (utf8_label);
f392e843
JD
1266 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), item->selected);
1267 }
1268 else if (item->button_type == BUTTON_TYPE_RADIO)
1269 {
1270 if (utf8_key) w = gtk_radio_menu_item_new (*group);
4b1b4443 1271 else w = gtk_radio_menu_item_new_with_label (*group, utf8_label);
f392e843
JD
1272 *group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (w));
1273 if (item->selected)
1274 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), TRUE);
1275 }
1276 else
1277 {
1278 *group = NULL;
1279 if (utf8_key) w = gtk_menu_item_new ();
4b1b4443 1280 else w = gtk_menu_item_new_with_label (utf8_label);
f392e843 1281 }
177c0ea7 1282
f392e843
JD
1283 if (wtoadd) gtk_container_add (GTK_CONTAINER (w), wtoadd);
1284 if (! item->enabled) gtk_widget_set_sensitive (w, FALSE);
1285
1286 return w;
1287}
1288
5fd6f727 1289/* Return non-zero if LABEL specifies a separator (GTK only has one
f392e843
JD
1290 separator type) */
1291static int
5fd6f727
JD
1292xg_separator_p (char *label)
1293{
1294 if (! label) return 0;
1295 else if (strlen (label) > 3
1296 && strncmp (label, "--", 2) == 0
1297 && label[2] != '-')
1298 {
1299 static char* separator_names[] = {
1300 "space",
1301 "no-line",
1302 "single-line",
1303 "double-line",
1304 "single-dashed-line",
1305 "double-dashed-line",
1306 "shadow-etched-in",
1307 "shadow-etched-out",
1308 "shadow-etched-in-dash",
1309 "shadow-etched-out-dash",
1310 "shadow-double-etched-in",
1311 "shadow-double-etched-out",
1312 "shadow-double-etched-in-dash",
1313 "shadow-double-etched-out-dash",
1314 0,
1315 };
1316
1317 int i;
1318
1319 label += 2;
1320 for (i = 0; separator_names[i]; ++i)
1321 if (strcmp (label, separator_names[i]) == 0)
1322 return 1;
1323 }
1324 else
1325 {
1326 /* Old-style separator, maybe. It's a separator if it contains
1327 only dashes. */
1328 while (*label == '-')
1329 ++label;
1330 if (*label == 0) return 1;
1331 }
0a1d6de0 1332
5fd6f727 1333 return 0;
f392e843
JD
1334}
1335
1336GtkWidget *xg_did_tearoff;
1337
1338/* Callback invoked when a detached menu window is removed. Here we
1339 delete the popup menu.
1340 WIDGET is the top level window that is removed (the parent of the menu).
1341 EVENT is the event that triggers the window removal.
1342 CLIENT_DATA points to the menu that is detached.
1343
1344 Returns TRUE to tell GTK to stop processing this event. */
1345static gboolean
1346tearoff_remove (widget, event, client_data)
1347 GtkWidget *widget;
1348 GdkEvent *event;
1349 gpointer client_data;
1350{
1351 gtk_widget_destroy (GTK_WIDGET (client_data));
1352 return TRUE;
1353}
1354
1355/* Callback invoked when a menu is detached. It sets the xg_did_tearoff
1356 variable.
1357 WIDGET is the GtkTearoffMenuItem.
177c0ea7 1358 CLIENT_DATA is not used. */
f392e843
JD
1359static void
1360tearoff_activate (widget, client_data)
1361 GtkWidget *widget;
1362 gpointer client_data;
1363{
1364 GtkWidget *menu = gtk_widget_get_parent (widget);
1365 if (! gtk_menu_get_tearoff_state (GTK_MENU (menu)))
1366 return;
1367
1368 xg_did_tearoff = menu;
1369}
1370
1371/* If a detach of a popup menu is done, this function should be called
1372 to keep the menu around until the detached window is removed.
1373 MENU is the top level menu for the popup,
1374 SUBMENU is the menu that got detached (that is MENU or a
1375 submenu of MENU), see the xg_did_tearoff variable. */
1376void
1377xg_keep_popup (menu, submenu)
1378 GtkWidget *menu;
1379 GtkWidget *submenu;
1380{
1381 GtkWidget *p;
1382
1383 /* Find the top widget for the detached menu. */
1384 p = gtk_widget_get_toplevel (submenu);
177c0ea7 1385
f392e843
JD
1386 /* Delay destroying the menu until the detached menu is removed. */
1387 g_signal_connect (G_OBJECT (p), "unmap_event",
1388 G_CALLBACK (tearoff_remove), menu);
1389}
1390
f392e843
JD
1391/* Create a menu item widget, and connect the callbacks.
1392 ITEM decribes the menu item.
1393 F is the frame the created menu belongs to.
1394 SELECT_CB is the callback to use when a menu item is selected.
1395 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1396 CL_DATA points to the callback data to be used for this menu.
1397 GROUP is an in/out parameter. If the menu item to be created is not
1398 part of any radio menu group, *GROUP contains NULL on entry and exit.
1399 If the menu item to be created is part of a radio menu group, on entry
1400 *GROUP contains the group to use, or NULL if this is the first item
1401 in the group. On exit, *GROUP contains the radio item group.
1402
1403 Returns the created GtkWidget. */
1404static GtkWidget *
1405xg_create_one_menuitem (item, f, select_cb, highlight_cb, cl_data, group)
1406 widget_value *item;
1407 FRAME_PTR f;
1408 GCallback select_cb;
1409 GCallback highlight_cb;
1410 xg_menu_cb_data *cl_data;
1411 GSList **group;
1412{
1413 char *utf8_label;
1414 char *utf8_key;
1415 GtkWidget *w;
1416 xg_menu_item_cb_data *cb_data;
1417
1418 utf8_label = get_utf8_string (item->name);
1419 utf8_key = get_utf8_string (item->key);
1420
1421 w = make_menu_item (utf8_label, utf8_key, item, group);
1422
1423 if (utf8_label && utf8_label != item->name) g_free (utf8_label);
1424 if (utf8_key && utf8_key != item->key) g_free (utf8_key);
1425
1426 cb_data = xmalloc (sizeof (xg_menu_item_cb_data));
1427
1428 xg_list_insert (&xg_menu_item_cb_list, &cb_data->ptrs);
1429
1430 cb_data->unhighlight_id = cb_data->highlight_id = cb_data->select_id = 0;
1431 cb_data->help = item->help;
1432 cb_data->cl_data = cl_data;
1433 cb_data->call_data = item->call_data;
177c0ea7 1434
f392e843
JD
1435 g_signal_connect (G_OBJECT (w),
1436 "destroy",
1437 G_CALLBACK (menuitem_destroy_callback),
1438 cb_data);
1439
1440 /* Put cb_data in widget, so we can get at it when modifying menubar */
1441 g_object_set_data (G_OBJECT (w), XG_ITEM_DATA, cb_data);
1442
1443 /* final item, not a submenu */
1444 if (item->call_data && ! item->contents)
1445 {
1446 if (select_cb)
1447 cb_data->select_id
1448 = g_signal_connect (G_OBJECT (w), "activate", select_cb, cb_data);
1449 }
1450
1451 if (! NILP (item->help) && highlight_cb)
1452 {
1453 /* We use enter/leave notify instead of select/deselect because
1454 select/deselect doesn't go well with detached menus. */
1455 cb_data->highlight_id
1456 = g_signal_connect (G_OBJECT (w),
1457 "enter-notify-event",
1458 G_CALLBACK (menuitem_highlight_callback),
1459 cb_data);
1460 cb_data->unhighlight_id
1461 = g_signal_connect (G_OBJECT (w),
1462 "leave-notify-event",
1463 G_CALLBACK (menuitem_highlight_callback),
1464 cb_data);
1465 }
1466
1467 return w;
1468}
1469
9d6194d6
AS
1470static GtkWidget *create_menus P_ ((widget_value *, FRAME_PTR, GCallback,
1471 GCallback, GCallback, int, int, int,
1472 GtkWidget *, xg_menu_cb_data *, char *));
1473
f392e843
JD
1474/* Create a full menu tree specified by DATA.
1475 F is the frame the created menu belongs to.
1476 SELECT_CB is the callback to use when a menu item is selected.
1477 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
1478 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1479 POP_UP_P is non-zero if we shall create a popup menu.
1480 MENU_BAR_P is non-zero if we shall create a menu bar.
1481 ADD_TEAROFF_P is non-zero if we shall add a teroff menu item. Ignored
1482 if MENU_BAR_P is non-zero.
1483 TOPMENU is the topmost GtkWidget that others shall be placed under.
1484 It may be NULL, in that case we create the appropriate widget
1485 (menu bar or menu item depending on POP_UP_P and MENU_BAR_P)
1486 CL_DATA is the callback data we shall use for this menu, or NULL
1487 if we haven't set the first callback yet.
1488 NAME is the name to give to the top level menu if this function
1489 creates it. May be NULL to not set any name.
1490
1491 Returns the top level GtkWidget. This is TOPLEVEL if TOPLEVEL is
1492 not NULL.
1493
1494 This function calls itself to create submenus. */
1495
1496static GtkWidget *
1497create_menus (data, f, select_cb, deactivate_cb, highlight_cb,
1498 pop_up_p, menu_bar_p, add_tearoff_p, topmenu, cl_data, name)
1499 widget_value *data;
1500 FRAME_PTR f;
1501 GCallback select_cb;
1502 GCallback deactivate_cb;
1503 GCallback highlight_cb;
1504 int pop_up_p;
1505 int menu_bar_p;
1506 int add_tearoff_p;
1507 GtkWidget *topmenu;
1508 xg_menu_cb_data *cl_data;
1509 char *name;
1510{
1511 widget_value *item;
1512 GtkWidget *wmenu = topmenu;
1513 GSList *group = NULL;
1514
1515 if (! topmenu)
1516 {
1517 if (! menu_bar_p) wmenu = gtk_menu_new ();
1518 else wmenu = gtk_menu_bar_new ();
1519
1520 /* Put cl_data on the top menu for easier access. */
1521 cl_data = make_cl_data (cl_data, f, highlight_cb);
1522 g_object_set_data (G_OBJECT (wmenu), XG_FRAME_DATA, (gpointer)cl_data);
1523 g_signal_connect (G_OBJECT (wmenu), "destroy",
1524 G_CALLBACK (menu_destroy_callback), cl_data);
177c0ea7 1525
f392e843
JD
1526 if (name)
1527 gtk_widget_set_name (wmenu, name);
1528
1529 if (deactivate_cb)
1530 g_signal_connect (G_OBJECT (wmenu),
1531 "deactivate", deactivate_cb, 0);
1532
1533 g_signal_connect (G_OBJECT (wmenu),
1534 "grab-notify", G_CALLBACK (menu_grab_callback), 0);
1535 }
177c0ea7 1536
f392e843
JD
1537 if (! menu_bar_p && add_tearoff_p)
1538 {
1539 GtkWidget *tearoff = gtk_tearoff_menu_item_new ();
1540 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), tearoff);
1541
1542 g_signal_connect (G_OBJECT (tearoff), "activate",
1543 G_CALLBACK (tearoff_activate), 0);
1544 }
1545
1546 for (item = data; item; item = item->next)
1547 {
1548 GtkWidget *w;
177c0ea7 1549
f392e843
JD
1550 if (pop_up_p && !item->contents && !item->call_data
1551 && !xg_separator_p (item->name))
1552 {
1553 char *utf8_label;
1554 /* A title for a popup. We do the same as GTK does when
1555 creating titles, but it does not look good. */
1556 group = NULL;
1557 utf8_label = get_utf8_string (item->name);
1558
1559 gtk_menu_set_title (GTK_MENU (wmenu), utf8_label);
4b1b4443 1560 w = gtk_menu_item_new_with_label (utf8_label);
f392e843
JD
1561 gtk_widget_set_sensitive (w, FALSE);
1562 if (utf8_label && utf8_label != item->name) g_free (utf8_label);
1563 }
1564 else if (xg_separator_p (item->name))
1565 {
1566 group = NULL;
1567 /* GTK only have one separator type. */
1568 w = gtk_separator_menu_item_new ();
1569 }
1570 else
1571 {
1572 w = xg_create_one_menuitem (item,
1573 f,
1574 item->contents ? 0 : select_cb,
1575 highlight_cb,
1576 cl_data,
1577 &group);
1578
1579 if (item->contents)
1580 {
1581 GtkWidget *submenu = create_menus (item->contents,
1582 f,
1583 select_cb,
1584 deactivate_cb,
1585 highlight_cb,
1586 0,
1587 0,
1588 1,
1589 0,
1590 cl_data,
1591 0);
1592 gtk_menu_item_set_submenu (GTK_MENU_ITEM (w), submenu);
1593 }
f392e843
JD
1594 }
1595
1596 gtk_menu_shell_append (GTK_MENU_SHELL (wmenu), w);
1597 gtk_widget_set_name (w, MENU_ITEM_NAME);
1598 }
1599
1600 return wmenu;
1601}
1602
1603/* Create a menubar, popup menu or dialog, depending on the TYPE argument.
1604 TYPE can be "menubar", "popup" for popup menu, or "dialog" for a dialog
1605 with some text and buttons.
1606 F is the frame the created item belongs to.
1607 NAME is the name to use for the top widget.
1608 VAL is a widget_value structure describing items to be created.
1609 SELECT_CB is the callback to use when a menu item is selected or
1610 a dialog button is pressed.
1611 DEACTIVATE_CB is the callback to use when an item is deactivated.
1612 For a menu, when a sub menu is not shown anymore, for a dialog it is
1613 called when the dialog is popped down.
1614 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1615
1616 Returns the widget created. */
1617GtkWidget *
1618xg_create_widget (type, name, f, val,
1619 select_cb, deactivate_cb, highlight_cb)
1620 char *type;
1621 char *name;
1622 FRAME_PTR f;
1623 widget_value *val;
1624 GCallback select_cb;
1625 GCallback deactivate_cb;
1626 GCallback highlight_cb;
1627{
1628 GtkWidget *w = 0;
1629 if (strcmp (type, "dialog") == 0)
1630 {
1631 w = create_dialog (val, select_cb, deactivate_cb);
1632 gtk_window_set_transient_for (GTK_WINDOW (w),
1633 GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
1634 gtk_window_set_destroy_with_parent (GTK_WINDOW (w), TRUE);
1635
1636 if (w)
1637 gtk_widget_set_name (w, "emacs-dialog");
1638 }
1639 else if (strcmp (type, "menubar") == 0 || strcmp (type, "popup") == 0)
1640 {
1641 w = create_menus (val->contents,
1642 f,
1643 select_cb,
1644 deactivate_cb,
1645 highlight_cb,
1646 strcmp (type, "popup") == 0,
1647 strcmp (type, "menubar") == 0,
1648 1,
1649 0,
1650 0,
1651 name);
1652
1653 /* Set the cursor to an arrow for popup menus when they are mapped.
1654 This is done by default for menu bar menus. */
1655 if (strcmp (type, "popup") == 0)
1656 {
1657 /* Must realize so the GdkWindow inside the widget is created. */
1658 gtk_widget_realize (w);
1659 xg_set_cursor (w, &xg_left_ptr_cursor);
1660 }
1661 }
1662 else
1663 {
1664 fprintf (stderr, "bad type in xg_create_widget: %s, doing nothing\n",
1665 type);
1666 }
1667
1668 return w;
1669}
1670
0a1d6de0 1671/* Return the label for menu item WITEM. */
f392e843
JD
1672static const char *
1673xg_get_menu_item_label (witem)
1674 GtkMenuItem *witem;
1675{
1676 GtkLabel *wlabel = GTK_LABEL (gtk_bin_get_child (GTK_BIN (witem)));
1677 return gtk_label_get_label (wlabel);
1678}
1679
0a1d6de0 1680/* Return non-zero if the menu item WITEM has the text LABEL. */
f392e843
JD
1681static int
1682xg_item_label_same_p (witem, label)
1683 GtkMenuItem *witem;
1684 char *label;
1685{
0a1d6de0 1686 int is_same = 0;
f392e843 1687 char *utf8_label = get_utf8_string (label);
0a1d6de0
JD
1688 const char *old_label = witem ? xg_get_menu_item_label (witem) : 0;
1689
1690 if (! old_label && ! utf8_label)
1691 is_same = 1;
1692 else if (old_label && utf8_label)
1693 is_same = strcmp (utf8_label, old_label) == 0;
1694
1695 if (utf8_label && utf8_label != label) g_free (utf8_label);
f392e843
JD
1696
1697 return is_same;
1698}
1699
1700/* Remove widgets in LIST from container WCONT. */
1701static void
1702remove_from_container (wcont, list)
1703 GtkWidget *wcont;
1704 GList *list;
1705{
f392e843
JD
1706 GList *iter;
1707
49853a4d 1708 for (iter = list; iter; iter = g_list_next (iter))
f392e843
JD
1709 {
1710 GtkWidget *w = GTK_WIDGET (iter->data);
1711
1712 /* Add a ref to w so we can explicitly destroy it later. */
1713 gtk_widget_ref (w);
1714 gtk_container_remove (GTK_CONTAINER (wcont), w);
177c0ea7 1715
f392e843
JD
1716 /* If there is a menu under this widget that has been detached,
1717 there is a reference to it, and just removing w from the
1718 container does not destroy the submenu. By explicitly
1719 destroying w we make sure the submenu is destroyed, thus
1720 removing the detached window also if there was one. */
1721 gtk_widget_destroy (w);
1722 }
f392e843
JD
1723}
1724
1725/* Update the top level names in MENUBAR (i.e. not submenus).
1726 F is the frame the menu bar belongs to.
49853a4d
JD
1727 *LIST is a list with the current menu bar names (menu item widgets).
1728 ITER is the item within *LIST that shall be updated.
1729 POS is the numerical position, starting at 0, of ITER in *LIST.
f392e843
JD
1730 VAL describes what the menu bar shall look like after the update.
1731 SELECT_CB is the callback to use when a menu item is selected.
1732 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
49853a4d 1733 CL_DATA points to the callback data to be used for this menu bar.
f392e843
JD
1734
1735 This function calls itself to walk through the menu bar names. */
1736static void
49853a4d
JD
1737xg_update_menubar (menubar, f, list, iter, pos, val,
1738 select_cb, highlight_cb, cl_data)
f392e843
JD
1739 GtkWidget *menubar;
1740 FRAME_PTR f;
49853a4d
JD
1741 GList **list;
1742 GList *iter;
1743 int pos;
f392e843
JD
1744 widget_value *val;
1745 GCallback select_cb;
1746 GCallback highlight_cb;
1747 xg_menu_cb_data *cl_data;
1748{
49853a4d 1749 if (! iter && ! val)
f392e843 1750 return;
49853a4d 1751 else if (iter && ! val)
f392e843 1752 {
49853a4d
JD
1753 /* Item(s) have been removed. Remove all remaining items. */
1754 remove_from_container (menubar, iter);
f392e843
JD
1755
1756 /* All updated. */
1757 val = 0;
49853a4d 1758 iter = 0;
f392e843 1759 }
49853a4d 1760 else if (! iter && val)
f392e843
JD
1761 {
1762 /* Item(s) added. Add all new items in one call. */
1763 create_menus (val, f, select_cb, 0, highlight_cb,
1764 0, 1, 0, menubar, cl_data, 0);
1765
1766 /* All updated. */
1767 val = 0;
49853a4d 1768 iter = 0;
f392e843 1769 }
49853a4d
JD
1770 /* Below this neither iter or val is NULL */
1771 else if (xg_item_label_same_p (GTK_MENU_ITEM (iter->data), val->name))
f392e843
JD
1772 {
1773 /* This item is still the same, check next item. */
1774 val = val->next;
49853a4d
JD
1775 iter = g_list_next (iter);
1776 ++pos;
f392e843
JD
1777 }
1778 else /* This item is changed. */
1779 {
49853a4d 1780 GtkMenuItem *witem = GTK_MENU_ITEM (iter->data);
f392e843 1781 GtkMenuItem *witem2 = 0;
f392e843 1782 int val_in_menubar = 0;
49853a4d
JD
1783 int iter_in_new_menubar = 0;
1784 GList *iter2;
f392e843
JD
1785 widget_value *cur;
1786
f392e843 1787 /* See if the changed entry (val) is present later in the menu bar */
49853a4d
JD
1788 for (iter2 = iter;
1789 iter2 && ! val_in_menubar;
1790 iter2 = g_list_next (iter2))
f392e843 1791 {
49853a4d 1792 witem2 = GTK_MENU_ITEM (iter2->data);
f392e843
JD
1793 val_in_menubar = xg_item_label_same_p (witem2, val->name);
1794 }
1795
49853a4d 1796 /* See if the current entry (iter) is present later in the
f392e843 1797 specification for the new menu bar. */
49853a4d
JD
1798 for (cur = val; cur && ! iter_in_new_menubar; cur = cur->next)
1799 iter_in_new_menubar = xg_item_label_same_p (witem, cur->name);
f392e843 1800
49853a4d 1801 if (val_in_menubar && ! iter_in_new_menubar)
f392e843 1802 {
49853a4d
JD
1803 int nr = pos;
1804
f392e843
JD
1805 /* This corresponds to:
1806 Current: A B C
1807 New: A C
1808 Remove B. */
177c0ea7 1809
f392e843
JD
1810 gtk_widget_ref (GTK_WIDGET (witem));
1811 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem));
1812 gtk_widget_destroy (GTK_WIDGET (witem));
1813
1814 /* Must get new list since the old changed. */
49853a4d
JD
1815 g_list_free (*list);
1816 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
1817 while (nr-- > 0) iter = g_list_next (iter);
f392e843 1818 }
49853a4d 1819 else if (! val_in_menubar && ! iter_in_new_menubar)
f392e843
JD
1820 {
1821 /* This corresponds to:
1822 Current: A B C
1823 New: A X C
1824 Rename B to X. This might seem to be a strange thing to do,
1825 since if there is a menu under B it will be totally wrong for X.
1826 But consider editing a C file. Then there is a C-mode menu
1827 (corresponds to B above).
1828 If then doing C-x C-f the minibuf menu (X above) replaces the
1829 C-mode menu. When returning from the minibuffer, we get
1830 back the C-mode menu. Thus we do:
1831 Rename B to X (C-mode to minibuf menu)
1832 Rename X to B (minibuf to C-mode menu).
1833 If the X menu hasn't been invoked, the menu under B
1834 is up to date when leaving the minibuffer. */
1835 GtkLabel *wlabel = GTK_LABEL (gtk_bin_get_child (GTK_BIN (witem)));
1836 char *utf8_label = get_utf8_string (val->name);
177c0ea7 1837
4b1b4443 1838 gtk_label_set_text (wlabel, utf8_label);
f392e843 1839
49853a4d 1840 iter = g_list_next (iter);
f392e843 1841 val = val->next;
49853a4d 1842 ++pos;
f392e843 1843 }
49853a4d 1844 else if (! val_in_menubar && iter_in_new_menubar)
f392e843
JD
1845 {
1846 /* This corresponds to:
1847 Current: A B C
1848 New: A X B C
1849 Insert X. */
1850
49853a4d 1851 int nr = pos;
f392e843
JD
1852 GList *group = 0;
1853 GtkWidget *w = xg_create_one_menuitem (val,
1854 f,
1855 select_cb,
1856 highlight_cb,
1857 cl_data,
1858 &group);
1859
1860 gtk_widget_set_name (w, MENU_ITEM_NAME);
1861 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar), w, pos);
1862
49853a4d
JD
1863 g_list_free (*list);
1864 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
1865 while (nr-- > 0) iter = g_list_next (iter);
1866 iter = g_list_next (iter);
f392e843 1867 val = val->next;
49853a4d 1868 ++pos;
f392e843 1869 }
49853a4d 1870 else /* if (val_in_menubar && iter_in_new_menubar) */
f392e843 1871 {
49853a4d 1872 int nr = pos;
f392e843
JD
1873 /* This corresponds to:
1874 Current: A B C
1875 New: A C B
1876 Move C before B */
1877
1878 gtk_widget_ref (GTK_WIDGET (witem2));
1879 gtk_container_remove (GTK_CONTAINER (menubar), GTK_WIDGET (witem2));
1880 gtk_menu_shell_insert (GTK_MENU_SHELL (menubar),
1881 GTK_WIDGET (witem2), pos);
1882 gtk_widget_unref (GTK_WIDGET (witem2));
1883
49853a4d
JD
1884 g_list_free (*list);
1885 *list = iter = gtk_container_get_children (GTK_CONTAINER (menubar));
1886 while (nr-- > 0) iter = g_list_next (iter);
f392e843 1887 val = val->next;
49853a4d 1888 ++pos;
f392e843 1889 }
f392e843
JD
1890 }
1891
1892 /* Update the rest of the menu bar. */
49853a4d
JD
1893 xg_update_menubar (menubar, f, list, iter, pos, val,
1894 select_cb, highlight_cb, cl_data);
f392e843
JD
1895}
1896
1897/* Update the menu item W so it corresponds to VAL.
1898 SELECT_CB is the callback to use when a menu item is selected.
1899 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
1900 CL_DATA is the data to set in the widget for menu invokation. */
1901static void
1902xg_update_menu_item (val, w, select_cb, highlight_cb, cl_data)
1903 widget_value *val;
1904 GtkWidget *w;
1905 GCallback select_cb;
1906 GCallback highlight_cb;
1907 xg_menu_cb_data *cl_data;
1908{
1909 GtkWidget *wchild;
1910 GtkLabel *wlbl = 0;
1911 GtkLabel *wkey = 0;
1912 char *utf8_label;
1913 char *utf8_key;
0a1d6de0
JD
1914 const char *old_label = 0;
1915 const char *old_key = 0;
f392e843 1916 xg_menu_item_cb_data *cb_data;
177c0ea7
JB
1917
1918 wchild = gtk_bin_get_child (GTK_BIN (w));
f392e843
JD
1919 utf8_label = get_utf8_string (val->name);
1920 utf8_key = get_utf8_string (val->key);
1921
1922 /* See if W is a menu item with a key. See make_menu_item above. */
1923 if (GTK_IS_HBOX (wchild))
1924 {
1925 GList *list = gtk_container_get_children (GTK_CONTAINER (wchild));
1926
1927 wlbl = GTK_LABEL (list->data);
1928 wkey = GTK_LABEL (list->next->data);
49853a4d
JD
1929 g_list_free (list);
1930
f392e843
JD
1931 if (! utf8_key)
1932 {
1933 /* Remove the key and keep just the label. */
1934 gtk_widget_ref (GTK_WIDGET (wlbl));
1935 gtk_container_remove (GTK_CONTAINER (w), wchild);
1936 gtk_container_add (GTK_CONTAINER (w), GTK_WIDGET (wlbl));
1937 wkey = 0;
1938 }
49853a4d 1939
f392e843
JD
1940 }
1941 else /* Just a label. */
1942 {
1943 wlbl = GTK_LABEL (wchild);
1944
1945 /* Check if there is now a key. */
1946 if (utf8_key)
1947 {
1948 GtkWidget *wtoadd = make_widget_for_menu_item (utf8_label, utf8_key);
1949 GList *list = gtk_container_get_children (GTK_CONTAINER (wtoadd));
49853a4d 1950
f392e843
JD
1951 wlbl = GTK_LABEL (list->data);
1952 wkey = GTK_LABEL (list->next->data);
49853a4d 1953 g_list_free (list);
f392e843
JD
1954
1955 gtk_container_remove (GTK_CONTAINER (w), wchild);
1956 gtk_container_add (GTK_CONTAINER (w), wtoadd);
1957 }
1958 }
1959
177c0ea7 1960
0a1d6de0
JD
1961 if (wkey) old_key = gtk_label_get_label (wkey);
1962 if (wlbl) old_label = gtk_label_get_label (wlbl);
177c0ea7 1963
0a1d6de0 1964 if (wkey && utf8_key && (! old_key || strcmp (utf8_key, old_key) != 0))
f392e843
JD
1965 gtk_label_set_text (wkey, utf8_key);
1966
0a1d6de0 1967 if (! old_label || strcmp (utf8_label, old_label) != 0)
4b1b4443 1968 gtk_label_set_text (wlbl, utf8_label);
f392e843 1969
0a1d6de0
JD
1970 if (utf8_key && utf8_key != val->key) g_free (utf8_key);
1971 if (utf8_label && utf8_label != val->name) g_free (utf8_label);
177c0ea7 1972
f392e843
JD
1973 if (! val->enabled && GTK_WIDGET_SENSITIVE (w))
1974 gtk_widget_set_sensitive (w, FALSE);
1975 else if (val->enabled && ! GTK_WIDGET_SENSITIVE (w))
1976 gtk_widget_set_sensitive (w, TRUE);
1977
1978 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (w),
1979 XG_ITEM_DATA);
1980 if (cb_data)
1981 {
1982 cb_data->call_data = val->call_data;
1983 cb_data->help = val->help;
1984 cb_data->cl_data = cl_data;
177c0ea7 1985
f392e843
JD
1986 /* We assume the callback functions don't change. */
1987 if (val->call_data && ! val->contents)
1988 {
1989 /* This item shall have a select callback. */
1990 if (! cb_data->select_id)
1991 cb_data->select_id
1992 = g_signal_connect (G_OBJECT (w), "activate",
1993 select_cb, cb_data);
1994 }
1995 else if (cb_data->select_id)
1996 {
1997 g_signal_handler_disconnect (w, cb_data->select_id);
1998 cb_data->select_id = 0;
1999 }
2000
2001 if (NILP (cb_data->help))
2002 {
2003 /* Shall not have help. Remove if any existed previously. */
2004 if (cb_data->highlight_id)
2005 {
2006 g_signal_handler_disconnect (G_OBJECT (w),
2007 cb_data->highlight_id);
2008 cb_data->highlight_id = 0;
2009 }
2010 if (cb_data->unhighlight_id)
2011 {
2012 g_signal_handler_disconnect (G_OBJECT (w),
2013 cb_data->unhighlight_id);
2014 cb_data->unhighlight_id = 0;
2015 }
2016 }
2017 else if (! cb_data->highlight_id && highlight_cb)
2018 {
2019 /* Have help now, but didn't previously. Add callback. */
2020 cb_data->highlight_id
2021 = g_signal_connect (G_OBJECT (w),
2022 "enter-notify-event",
2023 G_CALLBACK (menuitem_highlight_callback),
2024 cb_data);
2025 cb_data->unhighlight_id
2026 = g_signal_connect (G_OBJECT (w),
2027 "leave-notify-event",
2028 G_CALLBACK (menuitem_highlight_callback),
2029 cb_data);
2030 }
2031 }
2032}
2033
2034/* Update the toggle menu item W so it corresponds to VAL. */
2035static void
2036xg_update_toggle_item (val, w)
2037 widget_value *val;
2038 GtkWidget *w;
2039{
2040 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2041}
2042
2043/* Update the radio menu item W so it corresponds to VAL. */
2044static void
2045xg_update_radio_item (val, w)
2046 widget_value *val;
2047 GtkWidget *w;
2048{
2049 gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (w), val->selected);
2050}
2051
2052/* Update the sub menu SUBMENU and all its children so it corresponds to VAL.
2053 SUBMENU may be NULL, in that case a new menu is created.
2054 F is the frame the menu bar belongs to.
2055 VAL describes the contents of the menu bar.
2056 SELECT_CB is the callback to use when a menu item is selected.
2057 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2058 HIGHLIGHT_CB is the callback to call when entering/leaving menu items.
2059 CL_DATA is the call back data to use for any newly created items.
2060
2061 Returns the updated submenu widget, that is SUBMENU unless SUBMENU
2062 was NULL. */
2063
2064static GtkWidget *
2065xg_update_submenu (submenu, f, val,
2066 select_cb, deactivate_cb, highlight_cb, cl_data)
2067 GtkWidget *submenu;
2068 FRAME_PTR f;
2069 widget_value *val;
2070 GCallback select_cb;
2071 GCallback deactivate_cb;
2072 GCallback highlight_cb;
2073 xg_menu_cb_data *cl_data;
2074{
2075 GtkWidget *newsub = submenu;
2076 GList *list = 0;
2077 GList *iter;
2078 widget_value *cur;
2079 int has_tearoff_p = 0;
2080 GList *first_radio = 0;
177c0ea7 2081
f392e843
JD
2082 if (submenu)
2083 list = gtk_container_get_children (GTK_CONTAINER (submenu));
177c0ea7 2084
f392e843
JD
2085 for (cur = val, iter = list;
2086 cur && iter;
2087 iter = g_list_next (iter), cur = cur->next)
2088 {
2089 GtkWidget *w = GTK_WIDGET (iter->data);
2090
2091 /* Skip tearoff items, they have no counterpart in val. */
2092 if (GTK_IS_TEAROFF_MENU_ITEM (w))
2093 {
2094 has_tearoff_p = 1;
2095 iter = g_list_next (iter);
2096 if (iter) w = GTK_WIDGET (iter->data);
2097 else break;
2098 }
2099
2100 /* Remember first radio button in a group. If we get a mismatch in
2101 a radio group we must rebuild the whole group so that the connections
2102 in GTK becomes correct. */
2103 if (cur->button_type == BUTTON_TYPE_RADIO && ! first_radio)
2104 first_radio = iter;
2105 else if (cur->button_type != BUTTON_TYPE_RADIO
2106 && ! GTK_IS_RADIO_MENU_ITEM (w))
2107 first_radio = 0;
2108
2109 if (GTK_IS_SEPARATOR_MENU_ITEM (w))
2110 {
2111 if (! xg_separator_p (cur->name))
2112 break;
2113 }
2114 else if (GTK_IS_CHECK_MENU_ITEM (w))
2115 {
2116 if (cur->button_type != BUTTON_TYPE_TOGGLE)
2117 break;
2118 xg_update_toggle_item (cur, w);
2119 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2120 }
2121 else if (GTK_IS_RADIO_MENU_ITEM (w))
2122 {
2123 if (cur->button_type != BUTTON_TYPE_RADIO)
2124 break;
2125 xg_update_radio_item (cur, w);
2126 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2127 }
2128 else if (GTK_IS_MENU_ITEM (w))
2129 {
2130 GtkMenuItem *witem = GTK_MENU_ITEM (w);
2131 GtkWidget *sub;
2132
2133 if (cur->button_type != BUTTON_TYPE_NONE ||
2134 xg_separator_p (cur->name))
2135 break;
2136
2137 xg_update_menu_item (cur, w, select_cb, highlight_cb, cl_data);
2138
2139 sub = gtk_menu_item_get_submenu (witem);
2140 if (sub && ! cur->contents)
2141 {
2142 /* Not a submenu anymore. */
2143 gtk_widget_ref (sub);
2144 gtk_menu_item_remove_submenu (witem);
2145 gtk_widget_destroy (sub);
2146 }
2147 else if (cur->contents)
2148 {
2149 GtkWidget *nsub;
2150
2151 nsub = xg_update_submenu (sub, f, cur->contents,
2152 select_cb, deactivate_cb,
2153 highlight_cb, cl_data);
2154
2155 /* If this item just became a submenu, we must set it. */
2156 if (nsub != sub)
2157 gtk_menu_item_set_submenu (witem, nsub);
2158 }
2159 }
2160 else
2161 {
2162 /* Structural difference. Remove everything from here and down
2163 in SUBMENU. */
2164 break;
2165 }
2166 }
2167
2168 /* Remove widgets from first structual change. */
2169 if (iter)
2170 {
2171 /* If we are adding new menu items below, we must remove from
2172 first radio button so that radio groups become correct. */
2173 if (cur && first_radio) remove_from_container (submenu, first_radio);
2174 else remove_from_container (submenu, iter);
2175 }
177c0ea7 2176
f392e843
JD
2177 if (cur)
2178 {
2179 /* More items added. Create them. */
2180 newsub = create_menus (cur,
2181 f,
2182 select_cb,
2183 deactivate_cb,
2184 highlight_cb,
2185 0,
2186 0,
2187 ! has_tearoff_p,
2188 submenu,
2189 cl_data,
2190 0);
2191 }
177c0ea7 2192
49853a4d
JD
2193 if (list) g_list_free (list);
2194
f392e843
JD
2195 return newsub;
2196}
2197
2198/* Update the MENUBAR.
2199 F is the frame the menu bar belongs to.
2200 VAL describes the contents of the menu bar.
2201 If DEEP_P is non-zero, rebuild all but the top level menu names in
2202 the MENUBAR. If DEEP_P is zero, just rebuild the names in the menubar.
2203 SELECT_CB is the callback to use when a menu item is selected.
2204 DEACTIVATE_CB is the callback to use when a sub menu is not shown anymore.
2205 HIGHLIGHT_CB is the callback to call when entering/leaving menu items. */
2206void
2207xg_modify_menubar_widgets (menubar, f, val, deep_p,
2208 select_cb, deactivate_cb, highlight_cb)
2209 GtkWidget *menubar;
2210 FRAME_PTR f;
2211 widget_value *val;
2212 int deep_p;
2213 GCallback select_cb;
2214 GCallback deactivate_cb;
2215 GCallback highlight_cb;
2216{
2217 xg_menu_cb_data *cl_data;
2218 GList *list = gtk_container_get_children (GTK_CONTAINER (menubar));
f392e843
JD
2219
2220 if (! list) return;
177c0ea7 2221
f392e843
JD
2222 cl_data = (xg_menu_cb_data*) g_object_get_data (G_OBJECT (menubar),
2223 XG_FRAME_DATA);
2224
2225 if (! deep_p)
2226 {
2227 widget_value *cur = val->contents;
49853a4d 2228 xg_update_menubar (menubar, f, &list, list, 0, cur,
f392e843
JD
2229 select_cb, highlight_cb, cl_data);
2230 }
2231 else
2232 {
2233 widget_value *cur;
2234
2235 /* Update all sub menus.
2236 We must keep the submenu names (GTK menu item widgets) since the
2237 X Window in the XEvent that activates the menu are those widgets. */
2238
2239 /* Update cl_data, menu_item things in F may have changed. */
2240 update_cl_data (cl_data, f, highlight_cb);
2241
2242 for (cur = val->contents; cur; cur = cur->next)
2243 {
49853a4d 2244 GList *iter;
f392e843
JD
2245 GtkWidget *sub = 0;
2246 GtkWidget *newsub;
2247 GtkMenuItem *witem;
2248
2249 /* Find sub menu that corresponds to val and update it. */
2250 for (iter = list ; iter; iter = g_list_next (iter))
2251 {
2252 witem = GTK_MENU_ITEM (iter->data);
2253 if (xg_item_label_same_p (witem, cur->name))
2254 {
2255 sub = gtk_menu_item_get_submenu (witem);
2256 break;
2257 }
2258 }
177c0ea7 2259
f392e843
JD
2260 newsub = xg_update_submenu (sub,
2261 f,
2262 cur->contents,
2263 select_cb,
2264 deactivate_cb,
2265 highlight_cb,
2266 cl_data);
2267 /* sub may still be NULL. If we just updated non deep and added
2268 a new menu bar item, it has no sub menu yet. So we set the
2269 newly created sub menu under witem. */
2270 if (newsub != sub)
2271 gtk_menu_item_set_submenu (witem, newsub);
2272
2273 }
2274 }
2275
49853a4d 2276 g_list_free (list);
f392e843
JD
2277 gtk_widget_show_all (menubar);
2278}
2279
2280/* Recompute all the widgets of frame F, when the menu bar has been
2281 changed. Value is non-zero if widgets were updated. */
2282
2283int
2284xg_update_frame_menubar (f)
2285 FRAME_PTR f;
2286{
2287 struct x_output *x = f->output_data.x;
2288 GtkRequisition req;
177c0ea7 2289
f392e843
JD
2290 if (!x->menubar_widget || GTK_WIDGET_MAPPED (x->menubar_widget))
2291 return 0;
2292
2293 BLOCK_INPUT;
2294
2295 gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget,
2296 FALSE, FALSE, 0);
2297 gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0);
2298
2299 gtk_widget_show_all (x->menubar_widget);
2300 gtk_widget_size_request (x->menubar_widget, &req);
2301
2302 FRAME_MENUBAR_HEIGHT (f) = req.height;
2303
2304 /* The height has changed, resize outer widget and set columns
2305 rows to what we had before adding the menu bar. */
be786000 2306 xg_resize_outer_widget (f, FRAME_COLS (f), FRAME_LINES (f));
177c0ea7 2307
f392e843
JD
2308 SET_FRAME_GARBAGED (f);
2309 UNBLOCK_INPUT;
a8303f92
AS
2310
2311 return 1;
f392e843
JD
2312}
2313
2314/* Get rid of the menu bar of frame F, and free its storage.
2315 This is used when deleting a frame, and when turning off the menu bar. */
2316
2317void
2318free_frame_menubar (f)
2319 FRAME_PTR f;
2320{
2321 struct x_output *x = f->output_data.x;
2322
2323 if (x->menubar_widget)
2324 {
2325 BLOCK_INPUT;
2326
2327 gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget);
2328 /* The menubar and its children shall be deleted when removed from
2329 the container. */
2330 x->menubar_widget = 0;
2331 FRAME_MENUBAR_HEIGHT (f) = 0;
2332
2333 /* The height has changed, resize outer widget and set columns
2334 rows to what we had before removing the menu bar. */
be786000 2335 xg_resize_outer_widget (f, FRAME_COLS (f), FRAME_LINES (f));
f392e843
JD
2336
2337 SET_FRAME_GARBAGED (f);
2338 UNBLOCK_INPUT;
2339 }
2340}
2341
2342
2343\f
2344/***********************************************************************
2345 Scroll bar functions
2346 ***********************************************************************/
2347
2348
2349/* Setting scroll bar values invokes the callback. Use this variable
2350 to indicate that callback should do nothing. */
2351int xg_ignore_gtk_scrollbar;
2352
f392e843
JD
2353/* SET_SCROLL_BAR_X_WINDOW assumes the second argument fits in
2354 32 bits. But we want to store pointers, and they may be larger
2355 than 32 bits. Keep a mapping from integer index to widget pointers
2356 to get around the 32 bit limitation. */
2357static struct
2358{
2359 GtkWidget **widgets;
2360 int max_size;
2361 int used;
81e302ef 2362} id_to_widget;
f392e843
JD
2363
2364/* Grow this much every time we need to allocate more */
2365#define ID_TO_WIDGET_INCR 32
2366
2367/* Store the widget pointer W in id_to_widget and return the integer index. */
2368static int
2369xg_store_widget_in_map (w)
2370 GtkWidget *w;
2371{
2372 int i;
2373
2374 if (id_to_widget.max_size == id_to_widget.used)
2375 {
2376 int new_size = id_to_widget.max_size + ID_TO_WIDGET_INCR;
2377
2378 id_to_widget.widgets = xrealloc (id_to_widget.widgets,
2379 sizeof (GtkWidget *)*new_size);
2380
2381 for (i = id_to_widget.max_size; i < new_size; ++i)
2382 id_to_widget.widgets[i] = 0;
2383 id_to_widget.max_size = new_size;
2384 }
2385
2386 /* Just loop over the array and find a free place. After all,
2387 how many scroll bars are we creating? Should be a small number.
2388 The check above guarantees we will find a free place. */
2389 for (i = 0; i < id_to_widget.max_size; ++i)
2390 {
2391 if (! id_to_widget.widgets[i])
2392 {
2393 id_to_widget.widgets[i] = w;
2394 ++id_to_widget.used;
2395
2396 return i;
2397 }
2398 }
2399
2400 /* Should never end up here */
2401 abort ();
2402}
2403
2404/* Remove pointer at IDX from id_to_widget.
2405 Called when scroll bar is destroyed. */
2406static void
2407xg_remove_widget_from_map (idx)
2408 int idx;
2409{
2410 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
2411 {
2412 id_to_widget.widgets[idx] = 0;
2413 --id_to_widget.used;
2414 }
2415}
2416
2417/* Get the widget pointer at IDX from id_to_widget. */
2418static GtkWidget *
2419xg_get_widget_from_map (idx)
2420 int idx;
2421{
2422 if (idx < id_to_widget.max_size && id_to_widget.widgets[idx] != 0)
2423 return id_to_widget.widgets[idx];
2424
2425 return 0;
2426}
2427
3a8a22fc
JD
2428/* Return the scrollbar id for X Window WID.
2429 Return -1 if WID not in id_to_widget. */
2430int
2431xg_get_scroll_id_for_window (wid)
2432 Window wid;
2433{
2434 int idx;
2435 GtkWidget *w;
2436
2437 w = xg_win_to_widget (wid);
2438
2439 if (w)
2440 {
2441 for (idx = 0; idx < id_to_widget.max_size; ++idx)
2442 if (id_to_widget.widgets[idx] == w)
2443 return idx;
2444 }
2445
2446 return -1;
2447}
2448
f392e843
JD
2449/* Callback invoked when scroll bar WIDGET is destroyed.
2450 DATA is the index into id_to_widget for WIDGET.
cea9be54 2451 We free pointer to last scroll bar values here and remove the index. */
f392e843
JD
2452static void
2453xg_gtk_scroll_destroy (widget, data)
2454 GtkWidget *widget;
2455 gpointer data;
2456{
2457 gpointer p;
2458 int id = (int)data;
177c0ea7 2459
f392e843
JD
2460 p = g_object_get_data (G_OBJECT (widget), XG_LAST_SB_DATA);
2461 if (p) xfree (p);
2462 xg_remove_widget_from_map (id);
2463}
2464
2465/* Callback for button press/release events. Used to start timer so that
2466 the scroll bar repetition timer in GTK gets handeled.
17097258 2467 Also, sets bar->dragging to Qnil when dragging (button release) is done.
f392e843
JD
2468 WIDGET is the scroll bar widget the event is for (not used).
2469 EVENT contains the event.
17097258 2470 USER_DATA points to the struct scrollbar structure.
f392e843
JD
2471
2472 Returns FALSE to tell GTK that it shall continue propagate the event
2473 to widgets. */
2474static gboolean
2475scroll_bar_button_cb (widget, event, user_data)
2476 GtkWidget *widget;
2477 GdkEventButton *event;
2478 gpointer user_data;
2479{
2480 if (event->type == GDK_BUTTON_PRESS && ! xg_timer)
2481 xg_start_timer ();
17097258
JD
2482 else if (event->type == GDK_BUTTON_RELEASE)
2483 {
2484 struct scroll_bar *bar = (struct scroll_bar *) user_data;
2485 if (xg_timer) xg_stop_timer ();
2486 bar->dragging = Qnil;
2487 }
2488
f392e843
JD
2489 return FALSE;
2490}
2491
2492/* Create a scroll bar widget for frame F. Store the scroll bar
2493 in BAR.
2494 SCROLL_CALLBACK is the callback to invoke when the value of the
2495 bar changes.
2496 SCROLL_BAR_NAME is the name we use for the scroll bar. Can be used
2497 to set resources for the widget. */
2498void
2499xg_create_scroll_bar (f, bar, scroll_callback, scroll_bar_name)
2500 FRAME_PTR f;
2501 struct scroll_bar *bar;
2502 GCallback scroll_callback;
2503 char *scroll_bar_name;
2504{
2505 GtkWidget *wscroll;
2506 GtkObject *vadj;
2507 int scroll_id;
177c0ea7 2508
f392e843
JD
2509 /* Page, step increment values are not so important here, they
2510 will be corrected in x_set_toolkit_scroll_bar_thumb. */
2511 vadj = gtk_adjustment_new (XG_SB_MIN, XG_SB_MIN, XG_SB_MAX,
2512 0.1, 0.1, 0.1);
2513
2514 wscroll = gtk_vscrollbar_new (GTK_ADJUSTMENT (vadj));
2515 gtk_widget_set_name (wscroll, scroll_bar_name);
2516 gtk_range_set_update_policy (GTK_RANGE (wscroll), GTK_UPDATE_CONTINUOUS);
177c0ea7 2517
f392e843 2518 scroll_id = xg_store_widget_in_map (wscroll);
177c0ea7 2519
f979dc05 2520 g_signal_connect (G_OBJECT (wscroll),
f392e843
JD
2521 "value-changed",
2522 scroll_callback,
f979dc05 2523 (gpointer) bar);
f392e843
JD
2524 g_signal_connect (G_OBJECT (wscroll),
2525 "destroy",
2526 G_CALLBACK (xg_gtk_scroll_destroy),
f979dc05 2527 (gpointer) scroll_id);
f392e843
JD
2528
2529 /* Connect to button press and button release to detect if any scroll bar
2530 has the pointer. */
2531 g_signal_connect (G_OBJECT (wscroll),
2532 "button-press-event",
2533 G_CALLBACK (scroll_bar_button_cb),
f979dc05 2534 (gpointer) bar);
f392e843
JD
2535 g_signal_connect (G_OBJECT (wscroll),
2536 "button-release-event",
2537 G_CALLBACK (scroll_bar_button_cb),
f979dc05 2538 (gpointer) bar);
177c0ea7 2539
f392e843 2540 gtk_fixed_put (GTK_FIXED (f->output_data.x->edit_widget),
17097258 2541 wscroll, -1, -1);
f392e843
JD
2542
2543 /* Set the cursor to an arrow. */
2544 xg_set_cursor (wscroll, &xg_left_ptr_cursor);
2545
2546 SET_SCROLL_BAR_X_WINDOW (bar, scroll_id);
2547}
2548
2549/* Make the scroll bar represented by SCROLLBAR_ID visible. */
2550void
2551xg_show_scroll_bar (scrollbar_id)
2552 int scrollbar_id;
2553{
2554 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
2555 if (w)
2556 gtk_widget_show (w);
2557}
2558
2559/* Remove the scroll bar represented by SCROLLBAR_ID from the frame F. */
2560void
2561xg_remove_scroll_bar (f, scrollbar_id)
2562 FRAME_PTR f;
2563 int scrollbar_id;
2564{
2565 GtkWidget *w = xg_get_widget_from_map (scrollbar_id);
2566 if (w)
2567 {
2568 gtk_widget_destroy (w);
2569 SET_FRAME_GARBAGED (f);
2570 }
2571}
2572
17097258
JD
2573/* Find left/top for widget W in GtkFixed widget WFIXED. */
2574static void
2575xg_find_top_left_in_fixed (w, wfixed, left, top)
2576 GtkWidget *w, *wfixed;
2577 int *left, *top;
2578{
2579 GList *iter;
2580
2581 for (iter = GTK_FIXED (wfixed)->children; iter; iter = g_list_next (iter))
2582 {
2583 GtkFixedChild *child = (GtkFixedChild *) iter->data;
2584
2585 if (child->widget == w)
2586 {
2587 *left = child->x;
2588 *top = child->y;
2589 return;
2590 }
2591 }
2592
2593 /* Shall never end up here. */
2594 abort ();
2595}
f392e843
JD
2596
2597/* Update the position of the vertical scroll bar represented by SCROLLBAR_ID
2598 in frame F.
2599 TOP/LEFT are the new pixel positions where the bar shall appear.
2600 WIDTH, HEIGHT is the size in pixels the bar shall have. */
2601void
7863d625
JD
2602xg_update_scrollbar_pos (f, scrollbar_id, top, left, width, height,
2603 real_left, canon_width)
f392e843
JD
2604 FRAME_PTR f;
2605 int scrollbar_id;
2606 int top;
2607 int left;
2608 int width;
2609 int height;
2610{
f392e843 2611
49853a4d 2612 GtkWidget *wscroll = xg_get_widget_from_map (scrollbar_id);
7863d625 2613
49853a4d
JD
2614 if (wscroll)
2615 {
cea9be54 2616 GtkWidget *wfixed = f->output_data.x->edit_widget;
17097258 2617 int winextra = canon_width > width ? (canon_width - width) / 2 : 0;
5fd6f727 2618 int bottom = top + height;
f392e843 2619
17097258
JD
2620 gint slider_width;
2621 int oldtop, oldleft, oldbottom;
2622 GtkRequisition req;
7863d625 2623
17097258
JD
2624 /* Get old values. */
2625 xg_find_top_left_in_fixed (wscroll, wfixed, &oldleft, &oldtop);
2626 gtk_widget_size_request (wscroll, &req);
2627 oldbottom = oldtop + req.height;
2628
2629 /* Scroll bars in GTK has a fixed width, so if we say width 16, it
2630 will only be its fixed width (14 is default) anyway, the rest is
2631 blank. We are drawing the mode line across scroll bars when
2632 the frame is split:
2633 |bar| |fringe|
2634 ----------------
2635 mode line
2636 ----------------
2637 |bar| |fringe|
2638
2639 When we "unsplit" the frame:
2640
2641 |bar| |fringe|
2642 -| |-| |
2643