forked from sialan-labs/kaqaz
-
Notifications
You must be signed in to change notification settings - Fork 12
/
databasedatatypes.h
116 lines (97 loc) · 2.24 KB
/
databasedatatypes.h
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
/*
Copyright (C) 2014 Aseman
http://aseman.co
Papyrus is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Papyrus is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DATABASEDATATYPES_H
#define DATABASEDATATYPES_H
#include <QDateTime>
#include <QColor>
#include <QStringList>
#include <QGeoCoordinate>
#include <QObject>
class Enums : public QObject
{
Q_OBJECT
Q_ENUMS(PaperType)
Q_ENUMS(SearchPaperType)
public:
enum PaperType {
Normal = 0,
ToDo = 1
};
enum SearchPaperType {
NormalPapers = 1,
CompletedTasks = 2,
UncompletedTasks = 4,
ToDoPapers = 6,
AllPapers = 7
};
Enums(QObject *parent = 0);
~Enums();
};
class GroupClass
{
public:
int id;
QString name;
QColor color;
QString uuid;
bool operator ==(const GroupClass & g) const {
return (g.id == id && g.name == name && g.color == color && g.uuid == uuid);
}
};
class ActivityClass
{
public:
int id;
QString name;
QString description;
QString image;
};
class PaperClass
{
public:
PaperClass(){
id = -1;
type = Enums::Normal;
temperature = 0;
group = 0;
}
int id;
QString uuid;
QString title;
QString text;
QDateTime create;
QDateTime modified;
QGeoCoordinate location;
int group;
int activity;
QString weather;
int temperature;
Enums::PaperType type;
};
class SyncItem
{
public:
SyncItem(){
revision = -1;
last_revision = -1;
}
QString id;
int revision;
int last_revision;
};
typedef QHash<QString,SyncItem> SyncItemHash;
Q_DECLARE_METATYPE( SyncItem )
Q_DECLARE_METATYPE( SyncItemHash )
#endif // DATABASEDATATYPES_H