summaryrefslogtreecommitdiff
path: root/src/urlbar.h
diff options
context:
space:
mode:
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