]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/Menubar_pimpl.C
func_status cleanup from Martin; fix small configure bug
[lyx.git] / src / frontends / xforms / Menubar_pimpl.C
index f06aaaee9247b8202400b13d153ef5553201ee2a..81b1c3ebb01fe78c14729ddc36ae26b3e2c96ad9 100644 (file)
@@ -3,9 +3,9 @@
 * 
 *           LyX, The Document Processor
 *       
-*           Copyright (C) 1999 The LyX Team.
+*           Copyright 1999-2001 The LyX Team.
 *
-*======================================================*/
+* ======================================================*/
 
 #include <config.h>
 
 #pragma implementation
 #endif
 
-#include "support/lstrings.h"
-#include "support/LAssert.h"
-#include "debug.h"
+#include "Menubar_pimpl.h"
+#include "MenuBackend.h"
 #include "LyXAction.h"
-#include "lyxfunc.h"
 #include "kbmap.h"
 #include "buffer.h"
 #include "Dialogs.h"
-#include "LyXView.h"
-#include "MenuBackend.h"
-#include "Menubar_pimpl.h"
+#include "XFormsView.h"
+#include "lyxfunc.h"
+#include "FloatList.h"
+#include "support/lstrings.h"
+#include "support/LAssert.h"
 #include "gettext.h"
+#include "debug.h"
 
 using std::endl;
 using std::vector;
@@ -41,27 +42,28 @@ extern LyXAction lyxaction;
 namespace {
 
 // Some constants
-const int MENU_LABEL_SIZE = FL_NORMAL_SIZE;
-const int mheight = 30;
-const int mbheight= 22;
+int const MENU_LABEL_SIZE = FL_NORMAL_SIZE;
+int const MENU_LABEL_STYLE = FL_BOLD_STYLE;
+int const mheight = 30;
+int const mbheight= 22;
 // where to place the menubar?
-const int yloc = (mheight - mbheight)/2; //air + bw;
-const int mbadd = 20; // menu button add (to width)
+int const yloc = (mheight - mbheight)/2; //air + bw;
+int const mbadd = 20; // menu button add (to width)
 // Some space between buttons on the menubar 
-const int air = 2;
+int const air = 2;
 char const * menu_tabstop = "aa";
 char const * default_tabstop = "aaaaaaaa";
 // We do not want to mix position values in a menu (like the index of
 // a submenu) with the action numbers which convey actual information.
 // Therefore we offset all the action values by an arbitrary large
 // constant. 
-const int action_offset = 1000;
+int const action_offset = 1000;
 
 // This is used a few times below.
 inline
 int string_width(string const & str) 
 {
-       return fl_get_string_widthTAB(FL_NORMAL_STYLE, MENU_LABEL_SIZE,
+       return fl_get_string_widthTAB(MENU_LABEL_STYLE, MENU_LABEL_SIZE,
                                      str.c_str(),
                                      static_cast<int>(str.length()));
 }
@@ -69,9 +71,16 @@ int string_width(string const & str)
 } // namespace anon
 
 
-//Defined later, used in makeMenubar().
-extern "C"
-void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button);
+extern "C" {
+
+       //Defined later, used in makeMenubar().
+       static
+       void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button)
+       {
+               Menubar::Pimpl::MenuCallback(ob, button);
+       }
+       
+}
 
 
 Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mb) 
@@ -94,9 +103,9 @@ Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mb)
 }
 
 
