summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-11-18 11:16:39 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-11-18 11:16:39 +0100
commit7a55537201493fefdf076108e30b6be45c345719 (patch)
treeabec39ef3393567652e06e3d77059a89dfe84cfa /src/mainwindow.h
parentActivate Find with slash, too. (diff)
parentmade bookmarks searchable (diff)
downloadrekonq-7a55537201493fefdf076108e30b6be45c345719.tar.xz
Merge commit 'refs/merge-requests/2106' of git://gitorious.org/rekonq/mainline into dev04merge
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;
};