]> git.lyx.org Git - features.git/commitdiff
Fix the missing dynamic menus in general and restore correctly from fullscreen.
authorStephan Witt <switt@lyx.org>
Wed, 29 Jan 2014 18:20:01 +0000 (19:20 +0100)
committerStephan Witt <switt@lyx.org>
Wed, 29 Jan 2014 18:20:01 +0000 (19:20 +0100)
src/frontends/qt4/GuiView.cpp
src/frontends/qt4/GuiView.h
src/frontends/qt4/Menus.cpp
status.20x

index 6195195252c94c4f09bb052d4287fdb10ba1d45b..095c4275fbb247e9b93f25bd2346fb841349252a 100644 (file)
@@ -528,7 +528,7 @@ QVector<GuiWorkArea*> GuiView::GuiViewPrivate::guiWorkAreas()
 }
 
 
-#if defined(Q_WS_MACX)
+#if defined(Q_WS_MACX) && defined(QT_MAC_USE_COCOA)
 QMenuBar * GuiView::menuBar() const
 {
        static QMenuBar * globalMenuBar = new QMenuBar(0);
index 02199c1a98c39d53d4d85072fb13b387ab08e135..b5ba3d9c44e9a97e033909555313d1494f3bc3a6 100644 (file)
@@ -137,7 +137,7 @@ public:
        GuiToolbar * makeToolbar(ToolbarInfo const & tbinfo, bool newline);
        void updateStatusBar();
 
-#if defined(Q_WS_MACX)
+#if defined(Q_WS_MACX) && defined(QT_MAC_USE_COCOA)
        // We have to share one menu bar, so we must create a menu bar that does not have a parent.
        // To enforce this we override the QMainWindow::menuBar() implementation.
        // See https://bugreports.qt-project.org/browse/QTBUG-25399
index 9e90147ba45378a936c37653510f14b14f27fff1..4c44be5dc39687fd092df9900cf5aabadf61f859 100644 (file)
@@ -1355,6 +1355,7 @@ void MenuDefinition::expandBranches(Buffer const * buf)
        BufferParams const & master_params = buf->masterBuffer()->params();
        BufferParams const & params = buf->params();
        if (params.branchlist().empty() && master_params.branchlist().empty() ) {
+               LYXERR(Debug::GUI, "No Branches set for Document");
                add(MenuItem(MenuItem::Help, qt_("No Branches Set for Document!")));
                return;
        }
@@ -1368,6 +1369,7 @@ void MenuDefinition::expandBranches(Buffer const * buf)
                        label = convert<docstring>(ii) + ". " + label
                                + char_type('|') + convert<docstring>(ii);
                }
+               LYXERR(Debug::GUI, "Add item for branch " << label);
                addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
                                    FuncRequest(LFUN_BRANCH_INSERT,
                                                cit->branch())));
@@ -1737,24 +1739,25 @@ void Menus::Impl::macxMenuBarInit(GuiView * view, QMenuBar * qmb)
 
        // the special menu for Menus. Fill it up only once.
        if (mac_special_menu_.size() == 0) {
+               LYXERR(Debug::GUI, "Prepare Mac OS X special menu");
                for (size_t i = 0 ; i < num_entries ; ++i) {
                        FuncRequest const func(entries[i].action,
                                from_utf8(entries[i].arg));
                        mac_special_menu_.add(MenuItem(MenuItem::Command,
                                entries[i].label, func));
                }
-
-               // add the entries to a QMenu that will eventually be empty
-               // and therefore invisible.
-               QMenu * qMenu = qmb->addMenu("special");
-               MenuDefinition::const_iterator cit = mac_special_menu_.begin();
-               MenuDefinition::const_iterator end = mac_special_menu_.end();
-               for (size_t i = 0 ; cit != end ; ++cit, ++i) {
-                       Action * action = new Action(view, QIcon(), cit->label(),
-                               cit->func(), QString(), qMenu);
-                       action->setMenuRole(entries[i].role);
-                       qMenu->addAction(action);
-               }
+       }
+       // add the entries to a QMenu that will eventually be empty
+       // and therefore invisible.
+       QMenu * qMenu = qmb->addMenu("special");
+       MenuDefinition::const_iterator cit = mac_special_menu_.begin();
+       MenuDefinition::const_iterator end = mac_special_menu_.end();
+       for (size_t i = 0 ; cit != end ; ++cit, ++i) {
+               Action * action = new Action(view, QIcon(), cit->label(),
+                       cit->func(), QString(), qMenu);
+               action->setMenuRole(entries[i].role);
+               qMenu->addAction(action);
+               LYXERR(Debug::GUI, "Add special menu item " << cit->label());
        }
 }
 
index 39e8dcc9c178df3d4c2b89b133037ff6d8d2f4e5..61f29f64dd16da3bbae524d760b33fedb499a0eb 100644 (file)
@@ -64,6 +64,8 @@ What's new
 - Handle undo in `branch-add' function.
 
 
+- Fix the missing dynamic menus in general and restore correctly from fullscreen.
+
 * DOCUMENTATION AND LOCALIZATION