testing http push
[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 <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 PhoneCall : public RtcomEvent
36         {
37         public:
38                 enum eDestination
39                 {
40                         INCOMING,
41                         OUTGOING
42                 };
43
44         public:
45                 virtual const DBBackends::iDBBackend &DB() const;
46
47                 PhoneCall(const Settings &settings);
48                 ~PhoneCall();
49
50                 virtual const uint HashCode() const;
51
52                 const eDestination Destination() const { return m_Destination; }
53                 void setDestination(const eDestination destination) { m_Destination = destination; }
54
55                 virtual const QDateTime Timestamp() const { return m_Timestamp; }
56                 void setTimestamp(const QDateTime timestamp) { m_Timestamp = timestamp; }
57
58                 const QString Tel() const { return m_Tel; }
59                 void setTel(const QString tel) { m_Tel = tel; }
60
61                 virtual const int DurationInSeconds() const { return m_DurationInSeconds; }
62                 void setDurationInSeconds(const int durationInSeconds) { m_DurationInSeconds = durationInSeconds; }
63
64                 virtual const AttachmentCollection & Attachments() const { return m_Attachments; }
65                 virtual AttachmentCollection & Attachments() { return m_Attachments; }
66
67         public:
68                 virtual void Export(const QString &baseDirectory) const;
69                 PhoneCall(const Settings &settings, const RTComElEvent& event, const QList<RTComElAttachment*> attachments = QList<RTComElAttachment*>());
70                 virtual RTComElEvent * toRTComEvent(const NumberToNameLookup &numberToNameLookup) const;
71
72         protected:
73                 const Settings &CurrentSettings() const { return m_Settings; }
74
75         private:
76                 const Settings &m_Settings;
77                 eDestination m_Destination;
78                 QDateTime m_Timestamp;
79                 QString m_Tel;
80                 int m_DurationInSeconds;
81                 AttachmentCollection m_Attachments;
82         };
83 }
84
85 QDebug operator<<(QDebug dbg, EventTypes::PhoneCall & event);
86
87 #endif // EVENTTYPES_PHONECALL_H