blob: cfdc72c4b706d8670a3e9aa74543b2f7a5bdd1aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
/*
* StampsModel.cpp
*
* Created on: Mar 29, 2012
* Author: Simon
*/
#include "StampsModel.h"
#include "StampsView.h"
#include "client/Client.h"
#include "StampsModelException.h"
StampsModel::StampsModel():
stamp(NULL),
currentPage(1)
{
// TODO Auto-generated constructor stub
stampIDs = Client::Ref().GetStamps();
}
std::vector<Save *> StampsModel::GetStampsList()
{
return stampsList;
}
void StampsModel::AddObserver(StampsView * observer)
{
observers.push_back(observer);
observer->NotifyStampsListChanged(this);
observer->NotifyPageChanged(this);
}
void StampsModel::notifyStampsListChanged()
{
for(int i = 0; i < observers.size(); i++)
{
observers[i]->NotifyStampsListChanged(this);
}
}
void StampsModel::notifyPageChanged()
{
for(int i = 0; i < observers.size(); i++)
{
observers[i]->NotifyPageChanged(this);
}
}
Save * StampsModel::GetStamp()
{
return stamp;
}
void StampsModel::SetStamp(Save * newStamp)
{
if(stamp)
delete stamp;
stamp = new Save(*newStamp);
}
void StampsModel::UpdateStampsList(int pageNumber)
{
std::vector<Save*> tempStampsList = stampsList;
stampsList.clear();
currentPage = pageNumber;
notifyPageChanged();
notifyStampsListChanged();
/*notifyStampsListChanged();
for(int i = 0; i < tempStampsList.size(); i++)
{
delete tempStampsList[i];
}*/
int stampsEnd = pageNumber*20;
for(int i = stampsEnd-20; i<stampIDs.size() && i<stampsEnd; i++)
{
Save * tempSave = Client::Ref().GetStamp(stampIDs[i]);
if(tempSave)
{
stampsList.push_back(tempSave);
}
}
notifyStampsListChanged();
}
void StampsModel::SelectStamp(std::string stampID)
{
for(int i = 0; i < selected.size(); i++)
{
if(selected[i]==stampID)
{
return;
}
}
selected.push_back(stampID);
notifySelectedChanged();
}
void StampsModel::DeselectStamp(std::string stampID)
{
bool changed = false;
restart:
for(int i = 0; i < selected.size(); i++)
{
if(selected[i]==stampID)
{
selected.erase(selected.begin()+i);
changed = true;
goto restart; //Just ensure all cases are removed.
}
}
if(changed)
notifySelectedChanged();
}
void StampsModel::notifySelectedChanged()
{
for(int i = 0; i < observers.size(); i++)
{
StampsView* cObserver = observers[i];
cObserver->NotifySelectedChanged(this);
}
}
StampsModel::~StampsModel() {
if(stamp)
delete stamp;
}
|