summaryrefslogtreecommitdiff
path: root/src/urlbar.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-03-11 00:55:47 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-03-11 00:55:47 +0100
commitb5044060c9263d223c99055b9bd6b93c9fb966c7 (patch)
treed388ff7ffb5034768889b02bfffe8687d05a0172 /src/urlbar.h
parentSome fixes on MainWindow (diff)
downloadrekonq-b5044060c9263d223c99055b9bd6b93c9fb966c7.tar.xz
Forwarding class declarations to speed up compilation..
Diffstat (limited to 'src/urlbar.h')
-rw-r--r--src/urlbar.h18
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