-rw-r--r-- | kabc/addressee.cpp | 16 | ||||
-rw-r--r-- | kabc/addressee.h | 1 | ||||
-rw-r--r-- | kaddressbook/kabcore.cpp | 8 | ||||
-rw-r--r-- | kaddressbook/kabprefs.cpp | 3 | ||||
-rw-r--r-- | kalarmd/simplealarmdaemonapplet.cpp | 1 | ||||
-rw-r--r-- | kmicromail/koprefs.cpp | 381 | ||||
-rw-r--r-- | korganizer/main.cpp | 6 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 6 | ||||
-rw-r--r-- | korganizer/mainwindow.h | 2 | ||||
-rw-r--r-- | libkdepim/kpimglobalprefs.cpp | 10 | ||||
-rw-r--r-- | microkde/kstaticdeleter.h | 6 |
11 files changed, 40 insertions, 400 deletions
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp index e571980..19a1845 100644 --- a/kabc/addressee.cpp +++ b/kabc/addressee.cpp | |||
@@ -315,6 +315,22 @@ void Addressee::mergeContact( const Addressee& ad ) | |||
315 | setRevision( ad.revision() ); | 315 | setRevision( ad.revision() ); |
316 | } | 316 | } |
317 | 317 | ||
318 | void Addressee::simplifyAddresses() | ||
319 | { | ||
320 | if ( mData->addresses.count() < 3 ) return ; | ||
321 | int count = 0; | ||
322 | Address::List list; | ||
323 | Address::List::Iterator it; | ||
324 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | ||
325 | if ( count > 1 ) | ||
326 | list.append( *it ); | ||
327 | ++count; | ||
328 | } | ||
329 | for( it = list.begin(); it != list.end(); ++it ) { | ||
330 | removeAddress( (*it) ); | ||
331 | } | ||
332 | } | ||
333 | |||
318 | // removes all emails but the first | 334 | // removes all emails but the first |
319 | // needed by phone sync | 335 | // needed by phone sync |
320 | void Addressee::simplifyEmails() | 336 | void Addressee::simplifyEmails() |
diff --git a/kabc/addressee.h b/kabc/addressee.h index 4cafa86..44f0629 100644 --- a/kabc/addressee.h +++ b/kabc/addressee.h | |||
@@ -118,6 +118,7 @@ class Addressee | |||
118 | QString originalExternalUID() const; | 118 | QString originalExternalUID() const; |
119 | void mergeContact( const Addressee& ad ); | 119 | void mergeContact( const Addressee& ad ); |
120 | void simplifyEmails(); | 120 | void simplifyEmails(); |
121 | void simplifyAddresses(); | ||
121 | void simplifyPhoneNumbers(); | 122 | void simplifyPhoneNumbers(); |
122 | void simplifyPhoneNumberTypes(); | 123 | void simplifyPhoneNumberTypes(); |
123 | 124 | ||
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 939296f..9b059d3 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -318,10 +318,11 @@ KABCore::~KABCore() | |||
318 | //saveSettings(); | 318 | //saveSettings(); |
319 | //KABPrefs::instance()->writeConfig(); | 319 | //KABPrefs::instance()->writeConfig(); |
320 | delete AddresseeConfig::instance(); | 320 | delete AddresseeConfig::instance(); |
321 | mAddressBook = 0; | 321 | mAddressBook = 0; |
322 | KABC::StdAddressBook::close(); | 322 | KABC::StdAddressBook::close(); |
323 | |||
324 | delete syncManager; | ||
323 | 325 | ||
324 | delete syncManager; | ||
325 | } | 326 | } |
326 | 327 | ||
327 | void KABCore::restoreSettings() | 328 | void KABCore::restoreSettings() |
@@ -702,6 +703,7 @@ void KABCore::export2phone() | |||
702 | a.simplifyEmails(); | 703 | a.simplifyEmails(); |
703 | a.simplifyPhoneNumbers(); | 704 | a.simplifyPhoneNumbers(); |
704 | a.simplifyPhoneNumberTypes(); | 705 | a.simplifyPhoneNumberTypes(); |
706 | a.simplifyAddresses(); | ||
705 | 707 | ||
706 | if (description.isEmpty()) | 708 | if (description.isEmpty()) |
707 | description = a.formattedName(); | 709 | description = a.formattedName(); |
diff --git a/kaddressbook/kabprefs.cpp b/kaddressbook/kabprefs.cpp index 552c933..dded2bf 100644 --- a/kaddressbook/kabprefs.cpp +++ b/kaddressbook/kabprefs.cpp | |||
@@ -82,8 +82,9 @@ KABPrefs::KABPrefs() | |||
82 | 82 | ||
83 | KABPrefs::~KABPrefs() | 83 | KABPrefs::~KABPrefs() |
84 | { | 84 | { |
85 | //qDebug("KABPrefs::~KABPrefs() "); | ||
85 | } | 86 | } |
86 | 87 | ||
87 | KABPrefs *KABPrefs::instance() | 88 | KABPrefs *KABPrefs::instance() |
88 | { | 89 | { |
89 | if ( !sInstance ) { | 90 | if ( !sInstance ) { |
diff --git a/kalarmd/simplealarmdaemonapplet.cpp b/kalarmd/simplealarmdaemonapplet.cpp index bb89606..7e8125d 100644 --- a/kalarmd/simplealarmdaemonapplet.cpp +++ b/kalarmd/simplealarmdaemonapplet.cpp | |||
@@ -2,7 +2,6 @@ | |||
2 | 2 | ||
3 | #include "simplealarmdaemonimpl.h" | 3 | #include "simplealarmdaemonimpl.h" |
4 | 4 | ||
5 | #include <qpe/global.h> | ||
6 | #include <qcopchannel_qws.h> | 5 | #include <qcopchannel_qws.h> |
7 | #include <qlabel.h> | 6 | #include <qlabel.h> |
8 | #include <qapp.h> | 7 | #include <qapp.h> |
diff --git a/kmicromail/koprefs.cpp b/kmicromail/koprefs.cpp index 6484c45..c0200ff 100644 --- a/kmicromail/koprefs.cpp +++ b/kmicromail/koprefs.cpp | |||
@@ -68,261 +68,6 @@ KOPrefs::KOPrefs() : | |||
68 | addItemFont("Compose Font",&mComposeFont); | 68 | addItemFont("Compose Font",&mComposeFont); |
69 | addItemFont("Read Font",&mReadFont); | 69 | addItemFont("Read Font",&mReadFont); |
70 | 70 | ||
71 | #if 0 | ||
72 | mTimeBarFont = QFont("helvetica",10);//,QFont::Bold); | ||
73 | mDefaultViewFont = QFont("helvetica",10); | ||
74 | mDefaultMonthViewFont = QFont("helvetica",8); | ||
75 | mMarcusBainsFont= QFont("helvetica",10); | ||
76 | mDateNavigatorFont= QFont("helvetica",10, QFont::Bold); | ||
77 | mEditBoxFont = QFont("helvetica",12); | ||
78 | mJornalViewFont = QFont("helvetica",12); | ||
79 | |||
80 | KPrefs::setCurrentGroup("General"); | ||
81 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | ||
82 | |||
83 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); | ||
84 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); | ||
85 | addItemBool("ShowIconSearch",&mShowIconSearch,true); | ||
86 | addItemBool("ShowIconList",&mShowIconList,true); | ||
87 | addItemBool("ShowIconDay1",&mShowIconDay1,true); | ||
88 | addItemBool("ShowIconDay5",&mShowIconDay5,true); | ||
89 | addItemBool("ShowIconDay7",&mShowIconDay7,true); | ||
90 | addItemBool("ShowIconMonth",&mShowIconMonth,true); | ||
91 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); | ||
92 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); | ||
93 | addItemBool("ShowIconBack",&mShowIconBack,true); | ||
94 | addItemBool("ShowIconToday",&mShowIconToday,true); | ||
95 | addItemBool("ShowIconForward",&mShowIconForward,true); | ||
96 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); | ||
97 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,false); | ||
98 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); | ||
99 | addItemBool("ShowIconNext",&mShowIconNext,true); | ||
100 | addItemBool("ShowIconJournal",&mShowIconJournal,true); | ||
101 | addItemBool("ShowIconStretch",&mShowIconStretch,true); | ||
102 | addItemBool("LanguageChanged",&mLanguageChanged,false); | ||
103 | |||
104 | addItemBool("AskForQuit",&mAskForQuit,false); | ||
105 | |||
106 | #ifndef DESKTOP_VERSION | ||
107 | addItemBool("ShowFullMenu",&mShowFullMenu,false); | ||
108 | #else | ||
109 | addItemBool("ShowFullMenu",&mShowFullMenu,true); | ||
110 | #endif | ||
111 | addItemBool("ToolBarHor",&mToolBarHor, true ); | ||
112 | addItemBool("ToolBarUp",&mToolBarUp, false ); | ||
113 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); | ||
114 | addItemInt("Whats Next Days",&mWhatsNextDays,3); | ||
115 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); | ||
116 | |||
117 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); | ||
118 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); | ||
119 | addItemInt("AllDay Size",&mAllDaySize,28); | ||
120 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; | ||
121 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); | ||
122 | |||
123 | addItemStringList("LocationDefaults",&mLocationDefaults ); | ||
124 | addItemStringList("EventSummary User",&mEventSummaryUser); | ||
125 | addItemStringList("TodoSummary User",&mTodoSummaryUser); | ||
126 | |||
127 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | ||
128 | addItemBool("Enable Project View",&mEnableProjectView,false); | ||
129 | addItemBool("Auto Save",&mAutoSave,false); | ||
130 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); | ||
131 | addItemBool("Confirm Deletes",&mConfirm,true); | ||
132 | addItemString("Archive File",&mArchiveFile); | ||
133 | addItemString("Html Export File",&mHtmlExportFile, | ||
134 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); | ||
135 | addItemBool("Html With Save",&mHtmlWithSave,false); | ||
136 | |||
137 | KPrefs::setCurrentGroup("Personal Settings"); | ||
138 | |||
139 | addItemInt("Mail Client",&mMailClient,MailClientKMail); | ||
140 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); | ||
141 | addItemBool("Bcc",&mBcc,false); | ||
142 | |||
143 | KPrefs::setCurrentGroup("Time & Date"); | ||
144 | |||
145 | // addItemString("Time Zone",&mTimeZone,"+0100"); | ||
146 | addItemString("TimeZoneName",&mTimeZoneId,i18n ("+01:00 Europe/Oslo(CET)") ); | ||
147 | // addItemInt("TimeZoneOffset",&mTimeZoneOffset,60); | ||
148 | addItemBool("UseDaylightsaving",&mUseDaylightsaving,true); | ||
149 | addItemInt("DaylightsavingStart",&mDaylightsavingStart,90); | ||
150 | addItemInt("DaylightsavingEnd",&mDaylightsavingEnd,304); | ||
151 | |||
152 | |||
153 | addItemInt("Default Start Time",&mStartTime,10); | ||
154 | addItemInt("Default Duration",&mDefaultDuration,2); | ||
155 | addItemInt("Default Alarm Time",&mAlarmTime,3); | ||
156 | addItemInt("Daylight Savings",&mDaylightSavings,0); | ||
157 | KPrefs::setCurrentGroup("AlarmSettings"); | ||
158 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); | ||
159 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); | ||
160 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); | ||
161 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); | ||
162 | |||
163 | |||
164 | KPrefs::setCurrentGroup("Calendar"); | ||
165 | |||
166 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); | ||
167 | |||
168 | KPrefs::setCurrentGroup("Fonts"); | ||
169 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); | ||
170 | addItemFont("TimeBar Font",&mTimeBarFont); | ||
171 | addItemFont("MonthView Font",&mMonthViewFont); | ||
172 | addItemFont("AgendaView Font",&mAgendaViewFont); | ||
173 | addItemFont("MarcusBains Font",&mMarcusBainsFont); | ||
174 | addItemFont("TimeLabels Font",&mTimeLabelsFont); | ||
175 | addItemFont("TodoView Font",&mTodoViewFont); | ||
176 | addItemFont("ListView Font",&mListViewFont); | ||
177 | addItemFont("DateNavigator Font",&mDateNavigatorFont); | ||
178 | addItemFont("EditBox Font",&mEditBoxFont); | ||
179 | addItemFont("JournalView Font",&mJornalViewFont); | ||
180 | addItemFont("WhatsNextView Font",&mWhatsNextFont); | ||
181 | addItemFont("EventView Font",&mEventViewFont); | ||
182 | |||
183 | // KPrefs::setCurrentGroup("SyncProfiles"); | ||
184 | // addItemString("LocalMachineName",&mLocalMachineName, "undefined"); | ||
185 | // addItemStringList("SyncProfileNames",&mSyncProfileNames); | ||
186 | // addItemStringList("ExternSyncProfiles",&mExternSyncProfileNames); | ||
187 | |||
188 | KPrefs::setCurrentGroup("RemoteSyncing"); | ||
189 | // addItemBool("UsePasswd",&mUsePassWd,false); | ||
190 | // addItemBool("WriteBackFile",&mWriteBackFile,true); | ||
191 | // addItemBool("WriteBackExistingOnly",&mWriteBackExistingOnly,false); | ||
192 | // addItemBool("AskForPreferences",&mAskForPreferences,true); | ||
193 | // addItemBool("ShowSyncSummary",&mShowSyncSummary,true); | ||
194 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); | ||
195 | addItemInt("LastSyncTime",&mLastSyncTime,0); | ||
196 | addItemInt("SyncAlgoPrefs",&mSyncAlgoPrefs,3); | ||
197 | addItemInt("RingSyncAlgoPrefs",&mRingSyncAlgoPrefs,3); | ||
198 | |||
199 | #ifdef _WIN32_ | ||
200 | QString hdp= locateLocal("data","korganizer")+"\\\\"; | ||
201 | #else | ||
202 | QString hdp= locateLocal("data","korganizer")+"/"; | ||
203 | #endif | ||
204 | // addItemString("RemoteIP",&mRemoteIP, "192.168.0.65"); | ||
205 | // addItemString("RemoteUser",&mRemoteUser, "zaurus"); | ||
206 | // addItemString("RemotePassWd",&mRemotePassWd, ""); | ||
207 | // addItemString("RemoteFile", &mRemoteFile, hdp+"mycalendar.ics"); | ||
208 | // addItemString("LocalTempFile",&mLocalTempFile, "/tmp/tempsyncfile.ics" ); | ||
209 | |||
210 | |||
211 | KPrefs::setCurrentGroup("LoadSaveFileNames"); | ||
212 | |||
213 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); | ||
214 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); | ||
215 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); | ||
216 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); | ||
217 | addItemString("LastSyncedLocalFile", &mLastSyncedLocalFile ,hdp +"lastsync.ics" ); | ||
218 | |||
219 | |||
220 | KPrefs::setCurrentGroup("Locale"); | ||
221 | addItemInt("PreferredLanguage",&mPreferredLanguage,0); | ||
222 | addItemInt("PreferredTime",&mPreferredTime,0); | ||
223 | addItemInt("PreferredDate",&mPreferredDate,0); | ||
224 | addItemBool("WeekStartsOnSunday",&mWeekStartsOnSunday,false); | ||
225 | addItemBool("QuickSavingWOUnicode",&mUseQuicksave,false); | ||
226 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); | ||
227 | addItemString("UserDateFormatLong", &mUserDateFormatLong, "%A %d %b %y"); | ||
228 | addItemString("UserDateFormatShort", &mUserDateFormatShort, "%aK %d.%m.%y"); | ||
229 | |||
230 | |||
231 | KPrefs::setCurrentGroup("Colors"); | ||
232 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); | ||
233 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); | ||
234 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); | ||
235 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); | ||
236 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); | ||
237 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); | ||
238 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); | ||
239 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); | ||
240 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); | ||
241 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); | ||
242 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); | ||
243 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); | ||
244 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); | ||
245 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); | ||
246 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); | ||
247 | addItemBool("UseAppColors",&mUseAppColors,false); | ||
248 | |||
249 | |||
250 | |||
251 | KPrefs::setCurrentGroup("Views"); | ||
252 | addItemInt("Hour Size",&mHourSize,8); | ||
253 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); | ||
254 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); | ||
255 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); | ||
256 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); | ||
257 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); | ||
258 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); | ||
259 | addItemBool("Enable ToolTips",&mEnableToolTips,false); | ||
260 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); | ||
261 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); | ||
262 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); | ||
263 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); | ||
264 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,false); | ||
265 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); | ||
266 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); | ||
267 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); | ||
268 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); | ||
269 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true); | ||
270 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); | ||
271 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); | ||
272 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); | ||
273 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); | ||
274 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); | ||
275 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,false); | ||
276 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); | ||
277 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); | ||
278 | #ifdef DESKTOP_VERSION | ||
279 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); | ||
280 | #else | ||
281 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); | ||
282 | #endif | ||
283 | addItemInt("Day Begins",&mDayBegins,7); | ||
284 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); | ||
285 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); | ||
286 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); | ||
287 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); | ||
288 | |||
289 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); | ||
290 | addItemBool("Full View Month",&mFullViewMonth,true); | ||
291 | addItemBool("Full View Todo",&mFullViewTodo,true); | ||
292 | addItemBool("Quick Todo",&mEnableQuickTodo,false); | ||
293 | |||
294 | addItemInt("Next X Days",&mNextXDays,3); | ||
295 | |||
296 | KPrefs::setCurrentGroup("Printer"); | ||
297 | |||
298 | KPrefs::setCurrentGroup("Layout"); | ||
299 | |||
300 | addItemBool("CompactDialogs",&mCompactDialogs,false); | ||
301 | addItemBool("VerticalScreen",&mVerticalScreen,true); | ||
302 | |||
303 | KPrefs::setCurrentGroup("KOrganizer Plugins"); | ||
304 | |||
305 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); | ||
306 | |||
307 | KPrefs::setCurrentGroup("Group Scheduling"); | ||
308 | |||
309 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); | ||
310 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); | ||
311 | addItemStringList("AdditionalMails",&mAdditionalMails,""); | ||
312 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); | ||
313 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); | ||
314 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); | ||
315 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); | ||
316 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); | ||
317 | |||
318 | KPrefs::setCurrentGroup( "Editors" ); | ||
319 | |||
320 | addItemStringList( "EventTemplates", &mEventTemplates ); | ||
321 | addItemStringList( "TodoTemplates", &mTodoTemplates ); | ||
322 | |||
323 | addItemInt("DestinationPolicy",&mDestination,standardDestination); | ||
324 | |||
325 | #endif | ||
326 | 71 | ||
327 | } | 72 | } |
328 | 73 | ||
@@ -331,12 +76,7 @@ KOPrefs::~KOPrefs() | |||
331 | { | 76 | { |
332 | if (mInstance == this) | 77 | if (mInstance == this) |
333 | mInstance = insd.setObject(0); | 78 | mInstance = insd.setObject(0); |
334 | #if 0 | 79 | |
335 | setLocaleDict( 0 ); | ||
336 | if ( mLocaleDict ) | ||
337 | delete mLocaleDict; | ||
338 | //qDebug("KOPrefs::~KOPrefs() "); | ||
339 | #endif | ||
340 | } | 80 | } |
341 | 81 | ||
342 | 82 | ||
@@ -369,133 +109,14 @@ void KOPrefs::setTimeZoneIdDefault() | |||
369 | 109 | ||
370 | void KOPrefs::usrReadConfig() | 110 | void KOPrefs::usrReadConfig() |
371 | { | 111 | { |
372 | #if 0 | ||
373 | mLocaleDict = 0; | ||
374 | // pending LR fix translation | ||
375 | // qDebug("KOPrefs::usrReadConfig() fix translation "); | ||
376 | if ( mPreferredLanguage > 0 && mPreferredLanguage < 4 ) { | ||
377 | if ( mPreferredLanguage == 1 ) { | ||
378 | mLocaleDict = new QDict<QString>; | ||
379 | int i = 0; | ||
380 | QString fw ( germanwords[i] [0]); | ||
381 | while ( !fw.isEmpty() ) { | ||
382 | mLocaleDict->insert( fw, new QString (germanwords[i] [1] )); | ||
383 | ++i; | ||
384 | fw = germanwords[i] [0]; | ||
385 | } | ||
386 | |||
387 | setLocaleDict( mLocaleDict ); | ||
388 | } else { | ||
389 | QString fileName ; | ||
390 | if ( mPreferredLanguage == 3 ) | ||
391 | fileName = MainWindow::resourcePath()+"usertranslation.txt"; | ||
392 | else if ( mPreferredLanguage == 2 ) | ||
393 | fileName = MainWindow::resourcePath()+"frenchtranslation.txt"; | ||
394 | QFile file( fileName ); | ||
395 | if (file.open( IO_ReadOnly ) ) { | ||
396 | QTextStream ts( &file ); | ||
397 | ts.setEncoding( QTextStream::Latin1 ); | ||
398 | //ts.setCodec( QTextCodec::latin1 ); | ||
399 | QString text = ts.read(); | ||
400 | file.close(); | ||
401 | text.replace( QRegExp("\\\\n"), "\n" ); | ||
402 | QString line; | ||
403 | QString we; | ||
404 | QString wt; | ||
405 | int br = 0; | ||
406 | int nbr; | ||
407 | nbr = text.find ( "},", br ); | ||
408 | line = text.mid( br, nbr - br ); | ||
409 | br = nbr+1; | ||
410 | int se, ee, st, et; | ||
411 | mLocaleDict = new QDict<QString>; | ||
412 | QString end = "{ \"\",\"\" }"; | ||
413 | while ( (line != end) && (br > 1) ) { | ||
414 | //qDebug("%d *%s* ", br, line.latin1()); | ||
415 | se = line.find("\"")+1; | ||
416 | et = line.findRev("\"",-1); | ||
417 | ee = line.find("\",\""); | ||
418 | st = ee+3; | ||
419 | we = line.mid( se, ee-se ); | ||
420 | wt = line.mid( st, et-st ); | ||
421 | //qDebug("*%s* *%s* ", we.latin1(), wt.latin1()); | ||
422 | mLocaleDict->insert( we, new QString (wt) ); | ||
423 | nbr = text.find ( "}", br ); | ||
424 | line = text.mid( br, nbr - br ); | ||
425 | br = nbr+1; | ||
426 | } | ||
427 | //qDebug("end *%s* ", end.latin1()); | ||
428 | |||
429 | setLocaleDict( mLocaleDict ); | ||
430 | } else { | ||
431 | qDebug("KO: Cannot find translation file %s",fileName.latin1() ); | ||
432 | } | ||
433 | |||
434 | } | ||
435 | } | ||
436 | config()->setGroup("General"); | ||
437 | |||
438 | mCustomCategories = config()->readListEntry("Custom Categories"); | ||
439 | if ( KOPrefs::instance()->mLanguageChanged ) { | ||
440 | mLocationDefaults.clear(); | ||
441 | mEventSummaryUser.clear(); | ||
442 | mTodoSummaryUser.clear(); | ||
443 | } | ||
444 | if (mLocationDefaults.isEmpty()) { | ||
445 | mLocationDefaults << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") | ||
446 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") | ||
447 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; | ||
448 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") | ||
449 | mLocationDefaults.sort(); | ||
450 | } | ||
451 | |||
452 | if (mEventSummaryUser.isEmpty()) { | ||
453 | mEventSummaryUser = getDefaultList() ; | ||
454 | } | ||
455 | if (mTodoSummaryUser.isEmpty()) { | ||
456 | mTodoSummaryUser = getDefaultList() ; | ||
457 | } | ||
458 | |||
459 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); | ||
460 | |||
461 | config()->setGroup("Personal Settings"); | ||
462 | mName = config()->readEntry("user_name",""); | ||
463 | mEmail = config()->readEntry("user_email",""); | ||
464 | fillMailDefaults(); | ||
465 | 112 | ||
466 | config()->setGroup("Category Colors"); | ||
467 | QStringList::Iterator it; | ||
468 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | ||
469 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); | ||
470 | |||
471 | } | ||
472 | |||
473 | if (mTimeZoneId.isEmpty()) { | ||
474 | setTimeZoneIdDefault(); | ||
475 | } | ||
476 | #endif | ||
477 | KPimPrefs::usrReadConfig(); | 113 | KPimPrefs::usrReadConfig(); |
478 | } | 114 | } |
479 | 115 | ||
480 | 116 | ||
481 | void KOPrefs::usrWriteConfig() | 117 | void KOPrefs::usrWriteConfig() |
482 | { | 118 | { |
483 | #if 0 | ||
484 | config()->setGroup("General"); | ||
485 | config()->writeEntry("Custom Categories",mCustomCategories); | ||
486 | |||
487 | config()->setGroup("Personal Settings"); | ||
488 | config()->writeEntry("user_name",mName); | ||
489 | config()->writeEntry("user_email",mEmail); | ||
490 | 119 | ||
491 | config()->setGroup("Category Colors"); | ||
492 | QDictIterator<QColor> it(mCategoryColors); | ||
493 | while (it.current()) { | ||
494 | config()->writeEntry(it.currentKey(),*(it.current())); | ||
495 | ++it; | ||
496 | } | ||
497 | |||
498 | #endif | ||
499 | KPimPrefs::usrWriteConfig(); | 120 | KPimPrefs::usrWriteConfig(); |
500 | } | 121 | } |
501 | 122 | ||
diff --git a/korganizer/main.cpp b/korganizer/main.cpp index 7f9b5c6..16186c0 100644 --- a/korganizer/main.cpp +++ b/korganizer/main.cpp | |||
@@ -2,6 +2,7 @@ | |||
2 | 2 | ||
3 | #ifndef DESKTOP_VERSION | 3 | #ifndef DESKTOP_VERSION |
4 | #include <qpe/qpeapplication.h> | 4 | #include <qpe/qpeapplication.h> |
5 | #include <qcopchannel_qws.h> | ||
5 | #include <qpe/global.h> | 6 | #include <qpe/global.h> |
6 | #include <stdlib.h> | 7 | #include <stdlib.h> |
7 | #else | 8 | #else |
@@ -79,6 +80,8 @@ int main( int argc, char **argv ) | |||
79 | KStandardDirs::setAppDir( QDir::convertSeparators(locateLocal("data", "korganizer"))); | 80 | KStandardDirs::setAppDir( QDir::convertSeparators(locateLocal("data", "korganizer"))); |
80 | MainWindow m; | 81 | MainWindow m; |
81 | #ifndef DESKTOP_VERSION | 82 | #ifndef DESKTOP_VERSION |
83 | QCopChannel* c1 = new QCopChannel("QPE/Application/datebook",&m, "channel" ) ; | ||
84 | QObject::connect( c1, SIGNAL (received ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); | ||
82 | QObject::connect( &a, SIGNAL (appMessage ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); | 85 | QObject::connect( &a, SIGNAL (appMessage ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); |
83 | a.showMainWidget(&m ); | 86 | a.showMainWidget(&m ); |
84 | #else | 87 | #else |
@@ -96,6 +99,9 @@ int main( int argc, char **argv ) | |||
96 | 99 | ||
97 | } | 100 | } |
98 | a.exec(); | 101 | a.exec(); |
102 | #ifndef DESKTOP_VERSION | ||
103 | delete c1; | ||
104 | #endif | ||
99 | 105 | ||
100 | } | 106 | } |
101 | qDebug("KO: Bye! "); | 107 | qDebug("KO: Bye! "); |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 2d17986..3c16458 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -130,7 +130,6 @@ MainWindow::MainWindow( QWidget *parent, const char *name, QString msg) : | |||
130 | #ifdef DESKTOP_VERSION | 130 | #ifdef DESKTOP_VERSION |
131 | setFont( QFont("Arial"), 14 ); | 131 | setFont( QFont("Arial"), 14 ); |
132 | #endif | 132 | #endif |
133 | mServerSocket = 0; | ||
134 | mClosed = false; | 133 | mClosed = false; |
135 | //QString confFile = KStandardDirs::appDir() + "config/korganizerrc"; | 134 | //QString confFile = KStandardDirs::appDir() + "config/korganizerrc"; |
136 | QString confFile = locateLocal("config","korganizerrc"); | 135 | QString confFile = locateLocal("config","korganizerrc"); |
@@ -279,10 +278,8 @@ MainWindow::~MainWindow() | |||
279 | { | 278 | { |
280 | //qDebug("MainWindow::~MainWindow() "); | 279 | //qDebug("MainWindow::~MainWindow() "); |
281 | //save toolbar location | 280 | //save toolbar location |
282 | delete mServerSocket; | ||
283 | delete mCalendar; | 281 | delete mCalendar; |
284 | delete KOPrefs::instance(); | 282 | delete mSyncManager; |
285 | delete KIncidenceFormatter::instance(); | ||
286 | 283 | ||
287 | 284 | ||
288 | } | 285 | } |
@@ -482,7 +479,6 @@ void MainWindow::initActions() | |||
482 | //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); | 479 | //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); |
483 | menuBar1->setMaximumSize( menuBar1->sizeHint( )); | 480 | menuBar1->setMaximumSize( menuBar1->sizeHint( )); |
484 | } | 481 | } |
485 | connect ( syncMenu, SIGNAL( activated ( int ) ), this, SLOT (slotSyncMenu( int ) ) ); | ||
486 | connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); | 482 | connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); |
487 | connect ( selectFilterMenu, SIGNAL( aboutToShow () ), this, SLOT (fillFilterMenu() ) ); | 483 | connect ( selectFilterMenu, SIGNAL( aboutToShow () ), this, SLOT (fillFilterMenu() ) ); |
488 | 484 | ||
diff --git a/korganizer/mainwindow.h b/korganizer/mainwindow.h index ee7bd87..e3383ed 100644 --- a/korganizer/mainwindow.h +++ b/korganizer/mainwindow.h | |||
@@ -92,8 +92,6 @@ class MainWindow : public QMainWindow | |||
92 | void syncFileRequest(); | 92 | void syncFileRequest(); |
93 | private: | 93 | private: |
94 | KSyncManager* mSyncManager; | 94 | KSyncManager* mSyncManager; |
95 | //QTimer* mTimerCommandSocket; | ||
96 | KServerSocket * mServerSocket; | ||
97 | bool mClosed; | 95 | bool mClosed; |
98 | void saveOnClose(); | 96 | void saveOnClose(); |
99 | bool mFlagKeyPressed; | 97 | bool mFlagKeyPressed; |
diff --git a/libkdepim/kpimglobalprefs.cpp b/libkdepim/kpimglobalprefs.cpp index b71e18d..5081b26 100644 --- a/libkdepim/kpimglobalprefs.cpp +++ b/libkdepim/kpimglobalprefs.cpp | |||
@@ -62,9 +62,6 @@ KPimGlobalPrefs::KPimGlobalPrefs( const QString &name ) | |||
62 | addItemInt("DaylightsavingStart",&mDaylightsavingStart,90); | 62 | addItemInt("DaylightsavingStart",&mDaylightsavingStart,90); |
63 | addItemInt("DaylightsavingEnd",&mDaylightsavingEnd,304); | 63 | addItemInt("DaylightsavingEnd",&mDaylightsavingEnd,304); |
64 | 64 | ||
65 | |||
66 | |||
67 | |||
68 | KPrefs::setCurrentGroup( "ExternalApplications" ); | 65 | KPrefs::setCurrentGroup( "ExternalApplications" ); |
69 | 66 | ||
70 | addItemInt( "EmailChannelType", &mEmailClient, OMPI_EMC ); | 67 | addItemInt( "EmailChannelType", &mEmailClient, OMPI_EMC ); |
@@ -99,15 +96,14 @@ KPimGlobalPrefs::KPimGlobalPrefs( const QString &name ) | |||
99 | addItemString( "SIPChannelMessage", &mSipOtherMessage, "" ); | 96 | addItemString( "SIPChannelMessage", &mSipOtherMessage, "" ); |
100 | addItemString( "SIPChannelParameters", &mSipOtherMessageParameters, "" ); | 97 | addItemString( "SIPChannelParameters", &mSipOtherMessageParameters, "" ); |
101 | 98 | ||
102 | |||
103 | KPrefs::setCurrentGroup( "PhoneAccess" ); | 99 | KPrefs::setCurrentGroup( "PhoneAccess" ); |
104 | addItemString("Ex2PhoneDevice",&mEx2PhoneDevice,"/dev/ircomm"); | 100 | addItemString("Ex2PhoneDevice",&mEx2PhoneDevice,"/dev/ircomm"); |
105 | addItemString("Ex2PhoneConnection",&mEx2PhoneConnection,"irda"); | 101 | addItemString("Ex2PhoneConnection",&mEx2PhoneConnection,"irda"); |
106 | addItemString("Ex2PhoneModel",&mEx2PhoneModel,"6310i"); | 102 | addItemString("Ex2PhoneModel",&mEx2PhoneModel,"6310i"); |
107 | 103 | ||
108 | |||
109 | } | 104 | } |
110 | 105 | ||
106 | |||
111 | void KPimGlobalPrefs::setGlobalConfig() | 107 | void KPimGlobalPrefs::setGlobalConfig() |
112 | { | 108 | { |
113 | 109 | ||
@@ -126,7 +122,9 @@ void KPimGlobalPrefs::setGlobalConfig() | |||
126 | 122 | ||
127 | } | 123 | } |
128 | KPimGlobalPrefs::~KPimGlobalPrefs() | 124 | KPimGlobalPrefs::~KPimGlobalPrefs() |
129 | { | 125 | { |
126 | //qDebug("KPimGlobalPrefs::~KPimGlobalPrefs() "); | ||
127 | writeConfig(); | ||
130 | } | 128 | } |
131 | 129 | ||
132 | KPimGlobalPrefs *KPimGlobalPrefs::instance() | 130 | KPimGlobalPrefs *KPimGlobalPrefs::instance() |
diff --git a/microkde/kstaticdeleter.h b/microkde/kstaticdeleter.h index 190f3e4..dfd3929 100644 --- a/microkde/kstaticdeleter.h +++ b/microkde/kstaticdeleter.h | |||
@@ -28,8 +28,10 @@ class KStaticDeleter | |||
28 | { | 28 | { |
29 | public: | 29 | public: |
30 | KStaticDeleter() {}; | 30 | KStaticDeleter() {}; |
31 | type *setObject( type *obj, bool isArray = false) { return obj; } | 31 | type *setObject( type *obj, bool isArray = false) { _mobj = obj;return obj; } |
32 | virtual ~KStaticDeleter() {}; | 32 | virtual ~KStaticDeleter() {delete _mobj;}; |
33 | private: | ||
34 | type* _mobj; | ||
33 | }; | 35 | }; |
34 | 36 | ||
35 | #endif | 37 | #endif |