-rw-r--r-- | kabc/stdaddressbook.cpp | 27 | ||||
-rw-r--r-- | kabc/stdaddressbook.h | 2 | ||||
-rw-r--r-- | kaddressbook/kabcore.cpp | 2 |
3 files changed, 27 insertions, 4 deletions
diff --git a/kabc/stdaddressbook.cpp b/kabc/stdaddressbook.cpp index a14ae20..43d9fde 100644 --- a/kabc/stdaddressbook.cpp +++ b/kabc/stdaddressbook.cpp | |||
@@ -1,230 +1,251 @@ | |||
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 | #include <qdir.h> | 28 | #include <qdir.h> |
29 | #include "resource.h" | 29 | #include "resource.h" |
30 | #include <kresources/manager.h> | 30 | #include <kresources/manager.h> |
31 | #include <kdebug.h> | 31 | #include <kdebug.h> |
32 | #include <klocale.h> | 32 | #include <klocale.h> |
33 | #include <kstaticdeleter.h> | 33 | #include <kstaticdeleter.h> |
34 | #include <kstandarddirs.h> | 34 | #include <kstandarddirs.h> |
35 | 35 | ||
36 | #include "stdaddressbook.h" | 36 | #include "stdaddressbook.h" |
37 | 37 | ||
38 | using namespace KABC; | 38 | using namespace KABC; |
39 | 39 | ||
40 | StdAddressBook *StdAddressBook::mSelf = 0; | 40 | StdAddressBook *StdAddressBook::mSelf = 0; |
41 | bool StdAddressBook::mAutomaticSave = false; | 41 | bool StdAddressBook::mAutomaticSave = false; |
42 | 42 | ||
43 | static KStaticDeleter<StdAddressBook> addressBookDeleter; | 43 | static KStaticDeleter<StdAddressBook> addressBookDeleter; |
44 | 44 | ||
45 | QString StdAddressBook::fileName() | 45 | QString StdAddressBook::fileName() |
46 | { | 46 | { |
47 | return locateLocal( "data", "kabc/std.vcf" ); | 47 | return locateLocal( "data", "kabc/std.vcf" ); |
48 | } | 48 | } |
49 | 49 | ||
50 | QString StdAddressBook::directoryName() | 50 | QString StdAddressBook::directoryName() |
51 | { | 51 | { |
52 | return locateLocal( "data", "kabc/stdvcf" ); | 52 | return locateLocal( "data", "kabc/stdvcf" ); |
53 | } | 53 | } |
54 | 54 | ||
55 | void StdAddressBook::handleCrash() | 55 | void StdAddressBook::handleCrash() |
56 | { | 56 | { |
57 | StdAddressBook::self()->cleanUp(); | 57 | StdAddressBook::self()->cleanUp(); |
58 | } | 58 | } |
59 | StdAddressBook *StdAddressBook::selfNoLoad() | ||
60 | { | ||
61 | |||
62 | if ( !mSelf ) | ||
63 | { | ||
64 | QString appdir = StdAddressBook::setTempAppDir(); | ||
65 | // US im am not sure why I have to use the other format here?? | ||
66 | #ifdef KAB_EMBEDDED | ||
67 | mSelf = addressBookDeleter.setObject( new StdAddressBook ( QString() ) ); | ||
68 | #else //KAB_EMBEDDED | ||
69 | addressBookDeleter.setObject( mSelf, new StdAddressBook( QString() ) ); | ||
70 | #endif //KAB_EMBEDDED | ||
71 | KStandardDirs::setAppDir( appdir ); | ||
72 | } | ||
73 | |||
74 | return mSelf; | ||
75 | } | ||
59 | 76 | ||
60 | StdAddressBook *StdAddressBook::self() | 77 | StdAddressBook *StdAddressBook::self() |
61 | { | 78 | { |
62 | 79 | ||
63 | if ( !mSelf ) | 80 | if ( !mSelf ) |
64 | { | 81 | { |
65 | QString appdir = StdAddressBook::setTempAppDir(); | 82 | QString appdir = StdAddressBook::setTempAppDir(); |
66 | // US im am not sure why I have to use the other format here?? | 83 | // US im am not sure why I have to use the other format here?? |
67 | #ifdef KAB_EMBEDDED | 84 | #ifdef KAB_EMBEDDED |
68 | mSelf = addressBookDeleter.setObject( new StdAddressBook ); | 85 | mSelf = addressBookDeleter.setObject( new StdAddressBook ); |
69 | #else //KAB_EMBEDDED | 86 | #else //KAB_EMBEDDED |
70 | addressBookDeleter.setObject( mSelf, new StdAddressBook ); | 87 | addressBookDeleter.setObject( mSelf, new StdAddressBook ); |
71 | #endif //KAB_EMBEDDED | 88 | #endif //KAB_EMBEDDED |
72 | KStandardDirs::setAppDir( appdir ); | 89 | KStandardDirs::setAppDir( appdir ); |
73 | } | 90 | } |
74 | 91 | ||
75 | return mSelf; | 92 | return mSelf; |
76 | } | 93 | } |
77 | 94 | ||
78 | QString StdAddressBook::setTempAppDir() | 95 | QString StdAddressBook::setTempAppDir() |
79 | { | 96 | { |
80 | QString appDIR = KStandardDirs::appDir(); | 97 | QString appDIR = KStandardDirs::appDir(); |
81 | #ifdef DESKTOP_VERSION | 98 | #ifdef DESKTOP_VERSION |
82 | QString appdir = QDir::homeDirPath(); | 99 | QString appdir = QDir::homeDirPath(); |
83 | if ( appdir.right(1) == "\\" || appdir.right(1) == "/" ) | 100 | if ( appdir.right(1) == "\\" || appdir.right(1) == "/" ) |
84 | appdir += "kaddressbook/"; | 101 | appdir += "kaddressbook/"; |
85 | else | 102 | else |
86 | appdir += "/kaddressbook/"; | 103 | appdir += "/kaddressbook/"; |
87 | KStandardDirs::setAppDir( QDir::convertSeparators( appdir )); | 104 | KStandardDirs::setAppDir( QDir::convertSeparators( appdir )); |
88 | #else | 105 | #else |
89 | QString appdir = QDir::homeDirPath() + "/kdepim/apps/kaddressbook"; | 106 | QString appdir = QDir::homeDirPath() + "/kdepim/apps/kaddressbook"; |
90 | 107 | ||
91 | KStandardDirs::setAppDir( appdir ); | 108 | KStandardDirs::setAppDir( appdir ); |
92 | #endif | 109 | #endif |
93 | 110 | ||
94 | return appDIR; | 111 | return appDIR; |
95 | } | 112 | } |
96 | StdAddressBook *StdAddressBook::self( bool onlyFastResources ) | 113 | StdAddressBook *StdAddressBook::self( bool onlyFastResources ) |
97 | { | 114 | { |
98 | 115 | ||
99 | if ( !mSelf ) | 116 | if ( !mSelf ) |
100 | { | 117 | { |
101 | QString appdir =StdAddressBook::setTempAppDir(); | 118 | QString appdir =StdAddressBook::setTempAppDir(); |
102 | #ifdef KAB_EMBEDDED | 119 | #ifdef KAB_EMBEDDED |
103 | mSelf = addressBookDeleter.setObject( new StdAddressBook( onlyFastResources ) ); | 120 | mSelf = addressBookDeleter.setObject( new StdAddressBook( onlyFastResources ) ); |
104 | #else //KAB_EMBEDDED | 121 | #else //KAB_EMBEDDED |
105 | addressBookDeleter.setObject( mSelf, new StdAddressBook( onlyFastResources ) ); | 122 | addressBookDeleter.setObject( mSelf, new StdAddressBook( onlyFastResources ) ); |
106 | #endif //KAB_EMBEDDED | 123 | #endif //KAB_EMBEDDED |
107 | KStandardDirs::setAppDir( appdir ); | 124 | KStandardDirs::setAppDir( appdir ); |
108 | } | 125 | } |
109 | return mSelf; | 126 | return mSelf; |
110 | } | 127 | } |
128 | StdAddressBook::StdAddressBook( QString ) | ||
129 | : AddressBook( "kabcrc" ) | ||
130 | { | ||
131 | |||
132 | } | ||
111 | 133 | ||
112 | StdAddressBook::StdAddressBook() | 134 | StdAddressBook::StdAddressBook() |
113 | : AddressBook( "kabcrc" ) | 135 | : AddressBook( "kabcrc" ) |
114 | { | 136 | { |
115 | 137 | ||
116 | //init( false ); | 138 | init( false ); |
117 | } | 139 | } |
118 | 140 | ||
119 | StdAddressBook::StdAddressBook( bool onlyFastResources ) | 141 | StdAddressBook::StdAddressBook( bool onlyFastResources ) |
120 | : AddressBook( "kabcrc" ) | 142 | : AddressBook( "kabcrc" ) |
121 | { | 143 | { |
122 | 144 | ||
123 | if ( onlyFastResources ) | 145 | init( onlyFastResources ); |
124 | init( onlyFastResources ); | ||
125 | } | 146 | } |
126 | 147 | ||
127 | StdAddressBook::~StdAddressBook() | 148 | StdAddressBook::~StdAddressBook() |
128 | { | 149 | { |
129 | if ( mAutomaticSave ) | 150 | if ( mAutomaticSave ) |
130 | save(); | 151 | save(); |
131 | } | 152 | } |
132 | 153 | ||
133 | void StdAddressBook::init( bool ) | 154 | void StdAddressBook::init( bool ) |
134 | { | 155 | { |
135 | KRES::Manager<Resource> *manager = resourceManager(); | 156 | KRES::Manager<Resource> *manager = resourceManager(); |
136 | KRES::Manager<Resource>::ActiveIterator it; | 157 | KRES::Manager<Resource>::ActiveIterator it; |
137 | 158 | ||
138 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 159 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
139 | (*it)->setAddressBook( this ); | 160 | (*it)->setAddressBook( this ); |
140 | if ( !(*it)->open() ) | 161 | if ( !(*it)->open() ) |
141 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); | 162 | error( QString( "Unable to open resource '%1'!" ).arg( (*it)->resourceName() ) ); |
142 | } | 163 | } |
143 | 164 | ||
144 | Resource *res = standardResource(); | 165 | Resource *res = standardResource(); |
145 | if ( !res ) { | 166 | if ( !res ) { |
146 | res = manager->createResource( "file" ); | 167 | res = manager->createResource( "file" ); |
147 | if ( res ) | 168 | if ( res ) |
148 | { | 169 | { |
149 | addResource( res ); | 170 | addResource( res ); |
150 | } | 171 | } |
151 | else | 172 | else |
152 | qDebug(" No resource available!!!"); | 173 | qDebug(" No resource available!!!"); |
153 | } | 174 | } |
154 | 175 | ||
155 | setStandardResource( res ); | 176 | setStandardResource( res ); |
156 | manager->writeConfig(); | 177 | manager->writeConfig(); |
157 | 178 | ||
158 | load(); | 179 | load(); |
159 | } | 180 | } |
160 | 181 | ||
161 | bool StdAddressBook::save() | 182 | bool StdAddressBook::save() |
162 | { | 183 | { |
163 | kdDebug(5700) << "StdAddressBook::save()" << endl; | 184 | kdDebug(5700) << "StdAddressBook::save()" << endl; |
164 | 185 | ||
165 | bool ok = true; | 186 | bool ok = true; |
166 | AddressBook *ab = self(); | 187 | AddressBook *ab = self(); |
167 | 188 | ||
168 | ab->deleteRemovedAddressees(); | 189 | ab->deleteRemovedAddressees(); |
169 | Iterator ait; | 190 | Iterator ait; |
170 | for ( ait = ab->begin(); ait != ab->end(); ++ait ) { | 191 | for ( ait = ab->begin(); ait != ab->end(); ++ait ) { |
171 | if ( !(*ait).IDStr().isEmpty() ) { | 192 | if ( !(*ait).IDStr().isEmpty() ) { |
172 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); | 193 | (*ait).insertCustom( "KADDRESSBOOK", "X-ExternalID", (*ait).IDStr() ); |
173 | } | 194 | } |
174 | } | 195 | } |
175 | KRES::Manager<Resource>::ActiveIterator it; | 196 | KRES::Manager<Resource>::ActiveIterator it; |
176 | KRES::Manager<Resource> *manager = ab->resourceManager(); | 197 | KRES::Manager<Resource> *manager = ab->resourceManager(); |
177 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { | 198 | for ( it = manager->activeBegin(); it != manager->activeEnd(); ++it ) { |
178 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { | 199 | if ( !(*it)->readOnly() && (*it)->isOpen() ) { |
179 | Ticket *ticket = ab->requestSaveTicket( *it ); | 200 | Ticket *ticket = ab->requestSaveTicket( *it ); |
180 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); | 201 | // qDebug("StdAddressBook::save '%s'", (*it)->resourceName().latin1() ); |
181 | if ( !ticket ) { | 202 | if ( !ticket ) { |
182 | ab->error( i18n( "Unable to save to resource '%1'. It is locked." ) | 203 | ab->error( i18n( "Unable to save to resource '%1'. It is locked." ) |
183 | .arg( (*it)->resourceName() ) ); | 204 | .arg( (*it)->resourceName() ) ); |
184 | return false; | 205 | return false; |
185 | } | 206 | } |
186 | 207 | ||
187 | if ( !ab->save( ticket ) ) | 208 | if ( !ab->save( ticket ) ) |
188 | ok = false; | 209 | ok = false; |
189 | } | 210 | } |
190 | } | 211 | } |
191 | 212 | ||
192 | return ok; | 213 | return ok; |
193 | } | 214 | } |
194 | 215 | ||
195 | void StdAddressBook::close() | 216 | void StdAddressBook::close() |
196 | { | 217 | { |
197 | //US destructObject is not defined on my system???. Is setObject(0) the same ??? | 218 | //US destructObject is not defined on my system???. Is setObject(0) the same ??? |
198 | //US addressBookDeleter.destructObject(); | 219 | //US addressBookDeleter.destructObject(); |
199 | addressBookDeleter.setObject(0); | 220 | addressBookDeleter.setObject(0); |
200 | 221 | ||
201 | } | 222 | } |
202 | 223 | ||
203 | void StdAddressBook::setAutomaticSave( bool enable ) | 224 | void StdAddressBook::setAutomaticSave( bool enable ) |
204 | { | 225 | { |
205 | mAutomaticSave = enable; | 226 | mAutomaticSave = enable; |
206 | } | 227 | } |
207 | 228 | ||
208 | bool StdAddressBook::automaticSave() | 229 | bool StdAddressBook::automaticSave() |
209 | { | 230 | { |
210 | return mAutomaticSave; | 231 | return mAutomaticSave; |
211 | } | 232 | } |
212 | 233 | ||
213 | // should get const for 4.X | 234 | // should get const for 4.X |
214 | Addressee StdAddressBook::whoAmI() | 235 | Addressee StdAddressBook::whoAmI() |
215 | { | 236 | { |
216 | //US KConfig config( "kabcrc" ); | 237 | //US KConfig config( "kabcrc" ); |
217 | KConfig config( locateLocal("config", "kabcrc") ); | 238 | KConfig config( locateLocal("config", "kabcrc") ); |
218 | config.setGroup( "General" ); | 239 | config.setGroup( "General" ); |
219 | 240 | ||
220 | return findByUid( config.readEntry( "WhoAmI" ) ); | 241 | return findByUid( config.readEntry( "WhoAmI" ) ); |
221 | } | 242 | } |
222 | 243 | ||
223 | void StdAddressBook::setWhoAmI( const Addressee &addr ) | 244 | void StdAddressBook::setWhoAmI( const Addressee &addr ) |
224 | { | 245 | { |
225 | //US KConfig config( "kabcrc" ); | 246 | //US KConfig config( "kabcrc" ); |
226 | KConfig config( locateLocal("config", "kabcrc") ); | 247 | KConfig config( locateLocal("config", "kabcrc") ); |
227 | config.setGroup( "General" ); | 248 | config.setGroup( "General" ); |
228 | 249 | ||
229 | config.writeEntry( "WhoAmI", addr.uid() ); | 250 | config.writeEntry( "WhoAmI", addr.uid() ); |
230 | } | 251 | } |
diff --git a/kabc/stdaddressbook.h b/kabc/stdaddressbook.h index cf130b3..3cd6363 100644 --- a/kabc/stdaddressbook.h +++ b/kabc/stdaddressbook.h | |||
@@ -1,151 +1,153 @@ | |||
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_STDADDRESSBOOK_H | 28 | #ifndef KABC_STDADDRESSBOOK_H |
29 | #define KABC_STDADDRESSBOOK_H | 29 | #define KABC_STDADDRESSBOOK_H |
30 | 30 | ||
31 | #include "addressbook.h" | 31 | #include "addressbook.h" |
32 | 32 | ||
33 | namespace KABC { | 33 | namespace KABC { |
34 | 34 | ||
35 | /** | 35 | /** |
36 | Standard KDE address book | 36 | Standard KDE address book |
37 | 37 | ||
38 | This class provides access to the standard KDE address book shared by all | 38 | This class provides access to the standard KDE address book shared by all |
39 | applications. | 39 | applications. |
40 | 40 | ||
41 | It's implemented as a singleton. Use @ref self() to get the address book | 41 | It's implemented as a singleton. Use @ref self() to get the address book |
42 | object. On the first self() call the address book also gets loaded. | 42 | object. On the first self() call the address book also gets loaded. |
43 | 43 | ||
44 | Example: | 44 | Example: |
45 | 45 | ||
46 | <pre> | 46 | <pre> |
47 | KABC::AddressBook *ab = KABC::StdAddressBook::self(); | 47 | KABC::AddressBook *ab = KABC::StdAddressBook::self(); |
48 | 48 | ||
49 | KABC::AddressBook::Iterator it; | 49 | KABC::AddressBook::Iterator it; |
50 | for ( it = ab->begin(); it != ab->end(); ++it ) { | 50 | for ( it = ab->begin(); it != ab->end(); ++it ) { |
51 | kdDebug() << "UID=" << (*it).uid() << endl; | 51 | kdDebug() << "UID=" << (*it).uid() << endl; |
52 | 52 | ||
53 | // do some other stuff | 53 | // do some other stuff |
54 | } | 54 | } |
55 | 55 | ||
56 | KABC::StdAddressBook::save(); | 56 | KABC::StdAddressBook::save(); |
57 | </pre> | 57 | </pre> |
58 | */ | 58 | */ |
59 | class StdAddressBook : public AddressBook | 59 | class StdAddressBook : public AddressBook |
60 | { | 60 | { |
61 | public: | 61 | public: |
62 | 62 | ||
63 | /** | 63 | /** |
64 | Destructor. | 64 | Destructor. |
65 | */ | 65 | */ |
66 | ~StdAddressBook(); | 66 | ~StdAddressBook(); |
67 | 67 | ||
68 | /** | 68 | /** |
69 | Return the standard addressbook object. It also loads slow resources. | 69 | Return the standard addressbook object. It also loads slow resources. |
70 | It is the same as self(false); . | 70 | It is the same as self(false); . |
71 | */ | 71 | */ |
72 | static StdAddressBook *self(); | 72 | static StdAddressBook *self(); |
73 | static StdAddressBook *selfNoLoad(); | ||
73 | 74 | ||
74 | /** | 75 | /** |
75 | This is the same as above, but with specified | 76 | This is the same as above, but with specified |
76 | behaviour of resource loading. | 77 | behaviour of resource loading. |
77 | 78 | ||
78 | @param onlyFastResource Only resources marked as 'fast' should be loaded | 79 | @param onlyFastResource Only resources marked as 'fast' should be loaded |
79 | */ | 80 | */ |
80 | // FIXME for KDE4 return StdAddressBook and merge with the metod above -zecke | 81 | // FIXME for KDE4 return StdAddressBook and merge with the metod above -zecke |
81 | static StdAddressBook *self( bool onlyFastResources ); | 82 | static StdAddressBook *self( bool onlyFastResources ); |
82 | 83 | ||
83 | /** | 84 | /** |
84 | Save the standard address book to disk. | 85 | Save the standard address book to disk. |
85 | */ | 86 | */ |
86 | static bool save(); | 87 | static bool save(); |
87 | 88 | ||
88 | /** | 89 | /** |
89 | Call this method in your crash handler to allow the library clean up | 90 | Call this method in your crash handler to allow the library clean up |
90 | possible locks. | 91 | possible locks. |
91 | */ | 92 | */ |
92 | static void handleCrash(); | 93 | static void handleCrash(); |
93 | 94 | ||
94 | /** | 95 | /** |
95 | Returns the default file name for vcard-based addressbook | 96 | Returns the default file name for vcard-based addressbook |
96 | */ | 97 | */ |
97 | static QString fileName(); | 98 | static QString fileName(); |
98 | 99 | ||
99 | /** | 100 | /** |
100 | Returns the default directory name for vcard-based addressbook | 101 | Returns the default directory name for vcard-based addressbook |
101 | */ | 102 | */ |
102 | static QString directoryName(); | 103 | static QString directoryName(); |
103 | 104 | ||
104 | /** | 105 | /** |
105 | Set the automatic save property of the address book. | 106 | Set the automatic save property of the address book. |
106 | If @p enable is TRUE (default) the address book is saved at | 107 | If @p enable is TRUE (default) the address book is saved at |
107 | destruction time otherwise you have to call @ref save() to | 108 | destruction time otherwise you have to call @ref save() to |
108 | explicitely save it. | 109 | explicitely save it. |
109 | */ | 110 | */ |
110 | static void setAutomaticSave( bool enable ); | 111 | static void setAutomaticSave( bool enable ); |
111 | 112 | ||
112 | /** | 113 | /** |
113 | Closes the address book. Depending on @ref automaticSave() it will | 114 | Closes the address book. Depending on @ref automaticSave() it will |
114 | save the address book first. | 115 | save the address book first. |
115 | */ | 116 | */ |
116 | static void close(); | 117 | static void close(); |
117 | 118 | ||
118 | /** | 119 | /** |
119 | Returns whether the address book is saved at destruction time. | 120 | Returns whether the address book is saved at destruction time. |
120 | See also @ref setAutomaticSave(). | 121 | See also @ref setAutomaticSave(). |
121 | */ | 122 | */ |
122 | static bool automaticSave(); | 123 | static bool automaticSave(); |
123 | 124 | ||
124 | /** | 125 | /** |
125 | Returns the contact, that is associated with the owner of the | 126 | Returns the contact, that is associated with the owner of the |
126 | address book. This contact should be used by other programs | 127 | address book. This contact should be used by other programs |
127 | to access user specific data. | 128 | to access user specific data. |
128 | */ | 129 | */ |
129 | Addressee whoAmI(); | 130 | Addressee whoAmI(); |
130 | 131 | ||
131 | /** | 132 | /** |
132 | Sets the users contact. See @ref whoAmI() for more information. | 133 | Sets the users contact. See @ref whoAmI() for more information. |
133 | 134 | ||
134 | @param uid The uid of the users contact. | 135 | @param uid The uid of the users contact. |
135 | */ | 136 | */ |
136 | void setWhoAmI( const Addressee &addr ); | 137 | void setWhoAmI( const Addressee &addr ); |
137 | void init( bool onlyFastResources ); | 138 | void init( bool onlyFastResources ); |
138 | 139 | ||
139 | protected: | 140 | protected: |
140 | StdAddressBook(); | 141 | StdAddressBook(); |
142 | StdAddressBook( QString ); | ||
141 | StdAddressBook( bool onlyFastResources ); | 143 | StdAddressBook( bool onlyFastResources ); |
142 | 144 | ||
143 | 145 | ||
144 | private: | 146 | private: |
145 | static QString setTempAppDir(); | 147 | static QString setTempAppDir(); |
146 | static StdAddressBook *mSelf; | 148 | static StdAddressBook *mSelf; |
147 | static bool mAutomaticSave; | 149 | static bool mAutomaticSave; |
148 | }; | 150 | }; |
149 | 151 | ||
150 | } | 152 | } |
151 | #endif | 153 | #endif |
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index c670b1f..77321aa 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -114,385 +114,385 @@ $Id$ | |||
114 | #endif // KAB_EMBEDDED | 114 | #endif // KAB_EMBEDDED |
115 | #include "kcmconfigs/kcmkabconfig.h" | 115 | #include "kcmconfigs/kcmkabconfig.h" |
116 | #include "kcmconfigs/kcmkdepimconfig.h" | 116 | #include "kcmconfigs/kcmkdepimconfig.h" |
117 | #include "kpimglobalprefs.h" | 117 | #include "kpimglobalprefs.h" |
118 | #include "externalapphandler.h" | 118 | #include "externalapphandler.h" |
119 | #include "xxportselectdialog.h" | 119 | #include "xxportselectdialog.h" |
120 | 120 | ||
121 | 121 | ||
122 | #include <kresources/selectdialog.h> | 122 | #include <kresources/selectdialog.h> |
123 | #include <kmessagebox.h> | 123 | #include <kmessagebox.h> |
124 | 124 | ||
125 | #include <picture.h> | 125 | #include <picture.h> |
126 | #include <resource.h> | 126 | #include <resource.h> |
127 | 127 | ||
128 | //US#include <qsplitter.h> | 128 | //US#include <qsplitter.h> |
129 | #include <qmap.h> | 129 | #include <qmap.h> |
130 | #include <qdir.h> | 130 | #include <qdir.h> |
131 | #include <qfile.h> | 131 | #include <qfile.h> |
132 | #include <qvbox.h> | 132 | #include <qvbox.h> |
133 | #include <qlayout.h> | 133 | #include <qlayout.h> |
134 | #include <qclipboard.h> | 134 | #include <qclipboard.h> |
135 | #include <qtextstream.h> | 135 | #include <qtextstream.h> |
136 | #include <qradiobutton.h> | 136 | #include <qradiobutton.h> |
137 | #include <qbuttongroup.h> | 137 | #include <qbuttongroup.h> |
138 | 138 | ||
139 | #include <libkdepim/categoryselectdialog.h> | 139 | #include <libkdepim/categoryselectdialog.h> |
140 | #include <libkdepim/categoryeditdialog.h> | 140 | #include <libkdepim/categoryeditdialog.h> |
141 | #include <kabc/vcardconverter.h> | 141 | #include <kabc/vcardconverter.h> |
142 | 142 | ||
143 | 143 | ||
144 | #include "addresseeutil.h" | 144 | #include "addresseeutil.h" |
145 | #include "undocmds.h" | 145 | #include "undocmds.h" |
146 | #include "addresseeeditordialog.h" | 146 | #include "addresseeeditordialog.h" |
147 | #include "viewmanager.h" | 147 | #include "viewmanager.h" |
148 | #include "details/detailsviewcontainer.h" | 148 | #include "details/detailsviewcontainer.h" |
149 | #include "kabprefs.h" | 149 | #include "kabprefs.h" |
150 | #include "xxportmanager.h" | 150 | #include "xxportmanager.h" |
151 | #include "incsearchwidget.h" | 151 | #include "incsearchwidget.h" |
152 | #include "jumpbuttonbar.h" | 152 | #include "jumpbuttonbar.h" |
153 | #include "extensionmanager.h" | 153 | #include "extensionmanager.h" |
154 | #include "addresseeconfig.h" | 154 | #include "addresseeconfig.h" |
155 | #include "nameeditdialog.h" | 155 | #include "nameeditdialog.h" |
156 | #include <kcmultidialog.h> | 156 | #include <kcmultidialog.h> |
157 | 157 | ||
158 | #ifdef _WIN32_ | 158 | #ifdef _WIN32_ |
159 | #ifdef _OL_IMPORT_ | 159 | #ifdef _OL_IMPORT_ |
160 | #include "kaimportoldialog.h" | 160 | #include "kaimportoldialog.h" |
161 | #endif | 161 | #endif |
162 | #else | 162 | #else |
163 | #include <unistd.h> | 163 | #include <unistd.h> |
164 | #endif | 164 | #endif |
165 | // sync includes | 165 | // sync includes |
166 | #include <libkdepim/ksyncprofile.h> | 166 | #include <libkdepim/ksyncprofile.h> |
167 | #include <libkdepim/ksyncprefsdialog.h> | 167 | #include <libkdepim/ksyncprefsdialog.h> |
168 | 168 | ||
169 | 169 | ||
170 | class KABCatPrefs : public QDialog | 170 | class KABCatPrefs : public QDialog |
171 | { | 171 | { |
172 | public: | 172 | public: |
173 | KABCatPrefs( QWidget *parent=0, const char *name=0 ) : | 173 | KABCatPrefs( QWidget *parent=0, const char *name=0 ) : |
174 | QDialog( parent, name, true ) | 174 | QDialog( parent, name, true ) |
175 | { | 175 | { |
176 | setCaption( i18n("Manage new Categories") ); | 176 | setCaption( i18n("Manage new Categories") ); |
177 | QVBoxLayout* lay = new QVBoxLayout( this ); | 177 | QVBoxLayout* lay = new QVBoxLayout( this ); |
178 | lay->setSpacing( 3 ); | 178 | lay->setSpacing( 3 ); |
179 | lay->setMargin( 3 ); | 179 | lay->setMargin( 3 ); |
180 | QLabel * lab = new QLabel( i18n("After importing/loading/syncing\nthere may be new categories in\naddressees\nwhich are not in the category list.\nPlease choose what to do:\n "), this ); | 180 | QLabel * lab = new QLabel( i18n("After importing/loading/syncing\nthere may be new categories in\naddressees\nwhich are not in the category list.\nPlease choose what to do:\n "), this ); |
181 | lay->addWidget( lab ); | 181 | lay->addWidget( lab ); |
182 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this ); | 182 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("New categories not in list:"), this ); |
183 | lay->addWidget( format ); | 183 | lay->addWidget( format ); |
184 | format->setExclusive ( true ) ; | 184 | format->setExclusive ( true ) ; |
185 | addCatBut = new QRadioButton(i18n("Add to category list"), format ); | 185 | addCatBut = new QRadioButton(i18n("Add to category list"), format ); |
186 | new QRadioButton(i18n("Remove from addressees"), format ); | 186 | new QRadioButton(i18n("Remove from addressees"), format ); |
187 | addCatBut->setChecked( true ); | 187 | addCatBut->setChecked( true ); |
188 | QPushButton * ok = new QPushButton( i18n("OK"), this ); | 188 | QPushButton * ok = new QPushButton( i18n("OK"), this ); |
189 | lay->addWidget( ok ); | 189 | lay->addWidget( ok ); |
190 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 190 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
191 | lay->addWidget( cancel ); | 191 | lay->addWidget( cancel ); |
192 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 192 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
193 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 193 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
194 | resize( 200, 200 ); | 194 | resize( 200, 200 ); |
195 | } | 195 | } |
196 | 196 | ||
197 | bool addCat() { return addCatBut->isChecked(); } | 197 | bool addCat() { return addCatBut->isChecked(); } |
198 | private: | 198 | private: |
199 | QRadioButton* addCatBut; | 199 | QRadioButton* addCatBut; |
200 | }; | 200 | }; |
201 | 201 | ||
202 | class KABFormatPrefs : public QDialog | 202 | class KABFormatPrefs : public QDialog |
203 | { | 203 | { |
204 | public: | 204 | public: |
205 | KABFormatPrefs( QWidget *parent=0, const char *name=0 ) : | 205 | KABFormatPrefs( QWidget *parent=0, const char *name=0 ) : |
206 | QDialog( parent, name, true ) | 206 | QDialog( parent, name, true ) |
207 | { | 207 | { |
208 | setCaption( i18n("Set formatted name") ); | 208 | setCaption( i18n("Set formatted name") ); |
209 | QVBoxLayout* lay = new QVBoxLayout( this ); | 209 | QVBoxLayout* lay = new QVBoxLayout( this ); |
210 | lay->setSpacing( 3 ); | 210 | lay->setSpacing( 3 ); |
211 | lay->setMargin( 3 ); | 211 | lay->setMargin( 3 ); |
212 | QLabel * lab = new QLabel( i18n("You can set the formatted name\nfor a list of contacts in one go."), this ); | 212 | QLabel * lab = new QLabel( i18n("You can set the formatted name\nfor a list of contacts in one go."), this ); |
213 | lay->addWidget( lab ); | 213 | lay->addWidget( lab ); |
214 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("Set formatted name to:"), this ); | 214 | QButtonGroup* format = new QButtonGroup( 1, Horizontal, i18n("Set formatted name to:"), this ); |
215 | lay->addWidget( format ); | 215 | lay->addWidget( format ); |
216 | format->setExclusive ( true ) ; | 216 | format->setExclusive ( true ) ; |
217 | simple = new QRadioButton(i18n("Simple: James Bond"), format ); | 217 | simple = new QRadioButton(i18n("Simple: James Bond"), format ); |
218 | full = new QRadioButton(i18n("Full: Mr. James 007 Bond I"), format ); | 218 | full = new QRadioButton(i18n("Full: Mr. James 007 Bond I"), format ); |
219 | reverse = new QRadioButton(i18n("Reverse: Bond, James"), format ); | 219 | reverse = new QRadioButton(i18n("Reverse: Bond, James"), format ); |
220 | company = new QRadioButton(i18n("Organization: MI6"), format ); | 220 | company = new QRadioButton(i18n("Organization: MI6"), format ); |
221 | simple->setChecked( true ); | 221 | simple->setChecked( true ); |
222 | setCompany = new QCheckBox(i18n("Set formatted name to\norganization, if name empty"), this); | 222 | setCompany = new QCheckBox(i18n("Set formatted name to\norganization, if name empty"), this); |
223 | lay->addWidget( setCompany ); | 223 | lay->addWidget( setCompany ); |
224 | QPushButton * ok = new QPushButton( i18n("Select contact list"), this ); | 224 | QPushButton * ok = new QPushButton( i18n("Select contact list"), this ); |
225 | lay->addWidget( ok ); | 225 | lay->addWidget( ok ); |
226 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 226 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
227 | lay->addWidget( cancel ); | 227 | lay->addWidget( cancel ); |
228 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 228 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
229 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 229 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
230 | //resize( 200, 200 ); | 230 | //resize( 200, 200 ); |
231 | 231 | ||
232 | } | 232 | } |
233 | public: | 233 | public: |
234 | QRadioButton* simple, *full, *reverse, *company; | 234 | QRadioButton* simple, *full, *reverse, *company; |
235 | QCheckBox* setCompany; | 235 | QCheckBox* setCompany; |
236 | }; | 236 | }; |
237 | 237 | ||
238 | 238 | ||
239 | 239 | ||
240 | class KAex2phonePrefs : public QDialog | 240 | class KAex2phonePrefs : public QDialog |
241 | { | 241 | { |
242 | public: | 242 | public: |
243 | KAex2phonePrefs( QWidget *parent=0, const char *name=0 ) : | 243 | KAex2phonePrefs( QWidget *parent=0, const char *name=0 ) : |
244 | QDialog( parent, name, true ) | 244 | QDialog( parent, name, true ) |
245 | { | 245 | { |
246 | setCaption( i18n("Export to phone options") ); | 246 | setCaption( i18n("Export to phone options") ); |
247 | QVBoxLayout* lay = new QVBoxLayout( this ); | 247 | QVBoxLayout* lay = new QVBoxLayout( this ); |
248 | lay->setSpacing( 3 ); | 248 | lay->setSpacing( 3 ); |
249 | lay->setMargin( 3 ); | 249 | lay->setMargin( 3 ); |
250 | QLabel *lab; | 250 | QLabel *lab; |
251 | lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) ); | 251 | lay->addWidget(lab = new QLabel( i18n("Please read Help-Sync Howto\nto know what settings to use."), this ) ); |
252 | lab->setAlignment (AlignHCenter ); | 252 | lab->setAlignment (AlignHCenter ); |
253 | QHBox* temphb; | 253 | QHBox* temphb; |
254 | temphb = new QHBox( this ); | 254 | temphb = new QHBox( this ); |
255 | new QLabel( i18n("I/O device: "), temphb ); | 255 | new QLabel( i18n("I/O device: "), temphb ); |
256 | mPhoneDevice = new QLineEdit( temphb); | 256 | mPhoneDevice = new QLineEdit( temphb); |
257 | lay->addWidget( temphb ); | 257 | lay->addWidget( temphb ); |
258 | temphb = new QHBox( this ); | 258 | temphb = new QHBox( this ); |
259 | new QLabel( i18n("Connection: "), temphb ); | 259 | new QLabel( i18n("Connection: "), temphb ); |
260 | mPhoneConnection = new QLineEdit( temphb); | 260 | mPhoneConnection = new QLineEdit( temphb); |
261 | lay->addWidget( temphb ); | 261 | lay->addWidget( temphb ); |
262 | temphb = new QHBox( this ); | 262 | temphb = new QHBox( this ); |
263 | new QLabel( i18n("Model(opt.): "), temphb ); | 263 | new QLabel( i18n("Model(opt.): "), temphb ); |
264 | mPhoneModel = new QLineEdit( temphb); | 264 | mPhoneModel = new QLineEdit( temphb); |
265 | lay->addWidget( temphb ); | 265 | lay->addWidget( temphb ); |
266 | // mWriteToSim = new QCheckBox( i18n("Write Contacts to SIM card\n(if not, write to phone memory)"), this ); | 266 | // mWriteToSim = new QCheckBox( i18n("Write Contacts to SIM card\n(if not, write to phone memory)"), this ); |
267 | // lay->addWidget( mWriteToSim ); | 267 | // lay->addWidget( mWriteToSim ); |
268 | lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\ncontact data on phone!"), this ) ); | 268 | lay->addWidget(lab = new QLabel( i18n("NOTE: This will remove all old\ncontact data on phone!"), this ) ); |
269 | lab->setAlignment (AlignHCenter); | 269 | lab->setAlignment (AlignHCenter); |
270 | QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this ); | 270 | QPushButton * ok = new QPushButton( i18n("Export to mobile phone!"), this ); |
271 | lay->addWidget( ok ); | 271 | lay->addWidget( ok ); |
272 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 272 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
273 | lay->addWidget( cancel ); | 273 | lay->addWidget( cancel ); |
274 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 274 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
275 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 275 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
276 | resize( 220, 240 ); | 276 | resize( 220, 240 ); |
277 | 277 | ||
278 | } | 278 | } |
279 | 279 | ||
280 | public: | 280 | public: |
281 | QLineEdit* mPhoneConnection, *mPhoneDevice, *mPhoneModel; | 281 | QLineEdit* mPhoneConnection, *mPhoneDevice, *mPhoneModel; |
282 | QCheckBox* mWriteToSim; | 282 | QCheckBox* mWriteToSim; |
283 | }; | 283 | }; |
284 | 284 | ||
285 | 285 | ||
286 | bool pasteWithNewUid = true; | 286 | bool pasteWithNewUid = true; |
287 | 287 | ||
288 | #ifdef KAB_EMBEDDED | 288 | #ifdef KAB_EMBEDDED |
289 | KABCore::KABCore( KAddressBookMain *client, bool readWrite, QWidget *parent, const char *name ) | 289 | KABCore::KABCore( KAddressBookMain *client, bool readWrite, QWidget *parent, const char *name ) |
290 | : QWidget( parent, name ), KSyncInterface(), mGUIClient( client ), mViewManager( 0 ), | 290 | : QWidget( parent, name ), KSyncInterface(), mGUIClient( client ), mViewManager( 0 ), |
291 | mExtensionManager( 0 ),mConfigureDialog( 0 ),/*US mLdapSearchDialog( 0 ),*/ | 291 | mExtensionManager( 0 ),mConfigureDialog( 0 ),/*US mLdapSearchDialog( 0 ),*/ |
292 | mReadWrite( readWrite ), mModified( false ), mMainWindow(client) | 292 | mReadWrite( readWrite ), mModified( false ), mMainWindow(client) |
293 | #else //KAB_EMBEDDED | 293 | #else //KAB_EMBEDDED |
294 | KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const char *name ) | 294 | KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const char *name ) |
295 | : QWidget( parent, name ), KSyncInterface(), mGUIClient( client ), mViewManager( 0 ), | 295 | : QWidget( parent, name ), KSyncInterface(), mGUIClient( client ), mViewManager( 0 ), |
296 | mExtensionManager( 0 ), mConfigureDialog( 0 ), mLdapSearchDialog( 0 ), | 296 | mExtensionManager( 0 ), mConfigureDialog( 0 ), mLdapSearchDialog( 0 ), |
297 | mReadWrite( readWrite ), mModified( false ) | 297 | mReadWrite( readWrite ), mModified( false ) |
298 | #endif //KAB_EMBEDDED | 298 | #endif //KAB_EMBEDDED |
299 | { | 299 | { |
300 | // syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::KAPI, KABPrefs::instance(), syncMenu); | 300 | // syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::KAPI, KABPrefs::instance(), syncMenu); |
301 | // syncManager->setBlockSave(false); | 301 | // syncManager->setBlockSave(false); |
302 | mIncSearchWidget = 0; | 302 | mIncSearchWidget = 0; |
303 | mMiniSplitter = 0; | 303 | mMiniSplitter = 0; |
304 | mExtensionBarSplitter = 0; | 304 | mExtensionBarSplitter = 0; |
305 | mIsPart = !parent->inherits( "KAddressBookMain" ); | 305 | mIsPart = !parent->inherits( "KAddressBookMain" ); |
306 | mAddressBook = KABC::StdAddressBook::self(); | 306 | mAddressBook = KABC::StdAddressBook::selfNoLoad(); |
307 | KABC::StdAddressBook::setAutomaticSave( false ); | 307 | KABC::StdAddressBook::setAutomaticSave( false ); |
308 | 308 | ||
309 | #ifndef KAB_EMBEDDED | 309 | #ifndef KAB_EMBEDDED |
310 | mAddressBook->setErrorHandler( new KABC::GUIErrorHandler ); | 310 | mAddressBook->setErrorHandler( new KABC::GUIErrorHandler ); |
311 | #endif //KAB_EMBEDDED | 311 | #endif //KAB_EMBEDDED |
312 | 312 | ||
313 | connect( mAddressBook, SIGNAL( addressBookChanged( AddressBook * ) ), | 313 | connect( mAddressBook, SIGNAL( addressBookChanged( AddressBook * ) ), |
314 | SLOT( addressBookChanged() ) ); | 314 | SLOT( addressBookChanged() ) ); |
315 | 315 | ||
316 | #if 0 | 316 | #if 0 |
317 | // LR moved to addressbook init method | 317 | // LR moved to addressbook init method |
318 | mAddressBook->addCustomField( i18n( "Department" ), KABC::Field::Organization, | 318 | mAddressBook->addCustomField( i18n( "Department" ), KABC::Field::Organization, |
319 | "X-Department", "KADDRESSBOOK" ); | 319 | "X-Department", "KADDRESSBOOK" ); |
320 | mAddressBook->addCustomField( i18n( "Profession" ), KABC::Field::Organization, | 320 | mAddressBook->addCustomField( i18n( "Profession" ), KABC::Field::Organization, |
321 | "X-Profession", "KADDRESSBOOK" ); | 321 | "X-Profession", "KADDRESSBOOK" ); |
322 | mAddressBook->addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, | 322 | mAddressBook->addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, |
323 | "X-AssistantsName", "KADDRESSBOOK" ); | 323 | "X-AssistantsName", "KADDRESSBOOK" ); |
324 | mAddressBook->addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, | 324 | mAddressBook->addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, |
325 | "X-ManagersName", "KADDRESSBOOK" ); | 325 | "X-ManagersName", "KADDRESSBOOK" ); |
326 | mAddressBook->addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, | 326 | mAddressBook->addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, |
327 | "X-SpousesName", "KADDRESSBOOK" ); | 327 | "X-SpousesName", "KADDRESSBOOK" ); |
328 | mAddressBook->addCustomField( i18n( "Office" ), KABC::Field::Personal, | 328 | mAddressBook->addCustomField( i18n( "Office" ), KABC::Field::Personal, |
329 | "X-Office", "KADDRESSBOOK" ); | 329 | "X-Office", "KADDRESSBOOK" ); |
330 | mAddressBook->addCustomField( i18n( "IM Address" ), KABC::Field::Personal, | 330 | mAddressBook->addCustomField( i18n( "IM Address" ), KABC::Field::Personal, |
331 | "X-IMAddress", "KADDRESSBOOK" ); | 331 | "X-IMAddress", "KADDRESSBOOK" ); |
332 | mAddressBook->addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, | 332 | mAddressBook->addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, |
333 | "X-Anniversary", "KADDRESSBOOK" ); | 333 | "X-Anniversary", "KADDRESSBOOK" ); |
334 | 334 | ||
335 | //US added this field to become compatible with Opie/qtopia addressbook | 335 | //US added this field to become compatible with Opie/qtopia addressbook |
336 | // values can be "female" or "male" or "". An empty field represents undefined. | 336 | // values can be "female" or "male" or "". An empty field represents undefined. |
337 | mAddressBook->addCustomField( i18n( "Gender" ), KABC::Field::Personal, | 337 | mAddressBook->addCustomField( i18n( "Gender" ), KABC::Field::Personal, |
338 | "X-Gender", "KADDRESSBOOK" ); | 338 | "X-Gender", "KADDRESSBOOK" ); |
339 | mAddressBook->addCustomField( i18n( "Children" ), KABC::Field::Personal, | 339 | mAddressBook->addCustomField( i18n( "Children" ), KABC::Field::Personal, |
340 | "X-Children", "KADDRESSBOOK" ); | 340 | "X-Children", "KADDRESSBOOK" ); |
341 | mAddressBook->addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | 341 | mAddressBook->addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, |
342 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | 342 | "X-FreeBusyUrl", "KADDRESSBOOK" ); |
343 | #endif | 343 | #endif |
344 | initGUI(); | 344 | initGUI(); |
345 | 345 | ||
346 | mIncSearchWidget->setFocus(); | 346 | mIncSearchWidget->setFocus(); |
347 | 347 | ||
348 | 348 | ||
349 | connect( mViewManager, SIGNAL( selected( const QString& ) ), | 349 | connect( mViewManager, SIGNAL( selected( const QString& ) ), |
350 | SLOT( setContactSelected( const QString& ) ) ); | 350 | SLOT( setContactSelected( const QString& ) ) ); |
351 | connect( mViewManager, SIGNAL( executed( const QString& ) ), | 351 | connect( mViewManager, SIGNAL( executed( const QString& ) ), |
352 | SLOT( executeContact( const QString& ) ) ); | 352 | SLOT( executeContact( const QString& ) ) ); |
353 | 353 | ||
354 | connect( mViewManager, SIGNAL( deleteRequest( ) ), | 354 | connect( mViewManager, SIGNAL( deleteRequest( ) ), |
355 | SLOT( deleteContacts( ) ) ); | 355 | SLOT( deleteContacts( ) ) ); |
356 | connect( mViewManager, SIGNAL( modified() ), | 356 | connect( mViewManager, SIGNAL( modified() ), |
357 | SLOT( setModified() ) ); | 357 | SLOT( setModified() ) ); |
358 | 358 | ||
359 | connect( mExtensionManager, SIGNAL( modified( const KABC::Addressee::List& ) ), this, SLOT( extensionModified( const KABC::Addressee::List& ) ) ); | 359 | connect( mExtensionManager, SIGNAL( modified( const KABC::Addressee::List& ) ), this, SLOT( extensionModified( const KABC::Addressee::List& ) ) ); |
360 | connect( mExtensionManager, SIGNAL( changedActiveExtension( int ) ), this, SLOT( extensionChanged( int ) ) ); | 360 | connect( mExtensionManager, SIGNAL( changedActiveExtension( int ) ), this, SLOT( extensionChanged( int ) ) ); |
361 | 361 | ||
362 | connect( mXXPortManager, SIGNAL( modified() ), | 362 | connect( mXXPortManager, SIGNAL( modified() ), |
363 | SLOT( setModified() ) ); | 363 | SLOT( setModified() ) ); |
364 | 364 | ||
365 | connect( mJumpButtonBar, SIGNAL( jumpToLetter( const QString& ) ), | 365 | connect( mJumpButtonBar, SIGNAL( jumpToLetter( const QString& ) ), |
366 | SLOT( incrementalSearchJump( const QString& ) ) ); | 366 | SLOT( incrementalSearchJump( const QString& ) ) ); |
367 | connect( mIncSearchWidget, SIGNAL( fieldChanged() ), | 367 | connect( mIncSearchWidget, SIGNAL( fieldChanged() ), |
368 | mJumpButtonBar, SLOT( recreateButtons() ) ); | 368 | mJumpButtonBar, SLOT( recreateButtons() ) ); |
369 | 369 | ||
370 | connect( mDetails, SIGNAL( sendEmail( const QString& ) ), | 370 | connect( mDetails, SIGNAL( sendEmail( const QString& ) ), |
371 | SLOT( sendMail( const QString& ) ) ); | 371 | SLOT( sendMail( const QString& ) ) ); |
372 | 372 | ||
373 | 373 | ||
374 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&))); | 374 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&))); |
375 | connect( ExternalAppHandler::instance(), SIGNAL (requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&)),this, SLOT(requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&))); | 375 | connect( ExternalAppHandler::instance(), SIGNAL (requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&)),this, SLOT(requestForDetails(const QString&, const QString&, const QString&, const QString&, const QString&))); |
376 | connect( ExternalAppHandler::instance(), SIGNAL (requestForBirthdayList(const QString&, const QString&)),this, SLOT(requestForBirthdayList(const QString&, const QString&))); | 376 | connect( ExternalAppHandler::instance(), SIGNAL (requestForBirthdayList(const QString&, const QString&)),this, SLOT(requestForBirthdayList(const QString&, const QString&))); |
377 | connect( ExternalAppHandler::instance(), SIGNAL (nextView()),this, SLOT(setDetailsToggle())); | 377 | connect( ExternalAppHandler::instance(), SIGNAL (nextView()),this, SLOT(setDetailsToggle())); |
378 | connect( ExternalAppHandler::instance(), SIGNAL (doRingSync()),this, SLOT( doRingSync())); | 378 | connect( ExternalAppHandler::instance(), SIGNAL (doRingSync()),this, SLOT( doRingSync())); |
379 | connect( ExternalAppHandler::instance(), SIGNAL (callContactdialog()),this, SLOT(callContactdialog())); | 379 | connect( ExternalAppHandler::instance(), SIGNAL (callContactdialog()),this, SLOT(callContactdialog())); |
380 | 380 | ||
381 | 381 | ||
382 | #ifndef KAB_EMBEDDED | 382 | #ifndef KAB_EMBEDDED |
383 | connect( mViewManager, SIGNAL( urlDropped( const KURL& ) ), | 383 | connect( mViewManager, SIGNAL( urlDropped( const KURL& ) ), |
384 | mXXPortManager, SLOT( importVCard( const KURL& ) ) ); | 384 | mXXPortManager, SLOT( importVCard( const KURL& ) ) ); |
385 | 385 | ||
386 | connect( mDetails, SIGNAL( browse( const QString& ) ), | 386 | connect( mDetails, SIGNAL( browse( const QString& ) ), |
387 | SLOT( browse( const QString& ) ) ); | 387 | SLOT( browse( const QString& ) ) ); |
388 | 388 | ||
389 | 389 | ||
390 | mAddressBookService = new KAddressBookService( this ); | 390 | mAddressBookService = new KAddressBookService( this ); |
391 | 391 | ||
392 | #endif //KAB_EMBEDDED | 392 | #endif //KAB_EMBEDDED |
393 | 393 | ||
394 | mMessageTimer = new QTimer( this ); | 394 | mMessageTimer = new QTimer( this ); |
395 | connect( mMessageTimer, SIGNAL( timeout() ), this, SLOT( setCaptionBack() ) ); | 395 | connect( mMessageTimer, SIGNAL( timeout() ), this, SLOT( setCaptionBack() ) ); |
396 | mEditorDialog = 0; | 396 | mEditorDialog = 0; |
397 | createAddresseeEditorDialog( this ); | 397 | createAddresseeEditorDialog( this ); |
398 | setModified( false ); | 398 | setModified( false ); |
399 | mBRdisabled = false; | 399 | mBRdisabled = false; |
400 | #ifndef DESKTOP_VERSION | 400 | #ifndef DESKTOP_VERSION |
401 | infrared = 0; | 401 | infrared = 0; |
402 | #endif | 402 | #endif |
403 | //toggleBeamReceive( ); | 403 | //toggleBeamReceive( ); |
404 | mMainWindow->toolBar()->show(); | 404 | mMainWindow->toolBar()->show(); |
405 | // we have a toolbar repainting error on the Zaurus when starting KA/Pi | 405 | // we have a toolbar repainting error on the Zaurus when starting KA/Pi |
406 | //QTimer::singleShot( 10, this , SLOT ( updateToolBar())); | 406 | //QTimer::singleShot( 10, this , SLOT ( updateToolBar())); |
407 | QTimer::singleShot( 100, this, SLOT ( loadDataAfterStart() )); | 407 | QTimer::singleShot( 100, this, SLOT ( loadDataAfterStart() )); |
408 | } | 408 | } |
409 | void KABCore::receiveStart( const QCString& cmsg, const QByteArray& data ) | 409 | void KABCore::receiveStart( const QCString& cmsg, const QByteArray& data ) |
410 | { | 410 | { |
411 | qDebug("KO: QCOP start message received: %s ", cmsg.data() ); | 411 | qDebug("KO: QCOP start message received: %s ", cmsg.data() ); |
412 | mCStringMess = cmsg; | 412 | mCStringMess = cmsg; |
413 | mByteData = data; | 413 | mByteData = data; |
414 | } | 414 | } |
415 | 415 | ||
416 | void KABCore::loadDataAfterStart() | 416 | void KABCore::loadDataAfterStart() |
417 | { | 417 | { |
418 | qDebug("KABCore::loadDataAfterStart() "); | 418 | qDebug("KABCore::loadDataAfterStart() "); |
419 | ((StdAddressBook*)mAddressBook)->init( true ); | 419 | ((StdAddressBook*)mAddressBook)->init( true ); |
420 | mViewManager->refreshView(); | 420 | mViewManager->refreshView(); |
421 | 421 | ||
422 | #ifndef DESKTOP_VERSION | 422 | #ifndef DESKTOP_VERSION |
423 | disconnect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), this, SLOT (receiveStart ( const QCString &, const QByteArray & ))); | 423 | disconnect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), this, SLOT (receiveStart ( const QCString &, const QByteArray & ))); |
424 | 424 | ||
425 | QObject::connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); | 425 | QObject::connect(qApp, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); |
426 | if ( !mCStringMess.isEmpty() ) | 426 | if ( !mCStringMess.isEmpty() ) |
427 | ExternalAppHandler::instance()->appMessage( mCStringMess, mByteData ); | 427 | ExternalAppHandler::instance()->appMessage( mCStringMess, mByteData ); |
428 | #endif | 428 | #endif |
429 | QTimer::singleShot( 10, this , SLOT ( updateToolBar())); | 429 | QTimer::singleShot( 10, this , SLOT ( updateToolBar())); |
430 | setCaptionBack(); | 430 | setCaptionBack(); |
431 | } | 431 | } |
432 | void KABCore::updateToolBar() | 432 | void KABCore::updateToolBar() |
433 | { | 433 | { |
434 | static int iii = 0; | 434 | static int iii = 0; |
435 | ++iii; | 435 | ++iii; |
436 | mMainWindow->toolBar()->repaintMe(); | 436 | mMainWindow->toolBar()->repaintMe(); |
437 | if ( iii < 4 ) | 437 | if ( iii < 4 ) |
438 | QTimer::singleShot( 100*iii, this , SLOT ( updateToolBar())); | 438 | QTimer::singleShot( 100*iii, this , SLOT ( updateToolBar())); |
439 | } | 439 | } |
440 | KABCore::~KABCore() | 440 | KABCore::~KABCore() |
441 | { | 441 | { |
442 | // save(); | 442 | // save(); |
443 | //saveSettings(); | 443 | //saveSettings(); |
444 | //KABPrefs::instance()->writeConfig(); | 444 | //KABPrefs::instance()->writeConfig(); |
445 | delete AddresseeConfig::instance(); | 445 | delete AddresseeConfig::instance(); |
446 | mAddressBook = 0; | 446 | mAddressBook = 0; |
447 | KABC::StdAddressBook::close(); | 447 | KABC::StdAddressBook::close(); |
448 | 448 | ||
449 | delete syncManager; | 449 | delete syncManager; |
450 | #ifndef DESKTOP_VERSION | 450 | #ifndef DESKTOP_VERSION |
451 | if ( infrared ) | 451 | if ( infrared ) |
452 | delete infrared; | 452 | delete infrared; |
453 | #endif | 453 | #endif |
454 | } | 454 | } |
455 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) | 455 | void KABCore::receive( const QCString& cmsg, const QByteArray& data ) |
456 | { | 456 | { |
457 | //qDebug("KA: QCOP message received: %s ", cmsg.data() ); | 457 | //qDebug("KA: QCOP message received: %s ", cmsg.data() ); |
458 | if ( cmsg == "setDocument(QString)" ) { | 458 | if ( cmsg == "setDocument(QString)" ) { |
459 | QDataStream stream( data, IO_ReadOnly ); | 459 | QDataStream stream( data, IO_ReadOnly ); |
460 | QString fileName; | 460 | QString fileName; |
461 | stream >> fileName; | 461 | stream >> fileName; |
462 | recieve( fileName ); | 462 | recieve( fileName ); |
463 | return; | 463 | return; |
464 | } | 464 | } |
465 | } | 465 | } |
466 | void KABCore::toggleBeamReceive( ) | 466 | void KABCore::toggleBeamReceive( ) |
467 | { | 467 | { |
468 | if ( mBRdisabled ) | 468 | if ( mBRdisabled ) |
469 | return; | 469 | return; |
470 | #ifndef DESKTOP_VERSION | 470 | #ifndef DESKTOP_VERSION |
471 | if ( infrared ) { | 471 | if ( infrared ) { |
472 | qDebug("KA: AB disable BeamReceive "); | 472 | qDebug("KA: AB disable BeamReceive "); |
473 | delete infrared; | 473 | delete infrared; |
474 | infrared = 0; | 474 | infrared = 0; |
475 | mActionBR->setChecked(false); | 475 | mActionBR->setChecked(false); |
476 | return; | 476 | return; |
477 | } | 477 | } |
478 | qDebug("KA: AB enable BeamReceive "); | 478 | qDebug("KA: AB enable BeamReceive "); |
479 | mActionBR->setChecked(true); | 479 | mActionBR->setChecked(true); |
480 | 480 | ||
481 | infrared = new QCopChannel("QPE/Application/addressbook",this, "channelAB" ) ; | 481 | infrared = new QCopChannel("QPE/Application/addressbook",this, "channelAB" ) ; |
482 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(receive( const QCString&, const QByteArray& ))); | 482 | QObject::connect( infrared, SIGNAL (received ( const QCString &, const QByteArray & )),this, SLOT(receive( const QCString&, const QByteArray& ))); |
483 | #endif | 483 | #endif |
484 | } | 484 | } |
485 | 485 | ||
486 | 486 | ||
487 | void KABCore::disableBR(bool b) | 487 | void KABCore::disableBR(bool b) |
488 | { | 488 | { |
489 | #ifndef DESKTOP_VERSION | 489 | #ifndef DESKTOP_VERSION |
490 | if ( b ) { | 490 | if ( b ) { |
491 | if ( infrared ) { | 491 | if ( infrared ) { |
492 | toggleBeamReceive( ); | 492 | toggleBeamReceive( ); |
493 | } | 493 | } |
494 | mBRdisabled = true; | 494 | mBRdisabled = true; |
495 | } else { | 495 | } else { |
496 | if ( mBRdisabled ) { | 496 | if ( mBRdisabled ) { |
497 | mBRdisabled = false; | 497 | mBRdisabled = false; |
498 | //toggleBeamReceive( ); | 498 | //toggleBeamReceive( ); |