]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/Menubar_pimpl.C
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / Menubar_pimpl.C
index 6d9cfa47c7feed9969767a26813da03709bc825c..517a4bdb516982dc9dea79f4d2cbeb5f4dd3a789 100644 (file)
 /**
- * \file Menubar_pimpl.C
- * Copyright 1999-2001 The LyX Team.
- * See the file COPYING.
+ * \file qt2/Menubar_pimpl.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author  Lars Gullik Bjønnes, larsbj@lyx.org
+ * \author  Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#include <algorithm>
-
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "Menubar_pimpl.h"
 #include "MenuBackend.h"
 #include "LyXAction.h"
 #include "kbmap.h"
 #include "buffer.h"
-#include "Dialogs.h"
 #include "lyxfunc.h"
 #include "FloatList.h"
 #include "support/lstrings.h"
 #include "support/LAssert.h"
-#include "gettext.h"
+#include "qt_helpers.h"
 #include "debug.h"
 
 #include "QtView.h"
+#include "QLPopupMenu.h"
+
 #include <qmenubar.h>
-#include <qpopupmenu.h>
+#include <qcursor.h>
+
+#include <algorithm>
+
 using std::endl;
 using std::vector;
 using std::max;
 using std::min;
 using std::for_each;
-
-namespace {
-string const getLabel(MenuItem const & mi)
-{
-       string const shortcut = mi.shortcut();
-       string label = mi.label();
-
-       label = subst(label, "&", "&&");
-       if (shortcut.empty())
-               return label;
-       string::size_type pos = label.find(shortcut);
-       if (pos == string::npos)
-               return label;
-       label.insert(pos, "&");
-       return label;
-}
-
-};
-typedef vector<int>::size_type size_type;
-
-extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
-extern LyXAction lyxaction;
+using std::pair;
 
 
-Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe) 
+Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mbe)
        : owner_(static_cast<QtView*>(view)), menubackend_(mbe)
 {
        Menu::const_iterator m = mbe.getMenubar().begin();
        Menu::const_iterator end = mbe.getMenubar().end();
        for (; m != end; ++m) {
-               Menu tomenu;
-               Menu const frommenu = menubackend_.getMenu(m->submenuname());
-               menubackend_.expand(frommenu, tomenu, owner_->buffer());
-               fillMenu(createMenu(owner_->menuBar(), &(*m)), tomenu);
+               pair<int, QLPopupMenu *> menu =
+                       createMenu(owner_->menuBar(), &(*m), this, true);
+               name_map_[m->submenuname()] = menu.second;
        }
 }
 
 
-QPopupMenu * Menubar::Pimpl::createMenu(QMenuData * parent, MenuItem const * item)
-{
-       // FIXME: does this leak or not ?
-       QPopupMenu * pm = new QPopupMenu();
-       int const parentid = parent->insertItem(getLabel(*item).c_str(), pm);
+Menubar::Pimpl::~Pimpl()
+{}
 
-       MenuItemInfo const info(parent, parentid, item);
-       items_[item->label()] = info;
-       return pm;
-}
 
-void Menubar::Pimpl::fillMenu(QMenuData * qmenu, Menu const & menu)
-{
-       Menu::const_iterator m = menu.begin();
-       Menu::const_iterator end = menu.end();
-       for (; m != end; ++m) {
-               if (m->kind() == MenuItem::Separator) {
-                       qmenu->insertSeparator();
-               } else if (m->kind() == MenuItem::Submenu) {
-                       fillMenu(createMenu(qmenu, &(*m)), *m->submenu());
-               } else {
-                       qmenu->insertItem(getLabel(*m).c_str(), m->action());
-                       MenuItemInfo const info(qmenu, m->action(), &(*m));
-                       items_[m->label()] = info;
-                       updateItem(info);
-               }
-       }
-}
-
-// FIXME: this is probably buggy with respect to enabling
-// two-level submenus
-void Menubar::Pimpl::updateSubmenu(MenuItemInfo const & i)
-{
-#if 0 // SEGFAULTS
-// 7  0x0809d372 in Menu::begin (this=0x0) at MenuBackend.h:138
-// 8  0x081dcf60 in Menubar::Pimpl::updateSubmenu (this=0x839eaa0, i=@0xbffff010) at Menubar_pimpl.C:116 
-       bool enable = false;
-       Menu::const_iterator m = i.item_->submenu().begin();
-       Menu::const_iterator end = i.item_->submenu().end();
-       for (; m != end; ++m) {
-               if (m->action() > 0) {
-                       FuncStatus const status =
-                               owner_->getLyXFunc()->getStatus(m->action());
-                       if (!status.disabled())
-                               enable = true;
-               }
-       }
-#else
-       bool enable = true;
-#endif
-       i.parent_->setItemEnabled(i.id_, enable);
-}
-void Menubar::Pimpl::updateItem(MenuItemInfo const & i)
+void Menubar::Pimpl::openByName(string const & name)
 {
-       if (i.item_->kind() == MenuItem::Submenu) {
-               updateSubmenu(i);
-               return;
-       }
-       // FIXME
-       if (i.id_ < 0)
+       NameMap::const_iterator const cit = name_map_.find(name);
+       if (cit == name_map_.end())
                return;
-       FuncStatus const status = owner_->getLyXFunc()->getStatus(i.id_);
-       i.parent_->setItemEnabled(i.id_, !status.disabled());
-       i.parent_->setItemChecked(i.id_, status.onoff(true));
+
+       // this will have to do I'm afraid.
+       cit->second->exec(QCursor::pos());
 }
 
-void Menubar::Pimpl::update()
-{
-       // FIXME: handle special stuff to be updated.
-       ItemMap::const_iterator cit = items_.begin();
-       ItemMap::const_iterator end = items_.end();
 
-       for (; cit != end; ++cit)
-               updateItem(cit->second);
-}
+void Menubar::Pimpl::update()
+{}
 
 
-void Menubar::Pimpl::openByName(string const & name)
+QtView * Menubar::Pimpl::view()
 {
-       lyxerr << "Menubar::Pimpl::openByName: menu " << name << endl;
-
-       ItemMap::iterator it = items_.find(name);
+       return owner_;
+}
 
-       if (it == items_.end())
-               lyxerr << "NOT FOUND " << name << endl;
 
-       // FIXME 
+MenuBackend const & Menubar::Pimpl::backend()
+{
+       return menubackend_;
 }