-rw-r--r-- | kaddressbook/kabcore.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 1b40d71..df634d0 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1,296 +1,297 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressbook. | 2 | This file is part of KAddressbook. |
3 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> | 3 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program 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 | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* | 24 | /* |
25 | Enhanced Version of the file for platform independent KDE tools. | 25 | Enhanced Version of the file for platform independent KDE tools. |
26 | Copyright (c) 2004 Ulf Schenk | 26 | Copyright (c) 2004 Ulf Schenk |
27 | 27 | ||
28 | $Id$ | 28 | $Id$ |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include "kabcore.h" | 31 | #include "kabcore.h" |
32 | 32 | ||
33 | #include <stdaddressbook.h> | 33 | #include <stdaddressbook.h> |
34 | #include <klocale.h> | 34 | #include <klocale.h> |
35 | #include <kfiledialog.h> | 35 | #include <kfiledialog.h> |
36 | #include <qtimer.h> | ||
36 | #include <qprogressbar.h> | 37 | #include <qprogressbar.h> |
37 | 38 | ||
38 | #ifndef KAB_EMBEDDED | 39 | #ifndef KAB_EMBEDDED |
39 | #include <qclipboard.h> | 40 | #include <qclipboard.h> |
40 | #include <qdir.h> | 41 | #include <qdir.h> |
41 | #include <qfile.h> | 42 | #include <qfile.h> |
42 | #include <qapplicaton.h> | 43 | #include <qapplicaton.h> |
43 | #include <qprogressbar.h> | 44 | #include <qprogressbar.h> |
44 | #include <qlayout.h> | 45 | #include <qlayout.h> |
45 | #include <qregexp.h> | 46 | #include <qregexp.h> |
46 | #include <qvbox.h> | 47 | #include <qvbox.h> |
47 | #include <kabc/addresseelist.h> | 48 | #include <kabc/addresseelist.h> |
48 | #include <kabc/errorhandler.h> | 49 | #include <kabc/errorhandler.h> |
49 | #include <kabc/resource.h> | 50 | #include <kabc/resource.h> |
50 | #include <kabc/vcardconverter.h> | 51 | #include <kabc/vcardconverter.h> |
51 | #include <kapplication.h> | 52 | #include <kapplication.h> |
52 | #include <kactionclasses.h> | 53 | #include <kactionclasses.h> |
53 | #include <kcmultidialog.h> | 54 | #include <kcmultidialog.h> |
54 | #include <kdebug.h> | 55 | #include <kdebug.h> |
55 | #include <kdeversion.h> | 56 | #include <kdeversion.h> |
56 | #include <kkeydialog.h> | 57 | #include <kkeydialog.h> |
57 | #include <kmessagebox.h> | 58 | #include <kmessagebox.h> |
58 | #include <kprinter.h> | 59 | #include <kprinter.h> |
59 | #include <kprotocolinfo.h> | 60 | #include <kprotocolinfo.h> |
60 | #include <kresources/selectdialog.h> | 61 | #include <kresources/selectdialog.h> |
61 | #include <kstandarddirs.h> | 62 | #include <kstandarddirs.h> |
62 | #include <ktempfile.h> | 63 | #include <ktempfile.h> |
63 | #include <kxmlguiclient.h> | 64 | #include <kxmlguiclient.h> |
64 | #include <kaboutdata.h> | 65 | #include <kaboutdata.h> |
65 | #include <libkdepim/categoryselectdialog.h> | 66 | #include <libkdepim/categoryselectdialog.h> |
66 | 67 | ||
67 | #include "addresseeutil.h" | 68 | #include "addresseeutil.h" |
68 | #include "addresseeeditordialog.h" | 69 | #include "addresseeeditordialog.h" |
69 | #include "extensionmanager.h" | 70 | #include "extensionmanager.h" |
70 | #include "kstdaction.h" | 71 | #include "kstdaction.h" |
71 | #include "kaddressbookservice.h" | 72 | #include "kaddressbookservice.h" |
72 | #include "ldapsearchdialog.h" | 73 | #include "ldapsearchdialog.h" |
73 | #include "printing/printingwizard.h" | 74 | #include "printing/printingwizard.h" |
74 | #else // KAB_EMBEDDED | 75 | #else // KAB_EMBEDDED |
75 | 76 | ||
76 | #include <kapplication.h> | 77 | #include <kapplication.h> |
77 | #include "KDGanttMinimizeSplitter.h" | 78 | #include "KDGanttMinimizeSplitter.h" |
78 | #include "kaddressbookmain.h" | 79 | #include "kaddressbookmain.h" |
79 | #include "kactioncollection.h" | 80 | #include "kactioncollection.h" |
80 | #include "addresseedialog.h" | 81 | #include "addresseedialog.h" |
81 | //US | 82 | //US |
82 | #include <addresseeview.h> | 83 | #include <addresseeview.h> |
83 | 84 | ||
84 | #include <qapp.h> | 85 | #include <qapp.h> |
85 | #include <qmenubar.h> | 86 | #include <qmenubar.h> |
86 | //#include <qtoolbar.h> | 87 | //#include <qtoolbar.h> |
87 | #include <qmessagebox.h> | 88 | #include <qmessagebox.h> |
88 | #include <kdebug.h> | 89 | #include <kdebug.h> |
89 | #include <kiconloader.h> // needed for SmallIcon | 90 | #include <kiconloader.h> // needed for SmallIcon |
90 | #include <kresources/kcmkresources.h> | 91 | #include <kresources/kcmkresources.h> |
91 | #include <ktoolbar.h> | 92 | #include <ktoolbar.h> |
92 | 93 | ||
93 | 94 | ||
94 | //#include <qlabel.h> | 95 | //#include <qlabel.h> |
95 | 96 | ||
96 | 97 | ||
97 | #ifndef DESKTOP_VERSION | 98 | #ifndef DESKTOP_VERSION |
98 | #include <qpe/ir.h> | 99 | #include <qpe/ir.h> |
99 | #include <qpe/qpemenubar.h> | 100 | #include <qpe/qpemenubar.h> |
100 | #include <qtopia/qcopenvelope_qws.h> | 101 | #include <qtopia/qcopenvelope_qws.h> |
101 | #else | 102 | #else |
102 | 103 | ||
103 | #include <qmenubar.h> | 104 | #include <qmenubar.h> |
104 | #endif | 105 | #endif |
105 | 106 | ||
106 | #endif // KAB_EMBEDDED | 107 | #endif // KAB_EMBEDDED |
107 | #include "kcmconfigs/kcmkabconfig.h" | 108 | #include "kcmconfigs/kcmkabconfig.h" |
108 | #include "kcmconfigs/kcmkdepimconfig.h" | 109 | #include "kcmconfigs/kcmkdepimconfig.h" |
109 | #include "kpimglobalprefs.h" | 110 | #include "kpimglobalprefs.h" |
110 | #include "externalapphandler.h" | 111 | #include "externalapphandler.h" |
111 | 112 | ||
112 | 113 | ||
113 | #include <kresources/selectdialog.h> | 114 | #include <kresources/selectdialog.h> |
114 | #include <kmessagebox.h> | 115 | #include <kmessagebox.h> |
115 | 116 | ||
116 | #include <picture.h> | 117 | #include <picture.h> |
117 | #include <resource.h> | 118 | #include <resource.h> |
118 | 119 | ||
119 | //US#include <qsplitter.h> | 120 | //US#include <qsplitter.h> |
120 | #include <qmap.h> | 121 | #include <qmap.h> |
121 | #include <qdir.h> | 122 | #include <qdir.h> |
122 | #include <qfile.h> | 123 | #include <qfile.h> |
123 | #include <qvbox.h> | 124 | #include <qvbox.h> |
124 | #include <qlayout.h> | 125 | #include <qlayout.h> |
125 | #include <qclipboard.h> | 126 | #include <qclipboard.h> |
126 | #include <qtextstream.h> | 127 | #include <qtextstream.h> |
127 | 128 | ||
128 | #include <libkdepim/categoryselectdialog.h> | 129 | #include <libkdepim/categoryselectdialog.h> |
129 | #include <kabc/vcardconverter.h> | 130 | #include <kabc/vcardconverter.h> |
130 | 131 | ||
131 | 132 | ||
132 | #include "addresseeutil.h" | 133 | #include "addresseeutil.h" |
133 | #include "undocmds.h" | 134 | #include "undocmds.h" |
134 | #include "addresseeeditordialog.h" | 135 | #include "addresseeeditordialog.h" |
135 | #include "viewmanager.h" | 136 | #include "viewmanager.h" |
136 | #include "details/detailsviewcontainer.h" | 137 | #include "details/detailsviewcontainer.h" |
137 | #include "kabprefs.h" | 138 | #include "kabprefs.h" |
138 | #include "xxportmanager.h" | 139 | #include "xxportmanager.h" |
139 | #include "incsearchwidget.h" | 140 | #include "incsearchwidget.h" |
140 | #include "jumpbuttonbar.h" | 141 | #include "jumpbuttonbar.h" |
141 | #include "extensionmanager.h" | 142 | #include "extensionmanager.h" |
142 | #include "addresseeconfig.h" | 143 | #include "addresseeconfig.h" |
143 | #include <kcmultidialog.h> | 144 | #include <kcmultidialog.h> |
144 | 145 | ||
145 | #ifdef _WIN32_ | 146 | #ifdef _WIN32_ |
146 | 147 | ||
147 | #include "kaimportoldialog.h" | 148 | #include "kaimportoldialog.h" |
148 | #else | 149 | #else |
149 | #include <unistd.h> | 150 | #include <unistd.h> |
150 | #endif | 151 | #endif |
151 | // sync includes | 152 | // sync includes |
152 | #include <libkdepim/ksyncprofile.h> | 153 | #include <libkdepim/ksyncprofile.h> |
153 | #include <libkdepim/ksyncprefsdialog.h> | 154 | #include <libkdepim/ksyncprefsdialog.h> |
154 | 155 | ||
155 | 156 | ||
156 | bool pasteWithNewUid = true; | 157 | bool pasteWithNewUid = true; |
157 | 158 | ||
158 | #ifdef KAB_EMBEDDED | 159 | #ifdef KAB_EMBEDDED |
159 | KABCore::KABCore( KAddressBookMain *client, bool readWrite, QWidget *parent, const char *name ) | 160 | KABCore::KABCore( KAddressBookMain *client, bool readWrite, QWidget *parent, const char *name ) |
160 | : QWidget( parent, name ), mGUIClient( client ), mViewManager( 0 ), | 161 | : QWidget( parent, name ), mGUIClient( client ), mViewManager( 0 ), |
161 | mExtensionManager( 0 ),mConfigureDialog( 0 ),/*US mLdapSearchDialog( 0 ),*/ | 162 | mExtensionManager( 0 ),mConfigureDialog( 0 ),/*US mLdapSearchDialog( 0 ),*/ |
162 | mReadWrite( readWrite ), mModified( false ), mMainWindow(client) | 163 | mReadWrite( readWrite ), mModified( false ), mMainWindow(client) |
163 | #else //KAB_EMBEDDED | 164 | #else //KAB_EMBEDDED |
164 | KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const char *name ) | 165 | KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const char *name ) |
165 | : QWidget( parent, name ), mGUIClient( client ), mViewManager( 0 ), | 166 | : QWidget( parent, name ), mGUIClient( client ), mViewManager( 0 ), |
166 | mExtensionManager( 0 ), mConfigureDialog( 0 ), mLdapSearchDialog( 0 ), | 167 | mExtensionManager( 0 ), mConfigureDialog( 0 ), mLdapSearchDialog( 0 ), |
167 | mReadWrite( readWrite ), mModified( false ) | 168 | mReadWrite( readWrite ), mModified( false ) |
168 | #endif //KAB_EMBEDDED | 169 | #endif //KAB_EMBEDDED |
169 | { | 170 | { |
170 | 171 | ||
171 | mBlockSaveFlag = false; | 172 | mBlockSaveFlag = false; |
172 | mExtensionBarSplitter = 0; | 173 | mExtensionBarSplitter = 0; |
173 | mIsPart = !parent->inherits( "KAddressBookMain" ); | 174 | mIsPart = !parent->inherits( "KAddressBookMain" ); |
174 | 175 | ||
175 | mAddressBook = KABC::StdAddressBook::self(); | 176 | mAddressBook = KABC::StdAddressBook::self(); |
176 | KABC::StdAddressBook::setAutomaticSave( false ); | 177 | KABC::StdAddressBook::setAutomaticSave( false ); |
177 | 178 | ||
178 | #ifndef KAB_EMBEDDED | 179 | #ifndef KAB_EMBEDDED |
179 | mAddressBook->setErrorHandler( new KABC::GUIErrorHandler ); | 180 | mAddressBook->setErrorHandler( new KABC::GUIErrorHandler ); |
180 | #endif //KAB_EMBEDDED | 181 | #endif //KAB_EMBEDDED |
181 | 182 | ||
182 | connect( mAddressBook, SIGNAL( addressBookChanged( AddressBook * ) ), | 183 | connect( mAddressBook, SIGNAL( addressBookChanged( AddressBook * ) ), |
183 | SLOT( addressBookChanged() ) ); | 184 | SLOT( addressBookChanged() ) ); |
184 | 185 | ||
185 | #if 0 | 186 | #if 0 |
186 | // LP moved to addressbook init method | 187 | // LP moved to addressbook init method |
187 | mAddressBook->addCustomField( i18n( "Department" ), KABC::Field::Organization, | 188 | mAddressBook->addCustomField( i18n( "Department" ), KABC::Field::Organization, |
188 | "X-Department", "KADDRESSBOOK" ); | 189 | "X-Department", "KADDRESSBOOK" ); |
189 | mAddressBook->addCustomField( i18n( "Profession" ), KABC::Field::Organization, | 190 | mAddressBook->addCustomField( i18n( "Profession" ), KABC::Field::Organization, |
190 | "X-Profession", "KADDRESSBOOK" ); | 191 | "X-Profession", "KADDRESSBOOK" ); |
191 | mAddressBook->addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, | 192 | mAddressBook->addCustomField( i18n( "Assistant's Name" ), KABC::Field::Organization, |
192 | "X-AssistantsName", "KADDRESSBOOK" ); | 193 | "X-AssistantsName", "KADDRESSBOOK" ); |
193 | mAddressBook->addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, | 194 | mAddressBook->addCustomField( i18n( "Manager's Name" ), KABC::Field::Organization, |
194 | "X-ManagersName", "KADDRESSBOOK" ); | 195 | "X-ManagersName", "KADDRESSBOOK" ); |
195 | mAddressBook->addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, | 196 | mAddressBook->addCustomField( i18n( "Spouse's Name" ), KABC::Field::Personal, |
196 | "X-SpousesName", "KADDRESSBOOK" ); | 197 | "X-SpousesName", "KADDRESSBOOK" ); |
197 | mAddressBook->addCustomField( i18n( "Office" ), KABC::Field::Personal, | 198 | mAddressBook->addCustomField( i18n( "Office" ), KABC::Field::Personal, |
198 | "X-Office", "KADDRESSBOOK" ); | 199 | "X-Office", "KADDRESSBOOK" ); |
199 | mAddressBook->addCustomField( i18n( "IM Address" ), KABC::Field::Personal, | 200 | mAddressBook->addCustomField( i18n( "IM Address" ), KABC::Field::Personal, |
200 | "X-IMAddress", "KADDRESSBOOK" ); | 201 | "X-IMAddress", "KADDRESSBOOK" ); |
201 | mAddressBook->addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, | 202 | mAddressBook->addCustomField( i18n( "Anniversary" ), KABC::Field::Personal, |
202 | "X-Anniversary", "KADDRESSBOOK" ); | 203 | "X-Anniversary", "KADDRESSBOOK" ); |
203 | 204 | ||
204 | //US added this field to become compatible with Opie/qtopia addressbook | 205 | //US added this field to become compatible with Opie/qtopia addressbook |
205 | // values can be "female" or "male" or "". An empty field represents undefined. | 206 | // values can be "female" or "male" or "". An empty field represents undefined. |
206 | mAddressBook->addCustomField( i18n( "Gender" ), KABC::Field::Personal, | 207 | mAddressBook->addCustomField( i18n( "Gender" ), KABC::Field::Personal, |
207 | "X-Gender", "KADDRESSBOOK" ); | 208 | "X-Gender", "KADDRESSBOOK" ); |
208 | mAddressBook->addCustomField( i18n( "Children" ), KABC::Field::Personal, | 209 | mAddressBook->addCustomField( i18n( "Children" ), KABC::Field::Personal, |
209 | "X-Children", "KADDRESSBOOK" ); | 210 | "X-Children", "KADDRESSBOOK" ); |
210 | mAddressBook->addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, | 211 | mAddressBook->addCustomField( i18n( "FreeBusyUrl" ), KABC::Field::Personal, |
211 | "X-FreeBusyUrl", "KADDRESSBOOK" ); | 212 | "X-FreeBusyUrl", "KADDRESSBOOK" ); |
212 | #endif | 213 | #endif |
213 | initGUI(); | 214 | initGUI(); |
214 | 215 | ||
215 | mIncSearchWidget->setFocus(); | 216 | mIncSearchWidget->setFocus(); |
216 | 217 | ||
217 | 218 | ||
218 | connect( mViewManager, SIGNAL( selected( const QString& ) ), | 219 | connect( mViewManager, SIGNAL( selected( const QString& ) ), |
219 | SLOT( setContactSelected( const QString& ) ) ); | 220 | SLOT( setContactSelected( const QString& ) ) ); |
220 | connect( mViewManager, SIGNAL( executed( const QString& ) ), | 221 | connect( mViewManager, SIGNAL( executed( const QString& ) ), |
221 | SLOT( executeContact( const QString& ) ) ); | 222 | SLOT( executeContact( const QString& ) ) ); |
222 | 223 | ||
223 | connect( mViewManager, SIGNAL( deleteRequest( ) ), | 224 | connect( mViewManager, SIGNAL( deleteRequest( ) ), |
224 | SLOT( deleteContacts( ) ) ); | 225 | SLOT( deleteContacts( ) ) ); |
225 | connect( mViewManager, SIGNAL( modified() ), | 226 | connect( mViewManager, SIGNAL( modified() ), |
226 | SLOT( setModified() ) ); | 227 | SLOT( setModified() ) ); |
227 | 228 | ||
228 | connect( mExtensionManager, SIGNAL( modified( const KABC::Addressee::List& ) ), this, SLOT( extensionModified( const KABC::Addressee::List& ) ) ); | 229 | connect( mExtensionManager, SIGNAL( modified( const KABC::Addressee::List& ) ), this, SLOT( extensionModified( const KABC::Addressee::List& ) ) ); |
229 | connect( mExtensionManager, SIGNAL( changedActiveExtension( int ) ), this, SLOT( extensionChanged( int ) ) ); | 230 | connect( mExtensionManager, SIGNAL( changedActiveExtension( int ) ), this, SLOT( extensionChanged( int ) ) ); |
230 | 231 | ||
231 | connect( mXXPortManager, SIGNAL( modified() ), | 232 | connect( mXXPortManager, SIGNAL( modified() ), |
232 | SLOT( setModified() ) ); | 233 | SLOT( setModified() ) ); |
233 | 234 | ||
234 | connect( mJumpButtonBar, SIGNAL( jumpToLetter( const QString& ) ), | 235 | connect( mJumpButtonBar, SIGNAL( jumpToLetter( const QString& ) ), |
235 | SLOT( incrementalSearch( const QString& ) ) ); | 236 | SLOT( incrementalSearch( const QString& ) ) ); |
236 | connect( mIncSearchWidget, SIGNAL( fieldChanged() ), | 237 | connect( mIncSearchWidget, SIGNAL( fieldChanged() ), |
237 | mJumpButtonBar, SLOT( recreateButtons() ) ); | 238 | mJumpButtonBar, SLOT( recreateButtons() ) ); |
238 | 239 | ||
239 | connect( mDetails, SIGNAL( sendEmail( const QString& ) ), | 240 | connect( mDetails, SIGNAL( sendEmail( const QString& ) ), |
240 | SLOT( sendMail( const QString& ) ) ); | 241 | SLOT( sendMail( const QString& ) ) ); |
241 | 242 | ||
242 | 243 | ||
243 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&))); | 244 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&))); |
244 | 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&))); | 245 | 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&))); |
245 | 246 | ||
246 | 247 | ||
247 | #ifndef KAB_EMBEDDED | 248 | #ifndef KAB_EMBEDDED |
248 | connect( mViewManager, SIGNAL( urlDropped( const KURL& ) ), | 249 | connect( mViewManager, SIGNAL( urlDropped( const KURL& ) ), |
249 | mXXPortManager, SLOT( importVCard( const KURL& ) ) ); | 250 | mXXPortManager, SLOT( importVCard( const KURL& ) ) ); |
250 | 251 | ||
251 | connect( mDetails, SIGNAL( browse( const QString& ) ), | 252 | connect( mDetails, SIGNAL( browse( const QString& ) ), |
252 | SLOT( browse( const QString& ) ) ); | 253 | SLOT( browse( const QString& ) ) ); |
253 | 254 | ||
254 | 255 | ||
255 | mAddressBookService = new KAddressBookService( this ); | 256 | mAddressBookService = new KAddressBookService( this ); |
256 | 257 | ||
257 | #endif //KAB_EMBEDDED | 258 | #endif //KAB_EMBEDDED |
258 | mEditorDialog = 0; | 259 | mEditorDialog = 0; |
259 | createAddresseeEditorDialog( this ); | 260 | createAddresseeEditorDialog( this ); |
260 | setModified( false ); | 261 | setModified( false ); |
261 | } | 262 | } |
262 | 263 | ||
263 | KABCore::~KABCore() | 264 | KABCore::~KABCore() |
264 | { | 265 | { |
265 | // save(); | 266 | // save(); |
266 | //saveSettings(); | 267 | //saveSettings(); |
267 | //KABPrefs::instance()->writeConfig(); | 268 | //KABPrefs::instance()->writeConfig(); |
268 | delete AddresseeConfig::instance(); | 269 | delete AddresseeConfig::instance(); |
269 | mAddressBook = 0; | 270 | mAddressBook = 0; |
270 | KABC::StdAddressBook::close(); | 271 | KABC::StdAddressBook::close(); |
271 | } | 272 | } |
272 | 273 | ||
273 | void KABCore::restoreSettings() | 274 | void KABCore::restoreSettings() |
274 | { | 275 | { |
275 | mMultipleViewsAtOnce = KABPrefs::instance()->mMultipleViewsAtOnce; | 276 | mMultipleViewsAtOnce = KABPrefs::instance()->mMultipleViewsAtOnce; |
276 | 277 | ||
277 | bool state; | 278 | bool state; |
278 | 279 | ||
279 | if (mMultipleViewsAtOnce) | 280 | if (mMultipleViewsAtOnce) |
280 | state = KABPrefs::instance()->mDetailsPageVisible; | 281 | state = KABPrefs::instance()->mDetailsPageVisible; |
281 | else | 282 | else |
282 | state = false; | 283 | state = false; |
283 | 284 | ||
284 | mActionDetails->setChecked( state ); | 285 | mActionDetails->setChecked( state ); |
285 | setDetailsVisible( state ); | 286 | setDetailsVisible( state ); |
286 | 287 | ||
287 | state = KABPrefs::instance()->mJumpButtonBarVisible; | 288 | state = KABPrefs::instance()->mJumpButtonBarVisible; |
288 | 289 | ||
289 | mActionJumpBar->setChecked( state ); | 290 | mActionJumpBar->setChecked( state ); |
290 | setJumpButtonBarVisible( state ); | 291 | setJumpButtonBarVisible( state ); |
291 | /*US | 292 | /*US |
292 | QValueList<int> splitterSize = KABPrefs::instance()->mDetailsSplitter; | 293 | QValueList<int> splitterSize = KABPrefs::instance()->mDetailsSplitter; |
293 | if ( splitterSize.count() == 0 ) { | 294 | if ( splitterSize.count() == 0 ) { |
294 | splitterSize.append( width() / 2 ); | 295 | splitterSize.append( width() / 2 ); |
295 | splitterSize.append( width() / 2 ); | 296 | splitterSize.append( width() / 2 ); |
296 | } | 297 | } |