summaryrefslogtreecommitdiff
path: root/src/stamps/StampsView.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-06-07 15:16:54 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-06-07 15:16:54 (GMT)
commit1dadb11fc218786a36cc46714a0478e229ca44a9 (patch)
tree8e0d2d011d90b15c2a7d96893e1107f0f8e7da1b /src/stamps/StampsView.h
parent61ed6e0276d580515d0acf5ddb96b1db95b9b191 (diff)
downloadpowder-1dadb11fc218786a36cc46714a0478e229ca44a9.zip
powder-1dadb11fc218786a36cc46714a0478e229ca44a9.tar.gz
Remove unneeded files
Diffstat (limited to 'src/stamps/StampsView.h')
-rw-r--r--src/stamps/StampsView.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/stamps/StampsView.h b/src/stamps/StampsView.h
deleted file mode 100644
index 0264611..0000000
--- a/src/stamps/StampsView.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * StampsView.h
- *
- * Created on: Mar 29, 2012
- * Author: Simon
- */
-
-#ifndef STAMPSVIEW_H_
-#define STAMPSVIEW_H_
-
-#include <vector>
-#include "interface/Window.h"
-#include "interface/Button.h"
-#include "interface/Textbox.h"
-#include "interface/Label.h"
-#include "interface/SaveButton.h"
-
-class StampsController;
-class StampsModel;
-class StampsView: public ui::Window {
- StampsController * c;
- std::vector<ui::SaveButton*> stampButtons;
- ui::Button * previousButton;
- ui::Button * nextButton;
- ui::Label * infoLabel;
- ui::Button * removeSelected;
-public:
- StampsView();
- //virtual void OnDraw();
- virtual void OnTick(float dt);
- void AttachController(StampsController * c_) { c = c_; };
- void NotifyPageChanged(StampsModel * sender);
- void NotifyStampsListChanged(StampsModel * sender);
- void NotifySelectedChanged(StampsModel * sender);
- virtual void OnMouseWheel(int x, int y, int d);
- virtual void OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool alt);
- virtual ~StampsView();
-};
-
-#endif /* STAMPSVIEW_H_ */