-void Menubar::Pimpl::makeMenubar(Menu const &menu)
+void Menubar::Pimpl::makeMenubar(Menu const & menu)
 {
-       FL_FORM * form = owner_->getForm(); 
+       FL_FORM * form = static_cast<XFormsView *>(owner_)->getForm(); 
        int moffset = 0;
 
        // Create menu frame if there is non yet.
@@ -106,17 +115,18 @@ void Menubar::Pimpl::makeMenubar(Menu const &menu)
        fl_set_object_gravity(frame, NorthWestGravity, 
                              NorthEastGravity);
 
-       for (Menu::const_iterator i = menu.begin(); 
-            i != menu.end(); ++i) {
+       Menu::const_iterator i = menu.begin();
+       Menu::const_iterator end = menu.end();
+       for (; i != end; ++i) {
                FL_OBJECT * obj;
                if (i->kind() != MenuItem::Submenu) {
                        lyxerr << "ERROR: Menubar::Pimpl::createMenubar:"
                                " only submenus can appear in a menubar";
                        break;
                }
-               string label = i->label();
-               string shortcut = "#" + i->shortcut();
-               int width = string_width(label);
+               string const label = i->label();
+               string const shortcut = "#" + i->shortcut();
+               int const width = string_width(label);
                obj = fl_add_button(FL_MENU_BUTTON,
                                    air + moffset, yloc,
                                    width + mbadd,
@@ -125,7 +135,7 @@ void Menubar::Pimpl::makeMenubar(Menu const &menu)
                fl_set_object_boxtype(obj, FL_FLAT_BOX);
                fl_set_object_color(obj, FL_MCOL, FL_MCOL);
                fl_set_object_lsize(obj, MENU_LABEL_SIZE);
-               fl_set_object_lstyle(obj, FL_NORMAL_STYLE);
+               fl_set_object_lstyle(obj, MENU_LABEL_STYLE);
                fl_set_object_resize(obj, FL_RESIZE_ALL);
                fl_set_object_gravity(obj, NorthWestGravity, 
                                      NorthWestGravity);
@@ -133,14 +143,15 @@ void Menubar::Pimpl::makeMenubar(Menu const &menu)
                fl_set_object_shortcut(obj, shortcut.c_str(), 1);
                fl_set_object_callback(obj, C_Menubar_Pimpl_MenuCallback, 1);
 
-               boost::shared_ptr<ItemInfo> iteminfo(new ItemInfo(this, 
-                                                  new MenuItem(*i), obj));
+               boost::shared_ptr<ItemInfo>
+                       iteminfo(new ItemInfo(this, new MenuItem(*i), obj));
                buttonlist_.push_back(iteminfo);
                obj->u_vdata = iteminfo.get();
        }
 
 }
 
+
 void Menubar::Pimpl::set(string const & menu_name) 
 {
        lyxerr[Debug::GUI] << "Entering Menubar::Pimpl::set " 
@@ -168,12 +179,12 @@ void Menubar::Pimpl::set(string const & menu_name)
                current_group_ = mbit->second;
                lyxerr[Debug::GUI] << "Menubar::Pimpl::set: Menubar set."
                                   << endl;
-       }
-       else
+       } else
                lyxerr [Debug::GUI] << "Menubar::Pimpl::set: Nothing to do."
                                    << endl;
 } 
 
+
 void Menubar::Pimpl::openByName(string const & name)
 {
        if (menubackend_->getMenu(current_menu_name_).hasSubmenu(name)) {
@@ -228,7 +239,6 @@ string const fixlabel(string const & str)
 #endif
 }
 
-} // namespace anon
 
 
 void add_toc2(int menu, string const & extra_label,
@@ -315,75 +325,34 @@ void add_toc2(int menu, string const & extra_label,
        }
 }
 
