1 | /* |
---|---|
2 | This file is part of the KContacts framework. |
3 | SPDX-FileCopyrightText: 2016-2019 Laurent Montel <montel@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-or-later |
6 | */ |
7 | |
8 | #include "note.h" |
9 | #include "parametermap_p.h" |
10 | |
11 | #include <QDataStream> |
12 | #include <QStringList> |
13 | |
14 | using namespace KContacts; |
15 | |
16 | class Q_DECL_HIDDEN Note::Private : public QSharedData |
17 | { |
18 | public: |
19 | Private() |
20 | { |
21 | } |
22 | |
23 | Private(const Private &other) |
24 | : QSharedData(other) |
25 | { |
26 | mParamMap = other.mParamMap; |
27 | note = other.note; |
28 | } |
29 | |
30 | ParameterMap mParamMap; |
31 | QString note; |
32 | }; |
33 | |
34 | Note::Note() |
35 | : d(new Private) |
36 | { |
37 | } |
38 | |
39 | Note::Note(const Note &other) |
40 | : d(other.d) |
41 | { |
42 | } |
43 | |
44 | Note::Note(const QString ¬e) |
45 | : d(new Private) |
46 | { |
47 | d->note = note; |
48 | } |
49 | |
50 | Note::~Note() |
51 | { |
52 | } |
53 | |
54 | void Note::setNote(const QString ¬e) |
55 | { |
56 | d->note = note; |
57 | } |
58 | |
59 | QString Note::note() const |
60 | { |
61 | return d->note; |
62 | } |
63 | |
64 | bool Note::isValid() const |
65 | { |
66 | return !d->note.isEmpty(); |
67 | } |
68 | |
69 | void Note::setParams(const ParameterMap ¶ms) |
70 | { |
71 | d->mParamMap = params; |
72 | } |
73 | |
74 | ParameterMap Note::params() const |
75 | { |
76 | return d->mParamMap; |
77 | } |
78 | |
79 | bool Note::operator==(const Note &other) const |
80 | { |
81 | return (d->mParamMap == other.d->mParamMap) && (d->note == other.note()); |
82 | } |
83 | |
84 | bool Note::operator!=(const Note &other) const |
85 | { |
86 | return !(other == *this); |
87 | } |
88 | |
89 | Note &Note::operator=(const Note &other) |
90 | { |
91 | if (this != &other) { |
92 | d = other.d; |
93 | } |
94 | |
95 | return *this; |
96 | } |
97 | |
98 | QString Note::toString() const |
99 | { |
100 | QString str = QLatin1String("Note {\n"); |
101 | str += QStringLiteral(" note: %1\n").arg(a: d->note); |
102 | str += d->mParamMap.toString(); |
103 | str += QLatin1String("}\n"); |
104 | return str; |
105 | } |
106 | |
107 | QDataStream &KContacts::operator<<(QDataStream &s, const Note ¬e) |
108 | { |
109 | return s << note.d->mParamMap << note.d->note; |
110 | } |
111 | |
112 | QDataStream &KContacts::operator>>(QDataStream &s, Note ¬e) |
113 | { |
114 | s >> note.d->mParamMap >> note.d->note; |
115 | return s; |
116 | } |
117 |