summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-08-23 00:09:55 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-08-23 00:09:55 +0200
commit8c68e6ab9d8f106d0ed32f9a33b7648f48b612ce (patch)
tree1fcdb7d5960ff8cbdd64897c5134ea80c2c4ef5b
parentRemoved MenuBar. First steps.. (diff)
downloadrekonq-8c68e6ab9d8f106d0ed32f9a33b7648f48b612ce.tar.xz
Some actions fixed and re-enabled history action (back) menu
-rw-r--r--src/mainwindow.cpp72
-rw-r--r--src/mainwindow.h6
2 files changed, 63 insertions, 15 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index f527a6cb..df3fb124 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -88,11 +88,12 @@
MainWindow::MainWindow()
- : KMainWindow()
- , m_view(new MainView(this))
- , m_findBar(new FindBar(this))
- , m_sidePanel(0)
- , m_ac( new KActionCollection(this) )
+ : KMainWindow()
+ , m_view(new MainView(this))
+ , m_findBar(new FindBar(this))
+ , m_sidePanel(0)
+ , m_historyBackMenu(0)
+ , m_ac( new KActionCollection(this) )
{
// enable window size "auto-save"
setAutoSaveSettings();
@@ -160,8 +161,8 @@ void MainWindow::setupToolbar()
KToolBar *mainToolBar = new KToolBar( QString("MainToolBar"), this, Qt::TopToolBarArea);
mainToolBar->setContextMenuPolicy(Qt::PreventContextMenu);
mainToolBar->setToolButtonStyle(Qt::ToolButtonIconOnly);
- mainToolBar->addAction( actionByName(KStandardAction::name(KStandardAction::Back)) );
- mainToolBar->addAction( actionByName(KStandardAction::name(KStandardAction::Forward)) );
+ mainToolBar->addAction( actionByName("history_back") );
+ mainToolBar->addAction( actionByName("history_forward") );
mainToolBar->addSeparator();
mainToolBar->addAction( actionByName("stop_reload") );
mainToolBar->addAction( actionByName(KStandardAction::name(KStandardAction::Home)) );
@@ -253,13 +254,13 @@ void MainWindow::setupActions()
// WEB Actions (NO KStandardActions..)
a = KStandardAction::redisplay(m_view, SLOT(slotWebReload()), actionCollection());
a->setText(i18n("Reload"));
- KStandardAction::back(m_view, SLOT(slotWebBack()), actionCollection());
- KStandardAction::forward(m_view, SLOT(slotWebForward()), actionCollection());
- KStandardAction::undo(m_view, SLOT(slotWebUndo()), actionCollection());
- KStandardAction::redo(m_view, SLOT(slotWebRedo()), actionCollection());
- KStandardAction::cut(m_view, SLOT(slotWebCut()), actionCollection());
- KStandardAction::copy(m_view, SLOT(slotWebCopy()), actionCollection());
- KStandardAction::paste(m_view, SLOT(slotWebPaste()), actionCollection());
+// KStandardAction::back(m_view, SLOT(slotWebBack()), actionCollection());
+// KStandardAction::forward(m_view, SLOT(slotWebForward()), actionCollection());
+// KStandardAction::undo(m_view, SLOT(slotWebUndo()), actionCollection());
+// KStandardAction::redo(m_view, SLOT(slotWebRedo()), actionCollection());
+// KStandardAction::cut(m_view, SLOT(slotWebCut()), actionCollection());
+// KStandardAction::copy(m_view, SLOT(slotWebCopy()), actionCollection());
+// KStandardAction::paste(m_view, SLOT(slotWebPaste()), actionCollection());
a = new KAction(KIcon("process-stop"), i18n("&Stop"), this);
a->setShortcut(KShortcut(Qt::CTRL | Qt::Key_Period));
@@ -315,6 +316,11 @@ void MainWindow::setupActions()
connect(m_historyBackAction, SIGNAL(triggered(bool)), this, SLOT(slotOpenPrevious()));
actionCollection()->addAction(QLatin1String("history_back"), m_historyBackAction);
+ m_historyBackMenu = new KMenu(this);
+ m_historyBackAction->setMenu(m_historyBackMenu);
+ connect(m_historyBackMenu, SIGNAL(aboutToShow()), this, SLOT(slotAboutToShowBackMenu()));
+ connect(m_historyBackMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotOpenActionUrl(QAction *)));
+
m_historyForwardAction = new KAction(KIcon("go-next"), i18n("Forward"), this);
connect(m_historyForwardAction, SIGNAL(triggered(bool)), this, SLOT(slotOpenNext()));
actionCollection()->addAction(QLatin1String("history_forward"), m_historyForwardAction);
@@ -1020,3 +1026,41 @@ void MainWindow::clearPrivateData()
// this let crash rekonq.
// delete dialog;
}
+
+
+void MainWindow::slotAboutToShowBackMenu()
+{
+ m_historyBackMenu->clear();
+ if (!currentTab())
+ return;
+ QWebHistory *history = currentTab()->history();
+ int historyCount = history->count();
+ for (int i = history->backItems(historyCount).count() - 1; i >= 0; --i)
+ {
+ QWebHistoryItem item = history->backItems(history->count()).at(i);
+ KAction *action = new KAction(this);
+ action->setData(-1*(historyCount - i - 1));
+ QIcon icon = Application::instance()->icon(item.url());
+ action->setIcon(icon);
+ action->setText(item.title());
+ m_historyBackMenu->addAction(action);
+ }
+}
+
+
+void MainWindow::slotOpenActionUrl(QAction *action)
+{
+ int offset = action->data().toInt();
+ QWebHistory *history = currentTab()->history();
+ if (offset < 0)
+ {
+ history->goToItem(history->backItems(-1*offset).first()); // back
+ }
+ else
+ {
+ if (offset > 0)
+ {
+ history->goToItem(history->forwardItems(history->count() - offset + 1).back()); // forward
+ }
+ }
+}
diff --git a/src/mainwindow.h b/src/mainwindow.h
index a2031692..cc32dd68 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -142,6 +142,9 @@ private slots:
// clear private data
void clearPrivateData();
+ void slotAboutToShowBackMenu();
+ void slotOpenActionUrl(QAction *action);
+
private:
MainView *m_view;
FindBar *m_findBar;
@@ -150,7 +153,8 @@ private:
KAction *m_stopReloadAction;
KAction *m_historyBackAction;
KAction *m_historyForwardAction;
-
+ KMenu *m_historyBackMenu;
+
QString m_lastSearch;
QString m_homePage;