+} // namespace anon
 
 void Menubar::Pimpl::add_toc(int menu, string const & extra_label,
                             vector<int> & smn, Window win)
 {
-#if 0
-       //xgettext:no-c-format
-       static char const * MenuNames[3] = { N_("List of Figures%m"),
-       //xgettext:no-c-format
-                                            N_("List of Tables%m"),
-       //xgettext:no-c-format
-                                            N_("List of Algorithms%m") };
-
-       vector<vector<Buffer::TocItem> > toc_list =
-               owner_->buffer()->getTocList();
-
-       // Handle LOF/LOT/LOA
-       int max_nonempty = 0;
-       for (int i = 1; i <= 3; ++i)
-               if (!toc_list[i].empty())
-                       max_nonempty = i;
-
-       for (int j = 1; j <= 3; ++j)
-               if (!toc_list[j].empty()) {
-                       int menu2 = get_new_submenu(smn, win);
-                       for (size_type i = 0; i < toc_list[j].size(); ++i) {
-                               if (i > max_number_of_items) {
-                                       fl_addtopup(menu2, ". . .%d");
-                                       break;
-                               }
-                               int const action = lyxaction.
-                                       getPseudoAction(LFUN_GOTO_PARAGRAPH,
-                                                       tostr(toc_list[j][i].par->id()));
-                               string label = fixlabel(toc_list[j][i].str);
-                               label = limit_string_length(label);
-                               label += "%x" + tostr(action + action_offset);
-                               fl_addtopup(menu2, label.c_str());
-                       }
-                       if (j == max_nonempty) {
-                               string label = _(MenuNames[j - 1]);
-                               label += "%l";
-                               fl_addtopup(menu, label.c_str(), menu2);
-                       } else
-                               fl_addtopup(menu, _(MenuNames[j - 1]), menu2);
-               }
-
-       // Handle normal TOC
-       if (max_nonempty == 0 && toc_list[0].empty()) {
-               fl_addtopup(menu, (_("No Table of Contents%i")
-                                  + extra_label).c_str());
-               return;
-       }
-
-       add_toc2(menu, extra_label, smn, win,
-                toc_list[0], 0, toc_list[0].size(), 0);
-#else
-#ifdef WITH_WARNINGS
-#warning Fix Me! (Lgb)
-#endif
        Buffer::Lists toc_list = owner_->buffer()->getLists();
        Buffer::Lists::const_iterator cit = toc_list.begin();
        Buffer::Lists::const_iterator end = toc_list.end();
        for (; cit != end; ++cit) {
                // Handle this elsewhere
                if (cit->first == "TOC") continue;
-               
-               int menu2 = get_new_submenu(smn, win);
+
+               // All the rest is for floats
+               int menu_first_sub = get_new_submenu(smn, win);
+               int menu_current = menu_first_sub;
                Buffer::SingleList::const_iterator ccit = cit->second.begin();
                Buffer::SingleList::const_iterator eend = cit->second.end();
+               size_type count = 0;
                for (; ccit != eend; ++ccit) {
+                       ++count;
+                       if (count > max_number_of_items) {
+                               int menu_tmp = get_new_submenu(smn, win);
+                               string label = _("More");
+                               label += "...%m";
+                               fl_addtopup(menu_current, label.c_str(), menu_tmp);
+                               count = 1;
+                               menu_current = menu_tmp;
+                       }
                        int const action =
                                lyxaction
                                .getPseudoAction(LFUN_GOTO_PARAGRAPH,
@@ -391,10 +360,10 @@ void Menubar::Pimpl::add_toc(int menu, string const & extra_label,
                        string label = fixlabel(ccit->str);
                        label = limit_string_length(label);
                        label += "%x" + tostr(action + action_offset);
-                       fl_addtopup(menu2, label.c_str());
+                       fl_addtopup(menu_current, label.c_str());
                }
-               string const m = cit->first + "%m";
-               fl_addtopup(menu, m.c_str(), menu2);
+               string const m = floatList[cit->first]->second.name() + "%m";
+               fl_addtopup(menu, m.c_str(), menu_first_sub);
        }
        
        
@@ -408,10 +377,9 @@ void Menubar::Pimpl::add_toc(int menu, string const & extra_label,
                add_toc2(menu, extra_label, smn, win,
                         cit->second, 0, cit->second.size(), 0);
        }
-       
-#endif
 }
 
+
 int Menubar::Pimpl::create_submenu(Window win, LyXView * view, 
                                   string const & menu_name, 
                                   vector<int> & smn) 
@@ -421,10 +389,10 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
                       << menu_name << "'" << endl;
                return -1;
        }
-       Menu md = Menu();
+       Menu md;
        menubackend_->getMenu(menu_name).expand(md, owner_->buffer());
 
-       int menu = get_new_submenu(smn, win);
+       int const menu = get_new_submenu(smn, win);
        fl_setpup_softedge(menu, true);
        fl_setpup_bw(menu, -1);
        lyxerr[Debug::GUI] << "Adding menu " << menu 
@@ -438,8 +406,8 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
        for (Menu::const_iterator i = md.begin(); i != end; ++i) {
                MenuItem const & item = (*i);
                if (item.kind() == MenuItem::Command) {
-                       string label = item.label() + '\t';
-                       int width = string_width(label);
+                       string const label = item.label() + '\t';
+                       int const width = string_width(label);
                        if (width > max_width) {
                                max_width = width;
                                widest_label = label;
@@ -458,7 +426,7 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
                if (i->kind() == MenuItem::Separator)
                        *last = "%l";
                else if (!i->optional() ||
-                        !(view->getLyXFunc()->getStatus(i->action()) & LyXFunc::Disabled))
+                        !(view->getLyXFunc()->getStatus(i->action()).disabled()))
                        last = it;
 
        it = extra_labels.begin();
@@ -468,11 +436,12 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
 
                switch (item.kind()) {
                case MenuItem::Command: {
-                       LyXFunc::func_status flag = 
+                       FuncStatus flag = 
                                view->getLyXFunc()->getStatus(item.action()); 
 
                        // handle optional entries.
-                       if (item.optional() && (flag & LyXFunc::Disabled)) {
+                       if (item.optional() 
+                           && (flag.disabled())) {
                                lyxerr[Debug::GUI] 
                                        << "Skipping optional item " 
                                        << item.label() << endl; 
@@ -481,7 +450,7 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
 
                        // Get the keys bound to this action, but keep only the
                        // first one later
-                       string const accel = toplevel_keymap->findbinding(item.action());
+                       string const accel = toplevel_keymap->findbinding(kb_action(item.action()));
                        // Build the menu label from all the info
                        string label = item.label();
 
@@ -498,11 +467,11 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
                        
                        // Modify the entry using the function status
                        string pupmode;
-                       if (flag & (LyXFunc::Disabled | LyXFunc::Unknown))
+                       if (flag.disabled() || flag.unknown())
                                pupmode += "%i";
-                       if (flag & LyXFunc::ToggleOn)
+                       if (flag.onoff(true))
                                pupmode += "%B";
-                       if (flag & LyXFunc::ToggleOff)
+                       if (flag.onoff(false))
                                pupmode += "%b";
                        label += pupmode;
 
@@ -538,8 +507,7 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
                                label += "%h";
                                fl_addtopup(menu, label.c_str(),
                                            submenu, shortcut.c_str());
-                       }
-                       else {
+                       } else {
                                fl_addtopup(menu, label.c_str(), submenu);
                        }
                        break;
@@ -560,6 +528,8 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
                case MenuItem::UpdateFormats:
                case MenuItem::ExportFormats:
                case MenuItem::ImportFormats:
+               case MenuItem::FloatListInsert:
+               case MenuItem::FloatInsert:
                        lyxerr << "Menubar::Pimpl::create_submenu: "
                                "this should not happen" << endl;
                        break;
@@ -570,13 +540,6 @@ int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
 }
 
 
-extern "C"
-void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button)
-{
-       Menubar::Pimpl::MenuCallback(ob, button);
-}
-
-
 void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
 {
        ItemInfo * iteminfo = static_cast<ItemInfo *>(ob->u_vdata);
@@ -588,12 +551,6 @@ void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
        LyXView * view = iteminfo->pimpl_->owner_;
        MenuItem const * item = iteminfo->item_.get();
 
-       /* get the splash out of the way. It would be nicer
-        * to only have this code at the start, but xforms
-        * makes it too ugly to do
-        */
-       view->getDialogs()->destroySplash();
        if (button == 1) {
                // set the pseudo menu-button
                fl_set_object_boxtype(ob, FL_DOWN_BOX);
@@ -602,7 +559,7 @@ void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
        }
 
        // Paranoia check
-       Assert(item->kind() == MenuItem::Submenu);
+       lyx::Assert(item->kind() == MenuItem::Submenu);
        
        // set tabstop length
        fl_set_tabstop(menu_tabstop);
@@ -612,8 +569,8 @@ void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
                               item->submenu(), submenus);
        if (menu != -1) {
                // place popup
-               fl_setpup_position(view->getForm()->x + ob->x,
-                                  view->getForm()->y + ob->y + ob->h + 10);   
+               fl_setpup_position(static_cast<XFormsView *>(view)->getForm()->x + ob->x,
+                                  static_cast<XFormsView *>(view)->getForm()->y + ob->y + ob->h + 10);   
                int choice = fl_dopup(menu);
                
                if (button == 1) {
@@ -625,16 +582,15 @@ void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
                // If the action value is too low, then it is not a
                // valid action, but something else.
                if (choice >= action_offset + 1) {
-                       view->getLyXFunc()->Dispatch(choice - action_offset);
-               }
-               else {
+                       view->getLyXFunc()->dispatch(choice - action_offset);
+               } else {
                        lyxerr[Debug::GUI]
                                << "MenuCallback: ignoring bogus action "
                                << choice << endl;
                }
-       }
-       else 
+       } else {
                lyxerr << "Error in MenuCallback" << endl;
+       }
        
        std::for_each(submenus.begin(), submenus.end(), fl_freepup);
        // restore tabstop length