summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/libiris/iris/xmpp-im/xmpp_vcard.h
blob: e1ea742b7594c13e1044c046c8d31b89b3a15d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
 * xmpp_vcard.h - classes for handling vCards
 * Copyright (C) 2003  Michail Pishchagin
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef JABBER_VCARD_H
#define JABBER_VCARD_H

#include <tqstring.h>
#include <tqstringlist.h>
#include <tqcstring.h>

#include <tqvaluelist.h>
#include <tqdom.h>

class TQDate;

namespace XMPP
{
	class VCard
	{
	public:
		VCard();
		VCard(const VCard &);
		VCard & operator=(const VCard &);
		~VCard();

		TQDomElement toXml(TQDomDocument *) const;
		bool fromXml(const TQDomElement &);
		bool isEmpty() const;

		const TQString &version() const;
		void setVersion(const TQString &);

		const TQString &fullName() const;
		void setFullName(const TQString &);


		const TQString &familyName() const;
		void setFamilyName(const TQString &);

		const TQString &givenName() const;
		void setGivenName(const TQString &);

		const TQString &middleName() const;
		void setMiddleName(const TQString &);

		const TQString &prefixName() const;
		void setPrefixName(const TQString &);

		const TQString &suffixName() const;
		void setSuffixName(const TQString &);


		const TQString &nickName() const;
		void setNickName(const TQString &);


		const TQByteArray &photo() const;
		void setPhoto(const TQByteArray &);

		const TQString &photoURI() const;
		void setPhotoURI(const TQString &);


		const TQDate bday() const;
		void setBday(const TQDate &);

		const TQString &bdayStr() const;
		void setBdayStr(const TQString &);


		class Address {
		public:
			Address();

			bool home;
			bool work;
			bool postal;
			bool parcel;

			bool dom;
			bool intl;

			bool pref;

			TQString pobox;
			TQString extaddr;
			TQString street;
			TQString locality;
			TQString region;
			TQString pcode;
			TQString country;
		};
		typedef TQValueList<Address> AddressList;
		const AddressList &addressList() const;
		void setAddressList(const AddressList &);

		class Label {
		public:
			Label();

			bool home;
			bool work;
			bool postal;
			bool parcel;

			bool dom;
			bool intl;

			bool pref;

			TQStringList lines;
		};
		typedef TQValueList<Label> LabelList;
		const LabelList &labelList() const;
		void setLabelList(const LabelList &);


		class Phone {
		public:
			Phone();

			bool home;
			bool work;
			bool voice;
			bool fax;
			bool pager;
			bool msg;
			bool cell;
			bool video;
			bool bbs;
			bool modem;
			bool isdn;
			bool pcs;
			bool pref;

			TQString number;
		};
		typedef TQValueList<Phone> PhoneList;
		const PhoneList &phoneList() const;
		void setPhoneList(const PhoneList &);


		class Email {
		public:
			Email();

			bool home;
			bool work;
			bool internet;
			bool x400;

			TQString userid;
		};
		typedef TQValueList<Email> EmailList;
		const EmailList &emailList() const;
		void setEmailList(const EmailList &);


		const TQString &jid() const;
		void setJid(const TQString &);

		const TQString &mailer() const;
		void setMailer(const TQString &);

		const TQString &timezone() const;
		void setTimezone(const TQString &);


		class Geo {
		public:
			Geo();

			TQString lat;
			TQString lon;
		};
		const Geo &geo() const;
		void setGeo(const Geo &);


		const TQString &title() const;
		void setTitle(const TQString &);

		const TQString &role() const;
		void setRole(const TQString &);


		const TQByteArray &logo() const;
		void setLogo(const TQByteArray &);

		const TQString &logoURI() const;
		void setLogoURI(const TQString &);


		const VCard *agent() const;
		void setAgent(const VCard &);

		const TQString agentURI() const;
		void setAgentURI(const TQString &);


		class Org {
		public:
			Org();

			TQString name;
			TQStringList unit;
		};
		const Org &org() const;
		void setOrg(const Org &);


		const TQStringList &categories() const;
		void setCategories(const TQStringList &);

		const TQString &note() const;
		void setNote(const TQString &);

		const TQString &prodId() const; // it must equal to "Psi" ;-)
		void setProdId(const TQString &);

		const TQString &rev() const;
		void setRev(const TQString &);

		const TQString &sortString() const;
		void setSortString(const TQString &);


		const TQByteArray &sound() const;
		void setSound(const TQByteArray &);

		const TQString &soundURI() const;
		void setSoundURI(const TQString &);

		const TQString &soundPhonetic() const;
		void setSoundPhonetic(const TQString &);


		const TQString &uid() const;
		void setUid(const TQString &);

		const TQString &url() const;
		void setUrl(const TQString &);

		const TQString &desc() const;
		void setDesc(const TQString &);


		enum PrivacyClass {
			pcNone = 0,
			pcPublic = 1,
			pcPrivate,
			pcConfidential
		};
		const PrivacyClass &privacyClass() const;
		void setPrivacyClass(const PrivacyClass &);


		const TQByteArray &key() const;
		void setKey(const TQByteArray &);

	private:
		class Private;
		Private *d;
	};
}

#endif