]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Menubar_pimpl.C
fix crash with "save as"
[lyx.git] / src / frontends / xforms / Menubar_pimpl.C
1 /**
2  * \file xforms/Menubar_pimpl.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author  Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "Menubar_pimpl.h"
18 #include "MenuBackend.h"
19 #include "LyXAction.h"
20 #include "kbmap.h"
21 #include "Dialogs.h"
22 #include "XFormsView.h"
23 #include "lyxfunc.h"
24 #include "support/lstrings.h"
25 #include "support/LAssert.h"
26 #include "gettext.h"
27 #include "debug.h"
28 #include FORMS_H_LOCATION
29
30 #include <boost/scoped_ptr.hpp>
31
32 #include <algorithm>
33
34 using std::endl;
35 using std::vector;
36 using std::max;
37 using std::min;
38 using std::for_each;
39
40 typedef vector<int>::size_type size_type;
41
42 extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
43
44 namespace {
45
46 // Some constants
47 int const MENU_LABEL_SIZE = FL_NORMAL_SIZE;
48 int const MENU_LABEL_STYLE = FL_NORMAL_STYLE;
49 int const mheight = 30;
50 int const mbheight= 22;
51 // where to place the menubar?
52 int const yloc = (mheight - mbheight)/2; //air + bw;
53 int const mbadd = 20; // menu button add (to width)
54 // Some space between buttons on the menubar
55 int const air = 2;
56 char const * menu_tabstop = "aa";
57 char const * default_tabstop = "aaaaaaaa";
58 // We do not want to mix position values in a menu (like the index of
59 // a submenu) with the action numbers which convey actual information.
60 // Therefore we offset all the action values by an arbitrary large
61 // constant.
62 int const action_offset = 1000;
63
64 // This is used a few times below.
65 inline
66 int string_width(string const & str)
67 {
68         return fl_get_string_widthTAB(MENU_LABEL_STYLE, MENU_LABEL_SIZE,
69                                       str.c_str(),
70                                       static_cast<int>(str.length()));
71 }
72
73 } // namespace anon
74
75
76 extern "C" {
77
78         //Defined later, used in makeMenubar().
79         static
80         void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button)
81         {
82                 Menubar::Pimpl::MenuCallback(ob, button);
83         }
84
85 }
86
87
88 Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mb)
89         : owner_(static_cast<XFormsView*>(view)), menubackend_(&mb)
90 {
91         makeMenubar(menubackend_->getMenubar());
92 }
93
94
95 Menubar::Pimpl::~Pimpl()
96 {}
97
98
99 void Menubar::Pimpl::makeMenubar(Menu const & menu)
100 {
101         FL_FORM * form = owner_->getForm();
102         int moffset = 0;
103
104         // Create menu frame if there is non yet.
105         FL_OBJECT * frame = fl_add_frame(FL_UP_FRAME, 0, 0,
106                                          form->w, mheight, "");
107         fl_set_object_resize(frame, FL_RESIZE_ALL);
108         fl_set_object_gravity(frame, NorthWestGravity,
109                               NorthEastGravity);
110
111         Menu::const_iterator i = menu.begin();
112         Menu::const_iterator end = menu.end();
113         for (; i != end; ++i) {
114                 FL_OBJECT * obj;
115                 if (i->kind() != MenuItem::Submenu) {
116                         lyxerr << "ERROR: Menubar::Pimpl::createMenubar:"
117                                 " only submenus can appear in a menubar"
118                                << endl;
119                         continue;
120                 }
121                 string const label = i->label();
122                 string const shortcut = "#" + i->shortcut();
123                 int const width = string_width(label);
124                 obj = fl_add_button(FL_MENU_BUTTON,
125                                     air + moffset, yloc,
126                                     width + mbadd,
127                                     mbheight,
128                                     label.c_str());
129                 fl_set_object_boxtype(obj, FL_FLAT_BOX);
130                 fl_set_object_color(obj, FL_MCOL, FL_MCOL);
131                 fl_set_object_lsize(obj, MENU_LABEL_SIZE);
132                 fl_set_object_lstyle(obj, MENU_LABEL_STYLE);
133                 fl_set_object_resize(obj, FL_RESIZE_ALL);
134                 fl_set_object_gravity(obj, NorthWestGravity,
135                                       NorthWestGravity);
136                 moffset += obj->w + air;
137                 fl_set_object_shortcut(obj, shortcut.c_str(), 1);
138                 fl_set_object_callback(obj, C_Menubar_Pimpl_MenuCallback, 1);
139
140                 boost::shared_ptr<ItemInfo>
141                         iteminfo(new ItemInfo(this, new MenuItem(*i), obj));
142                 buttonlist_.push_back(iteminfo);
143                 obj->u_vdata = iteminfo.get();
144         }
145
146 }
147
148
149 void Menubar::Pimpl::update()
150 {
151         // nothing yet
152 }
153
154
155 void Menubar::Pimpl::openByName(string const & name)
156 {
157         for (ButtonList::const_iterator cit = buttonlist_.begin();
158              cit != buttonlist_.end(); ++cit) {
159                 if ((*cit)->item_->submenuname() == name) {
160                         MenuCallback((*cit)->obj_, 1);
161                         return;
162                 }
163         }
164
165         lyxerr << "Menubar::Pimpl::openByName: menu "
166                << name << " not found" << endl;
167 }
168
169
170 namespace {
171
172 Menu::size_type const max_number_of_items = 25;
173
174 int get_new_submenu(vector<int> & smn, Window win)
175 {
176         static size_type max_number_of_menus = 32;
177         if (smn.size() >= max_number_of_menus)
178                 max_number_of_menus =
179                     fl_setpup_maxpup(static_cast<int>(2*smn.size()));
180         int menu = fl_newpup(win);
181         fl_setpup_softedge(menu, true);
182         fl_setpup_bw(menu, -1);
183         lyxerr[Debug::GUI] << "Adding menu " << menu
184                            << " in deletion list" << endl;
185         smn.push_back(menu);
186         return menu;
187 }
188
189
190 string const fixlabel(string const & str)
191 {
192 #if FL_VERSION < 1 && FL_REVISION < 89
193         return subst(str, '%', '?');
194 #else
195         return subst(str, "%", "%%");
196 #endif
197 }
198
199
200
201 } // namespace anon
202
203
204
205 int Menubar::Pimpl::create_submenu(Window win, XFormsView * view,
206                                    Menu const & menu, vector<int> & smn,
207                                    bool & all_disabled)
208 {
209         const int menuid = get_new_submenu(smn, win);
210         lyxerr[Debug::GUI] << "Menubar::Pimpl::create_submenu: creating "
211                            << menu.name() << " as menuid=" << menuid << endl;
212
213         // Compute the size of the largest label (because xforms is
214         // not able to support shortcuts correctly...)
215         int max_width = 0;
216         string widest_label;
217         Menu::const_iterator end = menu.end();
218         for (Menu::const_iterator i = menu.begin(); i != end; ++i) {
219                 MenuItem const & item = (*i);
220                 if (item.kind() == MenuItem::Command) {
221                         string const label = item.label() + '\t';
222                         int const width = string_width(label);
223                         if (width > max_width) {
224                                 max_width = width;
225                                 widest_label = label;
226                         }
227                 }
228         }
229         lyxerr[Debug::GUI] << "max_width=" << max_width
230                            << ", widest_label=`" << widest_label
231                            << "'" << endl;
232
233         // Compute where to put separators
234         vector<string> extra_labels(menu.size());
235         vector<string>::iterator it = extra_labels.begin();
236         vector<string>::iterator last = it;
237         for (Menu::const_iterator i = menu.begin(); i != end; ++i, ++it)
238                 if (i->kind() == MenuItem::Separator)
239                         *last = "%l";
240                 else if (!i->optional() ||
241                          !(view->getLyXFunc().getStatus(i->action()).disabled()))
242                         last = it;
243
244         it = extra_labels.begin();
245         size_type count = 0;
246         all_disabled = true;
247         int curmenuid = menuid;
248         for (Menu::const_iterator i = menu.begin(); i != end; ++i, ++it) {
249                 MenuItem const & item = (*i);
250                 string & extra_label = *it;
251
252                 ++count;
253                 // add a More... submenu if the menu is too long (but
254                 // not just for one extra entry!)
255                 if (count > max_number_of_items && (i+1) != end) {
256                         int tmpmenuid = get_new_submenu(smn, win);
257                         lyxerr[Debug::GUI] << "Too many items, creating "
258                                            << "new menu " << tmpmenuid << endl;
259                         string label = _("More");
260                         label += "...%m";
261                         fl_addtopup(curmenuid, label.c_str(), tmpmenuid);
262                         count = 1;
263                         curmenuid = tmpmenuid;
264                 }
265
266                 switch (item.kind()) {
267                 case MenuItem::Command: {
268                         FuncStatus const flag =
269                                 view->getLyXFunc().getStatus(item.action());
270                         // handle optional entries.
271                         if (item.optional()
272                             && (flag.disabled())) {
273                                 lyxerr[Debug::GUI]
274                                         << "Skipping optional item "
275                                         << item.label() << endl;
276                                 break;
277                         }
278
279                         // Get the keys bound to this action, but keep only the
280                         // first one later
281                         string const accel =
282                                 toplevel_keymap->findbinding(item.action());
283                         // Build the menu label from all the info
284                         string label = fixlabel(item.label());
285
286                         if (!accel.empty()) {
287                                 // Try to be clever and add  just enough
288                                 // tabs to align shortcuts.
289                                 do
290                                         label += '\t';
291                                 while (string_width(label) < max_width + 5);
292                                 label += accel.substr(1,accel.find(']') - 1);
293                         }
294                         label += "%x" + tostr(item.action() + action_offset)
295                                 + extra_label;
296
297                         // Modify the entry using the function status
298                         string pupmode;
299                         if (flag.onoff(true))
300                                 pupmode += "%B";
301                         if (flag.onoff(false))
302                                 pupmode += "%b";
303                         if (flag.disabled() || flag.unknown())
304                                 pupmode += "%i";
305                         else
306                                 all_disabled = false;
307                         label += pupmode;
308
309                         // Finally the menu shortcut
310                         string shortcut = item.shortcut();
311
312                         if (!shortcut.empty()) {
313                                 shortcut += lowercase(shortcut[0]);
314                                 label += "%h";
315                                 fl_addtopup(curmenuid, label.c_str(),
316                                             shortcut.c_str());
317                         } else
318                                 fl_addtopup(curmenuid, label.c_str());
319
320                         lyxerr[Debug::GUI] << "Command: \""
321                                            << lyxaction.getActionName(item.action())
322                                            << "\", binding \"" << accel
323                                            << "\", shortcut \"" << shortcut
324                                            << "\" (added to menu"
325                                            << curmenuid << ")" << endl;
326                         break;
327                 }
328
329                 case MenuItem::Submenu: {
330                         bool sub_all_disabled;
331                         int submenuid = create_submenu(win, view,
332                                                        *item.submenu(), smn,
333                                                        sub_all_disabled);
334                         all_disabled &= sub_all_disabled;
335                         if (submenuid == -1)
336                                 return -1;
337                         string label = fixlabel(item.label());
338                         label += extra_label + "%m";
339                         if (sub_all_disabled)
340                                 label += "%i";
341                         string shortcut = item.shortcut();
342                         if (!shortcut.empty()) {
343                                 shortcut += lowercase(shortcut[0]);
344                                 label += "%h";
345                                 fl_addtopup(curmenuid, label.c_str(),
346                                             submenuid, shortcut.c_str());
347                         } else {
348                                 fl_addtopup(curmenuid, label.c_str(),
349                                             submenuid);
350                         }
351                         break;
352                 }
353
354                 case MenuItem::Separator:
355                         // already done, and if it was the first one,
356                         // we just ignore it.
357                         break;
358
359
360                 default:
361                         lyxerr << "Menubar::Pimpl::create_submenu: "
362                                 "this should not happen" << endl;
363                         break;
364                 }
365         }
366         return menuid;
367 }
368
369
370 void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
371 {
372         ItemInfo * iteminfo = static_cast<ItemInfo *>(ob->u_vdata);
373         XFormsView * view = iteminfo->pimpl_->owner_;
374         MenuItem const * item = iteminfo->item_.get();
375
376         if (button == 1) {
377                 // set the pseudo menu-button
378                 fl_set_object_boxtype(ob, FL_DOWN_BOX);
379                 fl_set_button(ob, 0);
380                 fl_redraw_object(ob);
381         }
382
383         // Paranoia check
384         lyx::Assert(item->kind() == MenuItem::Submenu);
385
386         // set tabstop length
387         fl_set_tabstop(menu_tabstop);
388
389         MenuBackend const * menubackend_ = iteminfo->pimpl_->menubackend_;
390         Menu tomenu;
391         Menu const frommenu = menubackend_->getMenu(item->submenuname());
392         menubackend_->expand(frommenu, tomenu, view->buffer());
393         vector<int> submenus;
394         bool all_disabled = true;
395         int menu = iteminfo->pimpl_->
396                 create_submenu(FL_ObjWin(ob), view, tomenu,
397                                submenus, all_disabled);
398         if (menu != -1) {
399                 // place popup
400                 fl_setpup_position(view->getForm()->x + ob->x,
401                                    view->getForm()->y + ob->y + ob->h + 10);
402                 int choice = fl_dopup(menu);
403
404                 if (button == 1) {
405                                 // set the pseudo menu-button back
406                         fl_set_object_boxtype(ob, FL_FLAT_BOX);
407                         fl_redraw_object(ob);
408                 }
409
410                 // If the action value is too low, then it is not a
411                 // valid action, but something else.
412                 if (choice >= action_offset + 1) {
413                         view->getLyXFunc().dispatch(choice - action_offset, true);
414                 } else {
415                         lyxerr[Debug::GUI]
416                                 << "MenuCallback: ignoring bogus action "
417                                 << choice << endl;
418                 }
419         } else {
420                 lyxerr << "Error in MenuCallback" << endl;
421         }
422
423         for_each(submenus.begin(), submenus.end(), fl_freepup);
424         // restore tabstop length
425         fl_set_tabstop(default_tabstop);
426
427 }
428
429
430 Menubar::Pimpl::ItemInfo::ItemInfo
431         (Menubar::Pimpl * p, MenuItem const * i, FL_OBJECT * o)
432         : pimpl_(p), obj_(o)
433 {
434         item_.reset(i);
435 }
436
437
438 Menubar::Pimpl::ItemInfo::~ItemInfo()
439 {}