~ubuntu-branches/debian/jessie/attica-kf5/jessie

« back to all changes in this revision

Viewing changes to src/message.cpp

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2014-07-15 10:53:09 UTC
  • Revision ID: package-import@ubuntu.com-20140715105309-nnjxenwcs6h4qznf
Tags: upstream-5.0.0
ImportĀ upstreamĀ versionĀ 5.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This file is part of KDE.
 
3
 
 
4
    Copyright (c) 2008 Cornelius Schumacher <schumacher@kde.org>
 
5
 
 
6
    This library is free software; you can redistribute it and/or
 
7
    modify it under the terms of the GNU Lesser General Public
 
8
    License as published by the Free Software Foundation; either
 
9
    version 2.1 of the License, or (at your option) version 3, or any
 
10
    later version accepted by the membership of KDE e.V. (or its
 
11
    successor approved by the membership of KDE e.V.), which shall
 
12
    act as a proxy defined in Section 6 of version 3 of the license.
 
13
 
 
14
    This library is distributed in the hope that it will be useful,
 
15
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
    Lesser General Public License for more details.
 
18
 
 
19
    You should have received a copy of the GNU Lesser General Public
 
20
    License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
21
 
 
22
*/
 
23
 
 
24
#include "message.h"
 
25
 
 
26
using namespace Attica;
 
27
 
 
28
class Message::Private : public QSharedData
 
29
{
 
30
public:
 
31
    QString m_id;
 
32
    QString m_from;
 
33
    QString m_to;
 
34
    QDateTime m_sent;
 
35
    Status m_status;
 
36
    QString m_subject;
 
37
    QString m_body;
 
38
 
 
39
    Private()
 
40
        : m_status(Unread)
 
41
    {
 
42
    }
 
43
};
 
44
 
 
45
Message::Message()
 
46
    : d(new Private)
 
47
{
 
48
}
 
49
 
 
50
Message::Message(const Message &other)
 
51
    : d(other.d)
 
52
{
 
53
}
 
54
 
 
55
Message &Message::operator=(const Attica::Message &other)
 
56
{
 
57
    d = other.d;
 
58
    return *this;
 
59
}
 
60
 
 
61
Message::~Message()
 
62
{
 
63
}
 
64
 
 
65
void Message::setId(const QString &u)
 
66
{
 
67
    d->m_id = u;
 
68
}
 
69
 
 
70
QString Message::id() const
 
71
{
 
72
    return d->m_id;
 
73
}
 
74
 
 
75
void Message::setFrom(const QString &n)
 
76
{
 
77
    d->m_from = n;
 
78
}
 
79
 
 
80
QString Message::from() const
 
81
{
 
82
    return d->m_from;
 
83
}
 
84
 
 
85
void Message::setTo(const QString &n)
 
86
{
 
87
    d->m_to = n;
 
88
}
 
89
 
 
90
QString Message::to() const
 
91
{
 
92
    return d->m_to;
 
93
}
 
94
 
 
95
void Message::setSent(const QDateTime &date)
 
96
{
 
97
    d->m_sent = date;
 
98
}
 
99
 
 
100
QDateTime Message::sent() const
 
101
{
 
102
    return d->m_sent;
 
103
}
 
104
 
 
105
void Message::setStatus(Message::Status s)
 
106
{
 
107
    d->m_status = s;
 
108
}
 
109
 
 
110
Message::Status Message::status() const
 
111
{
 
112
    return d->m_status;
 
113
}
 
114
 
 
115
void Message::setSubject(const QString &subject)
 
116
{
 
117
    d->m_subject = subject;
 
118
}
 
119
 
 
120
QString Message::subject() const
 
121
{
 
122
    return d->m_subject;
 
123
}
 
124
 
 
125
void Message::setBody(const QString &body)
 
126
{
 
127
    d->m_body = body;
 
128
}
 
129
 
 
130
QString Message::body() const
 
131
{
 
132
    return d->m_body;
 
133
}
 
134
 
 
135
bool Message::isValid() const
 
136
{
 
137
    return !(d->m_id.isEmpty());
 
138
}