diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-22 01:18:22 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-22 01:18:22 +0200 |
commit | 182a330e250008177d05a5ef4ed0bd87226ee954 (patch) | |
tree | 27e54a567764689b75931d435085aa895dc948a4 /src/mainwindow.h | |
parent | pedantic (diff) | |
download | rekonq-182a330e250008177d05a5ef4ed0bd87226ee954.tar.xz |
Side Panel
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 76f5431b..74fee529 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -24,21 +24,27 @@ #define MAINWINDOW_H // Local Includes -#include "findbar.h" #include "searchbar.h" #include "bookmarks.h" #include "mainview.h" +#include "webview.h" // KDE Includes #include <KXmlGuiWindow> -#include <KIcon> -#include <KAction> #include <KToolBar> -#include <KMenu> // Forward Declarations -class KUrl; class QWebFrame; + +class KUrl; +class KAction; +class KActionMenu; +class KIcon; +class KMenu; + +class FindBar; +class HistoryMenu; +class SidePanel; class WebView; @@ -65,6 +71,8 @@ private: void setupActions(); void setupHistoryMenu(); void setupToolBars(); + void setupSidePanel(); + SidePanel *sidePanel() { return m_sidePanel; } public slots: void slotHome(); @@ -134,6 +142,7 @@ private: MainView *m_view; FindBar *m_findBar; SearchBar *m_searchBar; + SidePanel *m_sidePanel; }; #endif // MAINWINDOW_H |