diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-03-11 00:55:47 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-03-11 00:55:47 +0100 |
commit | b5044060c9263d223c99055b9bd6b93c9fb966c7 (patch) | |
tree | d388ff7ffb5034768889b02bfffe8687d05a0172 /src/urlbar.h | |
parent | Some fixes on MainWindow (diff) | |
download | rekonq-b5044060c9263d223c99055b9bd6b93c9fb966c7.tar.xz |
Forwarding class declarations to speed up compilation..
Diffstat (limited to 'src/urlbar.h')
-rw-r--r-- | src/urlbar.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/urlbar.h b/src/urlbar.h index c77f3b77..dfb59bcf 100644 --- a/src/urlbar.h +++ b/src/urlbar.h @@ -20,14 +20,18 @@ #ifndef URLBAR_H #define URLBAR_H -// Local Includes -#include "webview.h" // KDE Includes #include <KHistoryComboBox> -// Qt Includes -#include <QtGui> +// Forward Declarations +class WebView; + +class QWidget; +class QLineEdit; +class QUrl; +class QLinearGradient; +class QColor; class UrlBar : public KHistoryComboBox @@ -51,9 +55,9 @@ protected: private: QLinearGradient generateGradient(const QColor &color) const; - WebView* m_webView; - QLineEdit* m_lineEdit; - QColor m_defaultBaseColor; + WebView* m_webView; + QLineEdit* m_lineEdit; + QColor m_defaultBaseColor; }; #endif |