summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index c9bec75e..c12f8fce 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -64,6 +64,7 @@ private:
void setupActions();
void setupHistoryMenu();
void setupTabBar();
+ void setupToolBars();
public slots:
void slotHome();
@@ -71,7 +72,7 @@ public slots:
void slotUpdateBrowser();
private slots:
- void slotUpdateConf();
+ void slotUpdateConfiguration();
void slotLoadProgress(int);
void slotUpdateStatusbar(const QString &string);
void slotUpdateActions();
@@ -114,20 +115,22 @@ private slots:
void slotPreferences();
private:
- SearchBar *m_searchBar;
- FindBar *m_findBar;
KMenu *m_historyBackMenu;
KMenu *m_windowMenu;
+
KAction *m_stopReloadAction;
KAction *m_stopAction;
KAction *m_reloadAction;
KAction *m_historyBackAction;
KAction *m_historyForwardAction;
+
QString m_lastSearch;
QString m_homePage;
MainView *m_view;
BookmarksProvider *m_bookmarksProvider;
+ FindBar *m_findBar;
+ SearchBar *m_searchBar;
};
#endif // MAINWINDOW_H