author | zautrix <zautrix> | 2004-09-18 08:25:05 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-18 08:25:05 (UTC) |
commit | 983b010853dfadfec3638e2afd90e522985f67fb (patch) (unidiff) | |
tree | b691b7664b9f6f23d0d92a0e05bf3e8cbcf2df67 /kabc | |
parent | df03bd8c7ff6a738dd386001679542ae4b493a07 (diff) | |
download | kdepimpi-983b010853dfadfec3638e2afd90e522985f67fb.zip kdepimpi-983b010853dfadfec3638e2afd90e522985f67fb.tar.gz kdepimpi-983b010853dfadfec3638e2afd90e522985f67fb.tar.bz2 |
more AB syncing
-rw-r--r-- | kabc/addressbook.cpp | 101 | ||||
-rw-r--r-- | kabc/addressbook.h | 1 |
2 files changed, 100 insertions, 2 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index 47d298a..70eda1b 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp | |||
@@ -1,548 +1,645 @@ | |||
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 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (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 "addressbook.h" | 45 | #include "addressbook.h" |
46 | #include "resource.h" | 46 | #include "resource.h" |
47 | 47 | ||
48 | //US #include "addressbook.moc" | 48 | //US #include "addressbook.moc" |
49 | 49 | ||
50 | using namespace KABC; | 50 | using namespace KABC; |
51 | 51 | ||
52 | struct AddressBook::AddressBookData | 52 | struct AddressBook::AddressBookData |
53 | { | 53 | { |
54 | Addressee::List mAddressees; | 54 | Addressee::List mAddressees; |
55 | Addressee::List mRemovedAddressees; | 55 | Addressee::List mRemovedAddressees; |
56 | Field::List mAllFields; | 56 | Field::List mAllFields; |
57 | KConfig *mConfig; | 57 | KConfig *mConfig; |
58 | KRES::Manager<Resource> *mManager; | 58 | KRES::Manager<Resource> *mManager; |
59 | //US ErrorHandler *mErrorHandler; | 59 | //US ErrorHandler *mErrorHandler; |
60 | }; | 60 | }; |
61 | 61 | ||
62 | struct AddressBook::Iterator::IteratorData | 62 | struct AddressBook::Iterator::IteratorData |
63 | { | 63 | { |
64 | Addressee::List::Iterator mIt; | 64 | Addressee::List::Iterator mIt; |
65 | }; | 65 | }; |
66 | 66 | ||
67 | struct AddressBook::ConstIterator::ConstIteratorData | 67 | struct AddressBook::ConstIterator::ConstIteratorData |
68 | { | 68 | { |
69 | Addressee::List::ConstIterator mIt; | 69 | Addressee::List::ConstIterator mIt; |
70 | }; | 70 | }; |
71 | 71 | ||
72 | AddressBook::Iterator::Iterator() | 72 | AddressBook::Iterator::Iterator() |
73 | { | 73 | { |
74 | d = new IteratorData; | 74 | d = new IteratorData; |
75 | } | 75 | } |
76 | 76 | ||
77 | AddressBook::Iterator::Iterator( const AddressBook::Iterator &i ) | 77 | AddressBook::Iterator::Iterator( const AddressBook::Iterator &i ) |
78 | { | 78 | { |
79 | d = new IteratorData; | 79 | d = new IteratorData; |
80 | d->mIt = i.d->mIt; | 80 | d->mIt = i.d->mIt; |
81 | } | 81 | } |
82 | 82 | ||
83 | AddressBook::Iterator &AddressBook::Iterator::operator=( const AddressBook::Iterator &i ) | 83 | AddressBook::Iterator &AddressBook::Iterator::operator=( const AddressBook::Iterator &i ) |
84 | { | 84 | { |
85 | if( this == &i ) return *this; // guard against self assignment | 85 | if( this == &i ) return *this; // guard against self assignment |
86 | delete d; // delete the old data the Iterator was completely constructed before | 86 | delete d; // delete the old data the Iterator was completely constructed before |
87 | d = new IteratorData; | 87 | d = new IteratorData; |
88 | d->mIt = i.d->mIt; | 88 | d->mIt = i.d->mIt; |
89 | return *this; | 89 | return *this; |
90 | } | 90 | } |
91 | 91 | ||
92 | AddressBook::Iterator::~Iterator() | 92 | AddressBook::Iterator::~Iterator() |
93 | { | 93 | { |
94 | delete d; | 94 | delete d; |
95 | } | 95 | } |
96 | 96 | ||
97 | const Addressee &AddressBook::Iterator::operator*() const | 97 | const Addressee &AddressBook::Iterator::operator*() const |
98 | { | 98 | { |
99 | return *(d->mIt); | 99 | return *(d->mIt); |
100 | } | 100 | } |
101 | 101 | ||
102 | Addressee &AddressBook::Iterator::operator*() | 102 | Addressee &AddressBook::Iterator::operator*() |
103 | { | 103 | { |
104 | return *(d->mIt); | 104 | return *(d->mIt); |
105 | } | 105 | } |
106 | 106 | ||
107 | Addressee *AddressBook::Iterator::operator->() | 107 | Addressee *AddressBook::Iterator::operator->() |
108 | { | 108 | { |
109 | return &(*(d->mIt)); | 109 | return &(*(d->mIt)); |
110 | } | 110 | } |
111 | 111 | ||
112 | AddressBook::Iterator &AddressBook::Iterator::operator++() | 112 | AddressBook::Iterator &AddressBook::Iterator::operator++() |
113 | { | 113 | { |
114 | (d->mIt)++; | 114 | (d->mIt)++; |
115 | return *this; | 115 | return *this; |
116 | } | 116 | } |
117 | 117 | ||
118 | AddressBook::Iterator &AddressBook::Iterator::operator++(int) | 118 | AddressBook::Iterator &AddressBook::Iterator::operator++(int) |
119 | { | 119 | { |
120 | (d->mIt)++; | 120 | (d->mIt)++; |
121 | return *this; | 121 | return *this; |
122 | } | 122 | } |
123 | 123 | ||
124 | AddressBook::Iterator &AddressBook::Iterator::operator--() | 124 | AddressBook::Iterator &AddressBook::Iterator::operator--() |
125 | { | 125 | { |
126 | (d->mIt)--; | 126 | (d->mIt)--; |
127 | return *this; | 127 | return *this; |
128 | } | 128 | } |
129 | 129 | ||
130 | AddressBook::Iterator &AddressBook::Iterator::operator--(int) | 130 | AddressBook::Iterator &AddressBook::Iterator::operator--(int) |
131 | { | 131 | { |
132 | (d->mIt)--; | 132 | (d->mIt)--; |
133 | return *this; | 133 | return *this; |
134 | } | 134 | } |
135 | 135 | ||
136 | bool AddressBook::Iterator::operator==( const Iterator &it ) | 136 | bool AddressBook::Iterator::operator==( const Iterator &it ) |
137 | { | 137 | { |
138 | return ( d->mIt == it.d->mIt ); | 138 | return ( d->mIt == it.d->mIt ); |
139 | } | 139 | } |
140 | 140 | ||
141 | bool AddressBook::Iterator::operator!=( const Iterator &it ) | 141 | bool AddressBook::Iterator::operator!=( const Iterator &it ) |
142 | { | 142 | { |
143 | return ( d->mIt != it.d->mIt ); | 143 | return ( d->mIt != it.d->mIt ); |
144 | } | 144 | } |
145 | 145 | ||
146 | 146 | ||
147 | AddressBook::ConstIterator::ConstIterator() | 147 | AddressBook::ConstIterator::ConstIterator() |
148 | { | 148 | { |
149 | d = new ConstIteratorData; | 149 | d = new ConstIteratorData; |
150 | } | 150 | } |
151 | 151 | ||
152 | AddressBook::ConstIterator::ConstIterator( const AddressBook::ConstIterator &i ) | 152 | AddressBook::ConstIterator::ConstIterator( const AddressBook::ConstIterator &i ) |
153 | { | 153 | { |
154 | d = new ConstIteratorData; | 154 | d = new ConstIteratorData; |
155 | d->mIt = i.d->mIt; | 155 | d->mIt = i.d->mIt; |
156 | } | 156 | } |
157 | 157 | ||
158 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator=( const AddressBook::ConstIterator &i ) | 158 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator=( const AddressBook::ConstIterator &i ) |
159 | { | 159 | { |
160 | if( this == &i ) return *this; // guard for self assignment | 160 | if( this == &i ) return *this; // guard for self assignment |
161 | delete d; // delete the old data because the Iterator was really constructed before | 161 | delete d; // delete the old data because the Iterator was really constructed before |
162 | d = new ConstIteratorData; | 162 | d = new ConstIteratorData; |
163 | d->mIt = i.d->mIt; | 163 | d->mIt = i.d->mIt; |
164 | return *this; | 164 | return *this; |
165 | } | 165 | } |
166 | 166 | ||
167 | AddressBook::ConstIterator::~ConstIterator() | 167 | AddressBook::ConstIterator::~ConstIterator() |
168 | { | 168 | { |
169 | delete d; | 169 | delete d; |
170 | } | 170 | } |
171 | 171 | ||
172 | const Addressee &AddressBook::ConstIterator::operator*() const | 172 | const Addressee &AddressBook::ConstIterator::operator*() const |
173 | { | 173 | { |
174 | return *(d->mIt); | 174 | return *(d->mIt); |
175 | } | 175 | } |
176 | 176 | ||
177 | const Addressee* AddressBook::ConstIterator::operator->() const | 177 | const Addressee* AddressBook::ConstIterator::operator->() const |
178 | { | 178 | { |
179 | return &(*(d->mIt)); | 179 | return &(*(d->mIt)); |
180 | } | 180 | } |
181 | 181 | ||
182 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++() | 182 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++() |
183 | { | 183 | { |
184 | (d->mIt)++; | 184 | (d->mIt)++; |
185 | return *this; | 185 | return *this; |
186 | } | 186 | } |
187 | 187 | ||
188 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++(int) | 188 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator++(int) |
189 | { | 189 | { |
190 | (d->mIt)++; | 190 | (d->mIt)++; |
191 | return *this; | 191 | return *this; |
192 | } | 192 | } |
193 | 193 | ||
194 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--() | 194 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--() |
195 | { | 195 | { |
196 | (d->mIt)--; | 196 | (d->mIt)--; |
197 | return *this; | 197 | return *this; |
198 | } | 198 | } |
199 | 199 | ||
200 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--(int) | 200 | AddressBook::ConstIterator &AddressBook::ConstIterator::operator--(int) |
201 | { | 201 | { |
202 | (d->mIt)--; | 202 | (d->mIt)--; |
203 | return *this; | 203 | return *this; |
204 | } | 204 | } |
205 | 205 | ||
206 | bool AddressBook::ConstIterator::operator==( const ConstIterator &it ) | 206 | bool AddressBook::ConstIterator::operator==( const ConstIterator &it ) |
207 | { | 207 | { |
208 | return ( d->mIt == it.d->mIt ); | 208 | return ( d->mIt == it.d->mIt ); |
209 | } | 209 | } |
210 | 210 | ||
211 | bool AddressBook::ConstIterator::operator!=( const ConstIterator &it ) | 211 | bool AddressBook::ConstIterator::operator!=( const ConstIterator &it ) |
212 | { | 212 | { |
213 | return ( d->mIt != it.d->mIt ); | 213 | return ( d->mIt != it.d->mIt ); |
214 | } | 214 | } |
215 | 215 | ||
216 | 216 | ||
217 | AddressBook::AddressBook() | 217 | AddressBook::AddressBook() |
218 | { | 218 | { |
219 | init(0, "contact"); | 219 | init(0, "contact"); |
220 | } | 220 | } |
221 | 221 | ||
222 | AddressBook::AddressBook( const QString &config ) | 222 | AddressBook::AddressBook( const QString &config ) |
223 | { | 223 | { |
224 | init(config, "contact"); | 224 | init(config, "contact"); |
225 | } | 225 | } |
226 | 226 | ||
227 | AddressBook::AddressBook( const QString &config, const QString &family ) | 227 | AddressBook::AddressBook( const QString &config, const QString &family ) |
228 | { | 228 | { |
229 | init(config, family); | 229 | init(config, family); |
230 | 230 | ||
231 | } | 231 | } |
232 | 232 | ||
233 | // the default family is "contact" | 233 | // the default family is "contact" |
234 | void AddressBook::init(const QString &config, const QString &family ) | 234 | void AddressBook::init(const QString &config, const QString &family ) |
235 | { | 235 | { |
236 | d = new AddressBookData; | 236 | d = new AddressBookData; |
237 | QString fami = family; | ||
238 | qDebug("new ab "); | ||
237 | if (config != 0) { | 239 | if (config != 0) { |
240 | qDebug("config != 0 "); | ||
241 | if ( family == "syncContact" ) { | ||
242 | qDebug("creating sync config "); | ||
243 | fami = "contact"; | ||
244 | KConfig* con = new KConfig( locateLocal("config", "syncContactrc") ); | ||
245 | con->setGroup( "General" ); | ||
246 | con->writeEntry( "ResourceKeys", QString("sync") ); | ||
247 | con->writeEntry( "Standard", QString("sync") ); | ||
248 | con->setGroup( "Resource_sync" ); | ||
249 | con->writeEntry( "FileFormat", QString("vcard") ); | ||
250 | con->writeEntry( "FileName", config ); | ||
251 | con->writeEntry( "ResourceIdentifier", QString("sync") ); | ||
252 | con->writeEntry( "ResourceName", QString("sync_res") ); | ||
253 | con->writeEntry( "ResourceType", QString("file") ); | ||
254 | //con->sync(); | ||
255 | d->mConfig = con; | ||
256 | } | ||
257 | else | ||
238 | d->mConfig = new KConfig( locateLocal("config", config) ); | 258 | d->mConfig = new KConfig( locateLocal("config", config) ); |
239 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); | 259 | // qDebug("AddressBook::init 1 config=%s",config.latin1() ); |
240 | } | 260 | } |
241 | else { | 261 | else { |
242 | d->mConfig = 0; | 262 | d->mConfig = 0; |
243 | // qDebug("AddressBook::init 1 config=0"); | 263 | // qDebug("AddressBook::init 1 config=0"); |
244 | } | 264 | } |
245 | 265 | ||
246 | //US d->mErrorHandler = 0; | 266 | //US d->mErrorHandler = 0; |
247 | d->mManager = new KRES::Manager<Resource>( family, false ); | 267 | d->mManager = new KRES::Manager<Resource>( fami, false ); |
248 | d->mManager->readConfig( d->mConfig ); | 268 | d->mManager->readConfig( d->mConfig ); |
269 | if ( family == "syncContact" ) { | ||
270 | KRES::Manager<Resource> *manager = d->mManager; | ||
271 | KRES::Manager<Resource>::ActiveIterator it; | ||
272 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | ||
273 | (*it)->setAddressBook( this ); | ||
274 | if ( !(*it)->open() ) | ||
275 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); | ||
276 | } | ||
277 | Resource *res = standardResource(); | ||
278 | if ( !res ) { | ||
279 | qDebug("ERROR: no standard resource"); | ||
280 | res = manager->createResource( "file" ); | ||
281 | if ( res ) | ||
282 | { | ||
283 | addResource( res ); | ||
284 | } | ||
285 | else | ||
286 | qDebug(" No resource available!!!"); | ||
287 | } | ||
288 | setStandardResource( res ); | ||
289 | manager->writeConfig(); | ||
290 | } | ||
291 | addCustomField( i18n( "Department" ), KABC::Field::Organization, | ||
292 | "X-Department", "KADDRESSBOOK" ); | ||
293 | addCustomField( i18n( "Profession" ), KABC::Field::Organization, | ||
294 | "X-Profession", "KADDRESSBOOK" ); | ||
295 | addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, | ||
296 | "X-AssistantsName", "KADDRESSBOOK" ); | ||
297 | addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, | ||
298 | "X-ManagersName", "KADDRESSBOOK" ); | ||
299 | addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, | ||
300 | "X-SpousesName", "KADDRESSBOOK" ); | ||
301 | addCustomField( i18n( "Office" ), KABC::Field::Personal, | ||
302 | "X-Office", "KADDRESSBOOK" ); | ||
303 | addCustomField( i18n( "IM Address" ), KABC::Field::Personal, | ||
304 | "X-IMAddress", "KADDRESSBOOK" ); | ||
305 | addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, | ||
306 | "X-Anniversary", "KADDRESSBOOK" ); | ||
307 | |||
308 | //US added this field to become compatible with Opie/qtopia addressbook | ||
309 | // values can be "female" or "male" or "". An empty field represents undefined. | ||
310 | addCustomField( i18n( "Gender" ), KABC::Field::Personal, | ||
311 | "X-Gender", "KADDRESSBOOK" ); | ||
312 | addCustomField( i18n( "Children" ), KABC::Field::Personal, | ||
313 | "X-Children", "KADDRESSBOOK" ); | ||
314 | addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | ||
315 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | ||
316 | addCustomField( i18n( "ExternalID" ), KABC::Field::Personal, | ||
317 | "X-ExternalID", "KADDRESSBOOK" ); | ||
249 | } | 318 | } |
250 | 319 | ||
251 | AddressBook::~AddressBook() | 320 | AddressBook::~AddressBook() |
252 | { | 321 | { |
253 | delete d->mConfig; d->mConfig = 0; | 322 | delete d->mConfig; d->mConfig = 0; |
254 | delete d->mManager; d->mManager = 0; | 323 | delete d->mManager; d->mManager = 0; |
255 | //US delete d->mErrorHandler; d->mErrorHandler = 0; | 324 | //US delete d->mErrorHandler; d->mErrorHandler = 0; |
256 | delete d; d = 0; | 325 | delete d; d = 0; |
257 | } | 326 | } |
258 | 327 | ||
259 | bool AddressBook::load() | 328 | bool AddressBook::load() |
260 | { | 329 | { |
261 | 330 | ||
262 | 331 | ||
263 | clear(); | 332 | clear(); |
264 | 333 | ||
265 | KRES::Manager<Resource>::ActiveIterator it; | 334 | KRES::Manager<Resource>::ActiveIterator it; |
266 | bool ok = true; | 335 | bool ok = true; |
267 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) | 336 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) |
268 | if ( !(*it)->load() ) { | 337 | if ( !(*it)->load() ) { |
269 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); | 338 | error( i18n("Unable to load resource '%1'").arg( (*it)->resourceName() ) ); |
270 | ok = false; | 339 | ok = false; |
271 | } | 340 | } |
272 | 341 | ||
273 | // mark all addressees as unchanged | 342 | // mark all addressees as unchanged |
274 | Addressee::List::Iterator addrIt; | 343 | Addressee::List::Iterator addrIt; |
275 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) | 344 | for ( addrIt = d->mAddressees.begin(); addrIt != d->mAddressees.end(); ++addrIt ) |
276 | (*addrIt).setChanged( false ); | 345 | (*addrIt).setChanged( false ); |
277 | 346 | ||
278 | return ok; | 347 | return ok; |
279 | } | 348 | } |
280 | 349 | ||
281 | bool AddressBook::save( Ticket *ticket ) | 350 | bool AddressBook::save( Ticket *ticket ) |
282 | { | 351 | { |
283 | kdDebug(5700) << "AddressBook::save()"<< endl; | 352 | kdDebug(5700) << "AddressBook::save()"<< endl; |
284 | 353 | ||
285 | if ( ticket->resource() ) { | 354 | if ( ticket->resource() ) { |
286 | deleteRemovedAddressees(); | 355 | deleteRemovedAddressees(); |
287 | |||
288 | return ticket->resource()->save( ticket ); | 356 | return ticket->resource()->save( ticket ); |
289 | } | 357 | } |
290 | 358 | ||
291 | return false; | 359 | return false; |
292 | } | 360 | } |
361 | bool AddressBook::saveAB() | ||
362 | { | ||
363 | bool ok = true; | ||
364 | |||
365 | deleteRemovedAddressees(); | ||
366 | |||
367 | KRES::Manager<Resource>::ActiveIterator it; | ||
368 | KRES::Manager<Resource> *manager = d->mManager; | ||
369 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | ||
370 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { | ||
371 | Ticket *ticket = requestSaveTicket( *it ); | ||
372 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); | ||
373 | if ( !ticket ) { | ||
374 | error( i18n( "Unable to save to resource '%1'. It is locked." ) | ||
375 | .arg( (*it)->resourceName() ) ); | ||
376 | return false; | ||
377 | } | ||
378 | |||
379 | //if ( !save( ticket ) ) | ||
380 | if ( ticket->resource() ) { | ||
381 | if ( ! ticket->resource()->save( ticket ) ) | ||
382 | ok = false; | ||
383 | } else | ||
384 | ok = false; | ||
385 | |||
386 | } | ||
387 | } | ||
388 | return ok; | ||
389 | } | ||
293 | 390 | ||
294 | AddressBook::Iterator AddressBook::begin() | 391 | AddressBook::Iterator AddressBook::begin() |
295 | { | 392 | { |
296 | Iterator it = Iterator(); | 393 | Iterator it = Iterator(); |
297 | it.d->mIt = d->mAddressees.begin(); | 394 | it.d->mIt = d->mAddressees.begin(); |
298 | return it; | 395 | return it; |
299 | } | 396 | } |
300 | 397 | ||
301 | AddressBook::ConstIterator AddressBook::begin() const | 398 | AddressBook::ConstIterator AddressBook::begin() const |
302 | { | 399 | { |
303 | ConstIterator it = ConstIterator(); | 400 | ConstIterator it = ConstIterator(); |
304 | it.d->mIt = d->mAddressees.begin(); | 401 | it.d->mIt = d->mAddressees.begin(); |
305 | return it; | 402 | return it; |
306 | } | 403 | } |
307 | 404 | ||
308 | AddressBook::Iterator AddressBook::end() | 405 | AddressBook::Iterator AddressBook::end() |
309 | { | 406 | { |
310 | Iterator it = Iterator(); | 407 | Iterator it = Iterator(); |
311 | it.d->mIt = d->mAddressees.end(); | 408 | it.d->mIt = d->mAddressees.end(); |
312 | return it; | 409 | return it; |
313 | } | 410 | } |
314 | 411 | ||
315 | AddressBook::ConstIterator AddressBook::end() const | 412 | AddressBook::ConstIterator AddressBook::end() const |
316 | { | 413 | { |
317 | ConstIterator it = ConstIterator(); | 414 | ConstIterator it = ConstIterator(); |
318 | it.d->mIt = d->mAddressees.end(); | 415 | it.d->mIt = d->mAddressees.end(); |
319 | return it; | 416 | return it; |
320 | } | 417 | } |
321 | 418 | ||
322 | void AddressBook::clear() | 419 | void AddressBook::clear() |
323 | { | 420 | { |
324 | d->mAddressees.clear(); | 421 | d->mAddressees.clear(); |
325 | } | 422 | } |
326 | 423 | ||
327 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) | 424 | Ticket *AddressBook::requestSaveTicket( Resource *resource ) |
328 | { | 425 | { |
329 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; | 426 | kdDebug(5700) << "AddressBook::requestSaveTicket()" << endl; |
330 | 427 | ||
331 | if ( !resource ) | 428 | if ( !resource ) |
332 | { | 429 | { |
333 | qDebug("AddressBook::requestSaveTicket no resource" ); | 430 | qDebug("AddressBook::requestSaveTicket no resource" ); |
334 | resource = standardResource(); | 431 | resource = standardResource(); |
335 | } | 432 | } |
336 | 433 | ||
337 | KRES::Manager<Resource>::ActiveIterator it; | 434 | KRES::Manager<Resource>::ActiveIterator it; |
338 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 435 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
339 | if ( (*it) == resource ) { | 436 | if ( (*it) == resource ) { |
340 | if ( (*it)->readOnly() || !(*it)->isOpen() ) | 437 | if ( (*it)->readOnly() || !(*it)->isOpen() ) |
341 | return 0; | 438 | return 0; |
342 | else | 439 | else |
343 | return (*it)->requestSaveTicket(); | 440 | return (*it)->requestSaveTicket(); |
344 | } | 441 | } |
345 | } | 442 | } |
346 | 443 | ||
347 | return 0; | 444 | return 0; |
348 | } | 445 | } |
349 | 446 | ||
350 | void AddressBook::insertAddressee( const Addressee &a ) | 447 | void AddressBook::insertAddressee( const Addressee &a ) |
351 | { | 448 | { |
352 | Addressee::List::Iterator it; | 449 | Addressee::List::Iterator it; |
353 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { | 450 | for ( it = d->mAddressees.begin(); it != d->mAddressees.end(); ++it ) { |
354 | if ( a.uid() == (*it).uid() ) { | 451 | if ( a.uid() == (*it).uid() ) { |
355 | bool changed = false; | 452 | bool changed = false; |
356 | Addressee addr = a; | 453 | Addressee addr = a; |
357 | if ( addr != (*it) ) | 454 | if ( addr != (*it) ) |
358 | changed = true; | 455 | changed = true; |
359 | 456 | ||
360 | (*it) = a; | 457 | (*it) = a; |
361 | if ( (*it).resource() == 0 ) | 458 | if ( (*it).resource() == 0 ) |
362 | (*it).setResource( standardResource() ); | 459 | (*it).setResource( standardResource() ); |
363 | 460 | ||
364 | if ( changed ) { | 461 | if ( changed ) { |
365 | (*it).setRevision( QDateTime::currentDateTime() ); | 462 | (*it).setRevision( QDateTime::currentDateTime() ); |
366 | (*it).setChanged( true ); | 463 | (*it).setChanged( true ); |
367 | } | 464 | } |
368 | 465 | ||
369 | return; | 466 | return; |
370 | } | 467 | } |
371 | } | 468 | } |
372 | d->mAddressees.append( a ); | 469 | d->mAddressees.append( a ); |
373 | Addressee& addr = d->mAddressees.last(); | 470 | Addressee& addr = d->mAddressees.last(); |
374 | if ( addr.resource() == 0 ) | 471 | if ( addr.resource() == 0 ) |
375 | addr.setResource( standardResource() ); | 472 | addr.setResource( standardResource() ); |
376 | 473 | ||
377 | addr.setChanged( true ); | 474 | addr.setChanged( true ); |
378 | } | 475 | } |
379 | 476 | ||
380 | void AddressBook::removeAddressee( const Addressee &a ) | 477 | void AddressBook::removeAddressee( const Addressee &a ) |
381 | { | 478 | { |
382 | Iterator it; | 479 | Iterator it; |
383 | for ( it = begin(); it != end(); ++it ) { | 480 | for ( it = begin(); it != end(); ++it ) { |
384 | if ( a.uid() == (*it).uid() ) { | 481 | if ( a.uid() == (*it).uid() ) { |
385 | removeAddressee( it ); | 482 | removeAddressee( it ); |
386 | return; | 483 | return; |
387 | } | 484 | } |
388 | } | 485 | } |
389 | } | 486 | } |
390 | 487 | ||
391 | void AddressBook::removeAddressee( const Iterator &it ) | 488 | void AddressBook::removeAddressee( const Iterator &it ) |
392 | { | 489 | { |
393 | d->mRemovedAddressees.append( (*it) ); | 490 | d->mRemovedAddressees.append( (*it) ); |
394 | d->mAddressees.remove( it.d->mIt ); | 491 | d->mAddressees.remove( it.d->mIt ); |
395 | } | 492 | } |
396 | 493 | ||
397 | AddressBook::Iterator AddressBook::find( const Addressee &a ) | 494 | AddressBook::Iterator AddressBook::find( const Addressee &a ) |
398 | { | 495 | { |
399 | Iterator it; | 496 | Iterator it; |
400 | for ( it = begin(); it != end(); ++it ) { | 497 | for ( it = begin(); it != end(); ++it ) { |
401 | if ( a.uid() == (*it).uid() ) { | 498 | if ( a.uid() == (*it).uid() ) { |
402 | return it; | 499 | return it; |
403 | } | 500 | } |
404 | } | 501 | } |
405 | return end(); | 502 | return end(); |
406 | } | 503 | } |
407 | 504 | ||
408 | Addressee AddressBook::findByUid( const QString &uid ) | 505 | Addressee AddressBook::findByUid( const QString &uid ) |
409 | { | 506 | { |
410 | Iterator it; | 507 | Iterator it; |
411 | for ( it = begin(); it != end(); ++it ) { | 508 | for ( it = begin(); it != end(); ++it ) { |
412 | if ( uid == (*it).uid() ) { | 509 | if ( uid == (*it).uid() ) { |
413 | return *it; | 510 | return *it; |
414 | } | 511 | } |
415 | } | 512 | } |
416 | return Addressee(); | 513 | return Addressee(); |
417 | } | 514 | } |
418 | 515 | ||
419 | Addressee::List AddressBook::allAddressees() | 516 | Addressee::List AddressBook::allAddressees() |
420 | { | 517 | { |
421 | return d->mAddressees; | 518 | return d->mAddressees; |
422 | } | 519 | } |
423 | 520 | ||
424 | Addressee::List AddressBook::findByName( const QString &name ) | 521 | Addressee::List AddressBook::findByName( const QString &name ) |
425 | { | 522 | { |
426 | Addressee::List results; | 523 | Addressee::List results; |
427 | 524 | ||
428 | Iterator it; | 525 | Iterator it; |
429 | for ( it = begin(); it != end(); ++it ) { | 526 | for ( it = begin(); it != end(); ++it ) { |
430 | if ( name == (*it).realName() ) { | 527 | if ( name == (*it).realName() ) { |
431 | results.append( *it ); | 528 | results.append( *it ); |
432 | } | 529 | } |
433 | } | 530 | } |
434 | 531 | ||
435 | return results; | 532 | return results; |
436 | } | 533 | } |
437 | 534 | ||
438 | Addressee::List AddressBook::findByEmail( const QString &email ) | 535 | Addressee::List AddressBook::findByEmail( const QString &email ) |
439 | { | 536 | { |
440 | Addressee::List results; | 537 | Addressee::List results; |
441 | QStringList mailList; | 538 | QStringList mailList; |
442 | 539 | ||
443 | Iterator it; | 540 | Iterator it; |
444 | for ( it = begin(); it != end(); ++it ) { | 541 | for ( it = begin(); it != end(); ++it ) { |
445 | mailList = (*it).emails(); | 542 | mailList = (*it).emails(); |
446 | for ( QStringList::Iterator ite = mailList.begin(); ite != mailList.end(); ++ite ) { | 543 | for ( QStringList::Iterator ite = mailList.begin(); ite != mailList.end(); ++ite ) { |
447 | if ( email == (*ite) ) { | 544 | if ( email == (*ite) ) { |
448 | results.append( *it ); | 545 | results.append( *it ); |
449 | } | 546 | } |
450 | } | 547 | } |
451 | } | 548 | } |
452 | 549 | ||
453 | return results; | 550 | return results; |
454 | } | 551 | } |
455 | 552 | ||
456 | Addressee::List AddressBook::findByCategory( const QString &category ) | 553 | Addressee::List AddressBook::findByCategory( const QString &category ) |
457 | { | 554 | { |
458 | Addressee::List results; | 555 | Addressee::List results; |
459 | 556 | ||
460 | Iterator it; | 557 | Iterator it; |
461 | for ( it = begin(); it != end(); ++it ) { | 558 | for ( it = begin(); it != end(); ++it ) { |
462 | if ( (*it).hasCategory( category) ) { | 559 | if ( (*it).hasCategory( category) ) { |
463 | results.append( *it ); | 560 | results.append( *it ); |
464 | } | 561 | } |
465 | } | 562 | } |
466 | 563 | ||
467 | return results; | 564 | return results; |
468 | } | 565 | } |
469 | 566 | ||
470 | void AddressBook::dump() const | 567 | void AddressBook::dump() const |
471 | { | 568 | { |
472 | kdDebug(5700) << "AddressBook::dump() --- begin ---" << endl; | 569 | kdDebug(5700) << "AddressBook::dump() --- begin ---" << endl; |
473 | 570 | ||
474 | ConstIterator it; | 571 | ConstIterator it; |
475 | for( it = begin(); it != end(); ++it ) { | 572 | for( it = begin(); it != end(); ++it ) { |
476 | (*it).dump(); | 573 | (*it).dump(); |
477 | } | 574 | } |
478 | 575 | ||
479 | kdDebug(5700) << "AddressBook::dump() --- end ---" << endl; | 576 | kdDebug(5700) << "AddressBook::dump() --- end ---" << endl; |
480 | } | 577 | } |
481 | 578 | ||
482 | QString AddressBook::identifier() | 579 | QString AddressBook::identifier() |
483 | { | 580 | { |
484 | QStringList identifier; | 581 | QStringList identifier; |
485 | 582 | ||
486 | 583 | ||
487 | KRES::Manager<Resource>::ActiveIterator it; | 584 | KRES::Manager<Resource>::ActiveIterator it; |
488 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { | 585 | for ( it = d->mManager->activeBegin(); it != d->mManager->activeEnd(); ++it ) { |
489 | if ( !(*it)->identifier().isEmpty() ) | 586 | if ( !(*it)->identifier().isEmpty() ) |
490 | identifier.append( (*it)->identifier() ); | 587 | identifier.append( (*it)->identifier() ); |
491 | } | 588 | } |
492 | 589 | ||
493 | return identifier.join( ":" ); | 590 | return identifier.join( ":" ); |
494 | } | 591 | } |
495 | 592 | ||
496 | Field::List AddressBook::fields( int category ) | 593 | Field::List AddressBook::fields( int category ) |
497 | { | 594 | { |
498 | if ( d->mAllFields.isEmpty() ) { | 595 | if ( d->mAllFields.isEmpty() ) { |
499 | d->mAllFields = Field::allFields(); | 596 | d->mAllFields = Field::allFields(); |
500 | } | 597 | } |
501 | 598 | ||
502 | if ( category == Field::All ) return d->mAllFields; | 599 | if ( category == Field::All ) return d->mAllFields; |
503 | 600 | ||
504 | Field::List result; | 601 | Field::List result; |
505 | Field::List::ConstIterator it; | 602 | Field::List::ConstIterator it; |
506 | for( it = d->mAllFields.begin(); it != d->mAllFields.end(); ++it ) { | 603 | for( it = d->mAllFields.begin(); it != d->mAllFields.end(); ++it ) { |
507 | if ( (*it)->category() & category ) result.append( *it ); | 604 | if ( (*it)->category() & category ) result.append( *it ); |
508 | } | 605 | } |
509 | 606 | ||
510 | return result; | 607 | return result; |
511 | } | 608 | } |
512 | 609 | ||
513 | bool AddressBook::addCustomField( const QString &label, int category, | 610 | bool AddressBook::addCustomField( const QString &label, int category, |
514 | const QString &key, const QString &app ) | 611 | const QString &key, const QString &app ) |
515 | { | 612 | { |
516 | if ( d->mAllFields.isEmpty() ) { | 613 | if ( d->mAllFields.isEmpty() ) { |
517 | d->mAllFields = Field::allFields(); | 614 | d->mAllFields = Field::allFields(); |
518 | } | 615 | } |
519 | //US QString a = app.isNull() ? KGlobal::instance()->instanceName() : app; | 616 | //US QString a = app.isNull() ? KGlobal::instance()->instanceName() : app; |
520 | QString a = app.isNull() ? KGlobal::getAppName() : app; | 617 | QString a = app.isNull() ? KGlobal::getAppName() : app; |
521 | 618 | ||
522 | QString k = key.isNull() ? label : key; | 619 | QString k = key.isNull() ? label : key; |
523 | 620 | ||
524 | Field *field = Field::createCustomField( label, category, k, a ); | 621 | Field *field = Field::createCustomField( label, category, k, a ); |
525 | 622 | ||
526 | if ( !field ) return false; | 623 | if ( !field ) return false; |
527 | 624 | ||
528 | d->mAllFields.append( field ); | 625 | d->mAllFields.append( field ); |
529 | 626 | ||
530 | return true; | 627 | return true; |
531 | } | 628 | } |
532 | 629 | ||
533 | QDataStream &KABC::operator<<( QDataStream &s, const AddressBook &ab ) | 630 | QDataStream &KABC::operator<<( QDataStream &s, const AddressBook &ab ) |
534 | { | 631 | { |
535 | if (!ab.d) return s; | 632 | if (!ab.d) return s; |
536 | 633 | ||
537 | return s << ab.d->mAddressees; | 634 | return s << ab.d->mAddressees; |
538 | } | 635 | } |
539 | 636 | ||
540 | QDataStream &KABC::operator>>( QDataStream &s, AddressBook &ab ) | 637 | QDataStream &KABC::operator>>( QDataStream &s, AddressBook &ab ) |
541 | { | 638 | { |
542 | if (!ab.d) return s; | 639 | if (!ab.d) return s; |
543 | 640 | ||
544 | s >> ab.d->mAddressees; | 641 | s >> ab.d->mAddressees; |
545 | 642 | ||
546 | return s; | 643 | return s; |
547 | } | 644 | } |
548 | 645 | ||
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index f89d7da..e43de31 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -1,327 +1,328 @@ | |||
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 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (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 | ||
39 | namespace KABC { | 39 | namespace KABC { |
40 | 40 | ||
41 | class ErrorHandler; | 41 | class ErrorHandler; |
42 | class Resource; | 42 | class Resource; |
43 | class Ticket; | 43 | class 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 | */ |
50 | class AddressBook : public QObject | 50 | class 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 | 145 | ||
145 | /** | 146 | /** |
146 | Returns a iterator for first entry of address book. | 147 | Returns a iterator for first entry of address book. |
147 | */ | 148 | */ |
148 | Iterator begin(); | 149 | Iterator begin(); |
149 | 150 | ||
150 | /** | 151 | /** |
151 | Returns a const iterator for first entry of address book. | 152 | Returns a const iterator for first entry of address book. |
152 | */ | 153 | */ |
153 | ConstIterator begin() const; | 154 | ConstIterator begin() const; |
154 | 155 | ||
155 | /** | 156 | /** |
156 | Returns a iterator for first entry of address book. | 157 | Returns a iterator for first entry of address book. |
157 | */ | 158 | */ |
158 | Iterator end(); | 159 | Iterator end(); |
159 | 160 | ||
160 | /** | 161 | /** |
161 | Returns a const iterator for first entry of address book. | 162 | Returns a const iterator for first entry of address book. |
162 | */ | 163 | */ |
163 | ConstIterator end() const; | 164 | ConstIterator end() const; |
164 | 165 | ||
165 | /** | 166 | /** |
166 | Removes all entries from address book. | 167 | Removes all entries from address book. |
167 | */ | 168 | */ |
168 | void clear(); | 169 | void clear(); |
169 | 170 | ||
170 | /** | 171 | /** |
171 | 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 |
172 | 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 |
173 | 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. |
174 | */ | 175 | */ |
175 | void insertAddressee( const Addressee & ); | 176 | void insertAddressee( const Addressee & ); |
176 | 177 | ||
177 | /** | 178 | /** |
178 | Removes entry from the address book. | 179 | Removes entry from the address book. |
179 | */ | 180 | */ |
180 | void removeAddressee( const Addressee & ); | 181 | void removeAddressee( const Addressee & ); |
181 | 182 | ||
182 | /** | 183 | /** |
183 | This is like @ref removeAddressee() just above, with the difference that | 184 | This is like @ref removeAddressee() just above, with the difference that |
184 | the first element is a iterator, returned by @ref begin(). | 185 | the first element is a iterator, returned by @ref begin(). |
185 | */ | 186 | */ |
186 | void removeAddressee( const Iterator & ); | 187 | void removeAddressee( const Iterator & ); |
187 | 188 | ||
188 | /** | 189 | /** |
189 | 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 |
190 | couldn't be found. | 191 | couldn't be found. |
191 | */ | 192 | */ |
192 | Iterator find( const Addressee & ); | 193 | Iterator find( const Addressee & ); |
193 | 194 | ||
194 | /** | 195 | /** |
195 | 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 |
196 | 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. |
197 | */ | 198 | */ |
198 | Addressee findByUid( const QString & ); | 199 | Addressee findByUid( const QString & ); |
199 | 200 | ||
200 | 201 | ||
201 | /** | 202 | /** |
202 | 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 |
203 | be sorted with @ref KABC::AddresseeList for example. | 204 | be sorted with @ref KABC::AddresseeList for example. |
204 | */ | 205 | */ |
205 | Addressee::List allAddressees(); | 206 | Addressee::List allAddressees(); |
206 | 207 | ||
207 | /** | 208 | /** |
208 | 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 |
209 | an empty list, if no entries could be found. | 210 | an empty list, if no entries could be found. |
210 | */ | 211 | */ |
211 | Addressee::List findByName( const QString & ); | 212 | Addressee::List findByName( const QString & ); |
212 | 213 | ||
213 | /** | 214 | /** |
214 | 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. |
215 | Returns an empty list, if no entries could be found. | 216 | Returns an empty list, if no entries could be found. |
216 | */ | 217 | */ |
217 | Addressee::List findByEmail( const QString & ); | 218 | Addressee::List findByEmail( const QString & ); |
218 | 219 | ||
219 | /** | 220 | /** |
220 | 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. |
221 | Returns an empty list, if no entries could be found. | 222 | Returns an empty list, if no entries could be found. |
222 | */ | 223 | */ |
223 | Addressee::List findByCategory( const QString & ); | 224 | Addressee::List findByCategory( const QString & ); |
224 | 225 | ||
225 | /** | 226 | /** |
226 | Return a string identifying this addressbook. | 227 | Return a string identifying this addressbook. |
227 | */ | 228 | */ |
228 | virtual QString identifier(); | 229 | virtual QString identifier(); |
229 | 230 | ||
230 | /** | 231 | /** |
231 | Used for debug output. | 232 | Used for debug output. |
232 | */ | 233 | */ |
233 | void dump() const; | 234 | void dump() const; |
234 | 235 | ||
235 | void emitAddressBookLocked() { emit addressBookLocked( this ); } | 236 | void emitAddressBookLocked() { emit addressBookLocked( this ); } |
236 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } | 237 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } |
237 | void emitAddressBookChanged() { emit addressBookChanged( this ); } | 238 | void emitAddressBookChanged() { emit addressBookChanged( this ); } |
238 | 239 | ||
239 | /** | 240 | /** |
240 | 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 |
241 | with the given field category. | 242 | with the given field category. |
242 | */ | 243 | */ |
243 | Field::List fields( int category = Field::All ); | 244 | Field::List fields( int category = Field::All ); |
244 | 245 | ||
245 | /** | 246 | /** |
246 | Add custom field to address book. | 247 | Add custom field to address book. |
247 | 248 | ||
248 | @param label User visible label of the field. | 249 | @param label User visible label of the field. |
249 | @param category Ored list of field categories. | 250 | @param category Ored list of field categories. |
250 | @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. |
251 | @param app String used as application key for reading and writing | 252 | @param app String used as application key for reading and writing |
252 | the field. | 253 | the field. |
253 | */ | 254 | */ |
254 | bool addCustomField( const QString &label, int category = Field::All, | 255 | bool addCustomField( const QString &label, int category = Field::All, |
255 | const QString &key = QString::null, | 256 | const QString &key = QString::null, |
256 | const QString &app = QString::null ); | 257 | const QString &app = QString::null ); |
257 | 258 | ||
258 | 259 | ||
259 | /** | 260 | /** |
260 | Add address book resource. | 261 | Add address book resource. |
261 | */ | 262 | */ |
262 | bool addResource( Resource * ); | 263 | bool addResource( Resource * ); |
263 | 264 | ||
264 | /** | 265 | /** |
265 | Remove address book resource. | 266 | Remove address book resource. |
266 | */ | 267 | */ |
267 | bool removeResource( Resource * ); | 268 | bool removeResource( Resource * ); |
268 | 269 | ||
269 | /** | 270 | /** |
270 | Return pointer list of all resources. | 271 | Return pointer list of all resources. |
271 | */ | 272 | */ |
272 | QPtrList<Resource> resources(); | 273 | QPtrList<Resource> resources(); |
273 | 274 | ||
274 | /** | 275 | /** |
275 | Set the @p ErrorHandler, that is used by @ref error() to | 276 | Set the @p ErrorHandler, that is used by @ref error() to |
276 | provide gui-independend error messages. | 277 | provide gui-independend error messages. |
277 | */ | 278 | */ |
278 | void setErrorHandler( ErrorHandler * ); | 279 | void setErrorHandler( ErrorHandler * ); |
279 | 280 | ||
280 | /** | 281 | /** |
281 | Shows gui independend error messages. | 282 | Shows gui independend error messages. |
282 | */ | 283 | */ |
283 | void error( const QString& ); | 284 | void error( const QString& ); |
284 | 285 | ||
285 | /** | 286 | /** |
286 | Query all resources to clean up their lock files | 287 | Query all resources to clean up their lock files |
287 | */ | 288 | */ |
288 | void cleanUp(); | 289 | void cleanUp(); |
289 | 290 | ||
290 | signals: | 291 | signals: |
291 | /** | 292 | /** |
292 | Emitted, when the address book has changed on disk. | 293 | Emitted, when the address book has changed on disk. |
293 | */ | 294 | */ |
294 | void addressBookChanged( AddressBook * ); | 295 | void addressBookChanged( AddressBook * ); |
295 | 296 | ||
296 | /** | 297 | /** |
297 | Emitted, when the address book has been locked for writing. | 298 | Emitted, when the address book has been locked for writing. |
298 | */ | 299 | */ |
299 | void addressBookLocked( AddressBook * ); | 300 | void addressBookLocked( AddressBook * ); |
300 | 301 | ||
301 | /** | 302 | /** |
302 | Emitted, when the address book has been unlocked. | 303 | Emitted, when the address book has been unlocked. |
303 | */ | 304 | */ |
304 | void addressBookUnlocked( AddressBook * ); | 305 | void addressBookUnlocked( AddressBook * ); |
305 | 306 | ||
306 | protected: | 307 | protected: |
307 | void deleteRemovedAddressees(); | 308 | void deleteRemovedAddressees(); |
308 | void setStandardResource( Resource * ); | 309 | void setStandardResource( Resource * ); |
309 | Resource *standardResource(); | 310 | Resource *standardResource(); |
310 | KRES::Manager<Resource> *resourceManager(); | 311 | KRES::Manager<Resource> *resourceManager(); |
311 | 312 | ||
312 | void init(const QString &config, const QString &family); | 313 | void init(const QString &config, const QString &family); |
313 | 314 | ||
314 | private: | 315 | private: |
315 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 | 316 | //US QPtrList<Resource> mDummy; // Remove in KDE 4 |
316 | 317 | ||
317 | 318 | ||
318 | struct AddressBookData; | 319 | struct AddressBookData; |
319 | AddressBookData *d; | 320 | AddressBookData *d; |
320 | }; | 321 | }; |
321 | 322 | ||
322 | QDataStream &operator<<( QDataStream &, const AddressBook & ); | 323 | QDataStream &operator<<( QDataStream &, const AddressBook & ); |
323 | QDataStream &operator>>( QDataStream &, AddressBook & ); | 324 | QDataStream &operator>>( QDataStream &, AddressBook & ); |
324 | 325 | ||
325 | } | 326 | } |
326 | 327 | ||
327 | #endif | 328 | #endif |