]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Menubar_pimpl.C
d03eabc44510451c6b04b3f9e0bef717596d9c7f
[lyx.git] / src / frontends / xforms / Menubar_pimpl.C
1 /* This file is part of
2 * ======================================================
3
4 *           LyX, The Document Processor
5 *        
6 *           Copyright (C) 1999 The LyX Team.
7 *
8 *======================================================*/
9
10 #ifdef __GNUG__
11 #pragma implementation
12 #endif
13
14 #include <config.h>
15
16 #include <algorithm>
17 #include "support/lstrings.h"
18 #include "support/LAssert.h"
19 #include "debug.h"
20 #include "LyXAction.h"
21 #include "lyxfunc.h"
22 #include "kbmap.h"
23 #include "buffer.h"
24 #include "LyXView.h"
25 #include "MenuBackend.h"
26 #include "Menubar_pimpl.h"
27
28 using std::endl;
29 using std::vector;
30 using std::max;
31 using std::min;
32
33 typedef vector<int>::size_type size_type;
34
35 extern kb_keymap * toplevel_keymap;
36 extern LyXAction lyxaction;
37
38 // Some constants
39 static const int MENU_LABEL_SIZE = FL_NORMAL_SIZE;
40 static const int mheight = 30;
41 static const int mbheight= 22;
42 // where to place the menubar?
43 static const int yloc = (mheight - mbheight)/2; //air + bw;
44 static const int mbadd = 20; // menu button add (to width)
45 // Some space between buttons on the menubar 
46 static const int air = 2;
47 static char const * menu_tabstop = "aa";
48 static char const * default_tabstop = "aaaaaaaa";
49 // We do not want to mix position values in a menu (like the index of
50 // a submenu) with the action numbers which convey actual information.
51 // Therefore we offset all the action values by an arbitrary large
52 // constant. 
53 static const int action_offset = 1000;
54
55
56 //Defined later, used in makeMenubar().
57 extern "C"
58 void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button);
59
60 // This is used a few times below.
61 static inline
62 int string_width(string const & str) 
63 {
64         return fl_get_string_widthTAB(FL_NORMAL_STYLE, MENU_LABEL_SIZE,
65                                       str.c_str(),
66                                       static_cast<int>(str.length()));
67 }
68
69
70 Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mb) 
71         : owner_(view), menubackend_(&mb), current_group_(0)
72 {
73         for (MenuBackend::const_iterator menu = menubackend_->begin();
74             menu != menubackend_->end() ; ++menu) {
75                 if (menu->menubar()) {
76                         FL_OBJECT * group = fl_bgn_group();
77                         makeMenubar(*menu);
78                         fl_end_group();
79                         fl_hide_object(group);
80                         lyxerr[Debug::GUI]
81                                 << "Menubar::Pimpl::Pimpl: "
82                                 << "creating and hiding group " << group
83                                 << " for menubar " << menu->name() << endl;
84                         menubarmap_[menu->name()] = group;
85                 }
86         }
87 }
88
89
90 Menubar::Pimpl::~Pimpl() 
91 {
92         // Should we do something here?
93 }
94
95
96 void Menubar::Pimpl::makeMenubar(Menu const &menu)
97 {
98         FL_FORM * form = owner_->getForm(); 
99         int moffset = 0;
100
101         // Create menu frame if there is non yet.
102         FL_OBJECT * frame = fl_add_frame(FL_UP_FRAME, 0, 0,
103                                          form->w, mheight, "");
104         fl_set_object_resize(frame, FL_RESIZE_ALL);
105         fl_set_object_gravity(frame, NorthWestGravity, 
106                               NorthEastGravity);
107
108         for (Menu::const_iterator i = menu.begin(); 
109              i != menu.end(); ++i) {
110                 FL_OBJECT * obj;
111                 if (i->kind() != MenuItem::Submenu) {
112                         lyxerr << "ERROR: Menubar::Pimpl::createMenubar:"
113                                 " only submenus can appear in a menubar";
114                         break;
115                 }
116                 string label = i->label();
117                 string shortcut = "#" + i->shortcut();
118                 int width = string_width(label);
119                 obj = fl_add_button(FL_MENU_BUTTON,
120                                     air + moffset, yloc,
121                                     width + mbadd,
122                                     mbheight, 
123                                     label.c_str());
124                 fl_set_object_boxtype(obj, FL_FLAT_BOX);
125                 fl_set_object_color(obj, FL_MCOL, FL_MCOL);
126                 fl_set_object_lsize(obj, MENU_LABEL_SIZE);
127                 fl_set_object_lstyle(obj, FL_NORMAL_STYLE);
128                 fl_set_object_resize(obj, FL_RESIZE_ALL);
129                 fl_set_object_gravity(obj, NorthWestGravity, 
130                                       NorthWestGravity);
131                 moffset += obj->w + air;
132                 fl_set_object_shortcut(obj, shortcut.c_str(), 1);
133                 fl_set_object_callback(obj, C_Menubar_Pimpl_MenuCallback, 1);
134
135                 ItemInfo * iteminfo = new ItemInfo(this, 
136                                                    new MenuItem(*i), obj);
137                 buttonlist_.push_back(iteminfo);
138                 obj->u_vdata = iteminfo;
139         }
140
141 }
142
143 void Menubar::Pimpl::set(string const & menu_name) 
144 {
145         lyxerr[Debug::GUI] << "Entering Menubar::Pimpl::set " 
146                            << "for menu `" << menu_name << "'" << endl;
147
148         if (menu_name != current_menu_name_) {
149                 MenubarMap::iterator mbit = menubarmap_.find(menu_name);
150
151                 if (mbit == menubarmap_.end()) {
152                         lyxerr << "ERROR:set: Unknown menu `" << menu_name
153                                << "'" << endl;
154                         return;
155                 }
156
157                 if (current_group_) {
158                         lyxerr[Debug::GUI] << "  hiding group "
159                                            << current_group_ << endl;
160                         fl_hide_object(current_group_);
161                 }
162                 
163                 lyxerr[Debug::GUI] << "  showing group "
164                                    << mbit->second << endl;
165                 fl_show_object(mbit->second);
166                 current_menu_name_ = menu_name;
167                 current_group_ = mbit->second;
168                 lyxerr[Debug::GUI] << "Menubar::Pimpl::set: Menubar set."
169                                    << endl;
170         }
171         else
172                 lyxerr [Debug::GUI] << "Menubar::Pimpl::set: Nothing to do."
173                                     << endl;
174
175
176 void Menubar::Pimpl::openByName(string const & name)
177 {
178         if (menubackend_->getMenu(current_menu_name_).hasSubmenu(name)) {
179                 for (ButtonList::const_iterator cit = buttonlist_.begin();
180                      cit != buttonlist_.end(); ++cit) {
181                         if ((*cit)->item_->submenu() == name) {
182                                 MenuCallback((*cit)->obj_, 1);
183                                 return;
184                         }
185                 }
186         }
187         lyxerr << "Menubar::Pimpl::openByName: menu "
188                << name << " not found" << endl;
189 }
190
191
192 static inline
193 string const limit_string_length(string const & str)
194 {
195         string::size_type const max_item_length = 45;
196
197         if (str.size() > max_item_length)
198                 return str.substr(0, max_item_length - 3) + "...";
199         else
200                 return str;
201 }
202
203
204 static
205 int get_new_submenu(vector<int> & smn, Window win)
206 {
207         static size_type max_number_of_menus = 32;
208         if (smn.size() >= max_number_of_menus)
209                 max_number_of_menus =
210                     fl_setpup_maxpup(static_cast<int>(2*smn.size()));
211         int menu = fl_newpup(win);
212         smn.push_back(menu);
213         return menu;
214 }
215
216
217 size_type const max_number_of_items = 25;
218
219 static inline
220 string const fixlabel(string const & str)
221 {
222 #if FL_REVISION < 89
223         return subst(str, '%', '?');
224 #else
225         return subst(str, "%", "%%");
226 #endif
227 }
228
229
230 void add_toc2(int menu, string const & extra_label,
231               vector<int> & smn, Window win,
232               vector<Buffer::TocItem> const & toc_list,
233               size_type from, size_type to, int depth)
234 {
235         if (to - from <= max_number_of_items) {
236                 for (size_type i = from; i < to; ++i) {
237                         int const action = lyxaction.
238                                 getPseudoAction(LFUN_GOTO_PARAGRAPH,
239                                                 tostr(toc_list[i].par->id()));
240                         string label(4 * max(0, toc_list[i].depth - depth),' ');
241                         label += fixlabel(toc_list[i].str);
242                         label = limit_string_length(label);
243                         label += "%x" + tostr(action + action_offset);
244                         if (i == to - 1 && depth == 0)
245                                 label += extra_label;
246                         fl_addtopup(menu, label.c_str());
247                 }
248         } else {
249                 size_type pos = from;
250                 size_type count = 0;
251                 while (pos < to) {
252                         ++count;
253                         if (count > max_number_of_items) {
254                                 int menu2 = get_new_submenu(smn, win);
255                                 add_toc2(menu2, extra_label, smn, win,
256                                          toc_list, pos, to, depth);
257                                 string label = _("More");
258                                 label += "...%m";
259                                 if (depth == 0)
260                                         label += extra_label;
261                                 fl_addtopup(menu, label.c_str(), menu2);
262                                 break;
263                         }
264                         size_type new_pos = pos+1;
265                         while (new_pos < to &&
266                                toc_list[new_pos].depth > depth)
267                                 ++new_pos;
268
269                         int const action = lyxaction.
270                                 getPseudoAction(LFUN_GOTO_PARAGRAPH,
271                                                 tostr(toc_list[pos].par->id()));
272                         string label(4 * max(0, toc_list[pos].depth - depth), ' ');
273                         label += fixlabel(toc_list[pos].str);
274                         label = limit_string_length(label);
275                         if (new_pos == to && depth == 0)
276                                 label += extra_label;
277
278                         if (new_pos == pos + 1) {
279                                 label += "%x" + tostr(action + action_offset);
280                                 fl_addtopup(menu, label.c_str());
281                         } else {
282                                 int menu2 = get_new_submenu(smn, win);
283                                 add_toc2(menu2, extra_label, smn, win,
284                                          toc_list, pos, new_pos, depth+1);
285                                 label += "%m";
286                                 fl_addtopup(menu, label.c_str(), menu2);
287                         }
288                         pos = new_pos;
289                 }
290         }
291 }
292
293
294 void Menubar::Pimpl::add_toc(int menu, string const & extra_label,
295                              vector<int> & smn, Window win)
296 {
297         //xgettext:no-c-format
298         static char const * MenuNames[3] = { N_("List of Figures%m"),
299         //xgettext:no-c-format
300                                              N_("List of Tables%m"),
301         //xgettext:no-c-format
302                                              N_("List of Algorithms%m") };
303
304         vector<vector<Buffer::TocItem> > toc_list =
305                 owner_->buffer()->getTocList();
306
307         // Handle LOF/LOT/LOA
308         int max_nonempty = 0;
309         for (int i = 1; i <= 3; ++i)
310                 if (!toc_list[i].empty())
311                         max_nonempty = i;
312
313         for (int j = 1; j <= 3; ++j)
314                 if (!toc_list[j].empty()) {
315                         int menu2 = get_new_submenu(smn, win);
316                         for (size_type i = 0; i < toc_list[j].size(); ++i) {
317                                 if (i > max_number_of_items) {
318                                         fl_addtopup(menu2, ". . .%d");
319                                         break;
320                                 }
321                                 int const action = lyxaction.
322                                         getPseudoAction(LFUN_GOTO_PARAGRAPH,
323                                                         tostr(toc_list[j][i].par->id()));
324                                 string label = fixlabel(toc_list[j][i].str);
325                                 label = limit_string_length(label);
326                                 label += "%x" + tostr(action + action_offset);
327                                 fl_addtopup(menu2, label.c_str());
328                         }
329                         if (j == max_nonempty) {
330                                 string label = _(MenuNames[j - 1]);
331                                 label += "%l";
332                                 fl_addtopup(menu, label.c_str(), menu2);
333                         } else
334                                 fl_addtopup(menu, _(MenuNames[j - 1]), menu2);
335                 }
336
337         // Handle normal TOC
338         if (max_nonempty == 0 && toc_list[0].empty()) {
339                 fl_addtopup(menu, (_("No Table of Contents%i")
340                                    + extra_label).c_str());
341                 return;
342         }
343
344         add_toc2(menu, extra_label, smn, win,
345                  toc_list[0], 0, toc_list[0].size(), 0);
346
347 }
348
349 void add_references2(int menu, vector<int> & smn, Window win,
350                      vector<string> const & label_list, string const & type)
351 {
352         size_type const max_number_of_items = 25;
353         size_type const max_number_of_items2 = 20;
354         string::size_type const max_item_length = 40;
355         string::size_type const max_item_length2 = 20;
356
357         if (label_list.size() <= max_number_of_items)
358                 for (size_type i = 0; i < label_list.size(); ++i) {
359                         int const action = (type == "goto")
360                                 ? lyxaction.getPseudoAction(LFUN_REF_GOTO, 
361                                                             label_list[i])
362                                 : lyxaction.getPseudoAction(LFUN_REF_INSERT,
363                                                             type + "|++||++|"
364                                                             + label_list[i]);
365                         string label = label_list[i];
366                         if (label.size() > max_item_length)
367                                 label = label.substr(0, max_item_length-1) + "$";
368                         label += "%x" + tostr(action + action_offset);
369                         fl_addtopup(menu, label.c_str());
370                 }
371         else {
372                 size_type count = 0;
373                 for (size_type i = 0; i < label_list.size();
374                      i += max_number_of_items2) {
375                         ++count;
376                         if (count > max_number_of_items) {
377                                 fl_addtopup(menu, ". . .%d");
378                                 break;
379                         }
380                         size_type j = min(label_list.size(),
381                                           i+max_number_of_items2);
382
383                         string label;
384                         label += (label_list[i].size() > max_item_length2)
385                                 ? label_list[i].substr(0, max_item_length2-1) + "$"
386                                 : label_list[i];
387                         label += "..";
388                         label += (label_list[j-1].size() > max_item_length2)
389                                 ? label_list[j-1].substr(0, max_item_length2-1) + "$"
390                                 : label += label_list[j-1];
391
392                         int menu2 = get_new_submenu(smn, win);
393                         for (size_type k = i;  k < j; ++k) {
394                                 int const action = (type == "goto")
395                                         ? lyxaction.getPseudoAction(LFUN_REF_GOTO, 
396                                                                     label_list[k])
397                                         : lyxaction.getPseudoAction(LFUN_REF_INSERT,
398                                                                     type + "|++||++|"
399                                                                     + label_list[k]);
400                                 string label2 = label_list[k];
401                                 if (label2.size() > max_item_length)
402                                         label2 = label2.substr(0, max_item_length-1) + "$";
403                                 label2 += "%x" + tostr(action + action_offset);
404                                 fl_addtopup(menu2, label2.c_str());
405                         }
406                         label += "%m";
407                         fl_addtopup(menu, label.c_str(), menu2);
408                 }
409         }
410 }
411
412
413 void Menubar::Pimpl::add_references(int menu, string const & extra_label,
414                                     vector<int> & smn, Window win)
415 {
416         //xgettext:no-c-format
417         static char const * MenuNames[6] = { N_("Insert Reference%m"),
418         //xgettext:no-c-format
419                                              N_("Insert Page Number%m"),
420         //xgettext:no-c-format
421                                              N_("Insert vref%m"),
422         //xgettext:no-c-format
423                                              N_("Insert vpageref%m"),
424         //xgettext:no-c-format
425                                              N_("Insert Pretty Ref%m"),
426         //xgettext:no-c-format
427                                              N_("Goto Reference%m") };
428
429         int const EMPTY = 1;
430         int const SGML = 2;
431         int const READONLY = 4;
432
433         static int MenuFlags[6] = {
434                 EMPTY | READONLY,
435                 EMPTY | READONLY,
436                 EMPTY | READONLY | SGML,
437                 EMPTY | READONLY | SGML,
438                 EMPTY | READONLY | SGML,
439                 EMPTY };
440
441         static string const MenuTypes[6] = {
442                 "ref", "pageref", "vref", "vpageref", "prettyref", "goto" };
443
444         vector<string> label_list = owner_->buffer()->getLabelList();
445
446         int flag = 0;
447         if (label_list.empty())
448                 flag += EMPTY;
449         if (owner_->buffer()->isSGML())
450                 flag += SGML;
451         if (owner_->buffer()->isReadonly())
452                 flag += READONLY;
453
454         int max_nonempty = -1;
455         for (int i = 0; i < 6; ++i)
456                 if ((MenuFlags[i] & flag) == 0)
457                         max_nonempty = i;
458
459         for (int i = 0; i < 6; ++i) {
460                 if ((MenuFlags[i] & flag) == 0) {
461                         string label = _(MenuNames[i]);
462                         if (i == max_nonempty)
463                                 label += extra_label;
464                         int menu2 = get_new_submenu(smn, win);
465                         add_references2(menu2, smn, win, label_list,
466                                         MenuTypes[i]);
467                         fl_addtopup(menu, label.c_str(), menu2);
468                 }
469         }
470 }
471
472
473 int Menubar::Pimpl::create_submenu(Window win, LyXView * view, 
474                                    string const & menu_name, 
475                                    vector<int> & smn) 
476 {
477         if (!menubackend_->hasMenu(menu_name)){ 
478                 lyxerr << "ERROR:create_submenu: Unknown menu `" 
479                        << menu_name << "'" << endl;
480                 return -1;
481         }
482         Menu md = Menu();
483         menubackend_->getMenu(menu_name).expand(md, owner_->buffer());
484
485         int menu = get_new_submenu(smn, win);
486         fl_setpup_softedge(menu, true);
487         fl_setpup_bw(menu, -1);
488         lyxerr[Debug::GUI] << "Adding menu " << menu 
489                            << " in deletion list" << endl;
490
491         // Compute the size of the largest label (because xforms is
492         // not able to support shortcuts correctly...)
493         int max_width = 0;
494         string widest_label;
495         Menu::const_iterator end = md.end();
496         for (Menu::const_iterator i = md.begin(); i != end; ++i) {
497                 MenuItem const & item = (*i);
498                 if (item.kind() == MenuItem::Command) {
499                         string label = item.label() + '\t';
500                         int width = string_width(label);
501                         if (width > max_width) {
502                                 max_width = width;
503                                 widest_label = label;
504                         }
505                 }
506         }
507         lyxerr[Debug::GUI] << "max_width=" << max_width 
508                            << ", widest_label=`" << widest_label 
509                            << "'" << endl;
510
511         // Compute where to put separators
512         vector<string> extra_labels(md.size());
513         vector<string>::iterator it = extra_labels.begin();
514         vector<string>::iterator last = it;
515         for (Menu::const_iterator i = md.begin(); i != end; ++i, ++it)
516                 if (i->kind() == MenuItem::Separator)
517                         *last = "%l";
518                 else if (!i->optional() ||
519                          !(view->getLyXFunc()->getStatus(i->action()) & LyXFunc::Disabled))
520                         last = it;
521
522         it = extra_labels.begin();
523         for (Menu::const_iterator i = md.begin(); i != end; ++i, ++it) {
524                 MenuItem const & item = (*i);
525                 string & extra_label = *it;
526
527                 switch (item.kind()) {
528                 case MenuItem::Command: {
529                         LyXFunc::func_status flag = 
530                                 view->getLyXFunc()->getStatus(item.action()); 
531
532                         // handle optional entries.
533                         if (item.optional() && (flag & LyXFunc::Disabled)) {
534                                 lyxerr[Debug::GUI] 
535                                         << "Skipping optional item " 
536                                         << item.label() << endl; 
537                                 break;
538                         }
539
540                         // Get the keys bound to this action, but keep only the
541                         // first one later
542                         string const accel = toplevel_keymap->findbinding(item.action());
543                         // Build the menu label from all the info
544                         string label = item.label();
545
546                         if (!accel.empty()) {
547                                 // Try to be clever and add  just enough
548                                 // tabs to align shortcuts.
549                                 do 
550                                         label += '\t';
551                                 while (string_width(label) < max_width + 5);
552                                 label += accel.substr(1,accel.find(']') - 1);
553                         }
554                         label += "%x" + tostr(item.action() + action_offset)
555                                 + extra_label;
556                         
557                         // Modify the entry using the function status
558                         string pupmode;
559                         if (flag & (LyXFunc::Disabled | LyXFunc::Unknown))
560                                 pupmode += "%i";
561                         if (flag & LyXFunc::ToggleOn)
562                                 pupmode += "%B";
563                         if (flag & LyXFunc::ToggleOff)
564                                 pupmode += "%b";
565                         label += pupmode;
566
567                         // Finally the menu shortcut
568                         string shortcut = item.shortcut();
569
570                         if (!shortcut.empty()) {
571                                 shortcut += lowercase(shortcut[0]);
572                                 label += "%h";
573                                 fl_addtopup(menu, label.c_str(), 
574                                             shortcut.c_str());
575                         } else
576                                 fl_addtopup(menu, label.c_str());
577                         
578                         lyxerr[Debug::GUI] << "Command: \""  
579                                            << lyxaction.getActionName(item.action())
580                                            << "\", binding \"" << accel
581                                            << "\", shortcut \"" << shortcut 
582                                            << "\"" << endl;
583                         break;
584                 }
585
586                 case MenuItem::Submenu: {
587                         int submenu = create_submenu(win, view, 
588                                                      item.submenu(), smn);
589                         if (submenu == -1)
590                                 return -1;
591                         string label = item.label();
592                         label += extra_label + "%m";
593                         string shortcut = item.shortcut();
594                         if (!shortcut.empty()) {
595                                 shortcut += lowercase(shortcut[0]);
596                                 label += "%h";
597                                 fl_addtopup(menu, label.c_str(),
598                                             submenu, shortcut.c_str());
599                         }
600                         else {
601                                 fl_addtopup(menu, label.c_str(), submenu);
602                         }
603                         break;
604                 }
605
606                 case MenuItem::Separator:
607                         // already done, and if it was the first one,
608                         // we just ignore it.
609                         break;
610
611                 case MenuItem::Toc:
612                         add_toc(menu, extra_label, smn, win);
613                         break;
614
615                 case MenuItem::References:
616                         add_references(menu, extra_label, smn, win);
617                         break;
618
619                 case MenuItem::Documents: 
620                 case MenuItem::Lastfiles: 
621                 case MenuItem::ViewFormats:
622                 case MenuItem::UpdateFormats:
623                 case MenuItem::ExportFormats:
624                 case MenuItem::ImportFormats:
625                         lyxerr << "Menubar::Pimpl::create_submenu: "
626                                 "this should not happen" << endl;
627                         break;
628
629                 }
630         }
631         return menu;
632 }
633
634
635 extern "C"
636 void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button)
637 {
638         Menubar::Pimpl::MenuCallback(ob, button);
639 }
640
641
642 void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
643 {
644         ItemInfo * iteminfo = static_cast<ItemInfo *>(ob->u_vdata);
645 //      lyxerr << "MenuCallback: ItemInfo address=" << iteminfo
646 //             << "Val=(pimpl_=" << iteminfo->pimpl_
647 //             << ", item_=" << iteminfo->item_
648 //             << ", obj_=" << iteminfo->obj_ << ")" <<endl;
649
650         LyXView * view = iteminfo->pimpl_->owner_;
651         MenuItem const * item = iteminfo->item_;
652
653         if (button == 1) {
654                 // set the pseudo menu-button
655                 fl_set_object_boxtype(ob, FL_DOWN_BOX);
656                 fl_set_button(ob, 0);
657                 fl_redraw_object(ob);
658         }
659
660         // Paranoia check
661         Assert(item->kind() == MenuItem::Submenu);
662         
663         // set tabstop length
664         fl_set_tabstop(menu_tabstop);
665         vector<int> submenus;
666         int menu = iteminfo->pimpl_->
667                 create_submenu(FL_ObjWin(ob), view, 
668                                item->submenu(), submenus);
669         if (menu != -1) {
670                 // place popup
671                 fl_setpup_position(view->getForm()->x + ob->x,
672                                    view->getForm()->y + ob->y + ob->h + 10);   
673                 int choice = fl_dopup(menu);
674                 
675                 if (button == 1) {
676                                 // set the pseudo menu-button back
677                         fl_set_object_boxtype(ob, FL_FLAT_BOX);
678                         fl_redraw_object(ob);
679                 }
680
681                 // If the action value is too low, then it is not a
682                 // valid action, but something else.
683                 if (choice >= action_offset + 1) {
684                         view->getLyXFunc()->Dispatch(choice - action_offset);
685                 }
686                 else {
687                         lyxerr[Debug::GUI]
688                                 << "MenuCallback: ignoring bogus action "
689                                 << choice << endl;
690                 }
691         }
692         else 
693                 lyxerr << "Error in MenuCallback" << endl;
694         
695         std::for_each(submenus.begin(), submenus.end(), fl_freepup);
696         // restore tabstop length
697         fl_set_tabstop(default_tabstop);
698
699 }