-rw-r--r-- | kabc/addressbook.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index cc755d1..df9048b 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -53,195 +53,197 @@ class AddressBook : public QObject | |||
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 | bool saveABphone( QString fileName ); | 145 | bool saveABphone( QString fileName ); |
146 | void smplifyAddressees(); | 146 | void smplifyAddressees(); |
147 | void preparePhoneSync( QString currentSyncDevice, bool isPreSync ); | 147 | void preparePhoneSync( QString currentSyncDevice, bool isPreSync ); |
148 | void export2File( QString fileName ); | 148 | void export2File( QString fileName ); |
149 | bool export2PhoneFormat( QStringList uids ,QString fileName ); | ||
149 | void importFromFile( QString fileName, bool replaceLabel = false, bool removeOld = false ); | 150 | void importFromFile( QString fileName, bool replaceLabel = false, bool removeOld = false ); |
150 | void setUntagged(); | 151 | void setUntagged(); |
151 | void removeUntagged(); | 152 | void removeUntagged(); |
153 | void findNewExtIds( QString fileName, QString currentSyncDevice ); | ||
152 | /** | 154 | /** |
153 | Returns a iterator for first entry of address book. | 155 | Returns a iterator for first entry of address book. |
154 | */ | 156 | */ |
155 | Iterator begin(); | 157 | Iterator begin(); |
156 | 158 | ||
157 | /** | 159 | /** |
158 | Returns a const iterator for first entry of address book. | 160 | Returns a const iterator for first entry of address book. |
159 | */ | 161 | */ |
160 | ConstIterator begin() const; | 162 | ConstIterator begin() const; |
161 | 163 | ||
162 | /** | 164 | /** |
163 | Returns a iterator for first entry of address book. | 165 | Returns a iterator for first entry of address book. |
164 | */ | 166 | */ |
165 | Iterator end(); | 167 | Iterator end(); |
166 | 168 | ||
167 | /** | 169 | /** |
168 | Returns a const iterator for first entry of address book. | 170 | Returns a const iterator for first entry of address book. |
169 | */ | 171 | */ |
170 | ConstIterator end() const; | 172 | ConstIterator end() const; |
171 | 173 | ||
172 | /** | 174 | /** |
173 | Removes all entries from address book. | 175 | Removes all entries from address book. |
174 | */ | 176 | */ |
175 | void clear(); | 177 | void clear(); |
176 | 178 | ||
177 | /** | 179 | /** |
178 | Insert an Addressee object into address book. If an object with the same | 180 | Insert an Addressee object into address book. If an object with the same |
179 | unique id already exists in the address book it it replaced by the new | 181 | unique id already exists in the address book it it replaced by the new |
180 | one. If not the new object is appended to the address book. | 182 | one. If not the new object is appended to the address book. |
181 | */ | 183 | */ |
182 | void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); | 184 | void insertAddressee( const Addressee &, bool setRev = true, bool takeResource = false); |
183 | 185 | ||
184 | /** | 186 | /** |
185 | Removes entry from the address book. | 187 | Removes entry from the address book. |
186 | */ | 188 | */ |
187 | void removeAddressee( const Addressee & ); | 189 | void removeAddressee( const Addressee & ); |
188 | 190 | ||
189 | /** | 191 | /** |
190 | This is like @ref removeAddressee() just above, with the difference that | 192 | This is like @ref removeAddressee() just above, with the difference that |
191 | the first element is a iterator, returned by @ref begin(). | 193 | the first element is a iterator, returned by @ref begin(). |
192 | */ | 194 | */ |
193 | void removeAddressee( const Iterator & ); | 195 | void removeAddressee( const Iterator & ); |
194 | 196 | ||
195 | /** | 197 | /** |
196 | Find the specified entry in address book. Returns end(), if the entry | 198 | Find the specified entry in address book. Returns end(), if the entry |
197 | couldn't be found. | 199 | couldn't be found. |
198 | */ | 200 | */ |
199 | Iterator find( const Addressee & ); | 201 | Iterator find( const Addressee & ); |
200 | 202 | ||
201 | /** | 203 | /** |
202 | Find the entry specified by an unique id. Returns an empty Addressee | 204 | Find the entry specified by an unique id. Returns an empty Addressee |
203 | object, if the address book does not contain an entry with this id. | 205 | object, if the address book does not contain an entry with this id. |
204 | */ | 206 | */ |
205 | Addressee findByUid( const QString & ); | 207 | Addressee findByUid( const QString & ); |
206 | 208 | ||
207 | 209 | ||
208 | /** | 210 | /** |
209 | Returns a list of all addressees in the address book. This list can | 211 | Returns a list of all addressees in the address book. This list can |
210 | be sorted with @ref KABC::AddresseeList for example. | 212 | be sorted with @ref KABC::AddresseeList for example. |
211 | */ | 213 | */ |
212 | Addressee::List allAddressees(); | 214 | Addressee::List allAddressees(); |
213 | 215 | ||
214 | /** | 216 | /** |
215 | Find all entries with the specified name in the address book. Returns | 217 | Find all entries with the specified name in the address book. Returns |
216 | an empty list, if no entries could be found. | 218 | an empty list, if no entries could be found. |
217 | */ | 219 | */ |
218 | Addressee::List findByName( const QString & ); | 220 | Addressee::List findByName( const QString & ); |
219 | 221 | ||
220 | /** | 222 | /** |
221 | Find all entries with the specified email address in the address book. | 223 | Find all entries with the specified email address in the address book. |
222 | Returns an empty list, if no entries could be found. | 224 | Returns an empty list, if no entries could be found. |
223 | */ | 225 | */ |
224 | Addressee::List findByEmail( const QString & ); | 226 | Addressee::List findByEmail( const QString & ); |
225 | 227 | ||
226 | /** | 228 | /** |
227 | Find all entries wich have the specified category in the address book. | 229 | Find all entries wich have the specified category in the address book. |
228 | Returns an empty list, if no entries could be found. | 230 | Returns an empty list, if no entries could be found. |
229 | */ | 231 | */ |
230 | Addressee::List findByCategory( const QString & ); | 232 | Addressee::List findByCategory( const QString & ); |
231 | 233 | ||
232 | /** | 234 | /** |
233 | Return a string identifying this addressbook. | 235 | Return a string identifying this addressbook. |
234 | */ | 236 | */ |
235 | virtual QString identifier(); | 237 | virtual QString identifier(); |
236 | 238 | ||
237 | /** | 239 | /** |
238 | Used for debug output. | 240 | Used for debug output. |
239 | */ | 241 | */ |
240 | void dump() const; | 242 | void dump() const; |
241 | 243 | ||
242 | void emitAddressBookLocked() { emit addressBookLocked( this ); } | 244 | void emitAddressBookLocked() { emit addressBookLocked( this ); } |
243 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } | 245 | void emitAddressBookUnlocked() { emit addressBookUnlocked( this ); } |
244 | void emitAddressBookChanged() { emit addressBookChanged( this ); } | 246 | void emitAddressBookChanged() { emit addressBookChanged( this ); } |
245 | 247 | ||
246 | /** | 248 | /** |
247 | Return list of all Fields known to the address book which are associated | 249 | Return list of all Fields known to the address book which are associated |