summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-02-15 15:38:36 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-02-15 15:38:36 +0100
commit93562769c23827a1a6ddec63816ac7edbdeb98f6 (patch)
tree15d226ee3dae2da99eef768461e4e239d874be1b /src/mainwindow.h
parentBrowserApplication --> Application (diff)
parentPreliminary flash support (diff)
downloadrekonq-93562769c23827a1a6ddec63816ac7edbdeb98f6.tar.xz
Merge branch 'master' into mainwindow
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 8b8f1cbe..fa96eb0e 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -25,7 +25,6 @@
// Local Includes
#include "findbar.h"
#include "searchbar.h"
-#include "mainview.h"
// KDE Includes
#include <KUrl>
@@ -36,7 +35,8 @@
#include <KToggleAction>
#include <KMenu>
-
+class BookmarksProvider;
+class MainView;
class QWebFrame;
class WebView;
@@ -61,7 +61,7 @@ public:
private:
void setupActions();
- void setupCustomMenu();
+ void setupHistoryMenu();
void setupTabBar();
public slots:
@@ -75,15 +75,16 @@ private slots:
void slotUpdateWindowTitle(const QString &title = QString());
void slotOpenLocation();
void slotAboutToShowBackMenu();
+ void geometryChangeRequested(const QRect &geometry);
// history related
void slotOpenActionUrl(QAction *action);
void slotOpenPrevious();
void slotOpenNext();
- void slotShowWindow();
- void slotSwapFocus();
- void geometryChangeRequested(const QRect &geometry);
+/* void slotShowWindow();
+ void slotSwapFocus();*/
+
// File Menu slots
@@ -121,6 +122,8 @@ private:
KMenu *m_historyBackMenu;
KMenu *m_windowMenu;
+ BookmarksProvider *m_bookmarksProvider;
+
QAction *m_stopReload;
QString m_lastSearch;