blob: 185df683b8225e34f7d1684b6cd0c57a50a7a211 (
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
|
/*
* LoginModel.cpp
*
* Created on: Jan 24, 2012
* Author: Simon
*/
#include "LoginModel.h"
LoginModel::LoginModel() {
// TODO Auto-generated constructor stub
}
void LoginModel::Login(string username, string password)
{
statusText = "Logging in...";
loginStatus = false;
notifyStatusChanged();
LoginStatus status = Client::Ref().Login(username, password);
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;
}
bool LoginModel::GetStatus()
{
return loginStatus;
}
void LoginModel::notifyStatusChanged()
{
for(int i = 0; i < observers.size(); i++)
{
observers[i]->NotifyStatusChanged(this);
}
}
LoginModel::~LoginModel() {
// TODO Auto-generated destructor stub
}
|