From 86b08454a5ae33e24e545ba74ff8fcd1c3c56849 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sat, 6 Dec 2008 10:56:07 +0100 Subject: Some adjs on Actions management --- src/browsermainwindow.cpp | 3 +++ src/tabwidget.cpp | 26 ++++++++++++-------------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/browsermainwindow.cpp b/src/browsermainwindow.cpp index f17f450a..f6691101 100644 --- a/src/browsermainwindow.cpp +++ b/src/browsermainwindow.cpp @@ -352,6 +352,9 @@ void BrowserMainWindow::setupMenu() KMenu* toolsMenu = (KMenu *) menuBar()->addMenu( i18n("&Tools") ); toolsMenu->addAction( i18n("Downloads"), this, SLOT( slotDownloadManager() ), i18n("Alt+Ctrl+D") ); + + toolsMenu->addSeparator(); + toolsMenu->addAction( i18n("Web &Search"), this, SLOT(slotWebSearch()), QKeySequence( tr("Ctrl+K", "Web Search"))); action = (KAction *) toolsMenu->addAction( i18n("Enable Web &Inspector"), this, SLOT(slotToggleInspector(bool))); action->setCheckable(true); diff --git a/src/tabwidget.cpp b/src/tabwidget.cpp index fc545bd3..7f39bd8a 100644 --- a/src/tabwidget.cpp +++ b/src/tabwidget.cpp @@ -67,25 +67,25 @@ void TabBar::selectTabAction() void TabBar::contextMenuRequested(const QPoint &position) { - QMenu menu; - menu.addAction(i18n("New &Tab"), this, SIGNAL(newTab()), QKeySequence::AddTab); + KMenu menu; + menu.addAction(i18n("New &Tab"), this, SIGNAL( newTab() ), QKeySequence::AddTab); int index = tabAt(position); if (-1 != index) { - QAction *action = menu.addAction(i18n("Clone Tab"), this, SLOT(cloneTab())); + KAction *action = (KAction * ) menu.addAction(i18n("Clone Tab"), this, SLOT(cloneTab())); action->setData(index); menu.addSeparator(); - action = menu.addAction(i18n("&Close Tab"), this, SLOT(closeTab()), QKeySequence::Close); + action = (KAction * ) menu.addAction(i18n("&Close Tab"), this, SLOT(closeTab()), QKeySequence::Close); action->setData(index); - action = menu.addAction(i18n("Close &Other Tabs"), this, SLOT(closeOtherTabs())); + action = (KAction * ) menu.addAction(i18n("Close &Other Tabs"), this, SLOT(closeOtherTabs())); action->setData(index); menu.addSeparator(); - action = menu.addAction(i18n("Reload Tab"), this, SLOT(reloadTab()), QKeySequence::Refresh); + action = (KAction * ) menu.addAction(i18n("Reload Tab"), this, SLOT(reloadTab()), QKeySequence::Refresh); action->setData(index); } else @@ -99,7 +99,7 @@ void TabBar::contextMenuRequested(const QPoint &position) void TabBar::cloneTab() { - if (QAction *action = qobject_cast(sender())) + if (KAction *action = qobject_cast(sender())) { int index = action->data().toInt(); emit cloneTab(index); @@ -109,7 +109,7 @@ void TabBar::cloneTab() void TabBar::closeTab() { - if (QAction *action = qobject_cast(sender())) + if (KAction *action = qobject_cast(sender())) { int index = action->data().toInt(); emit closeTab(index); @@ -119,7 +119,7 @@ void TabBar::closeTab() void TabBar::closeOtherTabs() { - if (QAction *action = qobject_cast(sender())) + if (KAction *action = qobject_cast(sender())) { int index = action->data().toInt(); emit closeOtherTabs(index); @@ -183,7 +183,7 @@ void TabBar::dropEvent(QDropEvent *event) void TabBar::reloadTab() { - if (QAction *action = qobject_cast(sender())) { + if (KAction *action = qobject_cast(sender())) { int index = action->data().toInt(); emit reloadTab(index); } @@ -231,8 +231,7 @@ TabWidget::TabWidget(QWidget *parent) QList shortcuts; shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_BraceRight)); shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_PageDown)); - shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_BracketRight)); - shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_Less)); + shortcuts.append(QKeySequence(Qt::CTRL + Qt::Key_Tab)); m_nextTabAction->setShortcuts(shortcuts); connect(m_nextTabAction, SIGNAL(triggered()), this, SLOT(nextTab())); @@ -240,8 +239,7 @@ TabWidget::TabWidget(QWidget *parent) shortcuts.clear(); shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_BraceLeft)); shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_PageUp)); - shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_BracketLeft)); - shortcuts.append(QKeySequence(Qt::CTRL | Qt::Key_Greater)); + shortcuts.append( QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Tab) );; m_previousTabAction->setShortcuts(shortcuts); connect(m_previousTabAction, SIGNAL(triggered()), this, SLOT(previousTab())); -- cgit v1.2.1