diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-28 20:59:08 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-28 20:59:08 +0200 |
commit | 3f137d56176193c2bec7c876eb935612df91475c (patch) | |
tree | 69b1fe311e2e5781768f8a25db39a3e7d1a80a9b /src/urlbar/completionwidget.h | |
parent | Increase xmlgui version number (just to be sure..) (diff) | |
download | rekonq-3f137d56176193c2bec7c876eb935612df91475c.tar.xz |
Restore urlbar responsiveness
Suggestions are now added when ready
Diffstat (limited to 'src/urlbar/completionwidget.h')
-rw-r--r-- | src/urlbar/completionwidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/urlbar/completionwidget.h b/src/urlbar/completionwidget.h index e14535f4..29f80721 100644 --- a/src/urlbar/completionwidget.h +++ b/src/urlbar/completionwidget.h @@ -65,6 +65,7 @@ public: private slots: void itemChosen(ListItem *item, Qt::MouseButton = Qt::LeftButton, Qt::KeyboardModifiers = Qt::NoModifier); + void updateSearchList(const UrlSearchList &list, const QString& text); signals: void chosenUrl(const KUrl &, Rekonq::OpenType); @@ -72,6 +73,7 @@ signals: private: void insertSearchList(const UrlSearchList &list, const QString& text); + void popup(); void clear(); @@ -89,6 +91,8 @@ private: KService::Ptr _searchEngine; QString _typedString; + int _suggestionsNumber; + bool _isSuggesting; }; #endif // COMPLETION_WIDGET_H |