]> git.lyx.org Git - lyx.git/blob - src/MenuBackend.C
Fix fuer #209
[lyx.git] / src / MenuBackend.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  *
10  * ====================================================== */
11
12 #include <config.h>
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif
17
18 #include <algorithm>
19 #include "MenuBackend.h"
20 #include "lyxlex.h"
21 #include "LyXAction.h"
22 #include "debug.h"
23 #include "gettext.h"
24 #include "lastfiles.h"
25 #include "lyx_main.h" // for lastfiles
26 #include "bufferlist.h"
27 #include "converter.h"
28 #include "exporter.h"
29 #include "importer.h"
30 #include "FloatList.h"
31 #include "support/LAssert.h"
32 #include "support/filetools.h"
33 #include "support/lyxfunctional.h"
34 #include "support/lstrings.h"
35
36 extern LyXAction lyxaction;
37 extern BufferList bufferlist;
38
39 using std::endl;
40 using std::vector;
41 using std::pair;
42 using std::find_if;
43 using std::sort;
44
45 // This is the global menu definition
46 MenuBackend menubackend;
47
48
49 MenuItem::MenuItem(Kind kind, string const & label, 
50                    string const & command, bool optional) 
51         : kind_(kind), label_(label), optional_(optional)
52 {
53         switch (kind) {
54         case Separator:
55         case Documents:
56         case Lastfiles:
57         case Toc:
58         case ViewFormats:
59         case UpdateFormats:
60         case ExportFormats:
61         case ImportFormats:
62         case FloatListInsert:
63         case FloatInsert:
64                 break;
65         case Command:
66                 action_ = lyxaction.LookupFunc(command);
67
68                 if (action_ == LFUN_UNKNOWN_ACTION) {
69                         lyxerr << "MenuItem(): LyX command `"
70                                << command << "' does not exist." << endl; 
71                 }
72                 if (optional_)
73                         lyxerr[Debug::GUI] << "Optional item " 
74                                            << command << endl; 
75                 break;
76         case Submenu:
77                 submenu_ = command;
78                 break;
79         }
80 }
81
82
83 string const MenuItem::label() const 
84
85         return token(label_, '|', 0); 
86 }
87
88
89 string const MenuItem::shortcut() const
90
91         return token(label_, '|', 1); 
92 }
93
94
95 Menu & Menu::add(MenuItem const & i)
96 {
97         items_.push_back(i);
98         return *this;
99 }
100
101
102 Menu & Menu::read(LyXLex & lex)
103 {
104         enum Menutags {
105                 md_item = 1,
106                 md_documents,
107                 md_endmenu,
108                 md_exportformats,
109                 md_importformats,
110                 md_lastfiles,
111                 md_optitem,
112                 md_separator,
113                 md_submenu,
114                 md_toc,
115                 md_updateformats,
116                 md_viewformats,
117                 md_floatlistinsert,
118                 md_floatinsert,
119                 md_last
120         };
121
122         struct keyword_item menutags[md_last - 1] = {
123                 { "documents", md_documents },
124                 { "end", md_endmenu },
125                 { "exportformats", md_exportformats },
126                 { "floatinsert", md_floatinsert },
127                 { "floatlistinsert", md_floatlistinsert },
128                 { "importformats", md_importformats },
129                 { "item", md_item },
130                 { "lastfiles", md_lastfiles },
131                 { "optitem", md_optitem }, 
132                 { "separator", md_separator },
133                 { "submenu", md_submenu },
134                 { "toc", md_toc },
135                 { "updateformats", md_updateformats },
136                 { "viewformats", md_viewformats }
137         };
138
139         lex.pushTable(menutags, md_last - 1);
140         if (lyxerr.debugging(Debug::PARSER))
141                 lex.printTable(lyxerr);
142
143         bool quit = false;
144         bool optional = false;
145
146         while (lex.isOK() && !quit) {
147                 switch (lex.lex()) {
148                 case md_optitem:
149                         optional = true;
150                         // fallback to md_item
151                 case md_item: {
152                         lex.next(true);
153                         string const name = _(lex.getString());
154                         lex.next(true);
155                         string const command = lex.getString();
156                         add(MenuItem(MenuItem::Command, name, 
157                                      command, optional));
158                         optional = false;
159                         break;
160                 }
161
162                 case md_separator:
163                         add(MenuItem(MenuItem::Separator));
164                         break;
165
166                 case md_lastfiles:
167                         add(MenuItem(MenuItem::Lastfiles));
168                         break;
169
170                 case md_documents:
171                         add(MenuItem(MenuItem::Documents));
172                         break;
173
174                 case md_toc:
175                         add(MenuItem(MenuItem::Toc));
176                         break;
177
178                 case md_viewformats:
179                         add(MenuItem(MenuItem::ViewFormats));
180                         break;
181
182                 case md_updateformats:
183                         add(MenuItem(MenuItem::UpdateFormats));
184                         break;
185
186                 case md_exportformats:
187                         add(MenuItem(MenuItem::ExportFormats));
188                         break;
189
190                 case md_importformats:
191                         add(MenuItem(MenuItem::ImportFormats));
192                         break;
193
194                 case md_floatlistinsert:
195                         add(MenuItem(MenuItem::FloatListInsert));
196                         break;
197
198                 case md_floatinsert:
199                         add(MenuItem(MenuItem::FloatInsert));
200                         break;
201                         
202                 case md_submenu: {
203                         lex.next(true);
204                         string const mlabel = _(lex.getString());
205                         lex.next(true);
206                         string const mname = lex.getString();
207                         add(MenuItem(MenuItem::Submenu, mlabel, mname));
208                         break;
209                 }
210
211                 case md_endmenu:
212                         quit = true;
213                         break;
214
215                 default:
216                         lex.printError("menubar::read: "
217                                        "Unknown menu tag: `$$Token'");
218                         break;
219                 }
220         }
221         lex.popTable();
222         return *this;
223 }
224
225
226 void Menu::checkShortcuts() const
227 {
228         // This is a quadratic algorithm, but we do not care because
229         // it is used for debugging only.
230         for (const_iterator it1 = begin(); it1 != end(); ++it1) {
231                 string shortcut = it1->shortcut();
232                 if (shortcut.empty())
233                         continue;
234                 if (!contains(it1->label(), shortcut))
235                         lyxerr << "Menu warning: menu entry \""
236                                << it1->label()
237                                << "\" does not contain shortcut `"
238                                << shortcut << '\'' << endl;
239                 for (const_iterator it2 = begin(); it2 != it1 ; ++it2) {
240                         if (!compare_no_case(it2->shortcut(), shortcut)) {
241                                 lyxerr << "Menu warning: menu entries "
242                                        << '"' << it1->fulllabel()
243                                        << "\" and \"" << it2->fulllabel()
244                                        << "\" share the same shortcut."
245                                        << endl;
246                         }
247                 }
248         }
249 }
250
251
252 namespace {
253
254 class compare_format {
255 public:
256         bool operator()(Format const * p1, Format const * p2) {
257                 return *p1 < *p2;       
258         }
259 };
260
261 } // namespace anon
262
263
264 void Menu::expand(Menu & tomenu, Buffer * buf) const
265 {
266         for (const_iterator cit = begin();
267              cit != end() ; ++cit) {
268                 switch (cit->kind()) {
269                 case MenuItem::Lastfiles: {
270                         int ii = 1;
271                         LastFiles::const_iterator lfit = lastfiles->begin();
272                         LastFiles::const_iterator end = lastfiles->end();
273                         
274                         for (; lfit != end && ii < 10; ++lfit, ++ii) {
275                                 string const label = tostr(ii) + ". "
276                                         + MakeDisplayPath((*lfit), 30)
277                                         + '|' + tostr(ii);
278                                 int const action = lyxaction.
279                                         getPseudoAction(LFUN_FILE_OPEN,
280                                                         (*lfit));
281                                 tomenu.add(MenuItem(MenuItem::Command,
282                                                     label, action));
283                         }
284                 }
285                 break;
286                 
287                 case MenuItem::Documents: {
288                         typedef vector<string> Strings;
289                         
290                         Strings const names = bufferlist.getFileNames();
291                         
292                         if (names.empty()) {
293                                 tomenu.add(MenuItem(MenuItem::Command,
294                                                     _("No Documents Open!"),
295                                                     LFUN_NOACTION));
296                                 break;
297                         }
298
299                         Strings::const_iterator docit = names.begin();
300                         Strings::const_iterator end = names.end();
301                         for (; docit != end ; ++docit) {
302                                 int const action = lyxaction
303                                         .getPseudoAction(LFUN_SWITCHBUFFER,
304                                                          *docit);
305                                 string const label =
306                                         MakeDisplayPath(*docit, 30);
307                                 tomenu.add(MenuItem(MenuItem::Command,
308                                                     label, action));
309                         }
310                 }
311                 break;
312
313                 case MenuItem::ImportFormats:
314                 case MenuItem::ViewFormats:
315                 case MenuItem::UpdateFormats:
316                 case MenuItem::ExportFormats: {
317                         typedef vector<Format const *> Formats;
318                         
319                         Formats formats;
320                         
321                         kb_action action;
322                         switch (cit->kind()) {
323                         case MenuItem::ImportFormats:
324                                 formats = Importer::GetImportableFormats();
325                                 action = LFUN_IMPORT;
326                                 break;
327                         case MenuItem::ViewFormats:
328                                 formats = Exporter::GetExportableFormats(buf, true); 
329                                 action = LFUN_PREVIEW;
330                                 break;
331                         case MenuItem::UpdateFormats:
332                                 formats = Exporter::GetExportableFormats(buf, true); 
333                                 action = LFUN_UPDATE;
334                                 break;
335                         default:
336                                 formats = Exporter::GetExportableFormats(buf, false); 
337                                 action = LFUN_EXPORT;
338                         }
339                         sort(formats.begin(), formats.end(), compare_format());
340
341                         Formats::const_iterator fit = formats.begin();
342                         Formats::const_iterator end = formats.end();
343                         
344                         for (; fit != end ; ++fit) {
345                                 if ((*fit)->dummy())
346                                         continue;
347                                 string label = (*fit)->prettyname();
348                                 if (cit->kind() == MenuItem::ImportFormats)
349                                         if ((*fit)->name() == "text")
350                                                 label = _("Ascii text as lines");
351                                         else if ((*fit)->name() == "textparagraph")
352                                                 label = _("Ascii text as paragraphs");
353                                 if (!(*fit)->shortcut().empty())
354                                         label += "|" + (*fit)->shortcut();
355                                 int const action2 = lyxaction.
356                                         getPseudoAction(action,
357                                                         (*fit)->name());
358                                 tomenu.add(MenuItem(MenuItem::Command,
359                                                     label, action2));
360                         }
361                 }
362                 break;
363
364                 case MenuItem::FloatListInsert:
365                 {
366                         FloatList::const_iterator cit = floatList.begin();
367                         FloatList::const_iterator end = floatList.end();
368                         for (; cit != end; ++cit) {
369                                 int const action =  lyxaction
370                                         .getPseudoAction(LFUN_FLOAT_LIST,
371                                                          cit->second.type());
372                                 string const label = cit->second.name() + _(" List");
373                                 tomenu.add(MenuItem(MenuItem::Command,
374                                                     label, action));
375                         }
376                 }
377                 break;
378
379                 case MenuItem::FloatInsert:
380                 {
381                         FloatList::const_iterator cit = floatList.begin();
382                         FloatList::const_iterator end = floatList.end();
383                         for (; cit != end; ++cit) {
384                                 // normal float
385                                 int const action = lyxaction
386                                         .getPseudoAction(LFUN_INSET_FLOAT,
387                                                          cit->second.type());
388                                 string const label = cit->second.name();
389                                 tomenu.add(MenuItem(MenuItem::Command,
390                                                     label, action));
391                                 
392                                 // and the wide version
393                                 int const action2 = lyxaction
394                                         .getPseudoAction(LFUN_INSET_WIDE_FLOAT,
395                                                          cit->second.type());
396                                 string const label2 = _("Wide ") + label;
397                                 tomenu.add(MenuItem(MenuItem::Command,
398                                                     label2, action2));
399                         }
400                 }
401                 break;
402                 
403                 default:
404                         tomenu.add(*cit);
405                 }
406         }
407
408         // Check whether the shortcuts are unique
409         if (lyxerr.debugging(Debug::GUI))
410                 checkShortcuts();
411 }
412
413
414 bool Menu::hasSubmenu(string const & name) const
415 {
416         return find_if(begin(), end(),
417                        lyx::compare_memfun(&MenuItem::submenu, name)) != end();
418 }
419
420
421 void MenuBackend::read(LyXLex & lex)
422 {
423         enum Menutags {
424                 md_menu = 1,
425                 md_menubar,
426                 md_endmenuset,
427                 md_last
428         };
429
430         struct keyword_item menutags[md_last - 1] = {
431                 { "end", md_endmenuset },
432                 { "menu", md_menu },
433                 { "menubar", md_menubar }
434         };
435
436         //consistency check
437         if (compare_no_case(lex.getString(), "menuset")) {
438                 lyxerr << "Menubackend::read: ERROR wrong token:`"
439                        << lex.getString() << '\'' << endl;
440         }
441
442         lex.pushTable(menutags, md_last - 1);
443         if (lyxerr.debugging(Debug::PARSER))
444                 lex.printTable(lyxerr);
445
446         bool quit = false;
447         bool menubar = false;
448
449         while (lex.isOK() && !quit) {
450                 switch (lex.lex()) {
451                 case md_menubar: 
452                         menubar = true;
453                         // fallback to md_menu
454                 case md_menu: {
455                         lex.next(true);
456                         string const name = lex.getString();
457                         if (hasMenu(name)) {
458                                 if (getMenu(name).menubar() == menubar) {
459                                         getMenu(name).read(lex);
460                                 } else {
461                                         lex.printError("Cannot append to menu `$$Token' unless it is of the same type");
462                                         return;
463                                 }
464                         } else {                                
465                                 Menu menu(name, menubar);
466                                 menu.read(lex);
467                                 add(menu);
468                         }
469                         menubar = false;
470                         break;
471                 }
472                 case md_endmenuset:
473                         quit = true;
474                         break;
475                 default:
476                         lex.printError("menubackend::read: "
477                                        "Unknown menu tag: `$$Token'");
478                         break;
479                 }
480         }
481         lex.popTable();
482 }
483
484
485 void MenuBackend::defaults()
486 {
487         menulist_.clear();
488
489         lyxerr[Debug::GUI] << "MenuBackend::defaults: using default values" 
490                            << endl;
491
492         Menu file("file");
493         file
494                 .add(MenuItem(MenuItem::Command, _("New...|N"), "buffer-new"))
495                 .add(MenuItem(MenuItem::Command, _("Open...|O"), "buffer-open"))
496                 .add(MenuItem(MenuItem::Submenu, _("Import|I"), "import"))
497                 .add(MenuItem(MenuItem::Command, _("Quit|Q"), "lyx-quit"))
498                 .add(MenuItem(MenuItem::Separator))
499                 .add(MenuItem(MenuItem::Lastfiles));
500         add(file);
501
502         Menu import("import");
503         import
504                 .add(MenuItem(MenuItem::Command,
505                               _("LaTeX...|L"), "buffer-import latex"))
506                 .add(MenuItem(MenuItem::Command,
507                               _("LinuxDoc...|L"), "buffer-import linuxdoc"));
508         add(import);
509  
510         Menu edit("edit");
511         edit
512                 .add(MenuItem(MenuItem::Command, _("Cut"), "cut"))
513                 .add(MenuItem(MenuItem::Command, _("Copy"), "copy"))
514                 .add(MenuItem(MenuItem::Command, _("Paste"), "paste"))
515                 .add(MenuItem(MenuItem::Command, _("Emphasize"), "font-emph"));
516         add(edit);
517
518         Menu documents("documents");
519         documents.add(MenuItem(MenuItem::Documents));
520         add(documents);
521
522         Menu main("main", true);
523         main
524                 .add(MenuItem(MenuItem::Submenu, _("File|F"), "file"))
525                 .add(MenuItem(MenuItem::Submenu, _("Edit|E"), "edit"))
526                 .add(MenuItem(MenuItem::Submenu,
527                               _("Documents|D"), "documents"));
528         add(main);
529
530         Menu main_nobuffer("main_nobuffer", true);
531         main_nobuffer.add(MenuItem(MenuItem::Submenu, _("File|F"), "file"));
532         add(main_nobuffer);
533
534         if (lyxerr.debugging(Debug::GUI)) {
535                 for (const_iterator cit = begin();
536                     cit != end() ; ++cit)
537                         lyxerr << "Menu name: " << cit->name() 
538                                << ", Menubar: " << cit->menubar() 
539                                << endl;
540         }
541 }
542
543
544 void MenuBackend::add(Menu const & menu)
545 {
546         menulist_.push_back(menu);
547 }
548
549
550 bool MenuBackend::hasMenu(string const & name) const
551 {
552         return find_if(begin(), end(),
553                        lyx::compare_memfun(&Menu::name, name)) != end();
554 }
555
556
557 Menu const & MenuBackend::getMenu(string const & name) const
558 {
559         const_iterator cit = find_if(begin(), end(),
560                                      lyx::compare_memfun(&Menu::name, name));
561         lyx::Assert(cit != end());
562         return (*cit);
563 }
564
565
566 Menu & MenuBackend::getMenu(string const & name)
567 {
568         MenuList::iterator it =
569                 find_if(menulist_.begin(), menulist_.end(),
570                         lyx::compare_memfun(&Menu::name, name));
571         lyx::Assert(it != menulist_.end());
572         return (*it);
573 }