summaryrefslogtreecommitdiffabout
path: root/kabc
Unidiff
Diffstat (limited to 'kabc') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/addressbook.cpp5
-rw-r--r--kabc/addressbook.h2
-rw-r--r--kabc/addressee.cpp1
3 files changed, 5 insertions, 3 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp
index 6e8d027..3ec0795 100644
--- a/kabc/addressbook.cpp
+++ b/kabc/addressbook.cpp
@@ -1,777 +1,778 @@
1/* 1/*
2 This file is part of libkabc. 2 This file is part of libkabc.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> 3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details. 13 Library General Public License for more details.
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21/* 21/*
22Enhanced Version of the file for platform independent KDE tools. 22Enhanced Version of the file for platform independent KDE tools.
23Copyright (c) 2004 Ulf Schenk 23Copyright (c) 2004 Ulf Schenk
24 24
25$Id$ 25$Id$
26*/ 26*/
27 27
28/*US 28/*US
29 29
30#include <qfile.h> 30#include <qfile.h>
31#include <qregexp.h> 31#include <qregexp.h>
32#include <qtimer.h> 32#include <qtimer.h>
33 33
34#include <kapplication.h> 34#include <kapplication.h>
35#include <kinstance.h> 35#include <kinstance.h>
36#include <kstandarddirs.h> 36#include <kstandarddirs.h>
37 37
38#include "errorhandler.h" 38#include "errorhandler.h"
39*/ 39*/
40#include <qptrlist.h> 40#include <qptrlist.h>
41 41
42#include <kglobal.h> 42#include <kglobal.h>
43#include <klocale.h> 43#include <klocale.h>
44#include <kdebug.h> 44#include <kdebug.h>
45#include <libkcal/syncdefines.h> 45#include <libkcal/syncdefines.h>
46#include "addressbook.h" 46#include "addressbook.h"
47#include "resource.h" 47#include "resource.h"
48 48
49//US #include "addressbook.moc" 49//US #include "addressbook.moc"
50 50
51using namespace KABC; 51using namespace KABC;
52 52
53struct AddressBook::AddressBookData 53struct AddressBook::AddressBookData
54{ 54{
55 Addressee::List mAddressees; 55 Addressee::List mAddressees;
56 Addressee::List mRemovedAddressees; 56 Addressee::List mRemovedAddressees;
57 Field::List mAllFields; 57 Field::List mAllFields;
58 KConfig *mConfig; 58 KConfig *mConfig;
59 KRES::Manager<Resource> *mManager; 59 KRES::Manager<Resource> *mManager;
60//US ErrorHandler *mErrorHandler; 60//US ErrorHandler *mErrorHandler;
61}; 61};
62 62
63struct AddressBook::Iterator::IteratorData 63struct AddressBook::Iterator::IteratorData
64{ 64{
65 Addressee::List::Iterator mIt; 65 Addressee::List::Iterator mIt;
66}; 66};
67 67
68struct AddressBook::ConstIterator::ConstIteratorData 68struct AddressBook::ConstIterator::ConstIteratorData
69{ 69{
70 Addressee::List::ConstIterator mIt; 70 Addressee::List::ConstIterator mIt;
71}; 71};
72 72
73AddressBook::Iterator::Iterator() 73AddressBook::Iterator::Iterator()
74{ 74{
75 d = new IteratorData; 75 d = new IteratorData;
76} 76}
77 77
78AddressBook::Iterator::Iterator( const AddressBook::Iterator &i ) 78AddressBook::Iterator::Iterator( const AddressBook::Iterator &i )
79{ 79{
80 d = new IteratorData; 80 d = new IteratorData;
81 d->mIt = i.d->mIt; 81 d->mIt = i.d->mIt;
82} 82}
83 83
84AddressBook::Iterator &AddressBook::Iterator::operator=( const AddressBook::Iterator &i ) 84AddressBook::Iterator &AddressBook::Iterator::operator=( const AddressBook::Iterator &i )
85{ 85{
86 if( this == &i ) return *this; // guard against self assignment 86 if( this == &i ) return *this; // guard against self assignment
87 delete d; // delete the old data the Iterator was completely constructed before 87 delete d; // delete the old data the Iterator was completely constructed before
88 d = new IteratorData; 88 d = new IteratorData;
89 d->mIt = i.d->mIt; 89 d->mIt = i.d->mIt;
90 return *this; 90 return *this;
91} 91}
92 92
93AddressBook::Iterator::~Iterator() 93AddressBook::Iterator::~Iterator()
94{ 94{
95 delete d; 95 delete d;
96} 96}
97 97
98const Addressee &AddressBook::Iterator::operator*() const 98const Addressee &AddressBook::Iterator::operator*() const
99{ 99{
100 return *(d->mIt); 100 return *(d->mIt);
101} 101}
102 102
103Addressee &AddressBook::Iterator::operator*() 103Addressee &AddressBook::Iterator::operator*()
104{ 104{
105 return *(d->mIt); 105 return *(d->mIt);
106} 106}
107 107
108Addressee *AddressBook::Iterator::operator->() 108Addressee *AddressBook::Iterator::operator->()
109{ 109{
110 return &(*(d->mIt)); 110 return &(*(d->mIt));
111} 111}
112 112
113AddressBook::Iterator &AddressBook::Iterator::operator++() 113AddressBook::Iterator &AddressBook::Iterator::operator++()
114{ 114{
115 (d->mIt)++; 115 (d->mIt)++;
116 return *this; 116 return *this;
117} 117}
118 118
119AddressBook::Iterator &AddressBook::Iterator::operator++(int) 119AddressBook::Iterator &AddressBook::Iterator::operator++(int)
120{ 120{
121 (d->mIt)++; 121 (d->mIt)++;
122 return *this; 122 return *this;
123} 123}
124 124
125AddressBook::Iterator &AddressBook::Iterator::operator--() 125AddressBook::Iterator &AddressBook::Iterator::operator--()
126{ 126{
127 (d->mIt)--; 127 (d->mIt)--;
128 return *this; 128 return *this;
129} 129}
130 130
131AddressBook::Iterator &AddressBook::Iterator::operator--(int) 131AddressBook::Iterator &AddressBook::Iterator::operator--(int)
132{ 132{
133 (d->mIt)--; 133 (d->mIt)--;
134 return *this; 134 return *this;
135} 135}
136 136
137bool AddressBook::Iterator::operator==( const Iterator &it ) 137bool AddressBook::Iterator::operator==( const Iterator &it )
138{ 138{
139 return ( d->mIt == it.d->mIt ); 139 return ( d->mIt == it.d->mIt );
140} 140}
141 141
142bool AddressBook::Iterator::operator!=( const Iterator &it ) 142bool AddressBook::Iterator::operator!=( const Iterator &it )
143{ 143{
144 return ( d->mIt != it.d->mIt ); 144 return ( d->mIt != it.d->mIt );
145} 145}
146 146
147 147
148AddressBook::ConstIterator::ConstIterator() 148AddressBook::ConstIterator::ConstIterator()
149{ 149{
150 d = new ConstIteratorData; 150 d = new ConstIteratorData;
151} 151}
152 152
153AddressBook::ConstIterator::ConstIterator( const AddressBook::ConstIterator &i ) 153AddressBook::ConstIterator::ConstIterator( const AddressBook::ConstIterator &i )
154{ 154{
155 d = new ConstIteratorData; 155 d = new ConstIteratorData;
156 d->mIt = i.d->mIt; 156 d->mIt = i.d->mIt;
157} 157}
158 158
159AddressBook::ConstIterator &AddressBook::ConstIterator::operator=( const AddressBook::ConstIterator &i ) 159AddressBook::ConstIterator &AddressBook::ConstIterator::operator=( const AddressBook::ConstIterator &i )
160{ 160{
161 if( this == &i ) return *this; // guard for self assignment 161 if( this == &i ) return *this; // guard for self assignment
162 delete d; // delete the old data because the Iterator was really constructed before 162 delete d; // delete the old data because the Iterator was really constructed before
163 d = new ConstIteratorData; 163 d = new ConstIteratorData;
164 d->mIt = i.d->mIt; 164 d->mIt = i.d->mIt;
165 return *this; 165 return *this;
166} 166}
167 167
168AddressBook::ConstIterator::~ConstIterator() 168AddressBook::ConstIterator::~ConstIterator()
169{ 169{
170 delete d; 170 delete d;
171} 171}
172 172
173const Addressee &AddressBook::ConstIterator::operator*() const 173const Addressee &AddressBook::ConstIterator::operator*() const
174{ 174{
175 return *(d->mIt); 175 return *(d->mIt);
176} 176}
177 177
178const Addressee* AddressBook::ConstIterator::operator->() const 178const Addressee* AddressBook::ConstIterator::operator->() const
179{ 179{
180 return &(*(d->mIt)); 180 return &(*(d->mIt));
181} 181}
182 182
183AddressBook::ConstIterator &AddressBook::ConstIterator::operator++() 183AddressBook::ConstIterator &AddressBook::ConstIterator::operator++()
184{ 184{
185 (d->mIt)++; 185 (d->mIt)++;
186 return *this; 186 return *this;
187} 187}
188 188
189AddressBook::ConstIterator &AddressBook::ConstIterator::operator++(int) 189AddressBook::ConstIterator &AddressBook::ConstIterator::operator++(int)
190{ 190{
191 (d->mIt)++; 191 (d->mIt)++;
192 return *this; 192 return *this;
193} 193}
194 194
195AddressBook::ConstIterator &AddressBook::ConstIterator::operator--() 195AddressBook::ConstIterator &AddressBook::ConstIterator::operator--()
196{ 196{
197 (d->mIt)--; 197 (d->mIt)--;
198 return *this; 198 return *this;
199} 199}
200 200
201AddressBook::ConstIterator &AddressBook::ConstIterator::operator--(int) 201AddressBook::ConstIterator &AddressBook::ConstIterator::operator--(int)
202{ 202{
203 (d->mIt)--; 203 (d->mIt)--;
204 return *this; 204 return *this;
205} 205}
206 206
207bool AddressBook::ConstIterator::operator==( const ConstIterator &it ) 207bool AddressBook::ConstIterator::operator==( const ConstIterator &it )
208{ 208{
209 return ( d->mIt == it.d->mIt ); 209 return ( d->mIt == it.d->mIt );
210} 210}
211 211
212bool AddressBook::ConstIterator::operator!=( const ConstIterator &it ) 212bool AddressBook::ConstIterator::operator!=( const ConstIterator &it )
213{ 213{
214 return ( d->mIt != it.d->mIt ); 214 return ( d->mIt != it.d->mIt );
215} 215}
216 216
217 217
218AddressBook::AddressBook() 218AddressBook::AddressBook()
219{ 219{
220 init(0, "contact"); 220 init(0, "contact");
221} 221}
222 222
223AddressBook::AddressBook( const QString &config ) 223AddressBook::AddressBook( const QString &config )
224{ 224{
225 init(config, "contact"); 225 init(config, "contact");
226} 226}
227 227
228AddressBook::AddressBook( const QString &config, const QString &family ) 228AddressBook::AddressBook( const QString &config, const QString &family )
229{ 229{
230 init(config, family); 230 init(config, family);
231 231
232} 232}
233 233
234// the default family is "contact" 234// the default family is "contact"
235void AddressBook::init(const QString &config, const QString &family ) 235void AddressBook::init(const QString &config, const QString &family )
236{ 236{
237 d = new AddressBookData; 237 d = new AddressBookData;
238 QString fami = family; 238 QString fami = family;
239 qDebug("new ab "); 239 qDebug("new ab ");
240 if (config != 0) { 240 if (config != 0) {
241 qDebug("config != 0 "); 241 qDebug("config != 0 ");
242 if ( family == "syncContact" ) { 242 if ( family == "syncContact" ) {
243 qDebug("creating sync config "); 243 qDebug("creating sync config ");
244 fami = "contact"; 244 fami = "contact";
245 KConfig* con = new KConfig( locateLocal("config", "syncContactrc") ); 245 KConfig* con = new KConfig( locateLocal("config", "syncContactrc") );
246 con->setGroup( "General" ); 246 con->setGroup( "General" );
247 con->writeEntry( "ResourceKeys", QString("sync") ); 247 con->writeEntry( "ResourceKeys", QString("sync") );
248 con->writeEntry( "Standard", QString("sync") ); 248 con->writeEntry( "Standard", QString("sync") );
249 con->setGroup( "Resource_sync" ); 249 con->setGroup( "Resource_sync" );
250 con->writeEntry( "FileFormat", QString("vcard") ); 250 con->writeEntry( "FileFormat", QString("vcard") );
251 con->writeEntry( "FileName", config ); 251 con->writeEntry( "FileName", config );
252 con->writeEntry( "ResourceIdentifier", QString("sync") ); 252 con->writeEntry( "ResourceIdentifier", QString("sync") );
253 con->writeEntry( "ResourceName", QString("sync_res") ); 253 con->writeEntry( "ResourceName", QString("sync_res") );
254 con->writeEntry( "ResourceType", QString("file") ); 254 con->writeEntry( "ResourceType", QString("file") );
255 //con->sync(); 255 //con->sync();
256 d->mConfig = con; 256 d->mConfig = con;
257 } 257 }
258 else 258 else
259 d->mConfig = new KConfig( locateLocal("config", config) ); 259 d->mConfig = new KConfig( locateLocal("config", config) );
260// qDebug("AddressBook::init 1 config=%s",config.latin1() ); 260// qDebug("AddressBook::init 1 config=%s",config.latin1() );
261 } 261 }
262 else { 262 else {
263 d->mConfig = 0; 263 d->mConfig = 0;
264// qDebug("AddressBook::init 1 config=0"); 264// qDebug("AddressBook::init 1 config=0");
265 } 265 }
266 266
267//US d->mErrorHandler = 0; 267//US d->mErrorHandler = 0;
268 d->mManager = new KRES::Manager<Resource>( fami, false ); 268 d->mManager = new KRES::Manager<Resource>( fami, false );
269 d->mManager->readConfig( d->mConfig ); 269 d->mManager->readConfig( d->mConfig );
270 if ( family == "syncContact" ) { 270 if ( family == "syncContact" ) {
271 KRES::Manager<Resource> *manager = d->mManager; 271 KRES::Manager<Resource> *manager = d->mManager;
272 KRES::Manager<Resource>::ActiveIterator it; 272 KRES::Manager<Resource>::ActiveIterator it;
273 for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { 273 for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) {
274 (*it)->setAddressBook( this ); 274 (*it)->setAddressBook( this );
275 if ( !(*it)->open() ) 275 if ( !(*it)->open() )
276 error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); 276 error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) );
277 } 277 }
278 Resource *res = standardResource(); 278 Resource *res = standardResource();
279 if ( !res ) { 279 if ( !res ) {
280 qDebug("ERROR: no standard resource"); 280 qDebug("ERROR: no standard resource");
281 res = manager->createResource( "file" ); 281 res = manager->createResource( "file" );
282 if ( res ) 282 if ( res )
283 { 283 {
284 addResource( res ); 284 addResource( res );
285 } 285 }
286 else 286 else
287 qDebug(" No resource available!!!"); 287 qDebug(" No resource available!!!");
288 } 288 }
289 setStandardResource( res ); 289 setStandardResource( res );
290 manager->writeConfig(); 290 manager->writeConfig();
291 } 291 }
292 addCustomField( i18n( "Department" ), KABC::Field::Organization, 292 addCustomField( i18n( "Department" ), KABC::Field::Organization,
293 "X-Department", "KADDRESSBOOK" ); 293 "X-Department", "KADDRESSBOOK" );
294 addCustomField( i18n( "Profession" ), KABC::Field::Organization, 294 addCustomField( i18n( "Profession" ), KABC::Field::Organization,
295 "X-Profession", "KADDRESSBOOK" ); 295 "X-Profession", "KADDRESSBOOK" );
296 addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, 296 addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization,
297 "X-AssistantsName", "KADDRESSBOOK" ); 297 "X-AssistantsName", "KADDRESSBOOK" );
298 addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, 298 addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization,
299 "X-ManagersName", "KADDRESSBOOK" ); 299 "X-ManagersName", "KADDRESSBOOK" );
300 addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, 300 addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal,
301 "X-SpousesName", "KADDRESSBOOK" ); 301 "X-SpousesName", "KADDRESSBOOK" );
302 addCustomField( i18n( "Office" ), KABC::Field::Personal, 302 addCustomField( i18n( "Office" ), KABC::Field::Personal,
303 "X-Office", "KADDRESSBOOK" ); 303 "X-Office", "KADDRESSBOOK" );
304 addCustomField( i18n( "IM Address" ), KABC::Field::Personal, 304 addCustomField( i18n( "IM Address" ), KABC::Field::Personal,
305 "X-IMAddress", "KADDRESSBOOK" ); 305 "X-IMAddress", "KADDRESSBOOK" );
306 addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, 306 addCustomField( i18n( "Anniversary" ), KABC::Field::Personal,
307 "X-Anniversary", "KADDRESSBOOK" ); 307 "X-Anniversary", "KADDRESSBOOK" );
308 308
309 //US added this field to become compatible with Opie/qtopia addressbook 309 //US added this field to become compatible with Opie/qtopia addressbook
310 // values can be "female" or "male" or "". An empty field represents undefined. 310 // values can be "female" or "male" or "". An empty field represents undefined.
311 addCustomField( i18n( "Gender" ), KABC::Field::Personal, 311 addCustomField( i18n( "Gender" ), KABC::Field::Personal,
312 "X-Gender", "KADDRESSBOOK" ); 312 "X-Gender", "KADDRESSBOOK" );
313 addCustomField( i18n( "Children" ), KABC::Field::Personal, 313 addCustomField( i18n( "Children" ), KABC::Field::Personal,
314 "X-Children", "KADDRESSBOOK" ); 314 "X-Children", "KADDRESSBOOK" );
315 addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, 315 addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal,
316 "X-FreeBusyUrl", "KADDRESSBOOK" ); 316 "X-FreeBusyUrl", "KADDRESSBOOK" );
317 addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, 317 addCustomField( i18n( "ExternalID" ), KABC::Field::Personal,
318 "X-ExternalID", "KADDRESSBOOK" ); 318 "X-ExternalID", "KADDRESSBOOK" );
319} 319}
320 320
321AddressBook::~AddressBook() 321AddressBook::~AddressBook()
322{ 322{
323 delete d->mConfig; d->mConfig = 0; 323 delete d->mConfig; d->mConfig = 0;
324 delete d->mManager; d->mManager = 0; 324 delete d->mManager; d->mManager = 0;
325//US delete d->mErrorHandler; d->mErrorHandler = 0; 325//US delete d->mErrorHandler; d->mErrorHandler = 0;
326 delete d; d = 0; 326 delete d; d = 0;
327} 327}
328 328
329bool AddressBook::load() 329bool AddressBook::load()
330{ 330{
331 331
332 332
333 clear(); 333 clear();
334 334
335 KRES::Manager<Resource>::ActiveIterator it; 335 KRES::Manager<Resource>::ActiveIterator it;
336 bool ok = true; 336 bool ok = true;
337 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) 337 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it )
338 if ( !(*it)->load() ) { 338 if ( !(*it)->load() ) {
339 error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); 339 error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) );
340 ok = false; 340 ok = false;
341 } 341 }
342 342
343 // mark all addressees as unchanged 343 // mark all addressees as unchanged
344 Addressee::List::Iterator addrIt; 344 Addressee::List::Iterator addrIt;
345 for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) 345 for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt )
346 (*addrIt).setChanged( false ); 346 (*addrIt).setChanged( false );
347 347
348 return ok; 348 return ok;
349} 349}
350 350
351bool AddressBook::save( Ticket *ticket ) 351bool AddressBook::save( Ticket *ticket )
352{ 352{
353 kdDebug(5700) << "AddressBook::save()"<< endl; 353 kdDebug(5700) << "AddressBook::save()"<< endl;
354 354
355 if ( ticket->resource() ) { 355 if ( ticket->resource() ) {
356 deleteRemovedAddressees(); 356 deleteRemovedAddressees();
357 return ticket->resource()->save( ticket ); 357 return ticket->resource()->save( ticket );
358 } 358 }
359 359
360 return false; 360 return false;
361} 361}
362bool AddressBook::saveAB() 362bool AddressBook::saveAB()
363{ 363{
364 bool ok = true; 364 bool ok = true;
365 365
366 deleteRemovedAddressees(); 366 deleteRemovedAddressees();
367 367
368 KRES::Manager<Resource>::ActiveIterator it; 368 KRES::Manager<Resource>::ActiveIterator it;
369 KRES::Manager<Resource> *manager = d->mManager; 369 KRES::Manager<Resource> *manager = d->mManager;
370 for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { 370 for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) {
371 if ( !(*it)->readOnly() && (*it)->isOpen() ) { 371 if ( !(*it)->readOnly() && (*it)->isOpen() ) {
372 Ticket *ticket = requestSaveTicket( *it ); 372 Ticket *ticket = requestSaveTicket( *it );
373// qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); 373// qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() );
374 if ( !ticket ) { 374 if ( !ticket ) {
375 error( i18n( "Unable to save to resource '%1'. It is locked." ) 375 error( i18n( "Unable to save to resource '%1'. It is locked." )
376 .arg( (*it)->resourceName() ) ); 376 .arg( (*it)->resourceName() ) );
377 return false; 377 return false;
378 } 378 }
379 379
380 //if ( !save( ticket ) ) 380 //if ( !save( ticket ) )
381 if ( ticket->resource() ) { 381 if ( ticket->resource() ) {
382 if ( ! ticket->resource()->save( ticket ) ) 382 if ( ! ticket->resource()->save( ticket ) )
383 ok = false; 383 ok = false;
384 } else 384 } else
385 ok = false; 385 ok = false;
386 386
387 } 387 }
388 } 388 }
389 return ok; 389 return ok;
390} 390}
391 391
392AddressBook::Iterator AddressBook::begin() 392AddressBook::Iterator AddressBook::begin()
393{ 393{
394 Iterator it = Iterator(); 394 Iterator it = Iterator();
395 it.d->mIt = d->mAddressees.begin(); 395 it.d->mIt = d->mAddressees.begin();
396 return it; 396 return it;
397} 397}
398 398
399AddressBook::ConstIterator AddressBook::begin() const 399AddressBook::ConstIterator AddressBook::begin() const
400{ 400{
401 ConstIterator it = ConstIterator(); 401 ConstIterator it = ConstIterator();
402 it.d->mIt = d->mAddressees.begin(); 402 it.d->mIt = d->mAddressees.begin();
403 return it; 403 return it;
404} 404}
405 405
406AddressBook::Iterator AddressBook::end() 406AddressBook::Iterator AddressBook::end()
407{ 407{
408 Iterator it = Iterator(); 408 Iterator it = Iterator();
409 it.d->mIt = d->mAddressees.end(); 409 it.d->mIt = d->mAddressees.end();
410 return it; 410 return it;
411} 411}
412 412
413AddressBook::ConstIterator AddressBook::end() const 413AddressBook::ConstIterator AddressBook::end() const
414{ 414{
415 ConstIterator it = ConstIterator(); 415 ConstIterator it = ConstIterator();
416 it.d->mIt = d->mAddressees.end(); 416 it.d->mIt = d->mAddressees.end();
417 return it; 417 return it;
418} 418}
419 419
420void AddressBook::clear() 420void AddressBook::clear()
421{ 421{
422 d->mAddressees.clear(); 422 d->mAddressees.clear();
423} 423}
424 424
425Ticket *AddressBook::requestSaveTicket( Resource *resource ) 425Ticket *AddressBook::requestSaveTicket( Resource *resource )
426{ 426{
427 kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; 427 kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl;
428 428
429 if ( !resource ) 429 if ( !resource )
430 { 430 {
431 qDebug("AddressBook::requestSaveTicket no resource" ); 431 qDebug("AddressBook::requestSaveTicket no resource" );
432 resource = standardResource(); 432 resource = standardResource();
433 } 433 }
434 434
435 KRES::Manager<Resource>::ActiveIterator it; 435 KRES::Manager<Resource>::ActiveIterator it;
436 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { 436 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) {
437 if ( (*it) == resource ) { 437 if ( (*it) == resource ) {
438 if ( (*it)->readOnly() || !(*it)->isOpen() ) 438 if ( (*it)->readOnly() || !(*it)->isOpen() )
439 return 0; 439 return 0;
440 else 440 else
441 return (*it)->requestSaveTicket(); 441 return (*it)->requestSaveTicket();
442 } 442 }
443 } 443 }
444 444
445 return 0; 445 return 0;
446} 446}
447 447
448void AddressBook::insertAddressee( const Addressee &a ) 448void AddressBook::insertAddressee( const Addressee &a, bool setRev )
449{ 449{
450 Addressee::List::Iterator it; 450 Addressee::List::Iterator it;
451 for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { 451 for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) {
452 if ( a.uid() == (*it).uid() ) { 452 if ( a.uid() == (*it).uid() ) {
453 bool changed = false; 453 bool changed = false;
454 Addressee addr = a; 454 Addressee addr = a;
455 if ( addr != (*it) ) 455 if ( addr != (*it) )
456 changed = true; 456 changed = true;
457 457
458 (*it) = a; 458 (*it) = a;
459 if ( (*it).resource() == 0 ) 459 if ( (*it).resource() == 0 )
460 (*it).setResource( standardResource() ); 460 (*it).setResource( standardResource() );
461 461
462 if ( changed ) { 462 if ( changed ) {
463 (*it).setRevision( QDateTime::currentDateTime() ); 463 if ( setRev )
464 (*it).setRevision( QDateTime::currentDateTime() );
464 (*it).setChanged( true ); 465 (*it).setChanged( true );
465 } 466 }
466 467
467 return; 468 return;
468 } 469 }
469 } 470 }
470 d->mAddressees.append( a ); 471 d->mAddressees.append( a );
471 Addressee& addr = d->mAddressees.last(); 472 Addressee& addr = d->mAddressees.last();
472 if ( addr.resource() == 0 ) 473 if ( addr.resource() == 0 )
473 addr.setResource( standardResource() ); 474 addr.setResource( standardResource() );
474 475
475 addr.setChanged( true ); 476 addr.setChanged( true );
476} 477}
477 478
478void AddressBook::removeAddressee( const Addressee &a ) 479void AddressBook::removeAddressee( const Addressee &a )
479{ 480{
480 Iterator it; 481 Iterator it;
481 for ( it = begin(); it != end(); ++it ) { 482 for ( it = begin(); it != end(); ++it ) {
482 if ( a.uid() == (*it).uid() ) { 483 if ( a.uid() == (*it).uid() ) {
483 removeAddressee( it ); 484 removeAddressee( it );
484 return; 485 return;
485 } 486 }
486 } 487 }
487} 488}
488 489
489void AddressBook::removeAddressee( const Iterator &it ) 490void AddressBook::removeAddressee( const Iterator &it )
490{ 491{
491 d->mRemovedAddressees.append( (*it) ); 492 d->mRemovedAddressees.append( (*it) );
492 d->mAddressees.remove( it.d->mIt ); 493 d->mAddressees.remove( it.d->mIt );
493} 494}
494 495
495AddressBook::Iterator AddressBook::find( const Addressee &a ) 496AddressBook::Iterator AddressBook::find( const Addressee &a )
496{ 497{
497 Iterator it; 498 Iterator it;
498 for ( it = begin(); it != end(); ++it ) { 499 for ( it = begin(); it != end(); ++it ) {
499 if ( a.uid() == (*it).uid() ) { 500 if ( a.uid() == (*it).uid() ) {
500 return it; 501 return it;
501 } 502 }
502 } 503 }
503 return end(); 504 return end();
504} 505}
505 506
506Addressee AddressBook::findByUid( const QString &uid ) 507Addressee AddressBook::findByUid( const QString &uid )
507{ 508{
508 Iterator it; 509 Iterator it;
509 for ( it = begin(); it != end(); ++it ) { 510 for ( it = begin(); it != end(); ++it ) {
510 if ( uid == (*it).uid() ) { 511 if ( uid == (*it).uid() ) {
511 return *it; 512 return *it;
512 } 513 }
513 } 514 }
514 return Addressee(); 515 return Addressee();
515} 516}
516Addressee::List AddressBook::getExternLastSyncAddressees() 517Addressee::List AddressBook::getExternLastSyncAddressees()
517{ 518{
518 Addressee::List results; 519 Addressee::List results;
519 520
520 Iterator it; 521 Iterator it;
521 for ( it = begin(); it != end(); ++it ) { 522 for ( it = begin(); it != end(); ++it ) {
522 if ( (*it).uid().left( 20 ) == "last-syncAddressee-" ) { 523 if ( (*it).uid().left( 20 ) == "last-syncAddressee-" ) {
523 if ( (*it).familyName().left(3) == "E: " ) 524 if ( (*it).familyName().left(3) == "E: " )
524 results.append( *it ); 525 results.append( *it );
525 } 526 }
526 } 527 }
527 528
528 return results; 529 return results;
529} 530}
530void AddressBook::resetTempSyncStat() 531void AddressBook::resetTempSyncStat()
531{ 532{
532 Iterator it; 533 Iterator it;
533 for ( it = begin(); it != end(); ++it ) { 534 for ( it = begin(); it != end(); ++it ) {
534 (*it).setTempSyncStat ( SYNC_TEMPSTATE_INITIAL ); 535 (*it).setTempSyncStat ( SYNC_TEMPSTATE_INITIAL );
535 } 536 }
536 537
537} 538}
538 539
539QStringList AddressBook:: uidList() 540QStringList AddressBook:: uidList()
540{ 541{
541 QStringList results; 542 QStringList results;
542 Iterator it; 543 Iterator it;
543 for ( it = begin(); it != end(); ++it ) { 544 for ( it = begin(); it != end(); ++it ) {
544 results.append( (*it).uid() ); 545 results.append( (*it).uid() );
545 } 546 }
546 return results; 547 return results;
547} 548}
548 549
549 550
550Addressee::List AddressBook::allAddressees() 551Addressee::List AddressBook::allAddressees()
551{ 552{
552 return d->mAddressees; 553 return d->mAddressees;
553} 554}
554 555
555Addressee::List AddressBook::findByName( const QString &name ) 556Addressee::List AddressBook::findByName( const QString &name )
556{ 557{
557 Addressee::List results; 558 Addressee::List results;
558 559
559 Iterator it; 560 Iterator it;
560 for ( it = begin(); it != end(); ++it ) { 561 for ( it = begin(); it != end(); ++it ) {
561 if ( name == (*it).realName() ) { 562 if ( name == (*it).realName() ) {
562 results.append( *it ); 563 results.append( *it );
563 } 564 }
564 } 565 }
565 566
566 return results; 567 return results;
567} 568}
568 569
569Addressee::List AddressBook::findByEmail( const QString &email ) 570Addressee::List AddressBook::findByEmail( const QString &email )
570{ 571{
571 Addressee::List results; 572 Addressee::List results;
572 QStringList mailList; 573 QStringList mailList;
573 574
574 Iterator it; 575 Iterator it;
575 for ( it = begin(); it != end(); ++it ) { 576 for ( it = begin(); it != end(); ++it ) {
576 mailList = (*it).emails(); 577 mailList = (*it).emails();
577 for ( QStringList::Iterator ite = mailList.begin(); ite != mailList.end(); ++ite ) { 578 for ( QStringList::Iterator ite = mailList.begin(); ite != mailList.end(); ++ite ) {
578 if ( email == (*ite) ) { 579 if ( email == (*ite) ) {
579 results.append( *it ); 580 results.append( *it );
580 } 581 }
581 } 582 }
582 } 583 }
583 584
584 return results; 585 return results;
585} 586}
586 587
587Addressee::List AddressBook::findByCategory( const QString &category ) 588Addressee::List AddressBook::findByCategory( const QString &category )
588{ 589{
589 Addressee::List results; 590 Addressee::List results;
590 591
591 Iterator it; 592 Iterator it;
592 for ( it = begin(); it != end(); ++it ) { 593 for ( it = begin(); it != end(); ++it ) {
593 if ( (*it).hasCategory( category) ) { 594 if ( (*it).hasCategory( category) ) {
594 results.append( *it ); 595 results.append( *it );
595 } 596 }
596 } 597 }
597 598
598 return results; 599 return results;
599} 600}
600 601
601void AddressBook::dump() const 602void AddressBook::dump() const
602{ 603{
603 kdDebug(5700) << "AddressBook::dump() --- begin ---" << endl; 604 kdDebug(5700) << "AddressBook::dump() --- begin ---" << endl;
604 605
605 ConstIterator it; 606 ConstIterator it;
606 for( it = begin(); it != end(); ++it ) { 607 for( it = begin(); it != end(); ++it ) {
607 (*it).dump(); 608 (*it).dump();
608 } 609 }
609 610
610 kdDebug(5700) << "AddressBook::dump() --- end ---" << endl; 611 kdDebug(5700) << "AddressBook::dump() --- end ---" << endl;
611} 612}
612 613
613QString AddressBook::identifier() 614QString AddressBook::identifier()
614{ 615{
615 QStringList identifier; 616 QStringList identifier;
616 617
617 618
618 KRES::Manager<Resource>::ActiveIterator it; 619 KRES::Manager<Resource>::ActiveIterator it;
619 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { 620 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) {
620 if ( !(*it)->identifier().isEmpty() ) 621 if ( !(*it)->identifier().isEmpty() )
621 identifier.append( (*it)->identifier() ); 622 identifier.append( (*it)->identifier() );
622 } 623 }
623 624
624 return identifier.join( ":" ); 625 return identifier.join( ":" );
625} 626}
626 627
627Field::List AddressBook::fields( int category ) 628Field::List AddressBook::fields( int category )
628{ 629{
629 if ( d->mAllFields.isEmpty() ) { 630 if ( d->mAllFields.isEmpty() ) {
630 d->mAllFields = Field::allFields(); 631 d->mAllFields = Field::allFields();
631 } 632 }
632 633
633 if ( category == Field::All ) return d->mAllFields; 634 if ( category == Field::All ) return d->mAllFields;
634 635
635 Field::List result; 636 Field::List result;
636 Field::List::ConstIterator it; 637 Field::List::ConstIterator it;
637 for( it = d->mAllFields.begin(); it != d->mAllFields.end(); ++it ) { 638 for( it = d->mAllFields.begin(); it != d->mAllFields.end(); ++it ) {
638 if ( (*it)->category() & category ) result.append( *it ); 639 if ( (*it)->category() & category ) result.append( *it );
639 } 640 }
640 641
641 return result; 642 return result;
642} 643}
643 644
644bool AddressBook::addCustomField( const QString &label, int category, 645bool AddressBook::addCustomField( const QString &label, int category,
645 const QString &key, const QString &app ) 646 const QString &key, const QString &app )
646{ 647{
647 if ( d->mAllFields.isEmpty() ) { 648 if ( d->mAllFields.isEmpty() ) {
648 d->mAllFields = Field::allFields(); 649 d->mAllFields = Field::allFields();
649 } 650 }
650//US QString a = app.isNull() ? KGlobal::instance()->instanceName() : app; 651//US QString a = app.isNull() ? KGlobal::instance()->instanceName() : app;
651 QString a = app.isNull() ? KGlobal::getAppName() : app; 652 QString a = app.isNull() ? KGlobal::getAppName() : app;
652 653
653 QString k = key.isNull() ? label : key; 654 QString k = key.isNull() ? label : key;
654 655
655 Field *field = Field::createCustomField( label, category, k, a ); 656 Field *field = Field::createCustomField( label, category, k, a );
656 657
657 if ( !field ) return false; 658 if ( !field ) return false;
658 659
659 d->mAllFields.append( field ); 660 d->mAllFields.append( field );
660 661
661 return true; 662 return true;
662} 663}
663 664
664QDataStream &KABC::operator<<( QDataStream &s, const AddressBook &ab ) 665QDataStream &KABC::operator<<( QDataStream &s, const AddressBook &ab )
665{ 666{
666 if (!ab.d) return s; 667 if (!ab.d) return s;
667 668
668 return s << ab.d->mAddressees; 669 return s << ab.d->mAddressees;
669} 670}
670 671
671QDataStream &KABC::operator>>( QDataStream &s, AddressBook &ab ) 672QDataStream &KABC::operator>>( QDataStream &s, AddressBook &ab )
672{ 673{
673 if (!ab.d) return s; 674 if (!ab.d) return s;
674 675
675 s >> ab.d->mAddressees; 676 s >> ab.d->mAddressees;
676 677
677 return s; 678 return s;
678} 679}
679 680
680bool AddressBook::addResource( Resource *resource ) 681bool AddressBook::addResource( Resource *resource )
681{ 682{
682 if ( !resource->open() ) { 683 if ( !resource->open() ) {
683 kdDebug(5700) << "AddressBook::addResource(): can't add resource" << endl; 684 kdDebug(5700) << "AddressBook::addResource(): can't add resource" << endl;
684 return false; 685 return false;
685 } 686 }
686 687
687 resource->setAddressBook( this ); 688 resource->setAddressBook( this );
688 689
689 d->mManager->add( resource ); 690 d->mManager->add( resource );
690 return true; 691 return true;
691} 692}
692 693
693bool AddressBook::removeResource( Resource *resource ) 694bool AddressBook::removeResource( Resource *resource )
694{ 695{
695 resource->close(); 696 resource->close();
696 697
697 if ( resource == standardResource() ) 698 if ( resource == standardResource() )
698 d->mManager->setStandardResource( 0 ); 699 d->mManager->setStandardResource( 0 );
699 700
700 resource->setAddressBook( 0 ); 701 resource->setAddressBook( 0 );
701 702
702 d->mManager->remove( resource ); 703 d->mManager->remove( resource );
703 return true; 704 return true;
704} 705}
705 706
706QPtrList<Resource> AddressBook::resources() 707QPtrList<Resource> AddressBook::resources()
707{ 708{
708 QPtrList<Resource> list; 709 QPtrList<Resource> list;
709 710
710// qDebug("AddressBook::resources() 1"); 711// qDebug("AddressBook::resources() 1");
711 712
712 KRES::Manager<Resource>::ActiveIterator it; 713 KRES::Manager<Resource>::ActiveIterator it;
713 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) 714 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it )
714 list.append( *it ); 715 list.append( *it );
715 716
716 return list; 717 return list;
717} 718}
718 719
719/*US 720/*US
720void AddressBook::setErrorHandler( ErrorHandler *handler ) 721void AddressBook::setErrorHandler( ErrorHandler *handler )
721{ 722{
722 delete d->mErrorHandler; 723 delete d->mErrorHandler;
723 d->mErrorHandler = handler; 724 d->mErrorHandler = handler;
724} 725}
725*/ 726*/
726 727
727void AddressBook::error( const QString& msg ) 728void AddressBook::error( const QString& msg )
728{ 729{
729/*US 730/*US
730 if ( !d->mErrorHandler ) // create default error handler 731 if ( !d->mErrorHandler ) // create default error handler
731 d->mErrorHandler = new ConsoleErrorHandler; 732 d->mErrorHandler = new ConsoleErrorHandler;
732 733
733 if ( d->mErrorHandler ) 734 if ( d->mErrorHandler )
734 d->mErrorHandler->error( msg ); 735 d->mErrorHandler->error( msg );
735 else 736 else
736 kdError(5700) << "no error handler defined" << endl; 737 kdError(5700) << "no error handler defined" << endl;
737*/ 738*/
738 kdDebug(5700) << "msg" << endl; 739 kdDebug(5700) << "msg" << endl;
739 qDebug(msg); 740 qDebug(msg);
740} 741}
741 742
742void AddressBook::deleteRemovedAddressees() 743void AddressBook::deleteRemovedAddressees()
743{ 744{
744 Addressee::List::Iterator it; 745 Addressee::List::Iterator it;
745 for ( it = d->mRemovedAddressees.begin(); it != d->mRemovedAddressees.end(); ++it ) { 746 for ( it = d->mRemovedAddressees.begin(); it != d->mRemovedAddressees.end(); ++it ) {
746 Resource *resource = (*it).resource(); 747 Resource *resource = (*it).resource();
747 if ( resource && !resource->readOnly() && resource->isOpen() ) 748 if ( resource && !resource->readOnly() && resource->isOpen() )
748 resource->removeAddressee( *it ); 749 resource->removeAddressee( *it );
749 } 750 }
750 751
751 d->mRemovedAddressees.clear(); 752 d->mRemovedAddressees.clear();
752} 753}
753 754
754void AddressBook::setStandardResource( Resource *resource ) 755void AddressBook::setStandardResource( Resource *resource )
755{ 756{
756// qDebug("AddressBook::setStandardResource 1"); 757// qDebug("AddressBook::setStandardResource 1");
757 d->mManager->setStandardResource( resource ); 758 d->mManager->setStandardResource( resource );
758} 759}
759 760
760Resource *AddressBook::standardResource() 761Resource *AddressBook::standardResource()
761{ 762{
762 return d->mManager->standardResource(); 763 return d->mManager->standardResource();
763} 764}
764 765
765KRES::Manager<Resource> *AddressBook::resourceManager() 766KRES::Manager<Resource> *AddressBook::resourceManager()
766{ 767{
767 return d->mManager; 768 return d->mManager;
768} 769}
769 770
770void AddressBook::cleanUp() 771void AddressBook::cleanUp()
771{ 772{
772 KRES::Manager<Resource>::ActiveIterator it; 773 KRES::Manager<Resource>::ActiveIterator it;
773 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { 774 for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) {
774 if ( !(*it)->readOnly() && (*it)->isOpen() ) 775 if ( !(*it)->readOnly() && (*it)->isOpen() )
775 (*it)->cleanUp(); 776 (*it)->cleanUp();
776 } 777 }
777} 778}
diff --git a/kabc/addressbook.h b/kabc/addressbook.h
index 650a638..253de68 100644
--- a/kabc/addressbook.h
+++ b/kabc/addressbook.h
@@ -1,334 +1,334 @@
1/* 1/*
2 This file is part of libkabc. 2 This file is part of libkabc.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> 3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details. 13 Library General Public License for more details.
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21/* 21/*
22Enhanced Version of the file for platform independent KDE tools. 22Enhanced Version of the file for platform independent KDE tools.
23Copyright (c) 2004 Ulf Schenk 23Copyright (c) 2004 Ulf Schenk
24 24
25$Id$ 25$Id$
26*/ 26*/
27 27
28#ifndef KABC_ADDRESSBOOK_H 28#ifndef KABC_ADDRESSBOOK_H
29#define KABC_ADDRESSBOOK_H 29#define KABC_ADDRESSBOOK_H
30 30
31#include <qobject.h> 31#include <qobject.h>
32 32
33#include <kresources/manager.h> 33#include <kresources/manager.h>
34#include <qptrlist.h> 34#include <qptrlist.h>
35 35
36#include "addressee.h" 36#include "addressee.h"
37#include "field.h" 37#include "field.h"
38 38
39namespace KABC { 39namespace KABC {
40 40
41class ErrorHandler; 41class ErrorHandler;
42class Resource; 42class Resource;
43class Ticket; 43class Ticket;
44 44
45/** 45/**
46 @short Address Book 46 @short Address Book
47 47
48 This class provides access to a collection of address book entries. 48 This class provides access to a collection of address book entries.
49*/ 49*/
50class AddressBook : public QObject 50class AddressBook : public QObject
51{ 51{
52 Q_OBJECT 52 Q_OBJECT
53 53
54 friend QDataStream &operator<<( QDataStream &, const AddressBook & ); 54 friend QDataStream &operator<<( QDataStream &, const AddressBook & );
55 friend QDataStream &operator>>( QDataStream &, AddressBook & ); 55 friend QDataStream &operator>>( QDataStream &, AddressBook & );
56 friend class StdAddressBook; 56 friend class StdAddressBook;
57 57
58 public: 58 public:
59 /** 59 /**
60 @short Address Book Iterator 60 @short Address Book Iterator
61 61
62 This class provides an iterator for address book entries. 62 This class provides an iterator for address book entries.
63 */ 63 */
64 class Iterator 64 class Iterator
65 { 65 {
66 public: 66 public:
67 Iterator(); 67 Iterator();
68 Iterator( const Iterator & ); 68 Iterator( const Iterator & );
69 ~Iterator(); 69 ~Iterator();
70 70
71 Iterator &operator=( const Iterator & ); 71 Iterator &operator=( const Iterator & );
72 const Addressee &operator*() const; 72 const Addressee &operator*() const;
73 Addressee &operator*(); 73 Addressee &operator*();
74 Addressee* operator->(); 74 Addressee* operator->();
75 Iterator &operator++(); 75 Iterator &operator++();
76 Iterator &operator++(int); 76 Iterator &operator++(int);
77 Iterator &operator--(); 77 Iterator &operator--();
78 Iterator &operator--(int); 78 Iterator &operator--(int);
79 bool operator==( const Iterator &it ); 79 bool operator==( const Iterator &it );
80 bool operator!=( const Iterator &it ); 80 bool operator!=( const Iterator &it );
81 81
82 struct IteratorData; 82 struct IteratorData;
83 IteratorData *d; 83 IteratorData *d;
84 }; 84 };
85 85
86 /** 86 /**
87 @short Address Book Const Iterator 87 @short Address Book Const Iterator
88 88
89 This class provides a const iterator for address book entries. 89 This class provides a const iterator for address book entries.
90 */ 90 */
91 class ConstIterator 91 class ConstIterator
92 { 92 {
93 public: 93 public:
94 ConstIterator(); 94 ConstIterator();
95 ConstIterator( const ConstIterator & ); 95 ConstIterator( const ConstIterator & );
96 ~ConstIterator(); 96 ~ConstIterator();
97 97
98 ConstIterator &operator=( const ConstIterator & ); 98 ConstIterator &operator=( const ConstIterator & );
99 const Addressee &operator*() const; 99 const Addressee &operator*() const;
100 const Addressee* operator->() const; 100 const Addressee* operator->() const;
101 ConstIterator &operator++(); 101 ConstIterator &operator++();
102 ConstIterator &operator++(int); 102 ConstIterator &operator++(int);
103 ConstIterator &operator--(); 103 ConstIterator &operator--();
104 ConstIterator &operator--(int); 104 ConstIterator &operator--(int);
105 bool operator==( const ConstIterator &it ); 105 bool operator==( const ConstIterator &it );
106 bool operator!=( const ConstIterator &it ); 106 bool operator!=( const ConstIterator &it );
107 107
108 struct ConstIteratorData; 108 struct ConstIteratorData;
109 ConstIteratorData *d; 109 ConstIteratorData *d;
110 }; 110 };
111 111
112 /** 112 /**
113 Constructs a address book object. 113 Constructs a address book object.
114 114
115 @param format File format class. 115 @param format File format class.
116 */ 116 */
117 AddressBook(); 117 AddressBook();
118 AddressBook( const QString &config ); 118 AddressBook( const QString &config );
119 AddressBook( const QString &config, const QString &family ); 119 AddressBook( const QString &config, const QString &family );
120 virtual ~AddressBook(); 120 virtual ~AddressBook();
121 121
122 /** 122 /**
123 Requests a ticket for saving the addressbook. Calling this function locks 123 Requests a ticket for saving the addressbook. Calling this function locks
124 the addressbook for all other processes. If the address book is already 124 the addressbook for all other processes. If the address book is already
125 locked the function returns 0. You need the returned @ref Ticket object 125 locked the function returns 0. You need the returned @ref Ticket object
126 for calling the @ref save() function. 126 for calling the @ref save() function.
127 127
128 @see save() 128 @see save()
129 */ 129 */
130 Ticket *requestSaveTicket( Resource *resource=0 ); 130 Ticket *requestSaveTicket( Resource *resource=0 );
131 131
132 /** 132 /**
133 Load address book from file. 133 Load address book from file.
134 */ 134 */
135 bool load(); 135 bool load();
136 136
137 /** 137 /**
138 Save address book. The address book is saved to the file, the Ticket 138 Save address book. The address book is saved to the file, the Ticket
139 object has been requested for by @ref requestSaveTicket(). 139 object has been requested for by @ref requestSaveTicket().
140 140
141 @param ticket a ticket object returned by @ref requestSaveTicket() 141 @param ticket a ticket object returned by @ref requestSaveTicket()
142 */ 142 */
143 bool save( Ticket *ticket ); 143 bool save( Ticket *ticket );
144 bool saveAB( ); 144 bool saveAB( );
145 145
146 /** 146 /**
147 Returns a iterator for first entry of address book. 147 Returns a iterator for first entry of address book.
148 */ 148 */
149 Iterator begin(); 149 Iterator begin();
150 150
151 /** 151 /**
152 Returns a const iterator for first entry of address book. 152 Returns a const iterator for first entry of address book.
153 */ 153 */
154 ConstIterator begin() const; 154 ConstIterator begin() const;
155 155
156 /** 156 /**
157 Returns a iterator for first entry of address book. 157 Returns a iterator for first entry of address book.
158 */ 158 */
159 Iterator end(); 159 Iterator end();
160 160
161 /** 161 /**
162 Returns a const iterator for first entry of address book. 162 Returns a const iterator for first entry of address book.
163 */ 163 */
164 ConstIterator end() const; 164 ConstIterator end() const;
165 165
166 /** 166 /**
167 Removes all entries from address book. 167 Removes all entries from address book.
168 */ 168 */
169 void clear(); 169 void clear();
170 170
171 /** 171 /**
172 Insert an Addressee object into address book. If an object with the same 172 Insert an Addressee object into address book. If an object with the same
173 unique id already exists in the address book it it replaced by the new 173 unique id already exists in the address book it it replaced by the new
174 one. If not the new object is appended to the address book. 174 one. If not the new object is appended to the address book.
175 */ 175 */
176 void insertAddressee( const Addressee & ); 176 void insertAddressee( const Addressee &, bool setRev = true );
177 177
178 /** 178 /**
179 Removes entry from the address book. 179 Removes entry from the address book.
180 */ 180 */
181 void removeAddressee( const Addressee & ); 181 void removeAddressee( const Addressee & );
182 182
183 /** 183 /**
184 This is like @ref removeAddressee() just above, with the difference that 184 This is like @ref removeAddressee() just above, with the difference that
185 the first element is a iterator, returned by @ref begin(). 185 the first element is a iterator, returned by @ref begin().
186 */ 186 */
187 void removeAddressee( const Iterator & ); 187 void removeAddressee( const Iterator & );
188 188
189 /** 189 /**
190 Find the specified entry in address book. Returns end(), if the entry 190 Find the specified entry in address book. Returns end(), if the entry
191 couldn't be found. 191 couldn't be found.
192 */ 192 */
193 Iterator find( const Addressee & ); 193 Iterator find( const Addressee & );
194 194
195 /** 195 /**
196 Find the entry specified by an unique id. Returns an empty Addressee 196 Find the entry specified by an unique id. Returns an empty Addressee
197 object, if the address book does not contain an entry with this id. 197 object, if the address book does not contain an entry with this id.
198 */ 198 */
199 Addressee findByUid( const QString & ); 199 Addressee findByUid( const QString & );
200 200
201 201
202 /** 202 /**
203 Returns a list of all addressees in the address book. This list can 203 Returns a list of all addressees in the address book. This list can
204 be sorted with @ref KABC::AddresseeList for example. 204 be sorted with @ref KABC::AddresseeList for example.
205 */ 205 */
206 Addressee::List allAddressees(); 206 Addressee::List allAddressees();
207 207
208 /** 208 /**
209 Find all entries with the specified name in the address book. Returns 209 Find all entries with the specified name in the address book. Returns
210 an empty list, if no entries could be found. 210 an empty list, if no entries could be found.
211 */ 211 */
212 Addressee::List findByName( const QString & ); 212 Addressee::List findByName( const QString & );
213 213
214 /** 214 /**
215 Find all entries with the specified email address in the address book. 215 Find all entries with the specified email address in the address book.
216 Returns an empty list, if no entries could be found. 216 Returns an empty list, if no entries could be found.
217 */ 217 */
218 Addressee::List findByEmail( const QString & ); 218 Addressee::List findByEmail( const QString & );
219 219
220 /** 220 /**
221 Find all entries wich have the specified category in the address book. 221 Find all entries wich have the specified category in the address book.
222 Returns an empty list, if no entries could be found. 222 Returns an empty list, if no entries could be found.
223 */ 223 */
224 Addressee::List findByCategory( const QString & ); 224 Addressee::List findByCategory( const QString & );
225 225
226 /** 226 /**
227 Return a string identifying this addressbook. 227 Return a string identifying this addressbook.
228 */ 228 */
229 virtual QString identifier(); 229 virtual QString identifier();
230 230
231 /** 231 /**
232 Used for debug output. 232 Used for debug output.
233 */ 233 */
234 void dump() const; 234 void dump() const;
235 235
236 void emitAddressBookLocked() { emit addressBookLocked( this ); } 236 void emitAddressBookLocked() { emit addressBookLocked( this ); }
237 void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } 237 void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); }
238 void emitAddressBookChanged() { emit addressBookChanged( this ); } 238 void emitAddressBookChanged() { emit addressBookChanged( this ); }
239 239
240 /** 240 /**
241 Return list of all Fields known to the address book which are associated 241 Return list of all Fields known to the address book which are associated
242 with the given field category. 242 with the given field category.
243 */ 243 */
244 Field::List fields( int category = Field::All ); 244 Field::List fields( int category = Field::All );
245 245
246 /** 246 /**
247 Add custom field to address book. 247 Add custom field to address book.
248 248
249 @param label User visible label of the field. 249 @param label User visible label of the field.
250 @param category Ored list of field categories. 250 @param category Ored list of field categories.
251 @param key Identifier used as key for reading and writing the field. 251 @param key Identifier used as key for reading and writing the field.
252 @param app String used as application key for reading and writing 252 @param app String used as application key for reading and writing
253 the field. 253 the field.
254 */ 254 */
255 bool addCustomField( const QString &label, int category = Field::All, 255 bool addCustomField( const QString &label, int category = Field::All,
256 const QString &key = QString::null, 256 const QString &key = QString::null,
257 const QString &app = QString::null ); 257 const QString &app = QString::null );
258 258
259 259
260 /** 260 /**
261 Add address book resource. 261 Add address book resource.
262 */ 262 */
263 bool addResource( Resource * ); 263 bool addResource( Resource * );
264 264
265 /** 265 /**
266 Remove address book resource. 266 Remove address book resource.
267 */ 267 */
268 bool removeResource( Resource * ); 268 bool removeResource( Resource * );
269 269
270 /** 270 /**
271 Return pointer list of all resources. 271 Return pointer list of all resources.
272 */ 272 */
273 QPtrList<Resource> resources(); 273 QPtrList<Resource> resources();
274 274
275 /** 275 /**
276 Set the @p ErrorHandler, that is used by @ref error() to 276 Set the @p ErrorHandler, that is used by @ref error() to
277 provide gui-independend error messages. 277 provide gui-independend error messages.
278 */ 278 */
279 void setErrorHandler( ErrorHandler * ); 279 void setErrorHandler( ErrorHandler * );
280 280
281 /** 281 /**
282 Shows gui independend error messages. 282 Shows gui independend error messages.
283 */ 283 */
284 void error( const QString& ); 284 void error( const QString& );
285 285
286 /** 286 /**
287 Query all resources to clean up their lock files 287 Query all resources to clean up their lock files
288 */ 288 */
289 void cleanUp(); 289 void cleanUp();
290 290
291 // sync stuff 291 // sync stuff
292 Addressee::List getExternLastSyncAddressees(); 292 Addressee::List getExternLastSyncAddressees();
293 void resetTempSyncStat(); 293 void resetTempSyncStat();
294 QStringList uidList(); 294 QStringList uidList();
295 295
296 296
297 signals: 297 signals:
298 /** 298 /**
299 Emitted, when the address book has changed on disk. 299 Emitted, when the address book has changed on disk.
300 */ 300 */
301 void addressBookChanged( AddressBook * ); 301 void addressBookChanged( AddressBook * );
302 302
303 /** 303 /**
304 Emitted, when the address book has been locked for writing. 304 Emitted, when the address book has been locked for writing.
305 */ 305 */
306 void addressBookLocked( AddressBook * ); 306 void addressBookLocked( AddressBook * );
307 307
308 /** 308 /**
309 Emitted, when the address book has been unlocked. 309 Emitted, when the address book has been unlocked.
310 */ 310 */
311 void addressBookUnlocked( AddressBook * ); 311 void addressBookUnlocked( AddressBook * );
312 312
313 protected: 313 protected:
314 void deleteRemovedAddressees(); 314 void deleteRemovedAddressees();
315 void setStandardResource( Resource * ); 315 void setStandardResource( Resource * );
316 Resource *standardResource(); 316 Resource *standardResource();
317 KRES::Manager<Resource> *resourceManager(); 317 KRES::Manager<Resource> *resourceManager();
318 318
319 void init(const QString &config, const QString &family); 319 void init(const QString &config, const QString &family);
320 320
321 private: 321 private:
322//US QPtrList<Resource> mDummy; // Remove in KDE 4 322//US QPtrList<Resource> mDummy; // Remove in KDE 4
323 323
324 324
325 struct AddressBookData; 325 struct AddressBookData;
326 AddressBookData *d; 326 AddressBookData *d;
327}; 327};
328 328
329QDataStream &operator<<( QDataStream &, const AddressBook & ); 329QDataStream &operator<<( QDataStream &, const AddressBook & );
330QDataStream &operator>>( QDataStream &, AddressBook & ); 330QDataStream &operator>>( QDataStream &, AddressBook & );
331 331
332} 332}
333 333
334#endif 334#endif
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp
index fb32f6e..7f04d8f 100644
--- a/kabc/addressee.cpp
+++ b/kabc/addressee.cpp
@@ -1,863 +1,864 @@
1/*** Warning! This file has been generated by the script makeaddressee ***/ 1/*** Warning! This file has been generated by the script makeaddressee ***/
2/* 2/*
3 This file is part of libkabc. 3 This file is part of libkabc.
4 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> 4 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public 7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either 8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version. 9 version 2 of the License, or (at your option) any later version.
10 10
11 This library is distributed in the hope that it will be useful, 11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details. 14 Library General Public License for more details.
15 15
16 You should have received a copy of the GNU Library General Public License 16 You should have received a copy of the GNU Library General Public License
17 along with this library; see the file COPYING.LIB. If not, write to 17 along with this library; see the file COPYING.LIB. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. 19 Boston, MA 02111-1307, USA.
20*/ 20*/
21 21
22/* 22/*
23Enhanced Version of the file for platform independent KDE tools. 23Enhanced Version of the file for platform independent KDE tools.
24Copyright (c) 2004 Ulf Schenk 24Copyright (c) 2004 Ulf Schenk
25 25
26$Id$ 26$Id$
27*/ 27*/
28 28
29#include <kconfig.h> 29#include <kconfig.h>
30 30
31#include <ksharedptr.h> 31#include <ksharedptr.h>
32#include <kdebug.h> 32#include <kdebug.h>
33#include <kapplication.h> 33#include <kapplication.h>
34#include <klocale.h> 34#include <klocale.h>
35#include <kidmanager.h> 35#include <kidmanager.h>
36//US 36//US
37#include <kstandarddirs.h> 37#include <kstandarddirs.h>
38#include <libkcal/syncdefines.h> 38#include <libkcal/syncdefines.h>
39 39
40//US #include "resource.h" 40//US #include "resource.h"
41#include "addressee.h" 41#include "addressee.h"
42 42
43using namespace KABC; 43using namespace KABC;
44 44
45static bool matchBinaryPattern( int value, int pattern ); 45static bool matchBinaryPattern( int value, int pattern );
46 46
47struct Addressee::AddresseeData : public KShared 47struct Addressee::AddresseeData : public KShared
48{ 48{
49 QString uid; 49 QString uid;
50 QString name; 50 QString name;
51 QString formattedName; 51 QString formattedName;
52 QString familyName; 52 QString familyName;
53 QString givenName; 53 QString givenName;
54 QString additionalName; 54 QString additionalName;
55 QString prefix; 55 QString prefix;
56 QString suffix; 56 QString suffix;
57 QString nickName; 57 QString nickName;
58 QDateTime birthday; 58 QDateTime birthday;
59 QString mailer; 59 QString mailer;
60 TimeZone timeZone; 60 TimeZone timeZone;
61 Geo geo; 61 Geo geo;
62 QString title; 62 QString title;
63 QString role; 63 QString role;
64 QString organization; 64 QString organization;
65 QString note; 65 QString note;
66 QString productId; 66 QString productId;
67 QDateTime revision; 67 QDateTime revision;
68 QString sortString; 68 QString sortString;
69 KURL url; 69 KURL url;
70 Secrecy secrecy; 70 Secrecy secrecy;
71 Picture logo; 71 Picture logo;
72 Picture photo; 72 Picture photo;
73 Sound sound; 73 Sound sound;
74 Agent agent; 74 Agent agent;
75 QString mExternalId; 75 QString mExternalId;
76 PhoneNumber::List phoneNumbers; 76 PhoneNumber::List phoneNumbers;
77 Address::List addresses; 77 Address::List addresses;
78 Key::List keys; 78 Key::List keys;
79 QStringList emails; 79 QStringList emails;
80 QStringList categories; 80 QStringList categories;
81 QStringList custom; 81 QStringList custom;
82 82
83 Resource *resource; 83 Resource *resource;
84 84
85 bool empty :1; 85 bool empty :1;
86 bool changed :1; 86 bool changed :1;
87}; 87};
88 88
89Addressee::Addressee() 89Addressee::Addressee()
90{ 90{
91 mData = new AddresseeData; 91 mData = new AddresseeData;
92 mData->empty = true; 92 mData->empty = true;
93 mData->changed = false; 93 mData->changed = false;
94 mData->resource = 0; 94 mData->resource = 0;
95 mData->mExternalId = ":"; 95 mData->mExternalId = ":";
96 mData->revision = QDateTime ( QDate( 2004,1,1));
96 mTempSyncStat = SYNC_TEMPSTATE_INITIAL; 97 mTempSyncStat = SYNC_TEMPSTATE_INITIAL;
97} 98}
98 99
99Addressee::~Addressee() 100Addressee::~Addressee()
100{ 101{
101} 102}
102 103
103Addressee::Addressee( const Addressee &a ) 104Addressee::Addressee( const Addressee &a )
104{ 105{
105 mData = a.mData; 106 mData = a.mData;
106 mTempSyncStat = SYNC_TEMPSTATE_INITIAL; 107 mTempSyncStat = SYNC_TEMPSTATE_INITIAL;
107} 108}
108 109
109Addressee &Addressee::operator=( const Addressee &a ) 110Addressee &Addressee::operator=( const Addressee &a )
110{ 111{
111 mData = a.mData; 112 mData = a.mData;
112 return (*this); 113 return (*this);
113} 114}
114 115
115Addressee Addressee::copy() 116Addressee Addressee::copy()
116{ 117{
117 Addressee a; 118 Addressee a;
118 *(a.mData) = *mData; 119 *(a.mData) = *mData;
119 return a; 120 return a;
120} 121}
121 122
122void Addressee::detach() 123void Addressee::detach()
123{ 124{
124 if ( mData.count() == 1 ) return; 125 if ( mData.count() == 1 ) return;
125 *this = copy(); 126 *this = copy();
126} 127}
127 128
128bool Addressee::operator==( const Addressee &a ) const 129bool Addressee::operator==( const Addressee &a ) const
129{ 130{
130 if ( uid() != a.uid() ) return false; 131 if ( uid() != a.uid() ) return false;
131 if ( mData->name != a.mData->name ) return false; 132 if ( mData->name != a.mData->name ) return false;
132 if ( mData->formattedName != a.mData->formattedName ) return false; 133 if ( mData->formattedName != a.mData->formattedName ) return false;
133 if ( mData->familyName != a.mData->familyName ) return false; 134 if ( mData->familyName != a.mData->familyName ) return false;
134 if ( mData->givenName != a.mData->givenName ) return false; 135 if ( mData->givenName != a.mData->givenName ) return false;
135 if ( mData->additionalName != a.mData->additionalName ) return false; 136 if ( mData->additionalName != a.mData->additionalName ) return false;
136 if ( mData->prefix != a.mData->prefix ) return false; 137 if ( mData->prefix != a.mData->prefix ) return false;
137 if ( mData->suffix != a.mData->suffix ) return false; 138 if ( mData->suffix != a.mData->suffix ) return false;
138 if ( mData->nickName != a.mData->nickName ) return false; 139 if ( mData->nickName != a.mData->nickName ) return false;
139 if ( mData->birthday != a.mData->birthday ) return false; 140 if ( mData->birthday != a.mData->birthday ) return false;
140 if ( mData->mailer != a.mData->mailer ) return false; 141 if ( mData->mailer != a.mData->mailer ) return false;
141 if ( mData->timeZone != a.mData->timeZone ) return false; 142 if ( mData->timeZone != a.mData->timeZone ) return false;
142 if ( mData->geo != a.mData->geo ) return false; 143 if ( mData->geo != a.mData->geo ) return false;
143 if ( mData->title != a.mData->title ) return false; 144 if ( mData->title != a.mData->title ) return false;
144 if ( mData->role != a.mData->role ) return false; 145 if ( mData->role != a.mData->role ) return false;
145 if ( mData->organization != a.mData->organization ) return false; 146 if ( mData->organization != a.mData->organization ) return false;
146 if ( mData->note != a.mData->note ) return false; 147 if ( mData->note != a.mData->note ) return false;
147 if ( mData->productId != a.mData->productId ) return false; 148 if ( mData->productId != a.mData->productId ) return false;
148 if ( mData->revision != a.mData->revision ) return false; 149 if ( mData->revision != a.mData->revision ) return false;
149 if ( mData->sortString != a.mData->sortString ) return false; 150 if ( mData->sortString != a.mData->sortString ) return false;
150 if ( mData->secrecy != a.mData->secrecy ) return false; 151 if ( mData->secrecy != a.mData->secrecy ) return false;
151 if ( mData->logo != a.mData->logo ) return false; 152 if ( mData->logo != a.mData->logo ) return false;
152 if ( mData->photo != a.mData->photo ) return false; 153 if ( mData->photo != a.mData->photo ) return false;
153 if ( mData->sound != a.mData->sound ) return false; 154 if ( mData->sound != a.mData->sound ) return false;
154 if ( mData->agent != a.mData->agent ) return false; 155 if ( mData->agent != a.mData->agent ) return false;
155 if ( ( mData->url.isValid() || a.mData->url.isValid() ) && 156 if ( ( mData->url.isValid() || a.mData->url.isValid() ) &&
156 ( mData->url != a.mData->url ) ) return false; 157 ( mData->url != a.mData->url ) ) return false;
157 if ( mData->phoneNumbers != a.mData->phoneNumbers ) return false; 158 if ( mData->phoneNumbers != a.mData->phoneNumbers ) return false;
158 if ( mData->addresses != a.mData->addresses ) return false; 159 if ( mData->addresses != a.mData->addresses ) return false;
159 if ( mData->keys != a.mData->keys ) return false; 160 if ( mData->keys != a.mData->keys ) return false;
160 if ( mData->emails != a.mData->emails ) return false; 161 if ( mData->emails != a.mData->emails ) return false;
161 if ( mData->categories != a.mData->categories ) return false; 162 if ( mData->categories != a.mData->categories ) return false;
162 if ( mData->custom != a.mData->custom ) return false; 163 if ( mData->custom != a.mData->custom ) return false;
163 164
164 return true; 165 return true;
165} 166}
166 167
167bool Addressee::operator!=( const Addressee &a ) const 168bool Addressee::operator!=( const Addressee &a ) const
168{ 169{
169 return !( a == *this ); 170 return !( a == *this );
170} 171}
171 172
172bool Addressee::isEmpty() const 173bool Addressee::isEmpty() const
173{ 174{
174 return mData->empty; 175 return mData->empty;
175} 176}
176void Addressee::removeID(const QString &prof) 177void Addressee::removeID(const QString &prof)
177{ 178{
178 detach(); 179 detach();
179 mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); 180 mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof);
180 181
181} 182}
182void Addressee::setID( const QString & prof , const QString & id ) 183void Addressee::setID( const QString & prof , const QString & id )
183{ 184{
184 detach(); 185 detach();
185 mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); 186 mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id );
186} 187}
187void Addressee::setTempSyncStat( int id ) 188void Addressee::setTempSyncStat( int id )
188{ 189{
189 mTempSyncStat = id; 190 mTempSyncStat = id;
190} 191}
191int Addressee::tempSyncStat() const 192int Addressee::tempSyncStat() const
192{ 193{
193 return mTempSyncStat; 194 return mTempSyncStat;
194} 195}
195 196
196QString Addressee::getID( const QString & prof) 197QString Addressee::getID( const QString & prof)
197{ 198{
198 return KIdManager::getId ( mData->mExternalId, prof ); 199 return KIdManager::getId ( mData->mExternalId, prof );
199} 200}
200 201
201void Addressee::setCsum( const QString & prof , const QString & id ) 202void Addressee::setCsum( const QString & prof , const QString & id )
202{ 203{
203 detach(); 204 detach();
204 mData->mExternalId = KIdManager::setCsum ( mData->mExternalId, prof, id ); 205 mData->mExternalId = KIdManager::setCsum ( mData->mExternalId, prof, id );
205} 206}
206 207
207QString Addressee::getCsum( const QString & prof) 208QString Addressee::getCsum( const QString & prof)
208{ 209{
209 return KIdManager::getCsum ( mData->mExternalId, prof ); 210 return KIdManager::getCsum ( mData->mExternalId, prof );
210} 211}
211 212
212void Addressee::setIDStr( const QString & s ) 213void Addressee::setIDStr( const QString & s )
213{ 214{
214 detach(); 215 detach();
215 mData->mExternalId = s; 216 mData->mExternalId = s;
216} 217}
217 218
218QString Addressee::IDStr() const 219QString Addressee::IDStr() const
219{ 220{
220 return mData->mExternalId; 221 return mData->mExternalId;
221} 222}
222 223
223 224
224void Addressee::setUid( const QString &id ) 225void Addressee::setUid( const QString &id )
225{ 226{
226 if ( id == mData->uid ) return; 227 if ( id == mData->uid ) return;
227 detach(); 228 detach();
228 mData->empty = false; 229 mData->empty = false;
229 mData->uid = id; 230 mData->uid = id;
230} 231}
231 232
232QString Addressee::uid() const 233QString Addressee::uid() const
233{ 234{
234 if ( mData->uid.isEmpty() ) 235 if ( mData->uid.isEmpty() )
235 mData->uid = KApplication::randomString( 10 ); 236 mData->uid = KApplication::randomString( 10 );
236 237
237 return mData->uid; 238 return mData->uid;
238} 239}
239 240
240QString Addressee::uidLabel() 241QString Addressee::uidLabel()
241{ 242{
242 return i18n("Unique Identifier"); 243 return i18n("Unique Identifier");
243} 244}
244 245
245void Addressee::setName( const QString &name ) 246void Addressee::setName( const QString &name )
246{ 247{
247 if ( name == mData->name ) return; 248 if ( name == mData->name ) return;
248 detach(); 249 detach();
249 mData->empty = false; 250 mData->empty = false;
250 mData->name = name; 251 mData->name = name;
251} 252}
252 253
253QString Addressee::name() const 254QString Addressee::name() const
254{ 255{
255 return mData->name; 256 return mData->name;
256} 257}
257 258
258QString Addressee::nameLabel() 259QString Addressee::nameLabel()
259{ 260{
260 return i18n("Name"); 261 return i18n("Name");
261} 262}
262 263
263 264
264void Addressee::setFormattedName( const QString &formattedName ) 265void Addressee::setFormattedName( const QString &formattedName )
265{ 266{
266 if ( formattedName == mData->formattedName ) return; 267 if ( formattedName == mData->formattedName ) return;
267 detach(); 268 detach();
268 mData->empty = false; 269 mData->empty = false;
269 mData->formattedName = formattedName; 270 mData->formattedName = formattedName;
270} 271}
271 272
272QString Addressee::formattedName() const 273QString Addressee::formattedName() const
273{ 274{
274 return mData->formattedName; 275 return mData->formattedName;
275} 276}
276 277
277QString Addressee::formattedNameLabel() 278QString Addressee::formattedNameLabel()
278{ 279{
279 return i18n("Formatted Name"); 280 return i18n("Formatted Name");
280} 281}
281 282
282 283
283void Addressee::setFamilyName( const QString &familyName ) 284void Addressee::setFamilyName( const QString &familyName )
284{ 285{
285 if ( familyName == mData->familyName ) return; 286 if ( familyName == mData->familyName ) return;
286 detach(); 287 detach();
287 mData->empty = false; 288 mData->empty = false;
288 mData->familyName = familyName; 289 mData->familyName = familyName;
289} 290}
290 291
291QString Addressee::familyName() const 292QString Addressee::familyName() const
292{ 293{
293 return mData->familyName; 294 return mData->familyName;
294} 295}
295 296
296QString Addressee::familyNameLabel() 297QString Addressee::familyNameLabel()
297{ 298{
298 return i18n("Family Name"); 299 return i18n("Family Name");
299} 300}
300 301
301 302
302void Addressee::setGivenName( const QString &givenName ) 303void Addressee::setGivenName( const QString &givenName )
303{ 304{
304 if ( givenName == mData->givenName ) return; 305 if ( givenName == mData->givenName ) return;
305 detach(); 306 detach();
306 mData->empty = false; 307 mData->empty = false;
307 mData->givenName = givenName; 308 mData->givenName = givenName;
308} 309}
309 310
310QString Addressee::givenName() const 311QString Addressee::givenName() const
311{ 312{
312 return mData->givenName; 313 return mData->givenName;
313} 314}
314 315
315QString Addressee::givenNameLabel() 316QString Addressee::givenNameLabel()
316{ 317{
317 return i18n("Given Name"); 318 return i18n("Given Name");
318} 319}
319 320
320 321
321void Addressee::setAdditionalName( const QString &additionalName ) 322void Addressee::setAdditionalName( const QString &additionalName )
322{ 323{
323 if ( additionalName == mData->additionalName ) return; 324 if ( additionalName == mData->additionalName ) return;
324 detach(); 325 detach();
325 mData->empty = false; 326 mData->empty = false;
326 mData->additionalName = additionalName; 327 mData->additionalName = additionalName;
327} 328}
328 329
329QString Addressee::additionalName() const 330QString Addressee::additionalName() const
330{ 331{
331 return mData->additionalName; 332 return mData->additionalName;
332} 333}
333 334
334QString Addressee::additionalNameLabel() 335QString Addressee::additionalNameLabel()
335{ 336{
336 return i18n("Additional Names"); 337 return i18n("Additional Names");
337} 338}
338 339
339 340
340void Addressee::setPrefix( const QString &prefix ) 341void Addressee::setPrefix( const QString &prefix )
341{ 342{
342 if ( prefix == mData->prefix ) return; 343 if ( prefix == mData->prefix ) return;
343 detach(); 344 detach();
344 mData->empty = false; 345 mData->empty = false;
345 mData->prefix = prefix; 346 mData->prefix = prefix;
346} 347}
347 348
348QString Addressee::prefix() const 349QString Addressee::prefix() const
349{ 350{
350 return mData->prefix; 351 return mData->prefix;
351} 352}
352 353
353QString Addressee::prefixLabel() 354QString Addressee::prefixLabel()
354{ 355{
355 return i18n("Honorific Prefixes"); 356 return i18n("Honorific Prefixes");
356} 357}
357 358
358 359
359void Addressee::setSuffix( const QString &suffix ) 360void Addressee::setSuffix( const QString &suffix )
360{ 361{
361 if ( suffix == mData->suffix ) return; 362 if ( suffix == mData->suffix ) return;
362 detach(); 363 detach();
363 mData->empty = false; 364 mData->empty = false;
364 mData->suffix = suffix; 365 mData->suffix = suffix;
365} 366}
366 367
367QString Addressee::suffix() const 368QString Addressee::suffix() const
368{ 369{
369 return mData->suffix; 370 return mData->suffix;
370} 371}
371 372
372QString Addressee::suffixLabel() 373QString Addressee::suffixLabel()
373{ 374{
374 return i18n("Honorific Suffixes"); 375 return i18n("Honorific Suffixes");
375} 376}
376 377
377 378
378void Addressee::setNickName( const QString &nickName ) 379void Addressee::setNickName( const QString &nickName )
379{ 380{
380 if ( nickName == mData->nickName ) return; 381 if ( nickName == mData->nickName ) return;
381 detach(); 382 detach();
382 mData->empty = false; 383 mData->empty = false;
383 mData->nickName = nickName; 384 mData->nickName = nickName;
384} 385}
385 386
386QString Addressee::nickName() const 387QString Addressee::nickName() const
387{ 388{
388 return mData->nickName; 389 return mData->nickName;
389} 390}
390 391
391QString Addressee::nickNameLabel() 392QString Addressee::nickNameLabel()
392{ 393{
393 return i18n("Nick Name"); 394 return i18n("Nick Name");
394} 395}
395 396
396 397
397void Addressee::setBirthday( const QDateTime &birthday ) 398void Addressee::setBirthday( const QDateTime &birthday )
398{ 399{
399 if ( birthday == mData->birthday ) return; 400 if ( birthday == mData->birthday ) return;
400 detach(); 401 detach();
401 mData->empty = false; 402 mData->empty = false;
402 mData->birthday = birthday; 403 mData->birthday = birthday;
403} 404}
404 405
405QDateTime Addressee::birthday() const 406QDateTime Addressee::birthday() const
406{ 407{
407 return mData->birthday; 408 return mData->birthday;
408} 409}
409 410
410QString Addressee::birthdayLabel() 411QString Addressee::birthdayLabel()
411{ 412{
412 return i18n("Birthday"); 413 return i18n("Birthday");
413} 414}
414 415
415 416
416QString Addressee::homeAddressStreetLabel() 417QString Addressee::homeAddressStreetLabel()
417{ 418{
418 return i18n("Home Address Street"); 419 return i18n("Home Address Street");
419} 420}
420 421
421 422
422QString Addressee::homeAddressLocalityLabel() 423QString Addressee::homeAddressLocalityLabel()
423{ 424{
424 return i18n("Home Address Locality"); 425 return i18n("Home Address Locality");
425} 426}
426 427
427 428
428QString Addressee::homeAddressRegionLabel() 429QString Addressee::homeAddressRegionLabel()
429{ 430{
430 return i18n("Home Address Region"); 431 return i18n("Home Address Region");
431} 432}
432 433
433 434
434QString Addressee::homeAddressPostalCodeLabel() 435QString Addressee::homeAddressPostalCodeLabel()
435{ 436{
436 return i18n("Home Address Postal Code"); 437 return i18n("Home Address Postal Code");
437} 438}
438 439
439 440
440QString Addressee::homeAddressCountryLabel() 441QString Addressee::homeAddressCountryLabel()
441{ 442{
442 return i18n("Home Address Country"); 443 return i18n("Home Address Country");
443} 444}
444 445
445 446
446QString Addressee::homeAddressLabelLabel() 447QString Addressee::homeAddressLabelLabel()
447{ 448{
448 return i18n("Home Address Label"); 449 return i18n("Home Address Label");
449} 450}
450 451
451 452
452QString Addressee::businessAddressStreetLabel() 453QString Addressee::businessAddressStreetLabel()
453{ 454{
454 return i18n("Business Address Street"); 455 return i18n("Business Address Street");
455} 456}
456 457
457 458
458QString Addressee::businessAddressLocalityLabel() 459QString Addressee::businessAddressLocalityLabel()
459{ 460{
460 return i18n("Business Address Locality"); 461 return i18n("Business Address Locality");
461} 462}
462 463
463 464
464QString Addressee::businessAddressRegionLabel() 465QString Addressee::businessAddressRegionLabel()
465{ 466{
466 return i18n("Business Address Region"); 467 return i18n("Business Address Region");
467} 468}
468 469
469 470
470QString Addressee::businessAddressPostalCodeLabel() 471QString Addressee::businessAddressPostalCodeLabel()
471{ 472{
472 return i18n("Business Address Postal Code"); 473 return i18n("Business Address Postal Code");
473} 474}
474 475
475 476
476QString Addressee::businessAddressCountryLabel() 477QString Addressee::businessAddressCountryLabel()
477{ 478{
478 return i18n("Business Address Country"); 479 return i18n("Business Address Country");
479} 480}
480 481
481 482
482QString Addressee::businessAddressLabelLabel() 483QString Addressee::businessAddressLabelLabel()
483{ 484{
484 return i18n("Business Address Label"); 485 return i18n("Business Address Label");
485} 486}
486 487
487 488
488QString Addressee::homePhoneLabel() 489QString Addressee::homePhoneLabel()
489{ 490{
490 return i18n("Home Phone"); 491 return i18n("Home Phone");
491} 492}
492 493
493 494
494QString Addressee::businessPhoneLabel() 495QString Addressee::businessPhoneLabel()
495{ 496{
496 return i18n("Business Phone"); 497 return i18n("Business Phone");
497} 498}
498 499
499 500
500QString Addressee::mobilePhoneLabel() 501QString Addressee::mobilePhoneLabel()
501{ 502{
502 return i18n("Mobile Phone"); 503 return i18n("Mobile Phone");
503} 504}
504 505
505 506
506QString Addressee::homeFaxLabel() 507QString Addressee::homeFaxLabel()
507{ 508{
508 return i18n("Home Fax"); 509 return i18n("Home Fax");
509} 510}
510 511
511 512
512QString Addressee::businessFaxLabel() 513QString Addressee::businessFaxLabel()
513{ 514{
514 return i18n("Business Fax"); 515 return i18n("Business Fax");
515} 516}
516 517
517 518
518QString Addressee::carPhoneLabel() 519QString Addressee::carPhoneLabel()
519{ 520{
520 return i18n("Car Phone"); 521 return i18n("Car Phone");
521} 522}
522 523
523 524
524QString Addressee::isdnLabel() 525QString Addressee::isdnLabel()
525{ 526{
526 return i18n("ISDN"); 527 return i18n("ISDN");
527} 528}
528 529
529 530
530QString Addressee::pagerLabel() 531QString Addressee::pagerLabel()
531{ 532{
532 return i18n("Pager"); 533 return i18n("Pager");
533} 534}
534 535
535QString Addressee::sipLabel() 536QString Addressee::sipLabel()
536{ 537{
537 return i18n("SIP"); 538 return i18n("SIP");
538} 539}
539 540
540QString Addressee::emailLabel() 541QString Addressee::emailLabel()
541{ 542{
542 return i18n("Email Address"); 543 return i18n("Email Address");
543} 544}
544 545
545 546
546void Addressee::setMailer( const QString &mailer ) 547void Addressee::setMailer( const QString &mailer )
547{ 548{
548 if ( mailer == mData->mailer ) return; 549 if ( mailer == mData->mailer ) return;
549 detach(); 550 detach();
550 mData->empty = false; 551 mData->empty = false;
551 mData->mailer = mailer; 552 mData->mailer = mailer;
552} 553}
553 554
554QString Addressee::mailer() const 555QString Addressee::mailer() const
555{ 556{
556 return mData->mailer; 557 return mData->mailer;
557} 558}
558 559
559QString Addressee::mailerLabel() 560QString Addressee::mailerLabel()
560{ 561{
561 return i18n("Mail Client"); 562 return i18n("Mail Client");
562} 563}
563 564
564 565
565void Addressee::setTimeZone( const TimeZone &timeZone ) 566void Addressee::setTimeZone( const TimeZone &timeZone )
566{ 567{
567 if ( timeZone == mData->timeZone ) return; 568 if ( timeZone == mData->timeZone ) return;
568 detach(); 569 detach();
569 mData->empty = false; 570 mData->empty = false;
570 mData->timeZone = timeZone; 571 mData->timeZone = timeZone;
571} 572}
572 573
573TimeZone Addressee::timeZone() const 574TimeZone Addressee::timeZone() const
574{ 575{
575 return mData->timeZone; 576 return mData->timeZone;
576} 577}
577 578
578QString Addressee::timeZoneLabel() 579QString Addressee::timeZoneLabel()
579{ 580{
580 return i18n("Time Zone"); 581 return i18n("Time Zone");
581} 582}
582 583
583 584
584void Addressee::setGeo( const Geo &geo ) 585void Addressee::setGeo( const Geo &geo )
585{ 586{
586 if ( geo == mData->geo ) return; 587 if ( geo == mData->geo ) return;
587 detach(); 588 detach();
588 mData->empty = false; 589 mData->empty = false;
589 mData->geo = geo; 590 mData->geo = geo;
590} 591}
591 592
592Geo Addressee::geo() const 593Geo Addressee::geo() const
593{ 594{
594 return mData->geo; 595 return mData->geo;
595} 596}
596 597
597QString Addressee::geoLabel() 598QString Addressee::geoLabel()
598{ 599{
599 return i18n("Geographic Position"); 600 return i18n("Geographic Position");
600} 601}
601 602
602 603
603void Addressee::setTitle( const QString &title ) 604void Addressee::setTitle( const QString &title )
604{ 605{
605 if ( title == mData->title ) return; 606 if ( title == mData->title ) return;
606 detach(); 607 detach();
607 mData->empty = false; 608 mData->empty = false;
608 mData->title = title; 609 mData->title = title;
609} 610}
610 611
611QString Addressee::title() const 612QString Addressee::title() const
612{ 613{
613 return mData->title; 614 return mData->title;
614} 615}
615 616
616QString Addressee::titleLabel() 617QString Addressee::titleLabel()
617{ 618{
618 return i18n("Title"); 619 return i18n("Title");
619} 620}
620 621
621 622
622void Addressee::setRole( const QString &role ) 623void Addressee::setRole( const QString &role )
623{ 624{
624 if ( role == mData->role ) return; 625 if ( role == mData->role ) return;
625 detach(); 626 detach();
626 mData->empty = false; 627 mData->empty = false;
627 mData->role = role; 628 mData->role = role;
628} 629}
629 630
630QString Addressee::role() const 631QString Addressee::role() const
631{ 632{
632 return mData->role; 633 return mData->role;
633} 634}
634 635
635QString Addressee::roleLabel() 636QString Addressee::roleLabel()
636{ 637{
637 return i18n("Role"); 638 return i18n("Role");
638} 639}
639 640
640 641
641void Addressee::setOrganization( const QString &organization ) 642void Addressee::setOrganization( const QString &organization )
642{ 643{
643 if ( organization == mData->organization ) return; 644 if ( organization == mData->organization ) return;
644 detach(); 645 detach();
645 mData->empty = false; 646 mData->empty = false;
646 mData->organization = organization; 647 mData->organization = organization;
647} 648}
648 649
649QString Addressee::organization() const 650QString Addressee::organization() const
650{ 651{
651 return mData->organization; 652 return mData->organization;
652} 653}
653 654
654QString Addressee::organizationLabel() 655QString Addressee::organizationLabel()
655{ 656{
656 return i18n("Organization"); 657 return i18n("Organization");
657} 658}
658 659
659 660
660void Addressee::setNote( const QString &note ) 661void Addressee::setNote( const QString &note )
661{ 662{
662 if ( note == mData->note ) return; 663 if ( note == mData->note ) return;
663 detach(); 664 detach();
664 mData->empty = false; 665 mData->empty = false;
665 mData->note = note; 666 mData->note = note;
666} 667}
667 668
668QString Addressee::note() const 669QString Addressee::note() const
669{ 670{
670 return mData->note; 671 return mData->note;
671} 672}
672 673
673QString Addressee::noteLabel() 674QString Addressee::noteLabel()
674{ 675{
675 return i18n("Note"); 676 return i18n("Note");
676} 677}
677 678
678 679
679void Addressee::setProductId( const QString &productId ) 680void Addressee::setProductId( const QString &productId )
680{ 681{
681 if ( productId == mData->productId ) return; 682 if ( productId == mData->productId ) return;
682 detach(); 683 detach();
683 mData->empty = false; 684 mData->empty = false;
684 mData->productId = productId; 685 mData->productId = productId;
685} 686}
686 687
687QString Addressee::productId() const 688QString Addressee::productId() const
688{ 689{
689 return mData->productId; 690 return mData->productId;
690} 691}
691 692
692QString Addressee::productIdLabel() 693QString Addressee::productIdLabel()
693{ 694{
694 return i18n("Product Identifier"); 695 return i18n("Product Identifier");
695} 696}
696 697
697 698
698void Addressee::setRevision( const QDateTime &revision ) 699void Addressee::setRevision( const QDateTime &revision )
699{ 700{
700 if ( revision == mData->revision ) return; 701 if ( revision == mData->revision ) return;
701 detach(); 702 detach();
702 mData->empty = false; 703 mData->empty = false;
703 mData->revision = revision; 704 mData->revision = revision;
704} 705}
705 706
706QDateTime Addressee::revision() const 707QDateTime Addressee::revision() const
707{ 708{
708 return mData->revision; 709 return mData->revision;
709} 710}
710 711
711QString Addressee::revisionLabel() 712QString Addressee::revisionLabel()
712{ 713{
713 return i18n("Revision Date"); 714 return i18n("Revision Date");
714} 715}
715 716
716 717
717void Addressee::setSortString( const QString &sortString ) 718void Addressee::setSortString( const QString &sortString )
718{ 719{
719 if ( sortString == mData->sortString ) return; 720 if ( sortString == mData->sortString ) return;
720 detach(); 721 detach();
721 mData->empty = false; 722 mData->empty = false;
722 mData->sortString = sortString; 723 mData->sortString = sortString;
723} 724}
724 725
725QString Addressee::sortString() const 726QString Addressee::sortString() const
726{ 727{
727 return mData->sortString; 728 return mData->sortString;
728} 729}
729 730
730QString Addressee::sortStringLabel() 731QString Addressee::sortStringLabel()
731{ 732{
732 return i18n("Sort String"); 733 return i18n("Sort String");
733} 734}
734 735
735 736
736void Addressee::setUrl( const KURL &url ) 737void Addressee::setUrl( const KURL &url )
737{ 738{
738 if ( url == mData->url ) return; 739 if ( url == mData->url ) return;
739 detach(); 740 detach();
740 mData->empty = false; 741 mData->empty = false;
741 mData->url = url; 742 mData->url = url;
742} 743}
743 744
744KURL Addressee::url() const 745KURL Addressee::url() const
745{ 746{
746 return mData->url; 747 return mData->url;
747} 748}
748 749
749QString Addressee::urlLabel() 750QString Addressee::urlLabel()
750{ 751{
751 return i18n("URL"); 752 return i18n("URL");
752} 753}
753 754
754 755
755void Addressee::setSecrecy( const Secrecy &secrecy ) 756void Addressee::setSecrecy( const Secrecy &secrecy )
756{ 757{
757 if ( secrecy == mData->secrecy ) return; 758 if ( secrecy == mData->secrecy ) return;
758 detach(); 759 detach();
759 mData->empty = false; 760 mData->empty = false;
760 mData->secrecy = secrecy; 761 mData->secrecy = secrecy;
761} 762}
762 763
763Secrecy Addressee::secrecy() const 764Secrecy Addressee::secrecy() const
764{ 765{
765 return mData->secrecy; 766 return mData->secrecy;
766} 767}
767 768
768QString Addressee::secrecyLabel() 769QString Addressee::secrecyLabel()
769{ 770{
770 return i18n("Security Class"); 771 return i18n("Security Class");
771} 772}
772 773
773 774
774void Addressee::setLogo( const Picture &logo ) 775void Addressee::setLogo( const Picture &logo )
775{ 776{
776 if ( logo == mData->logo ) return; 777 if ( logo == mData->logo ) return;
777 detach(); 778 detach();
778 mData->empty = false; 779 mData->empty = false;
779 mData->logo = logo; 780 mData->logo = logo;
780} 781}
781 782
782Picture Addressee::logo() const 783Picture Addressee::logo() const
783{ 784{
784 return mData->logo; 785 return mData->logo;
785} 786}
786 787
787QString Addressee::logoLabel() 788QString Addressee::logoLabel()
788{ 789{
789 return i18n("Logo"); 790 return i18n("Logo");
790} 791}
791 792
792 793
793void Addressee::setPhoto( const Picture &photo ) 794void Addressee::setPhoto( const Picture &photo )
794{ 795{
795 if ( photo == mData->photo ) return; 796 if ( photo == mData->photo ) return;
796 detach(); 797 detach();
797 mData->empty = false; 798 mData->empty = false;
798 mData->photo = photo; 799 mData->photo = photo;
799} 800}
800 801
801Picture Addressee::photo() const 802Picture Addressee::photo() const
802{ 803{
803 return mData->photo; 804 return mData->photo;
804} 805}
805 806
806QString Addressee::photoLabel() 807QString Addressee::photoLabel()
807{ 808{
808 return i18n("Photo"); 809 return i18n("Photo");
809} 810}
810 811
811 812
812void Addressee::setSound( const Sound &sound ) 813void Addressee::setSound( const Sound &sound )
813{ 814{
814 if ( sound == mData->sound ) return; 815 if ( sound == mData->sound ) return;
815 detach(); 816 detach();
816 mData->empty = false; 817 mData->empty = false;
817 mData->sound = sound; 818 mData->sound = sound;
818} 819}
819 820
820Sound Addressee::sound() const 821Sound Addressee::sound() const
821{ 822{
822 return mData->sound; 823 return mData->sound;
823} 824}
824 825
825QString Addressee::soundLabel() 826QString Addressee::soundLabel()
826{ 827{
827 return i18n("Sound"); 828 return i18n("Sound");
828} 829}
829 830
830 831
831void Addressee::setAgent( const Agent &agent ) 832void Addressee::setAgent( const Agent &agent )
832{ 833{
833 if ( agent == mData->agent ) return; 834 if ( agent == mData->agent ) return;
834 detach(); 835 detach();
835 mData->empty = false; 836 mData->empty = false;
836 mData->agent = agent; 837 mData->agent = agent;
837} 838}
838 839
839Agent Addressee::agent() const 840Agent Addressee::agent() const
840{ 841{
841 return mData->agent; 842 return mData->agent;
842} 843}
843 844
844QString Addressee::agentLabel() 845QString Addressee::agentLabel()
845{ 846{
846 return i18n("Agent"); 847 return i18n("Agent");
847} 848}
848 849
849 850
850 851
851void Addressee::setNameFromString( const QString &str ) 852void Addressee::setNameFromString( const QString &str )
852{ 853{
853 setFormattedName( str ); 854 setFormattedName( str );
854 setName( str ); 855 setName( str );
855 856
856 static bool first = true; 857 static bool first = true;
857 static QStringList titles; 858 static QStringList titles;
858 static QStringList suffixes; 859 static QStringList suffixes;
859 static QStringList prefixes; 860 static QStringList prefixes;
860 861
861 if ( first ) { 862 if ( first ) {
862 first = false; 863 first = false;
863 titles += i18n( "Dr." ); 864 titles += i18n( "Dr." );