summaryrefslogtreecommitdiff
path: root/src/search/SearchView.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2013-03-22 14:14:17 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2013-03-22 14:14:17 (GMT)
commit9abe51526cac2634af0541c3de69834dd30e9f78 (patch)
tree6ae4deadfe00a83094b9d288d8c11d8ce823577a /src/search/SearchView.h
parent2c311b9a36a88fadd96f3d39acb1ab2590835d81 (diff)
downloadpowder-9abe51526cac2634af0541c3de69834dd30e9f78.zip
powder-9abe51526cac2634af0541c3de69834dd30e9f78.tar.gz
Move all GUI source files into gui/
Diffstat (limited to 'src/search/SearchView.h')
-rw-r--r--src/search/SearchView.h74
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