summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authornehlsen <nehlsen@gmail.com>2009-11-16 15:03:42 +0100
committernehlsen <nehlsen@gmail.com>2009-11-16 15:03:42 +0100
commit2e9b9376fd8857e4667d8c6e18cb0f66a3fc3726 (patch)
treece9757e40965ca7029fc8a89d76235a863003a20 /src/mainwindow.h
parentFixing "open in ne window" slot (diff)
downloadrekonq-2e9b9376fd8857e4667d8c6e18cb0f66a3fc3726.tar.xz
added bookmarks panel and model(read only atm)
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 5071cdb2..af052c1b 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -12,9 +12,9 @@
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
-* by the membership of KDE e.V.), which shall act as a proxy
+* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
-*
+*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@@ -48,6 +48,7 @@ class KPassivePopup;
class FindBar;
class SidePanel;
+class BookmarksPanel;
class WebView;
class MainView;
@@ -81,6 +82,9 @@ private:
void setupSidePanel();
SidePanel *sidePanel();
+ void setupBookmarksPanel();
+ BookmarksPanel *bookmarksPanel();
+
public slots:
void updateBrowser();
void homePage();
@@ -159,20 +163,21 @@ private:
MainView *m_view;
FindBar *m_findBar;
SidePanel *m_sidePanel;
+ BookmarksPanel *m_bookmarksPanel;
KAction *m_stopReloadAction;
KMenu *m_historyBackMenu;
KToolBar *m_mainBar;
KToolBar *m_bmBar;
-
+
QString m_lastSearch;
KPassivePopup *m_popup;
QTimer *m_hidePopup;
KActionCollection *m_ac;
-
+
bool m_loadingNewTabPage;
};