diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:23:22 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:23:22 +0200 |
commit | 4a732b97f634399e5c4859684a25d06d4a830071 (patch) | |
tree | 2c89168052dd7235db040b5acd1b16e5ad998b70 /src/urlbar.h | |
parent | Merge commit 'pano/string-fixes' (diff) | |
parent | Some stupid fixes on style, spaces and some comments added (diff) | |
download | rekonq-4a732b97f634399e5c4859684a25d06d4a830071.tar.xz |
Merge branch 'OneUrlBar2'
Diffstat (limited to 'src/urlbar.h')
-rw-r--r-- | src/urlbar.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/urlbar.h b/src/urlbar.h index 50ba40f7..41d7945e 100644 --- a/src/urlbar.h +++ b/src/urlbar.h @@ -44,7 +44,8 @@ // Forward Declarations class QLinearGradient; class QWidget; - +class KCompletion; +class HistoryCompletionModel; class UrlBar : public KHistoryComboBox { @@ -59,7 +60,10 @@ public: QSize sizeHint() const; void setBackgroundColor(QColor); bool isLoading(); - + KCompletion *completion(); + HistoryCompletionModel *completionModel(); + void setProgress(int progress); + signals: void activated(const KUrl&); @@ -90,6 +94,9 @@ private: KUrl m_currentUrl; int m_progress; + + KCompletion *m_completion; + HistoryCompletionModel *m_completionModel; }; #endif |