summaryrefslogtreecommitdiff
path: root/src/urlbar.h
diff options
context:
space:
mode:
authorLionel Chauvin <megabigbug@yahoo.fr>2009-08-22 17:43:17 +0200
committerLionel Chauvin <megabigbug@yahoo.fr>2009-08-22 17:43:17 +0200
commit94186b36d9b3b74b87ed892e573c747a24f63b51 (patch)
tree3e9d2de8e2e72abffacbb88dd6b6c2a9cac46b86 /src/urlbar.h
parentRekonq 0.2.0 (diff)
downloadrekonq-94186b36d9b3b74b87ed892e573c747a24f63b51.tar.xz
Remove url stack
Diffstat (limited to 'src/urlbar.h')
-rw-r--r--src/urlbar.h11
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