diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/QuickMedia.hpp | 1 | ||||
-rw-r--r-- | include/SearchBar.hpp | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/QuickMedia.hpp b/include/QuickMedia.hpp index 8884c79..584903a 100644 --- a/include/QuickMedia.hpp +++ b/include/QuickMedia.hpp @@ -83,6 +83,7 @@ namespace QuickMedia { Json::Value content_storage_json; std::unordered_set<std::string> watched_videos; std::future<BodyItems> search_suggestion_future; + std::future<std::string> autocomplete_future; std::future<void> image_download_future; std::string downloading_chapter_url; bool image_download_cancel = false; diff --git a/include/SearchBar.hpp b/include/SearchBar.hpp index 0cffff5..6966466 100644 --- a/include/SearchBar.hpp +++ b/include/SearchBar.hpp @@ -12,7 +12,7 @@ namespace QuickMedia { // Return true to consume the search (clear the search field) using TextSubmitCallback = std::function<bool(const sf::String &text)>; using TextBeginTypingCallback = std::function<void()>; - using AutocompleteRequestCallback = std::function<std::string(const sf::String &text)>; + using AutocompleteRequestCallback = std::function<void(const sf::String &text)>; class SearchBar { public: @@ -25,6 +25,7 @@ namespace QuickMedia { void append_text(const std::string &text_to_add); bool is_cursor_at_start_of_line() const; void set_to_autocomplete(); + void set_autocomplete_text(const std::string &text); float getBottom() const; float getBottomWithoutShadow() const; |