summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-01-09 16:37:41 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-01-09 16:37:41 +0100
commit886bdb99cd998c045e111a2d7e6f77e29d30b784 (patch)
tree2aa897c34800905814b8fa45a67566b3d836d43a /src/mainwindow.cpp
parentRemoved WebActionMapper class! (diff)
downloadrekonq-886bdb99cd998c045e111a2d7e6f77e29d30b784.tar.xz
Every action is now in ActionCollection!!
Fully adopted xmlgui && mainview concepts..
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp49
1 files changed, 42 insertions, 7 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index e14f8611..6fcdf7e6 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -99,6 +99,9 @@ MainWindow::MainWindow()
// setup history & bookmarks menus
setupCustomMenu();
+ // setup Tab Bar
+ setupTabBar();
+
// setting up custom widgets..
KToolBar *navigationBar = toolBar( "mainToolBar" );
navigationBar->addWidget( m_tabWidget->lineEditStack() );
@@ -152,7 +155,7 @@ void MainWindow::setupActions()
m_stopReload = new KAction( KIcon("view-refresh"), i18n("reload"), this );
actionCollection()->addAction( QLatin1String("stop reload") , m_stopReload );
- // Custom Actions
+ // ============== Custom Actions
a = new KAction ( KIcon( "process-stop" ), i18n("&Stop"), this );
a->setShortcut( QKeySequence(Qt::CTRL | Qt::Key_Period) );
actionCollection()->addAction( QLatin1String("stop"), a );
@@ -162,9 +165,6 @@ void MainWindow::setupActions()
actionCollection()->addAction( QLatin1String("open location"), a );
connect( a, SIGNAL( triggered(bool) ) , this, SLOT( slotOpenLocation() ) );
- actionCollection()->addAction( QLatin1String("new tab"), m_tabWidget->newTabAction() );
- actionCollection()->addAction( QLatin1String("close tab"), m_tabWidget->closeTabAction() );
-
a = new KAction( i18n("Private &Browsing..."), this );
a->setCheckable(true);
actionCollection()->addAction( i18n("private browsing"), a );
@@ -198,13 +198,13 @@ void MainWindow::setupActions()
actionCollection()->addAction( QLatin1String("web inspector"), a );
connect( a, SIGNAL( triggered( bool ) ), this, SLOT( slotToggleInspector(bool) ) );
- // BOOKMARKS MENU
+ // ================== BOOKMARKS MENU
a = new KActionMenu( i18n("B&ookmarks"), this );
actionCollection()->addAction( QLatin1String("bookmarks"), a );
BookmarksMenu *bookmarksMenu = new BookmarksMenu( this );
a->setMenu( bookmarksMenu );
- // history related actions
+ // ================ history related actions
KAction *historyBack = new KAction( KIcon("go-previous"), i18n("Back"), this);
m_historyBackMenu = new KMenu(this);
historyBack->setMenu(m_historyBackMenu);
@@ -217,9 +217,44 @@ void MainWindow::setupActions()
connect(historyForward, SIGNAL( triggered( bool ) ), this, SLOT( slotOpenNext() ) );
actionCollection()->addAction( QLatin1String("history forward"), historyForward );
- // ===================================================================================================================
+ // =================== Tab Actions
+ a = new KAction( KIcon("tab-new"), i18n("New &Tab"), this);
+ a->setShortcut( KShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_N, Qt::CTRL + Qt::Key_T) );
+ actionCollection()->addAction( QLatin1String("new tab"), a);
+ connect(a, SIGNAL(triggered()), m_tabWidget, SLOT(newTab()));
+
+ a = new KAction(KIcon("tab-close"), i18n("&Close Tab"), this);
+ a->setShortcut( KShortcut( Qt::CTRL + Qt::Key_W ) );
+ actionCollection()->addAction( QLatin1String("close tab"), a);
+ connect(a, SIGNAL(triggered()), m_tabWidget, SLOT(closeTab()));
+
+ a = new KAction(i18n("Show Next Tab"), this);
+ a->setShortcuts( QApplication::isRightToLeft() ? KStandardShortcut::tabPrev() : KStandardShortcut::tabNext() );
+ actionCollection()->addAction( QLatin1String("show next tab"), a);
+ connect(a, SIGNAL(triggered()), m_tabWidget, SLOT(nextTab()));
+ a = new KAction(i18n("Show Previous Tab"), this);
+ a->setShortcuts( QApplication::isRightToLeft() ? KStandardShortcut::tabNext() : KStandardShortcut::tabPrev() );
+ actionCollection()->addAction( QLatin1String("show prev tab"), a);
+ connect(a, SIGNAL(triggered()), m_tabWidget, SLOT(previousTab()));
+}
+
+
+void MainWindow::setupTabBar()
+{
+ // Left corner button
+ QToolButton *addTabButton = new QToolButton(this);
+ addTabButton->setDefaultAction( actionCollection()->action("new tab") );
+ addTabButton->setAutoRaise(true);
+ addTabButton->setToolButtonStyle(Qt::ToolButtonIconOnly);
+ m_tabWidget->setCornerWidget(addTabButton, Qt::TopLeftCorner);
+ // right corner button
+ QToolButton *closeTabButton = new QToolButton(this);
+ closeTabButton->setDefaultAction( actionCollection()->action("close tab") );
+ closeTabButton->setAutoRaise(true);
+ closeTabButton->setToolButtonStyle(Qt::ToolButtonIconOnly);
+ m_tabWidget->setCornerWidget(closeTabButton, Qt::TopRightCorner);
}