summaryrefslogtreecommitdiff
path: root/src/webwindow
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-09-23 12:28:30 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:05 +0100
commitea06040c4d7d95f43dab9127a532b4d3e78ba78c (patch)
treea5bc7aa37e90b00c721f41b1f4f7888b8658a53b /src/webwindow
parentRe-enable fullscreen capabilities (diff)
downloadrekonq-ea06040c4d7d95f43dab9127a532b4d3e78ba78c.tar.xz
new tab action
Diffstat (limited to 'src/webwindow')
-rw-r--r--src/webwindow/webwindow.cpp53
1 files changed, 5 insertions, 48 deletions
diff --git a/src/webwindow/webwindow.cpp b/src/webwindow/webwindow.cpp
index fe150504..9e276271 100644
--- a/src/webwindow/webwindow.cpp
+++ b/src/webwindow/webwindow.cpp
@@ -292,54 +292,11 @@ void WebWindow::setupActions()
actionCollection()->addAction(QL1S("sync"), a);
connect(a, SIGNAL(triggered(bool)), SyncManager::self(), SLOT(showSettings()));
-// <Menu name="rekonqMenu" noMerge="1">
-// <Action name="new_tab" /> ---
-// <Action name="new_window" /> +
-// <Action name="private_browsing" /> +
-// <Separator/>
-// <Action name="file_open" /> +
-// <Action name="file_save_as" /> +
-// <Action name="file_print" /> +
-// <Action name="edit_find" />
-// <Action name="view_zoom" />
-// <Separator/>
-//
-// <Menu name="toolsMenu" icon="preferences-other" noMerge="1">
-// <text>&amp;Tools</text>
-// <Action name="clear_private_data" /> +
-// <Separator/>
-// <Action name="webapp_shortcut" /> +
-// <Action name="web_inspector" /> ---------
-// <Action name="page_source" /> +
-// <Action name="net_analyzer" /> xxxxxxxxxxx
-// <Action name="set_editable" /> +
-// <Separator/>
-// <Action name="useragent" /> +
-// <Action name="sync" /> +
-// <Action name="adblock" /> +
-// </Menu>
-//
-// <Separator/>
-// <Action name="show_bookmarks_toolbar" />
-// <Action name="fullscreen" /> +
-// <Separator/>
-//
-// <Menu name="help" icon="help-browser">
-// <text>&amp;Help</text>
-// <Action name="help_contents"/>
-// <Action name="help_whats_this"/>
-// <Separator weakSeparator="1"/>
-// <Action name="help_report_bug"/>
-// <Separator weakSeparator="1"/>
-// <Action name="switch_application_language"/>
-// <Separator weakSeparator="1"/>
-// <Action name="help_about_app"/>
-// <Action name="help_about_kde"/>
-// </Menu>
-//
-// <Action name="options_configure" /> +
-// </Menu>
-
+ // ============================== General Tab Actions ====================================
+ a = new KAction(KIcon("tab-new"), i18n("New &Tab"), this);
+ a->setShortcut(KShortcut(Qt::CTRL + Qt::Key_T));
+ actionCollection()->addAction(QL1S("new_tab"), a);
+ connect(a, SIGNAL(triggered(bool)), rApp, SLOT(newTab()));
}