diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-02 02:01:43 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-02 02:01:43 +0200 |
commit | f2372797940d2e2eea16592cbb855fd4ec828fca (patch) | |
tree | 6b70a8ef6cd0ee63d4d06c84096974ba45e204f3 /src | |
parent | Various fixes, including bookmarks bar (diff) | |
download | rekonq-f2372797940d2e2eea16592cbb855fd4ec828fca.tar.xz |
Added show/hide menubar action
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cpp | 9 | ||||
-rw-r--r-- | src/mainwindow.h | 1 | ||||
-rw-r--r-- | src/rekonqui.rc | 16 |
3 files changed, 23 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 566a1b45..bae54d94 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -194,6 +194,7 @@ void MainWindow::setupActions() KStandardAction::fullScreen(this, SLOT(slotViewFullScreen(bool)), this, actionCollection()); KStandardAction::home(this, SLOT(slotHome()), actionCollection()); KStandardAction::preferences(this, SLOT(slotPreferences()), actionCollection()); + KStandardAction::showMenubar(this, SLOT(slotShowMenubar(bool)), actionCollection()); // WEB Actions (NO KStandardActions..) KStandardAction::redisplay(m_view, SLOT(slotWebReload()), actionCollection()); @@ -806,3 +807,11 @@ void MainWindow::geometryChangeRequested(const QRect &geometry) setGeometry(geometry); } + +void MainWindow::slotShowMenubar(bool enable) +{ + if(enable) + menuBar()->show(); + else + menuBar()->hide(); +}
\ No newline at end of file diff --git a/src/mainwindow.h b/src/mainwindow.h index c12f8fce..9e64022e 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -112,6 +112,7 @@ private slots: void slotToggleInspector(bool enable); // Settings Menu slots + void slotShowMenubar(bool enable); void slotPreferences(); private: diff --git a/src/rekonqui.rc b/src/rekonqui.rc index dae6c07e..368c9226 100644 --- a/src/rekonqui.rc +++ b/src/rekonqui.rc @@ -1,6 +1,6 @@ <?xml version="1.0"?> <!DOCTYPE gui SYSTEM "kpartgui.dtd"> -<gui name="rekonq" version="36"> +<gui name="rekonq" version="37"> <MenuBar> @@ -57,13 +57,23 @@ <Action name="bookmarks" /> <!-- ============ TOOLS menu =========== --> -<Menu name="tools"> +<Menu name="tools" noMerge="1"><text>&Tools</text> <Action name="web_inspector" /> </Menu> <!-- ============ SETTINGS menu =========== --> -<Menu name="settings"> +<Menu name="settings" noMerge="1"><text>&Settings</text> + <Action name="options_show_menubar" /> + <Action name="options_show_statusbar" /> + <Merge name="StandardToolBarMenuHandler" /> + <Separator/> + <Action name="fullscreen" /> + <Separator/> + <Action name="options_configure_keybinding" /> + <Action name="options_configure_toolbars" /> + <Action name="options_configure" /> </Menu> + </MenuBar> <!-- ============ Main ToolBar =========== --> |