Added missed call property to phone calls.
[qwerkisync] / EventTypes / PhoneCall.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_PHONECALL_H
20 #define EVENTTYPES_PHONECALL_H
21
22 #include "Settings.h"
23
24 #include <QDateTime>
25 #include <QDebug>
26 #include <QList>
27 #include <QString>
28
29 #include "RtcomEvent.h"
30
31 #include "AttachmentCollection.h"
32
33 class Settings;
34
35 namespace EventTypes
36 {
37         class PhoneCall : public RtcomEvent
38         {
39         public:
40                 virtual const DBBackends::iDBBackend &DB() const;
41
42                 PhoneCall(const Settings &settings);
43                 PhoneCall(const Settings &settings, const Settings::eDirection destination, const QDateTime &timestamp, const QString &tel, const int durationInSeconds, const bool isMissedCall, const AttachmentCollection &attachments = AttachmentCollection());
44                 ~PhoneCall();
45
46                 virtual const uint HashCode() const;
47
48                 const Settings::eDirection Destination() const { return m_Destination; }
49                 void Destination(const Settings::eDirection destination) { m_Destination = destination; }
50
51                 virtual const QDateTime Timestamp() const { return m_Timestamp; }
52                 void Timestamp(const QDateTime timestamp) { m_Timestamp = timestamp; }
53
54                 const QString Tel() const { return m_Tel; }
55                 void Tel(const QString tel) { m_Tel = tel; }
56
57                 virtual const int DurationInSeconds() const { return m_DurationInSeconds; }
58                 void DurationInSeconds(const int durationInSeconds) { m_DurationInSeconds = durationInSeconds; }
59
60                 virtual const AttachmentCollection & Attachments() const { return m_Attachments; }
61                 virtual AttachmentCollection & Attachments() { return m_Attachments; }
62
63                 const bool IsMissedCall() const { return m_IsMissedCall; }
64                 void IsMissedCall(const bool isMissedCall) { m_IsMissedCall = isMissedCall; }
65
66         public:
67                 virtual void Export(const QString &baseDirectory, const NumberToNameLookup &numberToNameLookup) const;
68                 PhoneCall(const Settings &settings, const RTComElEvent& event, const QList<RTComElAttachment*> attachments = QList<RTComElAttachment*>());
69                 virtual RTComElEvent * toRTComEvent(const NumberToNameLookup &numberToNameLookup) const;
70
71         protected:
72                 const Settings &CurrentSettings() const { return m_Settings; }
73
74         private:
75                 const Settings &m_Settings;
76                 Settings::eDirection m_Destination;
77                 QDateTime m_Timestamp;
78                 QString m_Tel;
79                 int m_DurationInSeconds;
80                 bool m_IsMissedCall;
81                 AttachmentCollection m_Attachments;
82         };
83 }
84
85 QDebug operator<<(QDebug dbg, EventTypes::PhoneCall & event);
86
87 #endif // EVENTTYPES_PHONECALL_H