]> git.lyx.org Git - lyx.git/blob - src/menus.C
the 1.1.5pre2 version
[lyx.git] / src / menus.C
1 /*
2  *  This file is part of
3  * ================================================== 
4  *
5  *       LyX, The Document Processor
6  *
7  *       Copyright 1995 Matthias Ettrich
8  *       Copyright 1995-2000 The LyX Team.
9  *
10  * ================================================== 
11  */
12
13 /* This file contains all the menu and submenu declarations.
14    The call backs are in lyx_cb.C */
15
16 /*
17  * REMEMBER:
18  * XFORMS can handle 10 (more with the new xforms, but not unlimited)
19  * popups at the same time
20  * so when you are finished looking at a pup free it (fl_freepup)
21  */
22
23 #include <config.h>
24
25 #ifdef __GNUG__
26 #pragma implementation
27 #endif
28
29 #include <algorithm>
30
31 #include "menus.h"
32 #include "version.h"
33 #include "lyxfont.h"
34 #include "lyx_main.h"
35 #include "lyxfunc.h"
36 #include "spellchecker.h"
37 #include "support/filetools.h"
38 #include "LyXView.h"
39 #include "lastfiles.h"
40 #include "bufferlist.h"
41 #include "lyx_gui_misc.h"
42 #include "minibuffer.h"
43 #include "intl.h"
44 #include "debug.h"
45 #include "lyxrc.h"
46 #include "lyxtext.h"
47 #include "gettext.h"
48 #include "layout.h"
49 #include "lyx_cb.h"
50 #include "bufferview_funcs.h"
51 #include "insets/insetref.h"
52 #include "insets/insettabular.h"
53 #include "tabular.h"
54
55 using std::vector;
56 using std::endl;
57 using std::max;
58 using std::sort;
59
60 extern FD_form_screen * fd_form_screen;
61 extern BufferList bufferlist;
62
63 // I would really prefere to see most or all of these 'extern's disappear.
64 // Their commands should be called through LyXFunc (IMO). (Lgb)
65
66 extern void MenuLayoutSave();
67 extern void ShowCredits();
68 extern void ShowCopyright();
69 extern void show_symbols_form(LyXFunc *);
70 extern void LaTeXOptions(BufferView *);
71
72 // A bunch of wrappers
73
74 extern "C" void C_Menus_ShowFileMenu(FL_OBJECT * ob, long data)
75 {
76         Menus::ShowFileMenu(ob, data);
77 }
78
79 extern "C" void C_Menus_ShowFileMenu2(FL_OBJECT * ob, long data)
80 {
81         Menus::ShowFileMenu2(ob, data);
82 }
83
84 extern "C" void C_Menus_ShowEditMenu(FL_OBJECT * ob, long data)
85 {
86         Menus::ShowEditMenu(ob, data);
87 }
88
89 extern "C" void C_Menus_ShowTocMenu(FL_OBJECT * ob, long data)
90 {
91         Menus::ShowTocMenu(ob, data);
92 }
93
94 extern "C" void C_Menus_ShowRefsMenu(FL_OBJECT * ob, long data)
95 {
96         Menus::ShowRefsMenu(ob, data);
97 }
98
99 extern "C" void C_Menus_ShowLayoutMenu(FL_OBJECT * ob, long data)
100 {
101         Menus::ShowLayoutMenu(ob, data);
102 }
103
104 extern "C" void C_Menus_ShowInsertMenu(FL_OBJECT * ob, long data)
105 {
106         Menus::ShowInsertMenu(ob, data);
107 }
108
109 extern "C" void C_Menus_ShowMathMenu(FL_OBJECT * ob, long data)
110 {
111         Menus::ShowMathMenu(ob, data);
112 }
113
114 extern "C" void C_Menus_ShowOptionsMenu(FL_OBJECT * ob, long data)
115 {
116         Menus::ShowOptionsMenu(ob, data);
117 }
118
119 extern "C" void C_Menus_ShowBufferMenu(FL_OBJECT * ob, long data)
120 {
121         Menus::ShowBufferMenu(ob, data);
122 }
123
124 extern "C" void C_Menus_ShowHelpMenu(FL_OBJECT * ob, long data)
125 {
126         Menus::ShowHelpMenu(ob, data);
127 }
128
129
130 Menus::Menus(LyXView * view, int air)
131         : _view(view)
132 {       
133         create_menus(air);
134         // deactivate the menu accelerators
135         fl_set_object_shortcut(menu_file, "", 1);
136         fl_set_object_shortcut(menu_file2, "", 1);
137         fl_set_object_shortcut(menu_edit, "", 1);
138         fl_set_object_shortcut(menu_toc, "", 1);
139         fl_set_object_shortcut(menu_refs, "", 1);
140         fl_set_object_shortcut(menu_layout, "", 1);
141         fl_set_object_shortcut(menu_math, "", 1);
142         fl_set_object_shortcut(menu_insert, "", 1);
143         fl_set_object_shortcut(menu_options, "", 1);
144         fl_set_object_shortcut(menu_options2, "", 1);
145         fl_set_object_shortcut(menu_buffer, "", 1);
146         fl_set_object_shortcut(menu_help, "", 1);
147         fl_set_object_shortcut(menu_help2, "", 1);
148         hideMenus();
149 }
150
151
152 inline
153 BufferView * Menus::currentView() 
154 {
155         return _view->view(); 
156 }
157
158
159 void Menus::showMenus()
160 {
161         fl_hide_object(menu_grp2);
162         fl_show_object(menu_grp1);
163 }
164
165
166 void Menus::hideMenus()
167 {
168         fl_hide_object(menu_grp1);
169         fl_show_object(menu_grp2);
170 }
171
172
173 void Menus::openByName(string const & menuName)
174         /* Opens the visible menu of given name, or simply does nothing
175            when the name is not known. NOTE THE EXTREMELY STUPID
176            IMPLEMENTATION! :-) There are probably hundred ways to do
177            this better, for instance, by scanning the menu objects and
178            testing for the given name. I leave this as an exercise for an
179            experienced GG (GUI Guy/Girl). RVDK_PATCH_5. */
180 {
181         if (menu_file->visible) {
182                 if (menuName == _("File"))
183                         ShowFileMenu(menu_file, 0);
184                 else if (menuName == _("Edit"))
185                         ShowEditMenu(menu_edit, 0);
186                 else if (menuName == _("TOC"))
187                         ShowTocMenu(menu_toc, 0);
188                 else if (menuName == _("Refs"))
189                         ShowRefsMenu(menu_refs, 0);
190                 else if (menuName == _("Layout"))
191                         ShowLayoutMenu(menu_layout, 0);
192                 else if (menuName == _("Insert"))
193                         ShowInsertMenu(menu_insert, 0);
194                 else if (menuName == _("Math"))
195                         ShowMathMenu(menu_math, 0);
196                 else if (menuName == _("Options"))
197                         ShowOptionsMenu(menu_options, 0);
198                 else if (menuName == _("Documents"))
199                         ShowBufferMenu(menu_buffer, 0);
200                 else if (menuName == _("Help"))
201                         ShowHelpMenu(menu_help, 0);
202                 else lyxerr << "The menu '" << menuName
203                             << "' is not available." << endl;
204         } else {
205                 if (menuName == _("File"))
206                         ShowFileMenu2(menu_file2, 0);
207                 else if (menuName == _("Options"))
208                         ShowOptionsMenu(menu_options2, 0);
209                 else if (menuName == _("Help"))
210                         ShowHelpMenu(menu_help2, 0);
211                 else lyxerr << "The menu '" << menuName
212                             << "' is not available." << endl;
213         }
214 }
215
216
217 void Menus::create_menus(int air)
218 {
219         FL_FORM * form = _view->getForm(); 
220
221         // Here I'd really like to see code like:
222         // addMenuBar();
223         FL_OBJECT * obj;
224
225         const int MENU_LABEL_SIZE = FL_NORMAL_SIZE;
226         const int mheight = 30;
227         const int mbheight= 22;
228         // where to place the menubar?
229         const int yloc = (mheight - mbheight)/2; //air + bw;
230         const int mbadd = 20; // menu button add (to width)
231         int moffset = 0;
232
233         // menubar frame
234         obj = fl_add_frame(FL_UP_FRAME, 0, 0, form->w, mheight, "");
235         fl_set_object_resize(obj, FL_RESIZE_ALL);
236         fl_set_object_gravity(obj, NorthWestGravity, NorthEastGravity);
237
238         menu_grp1 = fl_bgn_group();
239         
240         // File menu button
241         menu_file = obj = 
242                 fl_add_button(FL_TOUCH_BUTTON,
243                               air+moffset, yloc,
244                               fl_get_string_width(FL_BOLD_STYLE,
245                                                   MENU_LABEL_SIZE,
246                                                   _("File"),
247                                                   strlen(_("File"))) + mbadd,
248                               mbheight, _("File"));
249         moffset += obj->w + air;
250         fl_set_object_shortcut(obj, scex(_("MB|#F")), 1);
251         fl_set_object_callback(obj, C_Menus_ShowFileMenu, 0);
252         obj->u_vdata = this;
253         
254         // Edit menu button
255         menu_edit = obj = 
256                 fl_add_button(FL_TOUCH_BUTTON,
257                               moffset, yloc,
258                               fl_get_string_width(FL_BOLD_STYLE,
259                                                   MENU_LABEL_SIZE,
260                                                   _("Edit"),
261                                                   strlen(_("Edit"))) + mbadd,
262                               mbheight, _("Edit"));
263         moffset += obj->w + air;
264         fl_set_object_shortcut(obj, scex(_("MB|#E")), 1);
265         fl_set_object_callback(obj, C_Menus_ShowEditMenu, 0);
266         obj->u_vdata = this;
267         
268         /// TOC menu button
269         menu_toc = obj = 
270                 fl_add_button(FL_TOUCH_BUTTON,
271                               moffset, yloc,
272                               fl_get_string_width(FL_BOLD_STYLE,
273                                                   MENU_LABEL_SIZE,
274                                                   _("TOC"),
275                                                   strlen(_("TOC"))) + mbadd,
276                               mbheight, _("TOC"));
277         moffset += obj->w + air;
278         fl_set_object_shortcut(obj, scex(_("MB|#T")), 1);
279         fl_set_object_callback(obj, C_Menus_ShowTocMenu, 0);
280         obj->u_vdata = this;
281
282         /// Refs menu button
283         menu_refs = obj = 
284                 fl_add_button(FL_TOUCH_BUTTON,
285                               moffset, yloc,
286                               fl_get_string_width(FL_BOLD_STYLE,
287                                                   MENU_LABEL_SIZE,
288                                                   _("Refs"),
289                                                   strlen(_("Refs"))) + mbadd,
290                               mbheight, _("Refs"));
291         moffset += obj->w + air;
292         fl_set_object_shortcut(obj, scex(_("MB|#R")), 1);
293         fl_set_object_callback(obj, C_Menus_ShowRefsMenu, 0);
294         obj->u_vdata = this;
295
296         // Layout menu button
297         menu_layout = obj = 
298                 fl_add_button(FL_TOUCH_BUTTON,
299                               moffset, yloc,
300                               fl_get_string_width(FL_BOLD_STYLE,
301                                                   MENU_LABEL_SIZE,
302                                                   _("Layout"),
303                                                   strlen(_("Layout"))) + mbadd,
304                               mbheight, _("Layout"));
305         moffset += obj->w + air;
306         fl_set_object_shortcut(obj, scex(_("MB|#L")), 1);
307         fl_set_object_callback(obj, C_Menus_ShowLayoutMenu, 0);
308         obj->u_vdata = this;
309         
310         // Insert menu button button
311         menu_insert = obj = 
312                 fl_add_button(FL_TOUCH_BUTTON,
313                               moffset, yloc,
314                               fl_get_string_width(FL_BOLD_STYLE,
315                                                   MENU_LABEL_SIZE,
316                                                   _("Insert"),
317                                                   strlen(_("Insert"))) + mbadd,
318                               mbheight, _("Insert"));
319         moffset += obj->w + air;
320         fl_set_object_shortcut(obj, scex(_("MB|#I")), 1);
321         fl_set_object_callback(obj, C_Menus_ShowInsertMenu, 0);
322         obj->u_vdata = this;
323         
324         // Math menu button
325         menu_math = obj = 
326                 fl_add_button(FL_TOUCH_BUTTON,
327                               moffset, yloc,
328                               fl_get_string_width(FL_BOLD_STYLE,
329                                                   MENU_LABEL_SIZE,
330                                                   _("Math"),
331                                                   strlen(_("Math"))) + mbadd,
332                               mbheight, _("Math"));
333         moffset += obj->w + air;
334         fl_set_object_shortcut(obj, scex(_("MB|#M")), 1);
335         fl_set_object_callback(obj, C_Menus_ShowMathMenu, 0);
336         obj->u_vdata = this;
337         
338         // Options menu button
339         menu_options = obj = 
340                 fl_add_button(FL_TOUCH_BUTTON,
341                               moffset, yloc,
342                               fl_get_string_width(FL_BOLD_STYLE,
343                                                   MENU_LABEL_SIZE,
344                                                   _("Options"),
345                                                   strlen(_("Options"))) + mbadd,
346                               mbheight, _("Options"));
347         moffset += obj->w + air;
348         fl_set_object_shortcut(obj, scex(_("MB|#O")), 1);
349         fl_set_object_callback(obj, C_Menus_ShowOptionsMenu, 0);
350         obj->u_vdata = this;
351
352         // Documents menu button
353         menu_buffer = obj = 
354                 fl_add_button(FL_TOUCH_BUTTON,
355                               moffset, yloc,
356                               fl_get_string_width(FL_BOLD_STYLE,
357                                                   MENU_LABEL_SIZE,
358                                                   _("Documents"),
359                                                   strlen(_("Documents"))) + mbadd,
360                               mbheight, _("Documents"));
361         moffset += obj->w + air;
362         fl_set_object_shortcut(obj, scex(_("MB|#D")), 1);
363         fl_set_object_callback(obj, C_Menus_ShowBufferMenu, 0);
364         obj->u_vdata = this;
365         
366         // Help menu button
367         menu_help = obj = 
368                 fl_add_button(FL_TOUCH_BUTTON,
369                               moffset, yloc,
370                               fl_get_string_width(FL_BOLD_STYLE,
371                                                   MENU_LABEL_SIZE,
372                                                   _("Help"),
373                                                   strlen(_("Help"))) + mbadd,
374                               mbheight, _("Help"));
375         moffset += obj->w + air;
376         fl_set_object_shortcut(obj, scex(_("MB|#H")), 1);
377         fl_set_object_callback(obj, C_Menus_ShowHelpMenu, 0);
378         obj->u_vdata = this;
379         
380         fl_end_group();
381
382         // Set the menu buttons atrributes.
383         // Due to a bug in xforms we cant do this only an the group.
384         obj = menu_grp1->next;
385         do {
386                 fl_set_object_boxtype(obj, FL_FLAT_BOX);
387                 fl_set_object_color(obj, FL_MCOL, FL_MCOL);
388                 fl_set_object_lsize(obj, MENU_LABEL_SIZE);
389                 fl_set_object_lstyle(obj, FL_BOLD_STYLE);
390                 fl_set_object_resize(obj, FL_RESIZE_ALL);
391                 fl_set_object_gravity(obj, NorthWestGravity, NorthWestGravity);
392                 obj= obj->next;
393         } while (obj != 0 && obj->objclass != FL_END_GROUP);
394
395         // group 2
396         moffset = 0;
397         menu_grp2 = fl_bgn_group();
398         
399         // File menu button
400         menu_file2 = obj = 
401                 fl_add_button(FL_TOUCH_BUTTON,
402                               air+moffset, yloc,
403                               fl_get_string_width(FL_BOLD_STYLE,
404                                                   MENU_LABEL_SIZE,
405                                                   _("File"),
406                                                   strlen(_("File"))) + mbadd,
407                               mbheight, _("File"));
408         moffset += obj->w + air;
409         fl_set_object_shortcut(obj, scex(_("MB|#F")), 1);
410         fl_set_object_callback(obj, C_Menus_ShowFileMenu2, 0);
411         obj->u_vdata = this;
412         
413         // Options menu button
414         menu_options2 = obj = 
415                 fl_add_button(FL_TOUCH_BUTTON,
416                               moffset, yloc,
417                               fl_get_string_width(FL_BOLD_STYLE,
418                                                   MENU_LABEL_SIZE,
419                                                   _("Options"),
420                                                   strlen(_("Options"))) +mbadd,
421                               mbheight, _("Options"));
422         moffset += obj->w + air;
423         fl_set_object_shortcut(obj, scex(_("MB|#O")), 1);
424         fl_set_object_callback(obj, C_Menus_ShowOptionsMenu, 0);
425         obj->u_vdata = this;
426
427         // Help menu button
428         menu_help2 = obj = 
429                 fl_add_button(FL_TOUCH_BUTTON,
430                               moffset, yloc,
431                               fl_get_string_width(FL_BOLD_STYLE,
432                                                   MENU_LABEL_SIZE,
433                                                   _("Help"),
434                                                   strlen(_("Help"))) + mbadd,
435                               mbheight, _("Help"));
436         moffset += obj->w + air;
437         fl_set_object_shortcut(obj, scex(_("MB|#H")), 1);
438         fl_set_object_callback(obj, C_Menus_ShowHelpMenu, 0);
439         obj->u_vdata = this;
440         
441         fl_end_group();
442
443         // Set the menu buttons atrributes.
444         // Due to a bug in xforms we cant do this only an the group.
445         obj = menu_grp2->next;
446         do {
447                 fl_set_object_boxtype(obj, FL_FLAT_BOX);
448                 fl_set_object_color(obj, FL_MCOL, FL_MCOL);
449                 fl_set_object_lsize(obj, MENU_LABEL_SIZE);
450                 fl_set_object_lstyle(obj, FL_BOLD_STYLE);
451                 fl_set_object_resize(obj, FL_RESIZE_ALL);
452                 fl_set_object_gravity(obj, NorthWestGravity, NorthWestGravity);
453                 obj= obj->next;
454         } while (obj != 0 && obj->objclass != FL_END_GROUP);
455 }
456
457
458 void Menus::ScreenOptions()
459 {
460         static int ow = -1, oh;
461
462         // this is not very nice....
463         fl_set_input(fd_form_screen->input_roman, 
464                      lyxrc.roman_font_name.c_str());
465         fl_set_input(fd_form_screen->input_sans, 
466                      lyxrc.sans_font_name.c_str());
467         fl_set_input(fd_form_screen->input_typewriter,
468                      lyxrc.typewriter_font_name.c_str());
469         fl_set_input(fd_form_screen->input_font_norm, 
470                      lyxrc.font_norm.c_str());
471         char tmpstring[10];
472         sprintf(tmpstring, "%d", lyxrc.zoom);
473         fl_set_input(fd_form_screen->intinput_size, tmpstring);
474         if (fd_form_screen->form_screen->visible) {
475                 fl_raise_form(fd_form_screen->form_screen);
476         } else {
477                 fl_show_form(fd_form_screen->form_screen,
478                              FL_PLACE_MOUSE | FL_FREE_SIZE, FL_FULLBORDER,
479                              _("Screen Options"));
480                 if (ow < 0) {
481                         ow = fd_form_screen->form_screen->w;
482                         oh = fd_form_screen->form_screen->h;
483                 }
484                 fl_set_form_minsize(fd_form_screen->form_screen, ow, oh);
485         }
486 }
487
488
489 //
490 // Here comes all the menu callbacks.
491 //
492
493 void Menus::ShowFileMenu(FL_OBJECT * ob, long)
494 {
495         Menus * men = static_cast<Menus*>(ob->u_vdata);
496
497         // Regarding the pseudo-menu-button:
498         // ok, ok this is a hack. It would be better to use the menus of the
499         // xforms 0.8 library. but then all popups have to be defined all the
500         // time, code rewriting would be necessary and contex-depending menus
501         // (i.e. the linux-doc-sgml stuff) are a bit more complicated. But of
502         // course it would be more proper (and little faster). So if anybody
503         // likes to do the cleanup, just do it. Matthias
504
505         // set the pseudo menu-button
506         fl_set_object_boxtype(ob, FL_UP_BOX);
507         fl_set_button(ob, 0);
508         fl_redraw_object(ob);
509
510         Buffer * tmpbuffer = men->_view->buffer();
511         LyXFunc * tmpfunc = men->_view->getLyXFunc();
512
513         bool LinuxDoc = tmpbuffer->isLinuxDoc();
514         bool DocBook  = tmpbuffer->isDocBook();
515         bool Literate = tmpbuffer->isLiterate();
516
517         // Import sub-menu
518
519         int SubFileImport = fl_defpup(FL_ObjWin(ob),
520                                       _("Import%t"
521                                         "|LaTeX...%x30"
522                                         "|Ascii Text as Lines...%x31"
523                                         "|Ascii Text as Paragraphs%x32"
524                                         "|Noweb%x33"
525                                         "|LinuxDoc%x34"));
526
527         fl_setpup_shortcut(SubFileImport, 30, scex(_("FIM|Ll#l#L")));
528         fl_setpup_shortcut(SubFileImport, 31, scex(_("FIM|Aa#a#A")));
529         fl_setpup_shortcut(SubFileImport, 32, scex(_("FIM|Pp#p#P")));
530         fl_setpup_shortcut(SubFileImport, 33, scex(_("FIM|Nn#n#N")));
531         fl_setpup_shortcut(SubFileImport, 34, scex(_("FIM|Dd#d#D")));
532
533         // Export sub-menu
534
535         // remember to make this handle linuxdoc too.
536         // and now docbook also.
537         int SubFileExport = 0;
538         if (!LinuxDoc && !DocBook)
539                 SubFileExport= fl_defpup(FL_ObjWin(ob),
540                                          _("Export%t"
541                                            "|as LaTeX...%x40"
542                                            "|as DVI...%x41"
543                                            "|as PostScript...%x42"
544                                            "|as Ascii Text...%x43"
545                                            "|as HTML...%x44"
546                                            "|Custom...%x45"));
547         else if(LinuxDoc)
548                 SubFileExport= fl_defpup(FL_ObjWin(ob),
549                                          _("Export%t"
550                                            "|as LinuxDoc...%x40"
551                                            "|as DVI...%x41"
552                                            "|as PostScript...%x42"
553                                            "|as Ascii Text...%x43"
554                                            "|as HTML...%x44"));
555         else if(DocBook)
556                 SubFileExport= fl_defpup(FL_ObjWin(ob),
557                                          _("Export%t"
558                                            "|as DocBook...%x40"
559                                            "|as DVI...%x41"
560                                            "|as PostScript...%x42"
561                                            "|as Ascii Text...%x43"
562                                            "|as HTML...%x44"));
563
564         fl_setpup_shortcut(SubFileExport, 40, scex(_("FEX|Ll#l#L")));
565         fl_setpup_shortcut(SubFileExport, 41, scex(_("FEX|Dd#d#D")));
566         fl_setpup_shortcut(SubFileExport, 42, scex(_("FEX|Pp#p#P")));
567         fl_setpup_shortcut(SubFileExport, 43, scex(_("FEX|Tt#t#T")));
568         fl_setpup_shortcut(SubFileExport, 44, scex(_("FEX|Hh#h#H")));
569
570         if (!LinuxDoc && !DocBook) {
571                 fl_setpup_shortcut(SubFileExport, 45, scex(_("FEX|mM#m#M")));
572         }
573         
574         int FileMenu = fl_defpup(FL_ObjWin(ob),
575                                  _("New..."
576                                    "|New from template..."
577                                    "|Open...%l"
578                                    "|Close"
579                                    "|Save"
580                                    "|Save As..."
581                                    "|Revert to saved%l"
582                                    "|View dvi"
583                                    "|View PostScript"
584                                    "|Update dvi"
585                                    "|Update PostScript"
586                                    "|Build program%l"
587                                    "|Print..."
588                                    "|Fax..."));
589
590         fl_setpup_shortcut(FileMenu, 1, scex(_("FM|Nn#n#N")));
591         fl_setpup_shortcut(FileMenu, 2, scex(_("FM|tT#t#T")));
592         fl_setpup_shortcut(FileMenu, 3, scex(_("FM|Oo#o#O")));
593         fl_setpup_shortcut(FileMenu, 4, scex(_("FM|Cc#c#C")));
594         fl_setpup_shortcut(FileMenu, 5, scex(_("FM|Ss#s#S")));
595         fl_setpup_shortcut(FileMenu, 6, scex(_("FM|Aa#a#A")));
596         fl_setpup_shortcut(FileMenu, 7, scex(_("FM|Rr#r#R")));
597         fl_setpup_shortcut(FileMenu, 8, scex(_("FM|dD#d#D")));
598         fl_setpup_shortcut(FileMenu, 9, scex(_("FM|wW#w#W")));
599         fl_setpup_shortcut(FileMenu, 10, scex(_("FM|vV#v#V")));
600         fl_setpup_shortcut(FileMenu, 11, scex(_("FM|Uu#u#U")));
601         fl_setpup_shortcut(FileMenu, 12, scex(_("FM|Bb#b#B")));
602         fl_setpup_shortcut(FileMenu, 13, scex(_("FM|Pp#p#P")));
603         fl_setpup_shortcut(FileMenu, 14, scex(_("FM|Ff#f#F")));
604
605         // These commands are disabled when the corresponding programs
606         // are not installed. I simply grey them out, since I do not
607         // want to change their number (JMarc)
608         bool hasLaTeX = lyxrc.latex_command != "none";
609
610         if (!hasLaTeX || lyxrc.view_dvi_command == "none") 
611                 fl_setpup_mode(FileMenu, 8, FL_PUP_GREY);
612         
613         if (!hasLaTeX || lyxrc.view_ps_command == "none") 
614                 fl_setpup_mode(FileMenu, 9, FL_PUP_GREY);
615         
616         if (!hasLaTeX) {
617                 fl_setpup_mode(FileMenu, 10, FL_PUP_GREY);
618                 fl_setpup_mode(FileMenu, 11, FL_PUP_GREY);
619         } 
620
621         if (lyxrc.literate_command == "none" || ! Literate) 
622                 fl_setpup_mode(FileMenu, 12, FL_PUP_GREY);
623
624         if (!hasLaTeX || lyxrc.print_command == "none") 
625                 fl_setpup_mode(FileMenu, 13, FL_PUP_GREY);
626
627         if (!hasLaTeX || lyxrc.fax_command == "none") 
628                 fl_setpup_mode(FileMenu, 14, FL_PUP_GREY);
629
630         bool hasReLyX = lyxrc.relyx_command != "none";
631         if (!hasReLyX) {
632                 // Disable import LaTeX and Noweb
633                 fl_setpup_mode(SubFileImport, 30, FL_PUP_GREY);
634                 fl_setpup_mode(SubFileImport, 33, FL_PUP_GREY);
635         }
636
637         if ( lyxrc.linuxdoc_to_lyx_command == "none")
638                 fl_setpup_mode(SubFileImport, 34, FL_PUP_GREY);
639
640         if (!hasLaTeX) {
641                 // Disable export dvi and export postscript
642                 fl_setpup_mode(SubFileExport, 41, FL_PUP_GREY);
643                 fl_setpup_mode(SubFileExport, 42, FL_PUP_GREY);
644         }
645
646         if ((!LinuxDoc && !DocBook && lyxrc.html_command == "none") ||
647             ( LinuxDoc && lyxrc.linuxdoc_to_html_command == "none") ||
648             ( DocBook  && lyxrc.docbook_to_html_command  == "none")) {
649                 // Disable export HTML
650                 fl_setpup_mode(SubFileExport, 44, FL_PUP_GREY);
651         }
652
653         // xgettext:no-c-format
654         fl_addtopup(FileMenu, _("|Import%m"), SubFileImport);
655         // xgettext:no-c-format
656         fl_addtopup(FileMenu, _("|Export%m%l"), SubFileExport);
657         // xgettext:no-c-format
658         fl_addtopup(FileMenu, _("|Exit%l"));
659         fl_setpup_shortcut(FileMenu, 15, scex(_("FM|Ii#i#I")));
660         fl_setpup_shortcut(FileMenu, 16, scex(_("FM|Ee#e#E")));
661         fl_setpup_shortcut(FileMenu, 17, scex(_("FM|xX#x#X")));
662
663         // make the lastfiles menu
664         int ii = 1;
665         for (LastFiles::Files::const_iterator cit = lastfiles->begin();
666              cit != lastfiles->end() && ii < 10; ++cit, ++ii) {
667                 string tmp = tostr(ii);
668                 string tmp2 = tmp + "#" + tmp;;
669                 tmp += ". " + MakeDisplayPath((*cit), 30);
670                 fl_addtopup(FileMenu, tmp.c_str());
671                 fl_setpup_shortcut(FileMenu, 18 - 1 + ii, tmp2.c_str());
672         }
673
674         // place popup
675         fl_setpup_position(
676                 men->_view->getForm()->x + ob->x,
677                 men->_view->getForm()->y + ob->y + ob->h + 10);   
678         int choice = fl_dopup(FileMenu);
679         XFlush(fl_display);
680
681         // set the pseudo menu-button back
682         fl_set_object_boxtype(ob, FL_FLAT_BOX);
683         fl_redraw_object(ob);
684
685         switch (choice) {
686         case -1: case 0: // we won't do anything
687                 break;
688         case  1: tmpfunc->Dispatch(LFUN_MENUNEW); break;
689         case  2: tmpfunc->Dispatch(LFUN_MENUNEWTMPLT); break;
690         case  3: tmpfunc->Dispatch(LFUN_MENUOPEN); break;
691         case  4: tmpfunc->Dispatch(LFUN_CLOSEBUFFER); break;
692         case  5: tmpfunc->Dispatch(LFUN_MENUWRITE); break;
693         case  6: tmpfunc->Dispatch(LFUN_MENUWRITEAS); break;
694         case  7: tmpfunc->Dispatch(LFUN_MENURELOAD); break;
695         case  8: tmpfunc->Dispatch(LFUN_PREVIEW); break;
696         case  9: tmpfunc->Dispatch(LFUN_PREVIEWPS); break;
697         case 10: tmpfunc->Dispatch(LFUN_RUNLATEX); break;
698         case 11: tmpfunc->Dispatch(LFUN_RUNDVIPS); break;
699         case 12: tmpfunc->Dispatch(LFUN_BUILDPROG); break;
700         case 13: tmpfunc->Dispatch(LFUN_MENUPRINT); break;
701         case 14: tmpfunc->Dispatch(LFUN_FAX); break;
702         case 15: // import menu
703         case 30: tmpfunc->Dispatch(LFUN_IMPORT, "latex");
704                 break;
705         case 31: tmpfunc->Dispatch(LFUN_IMPORT, "ascii");
706                 break;
707         case 32: tmpfunc->Dispatch(LFUN_IMPORT, "asciiparagraph");
708                 break;
709         case 33: tmpfunc->Dispatch(LFUN_IMPORT, "noweb");
710                 break;
711         case 34: tmpfunc->Dispatch(LFUN_IMPORT, "linuxdoc");
712                 break;
713         case 16: // export menu
714         case 40:
715                 if (!LinuxDoc && !DocBook)
716                         tmpfunc->Dispatch(LFUN_EXPORT, "latex");
717                 else if(LinuxDoc)
718                         tmpfunc->Dispatch(LFUN_EXPORT, "linuxdoc");
719                 else
720                         tmpfunc->Dispatch(LFUN_EXPORT, "docbook");
721                 break;
722         case 41: tmpfunc->Dispatch(LFUN_EXPORT, "dvi");
723                 break;
724         case 42: tmpfunc->Dispatch(LFUN_EXPORT, "postscript");
725                 break;
726         case 43: tmpfunc->Dispatch(LFUN_EXPORT, "ascii");
727                 break;
728         case 44:
729                 if (!LinuxDoc && !DocBook)
730                         tmpfunc->Dispatch(LFUN_EXPORT, "html");
731                 else if(LinuxDoc)
732                         tmpfunc->Dispatch(LFUN_EXPORT, "html-linuxdoc");
733                 else
734                         tmpfunc->Dispatch(LFUN_EXPORT, "html-docbook");
735                 break;
736         case 45: tmpfunc->Dispatch(LFUN_EXPORT, "custom"); 
737                 break;
738         case 17: tmpfunc->Dispatch(LFUN_QUIT); break;
739                 // Lastfiles:
740         case 18: // The first item with lastfiles.
741         default:
742                 men->currentView()
743                         ->buffer(bufferlist
744                                  .loadLyXFile((*lastfiles)[choice - 18]));
745                 break;
746         }
747         fl_freepup(SubFileImport);
748         fl_freepup(SubFileExport);
749         fl_freepup(FileMenu);
750
751         AllowInput(men->currentView());
752 }
753
754
755 void Menus::ShowFileMenu2(FL_OBJECT * ob, long)
756 {
757         Menus * men = static_cast<Menus*>(ob->u_vdata);
758
759         // Regarding the pseudo-menu-button:
760         // ok, ok this is a hack. It would be better to use the menus of the
761         // xforms 0.8 library. but then all popups have to be defined all the
762         // time, code rewriting would be necessary and contex-depending menus
763         // (i.e. the linux-doc-sgml stuff) are a bit more complicated. But of
764         // course it would be more proper (and little faster). So if anybody
765         // likes to do the cleanup, just do it. Matthias
766
767         // set the pseudo menu-button
768         fl_set_object_boxtype(ob, FL_UP_BOX);
769         fl_set_button(ob, 0);
770         fl_redraw_object(ob);
771
772         LyXFunc * tmpfunc = men->_view->getLyXFunc();
773
774         // Import sub-menu
775         
776         int SubFileImport = fl_defpup(FL_ObjWin(ob),
777                                       _("Import%t"
778                                         "|LaTeX...%x15"
779                                         "|Ascii Text as Lines...%x16"
780                                         "|Ascii Text as Paragraphs...%x17"
781                                         "|Noweb...%x18"
782                                         "|LinuxDoc...%x19"));
783         
784         fl_setpup_shortcut(SubFileImport, 15, scex(_("FIM|Ll#l#L")));
785         fl_setpup_shortcut(SubFileImport, 16, scex(_("FIM|Aa#a#A")));
786         fl_setpup_shortcut(SubFileImport, 17, scex(_("FIM|Pp#p#P")));
787         fl_setpup_shortcut(SubFileImport, 18, scex(_("FIM|Nn#n#N")));
788         fl_setpup_shortcut(SubFileImport, 19, scex(_("FIM|Dd#d#D")));
789
790         bool hasReLyX = lyxrc.relyx_command != "none";
791         if (!hasReLyX) {
792                 // Disable import LaTeX and Noweb
793                 fl_setpup_mode(SubFileImport, 15, FL_PUP_GREY);
794                 fl_setpup_mode(SubFileImport, 18, FL_PUP_GREY);
795         }
796
797         if ( lyxrc.linuxdoc_to_lyx_command == "none")
798                 fl_setpup_mode(SubFileImport, 19, FL_PUP_GREY);
799
800         // This can be done cleaner later.
801         int FileMenu = fl_defpup(FL_ObjWin(ob), 
802                                  _("New..."
803                                    "|New from template..."
804                                    "|Open...%l"
805                                    "|Import%m%l"
806                                    "|Exit%l"), SubFileImport);
807         
808         fl_setpup_shortcut(FileMenu, 1, scex(_("FM|Nn#n#N")));
809         fl_setpup_shortcut(FileMenu, 2, scex(_("FM|tT#t#T")));
810         fl_setpup_shortcut(FileMenu, 3, scex(_("FM|Oo#o#O")));
811         fl_setpup_shortcut(FileMenu, 4, scex(_("FM|Ii#i#I")));
812         fl_setpup_shortcut(FileMenu, 5, scex(_("FM|xX#x#X")));
813         
814         // make the lastfiles menu
815         int ii = 1;
816         for (LastFiles::Files::const_iterator cit = lastfiles->begin();
817              cit != lastfiles->end() && ii < 10; ++cit, ++ii) {
818                 string tmp = tostr(ii);
819                 string tmp2 = tmp + "#" + tmp;;
820                 tmp += ". " + MakeDisplayPath((*cit), 30);
821                 fl_addtopup(FileMenu, tmp.c_str());
822                 fl_setpup_shortcut(FileMenu, 18 - 1 + ii, tmp2.c_str());
823         }
824
825         // place popup
826         fl_setpup_position(
827                 men->_view->getForm()->x + ob->x,
828                 men->_view->getForm()->y + ob->y + ob->h + 10);   
829         int choice = fl_dopup(FileMenu);
830         XFlush(fl_display);
831
832         // set the pseudo menu-button back
833         fl_set_object_boxtype(ob, FL_FLAT_BOX);
834         fl_redraw_object(ob);
835
836         switch (choice) {
837         case -1: case 0: // we won't do anything
838                 break;
839         case 1:
840                 tmpfunc->Dispatch(LFUN_MENUNEW);
841                 break;
842         case 2:
843                 tmpfunc->Dispatch(LFUN_MENUNEWTMPLT);
844                 break;
845         case 3:
846                 tmpfunc->Dispatch(LFUN_MENUOPEN);
847                 break;
848         case 4: // import menu
849         case 15: tmpfunc->Dispatch(LFUN_IMPORT, "latex");
850                 break;
851         case 16: tmpfunc->Dispatch(LFUN_IMPORT, "ascii");
852                 break;
853         case 17: tmpfunc->Dispatch(LFUN_IMPORT, "asciiparagraph");
854                 break;
855         case 18: tmpfunc->Dispatch(LFUN_IMPORT, "noweb");
856                 break;
857         case 19: tmpfunc->Dispatch(LFUN_IMPORT, "linuxdoc");
858                 break;
859         case 5:
860                 tmpfunc->Dispatch(LFUN_QUIT);
861                 break;
862                 // Lastfiles:
863         case 6: // The first item with lastfiles.
864         default:
865                 men->currentView()
866                         ->buffer(bufferlist
867                                  .loadLyXFile((*lastfiles)[choice - 6]));
868                 break;
869         }
870
871         fl_freepup(SubFileImport);
872         fl_freepup(FileMenu);
873         AllowInput(men->currentView());
874         return;
875 }
876
877
878 void Menus::ShowEditMenu(FL_OBJECT * ob, long)
879 {
880         Menus * men = static_cast<Menus*>(ob->u_vdata);
881         
882         // set the pseudo menu-button
883         fl_set_object_boxtype(ob, FL_UP_BOX);
884         fl_set_button(ob, 0);
885         fl_redraw_object(ob);
886
887         Buffer * tmpbuffer = men->_view->buffer();
888         LyXFunc * tmpfunc = men->_view->getLyXFunc();
889
890         // Floats & Insets submenu
891         int SubEditFloats= fl_defpup(FL_ObjWin(ob),
892                                      _("Floats & Insets%t"
893                                        "|Open/Close%x21"
894                                        "|Melt%x22"
895                                        "|Open All Footnotes/Margin Notes%x23"
896                                        "|Close All Footnotes/Margin Notes%x24"
897                                        "|Open All Figures/Tables%x25"
898                                        "|Close All Figures/Tables%x26%l"
899                                        "|Remove all Error Boxes%x27"));
900         
901         fl_setpup_shortcut(SubEditFloats, 21, scex(_("EMF|Oo#o#O")));
902         fl_setpup_shortcut(SubEditFloats, 22, scex(_("EMF|Mm#m#M")));
903         fl_setpup_shortcut(SubEditFloats, 23, scex(_("EMF|Aa#a#A")));
904         fl_setpup_shortcut(SubEditFloats, 24, scex(_("EMF|Cc#c#C")));
905         fl_setpup_shortcut(SubEditFloats, 25, scex(_("EMF|Ff#f#F")));
906         fl_setpup_shortcut(SubEditFloats, 26, scex(_("EMF|Tt#t#T")));
907         fl_setpup_shortcut(SubEditFloats, 27, scex(_("EMF|Rr#r#R")));
908
909         // Table submenu
910         int SubEditTable = fl_newpup(FL_ObjWin(ob));
911         if (men->currentView()->available() && 
912             men->currentView()->text->cursor.par->table &&
913             !tmpbuffer->isReadonly()){
914                 LyXTable *table = men->currentView()->text->cursor.par->table;
915
916                 fl_addtopup(SubEditTable, _("Table%t"));
917
918                 if (table->IsMultiColumn(men->currentView()->text->
919                                          NumberOfCell(men->currentView()->
920                                                       text->cursor.par, 
921                                                       men->currentView()->
922                                                       text->cursor.pos)))
923                         fl_addtopup(SubEditTable, _("|Multicolumn%B%x44%l"));
924                 else
925                         fl_addtopup(SubEditTable, _("|Multicolumn%b%x44%l"));
926                 fl_setpup_shortcut(SubEditTable, 44, scex(_("EMT|Mm#m#M")));
927      
928                 if (table->TopLine(men->currentView()->text->
929                                    NumberOfCell(men->currentView()->
930                                                 text->cursor.par, 
931                                                 men->currentView()->text->
932                                                 cursor.pos)))
933                         fl_addtopup(SubEditTable, _("|Line Top%B%x36"));
934                 else
935                         fl_addtopup(SubEditTable, _("|Line Top%b%x36"));
936                 fl_setpup_shortcut(SubEditTable, 36, scex(_("EMT|Tt#t#T")));
937      
938                 if (table->BottomLine(men->currentView()->text->
939                                       NumberOfCell(men->currentView()->
940                                                    text->cursor.par, 
941                                                    men->currentView()->
942                                                    text->cursor.pos)))
943                         fl_addtopup(SubEditTable, _("|Line Bottom%B%x37"));
944                 else
945                         fl_addtopup(SubEditTable, _("|Line Bottom%b%x37"));
946                 fl_setpup_shortcut(SubEditTable, 37, scex(_("EMT|Bb#b#B")));
947
948                 if (table->LeftLine(men->currentView()->text->
949                                     NumberOfCell(men->currentView()->
950                                                  text->cursor.par, 
951                                                  men->currentView()->
952                                                  text->cursor.pos)))
953                         fl_addtopup(SubEditTable, _("|Line Left%B%x38"));
954                 else
955                         fl_addtopup(SubEditTable, _("|Line Left%b%x38"));
956                 fl_setpup_shortcut(SubEditTable, 38, scex(_("EMT|Ll#l#L")));
957
958                 if (table->RightLine(men->currentView()->text->
959                                      NumberOfCell(men->currentView()->
960                                                   text->cursor.par, 
961                                                   men->currentView()->
962                                                   text->cursor.pos)))
963                         fl_addtopup(SubEditTable, _("|Line Right%B%x39%l"));
964                 else
965                         fl_addtopup(SubEditTable, _("|Line Right%b%x39%l"));
966                 fl_setpup_shortcut(SubEditTable, 39, scex(_("EMT|Rr#r#R")));
967
968                 int align =
969                         table->GetAlignment(men->currentView()->text->
970                                             NumberOfCell(men->currentView()->
971                                                          text->cursor.par, 
972                                                          men->currentView()->
973                                                          text->cursor.pos));
974                 if (align == LYX_ALIGN_LEFT)
975                         fl_addtopup(SubEditTable, _("|Align Left%R%x40"));
976                 else
977                         fl_addtopup(SubEditTable, _("|Align Left%r%x40"));
978                 fl_setpup_shortcut(SubEditTable, 40, scex(_("EMT|eE#e#E")));
979
980                 if (align == LYX_ALIGN_RIGHT)
981                         fl_addtopup(SubEditTable, _("|Align Right%R%x41"));
982                 else
983                         fl_addtopup(SubEditTable, _("|Align Right%r%x41"));
984                 fl_setpup_shortcut(SubEditTable, 41, scex(_("EMT|iI#i#I")));
985
986                 if (align == LYX_ALIGN_CENTER)
987                         fl_addtopup(SubEditTable, _("|Align Center%R%x42%l"));
988                 else
989                         fl_addtopup(SubEditTable, _("|Align Center%r%x42%l"));
990                 fl_setpup_shortcut(SubEditTable, 42, scex(_("EMT|Cc#c#C")));
991
992                 // xgettext:no-c-format
993                 fl_addtopup(SubEditTable, _("|Append Row%x32"));
994                 fl_setpup_shortcut(SubEditTable, 32, scex(_("EMT|oO#o#O")));
995                 // xgettext:no-c-format
996                 fl_addtopup(SubEditTable, _("|Append Column%x33%l"));
997                 fl_setpup_shortcut(SubEditTable, 33, scex(_("EMT|uU#u#U")));
998                 // xgettext:no-c-format
999                 fl_addtopup(SubEditTable, _("|Delete Row%x34"));
1000                 fl_setpup_shortcut(SubEditTable, 34, scex(_("EMT|wW#w#W")));
1001                 // xgettext:no-c-format
1002                 fl_addtopup(SubEditTable, _("|Delete Column%x35%l"));
1003                 fl_setpup_shortcut(SubEditTable, 35, scex(_("EMT|nN#n#N")));
1004                 // xgettext:no-c-format
1005                 fl_addtopup(SubEditTable, _("|Delete Table%x43"));
1006                 fl_setpup_shortcut(SubEditTable, 43, scex(_("EMT|Dd#d#D")));
1007         } else if (men->currentView()->the_locking_inset &&
1008                    (men->currentView()->the_locking_inset->LyxCode() ==
1009                     Inset::TABULAR_CODE) &&
1010                    !tmpbuffer->isReadonly()) {
1011                 InsetTabular * inset = static_cast<InsetTabular *>(men->currentView()->the_locking_inset);
1012                 LyXTabular * table = inset->tabular;
1013
1014                 fl_addtopup(SubEditTable, _("Table%t"));
1015
1016                 if (table->IsMultiColumn(inset->GetActCell()))
1017                         fl_addtopup(SubEditTable, _("|Multicolumn%B%x44%l"));
1018                 else
1019                         fl_addtopup(SubEditTable, _("|Multicolumn%b%x44%l"));
1020                 fl_setpup_shortcut(SubEditTable, 44, scex(_("EMT|Mm#m#M")));
1021
1022                 if (table->TopLine(inset->GetActCell()))
1023                         fl_addtopup(SubEditTable, _("|Line Top%B%x36"));
1024                 else
1025                         fl_addtopup(SubEditTable, _("|Line Top%b%x36"));
1026                 fl_setpup_shortcut(SubEditTable, 36, scex(_("EMT|Tt#t#T")));
1027      
1028                 if (table->BottomLine(inset->GetActCell()))
1029                         fl_addtopup(SubEditTable, _("|Line Bottom%B%x37"));
1030                 else
1031                         fl_addtopup(SubEditTable, _("|Line Bottom%b%x37"));
1032                 fl_setpup_shortcut(SubEditTable, 37, scex(_("EMT|Bb#b#B")));
1033
1034                 if (table->LeftLine(inset->GetActCell()))
1035                         fl_addtopup(SubEditTable, _("|Line Left%B%x38"));
1036                 else
1037                         fl_addtopup(SubEditTable, _("|Line Left%b%x38"));
1038                 fl_setpup_shortcut(SubEditTable, 38, scex(_("EMT|Ll#l#L")));
1039
1040                 if (table->RightLine(inset->GetActCell()))
1041                         fl_addtopup(SubEditTable, _("|Line Right%B%x39%l"));
1042                 else
1043                         fl_addtopup(SubEditTable, _("|Line Right%b%x39%l"));
1044                 fl_setpup_shortcut(SubEditTable, 39, scex(_("EMT|Rr#r#R")));
1045
1046                 int align = table->GetAlignment(inset->GetActCell());
1047                 if (align == LYX_ALIGN_LEFT)
1048                         fl_addtopup(SubEditTable, _("|Align Left%R%x40"));
1049                 else
1050                         fl_addtopup(SubEditTable, _("|Align Left%r%x40"));
1051                 fl_setpup_shortcut(SubEditTable, 40, scex(_("EMT|eE#e#E")));
1052
1053                 if (align == LYX_ALIGN_RIGHT)
1054                         fl_addtopup(SubEditTable, _("|Align Right%R%x41"));
1055                 else
1056                         fl_addtopup(SubEditTable, _("|Align Right%r%x41"));
1057                 fl_setpup_shortcut(SubEditTable, 41, scex(_("EMT|iI#i#I")));
1058
1059                 if (align == LYX_ALIGN_CENTER)
1060                         fl_addtopup(SubEditTable, _("|Align Center%R%x42%l"));
1061                 else
1062                         fl_addtopup(SubEditTable, _("|Align Center%r%x42%l"));
1063                 fl_setpup_shortcut(SubEditTable, 42, scex(_("EMT|Cc#c#C")));
1064
1065                 // xgettext:no-c-format
1066                 fl_addtopup(SubEditTable, _("|Append Row%x32"));
1067                 fl_setpup_shortcut(SubEditTable, 32, scex(_("EMT|oO#o#O")));
1068                 // xgettext:no-c-format
1069                 fl_addtopup(SubEditTable, _("|Append Column%x33%l"));
1070                 fl_setpup_shortcut(SubEditTable, 33, scex(_("EMT|uU#u#U")));
1071                 // xgettext:no-c-format
1072                 fl_addtopup(SubEditTable, _("|Delete Row%x34"));
1073                 fl_setpup_shortcut(SubEditTable, 34, scex(_("EMT|wW#w#W")));
1074                 // xgettext:no-c-format
1075                 fl_addtopup(SubEditTable, _("|Delete Column%x35%l"));
1076                 fl_setpup_shortcut(SubEditTable, 35, scex(_("EMT|nN#n#N")));
1077                 // xgettext:no-c-format
1078                 fl_addtopup(SubEditTable, _("|Delete Table%x43"));
1079                 fl_setpup_shortcut(SubEditTable, 43, scex(_("EMT|Dd#d#D")));
1080         } else {
1081                 fl_addtopup(SubEditTable, _("Table%t"));
1082                 // xgettext:no-c-format
1083                 fl_addtopup(SubEditTable, _("|Insert table%x31"));
1084                 fl_setpup_shortcut(SubEditTable, 31, scex(_("EMT|Ii#i#I")));
1085         }
1086
1087         int SubVersionControl =         fl_newpup(FL_ObjWin(ob));
1088         fl_addtopup(SubVersionControl, _("Version Control%t"));
1089         if (tmpbuffer->lyxvc.inUse()) {
1090                 // xgettext:no-c-format
1091                 fl_addtopup(SubVersionControl, _("|Register%d%x51"));
1092                 if (tmpbuffer->isReadonly()) {
1093                         // signifies that the file is not checked out
1094                         // xgettext:no-c-format
1095                         fl_addtopup(SubVersionControl, _("|Check In Changes%d%x52"));
1096                         // xgettext:no-c-format
1097                         fl_addtopup(SubVersionControl, _("|Check Out for Edit%x53"));
1098                 } else {
1099                         // signifies that the file is checked out
1100                         // xgettext:no-c-format
1101                         fl_addtopup(SubVersionControl, _("|Check In Changes%x52"));
1102                         // xgettext:no-c-format
1103                         fl_addtopup(SubVersionControl, _("|Check Out for Edit%d%x53"));
1104                 }
1105                 // xgettext:no-c-format
1106                 fl_addtopup(SubVersionControl, _("|Revert to last version%x54"));
1107                 // xgettext:no-c-format
1108                 fl_addtopup(SubVersionControl, _("|Undo last check in%x55"));
1109                 // xgettext:no-c-format
1110                 fl_addtopup(SubVersionControl, _("|Show History%x56"));
1111         } else {
1112                 // xgettext:no-c-format
1113                 fl_addtopup(SubVersionControl, _("|Register%x51"));
1114         }
1115         // the shortcuts are not good.
1116         fl_setpup_shortcut(SubVersionControl, 51, scex(_("EMV|Rr#r#R")));
1117         fl_setpup_shortcut(SubVersionControl, 52, scex(_("EMV|Ii#i#I")));
1118         fl_setpup_shortcut(SubVersionControl, 53, scex(_("EMV|Oo#o#O")));
1119         fl_setpup_shortcut(SubVersionControl, 54, scex(_("EMV|lL#l#l")));
1120         fl_setpup_shortcut(SubVersionControl, 55, scex(_("EMV|Uu#u#U")));
1121         fl_setpup_shortcut(SubVersionControl, 56, scex(_("EMV|Hh#h#H")));
1122
1123         int EditMenu= fl_defpup(FL_ObjWin(ob),
1124                                 _("Undo"
1125                                   "|Redo %l"
1126                                   "|Cut"
1127                                   "|Copy"
1128                                   "|Paste%l"
1129                                   "|Find & Replace..."
1130                                   "|Go to Error"
1131                                   "|Go to Note"
1132                                   "|Floats & Insets%m"
1133                                   "|Table%m"
1134                                   "|Spellchecker...."
1135                                   "|Check TeX"
1136                                   "|Table of Contents...%l"
1137                                   "|Version Control%m%l"
1138                                   "|View LaTeX log file%l"
1139                                   "|Paste Primary Selection as Lines"
1140                                   "|Paste Primary Selection as Paragraphs"),
1141                                 SubEditFloats, SubEditTable, SubVersionControl);
1142
1143         fl_setpup_shortcut(EditMenu, 1, scex(_("EM|Uu#u#U")));
1144         fl_setpup_shortcut(EditMenu, 2, scex(_("EM|Rr#r#R")));
1145         fl_setpup_shortcut(EditMenu, 3, scex(_("EM|Cc#c#C")));
1146         fl_setpup_shortcut(EditMenu, 4, scex(_("EM|oO#o#O")));
1147         fl_setpup_shortcut(EditMenu, 5, scex(_("EM|Pp#p#P")));
1148         fl_setpup_shortcut(EditMenu, 6, scex(_("EM|Ff#f#F")));
1149         fl_setpup_shortcut(EditMenu, 7, scex(_("EM|Ee#e#E")));
1150         fl_setpup_shortcut(EditMenu, 8, scex(_("EM|Nn#n#N")));
1151         fl_setpup_shortcut(EditMenu, 9, scex(_("EM|Ii#i#I")));
1152         fl_setpup_shortcut(EditMenu, 10, scex(_("EM|Tt#t#T")));
1153         fl_setpup_shortcut(EditMenu, 11, scex(_("EM|Ss#s#S")));
1154         fl_setpup_shortcut(EditMenu, 12, scex(_("EM|hH#h#H")));
1155         fl_setpup_shortcut(EditMenu, 13, scex(_("EM|aA#a#A")));
1156         fl_setpup_shortcut(EditMenu, 14, scex(_("EM|Vv#v#V")));
1157         fl_setpup_shortcut(EditMenu, 15, scex(_("EM|wW#w#W")));
1158         fl_setpup_shortcut(EditMenu, 16, scex(_("EM|Ll#l#L")));
1159         fl_setpup_shortcut(EditMenu, 17, scex(_("EM|gG#g#G")));
1160       
1161         // disable unavailable entries.
1162         if(tmpbuffer->undostack.empty())
1163                 fl_setpup_mode(EditMenu, 1, FL_PUP_GREY);
1164         if(tmpbuffer->redostack.empty())
1165                 fl_setpup_mode(EditMenu, 2, FL_PUP_GREY);
1166         if(lyxrc.isp_command == "none") 
1167                 fl_setpup_mode(EditMenu, 11, FL_PUP_GREY);
1168         if(lyxrc.chktex_command == "none") 
1169                 fl_setpup_mode(EditMenu, 12, FL_PUP_GREY);
1170
1171         if (tmpbuffer->isReadonly()) {
1172                 fl_setpup_mode(EditMenu, 1, FL_PUP_GREY); 
1173                 fl_setpup_mode(EditMenu, 2, FL_PUP_GREY); 
1174                 fl_setpup_mode(EditMenu, 3, FL_PUP_GREY); 
1175                 fl_setpup_mode(EditMenu, 5, FL_PUP_GREY); 
1176                 fl_setpup_mode(EditMenu, 16, FL_PUP_GREY); 
1177                 fl_setpup_mode(EditMenu, 17, FL_PUP_GREY);
1178         }
1179         
1180         fl_setpup_position(men->_view->getForm()->x + ob->x,
1181                            men->_view->getForm()->y + ob->y +
1182                            ob->h + 10);   
1183         int choice = fl_dopup(EditMenu);
1184         XFlush(fl_display);
1185    
1186         // set the pseudo menu-button back
1187         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1188         fl_redraw_object(ob);
1189
1190         switch (choice) {
1191         case  1: tmpfunc->Dispatch(LFUN_UNDO); break;
1192         case  2: tmpfunc->Dispatch(LFUN_REDO); break;
1193         case  3: tmpfunc->Dispatch(LFUN_CUT); break;
1194         case  4: tmpfunc->Dispatch(LFUN_COPY); break;
1195         case  5: tmpfunc->Dispatch(LFUN_PASTE); break;
1196         case  6: tmpfunc->Dispatch(LFUN_MENUSEARCH); break;
1197         case  7: tmpfunc->Dispatch(LFUN_GOTOERROR); break;
1198         case  8: tmpfunc->Dispatch(LFUN_GOTONOTE); break;
1199         case  9: // floats & insets
1200                 break;
1201         case 10:// table 
1202                 break;
1203         case 11: tmpfunc->Dispatch(LFUN_SPELLCHECK); break;
1204         case 12: tmpfunc->Dispatch(LFUN_RUNCHKTEX); break;
1205         case 13: tmpfunc->Dispatch(LFUN_TOCVIEW); break;
1206         case 14: // version control
1207                 break;
1208         case 15: tmpfunc->Dispatch(LFUN_LATEX_LOG); break;
1209         case 16: tmpfunc->Dispatch(LFUN_PASTESELECTION, "line"); break;
1210         case 17: tmpfunc->Dispatch(LFUN_PASTESELECTION, "paragraph"); break;
1211
1212                 // floats & insets sub-menu
1213         case 21: men->currentView()->toggleFloat(); break;
1214         case 22: tmpfunc->Dispatch(LFUN_MELT); break;
1215         case 23: men->currentView()->allFloats(1, 0); break;
1216         case 24: men->currentView()->allFloats(0, 0); break;
1217         case 25: men->currentView()->allFloats(1, 1); break;
1218         case 26: men->currentView()->allFloats(0, 1); break;
1219         case 27: tmpfunc->Dispatch(LFUN_REMOVEERRORS); break;
1220
1221         case 31: tmpfunc->Dispatch(LFUN_TABLE); break;
1222                 // this is really temporary. We need new function in keybind.C
1223                 // These should set the minibuffer, too.
1224         case 32: case 33: case 34:
1225         case 35: case 36: case 37:
1226         case 38: case 39: case 40: 
1227         case 41: case 42: case 43:
1228         case 44: 
1229                 if (men->currentView()->available()) {
1230                         men->currentView()->hideCursor();
1231                         if (!men->currentView()->text->selection){
1232                                 men->currentView()->beforeChange(); 
1233                                 men->currentView()->update(-2);
1234                         }
1235                         if (men->currentView()->the_locking_inset &&
1236                             (men->currentView()->the_locking_inset->LyxCode()
1237                              == Inset::TABULAR_CODE)) {
1238                                 InsetTabular * inset =
1239                                     static_cast<InsetTabular *>
1240                                        (men->currentView()->the_locking_inset);
1241                                 inset->TabularFeatures(men->currentView(), choice - 32);
1242                         } else {
1243                                 men->currentView()->text->
1244                                         TableFeatures(choice - 32);
1245                                 men->currentView()->update(1);
1246                         }
1247                 }
1248                 break;
1249                 // version control sub-menu
1250         case 51: // register
1251                 tmpfunc->Dispatch(LFUN_VC_REGISTER);
1252                 break;
1253         case 52: // check in
1254                 tmpfunc->Dispatch(LFUN_VC_CHECKIN);
1255                 break;
1256         case 53: // check out
1257                 tmpfunc->Dispatch(LFUN_VC_CHECKOUT);
1258                 break;
1259         case 54: // revert to last
1260                 tmpfunc->Dispatch(LFUN_VC_REVERT);
1261                 break;
1262         case 55: // undo last
1263                 tmpfunc->Dispatch(LFUN_VC_UNDO);
1264                 break;
1265         case 56: // show history
1266                 tmpfunc->Dispatch(LFUN_VC_HISTORY);
1267                 break;
1268         }
1269
1270         fl_freepup(EditMenu);
1271         fl_freepup(SubEditFloats);
1272         fl_freepup(SubEditTable);
1273         fl_freepup(SubVersionControl);
1274 }
1275
1276
1277 void Add_to_toc_menu(vector<Buffer::TocItem> const & toclist, 
1278                      unsigned int from, unsigned int to, int depth,
1279                      int menu, vector<int> & menus, FL_OBJECT * ob)
1280 {
1281         unsigned int const max_number_of_items = 25;
1282         if (to - from <= max_number_of_items)
1283                 for (unsigned int i = from; i < to; ++i)
1284                         fl_addtopup(menu,
1285                                     (string(4*max(0,toclist[i].depth-depth),' ')
1286                                      + toclist[i].str + "%x"
1287                                      + tostr(i+1)).c_str());
1288         else {
1289                 unsigned int pos = from;
1290                 while (pos < to) {
1291                         unsigned int new_pos = pos+1;
1292                         while (new_pos < to &&
1293                                toclist[new_pos].depth > depth)
1294                                 ++new_pos;
1295                         if (new_pos == pos+1) {
1296                                 fl_addtopup(menu,
1297                                             (string(4*max(0,toclist[pos].depth-depth),' ')
1298                                              + toclist[pos].str + "%x"
1299                                              + tostr(pos+1)).c_str() );
1300                         } else {
1301                                 int menu2 = fl_newpup(FL_ObjWin(ob));
1302                                 menus.push_back(menu2);
1303                                 Add_to_toc_menu(toclist, pos, new_pos,
1304                                                 depth+1, menu2, menus,ob);
1305                                 fl_addtopup(menu,
1306                                             (string(4*max(0,toclist[pos].depth-depth),' ')
1307                                              + toclist[pos].str+"%m").c_str(),
1308                                             menu2);
1309                         }
1310                         pos = new_pos;
1311                 }
1312         }
1313 }
1314
1315 int const BIG_NUM = 1048576;
1316
1317 void Menus::ShowTocMenu(FL_OBJECT * ob, long)
1318 {
1319         Menus * men = static_cast<Menus*>(ob->u_vdata);
1320         vector<int> menus;
1321
1322         // set the pseudo menu-button
1323         fl_set_object_boxtype(ob, FL_UP_BOX);
1324         fl_set_button(ob, 0);
1325         fl_redraw_object(ob);
1326    
1327         int TocMenu = fl_newpup(FL_ObjWin(ob));
1328         menus.push_back(TocMenu);
1329         vector<vector<Buffer::TocItem> > toclist =
1330                 men->currentView()->buffer()->getTocList();
1331
1332         //xgettext:no-c-format
1333         static char const * MenuNames[3] = { N_("List of Figures%m%l"),
1334         //xgettext:no-c-format
1335                                              N_("List of Tables%m%l"),
1336         //xgettext:no-c-format
1337                                              N_("List of Algorithms%m%l") };
1338         for (int j = 1; j <= 3; ++j)
1339                 if (!toclist[j].empty()) {
1340                         int menu2 = fl_newpup(FL_ObjWin(ob));
1341                         menus.push_back(menu2);
1342                         for (unsigned int i = 0; i < toclist[j].size(); ++i)
1343                                 fl_addtopup(menu2,
1344                                             (toclist[j][i].str + "%x"
1345                                              + tostr(i+1+j*BIG_NUM)).c_str());
1346                         fl_addtopup(TocMenu, _(MenuNames[j-1]), menu2);
1347                 }
1348
1349         Add_to_toc_menu(toclist[0], 0, toclist[0].size(), 0,
1350                         TocMenu, menus, ob);
1351
1352         fl_setpup_position(
1353                 men->_view->getForm()->x + ob->x,
1354                 men->_view->getForm()->y + ob->y + ob->h + 10);   
1355         int choice = fl_dopup(TocMenu);
1356         XFlush(fl_display);
1357
1358         // set the pseudo menu-button back
1359         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1360         fl_redraw_object(ob);
1361         if (choice == 0)
1362                 men->_view->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
1363         else if (choice > 0) {
1364                 int type = choice / BIG_NUM;
1365                 int num = (choice % BIG_NUM) - 1;
1366                 BufferView *bv = men->currentView();
1367                 bv->beforeChange();
1368                 bv->text->SetCursor(toclist[type][num].par, 0);
1369                 bv->text->sel_cursor = bv->text->cursor;
1370                 bv->update(0);
1371         }
1372         for (unsigned int i = 0; i < menus.size(); ++i)
1373                 fl_freepup(menus[i]);
1374 }
1375
1376 void Add_to_refs_menu(vector<string> const & label_list, int offset,
1377                      int menu, vector<int> & menus, FL_OBJECT * ob)
1378 {
1379         unsigned int const max_number_of_items = 25;
1380         unsigned int const max_number_of_items2 = 20;
1381
1382         if (label_list.size() <= max_number_of_items)
1383                 for (unsigned int i = 0; i < label_list.size(); ++i)
1384                         fl_addtopup(menu,
1385                                     (label_list[i] + "%x"
1386                                      +tostr(i+offset)).c_str());
1387         else
1388                 for (unsigned int i = 0; i < label_list.size();
1389                      i += max_number_of_items2) {
1390                         unsigned int j = std::min(label_list.size(),
1391                                                   i+max_number_of_items2);
1392                         int menu2 = fl_newpup(FL_ObjWin(ob));
1393                         menus.push_back(menu2);
1394                         for (unsigned int k = i;  k < j; ++k)
1395                                 fl_addtopup(menu2,
1396                                             (label_list[k] + "%x"
1397                                              + tostr(k+offset)).c_str());
1398                         fl_addtopup(menu,
1399                                     (label_list[i]+".."
1400                                      +label_list[j-1]+"%m").c_str(),
1401                                     menu2);
1402                 }
1403
1404
1405 }
1406
1407 void Menus::ShowRefsMenu(FL_OBJECT * ob, long)
1408 {
1409         vector<int> menus;
1410
1411         Menus * men = static_cast<Menus*>(ob->u_vdata);
1412
1413         // set the pseudo menu-button
1414         fl_set_object_boxtype(ob, FL_UP_BOX);
1415         fl_set_button(ob, 0);
1416         fl_redraw_object(ob);
1417    
1418         int RefsMenu = fl_newpup(FL_ObjWin(ob));
1419         menus.push_back(RefsMenu);
1420         Buffer * buffer = men->currentView()->buffer();
1421         vector<string> label_list = buffer->getLabelList();
1422         sort(label_list.begin(), label_list.end());
1423
1424         //xgettext:no-c-format
1425         static char const * MenuNames[5] = { N_("Insert Page Number%m"),
1426         //xgettext:no-c-format
1427                                              N_("Insert vref%m"),
1428         //xgettext:no-c-format
1429                                              N_("Insert vpageref%m"),
1430         //xgettext:no-c-format
1431                                              N_("Insert Pretty Ref%m"),
1432         //xgettext:no-c-format
1433                                              N_("Goto Reference%m%l") };
1434
1435         for (int j = 1; j <= 5; ++j) {
1436                 int menu2 = fl_newpup(FL_ObjWin(ob));
1437                 menus.push_back(menu2);
1438                 Add_to_refs_menu(label_list, 1+j*BIG_NUM, menu2, menus, ob);
1439                 fl_addtopup(RefsMenu, _(MenuNames[j-1]), menu2);
1440         }
1441
1442         fl_addtopup(RefsMenu, _("Insert Reference:%d%x0"));
1443         Add_to_refs_menu(label_list, 1, RefsMenu, menus, ob);
1444
1445         if (label_list.empty()) {
1446                 fl_setpup_mode(RefsMenu, 1, FL_PUP_GREY);
1447                 fl_setpup_mode(RefsMenu, 2, FL_PUP_GREY);
1448         }
1449
1450         fl_setpup_position(
1451                 men->_view->getForm()->x + ob->x,
1452                 men->_view->getForm()->y + ob->y + ob->h + 10);   
1453         int choice = fl_dopup(RefsMenu);
1454         XFlush(fl_display);
1455
1456         // set the pseudo menu-button back
1457         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1458         fl_redraw_object(ob);
1459
1460         if (choice > 0) {
1461                 int type = choice / BIG_NUM;
1462                 int num = (choice % BIG_NUM) - 1;
1463                 if (type >= 5)
1464                         men->_view->getLyXFunc()->Dispatch(LFUN_REFGOTO,
1465                                                            label_list[num].c_str());
1466                 else {
1467                         static string const commands[5]
1468                                 = { "\\ref", "\\pageref", "\\vref", "\\vpageref",
1469                                     "\\prettyref"};
1470                         string t = commands[type] + "{" + label_list[num] + "}";
1471                         men->currentView()->insertInset(new InsetRef(t, buffer));
1472                 }
1473         }
1474
1475         for (unsigned int i = 0; i < menus.size(); ++i)
1476                 fl_freepup(menus[i]);
1477 }
1478
1479
1480 void Menus::ShowLayoutMenu(FL_OBJECT * ob, long)
1481 {
1482         Menus * men = static_cast<Menus*>(ob->u_vdata);
1483
1484         if (!men->currentView()->available())
1485                 return;
1486         
1487         // set the pseudo menu-button
1488         fl_set_object_boxtype(ob, FL_UP_BOX);
1489         fl_set_button(ob, 0);
1490         fl_redraw_object(ob);
1491    
1492         Buffer * tmpbuffer = men->_view->buffer();
1493         LyXFunc * tmpfunc = men->_view->getLyXFunc();
1494
1495         int LayoutMenu = fl_newpup(FL_ObjWin(ob));
1496         fl_addtopup(LayoutMenu, _("Character..."
1497                                   "|Paragraph..."
1498                                   "|Document..."
1499                                   "|Paper..."
1500                                   "|Table..."
1501                                   "|Quotes...%l"
1502                                   "|Emphasize Style%b"
1503                                   "|Noun Style%b"
1504                                   "|Bold Style%b"
1505                                   "|TeX Style%b"
1506                                   "|Change Environment Depth"
1507                                   "|LaTeX Preamble...%l"
1508                                   "|Save layout as default"));
1509         fl_setpup_shortcut(LayoutMenu, 1, scex(_("LM|Cc#c#C")));
1510         fl_setpup_shortcut(LayoutMenu, 2, scex(_("LM|Pp#p#P")));
1511         fl_setpup_shortcut(LayoutMenu, 3, scex(_("LM|Dd#d#D")));
1512         fl_setpup_shortcut(LayoutMenu, 4, scex(_("LM|aA#a#A")));
1513         fl_setpup_shortcut(LayoutMenu, 5, scex(_("LM|eE#e#E")));
1514         fl_setpup_shortcut(LayoutMenu, 6, scex(_("LM|Qq#q#Q")));
1515         fl_setpup_shortcut(LayoutMenu, 7, scex(_("LM|mM#m#M")));
1516         fl_setpup_shortcut(LayoutMenu, 8, scex(_("LM|Nn#n#N")));
1517         fl_setpup_shortcut(LayoutMenu, 9, scex(_("LM|Bb#b#B")));
1518         fl_setpup_shortcut(LayoutMenu, 10, scex(_("LM|Tt#t#T")));
1519         fl_setpup_shortcut(LayoutMenu, 11, scex(_("LM|vV#v#V")));
1520         fl_setpup_shortcut(LayoutMenu, 12, scex(_("LM|Ll#l#L")));
1521         fl_setpup_shortcut(LayoutMenu, 13, scex(_("LM|Ss#s#S")));
1522
1523         // Set values of checkboxes according to font
1524         LyXFont font = men->currentView()->text->real_current_font;
1525         if (font.emph() == LyXFont::ON)
1526                 fl_setpup_mode(LayoutMenu, 7, FL_PUP_CHECK);
1527         if (font.noun() == LyXFont::ON)
1528                 fl_setpup_mode(LayoutMenu, 8, FL_PUP_CHECK);
1529         if (font.series() == LyXFont::BOLD_SERIES)
1530                 fl_setpup_mode(LayoutMenu, 9, FL_PUP_CHECK);
1531         if (font.latex() == LyXFont::ON)
1532                 fl_setpup_mode(LayoutMenu, 10, FL_PUP_CHECK);
1533            
1534         // Grey out unavailable entries
1535         if (!men->currentView()->text->cursor.par->table)
1536                 fl_setpup_mode(LayoutMenu, 5, FL_PUP_GREY);
1537
1538         if (tmpbuffer->isReadonly()) {
1539                 fl_setpup_mode(LayoutMenu, 1, FL_PUP_GREY);
1540                 fl_setpup_mode(LayoutMenu, 6, FL_PUP_GREY);
1541                 fl_setpup_mode(LayoutMenu, 11, FL_PUP_GREY);
1542         }
1543
1544         fl_setpup_position(
1545                 men->_view->getForm()->x + ob->x,
1546                 men->_view->getForm()->y + ob->y + ob->h + 10);
1547         int choice = fl_dopup(LayoutMenu);
1548         XFlush(fl_display);
1549
1550         // set the pseudo menu-button back
1551         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1552         fl_redraw_object(ob);
1553
1554         switch (choice) {
1555         case 1:  tmpfunc->Dispatch(LFUN_LAYOUT_CHARACTER); break;
1556         case 2:  tmpfunc->Dispatch(LFUN_LAYOUT_PARAGRAPH); break;
1557         case 3:  tmpfunc->Dispatch(LFUN_LAYOUT_DOCUMENT);  break;
1558         case 4:  tmpfunc->Dispatch(LFUN_LAYOUT_PAPER); break;
1559         case 5:  tmpfunc->Dispatch(LFUN_LAYOUT_TABLE, "true"); break;
1560         case 6:  tmpfunc->Dispatch(LFUN_LAYOUT_QUOTES); break;
1561         case 7:  tmpfunc->Dispatch(LFUN_EMPH); break;
1562         case 8:  tmpfunc->Dispatch(LFUN_NOUN); break;
1563         case 9:  tmpfunc->Dispatch(LFUN_BOLD); break;
1564         case 10: tmpfunc->Dispatch(LFUN_TEX); break;
1565         case 11: tmpfunc->Dispatch(LFUN_DEPTH_PLUS); break;
1566         case 12: tmpfunc->Dispatch(LFUN_LAYOUT_PREAMBLE); break;
1567         case 13: tmpfunc->Dispatch(LFUN_LAYOUT_SAVE_DEFAULT); break;
1568         }
1569         fl_freepup(LayoutMenu); 
1570 }
1571
1572
1573 void Menus::ShowInsertMenu(FL_OBJECT * ob, long)
1574 {
1575         Menus * men = static_cast<Menus*>(ob->u_vdata);
1576         
1577         // set the pseudo menu-button
1578         fl_set_object_boxtype(ob, FL_UP_BOX);
1579         fl_set_button(ob, 0);
1580         fl_redraw_object(ob);
1581  
1582         Buffer * tmpbuffer = men->_view->buffer();
1583         LyXFunc * tmpfunc = men->_view->getLyXFunc();
1584
1585         int SubInsertAscii = fl_defpup(FL_ObjWin(ob),
1586                                        _("Import ASCII file%t"
1587                                          "|As Lines%x41"
1588                                          "|As Paragraphs%x42"));
1589         
1590         fl_setpup_shortcut(SubInsertAscii, 41, scex(_("IMA|Ll#l#L")));
1591         fl_setpup_shortcut(SubInsertAscii, 42, scex(_("IMA|Pp#p#P")));
1592
1593         int SubInsertTableList= fl_defpup(FL_ObjWin(ob),
1594                                           _("Lists & TOC%t"
1595                                             "|Table of Contents%x21"
1596                                             "|List of Figures%x22"
1597                                             "|List of Tables%x23"
1598                                             "|List of Algorithms%x24"
1599                                             "|Index List%x25"
1600                                             "|BibTeX Reference%x26"));
1601         
1602         fl_setpup_shortcut(SubInsertTableList, 21, scex(_("IMT|Cc#c#C")));
1603         fl_setpup_shortcut(SubInsertTableList, 22, scex(_("IMT|Ff#f#F")));
1604         fl_setpup_shortcut(SubInsertTableList, 23, scex(_("IMT|Tt#t#T")));
1605         fl_setpup_shortcut(SubInsertTableList, 24, scex(_("IMT|Aa#a#A")));
1606         fl_setpup_shortcut(SubInsertTableList, 25, scex(_("IMT|Ii#i#I")));
1607         fl_setpup_shortcut(SubInsertTableList, 26, scex(_("IMT|Bb#b#B")));
1608
1609         int SubInsertFloatList = fl_defpup(FL_ObjWin(ob),
1610                                            _("Floats%t"
1611                                              "|Figure Float%x71"
1612                                              "|Table Float%x72"
1613                                              "|Wide Figure Float%x73"
1614                                              "|Wide Table Float%l%x74"
1615                                              "|Algorithm Float%x75"));
1616         
1617         fl_setpup_shortcut(SubInsertFloatList, 71, scex(_("IMF|gG#g#G")));
1618         fl_setpup_shortcut(SubInsertFloatList, 72, scex(_("IMF|Tt#t#T")));
1619         fl_setpup_shortcut(SubInsertFloatList, 73, scex(_("IMF|Ww#w#W")));
1620         fl_setpup_shortcut(SubInsertFloatList, 74, scex(_("IMF|iI#i#I")));
1621         fl_setpup_shortcut(SubInsertFloatList, 75, scex(_("IMF|Aa#a#A")));
1622         
1623         int SubInsertSpecial = fl_defpup(FL_ObjWin(ob),
1624                                          _("Special Character%t"
1625                                            "|HFill%x31"
1626                                            "|Hyphenation Point%x32"
1627                                            "|Protected Blank%x33"
1628                                            "|Linebreak%x34"
1629                                            "|Ellipsis (...)%x35"
1630                                            "|End of sentence period%x36"
1631                                            "|Ordinary Quote (\")%x37"
1632                                            "|Menu Separator %x38"));
1633
1634         fl_setpup_shortcut(SubInsertSpecial, 31, scex(_("IMS|Hh#h#H")));
1635         fl_setpup_shortcut(SubInsertSpecial, 32, scex(_("IMS|Pp#p#P")));
1636         fl_setpup_shortcut(SubInsertSpecial, 33, scex(_("IMS|Bb#b#B")));
1637         fl_setpup_shortcut(SubInsertSpecial, 34, scex(_("IMS|Ll#l#L")));
1638         fl_setpup_shortcut(SubInsertSpecial, 35, scex(_("IMS|iI#i#I")));
1639         fl_setpup_shortcut(SubInsertSpecial, 36, scex(_("IMS|Ee#e#E")));
1640         fl_setpup_shortcut(SubInsertSpecial, 37, scex(_("IMS|Qq#q#Q")));
1641         fl_setpup_shortcut(SubInsertSpecial, 38, scex(_("IMS|Mm#m#M")));
1642         
1643         int InsertMenu = fl_defpup(FL_ObjWin(ob),
1644                                    _("Figure..."
1645                                      "|Table...%l"
1646                                      "|Include File..." 
1647                                      "|Import ASCII File%m"
1648                                      "|Insert LyX File...%l"
1649                                      "|Footnote"
1650                                      "|Margin Note"
1651                                      "|Floats%m%l"      
1652                                      "|Lists & TOC%m%l"
1653                                      "|Special Character%m%l"
1654                                      "|Note..."
1655                                      "|Label..."
1656                                      "|Cross-Reference..."
1657                                      "|Citation Reference..."
1658                                      "|Index entry..."
1659                                      "|Index entry of last word"),
1660                                    SubInsertAscii,
1661                                    SubInsertFloatList,  
1662                                    SubInsertTableList,
1663                                    SubInsertSpecial);
1664
1665         fl_setpup_shortcut(InsertMenu, 1, scex(_("IM|gG#g#G")));
1666         fl_setpup_shortcut(InsertMenu, 2, scex(_("IM|bB#b#B")));
1667         fl_setpup_shortcut(InsertMenu, 3, scex(_("IM|cC#c#C")));
1668         fl_setpup_shortcut(InsertMenu, 4, scex(_("IM|Aa#a#A")));
1669         fl_setpup_shortcut(InsertMenu, 5, scex(_("IM|Xx#x#X")));
1670         fl_setpup_shortcut(InsertMenu, 6, scex(_("IM|Ff#f#F")));
1671         fl_setpup_shortcut(InsertMenu, 7, scex(_("IM|Mm#m#M")));
1672         fl_setpup_shortcut(InsertMenu, 8, scex(_("IM|oO#o#O")));
1673         fl_setpup_shortcut(InsertMenu, 9, scex(_("IM|Tt#t#T")));
1674         fl_setpup_shortcut(InsertMenu, 10, scex(_("IM|Ss#s#S")));
1675         fl_setpup_shortcut(InsertMenu, 11, scex(_("IM|Nn#n#N")));
1676         fl_setpup_shortcut(InsertMenu, 12, scex(_("IM|Ll#l#L")));
1677         fl_setpup_shortcut(InsertMenu, 13, scex(_("IM|rR#r#R")));     
1678         fl_setpup_shortcut(InsertMenu, 14, scex(_("IM|iI#i#I")));
1679         fl_setpup_shortcut(InsertMenu, 15, scex(_("IM|dD#d#D")));
1680         fl_setpup_shortcut(InsertMenu, 16, scex(_("IM|wW#w#W")));
1681
1682         fl_addtopup(InsertMenu, _("|URL..."));
1683         fl_setpup_shortcut(InsertMenu, 17, scex(_("IM|Uu#u#U")));
1684
1685         if (tmpbuffer->isReadonly()) {
1686                 for (int ii = 1; ii <= 16; ++ii)
1687                         fl_setpup_mode(InsertMenu, ii, FL_PUP_GREY);
1688                 fl_setpup_mode(InsertMenu, 17, FL_PUP_GREY);
1689         }
1690
1691         fl_setpup_position(
1692                 men->_view->getForm()->x + ob->x,
1693                 men->_view->getForm()->y + ob->y + ob->h + 10);
1694    
1695         int choice = fl_dopup(InsertMenu);
1696         XFlush(fl_display);
1697
1698         // set the pseudo menu-button back
1699         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1700         fl_redraw_object(ob);
1701
1702         if (men->currentView()->available()){
1703                 men->currentView()->hideCursor();
1704                 switch (choice) {
1705                 case 1: tmpfunc->Dispatch(LFUN_FIGURE); break;
1706                 case 2: tmpfunc->Dispatch(LFUN_TABLE); break;
1707                 case 3: tmpfunc->Dispatch(LFUN_CHILDINSERT); break;
1708                 case 4: // Insert ASCII file submenu
1709                         break;
1710                 case 5: tmpfunc->Dispatch(LFUN_FILE_INSERT); break;
1711                 case 41: tmpfunc->Dispatch(LFUN_FILE_INSERT_ASCII, "line"); break;
1712                 case 42: tmpfunc->Dispatch(LFUN_FILE_INSERT_ASCII, "paragraph"); break;
1713                 case 43: 
1714                         break;
1715
1716                 case 6: tmpfunc->Dispatch(LFUN_FOOTMELT); break
1717                                                                   ;
1718                 case 7: tmpfunc->Dispatch(LFUN_MARGINMELT); break;
1719   
1720                 case 8: // Float sub-menu
1721                 case 71:
1722                         tmpfunc->Dispatch(LFUN_INSERTFOOTNOTE, "figure");
1723                         break;
1724                 case 72:
1725                         tmpfunc->Dispatch(LFUN_INSERTFOOTNOTE, "table");
1726                         break;
1727                 case 73:
1728                         tmpfunc->Dispatch(LFUN_INSERTFOOTNOTE, "wide-fig");
1729                         break;
1730                 case 74:
1731                         tmpfunc->Dispatch(LFUN_INSERTFOOTNOTE, "wide-tab");
1732                         break;
1733                 case 75:
1734                         tmpfunc->Dispatch(LFUN_INSERTFOOTNOTE, "algorithm");
1735                         break;
1736
1737                 case 9: // Table/List submenu
1738                         break;
1739                 case 21: tmpfunc->Dispatch(LFUN_TOC_INSERT); break;
1740                 case 22: tmpfunc->Dispatch(LFUN_LOF_INSERT); break;
1741                 case 23: tmpfunc->Dispatch(LFUN_LOT_INSERT); break;
1742                 case 24: tmpfunc->Dispatch(LFUN_LOA_INSERT); break;
1743                 case 25: tmpfunc->Dispatch(LFUN_INDEX_PRINT); break;
1744                 case 26: tmpfunc->Dispatch(LFUN_INSERT_BIBTEX); break;
1745
1746                 case 10: // Special Character submenu
1747                         break;
1748                 case 31: tmpfunc->Dispatch(LFUN_HFILL); break;
1749                 case 32: tmpfunc->Dispatch(LFUN_HYPHENATION); break;
1750                 case 33: tmpfunc->Dispatch(LFUN_PROTECTEDSPACE); break; 
1751                 case 34: tmpfunc->Dispatch(LFUN_BREAKLINE); break; 
1752                 case 35: tmpfunc->Dispatch(LFUN_LDOTS); break;
1753                 case 36: tmpfunc->Dispatch(LFUN_END_OF_SENTENCE); break;
1754                 case 37: tmpfunc->Dispatch(LFUN_QUOTE); break;
1755                 case 38: tmpfunc->Dispatch(LFUN_MENU_SEPARATOR); break;
1756
1757                 case 11: tmpfunc->Dispatch(LFUN_INSERT_NOTE); break;
1758                 case 12: tmpfunc->Dispatch(LFUN_INSERT_LABEL); break;
1759                 case 13: tmpfunc->Dispatch(LFUN_INSERT_REF); break;
1760                 case 14: tmpfunc->Dispatch(LFUN_INSERT_CITATION); break;
1761                 case 15: tmpfunc->Dispatch(LFUN_INDEX_INSERT); break;
1762                 case 16: tmpfunc->Dispatch(LFUN_INDEX_INSERT_LAST); break;
1763                 case 17: tmpfunc->Dispatch(LFUN_URL); break;
1764                 }
1765         }
1766         fl_freepup(InsertMenu);
1767         fl_freepup(SubInsertAscii);
1768         fl_freepup(SubInsertTableList);
1769         fl_freepup(SubInsertFloatList);
1770         fl_freepup(SubInsertSpecial);
1771 }
1772
1773
1774 void Menus::ShowMathMenu(FL_OBJECT * ob, long)
1775 {
1776         extern void math_insert_symbol(char const * s);
1777
1778         Menus * men = static_cast<Menus*>(ob->u_vdata);
1779
1780         // set the pseudo menu-button
1781         fl_set_object_boxtype(ob, FL_UP_BOX);
1782         fl_set_button(ob, 0);
1783         fl_redraw_object(ob);
1784
1785         Buffer * tmpbuffer = men->_view->buffer();
1786         LyXFunc * tmpfunc = men->_view->getLyXFunc();
1787
1788         int MathMenu = fl_defpup(FL_ObjWin(ob), 
1789                                  _("Fraction"
1790                                    "|Square root"
1791                                    "|Exponent"
1792                                    "|Index"
1793                                    "|Sum"
1794                                    "|Integral%l"
1795                                    "|Math mode"
1796                                    "|Display%l"
1797                                    "|Math Panel..."));
1798
1799         fl_setpup_shortcut(MathMenu, 1, scex(_("MM|Ff#f#F")));
1800         fl_setpup_shortcut(MathMenu, 2, scex(_("MM|Ss#s#S")));
1801         fl_setpup_shortcut(MathMenu, 3, scex(_("MM|Ee#e#E")));
1802         fl_setpup_shortcut(MathMenu, 4, scex(_("MM|xX#x#X")));
1803         fl_setpup_shortcut(MathMenu, 5, scex(_("MM|uU#u#U")));
1804         fl_setpup_shortcut(MathMenu, 6, scex(_("MM|Ii#i#I")));
1805         fl_setpup_shortcut(MathMenu, 7, scex(_("MM|Mm#m#M")));
1806         fl_setpup_shortcut(MathMenu, 8, scex(_("MM|Dd#d#D")));
1807         fl_setpup_shortcut(MathMenu, 9, scex(_("MM|Pp#p#P")));
1808
1809         if (tmpbuffer->isReadonly()) 
1810                 for (int ii = 1; ii <= 9; ++ii)
1811                         fl_setpup_mode(MathMenu, ii, FL_PUP_GREY);
1812
1813
1814         fl_setpup_position(
1815                 men->_view->getForm()->x + ob->x,
1816                 men->_view->getForm()->y + ob->y + ob->h + 10);   
1817         int choice = fl_dopup(MathMenu);  
1818         XFlush(fl_display);
1819
1820         // set the pseudo menu-button back
1821         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1822         fl_redraw_object(ob);
1823
1824         if (men->currentView()->available())  {
1825                 switch (choice) {
1826                 case 1: /* frac */
1827                         tmpfunc->Dispatch(LFUN_INSERT_MATH, "frac");
1828                         break;
1829                 case 2: /* sqrt */
1830                         tmpfunc->Dispatch(LFUN_INSERT_MATH, "sqrt");
1831                         break;
1832                 case 3: /* Exponent */ 
1833                         tmpfunc->Dispatch(LFUN_INSERT_MATH, "^");
1834                         break;
1835                 case 4: /* Index */
1836                         tmpfunc->Dispatch(LFUN_INSERT_MATH, "_");
1837                         break;
1838                 case 5: /* sum */ 
1839                         tmpfunc->Dispatch(LFUN_INSERT_MATH, "sum");
1840                         break;
1841                 case 6: /* int */
1842                         tmpfunc->Dispatch(LFUN_INSERT_MATH, "int");
1843                         break;
1844                 case 7:
1845                         tmpfunc->Dispatch(LFUN_MATH_MODE);
1846                         break;
1847                 case 8:
1848                         tmpfunc->Dispatch(LFUN_MATH_DISPLAY);
1849                         break;
1850                 case 9: /* Panel */
1851                         show_symbols_form(tmpfunc);
1852                         break;
1853                 }
1854                 men->currentView()->update(0);
1855         } 
1856         fl_freepup(MathMenu);
1857 }
1858
1859
1860 void Menus::ShowOptionsMenu(FL_OBJECT * ob, long)
1861 {
1862         Menus * men = static_cast<Menus*>(ob->u_vdata);
1863
1864         // set the pseudo menu-button
1865         fl_set_object_boxtype(ob, FL_UP_BOX);
1866         fl_set_button(ob, 0);
1867         fl_redraw_object(ob);
1868
1869         //Buffer *tmpbuffer = men->_view->currentBuffer();
1870         LyXFunc * tmpfunc = men->_view->getLyXFunc();
1871
1872         int OptionsMenu = fl_defpup(FL_ObjWin(ob),
1873                                     _("Screen Fonts..."
1874                                       "|Spellchecker Options..."
1875                                       "|Keyboard..."
1876                                       "|LaTeX...%l"
1877                                       "|Reconfigure" ));
1878
1879         fl_setpup_shortcut(OptionsMenu, 1, scex(_("OM|Ff#f#F")));
1880         fl_setpup_shortcut(OptionsMenu, 2, scex(_("OM|Ss#s#S")));
1881         fl_setpup_shortcut(OptionsMenu, 3, scex(_("OM|Kk#k#K")));
1882         fl_setpup_shortcut(OptionsMenu, 4, scex(_("OM|Ll#l#L")));
1883         fl_setpup_shortcut(OptionsMenu, 5, scex(_("OM|Rr#r#R")));
1884
1885         if(lyxrc.isp_command == "none") 
1886                 fl_setpup_mode(OptionsMenu, 2, FL_PUP_GREY);
1887
1888         fl_setpup_position(
1889                 men->_view->getForm()->x + ob->x,
1890                 men->_view->getForm()->y + ob->y + ob->h + 10);   
1891         int choice = fl_dopup(OptionsMenu);
1892         XFlush(fl_display);
1893
1894         // set the pseudo menu-button back
1895         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1896         fl_redraw_object(ob);
1897         switch (choice){
1898         case 1: men->ScreenOptions(); break;
1899         case 2: SpellCheckerOptions(); break;      
1900         case 3: men->_view->getIntl()->MenuKeymap(); break;
1901         case 4: LaTeXOptions(men->_view->view()); break;
1902         case 5: tmpfunc->Dispatch(LFUN_RECONFIGURE); break;
1903         default: break;
1904         }   
1905         fl_freepup(OptionsMenu);
1906 }
1907
1908
1909 void Menus::ShowBufferMenu(FL_OBJECT * ob, long)
1910 {
1911         Menus * men = static_cast<Menus*>(ob->u_vdata);
1912         
1913         // set the pseudo menu-button
1914         fl_set_object_boxtype(ob, FL_UP_BOX);
1915         fl_set_button(ob, 0);
1916         fl_redraw_object(ob);
1917    
1918         int BufferMenu = fl_newpup(FL_ObjWin(ob));
1919         vector<string> namevec = bufferlist.getFileNames();
1920         if (namevec.size() != 0) {
1921                 for (vector<string>::const_iterator cit = namevec.begin();
1922                      cit != namevec.end(); ++cit) {
1923                         string relbuf = MakeDisplayPath((*cit), 30);
1924                         fl_addtopup(BufferMenu, relbuf.c_str());
1925                 }
1926         } else {
1927                 fl_addtopup(BufferMenu, _("No Documents Open!%t"));
1928         }
1929    
1930         fl_setpup_position(
1931                 men->_view->getForm()->x + ob->x,
1932                 men->_view->getForm()->y + ob->y + ob->h + 10);   
1933         int choice = fl_dopup(BufferMenu);
1934         XFlush(fl_display);
1935
1936         // set the pseudo menu-button back
1937         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1938         fl_redraw_object(ob);
1939         if (choice > 0) men->handleBufferMenu(choice - 1);
1940    
1941         fl_freepup(BufferMenu);
1942 }
1943
1944
1945 static
1946 char const * doc_files [] = {"Intro", "Tutorial", 
1947                              "UserGuide", "Extended",
1948                              "Customization", "Reference",
1949                              "FAQ", "TOC",  
1950                              "BUGS", "LaTeXConfig"}; 
1951
1952 void Menus::ShowHelpMenu(FL_OBJECT * ob, long)
1953 {
1954         Menus * men = static_cast<Menus*>(ob->u_vdata);
1955
1956         // set the pseudo menu-button
1957         fl_set_object_boxtype(ob, FL_UP_BOX);
1958         fl_set_button(ob, 0);
1959         fl_redraw_object(ob);
1960    
1961         int HelpMenu = fl_defpup(FL_ObjWin(ob),
1962                                  _("Introduction"
1963                                    "|Tutorial"
1964                                    "|User's Guide"
1965                                    "|Extended Features"
1966                                    "|Customization"
1967                                    "|Reference Manual"
1968                                    "|FAQ"
1969                                    "|Table of Contents"
1970                                    "|Known Bugs"
1971                                    "|LaTeX Configuration%l"
1972                                    "|Copyright and Warranty..."
1973                                    "|Credits..."
1974                                    "|Version..."));
1975    
1976         fl_setpup_shortcut(HelpMenu,  1, scex(_("HM|Ii#I#i")));
1977         fl_setpup_shortcut(HelpMenu,  2, scex(_("HM|Tt#T#t")));
1978         fl_setpup_shortcut(HelpMenu,  3, scex(_("HM|Uu#U#u")));
1979         fl_setpup_shortcut(HelpMenu,  4, scex(_("HM|xX#x#X")));
1980         fl_setpup_shortcut(HelpMenu,  5, scex(_("HM|Cc#C#c")));
1981         fl_setpup_shortcut(HelpMenu,  6, scex(_("HM|Rr#R#r")));
1982         fl_setpup_shortcut(HelpMenu,  7, scex(_("HM|Ff#F#f")));
1983         fl_setpup_shortcut(HelpMenu,  8, scex(_("HM|aA#a#A")));
1984         fl_setpup_shortcut(HelpMenu,  9, scex(_("HM|Kk#K#k")));
1985         fl_setpup_shortcut(HelpMenu, 10, scex(_("HM|Ll#L#l")));
1986         fl_setpup_shortcut(HelpMenu, 11, scex(_("HM|oO#o#O")));
1987         fl_setpup_shortcut(HelpMenu, 12, scex(_("HM|eE#e#E")));
1988         fl_setpup_shortcut(HelpMenu, 13, scex(_("HM|Vv#v#V")));
1989
1990         fl_setpup_position(
1991                 men->_view->getForm()->x + ob->x,
1992                 men->_view->getForm()->y + ob->y + ob->h + 10);   
1993         int choice = fl_dopup(HelpMenu);
1994         XFlush(fl_display);
1995
1996         // set the pseudo menu-button back
1997         fl_set_object_boxtype(ob, FL_FLAT_BOX);
1998         fl_redraw_object(ob);
1999
2000         switch (choice) {
2001         case 1: case 2: case 3: case 4: case 5: 
2002         case 6: case 7: case 8: case 9: case 10:
2003                 ProhibitInput(men->currentView());
2004                 men->MenuDocu(doc_files[choice - 1]);
2005                 AllowInput(men->currentView());
2006                 break;
2007         case 11: ShowCopyright(); break;
2008         case 12: ShowCredits(); break;
2009         case 13:
2010                 ProhibitInput(men->currentView());
2011                 fl_show_message((string(_("LyX Version ")) + LYX_VERSION 
2012                                  + _(" of ") + LYX_RELEASE).c_str(),
2013                                 (_("Library directory: ")
2014                                  + MakeDisplayPath(system_lyxdir)).c_str(),
2015                                 (_("User directory: ") 
2016                                  + MakeDisplayPath(user_lyxdir)).c_str());
2017                 AllowInput(men->currentView());
2018                 break;
2019         }
2020         fl_freepup(HelpMenu);
2021 }
2022
2023
2024 void Menus::MenuDocu(string const & docname) 
2025 {
2026         string fname = i18nLibFileSearch("doc", docname, "lyx");
2027         if (fname.empty()) {
2028                 WriteAlert(_("Error!"),
2029                            _("Could not find requested Documentation file"),
2030                            fname);
2031                 return;
2032         }
2033         _view->getMiniBuffer()->Set(_("Opening help file"),
2034                                     MakeDisplayPath(fname), "...");
2035         currentView()->buffer(bufferlist.loadLyXFile(fname, false));
2036
2037         if (docname == "Reference")
2038                 _view->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
2039 }
2040
2041
2042 void Menus::handleBufferMenu(int choice)
2043 {
2044         currentView()->buffer(bufferlist.getBuffer(choice));
2045 }