summaryrefslogtreecommitdiff
path: root/src/stamps/StampsView.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stamps/StampsView.h')
-rw-r--r--src/stamps/StampsView.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/stamps/StampsView.h b/src/stamps/StampsView.h
index 02e5569..0264611 100644
--- a/src/stamps/StampsView.h
+++ b/src/stamps/StampsView.h
@@ -13,15 +13,17 @@
#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::Component*> stampButtons;
+ std::vector<ui::SaveButton*> stampButtons;
ui::Button * previousButton;
ui::Button * nextButton;
ui::Label * infoLabel;
+ ui::Button * removeSelected;
public:
StampsView();
//virtual void OnDraw();
@@ -29,6 +31,7 @@ public:
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();