e8059274ad5bafcaf57dd4a36b6fb0dcf23afc80
[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, int durationInSeconds, 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         public:
64                 virtual void Export(const QString &baseDirectory, const NumberToNameLookup &numberToNameLookup) const;
65                 PhoneCall(const Settings &settings, const RTComElEvent& event, const QList<RTComElAttachment*> attachments = QList<RTComElAttachment*>());
66                 virtual RTComElEvent * toRTComEvent(const NumberToNameLookup &numberToNameLookup) const;
67
68         protected:
69                 const Settings &CurrentSettings() const { return m_Settings; }
70
71         private:
72                 const Settings &m_Settings;
73                 Settings::eDirection m_Destination;
74                 QDateTime m_Timestamp;
75                 QString m_Tel;
76                 int m_DurationInSeconds;
77                 AttachmentCollection m_Attachments;
78         };
79 }
80
81 QDebug operator<<(QDebug dbg, EventTypes::PhoneCall & event);
82
83 #endif // EVENTTYPES_PHONECALL_H