696003aad7df49c04e32518cdeaa7dac942001c2
[qwerkisync] / EventTypes / SMS.h
1 /*
2  * Copyright (C) 2011, Jamie Thompson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License as published by the Free Software Foundation; either
7  * version 3 of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; If not, see
16  * <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef EVENTTYPES_SMS_H
20 #define EVENTTYPES_SMS_H
21
22 #include <QDateTime>
23 #include <QDebug>
24 #include <QList>
25 #include <QString>
26
27 #include "RtcomEvent.h"
28
29 #include "AttachmentCollection.h"
30
31 class Settings;
32
33 namespace EventTypes
34 {
35         class SMS : public RtcomEvent
36         {
37         public:
38                 enum eDestination
39                 {
40                         INBOX,
41                         SENT
42                 };
43
44         public:
45                 virtual const DBBackends::iDBBackend &DB() const;
46
47                 SMS(const Settings &settings);
48                 ~SMS();
49
50                 virtual const uint HashCode() const;
51
52                 const float Version() const { return m_Version; }
53                 void setVersion(const float version) { m_Version = version; }
54
55                 const bool IsRead() const { return m_Read; }
56                 void setIsRead(const bool isRead) { m_Read = isRead; }
57
58                 const eDestination Destination() const { return m_Destination; }
59                 void setDestination(const eDestination destination) { m_Destination = destination; }
60
61                 virtual const QDateTime Timestamp() const { return m_Timestamp; }
62                 void setTimestamp(const QDateTime timestamp) { m_Timestamp = timestamp; }
63
64                 const QString Tel() const { return m_Tel; }
65                 void setTel(const QString tel) { m_Tel = tel; }
66
67                 QString Contents() const { return m_Contents; }
68                 void setContents(const QString contents) { m_Contents = contents; }
69
70                 virtual const AttachmentCollection & Attachments() const { return m_Attachments; }
71                 virtual AttachmentCollection & Attachments() { return m_Attachments; }
72
73         public:
74                 virtual void Export(const QString &baseDirectory) const;
75                 SMS(const Settings &settings, const RTComElEvent& event, const QList<RTComElAttachment*> attachments = QList<RTComElAttachment*>());
76                 virtual RTComElEvent * toRTComEvent(const NumberToNameLookup &numberToNameLookup) const;
77
78         protected:
79                 const Settings &CurrentSettings() const { return m_Settings; }
80
81         private:
82                 const Settings &m_Settings;
83                 float m_Version;
84                 bool m_Read;
85                 eDestination m_Destination;
86                 QDateTime m_Timestamp;
87                 QString m_Tel;
88                 QString m_Contents;
89                 AttachmentCollection m_Attachments;
90         };
91 }
92
93 QDebug operator<<(QDebug dbg, EventTypes::SMS & event);
94
95 #endif // EVENTTYPES_SMS_H