diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2013-03-24 12:24:17 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2013-03-24 12:24:17 (GMT) |
| commit | 9b5b85f9b01cbda7ef9a7ec2a15b2a35630a5b9d (patch) | |
| tree | ac7d040253b459ce102e476cb19ab59e3cfa90d7 /src/search/SearchView.h | |
| parent | 6bf98ccdca39936a3c51367862eed7c49f8786ec (diff) | |
| parent | bdc69f31c0be94191015838886bdcc2bc67f1acb (diff) | |
| download | powder-9b5b85f9b01cbda7ef9a7ec2a15b2a35630a5b9d.zip powder-9b5b85f9b01cbda7ef9a7ec2a15b2a35630a5b9d.tar.gz | |
Merge branch 'reorganisation' of github.com:FacialTurd/The-Powder-Toy
Diffstat (limited to 'src/search/SearchView.h')
| -rw-r--r-- | src/search/SearchView.h | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/src/search/SearchView.h b/src/search/SearchView.h deleted file mode 100644 index 05ecde2..0000000 --- a/src/search/SearchView.h +++ /dev/null @@ -1,74 +0,0 @@ -#ifndef SEARCHVIEW_H -#define SEARCHVIEW_H - -#include <vector> -#include "SearchController.h" -#include "interface/SaveButton.h" -#include "interface/Button.h" -#include "interface/Label.h" -#include "interface/Spinner.h" -#include "interface/Textbox.h" -#include "client/ClientListener.h" - -using namespace std; - -namespace ui -{ - class RichLabel; - class SaveButton; - class Button; - class Label; - class Spinner; - class Textbox; -} - -class SearchModel; -class SearchController; - -class SearchView: public ui::Window, public ClientListener -{ -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::RichLabel * motdLabel; - ui::Button * sortButton; - ui::Button * ownButton; - ui::Spinner * loadingSpinner; - - ui::Button * removeSelected; - ui::Button * unpublishSelected; - ui::Button * favouriteSelected; - ui::Button * clearSelection; - void clearSearch(); - void doSearch(); -public: - void NotifyTagListChanged(SearchModel * sender); - void NotifySaveListChanged(SearchModel * sender); - void NotifySelectedChanged(SearchModel * sender); - void NotifyPageChanged(SearchModel * sender); - void NotifySortChanged(SearchModel * sender); - void NotifyShowOwnChanged(SearchModel * sender); - void NotifyShowFavouriteChanged(SearchModel * sender); - void NotifyAuthUserChanged(Client * sender); - void NotifyMessageOfTheDay(Client * sender); - void CheckAccess(); - virtual void OnTryOkay(OkayMethod method); - 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); - -}; - -#endif // SEARCHVIEW_H |
