blob: 5b70c2c1735af76ea57a49d0994deb2fb228f193 (
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
|
#include "LoginModel.h"
LoginModel::LoginModel():
currentUser(0, "")
{
}
void LoginModel::Login(string username, string password)
{
statusText = "Logging in...";
loginStatus = false;
notifyStatusChanged();
LoginStatus status = Client::Ref().Login(username, password, currentUser);
switch(status)
{
case LoginOkay:
statusText = "Logged in";
loginStatus = true;
break;
case LoginError:
statusText = "Error: " + Client::Ref().GetLastError();
break;
}
notifyStatusChanged();
}
void LoginModel::AddObserver(LoginView * observer)
{
observers.push_back(observer);
}
string LoginModel::GetStatusText()
{
return statusText;
}
User LoginModel::GetUser()
{
return currentUser;
}
bool LoginModel::GetStatus()
{
return loginStatus;
}
void LoginModel::notifyStatusChanged()
{
for(int i = 0; i < observers.size(); i++)
{
observers[i]->NotifyStatusChanged(this);
}
}
LoginModel::~LoginModel() {
}
|