-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersona.cpp
90 lines (73 loc) · 1.58 KB
/
persona.cpp
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
#include "persona.h"
#include <QVariant>
Persona::Persona(QObject *parent)
: SObject{parent}
{
}
QString Persona::family() const
{
return this->property("family").toString();
}
QString Persona::name() const
{
return this->property("name").toString();
}
QString Persona::patronym() const
{
return this->property("patronym").toString();
}
QString Persona::birthDate() const
{
}
QString Persona::phone() const
{
return this->property("phone").toString();
}
QString Persona::email() const
{
return this->property("email").toString();
}
QString Persona::fullname() const
{
QStringList result;
result << this->family() << this->name() << this->patronym();
return result.join(" ");
}
void Persona::setFamily(const QString &f)
{
this->setProperty("family", f);
}
void Persona::setName(const QString &n)
{
this->setProperty("name", n);
}
void Persona::setPatronym(const QString &p)
{
this->setProperty("patronym", p);
}
void Persona::setPhone(const QString &ph)
{
this->setProperty("phone", ph);
}
void Persona::setEmail(const QString &e)
{
this->setProperty("email", e);
}
void Persona::appendPhone(const QString &ph)
{
auto phone = this->phone();
if (!phone.isEmpty()) {
phone.append(tr("; "));
}
phone.append(ph);
this->setPhone(phone);
}
void Persona::appendEmail(const QString &e)
{
auto email = this->email();
if (!email.isEmpty()) {
email.append(tr("; "));
}
email.append(e);
this->setEmail(email);
}