diff options
Diffstat (limited to 'src/search/SearchView.h')
| -rw-r--r-- | src/search/SearchView.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/search/SearchView.h b/src/search/SearchView.h index 6e27f06..abded85 100644 --- a/src/search/SearchView.h +++ b/src/search/SearchView.h @@ -19,12 +19,14 @@ class SearchView: public ui::Window private: SearchController * c; vector<ui::SaveButton*> saveButtons; + vector<ui::Button*> tagButtons; ui::Button * favButton; ui::Button * nextButton; ui::Button * previousButton; ui::Label * errorLabel; ui::Textbox * searchField; ui::Label * infoLabel; + ui::Label * tagsLabel; ui::Button * sortButton; ui::Button * ownButton; ui::Spinner * loadingSpinner; @@ -44,6 +46,7 @@ public: SearchView(); virtual ~SearchView(); void AttachController(SearchController * _c) { c = _c; } + virtual void Search(std::string); virtual void OnTick(float dt); virtual void OnMouseWheel(int x, int y, int d); virtual void OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool alt); |
