4 Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
6 The Free Software Foundation, Inc.
9 Andrew Borodin <aborodin@vmail.ru>, 2012
11 This file is part of the Midnight Commander.
13 The Midnight Commander is free software: you can redistribute it
14 and/or modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation, either version 3 of the License,
16 or (at your option) any later version.
18 The Midnight Commander is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 * \brief Source: pulldown menu code
36 #include <sys/types.h>
38 #include "lib/global.h"
40 #include "lib/tty/tty.h"
42 #include "lib/tty/mouse.h"
43 #include "lib/tty/key.h" /* key macros */
44 #include "lib/strutil.h"
45 #include "lib/widget.h"
46 #include "lib/event.h" /* mc_event_raise() */
48 /*** global variables ****************************************************************************/
50 /*** file scope macro definitions ****************************************************************/
52 #define MENUENTRY(x) ((menu_entry_t *)(x))
53 #define MENU(x) ((menu_t *)(x))
55 /*** file scope type declarations ****************************************************************/
59 unsigned char first_letter
;
61 unsigned long command
;
67 int start_x
; /* position relative to menubar start */
70 size_t max_entry_len
; /* cached max length of entry texts (text + shortcut) */
71 size_t max_hotkey_len
; /* cached max length of shortcuts */
72 unsigned int selected
; /* pointer to current menu entry */
76 /*** file scope variables ************************************************************************/
78 /*** file scope functions ************************************************************************/
79 /* --------------------------------------------------------------------------------------------- */
82 menu_arrange (menu_t
* menu
, dlg_shortcut_str get_shortcut
)
87 size_t max_shortcut_len
= 0;
89 menu
->max_entry_len
= 1;
90 menu
->max_hotkey_len
= 1;
92 for (i
= menu
->entries
; i
!= NULL
; i
= g_list_next (i
))
94 menu_entry_t
*entry
= MENUENTRY (i
->data
);
100 len
= (size_t) hotkey_width (entry
->text
);
101 menu
->max_hotkey_len
= max (menu
->max_hotkey_len
, len
);
103 if (get_shortcut
!= NULL
)
104 entry
->shortcut
= get_shortcut (entry
->command
);
106 if (entry
->shortcut
!= NULL
)
108 len
= (size_t) str_term_width1 (entry
->shortcut
);
109 max_shortcut_len
= max (max_shortcut_len
, len
);
114 menu
->max_entry_len
= menu
->max_hotkey_len
+ max_shortcut_len
;
118 /* --------------------------------------------------------------------------------------------- */
121 menubar_paint_idx (WMenuBar
* menubar
, unsigned int idx
, int color
)
123 Widget
*w
= WIDGET (menubar
);
124 const menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
125 const menu_entry_t
*entry
= MENUENTRY (g_list_nth_data (menu
->entries
, idx
));
126 const int y
= 2 + idx
;
127 int x
= menu
->start_x
;
129 if (x
+ menu
->max_entry_len
+ 4 > (gsize
) w
->cols
)
130 x
= w
->cols
- menu
->max_entry_len
- 4;
135 tty_setcolor (MENU_ENTRY_COLOR
);
137 widget_move (w
, y
, x
- 1);
138 tty_print_alt_char (ACS_LTEE
, FALSE
);
139 tty_draw_hline (w
->y
+ y
, w
->x
+ x
, ACS_HLINE
, menu
->max_entry_len
+ 3);
140 widget_move (w
, y
, x
+ menu
->max_entry_len
+ 3);
141 tty_print_alt_char (ACS_RTEE
, FALSE
);
148 tty_setcolor (color
);
149 widget_move (w
, y
, x
);
150 tty_print_char ((unsigned char) entry
->first_letter
);
151 tty_getyx (&yt
, &xt
);
152 tty_draw_hline (yt
, xt
, ' ', menu
->max_entry_len
+ 2); /* clear line */
153 tty_print_string (entry
->text
.start
);
155 if (entry
->text
.hotkey
!= NULL
)
157 tty_setcolor (color
== MENU_SELECTED_COLOR
? MENU_HOTSEL_COLOR
: MENU_HOT_COLOR
);
158 tty_print_string (entry
->text
.hotkey
);
159 tty_setcolor (color
);
162 if (entry
->text
.end
!= NULL
)
163 tty_print_string (entry
->text
.end
);
165 if (entry
->shortcut
!= NULL
)
167 widget_move (w
, y
, x
+ menu
->max_hotkey_len
+ 3);
168 tty_print_string (entry
->shortcut
);
171 /* move cursor to the start of entry text */
172 widget_move (w
, y
, x
+ 1);
176 /* --------------------------------------------------------------------------------------------- */
179 menubar_draw_drop (WMenuBar
* menubar
)
181 Widget
*w
= WIDGET (menubar
);
182 const menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
183 const unsigned int count
= g_list_length (menu
->entries
);
184 int column
= menu
->start_x
- 1;
187 if (column
+ menu
->max_entry_len
+ 5 > (gsize
) w
->cols
)
188 column
= w
->cols
- menu
->max_entry_len
- 5;
190 tty_setcolor (MENU_ENTRY_COLOR
);
191 draw_box (w
->owner
, w
->y
+ 1, w
->x
+ column
, count
+ 2, menu
->max_entry_len
+ 5, FALSE
);
193 for (i
= 0; i
< count
; i
++)
194 menubar_paint_idx (menubar
, i
,
195 i
== menu
->selected
? MENU_SELECTED_COLOR
: MENU_ENTRY_COLOR
);
198 /* --------------------------------------------------------------------------------------------- */
201 menubar_set_color (WMenuBar
* menubar
, gboolean current
, gboolean hotkey
)
203 if (!menubar
->is_active
)
204 tty_setcolor (MENU_INACTIVE_COLOR
);
206 tty_setcolor (hotkey
? MENU_HOTSEL_COLOR
: MENU_SELECTED_COLOR
);
208 tty_setcolor (hotkey
? MENU_HOT_COLOR
: MENU_ENTRY_COLOR
);
211 /* --------------------------------------------------------------------------------------------- */
214 menubar_draw (WMenuBar
* menubar
)
216 Widget
*w
= WIDGET (menubar
);
219 /* First draw the complete menubar */
220 tty_setcolor (menubar
->is_active
? MENU_ENTRY_COLOR
: MENU_INACTIVE_COLOR
);
221 tty_draw_hline (w
->y
, w
->x
, ' ', w
->cols
);
223 /* Now each one of the entries */
224 for (i
= menubar
->menu
; i
!= NULL
; i
= g_list_next (i
))
226 menu_t
*menu
= MENU (i
->data
);
227 gboolean is_selected
= (menubar
->selected
== (gsize
) g_list_position (menubar
->menu
, i
));
229 menubar_set_color (menubar
, is_selected
, FALSE
);
230 widget_move (w
, 0, menu
->start_x
);
232 tty_print_char (' ');
233 tty_print_string (menu
->text
.start
);
235 if (menu
->text
.hotkey
!= NULL
)
237 menubar_set_color (menubar
, is_selected
, TRUE
);
238 tty_print_string (menu
->text
.hotkey
);
239 menubar_set_color (menubar
, is_selected
, FALSE
);
242 if (menu
->text
.end
!= NULL
)
243 tty_print_string (menu
->text
.end
);
245 tty_print_char (' ');
248 if (menubar
->is_dropped
)
249 menubar_draw_drop (menubar
);
251 widget_move (w
, 0, MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
))->start_x
);
254 /* --------------------------------------------------------------------------------------------- */
257 menubar_remove (WMenuBar
* menubar
)
261 if (!menubar
->is_dropped
)
264 /* HACK: before refresh the dialog, change the current widget to keep the order
265 of overlapped widgets. This is useful in multi-window editor.
266 In general, menubar should be a special object, not an ordinary widget
267 in the current dialog. */
268 h
= WIDGET (menubar
)->owner
;
269 h
->current
= g_list_find (h
->widgets
, dlg_find_by_id (h
, menubar
->previous_widget
));
271 menubar
->is_dropped
= FALSE
;
273 menubar
->is_dropped
= TRUE
;
275 /* restore current widget */
276 h
->current
= g_list_find (h
->widgets
, menubar
);
279 /* --------------------------------------------------------------------------------------------- */
282 menubar_left (WMenuBar
* menubar
)
284 menubar_remove (menubar
);
285 if (menubar
->selected
== 0)
286 menubar
->selected
= g_list_length (menubar
->menu
) - 1;
289 menubar_draw (menubar
);
292 /* --------------------------------------------------------------------------------------------- */
295 menubar_right (WMenuBar
* menubar
)
297 menubar_remove (menubar
);
298 menubar
->selected
= (menubar
->selected
+ 1) % g_list_length (menubar
->menu
);
299 menubar_draw (menubar
);
302 /* --------------------------------------------------------------------------------------------- */
305 menubar_finish (WMenuBar
* menubar
)
307 Widget
*w
= WIDGET (menubar
);
309 menubar
->is_dropped
= FALSE
;
310 menubar
->is_active
= FALSE
;
312 widget_want_hotkey (w
, 0);
314 dlg_select_by_id (w
->owner
, menubar
->previous_widget
);
318 /* --------------------------------------------------------------------------------------------- */
321 menubar_drop (WMenuBar
* menubar
, unsigned int selected
)
323 menubar
->is_dropped
= TRUE
;
324 menubar
->selected
= selected
;
325 menubar_draw (menubar
);
328 /* --------------------------------------------------------------------------------------------- */
331 menubar_execute (WMenuBar
* menubar
)
333 const menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
334 const menu_entry_t
*entry
= MENUENTRY (g_list_nth_data (menu
->entries
, menu
->selected
));
336 if ((entry
!= NULL
) && (entry
->command
!= CK_IgnoreKey
))
338 Widget
*w
= WIDGET (menubar
);
340 mc_global
.widget
.is_right
= (menubar
->selected
!= 0);
341 menubar_finish (menubar
);
342 send_message (w
->owner
, w
, MSG_ACTION
, entry
->command
, NULL
);
347 /* --------------------------------------------------------------------------------------------- */
350 menubar_down (WMenuBar
* menubar
)
352 menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
353 const unsigned int len
= g_list_length (menu
->entries
);
356 menubar_paint_idx (menubar
, menu
->selected
, MENU_ENTRY_COLOR
);
360 menu
->selected
= (menu
->selected
+ 1) % len
;
361 entry
= MENUENTRY (g_list_nth_data (menu
->entries
, menu
->selected
));
363 while ((entry
== NULL
) || (entry
->command
== CK_IgnoreKey
));
365 menubar_paint_idx (menubar
, menu
->selected
, MENU_SELECTED_COLOR
);
368 /* --------------------------------------------------------------------------------------------- */
371 menubar_up (WMenuBar
* menubar
)
373 menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
374 const unsigned int len
= g_list_length (menu
->entries
);
377 menubar_paint_idx (menubar
, menu
->selected
, MENU_ENTRY_COLOR
);
381 if (menu
->selected
== 0)
382 menu
->selected
= len
- 1;
385 entry
= MENUENTRY (g_list_nth_data (menu
->entries
, menu
->selected
));
387 while ((entry
== NULL
) || (entry
->command
== CK_IgnoreKey
));
389 menubar_paint_idx (menubar
, menu
->selected
, MENU_SELECTED_COLOR
);
392 /* --------------------------------------------------------------------------------------------- */
395 menubar_first (WMenuBar
* menubar
)
397 menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
400 if (menu
->selected
== 0)
403 menubar_paint_idx (menubar
, menu
->selected
, MENU_ENTRY_COLOR
);
409 entry
= MENUENTRY (g_list_nth_data (menu
->entries
, menu
->selected
));
411 if ((entry
== NULL
) || (entry
->command
== CK_IgnoreKey
))
417 menubar_paint_idx (menubar
, menu
->selected
, MENU_SELECTED_COLOR
);
420 /* --------------------------------------------------------------------------------------------- */
423 menubar_last (WMenuBar
* menubar
)
425 menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
426 const unsigned int len
= g_list_length (menu
->entries
);
429 if (menu
->selected
== len
- 1)
432 menubar_paint_idx (menubar
, menu
->selected
, MENU_ENTRY_COLOR
);
434 menu
->selected
= len
;
439 entry
= MENUENTRY (g_list_nth_data (menu
->entries
, menu
->selected
));
441 while ((entry
== NULL
) || (entry
->command
== CK_IgnoreKey
));
443 menubar_paint_idx (menubar
, menu
->selected
, MENU_SELECTED_COLOR
);
446 /* --------------------------------------------------------------------------------------------- */
449 menubar_handle_key (WMenuBar
* menubar
, int key
)
453 key
= g_ascii_tolower (key
);
455 if (is_abort_char (key
))
457 menubar_finish (menubar
);
461 /* menubar help or menubar navigation */
466 ev_help_t event_data
= { NULL
, NULL
};
468 if (menubar
->is_dropped
)
470 MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
))->help_node
;
472 event_data
.node
= "[Menu Bar]";
474 mc_event_raise (MCEVENT_GROUP_CORE
, "help", &event_data
);
475 menubar_draw (menubar
);
480 menubar_left (menubar
);
485 menubar_right (menubar
);
489 if (!menubar
->is_dropped
)
493 /* drop menu by hotkey */
494 for (i
= menubar
->menu
; i
!= NULL
; i
= g_list_next (i
))
496 menu_t
*menu
= MENU (i
->data
);
498 if ((menu
->text
.hotkey
!= NULL
) && (key
== g_ascii_tolower (menu
->text
.hotkey
[0])))
500 menubar_drop (menubar
, g_list_position (menubar
->menu
, i
));
505 /* drop menu by Enter or Dowwn key */
506 if (key
== KEY_ENTER
|| key
== XCTRL ('n') || key
== KEY_DOWN
|| key
== '\n')
507 menubar_drop (menubar
, menubar
->selected
);
513 menu_t
*menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
516 /* execute menu command by hotkey */
517 for (i
= menu
->entries
; i
!= NULL
; i
= g_list_next (i
))
519 const menu_entry_t
*entry
= MENUENTRY (i
->data
);
521 if ((entry
!= NULL
) && (entry
->command
!= CK_IgnoreKey
)
522 && (entry
->text
.hotkey
!= NULL
) && (key
== g_ascii_tolower (entry
->text
.hotkey
[0])))
524 menu
->selected
= g_list_position (menu
->entries
, i
);
525 menubar_execute (menubar
);
530 /* menu execute by Enter or menu navigation */
535 menubar_execute (menubar
);
540 menubar_first (menubar
);
545 menubar_last (menubar
);
550 menubar_down (menubar
);
555 menubar_up (menubar
);
563 /* --------------------------------------------------------------------------------------------- */
566 menubar_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
568 WMenuBar
*menubar
= MENUBAR (w
);
572 /* We do not want the focus unless we have been activated */
574 if (!menubar
->is_active
)
575 return MSG_NOT_HANDLED
;
577 /* Trick to get all the mouse events */
580 /* Trick to get all of the hotkeys */
581 widget_want_hotkey (w
, 1);
582 menubar_draw (menubar
);
585 /* We don't want the buttonbar to activate while using the menubar */
588 if (menubar
->is_active
)
590 menubar_handle_key (menubar
, parm
);
593 return MSG_NOT_HANDLED
;
596 /* Put the cursor in a suitable place */
597 return MSG_NOT_HANDLED
;
600 return menubar
->is_active
? MSG_NOT_HANDLED
: MSG_HANDLED
;
603 if (menubar
->is_visible
)
605 menubar_draw (menubar
);
611 /* try show menu after screen resize */
612 send_message (w
, sender
, MSG_FOCUS
, 0, data
);
617 menubar_set_menu (menubar
, NULL
);
621 return widget_default_callback (w
, sender
, msg
, parm
, data
);
625 /* --------------------------------------------------------------------------------------------- */
628 menubar_event (Gpm_Event
* event
, void *data
)
630 WMenuBar
*menubar
= MENUBAR (data
);
631 Widget
*w
= WIDGET (data
);
632 gboolean was_active
= TRUE
;
633 int left_x
, right_x
, bottom_y
;
637 if (!mouse_global_in_widget (event
, w
))
638 return MOU_UNHANDLED
;
640 /* ignore unsupported events */
641 if ((event
->type
& (GPM_UP
| GPM_DOWN
| GPM_DRAG
)) == 0)
644 /* ignore wheel events if menu is inactive */
645 if (!menubar
->is_active
&& ((event
->buttons
& (GPM_B_MIDDLE
| GPM_B_UP
| GPM_B_DOWN
)) != 0))
648 local
= mouse_get_local (event
, w
);
650 if (local
.y
== 1 && (local
.type
& GPM_UP
) != 0)
653 if (!menubar
->is_dropped
)
655 menubar
->previous_widget
= dlg_get_current_widget_id (w
->owner
);
656 menubar
->is_active
= TRUE
;
657 menubar
->is_dropped
= TRUE
;
661 /* Mouse operations on the menubar */
662 if (local
.y
== 1 || !was_active
)
664 /* wheel events on menubar */
665 if ((local
.buttons
& GPM_B_UP
) != 0)
666 menubar_left (menubar
);
667 else if ((local
.buttons
& GPM_B_DOWN
) != 0)
668 menubar_right (menubar
);
671 const unsigned int len
= g_list_length (menubar
->menu
);
672 unsigned int new_selection
= 0;
674 while ((new_selection
< len
)
675 && (local
.x
> MENU (g_list_nth_data (menubar
->menu
, new_selection
))->start_x
))
678 if (new_selection
!= 0) /* Don't set the invalid value -1 */
683 menubar
->selected
= new_selection
;
684 dlg_select_widget (menubar
);
688 menubar_remove (menubar
);
689 menubar
->selected
= new_selection
;
691 menubar_draw (menubar
);
696 if (!menubar
->is_dropped
|| (local
.y
< 2))
699 /* middle click -- everywhere */
700 if (((local
.buttons
& GPM_B_MIDDLE
) != 0) && ((local
.type
& GPM_DOWN
) != 0))
702 menubar_execute (menubar
);
706 /* the mouse operation is on the menus or it is not */
707 menu
= MENU (g_list_nth_data (menubar
->menu
, menubar
->selected
));
708 left_x
= menu
->start_x
;
709 right_x
= left_x
+ menu
->max_entry_len
+ 3;
710 if (right_x
> w
->cols
)
712 left_x
= w
->cols
- menu
->max_entry_len
- 3;
716 bottom_y
= g_list_length (menu
->entries
) + 3;
718 if ((local
.x
>= left_x
) && (local
.x
<= right_x
) && (local
.y
<= bottom_y
))
720 int pos
= local
.y
- 3;
721 const menu_entry_t
*entry
= MENUENTRY (g_list_nth_data (menu
->entries
, pos
));
724 if ((local
.buttons
& GPM_B_UP
) != 0 && (local
.type
& GPM_DOWN
) != 0)
726 menubar_up (menubar
);
729 if ((local
.buttons
& GPM_B_DOWN
) != 0 && (local
.type
& GPM_DOWN
) != 0)
731 menubar_down (menubar
);
735 /* ignore events above and below dropped down menu */
736 if ((pos
< 0) || (pos
>= bottom_y
- 3))
739 if ((entry
!= NULL
) && (entry
->command
!= CK_IgnoreKey
))
741 menubar_paint_idx (menubar
, menu
->selected
, MENU_ENTRY_COLOR
);
742 menu
->selected
= pos
;
743 menubar_paint_idx (menubar
, menu
->selected
, MENU_SELECTED_COLOR
);
745 if ((event
->type
& GPM_UP
) != 0)
746 menubar_execute (menubar
);
749 else if (((local
.type
& GPM_DOWN
) != 0) && ((local
.buttons
& (GPM_B_UP
| GPM_B_DOWN
)) == 0))
751 /* use click not wheel to close menu */
752 menubar_finish (menubar
);
758 /* --------------------------------------------------------------------------------------------- */
759 /*** public functions ****************************************************************************/
760 /* --------------------------------------------------------------------------------------------- */
763 menu_entry_create (const char *name
, unsigned long command
)
767 entry
= g_new (menu_entry_t
, 1);
768 entry
->first_letter
= ' ';
769 entry
->text
= parse_hotkey (name
);
770 entry
->command
= command
;
771 entry
->shortcut
= NULL
;
776 /* --------------------------------------------------------------------------------------------- */
779 menu_entry_free (menu_entry_t
* entry
)
783 release_hotkey (entry
->text
);
784 g_free (entry
->shortcut
);
789 /* --------------------------------------------------------------------------------------------- */
792 create_menu (const char *name
, GList
* entries
, const char *help_node
)
796 menu
= g_new (menu_t
, 1);
798 menu
->text
= parse_hotkey (name
);
799 menu
->entries
= entries
;
800 menu
->max_entry_len
= 1;
801 menu
->max_hotkey_len
= 0;
803 menu
->help_node
= g_strdup (help_node
);
808 /* --------------------------------------------------------------------------------------------- */
811 menu_set_name (menu_t
* menu
, const char *name
)
813 release_hotkey (menu
->text
);
814 menu
->text
= parse_hotkey (name
);
817 /* --------------------------------------------------------------------------------------------- */
820 destroy_menu (menu_t
* menu
)
822 release_hotkey (menu
->text
);
823 g_list_foreach (menu
->entries
, (GFunc
) menu_entry_free
, NULL
);
824 g_list_free (menu
->entries
);
825 g_free (menu
->help_node
);
829 /* --------------------------------------------------------------------------------------------- */
832 menubar_new (int y
, int x
, int cols
, GList
* menu
)
837 menubar
= g_new0 (WMenuBar
, 1);
838 w
= WIDGET (menubar
);
839 init_widget (w
, y
, x
, 1, cols
, menubar_callback
, menubar_event
);
841 menubar
->is_visible
= TRUE
; /* by default */
842 widget_want_cursor (w
, FALSE
);
843 menubar_set_menu (menubar
, menu
);
848 /* --------------------------------------------------------------------------------------------- */
851 menubar_set_menu (WMenuBar
* menubar
, GList
* menu
)
853 /* delete previous menu */
854 if (menubar
->menu
!= NULL
)
856 g_list_foreach (menubar
->menu
, (GFunc
) destroy_menu
, NULL
);
857 g_list_free (menubar
->menu
);
860 menubar
->is_active
= FALSE
;
861 menubar
->is_dropped
= FALSE
;
862 menubar
->menu
= menu
;
863 menubar
->selected
= 0;
864 menubar_arrange (menubar
);
867 /* --------------------------------------------------------------------------------------------- */
870 menubar_add_menu (WMenuBar
* menubar
, menu_t
* menu
)
874 menu_arrange (menu
, WIDGET (menubar
)->owner
->get_shortcut
);
875 menubar
->menu
= g_list_append (menubar
->menu
, menu
);
878 menubar_arrange (menubar
);
881 /* --------------------------------------------------------------------------------------------- */
883 * Properly space menubar items. Should be called when menubar is created
884 * and also when widget width is changed (i.e. upon xterm resize).
888 menubar_arrange (WMenuBar
* menubar
)
894 if (menubar
->menu
== NULL
)
897 gap
= WIDGET (menubar
)->cols
- 2;
899 /* First, calculate gap between items... */
900 for (i
= menubar
->menu
; i
!= NULL
; i
= g_list_next (i
))
902 menu_t
*menu
= MENU (i
->data
);
904 /* preserve length here, to be used below */
905 menu
->start_x
= hotkey_width (menu
->text
) + 2;
906 gap
-= menu
->start_x
;
909 if (g_list_next (menubar
->menu
) == NULL
)
912 gap
/= (g_list_length (menubar
->menu
) - 1);
916 /* We are out of luck - window is too narrow... */
922 /* ...and now fix start positions of menubar items */
923 for (i
= menubar
->menu
; i
!= NULL
; i
= g_list_next (i
))
925 menu_t
*menu
= MENU (i
->data
);
926 int len
= menu
->start_x
;
928 menu
->start_x
= start_x
;
929 start_x
+= len
+ gap
;
933 /* --------------------------------------------------------------------------------------------- */
934 /** Find MenuBar widget in the dialog */
937 find_menubar (const WDialog
* h
)
939 return MENUBAR (find_widget_type (h
, menubar_callback
));
942 /* --------------------------------------------------------------------------------------------- */