blob: 3959964b601c0e04e40331c12366af46fd99897f (
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
|
#include <QTimer>
#include <QDebug>
#include <QDesktopServices>
#include <QUrl>
#include "handlers.h"
#include "lib/libgoshim.h"
Backend::Backend(QObject *parent) : QObject(parent)
{
}
QString Backend::getAppName()
{
return QString(GetAppName());
}
QString Backend::getVersion()
{
return QString(GetVersion());
}
void Backend::switchOn()
{
SwitchOn();
}
void Backend::switchOff()
{
SwitchOff();
}
void Backend::donateAccepted()
{
DonateAccepted();
}
void Backend::login(QString username, QString password)
{
// TODO: there has to be a cleaner way to do the conversion
char * u = new char [username.length()+1];
char * p = new char [password.length()+1];
strcpy(u, username.toStdString().c_str());
strcpy(p, password.toStdString().c_str());
Login(u, p);
delete [] u;
delete [] p;
}
void Backend::quit()
{
Quit();
emit this->quitDone();
}
|