summaryrefslogtreecommitdiffabout
path: root/kmicromail
authorzautrix <zautrix>2004-09-15 06:15:59 (UTC)
committer zautrix <zautrix>2004-09-15 06:15:59 (UTC)
commit35b8948c6c203473866c74f1d13185a848454e04 (patch) (unidiff)
treeb6d8eca9863cbca8e24d474d8c895065faa17458 /kmicromail
parentf1f43030eefa765950cb501aece6cc71fb4e9859 (diff)
downloadkdepimpi-35b8948c6c203473866c74f1d13185a848454e04.zip
kdepimpi-35b8948c6c203473866c74f1d13185a848454e04.tar.gz
kdepimpi-35b8948c6c203473866c74f1d13185a848454e04.tar.bz2
Mail config added
Diffstat (limited to 'kmicromail') (more/less context) (show whitespace changes)
-rw-r--r--kmicromail/composemail.cpp30
-rw-r--r--kmicromail/composemail.h1
-rw-r--r--kmicromail/kmicromailE.pro4
-rw-r--r--kmicromail/koprefs.cpp507
-rw-r--r--kmicromail/koprefs.cpp~568
-rw-r--r--kmicromail/koprefs.h81
-rw-r--r--kmicromail/koprefs.h~304
-rw-r--r--kmicromail/koprefsdialog.cpp1706
-rw-r--r--kmicromail/koprefsdialog.cpp~1609
-rw-r--r--kmicromail/koprefsdialog.h176
-rw-r--r--kmicromail/koprefsdialog.h~161
-rw-r--r--kmicromail/main.cpp3
-rw-r--r--kmicromail/opiemail.cpp22
-rw-r--r--kmicromail/opiemail.h3
-rw-r--r--kmicromail/settingsdialog.cpp46
-rw-r--r--kmicromail/settingsdialog.h3
-rw-r--r--kmicromail/settingsdialogui.ui65
-rw-r--r--kmicromail/viewmail.cpp10
18 files changed, 5228 insertions, 71 deletions
diff --git a/kmicromail/composemail.cpp b/kmicromail/composemail.cpp
index 9b799b3..e6f7daa 100644
--- a/kmicromail/composemail.cpp
+++ b/kmicromail/composemail.cpp
@@ -12,7 +12,6 @@
12//#include <opie2/odebug.h> 12//#include <opie2/odebug.h>
13#include <kfiledialog.h> 13#include <kfiledialog.h>
14//#include <qpe/resource.h> 14//#include <qpe/resource.h>
15#include <qpe/config.h>
16#include <qpe/global.h> 15#include <qpe/global.h>
17//#include <qpe/contact.h> 16//#include <qpe/contact.h>
18 17
@@ -35,18 +34,19 @@
35#include <libkdepim/externalapphandler.h> 34#include <libkdepim/externalapphandler.h>
36#endif //DESKTOP_VERSION 35#endif //DESKTOP_VERSION
37 36
37#include "koprefs.h"
38 38
39//using namespace Opie::Core; 39//using namespace Opie::Core;
40//using namespace Opie::Ui; 40//using namespace Opie::Ui;
41ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool modal ) 41ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool modal )
42 : ComposeMailUI( parent, name, modal ) 42 : ComposeMailUI( parent, name, modal )
43{ 43{
44
45 mPickLineEdit = 0; 44 mPickLineEdit = 0;
46 connect(ExternalAppHandler::instance(), SIGNAL(receivedNameEmailUidListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&)), 45 connect(ExternalAppHandler::instance(), SIGNAL(receivedNameEmailUidListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&)),
47 this, SLOT(insertAttendees(const QString&, const QStringList&, const QStringList&, const QStringList&))); 46 this, SLOT(insertAttendees(const QString&, const QStringList&, const QStringList&, const QStringList&)));
48 settings = s; 47 settings = s;
49 m_replyid = ""; 48 m_replyid = "";
49 if ( KOPrefs::instance()->mUseKapi) {
50 KConfig config( locateLocal("config", "kabcrc") ); 50 KConfig config( locateLocal("config", "kabcrc") );
51 config.setGroup( "General" ); 51 config.setGroup( "General" );
52 QString whoami_uid = config.readEntry( "WhoAmI" ); 52 QString whoami_uid = config.readEntry( "WhoAmI" );
@@ -56,6 +56,8 @@ ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool m
56 tr( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ), 56 tr( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ),
57 tr( "Ok" ) ); 57 tr( "Ok" ) );
58 58
59
60 fillSettings();
59 } else 61 } else
60 ExternalAppHandler::instance()->requestDetailsFromKAPI("", "sendbacklist", whoami_uid); 62 ExternalAppHandler::instance()->requestDetailsFromKAPI("", "sendbacklist", whoami_uid);
61 63
@@ -79,14 +81,18 @@ ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool m
79 } 81 }
80 senderNameEdit->setText(con.formattedName()); 82 senderNameEdit->setText(con.formattedName());
81#endif 83#endif
82 Config cfg( "mail" ); 84
83 cfg.setGroup( "Compose" ); 85 } else {
84 checkBoxLater->setChecked( cfg.readBoolEntry( "sendLater", false ) ); 86 fillSettings();
87 }
88 checkBoxLater->setChecked( KOPrefs::instance()->mSendLater );
85 89
86 attList->addColumn( tr( "Name" ) ); 90 attList->addColumn( tr( "Name" ) );
87 attList->addColumn( tr( "Size" ) ); 91 attList->addColumn( tr( "Size" ) );
88 QList<Account> accounts = settings->getAccounts(); 92 QList<Account> accounts = settings->getAccounts();
89 93
94 if ( QApplication::desktop()->width() < 320 )
95 smtpAccountBox->setMaximumWidth( 80 );
90 Account *it; 96 Account *it;
91 for ( it = accounts.first(); it; it = accounts.next() ) { 97 for ( it = accounts.first(); it; it = accounts.next() ) {
92 if ( it->getType()==MAILLIB::A_SMTP ) { 98 if ( it->getType()==MAILLIB::A_SMTP ) {
@@ -113,9 +119,21 @@ ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool m
113 return; 119 return;
114 } 120 }
115 connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) ); 121 connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) );
116 122 message->setFont ( KOPrefs::instance()->mComposeFont );
117} 123}
118 124
125void ComposeMail::fillSettings()
126{
127 if ( QApplication::desktop()->width() < 320 )
128 fromBox->setMaximumWidth( 100 );
129 QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail);
130 QStringList::ConstIterator sit = mailList.begin();
131 int pref = 0;
132 for (;sit!=mailList.end();++sit) {
133 fromBox->insertItem((*sit));
134 }
135 senderNameEdit->setText(KOPrefs::instance()->mName);
136}
119 137
120 138
121void ComposeMail::saveAsDraft() 139void ComposeMail::saveAsDraft()
diff --git a/kmicromail/composemail.h b/kmicromail/composemail.h
index e20d9e1..0fc41fb 100644
--- a/kmicromail/composemail.h
+++ b/kmicromail/composemail.h
@@ -56,6 +56,7 @@ protected slots:
56 56
57private slots: 57private slots:
58 void fillValues( int current ); 58 void fillValues( int current );
59 void fillSettings();
59 void pickAddress(); 60 void pickAddress();
60 void pickAddressTo(); 61 void pickAddressTo();
61 void pickAddressCC(); 62 void pickAddressCC();
diff --git a/kmicromail/kmicromailE.pro b/kmicromail/kmicromailE.pro
index 4fa026d..0d6cf86 100644
--- a/kmicromail/kmicromailE.pro
+++ b/kmicromail/kmicromailE.pro
@@ -16,6 +16,8 @@ HEADERS = defines.h \
16 selectstore.h \ 16 selectstore.h \
17 selectsmtp.h \ 17 selectsmtp.h \
18 nntpgroups.h \ 18 nntpgroups.h \
19 koprefs.h \
20 koprefsdialog.h \
19 nntpgroupsdlg.h 21 nntpgroupsdlg.h
20 22
21SOURCES = main.cpp \ 23SOURCES = main.cpp \
@@ -34,6 +36,8 @@ SOURCES = main.cpp \
34 selectstore.cpp \ 36 selectstore.cpp \
35 selectsmtp.cpp \ 37 selectsmtp.cpp \
36 nntpgroups.cpp \ 38 nntpgroups.cpp \
39 koprefs.cpp\
40 koprefsdialog.cpp\
37 nntpgroupsdlg.cpp 41 nntpgroupsdlg.cpp
38 42
39INTERFACES = editaccountsui.ui \ 43INTERFACES = editaccountsui.ui \
diff --git a/kmicromail/koprefs.cpp b/kmicromail/koprefs.cpp
new file mode 100644
index 0000000..6484c45
--- a/dev/null
+++ b/kmicromail/koprefs.cpp
@@ -0,0 +1,507 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23
24#include <time.h>
25#ifndef _WIN32_
26#include <unistd.h>
27#endif
28#include <qdir.h>
29#include <qtextstream.h>
30#include <qtextcodec.h>
31#include <qstring.h>
32#include <qregexp.h>
33#include <qfont.h>
34#include <qcolor.h>
35#include <qstringlist.h>
36#include <stdlib.h>
37
38#include <kglobal.h>
39#include <kconfig.h>
40#include <klocale.h>
41#include <kdebug.h>
42#include <kemailsettings.h>
43#include <kstaticdeleter.h>
44
45#include "koprefs.h"
46#include "mainwindow.h"
47
48
49KOPrefs *KOPrefs::mInstance = 0;
50static KStaticDeleter<KOPrefs> insd;
51
52KOPrefs::KOPrefs() :
53 KPimPrefs("kopiemailrc")
54{
55 mAppFont = QFont("helvetica",12);
56 mComposeFont = QFont("helvetica",12);
57 mReadFont = QFont("helvetica",12);
58
59 KPrefs::setCurrentGroup("General");
60 addItemString("SenderName",&mName,i18n ("Please set at") );
61 addItemString("SenderEmail",&mEmail,i18n ("Settings@General TAB") );
62 addItemBool("ViewMailAsHtml",&mViewAsHtml,false);
63 addItemBool("SendMailLater",&mSendLater,true);
64 addItemBool("UseKapi",&mUseKapi,false);
65
66 KPrefs::setCurrentGroup("Fonts");
67 addItemFont("Application Font",&mAppFont);
68 addItemFont("Compose Font",&mComposeFont);
69 addItemFont("Read Font",&mReadFont);
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
327}
328
329
330KOPrefs::~KOPrefs()
331{
332 if (mInstance == this)
333 mInstance = insd.setObject(0);
334#if 0
335 setLocaleDict( 0 );
336 if ( mLocaleDict )
337 delete mLocaleDict;
338 //qDebug("KOPrefs::~KOPrefs() ");
339#endif
340}
341
342
343KOPrefs *KOPrefs::instance()
344{
345 if (!mInstance) {
346 mInstance = insd.setObject(new KOPrefs());
347 mInstance->readConfig();
348 }
349
350 return mInstance;
351}
352
353void KOPrefs::usrSetDefaults()
354{
355
356}
357
358void KOPrefs::fillMailDefaults()
359{
360 if (mName.isEmpty()) mName = i18n("Anonymous");
361 if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere");
362}
363
364void KOPrefs::setTimeZoneIdDefault()
365{
366 mTimeZoneId = i18n("+01:00 Europe/Oslo(CET)");
367}
368
369
370void KOPrefs::usrReadConfig()
371{
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
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();
478}
479
480
481void KOPrefs::usrWriteConfig()
482{
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
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();
500}
501
502
503
504KConfig* KOPrefs::getConfig()
505{
506 return config();
507}
diff --git a/kmicromail/koprefs.cpp~ b/kmicromail/koprefs.cpp~
new file mode 100644
index 0000000..dd978bf
--- a/dev/null
+++ b/kmicromail/koprefs.cpp~
@@ -0,0 +1,568 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23
24#include <time.h>
25#ifndef _WIN32_
26#include <unistd.h>
27#endif
28#include <qdir.h>
29#include <qtextstream.h>
30#include <qtextcodec.h>
31#include <qstring.h>
32#include <qregexp.h>
33#include <qfont.h>
34#include <qcolor.h>
35#include <qstringlist.h>
36#include <stdlib.h>
37
38#include <kglobal.h>
39#include <kconfig.h>
40#include <klocale.h>
41#include <kdebug.h>
42#include <kemailsettings.h>
43#include <kstaticdeleter.h>
44
45#include "koprefs.h"
46#include "mainwindow.h"
47
48const char *germanwords[][2] = {
49#include "wordsgerman.h"
50 "", ""
51};
52
53KOPrefs *KOPrefs::mInstance = 0;
54static KStaticDeleter<KOPrefs> insd;
55
56KOPrefs::KOPrefs() :
57 KPimPrefs("korganizerrc")
58{
59 mCategoryColors.setAutoDelete(true);
60 mLocaleDict = 0;
61 fillMailDefaults();
62 mDefaultCategoryColor = QColor(175,210,255);//196,196,196);
63 QColor defaultHolidayColor = QColor(255,0,0);
64 QColor defaultHighlightColor = QColor(129,112,255);//64,64,255);
65 QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128);
66 QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160);
67 QColor defaultTodoDueTodayColor = QColor(255,220,100);
68 QColor defaultTodoOverdueColor = QColor(255,153,125);
69
70 mTimeBarFont = QFont("helvetica",10);//,QFont::Bold);
71 mDefaultViewFont = QFont("helvetica",10);
72 mDefaultMonthViewFont = QFont("helvetica",8);
73 mMarcusBainsFont= QFont("helvetica",10);
74 mDateNavigatorFont= QFont("helvetica",10, QFont::Bold);
75 mEditBoxFont = QFont("helvetica",12);
76 mJornalViewFont = QFont("helvetica",12);
77
78 KPrefs::setCurrentGroup("General");
79 addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false);
80
81 addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true);
82 addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true);
83 addItemBool("ShowIconSearch",&mShowIconSearch,true);
84 addItemBool("ShowIconList",&mShowIconList,true);
85 addItemBool("ShowIconDay1",&mShowIconDay1,true);
86 addItemBool("ShowIconDay5",&mShowIconDay5,true);
87 addItemBool("ShowIconDay7",&mShowIconDay7,true);
88 addItemBool("ShowIconMonth",&mShowIconMonth,true);
89 addItemBool("ShowIconTodoview",&mShowIconTodoview,true);
90 addItemBool("ShowIconBackFast",&mShowIconBackFast,true);
91 addItemBool("ShowIconBack",&mShowIconBack,true);
92 addItemBool("ShowIconToday",&mShowIconToday,true);
93 addItemBool("ShowIconForward",&mShowIconForward,true);
94 addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true);
95 addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,false);
96 addItemBool("ShowIconNextDays",&mShowIconNextDays,true);
97 addItemBool("ShowIconNext",&mShowIconNext,true);
98 addItemBool("ShowIconJournal",&mShowIconJournal,true);
99 addItemBool("ShowIconStretch",&mShowIconStretch,true);
100 addItemBool("LanguageChanged",&mLanguageChanged,false);
101
102 addItemBool("AskForQuit",&mAskForQuit,false);
103
104#ifndef DESKTOP_VERSION
105 addItemBool("ShowFullMenu",&mShowFullMenu,false);
106#else
107 addItemBool("ShowFullMenu",&mShowFullMenu,true);
108#endif
109 addItemBool("ToolBarHor",&mToolBarHor, true );
110 addItemBool("ToolBarUp",&mToolBarUp, false );
111 addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false );
112 addItemInt("Whats Next Days",&mWhatsNextDays,3);
113 addItemInt("Whats Next Prios",&mWhatsNextPrios,1);
114
115 addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true);
116 addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true);
117 addItemInt("AllDay Size",&mAllDaySize,28);
118 QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav";
119 addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm );
120
121 addItemStringList("LocationDefaults",&mLocationDefaults );
122 addItemStringList("EventSummary User",&mEventSummaryUser);
123 addItemStringList("TodoSummary User",&mTodoSummaryUser);
124
125 addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false);
126 addItemBool("Enable Project View",&mEnableProjectView,false);
127 addItemBool("Auto Save",&mAutoSave,false);
128 addItemInt("Auto Save Interval",&mAutoSaveInterval,3);
129 addItemBool("Confirm Deletes",&mConfirm,true);
130 addItemString("Archive File",&mArchiveFile);
131 addItemString("Html Export File",&mHtmlExportFile,
132 QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html"));
133 addItemBool("Html With Save",&mHtmlWithSave,false);
134
135 KPrefs::setCurrentGroup("Personal Settings");
136
137 addItemInt("Mail Client",&mMailClient,MailClientKMail);
138 addItemBool("Use Control Center Email",&mEmailControlCenter,false);
139 addItemBool("Bcc",&mBcc,false);
140
141 KPrefs::setCurrentGroup("Time & Date");
142
143 // addItemString("Time Zone",&mTimeZone,"+0100");
144 addItemString("TimeZoneName",&mTimeZoneId,i18n ("+01:00 Europe/Oslo(CET)") );
145 // addItemInt("TimeZoneOffset",&mTimeZoneOffset,60);
146 addItemBool("UseDaylightsaving",&mUseDaylightsaving,true);
147 addItemInt("DaylightsavingStart",&mDaylightsavingStart,90);
148 addItemInt("DaylightsavingEnd",&mDaylightsavingEnd,304);
149
150
151 addItemInt("Default Start Time",&mStartTime,10);
152 addItemInt("Default Duration",&mDefaultDuration,2);
153 addItemInt("Default Alarm Time",&mAlarmTime,3);
154 addItemInt("Daylight Savings",&mDaylightSavings,0);
155 KPrefs::setCurrentGroup("AlarmSettings");
156 addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20);
157 addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7);
158 addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5);
159 addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3);
160
161
162 KPrefs::setCurrentGroup("Calendar");
163
164 addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar);
165
166 KPrefs::setCurrentGroup("Fonts");
167 // qDebug(" KPrefs::setCurrentGroup(Fonts); ");
168 addItemFont("TimeBar Font",&mTimeBarFont);
169 addItemFont("MonthView Font",&mMonthViewFont);
170 addItemFont("AgendaView Font",&mAgendaViewFont);
171 addItemFont("MarcusBains Font",&mMarcusBainsFont);
172 addItemFont("TimeLabels Font",&mTimeLabelsFont);
173 addItemFont("TodoView Font",&mTodoViewFont);
174 addItemFont("ListView Font",&mListViewFont);
175 addItemFont("DateNavigator Font",&mDateNavigatorFont);
176 addItemFont("EditBox Font",&mEditBoxFont);
177 addItemFont("JournalView Font",&mJornalViewFont);
178 addItemFont("WhatsNextView Font",&mWhatsNextFont);
179 addItemFont("EventView Font",&mEventViewFont);
180
181// KPrefs::setCurrentGroup("SyncProfiles");
182// addItemString("LocalMachineName",&mLocalMachineName, "undefined");
183// addItemStringList("SyncProfileNames",&mSyncProfileNames);
184// addItemStringList("ExternSyncProfiles",&mExternSyncProfileNames);
185
186 KPrefs::setCurrentGroup("RemoteSyncing");
187// addItemBool("UsePasswd",&mUsePassWd,false);
188// addItemBool("WriteBackFile",&mWriteBackFile,true);
189// addItemBool("WriteBackExistingOnly",&mWriteBackExistingOnly,false);
190// addItemBool("AskForPreferences",&mAskForPreferences,true);
191// addItemBool("ShowSyncSummary",&mShowSyncSummary,true);
192 addItemBool("ShowSyncEvents",&mShowSyncEvents,false);
193 addItemInt("LastSyncTime",&mLastSyncTime,0);
194 addItemInt("SyncAlgoPrefs",&mSyncAlgoPrefs,3);
195 addItemInt("RingSyncAlgoPrefs",&mRingSyncAlgoPrefs,3);
196
197#ifdef _WIN32_
198 QString hdp= locateLocal("data","korganizer")+"\\\\";
199#else
200 QString hdp= locateLocal("data","korganizer")+"/";
201#endif
202// addItemString("RemoteIP",&mRemoteIP, "192.168.0.65");
203// addItemString("RemoteUser",&mRemoteUser, "zaurus");
204// addItemString("RemotePassWd",&mRemotePassWd, "");
205// addItemString("RemoteFile", &mRemoteFile, hdp+"mycalendar.ics");
206// addItemString("LocalTempFile",&mLocalTempFile, "/tmp/tempsyncfile.ics" );
207
208
209 KPrefs::setCurrentGroup("LoadSaveFileNames");
210
211 addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" );
212 addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" );
213 addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" );
214 addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" );
215 addItemString("LastSyncedLocalFile", &mLastSyncedLocalFile ,hdp +"lastsync.ics" );
216
217
218 KPrefs::setCurrentGroup("Locale");
219 addItemInt("PreferredLanguage",&mPreferredLanguage,0);
220 addItemInt("PreferredTime",&mPreferredTime,0);
221 addItemInt("PreferredDate",&mPreferredDate,0);
222 addItemBool("WeekStartsOnSunday",&mWeekStartsOnSunday,false);
223 addItemBool("QuickSavingWOUnicode",&mUseQuicksave,false);
224 addItemBool("ShortDateInViewer",&mShortDateInViewer,false);
225 addItemString("UserDateFormatLong", &mUserDateFormatLong, "%A %d %b %y");
226 addItemString("UserDateFormatShort", &mUserDateFormatShort, "%aK %d.%m.%y");
227
228
229 KPrefs::setCurrentGroup("Colors");
230 addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor);
231 addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor);
232 addItemColor("Event Color",&mEventColor,mDefaultCategoryColor);
233 addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor);
234 addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor);
235 addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor);
236 addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor);
237 addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 ));
238 addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 ));
239 addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 ));
240 addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true);
241 addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true);
242 addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false);
243 addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 ));
244 addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 ));
245 addItemBool("UseAppColors",&mUseAppColors,false);
246
247
248
249 KPrefs::setCurrentGroup("Views");
250 addItemInt("Hour Size",&mHourSize,8);
251 addItemBool("Show Daily Recurrences",&mDailyRecur,true);
252 addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true);
253 addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true);
254 addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true);
255 addItemBool("ShowShortMonthName",&mMonthShowShort,false);
256 addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true);
257 addItemBool("Enable ToolTips",&mEnableToolTips,false);
258 addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false);
259 addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false);
260 addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true);
261 addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true);
262 addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,false);
263 addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false);
264 addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false);
265 addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true);
266 addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true);
267 addItemBool("WNViewShowsParents",&mWNViewShowsParents,true);
268 addItemBool("WNViewShowLocation",&mWNViewShowLocation,false);
269 addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false);
270 addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true);
271 addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false);
272 addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false);
273 addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,false);
274 addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false);
275 addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false);
276#ifdef DESKTOP_VERSION
277 addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true);
278#else
279 addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false);
280#endif
281 addItemInt("Day Begins",&mDayBegins,7);
282 addItemInt("Working Hours Start",&mWorkingHoursStart,8);
283 addItemInt("Working Hours End",&mWorkingHoursEnd,17);
284 addItemBool("Exclude Holidays",&mExcludeHolidays,true);
285 addItemBool("Exclude Saturdays",&mExcludeSaturdays,true);
286
287 addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false);
288 addItemBool("Full View Month",&mFullViewMonth,true);
289 addItemBool("Full View Todo",&mFullViewTodo,true);
290 addItemBool("Quick Todo",&mEnableQuickTodo,false);
291
292 addItemInt("Next X Days",&mNextXDays,3);
293
294 KPrefs::setCurrentGroup("Printer");
295
296 KPrefs::setCurrentGroup("Layout");
297
298 addItemBool("CompactDialogs",&mCompactDialogs,false);
299 addItemBool("VerticalScreen",&mVerticalScreen,true);
300
301 KPrefs::setCurrentGroup("KOrganizer Plugins");
302
303 addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays");
304
305 KPrefs::setCurrentGroup("Group Scheduling");
306
307 addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail);
308 addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend);
309 addItemStringList("AdditionalMails",&mAdditionalMails,"");
310 addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto);
311 addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto);
312 addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto);
313 addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto);
314 addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto);
315
316 KPrefs::setCurrentGroup( "Editors" );
317
318 addItemStringList( "EventTemplates", &mEventTemplates );
319 addItemStringList( "TodoTemplates", &mTodoTemplates );
320
321 addItemInt("DestinationPolicy",&mDestination,standardDestination);
322
323
324
325}
326
327
328KOPrefs::~KOPrefs()
329{
330 if (mInstance == this)
331 mInstance = insd.setObject(0);
332 setLocaleDict( 0 );
333 if ( mLocaleDict )
334 delete mLocaleDict;
335 //qDebug("KOPrefs::~KOPrefs() ");
336}
337
338
339KOPrefs *KOPrefs::instance()
340{
341 if (!mInstance) {
342 mInstance = insd.setObject(new KOPrefs());
343 mInstance->readConfig();
344 }
345
346 return mInstance;
347}
348
349void KOPrefs::usrSetDefaults()
350{
351
352}
353
354void KOPrefs::fillMailDefaults()
355{
356 if (mName.isEmpty()) mName = i18n("Anonymous");
357 if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere");
358}
359
360void KOPrefs::setTimeZoneIdDefault()
361{
362 mTimeZoneId = i18n("+01:00 Europe/Oslo(CET)");
363}
364
365void KOPrefs::setCategoryDefaults()
366{
367 mCustomCategories.clear();
368 mCustomCategories = getDefaultList();
369
370 QStringList::Iterator it;
371 for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) {
372 setCategoryColor(*it,mDefaultCategoryColor);
373 }
374}
375
376QStringList KOPrefs::getDefaultList()
377{
378 QStringList retval ;
379 retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Business Travel") << i18n("Cinema") << i18n("Customer")
380 << i18n("Break")<< i18n("Breakfast")<< i18n("Competition")<< i18n("Dinner")
381 << i18n("Education")<< i18n("Family") << i18n("Favorites") << i18n("Festival")<< i18n("Fishing")<< i18n("Flight") << i18n("Gifts")
382 << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") << i18n("Hiking") << i18n("Hunting") << i18n("Key Customer") << i18n("Kids")
383 << i18n("Lunch") << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner")<< i18n("Party") << i18n("Personal") << i18n("Personal Travel")
384 << i18n("PHB") << i18n("Phone Calls") << i18n("Projects") << i18n("Recurring") << i18n("School") << i18n("Shopping")
385 << i18n("Speach") << i18n("Special Occasion") << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV")<< i18n("University")
386 << i18n("Vacation") << i18n("VIP") << i18n("SyncEvent") ;
387 retval.sort();
388 return retval;
389}
390
391void KOPrefs::usrReadConfig()
392{
393 mLocaleDict = 0;
394 // pending LR fix translation
395 // qDebug("KOPrefs::usrReadConfig() fix translation ");
396 if ( mPreferredLanguage > 0 && mPreferredLanguage < 4 ) {
397 if ( mPreferredLanguage == 1 ) {
398 mLocaleDict = new QDict<QString>;
399 int i = 0;
400 QString fw ( germanwords[i] [0]);
401 while ( !fw.isEmpty() ) {
402 mLocaleDict->insert( fw, new QString (germanwords[i] [1] ));
403 ++i;
404 fw = germanwords[i] [0];
405 }
406
407 setLocaleDict( mLocaleDict );
408 } else {
409 QString fileName ;
410 if ( mPreferredLanguage == 3 )
411 fileName = MainWindow::resourcePath()+"usertranslation.txt";
412 else if ( mPreferredLanguage == 2 )
413 fileName = MainWindow::resourcePath()+"frenchtranslation.txt";
414 QFile file( fileName );
415 if (file.open( IO_ReadOnly ) ) {
416 QTextStream ts( &file );
417 ts.setEncoding( QTextStream::Latin1 );
418 //ts.setCodec( QTextCodec::latin1 );
419 QString text = ts.read();
420 file.close();
421 text.replace( QRegExp("\\\\n"), "\n" );
422 QString line;
423 QString we;
424 QString wt;
425 int br = 0;
426 int nbr;
427 nbr = text.find ( "},", br );
428 line = text.mid( br, nbr - br );
429 br = nbr+1;
430 int se, ee, st, et;
431 mLocaleDict = new QDict<QString>;
432 QString end = "{ \"\",\"\" }";
433 while ( (line != end) && (br > 1) ) {
434 //qDebug("%d *%s* ", br, line.latin1());
435 se = line.find("\"")+1;
436 et = line.findRev("\"",-1);
437 ee = line.find("\",\"");
438 st = ee+3;
439 we = line.mid( se, ee-se );
440 wt = line.mid( st, et-st );
441 //qDebug("*%s* *%s* ", we.latin1(), wt.latin1());
442 mLocaleDict->insert( we, new QString (wt) );
443 nbr = text.find ( "}", br );
444 line = text.mid( br, nbr - br );
445 br = nbr+1;
446 }
447 //qDebug("end *%s* ", end.latin1());
448
449 setLocaleDict( mLocaleDict );
450 } else {
451 qDebug("KO: Cannot find translation file %s",fileName.latin1() );
452 }
453
454 }
455 }
456 config()->setGroup("General");
457
458 mCustomCategories = config()->readListEntry("Custom Categories");
459 if ( KOPrefs::instance()->mLanguageChanged ) {
460 mLocationDefaults.clear();
461 mEventSummaryUser.clear();
462 mTodoSummaryUser.clear();
463 }
464 if (mLocationDefaults.isEmpty()) {
465 mLocationDefaults << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach")
466 << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten")
467 << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ;
468 // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("")
469 mLocationDefaults.sort();
470 }
471
472 if (mEventSummaryUser.isEmpty()) {
473 mEventSummaryUser = getDefaultList() ;
474 }
475 if (mTodoSummaryUser.isEmpty()) {
476 mTodoSummaryUser = getDefaultList() ;
477 }
478
479 if (mCustomCategories.isEmpty()) setCategoryDefaults();
480
481 config()->setGroup("Personal Settings");
482 mName = config()->readEntry("user_name","");
483 mEmail = config()->readEntry("user_email","");
484 fillMailDefaults();
485
486 config()->setGroup("Category Colors");
487 QStringList::Iterator it;
488 for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) {
489 setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor));
490
491 }
492
493 if (mTimeZoneId.isEmpty()) {
494 setTimeZoneIdDefault();
495 }
496 KPimPrefs::usrReadConfig();
497}
498
499
500void KOPrefs::usrWriteConfig()
501{
502 config()->setGroup("General");
503 config()->writeEntry("Custom Categories",mCustomCategories);
504
505 config()->setGroup("Personal Settings");
506 config()->writeEntry("user_name",mName);
507 config()->writeEntry("user_email",mEmail);
508
509 config()->setGroup("Category Colors");
510 QDictIterator<QColor> it(mCategoryColors);
511 while (it.current()) {
512 config()->writeEntry(it.currentKey(),*(it.current()));
513 ++it;
514 }
515
516
517 KPimPrefs::usrWriteConfig();
518}
519
520void KOPrefs::setCategoryColor(QString cat,const QColor & color)
521{
522 mCategoryColors.replace(cat,new QColor(color));
523}
524
525QColor *KOPrefs::categoryColor(QString cat)
526{
527 QColor *color = 0;
528
529 if (!cat.isEmpty()) color = mCategoryColors[cat];
530
531 if (color) return color;
532 else return &mDefaultCategoryColor;
533}
534
535void KOPrefs::setFullName(const QString &name)
536{
537 mName = name;
538}
539
540void KOPrefs::setEmail(const QString &email)
541{
542 //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() );
543 mEmail = email;
544}
545
546QString KOPrefs::fullName()
547{
548 if (mEmailControlCenter) {
549 KEMailSettings settings;
550 return settings.getSetting(KEMailSettings::RealName);
551 } else {
552 return mName;
553 }
554}
555
556QString KOPrefs::email()
557{
558 if (mEmailControlCenter) {
559 KEMailSettings settings;
560 return settings.getSetting(KEMailSettings::EmailAddress);
561 } else {
562 return mEmail;
563 }
564}
565KConfig* KOPrefs::getConfig()
566{
567 return config();
568}
diff --git a/kmicromail/koprefs.h b/kmicromail/koprefs.h
new file mode 100644
index 0000000..c42d787
--- a/dev/null
+++ b/kmicromail/koprefs.h
@@ -0,0 +1,81 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23#ifndef KOPREFS_H
24#define KOPREFS_H
25
26#include <qdict.h>
27
28#include <libkdepim/kpimprefs.h>
29
30class KConfig;
31class QFont;
32class QColor;
33class QStringList;
34
35class KOPrefs : public KPimPrefs
36{
37 public:
38 virtual ~KOPrefs();
39
40 /** Get instance of KOPrefs. It is made sure that there is only one
41 instance. */
42 static KOPrefs *instance();
43
44 /** Set preferences to default values */
45 void usrSetDefaults();
46
47 /** Read preferences from config file */
48 void usrReadConfig();
49
50 /** Write preferences to config file */
51 void usrWriteConfig();
52 void setCategoryDefaults(){;};
53
54 protected:
55 void setTimeZoneIdDefault();
56
57 /** Fill empty mail fields with default values. */
58 void fillMailDefaults();
59
60 private:
61 /** Constructor disabled for public. Use instance() to create a KOPrefs
62 object. */
63 KOPrefs();
64
65 static KOPrefs *mInstance;
66 QDict<QString> *mLocaleDict;
67 public:
68 // preferences data
69 KConfig* getConfig();
70 QFont mAppFont;
71 QFont mComposeFont;
72 QFont mReadFont;
73 QFont mTimeZoneId;
74 QString mName;
75 QString mEmail;
76 bool mSendLater, mViewAsHtml, mUseKapi;
77 private:
78
79};
80
81#endif
diff --git a/kmicromail/koprefs.h~ b/kmicromail/koprefs.h~
new file mode 100644
index 0000000..a9ac52f
--- a/dev/null
+++ b/kmicromail/koprefs.h~
@@ -0,0 +1,304 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23#ifndef KOPREFS_H
24#define KOPREFS_H
25
26#include <qdict.h>
27
28#include <libkdepim/kpimprefs.h>
29
30class KConfig;
31class QFont;
32class QColor;
33class QStringList;
34
35class KOPrefs : public KPimPrefs
36{
37 public:
38 enum { FormatVCalendar, FormatICalendar };
39 enum { MailClientKMail, MailClientSendmail };
40 enum { IMIPDummy, IMIPKMail };
41 enum { IMIPOutbox, IMIPdirectsend };
42 enum { neverAuto, addressbookAuto, selectedAuto };
43 enum { standardDestination, askDestination };
44
45 virtual ~KOPrefs();
46
47 /** Get instance of KOPrefs. It is made sure that there is only one
48 instance. */
49 static KOPrefs *instance();
50
51 /** Set preferences to default values */
52 void usrSetDefaults();
53
54 /** Read preferences from config file */
55 void usrReadConfig();
56
57 /** Write preferences to config file */
58 void usrWriteConfig();
59 void setCategoryDefaults();
60
61 protected:
62 void setTimeZoneIdDefault();
63
64 /** Fill empty mail fields with default values. */
65 void fillMailDefaults();
66
67 private:
68 /** Constructor disabled for public. Use instance() to create a KOPrefs
69 object. */
70 KOPrefs();
71
72 static KOPrefs *mInstance;
73 QDict<QString> *mLocaleDict;
74 QStringList getDefaultList();
75 public:
76 // preferences data
77 KConfig* getConfig();
78 void setFullName(const QString &);
79 QString fullName();
80 void setEmail(const QString &);
81 QString email();
82
83 QString mAdditional;
84
85 bool mEmailControlCenter;
86
87 bool mBcc;
88 bool mAutoSave;
89 int mAutoSaveInterval;
90 bool mConfirm;
91
92 bool mEnableGroupScheduling;
93 bool mEnableProjectView;
94
95 int mDefaultFormat;
96 int mMailClient;
97
98 QString mTimeZone;
99 QString mTimeZoneId;
100 //QString mTimeZoneName; // e.g. +00:04:00 Indian/Mauritius
101 //int mTimeZoneOffset; // e.g. -240 min
102 bool mUseDaylightsaving;
103 int mDaylightsavingStart;
104 int mDaylightsavingEnd;
105 int mStartTime;
106 int mDefaultDuration;
107 int mAlarmTime;
108 int mDaylightSavings;
109
110 int mWorkingHoursStart;
111 int mWorkingHoursEnd;
112 bool mExcludeHolidays;
113 bool mExcludeSaturdays;
114 bool mMarcusBainsShowSeconds;
115
116 QFont mTimeBarFont;
117 QFont mMonthViewFont;
118 QFont mAgendaViewFont;
119 QFont mMarcusBainsFont;
120 QFont mTimeLabelsFont;
121 QFont mTodoViewFont;
122 QFont mListViewFont;
123 QFont mDateNavigatorFont;
124 QFont mEditBoxFont;
125 QFont mJornalViewFont;
126 QFont mWhatsNextFont;
127 QFont mEventViewFont;
128
129
130
131
132 QColor mHolidayColor;
133 QColor mHighlightColor;
134 QColor mEventColor;
135 QColor mAgendaBgColor;
136 QColor mWorkingHoursColor;
137 QColor mTodoDueTodayColor;
138 QColor mTodoOverdueColor;
139 QColor mMonthViewEvenColor;
140 QColor mMonthViewOddColor;
141 QColor mMonthViewHolidayColor;
142 bool mMonthViewUsesDayColors;
143 bool mMonthViewSatSunTog;
144 QColor mAppColor1;
145 QColor mAppColor2;
146 bool mUseAppColors;
147
148 int mDayBegins;
149 int mHourSize;
150 int mAllDaySize;
151 bool mShowFullMenu;
152 bool mDailyRecur;
153 bool mWeeklyRecur;
154 bool mMonthDailyRecur;
155 bool mMonthWeeklyRecur;
156 bool mMonthShowIcons;
157 bool mMonthShowShort;
158 bool mEnableToolTips;
159 bool mEnableMonthScroll;
160 bool mFullViewMonth;
161 bool mMonthViewUsesCategoryColor;
162 bool mFullViewTodo;
163 bool mShowCompletedTodo;
164 bool mMarcusBainsEnabled;
165 int mNextXDays;
166 int mWhatsNextDays;
167 int mWhatsNextPrios;
168 bool mEnableQuickTodo;
169 bool mLanguageChanged;
170
171 bool mCompactDialogs;
172 bool mVerticalScreen;
173
174 bool mShowIconNewTodo;
175 bool mShowIconNewEvent;
176 bool mShowIconSearch;
177 bool mShowIconList;
178 bool mShowIconDay1;
179 bool mShowIconDay5;
180 bool mShowIconDay7;
181 bool mShowIconMonth;
182 bool mShowIconTodoview;
183 bool mShowIconBackFast;
184 bool mShowIconBack;
185 bool mShowIconToday;
186 bool mShowIconForward;
187 bool mShowIconForwardFast;
188 bool mShowIconWhatsThis;
189 bool mShowIconNextDays;
190 bool mShowIconNext;
191 bool mShowIconJournal;
192
193 bool mShowIconStretch;
194
195 bool mToolBarHor;
196 bool mToolBarUp;
197 bool mToolBarMiniIcons;
198
199 bool mAskForQuit;
200 bool mUsePassWd;
201 bool mWriteBackFile;
202 int mWriteBackInFuture;
203 bool mAskForPreferences;
204 bool mShowSyncSummary;
205 bool mShowSyncEvents;
206 bool mShowTodoInAgenda;
207 bool mWriteBackExistingOnly;
208
209 QString mRemoteIP;
210 QString mRemoteUser;
211 QString mRemotePassWd;
212 QString mRemoteFile;
213 QString mLocalTempFile;
214 QString mPhoneDevice;
215 QString mPhoneConnection;
216 QString mPhoneModel;
217
218 int mLastSyncTime;
219 int mSyncAlgoPrefs;
220 int mRingSyncAlgoPrefs;
221 QStringList mSyncProfileNames;
222 QStringList mExternSyncProfiles;
223 QString mLocalMachineName;
224 void setCategoryColor(QString cat,const QColor & color);
225 QColor *categoryColor(QString cat);
226
227 QString mArchiveFile;
228 QString mHtmlExportFile;
229 bool mHtmlWithSave;
230
231 QStringList mSelectedPlugins;
232
233 QString mLastImportFile;
234 QString mLastVcalFile;
235 QString mLastSaveFile;
236 QString mLastLoadFile;
237 QString mLastSyncedLocalFile;
238
239
240 QString mDefaultAlarmFile;
241 int mIMIPScheduler;
242 int mIMIPSend;
243 QStringList mAdditionalMails;
244 int mIMIPAutoRefresh;
245 int mIMIPAutoInsertReply;
246 int mIMIPAutoInsertRequest;
247 int mIMIPAutoFreeBusy;
248 int mIMIPAutoFreeBusyReply;
249
250 QStringList mTodoTemplates;
251 QStringList mEventTemplates;
252
253 int mDestination;
254
255
256 bool mEditOnDoubleClick;
257 bool mViewChangeHoldFullscreen;
258 bool mViewChangeHoldNonFullscreen;
259 bool mCenterOnCurrentTime;
260 bool mSetTimeToDayStartAt;
261 bool mHighlightCurrentDay;
262 bool mUseHighlightLightColor;
263 bool mListViewMonthTimespan;
264 bool mWNViewShowsParents;
265 bool mWNViewShowLocation;
266 bool mTodoViewShowsPercentage;
267 bool mTodoViewUsesCatColors;
268 bool mTodoViewUsesSmallFont;
269 bool mTodoViewUsesForegroundColor;
270 bool mMonthViewUsesForegroundColor;
271
272 bool mHightlightDateTimeEdit;
273 int mPreferredLanguage;
274 bool mUseQuicksave;
275 int mPreferredTime;
276 int mPreferredDate;
277 bool mWeekStartsOnSunday;
278 bool mShortDateInViewer;
279 QString mUserDateFormatLong;
280 QString mUserDateFormatShort;
281
282 QStringList mLocationDefaults;
283 QStringList mEventSummaryUser;
284 QStringList mTodoSummaryUser;
285
286 bool mUseInternalAlarmNotification;
287 int mAlarmPlayBeeps;
288 int mAlarmSuspendTime;
289 int mAlarmSuspendCount;
290 int mAlarmBeepInterval;
291
292 private:
293 QDict<QColor> mCategoryColors;
294 QColor mDefaultCategoryColor;
295
296 QFont mDefaultTimeBarFont;
297 QFont mDefaultViewFont;
298 QFont mDefaultMonthViewFont;
299
300 QString mName;
301 QString mEmail;
302};
303
304#endif
diff --git a/kmicromail/koprefsdialog.cpp b/kmicromail/koprefsdialog.cpp
new file mode 100644
index 0000000..87a6715
--- a/dev/null
+++ b/kmicromail/koprefsdialog.cpp
@@ -0,0 +1,1706 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23
24#include <qlayout.h>
25#include <qlabel.h>
26#include <qgroupbox.h>
27#include <qbuttongroup.h>
28#include <qlineedit.h>
29#include <qfont.h>
30#include <qslider.h>
31#include <qfile.h>
32#include <qtextstream.h>
33#include <qcombobox.h>
34#include <qvbox.h>
35#include <qhbox.h>
36#include <qregexp.h>
37#include <qspinbox.h>
38#include <qdatetime.h>
39#include <qcheckbox.h>
40#include <qradiobutton.h>
41#include <qpushbutton.h>
42#include <qstrlist.h>
43#include <qapplication.h>
44
45#include <kcolorbutton.h>
46#include <kdebug.h>
47#include <klocale.h>
48#include <kglobal.h>
49#include <kfontdialog.h>
50#include <kfiledialog.h>
51#include <kmessagebox.h>
52#include <kcolordialog.h>
53#include <kiconloader.h>
54#include <kemailsettings.h>
55#include <kstandarddirs.h>
56
57#include <klineedit.h>
58
59
60#include "koprefs.h"
61
62#include "koprefsdialog.h"
63
64
65KOPrefsDialog::KOPrefsDialog(QWidget *parent, char *name, bool modal) :
66 KPrefsDialog(KOPrefs::instance(),parent,name,true)
67{
68
69 setCaption( i18n("Settings - some need a restart (nr)"));
70 setupMainTab();
71 setupMailTab();;
72 setupFontsTab();
73 readConfig();
74
75#if 0
76
77 setupMainTab();
78 setupLocaleTab();
79 setupTimeZoneTab();
80 setupTimeTab();
81 setupLocaleDateTab();
82 setupFontsTab();
83 setupColorsTab();
84 setupViewsTab();
85 //setupSyncTab();
86 //setupSyncAlgTab();
87 //setupPrinterTab();
88 //setupGroupSchedulingTab();
89 //setupGroupAutomationTab();
90#endif
91}
92
93
94KOPrefsDialog::~KOPrefsDialog()
95{
96}
97
98void KOPrefsDialog::setupMainTab()
99{
100 QFrame *topFrame = addPage(i18n("General"),0,0);
101
102 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
103 topLayout->setSpacing(spacingHint());
104 topLayout->setMargin(marginHint());
105
106
107 mNameEdit = new QLineEdit(topFrame);
108 mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame);
109 topLayout->addWidget(mNameLabel,0,0);
110 topLayout->addWidget(mNameEdit,0,1);
111
112 mEmailEdit = new QLineEdit(topFrame);
113 mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame);
114 topLayout->addWidget(mEmailLabel,1,0);
115 topLayout->addWidget(mEmailEdit,1,1);
116 QLabel *lab = new QLabel( i18n("HINT: Separate multiple\neMail addresses by \";\""), topFrame);
117 topLayout->addMultiCellWidget(lab,2,2,0,1);
118 KPrefsWidBool* ttt = addWidBool(i18n("Ignore above settings and\nuse KA/Pi \"Who am I\" instead!"),
119 &(KOPrefs::instance()->mUseKapi),topFrame);
120 topLayout->addMultiCellWidget(ttt->checkBox(),3,3,0,1);
121}
122
123void KOPrefsDialog::setupMailTab()
124{
125 QFrame *topFrame = addPage(i18n("Mail"),0,0);
126
127 QGridLayout *topLayout = new QGridLayout(topFrame,4,2);
128 topLayout->setSpacing(spacingHint());
129 topLayout->setMargin(marginHint());
130
131 KPrefsWidBool* ttt = addWidBool(i18n("View mail as html"),
132 &(KOPrefs::instance()->mViewAsHtml),topFrame);
133 topLayout->addMultiCellWidget(ttt->checkBox(),0,0,0,1);
134
135
136 ttt = addWidBool(i18n("Send mails later"),
137 &(KOPrefs::instance()->mSendLater),topFrame);
138 topLayout->addMultiCellWidget(ttt->checkBox(),1,1,0,1);
139
140
141}
142void KOPrefsDialog::setupFontsTab()
143{
144
145 QFrame *topFrame = addPage(i18n("Fonts"),0,0);
146 // DesktopIcon("fonts",KIcon::SizeMedium));
147
148 QGridLayout *topLayout = new QGridLayout(topFrame,7,3);
149 topLayout->setSpacing(1);
150 topLayout->setMargin(3);
151 KPrefsWidFont * tVFont;
152 int i = 0;
153 KPrefsWidFont *timeLabelsFont =
154 addWidFont(i18n("OK"),i18n("Application(nr)"),
155 &(KOPrefs::instance()->mAppFont),topFrame);
156 topLayout->addWidget(timeLabelsFont->label(),i,0);
157 topLayout->addWidget(timeLabelsFont->preview(),i,1);
158 topLayout->addWidget(timeLabelsFont->button(),i,2);
159 ++i;
160
161
162 timeLabelsFont =
163 addWidFont(i18n("Dear Mr."),i18n("Compose mail:"),
164 &(KOPrefs::instance()->mComposeFont),topFrame);
165 topLayout->addWidget(timeLabelsFont->label(),i,0);
166 topLayout->addWidget(timeLabelsFont->preview(),i,1);
167 topLayout->addWidget(timeLabelsFont->button(),i,2);
168 ++i;
169
170 KPrefsWidFont *timeBarFont =
171 addWidFont(i18n("Hello"),i18n("Read mail:"),
172 &(KOPrefs::instance()->mReadFont),topFrame);
173 topLayout->addWidget(timeBarFont->label(),i,0);
174 topLayout->addWidget(timeBarFont->preview(),i,1);
175 topLayout->addWidget(timeBarFont->button(),i,2);
176 ++i;
177
178 topLayout->setColStretch(1,1);
179 topLayout->setRowStretch(4,1);
180
181}
182void KOPrefsDialog::usrReadConfig()
183{
184 qDebug("read ");
185 mNameEdit->setText(KOPrefs::instance()->mName);
186 mEmailEdit->setText(KOPrefs::instance()->mEmail);
187}
188void KOPrefsDialog::usrWriteConfig()
189{
190 qDebug("write ");
191 KOPrefs::instance()->mName = mNameEdit->text();
192 KOPrefs::instance()->mEmail = mEmailEdit->text();
193
194
195}
196
197#if 0
198void KOPrefsDialog::setupLocaleDateTab()
199{
200QFrame *topFrame = addPage(i18n("Date Format"),0,0);
201 QGridLayout *topLayout = new QGridLayout(topFrame,3,2);
202 topLayout->setSpacing(spacingHint());
203 topLayout->setMargin(marginHint());
204 int iii = 0;
205
206
207 KPrefsWidRadios *syncPrefsGroup =
208 addWidRadios(i18n("Date Format:"),&(KOPrefs::instance()->mPreferredDate),topFrame);
209 QString format;
210 if ( QApplication::desktop()->width() < 480 )
211 format = "(%d.%m.%Y)";
212 else
213 format = "(%d.%m.%Y|%A %d %B %Y)";
214 syncPrefsGroup->addRadio(i18n("24.03.2004 "+format));
215 if ( QApplication::desktop()->width() < 480 )
216 format = "(%m.%d.%Y)";
217 else
218 format = "(%m.%d.%Y|%A %B %d %Y)";
219 syncPrefsGroup->addRadio(i18n("03.24.2004 "+format));
220 if ( QApplication::desktop()->width() < 480 )
221 format = "(%Y-%m-%d)";
222 else
223 format = "(%Y-%m-%d|%A %Y %B %d)";
224 syncPrefsGroup->addRadio(i18n("2004-03-24 "+format));
225 syncPrefsGroup->addRadio(i18n("User defined"));
226 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
227 ++iii;
228 ++iii;
229 QLabel * lab;
230 mUserDateFormatLong = new QLineEdit(topFrame);
231 lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame);
232 topLayout->addWidget(lab ,iii,0);
233 topLayout->addWidget(mUserDateFormatLong,iii,1);
234 ++iii;
235 mUserDateFormatShort = new QLineEdit(topFrame);
236 lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame);
237 topLayout->addWidget(lab ,iii,0);
238 topLayout->addWidget(mUserDateFormatShort,iii,1);
239 ++iii;
240 lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame);
241 topLayout->addMultiCellWidget(lab ,iii,iii,0,1);
242 ++iii;
243 lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame);
244 topLayout->addMultiCellWidget(lab ,iii,iii,0,1);
245 ++iii;
246 lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame);
247 topLayout->addMultiCellWidget(lab ,iii,iii,0,1);
248 ++iii;
249
250}
251
252void KOPrefsDialog::setupLocaleTab()
253{
254 QFrame *topFrame = addPage(i18n("Locale"),0,0);
255 QGridLayout *topLayout = new QGridLayout(topFrame,4,2);
256 topLayout->setSpacing(spacingHint());
257 topLayout->setMargin(marginHint());
258 int iii = 0;
259 KPrefsWidRadios *syncPrefsGroup =
260 addWidRadios(i18n("Language:(needs restart)"),&(KOPrefs::instance()->mPreferredLanguage),topFrame);
261 syncPrefsGroup->addRadio(i18n("English"));
262 syncPrefsGroup->addRadio(i18n("German"));
263 syncPrefsGroup->addRadio(i18n("French"));
264 syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)"));
265 if ( QApplication::desktop()->width() < 300 )
266 ;// syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical);
267 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
268 ++iii;
269
270 syncPrefsGroup =
271 addWidRadios(i18n("Time Format(nr):"),&(KOPrefs::instance()->mPreferredTime),topFrame);
272 if ( QApplication::desktop()->width() > 300 )
273 syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical);
274 syncPrefsGroup->addRadio(i18n("24:00"));
275 syncPrefsGroup->addRadio(i18n("12:00am"));
276 syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical);
277 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
278 ++iii;
279 KPrefsWidBool *sb;
280 if ( QApplication::desktop()->width() < 300 ) {
281 sb =
282 addWidBool(i18n("Week starts on Sunday"),
283 &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame);
284 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
285 ++iii;
286 sb =
287 addWidBool(i18n("Use short date in (WN/E) view"),
288 &(KOPrefs::instance()->mShortDateInViewer),topFrame);
289 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
290 }
291 else {
292 QWidget * hb = new QWidget( topFrame );
293 QHBoxLayout *hbLayout = new QHBoxLayout(hb);
294 sb =
295 addWidBool(i18n("Week starts on Sunday"),
296 &(KOPrefs::instance()->mWeekStartsOnSunday),hb);
297 hbLayout->addWidget(sb->checkBox() );
298 sb =
299 addWidBool(i18n("Use short date in (WN/E) view"),
300 &(KOPrefs::instance()->mShortDateInViewer),hb);
301 hbLayout->addWidget(sb->checkBox() );
302 topLayout->addMultiCellWidget(hb, iii,iii,0,1);
303
304 }
305 //#ifndef DESKTOP_VERSION
306#if 0
307 ++iii;
308 sb =
309 addWidBool(i18n("Quick load/save (w/o Unicode)"),
310 &(KOPrefs::instance()->mUseQuicksave),topFrame);
311 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
312#endif
313}
314void KOPrefsDialog::showSyncPage()
315{
316 showPage ( 2 ) ;
317
318}
319void KOPrefsDialog::setupSyncAlgTab()
320{
321#if 0
322 QLabel * lab;
323 QFrame *topFrame = addPage(i18n("Sync Prefs"),0,0);
324 mSetupSyncAlgTab = topFrame;
325 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
326 topLayout->setSpacing(spacingHint());
327 topLayout->setMargin(marginHint());
328 int iii = 0;
329
330 KPrefsWidBool *sb =
331 addWidBool(i18n("Ask for preferences before syncing"),
332 &(KOPrefs::instance()->mAskForPreferences),topFrame);
333 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
334
335 ++iii;
336
337 KPrefsWidRadios *syncPrefsGroup =
338 addWidRadios(i18n("Sync preferences:"),&(KOPrefs::instance()->mSyncAlgoPrefs),
339 topFrame);
340 syncPrefsGroup->addRadio(i18n("Take local entry on conflict"));
341 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict"));
342 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict"));
343 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict"));
344 syncPrefsGroup->addRadio(i18n("Force take local entry always"));
345 syncPrefsGroup->addRadio(i18n("Force take remote entry always"));
346 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
347 ++iii;
348 sb =
349 addWidBool(i18n("Show summary after syncing"),
350 &(KOPrefs::instance()->mShowSyncSummary),topFrame);
351 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
352
353 ++iii;
354#endif
355
356
357
358}
359
360
361void KOPrefsDialog::setupSyncTab()
362{
363#if 0
364 QLabel * lab;
365 QFrame *topFrame = addPage(i18n("Sync Network"),0,0);
366 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
367 topLayout->setSpacing(spacingHint());
368 topLayout->setMargin(marginHint());
369 lab = new QLabel(i18n("Remote syncing (via ssh/scp)\nnetwork settings "), topFrame);
370 int iii = 0;
371 topLayout->addMultiCellWidget(lab , iii,iii,0,1);
372 ++iii;
373
374 mRemoteIPEdit = new QLineEdit(topFrame);
375 lab = new QLabel(mRemoteIPEdit, i18n("Remote IP:"), topFrame);
376 topLayout->addWidget(lab ,iii,0);
377 topLayout->addWidget(mRemoteIPEdit,iii,1);
378 ++iii;
379 mRemoteUser = new QLineEdit(topFrame);
380 lab = new QLabel(mRemoteUser, i18n("Remote user:"), topFrame);
381 topLayout->addWidget(lab ,iii,0);
382 topLayout->addWidget(mRemoteUser, iii,1);
383 ++iii;
384
385 mRemoteFile = new QLineEdit(topFrame);
386 lab = new QLabel(mRemoteFile, i18n("Remote file:"), topFrame);
387 topLayout->addWidget(lab ,iii,0);
388 topLayout->addWidget(mRemoteFile,iii,1);
389 ++iii;
390
391 mLocalTempFile = new QLineEdit(topFrame);
392 lab = new QLabel(mLocalTempFile, i18n("Local temp file:"), topFrame);
393 topLayout->addWidget(lab ,iii,0);
394 topLayout->addWidget(mLocalTempFile,iii,1);
395 ++iii;
396
397 KPrefsWidBool *wb =
398 addWidBool(i18n("Write back synced file"),
399 &(KOPrefs::instance()->mWriteBackFile),topFrame);
400 topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1);
401 ++iii;
402 wb =
403 addWidBool(i18n("Write back existing entries only"),
404 &(KOPrefs::instance()->mWriteBackExistingOnly),topFrame);
405 topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1);
406 ++iii;
407
408#endif
409}
410
411void KOPrefsDialog::setupMainTab()
412{
413 QFrame *topFrame = addPage(i18n("General"),0,0);
414 // DesktopIcon("identity",KIcon::SizeMedium));
415
416 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
417 topLayout->setSpacing(spacingHint());
418 topLayout->setMargin(marginHint());
419
420 // KPrefsWidBool *emailControlCenter =
421// addWidBool(i18n("&Use email settings from Control Center"),
422// &(KOPrefs::instance()->mEmailControlCenter),topFrame);
423// topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1);
424 // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)),
425 // SLOT(toggleEmailSettings(bool)));
426
427 mNameEdit = new QLineEdit(topFrame);
428 mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame);
429 topLayout->addWidget(mNameLabel,0,0);
430 topLayout->addWidget(mNameEdit,0,1);
431
432 mEmailEdit = new QLineEdit(topFrame);
433 mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame);
434 topLayout->addWidget(mEmailLabel,1,0);
435 topLayout->addWidget(mEmailEdit,1,1);
436 KPrefsWidBool *wb;
437 QHBox *dummy;
438 if ( QApplication::desktop()->width() > 480 ) {
439 dummy = new QHBox(topFrame);
440 } else {
441 dummy = new QVBox(topFrame);
442 }
443
444 topLayout->addMultiCellWidget(dummy, 2,2,0,1);
445 addWidBool(i18n("Full menu bar(nr)"),
446 &(KOPrefs::instance()->mShowFullMenu),dummy);
447
448
449 addWidBool(i18n("Mini icons in toolbar(nr)"),
450 &(KOPrefs::instance()->mToolBarMiniIcons),dummy);
451
452
453 dummy = new QHBox(topFrame);
454 new QLabel(i18n("Days in What's Next:"),dummy);
455 mWhatsNextSpin = new QSpinBox(1,14,1,dummy);
456
457 topLayout->addMultiCellWidget(dummy,3,3,0,1);
458
459
460
461 dummy = new QHBox(topFrame);
462 new QLabel(i18n("Days in Next-X-Days:"),dummy);
463 mNextXDaysSpin = new QSpinBox(2,14,1,dummy);
464
465 topLayout->addMultiCellWidget(dummy,4,4,0,1);
466
467 QHBox *prioBox = new QHBox(topFrame);
468 // intervalBox->setSpacing(spacingHint());
469 topLayout->addMultiCellWidget(prioBox,5,5,0,1);
470 QString messa = i18n("Show topmost todo prios in What's Next:");
471
472 if ( QApplication::desktop()->width() < 300 )
473 messa = i18n("Show topmost todo prios in What's N.:");
474 QLabel *prioLabel = new QLabel(messa, prioBox);
475 mPrioSpin = new QSpinBox(0,5,1,prioBox);
476 if ( QApplication::desktop()->width() < 300 )
477 mPrioSpin->setFixedWidth( 40 );
478
479 // KPrefsWidBool *bcc =
480// addWidBool(i18n("Send copy to owner when mailing events"),
481// &(KOPrefs::instance()->mBcc),topFrame);
482// topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1);
483
484
485 // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame);
486 //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1);
487
488 // addWidBool(i18n("Enable automatic saving of calendar"),
489 // &(KOPrefs::instance()->mAutoSave),autoSaveGroup);
490
491 QHBox *intervalBox = new QHBox(topFrame);
492 // intervalBox->setSpacing(spacingHint());
493 topLayout->addMultiCellWidget(intervalBox,6,6,0,1);
494 QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox);
495 mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox);
496 autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin);
497 /*
498 QHBox * agendasize = new QHBox ( topFrame );
499
500 new QLabel (i18n("AllDayAgenda Height:"), agendasize );
501
502
503 mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize);
504 topLayout->addMultiCellWidget(agendasize,7,7,0,1);
505 */
506 KPrefsWidBool *verticalScreen =
507 addWidBool(i18n("Show vertical screen (Needs restart)"),
508 &(KOPrefs::instance()->mVerticalScreen),topFrame);
509 //topLayout->addWidget(verticalScreen->checkBox(),ii++,0);
510 topLayout->addMultiCellWidget(verticalScreen->checkBox(),7,7,0,1);
511
512 KPrefsWidBool *ask =
513 addWidBool(i18n("Ask for quit when closing KO/Pi"),
514 &(KOPrefs::instance()->mAskForQuit),topFrame);
515 topLayout->addMultiCellWidget(ask->checkBox(),8,8,0,1);
516
517
518 /*
519 KPrefsWidBool *confirmCheck =
520 addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm),
521 topFrame);
522 topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1);
523
524
525 mEnableGroupScheduling =
526 addWidBool(i18n("Enable group scheduling"),
527 &(KOPrefs::instance()->mEnableGroupScheduling),topFrame);
528 topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0);
529 connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()),
530 SLOT(warningGroupScheduling()));
531
532 mEnableProjectView =
533 addWidBool(i18n("Enable project view"),
534 &(KOPrefs::instance()->mEnableProjectView),topFrame);
535 topLayout->addWidget(mEnableProjectView->checkBox(),9,0);
536 connect(mEnableProjectView->checkBox(),SIGNAL(clicked()),
537 SLOT(warningProjectView()));
538
539 // Can't be disabled anymore
540 mEnableGroupScheduling->checkBox()->hide();
541
542 // Disable setting, because this feature now becomes stable
543 mEnableProjectView->checkBox()->hide();
544
545 KPrefsWidRadios *defaultFormatGroup =
546 addWidRadios(i18n("Default Calendar Format"),
547 &(KOPrefs::instance()->mDefaultFormat),topFrame);
548 defaultFormatGroup->addRadio(i18n("vCalendar"));
549 defaultFormatGroup->addRadio(i18n("iCalendar"));
550
551 topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1);
552
553 // Default format unconditionally is iCalendar
554 defaultFormatGroup->groupBox()->hide();
555
556 KPrefsWidRadios *mailClientGroup =
557 addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient),
558 topFrame);
559 mailClientGroup->addRadio(i18n("KMail"));
560 mailClientGroup->addRadio(i18n("Sendmail"));
561 topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1);
562
563 KPrefsWidBool *htmlsave =
564 addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave),
565 topFrame);
566 topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1);
567
568 KPrefsWidRadios *destinationGroup =
569 addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination),
570 topFrame);
571 destinationGroup->addRadio(i18n("be added to the standard resource"));
572 destinationGroup->addRadio(i18n("be asked which resource to use"));
573 topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1);
574
575 topLayout->setRowStretch(14,1);
576 */
577}
578
579
580void KOPrefsDialog::setupTimeTab()
581{
582 QFrame *topFrame = addPage(i18n("Time"),0,0);
583 // DesktopIcon("clock",KIcon::SizeMedium));
584
585 QGridLayout *topLayout = new QGridLayout(topFrame,4,2);
586 topLayout->setSpacing(spacingHint());
587 topLayout->setMargin(marginHint());
588
589 QHBox *dummy = new QHBox(topFrame);
590 KPrefsWidTime *dayBegins =
591 addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins),
592 dummy);
593 //topLayout->addWidget(dayBegins->label(),2,0);
594
595 //topLayout->addWidget(dayBegins->spinBox(),2,1);
596 topLayout->addMultiCellWidget(dummy,0,0,0,1);
597
598 topLayout->addWidget(new QLabel(i18n("Default appointment time:"),
599 topFrame),1,0);
600 mStartTimeSpin = new QSpinBox(0,23,1,topFrame);
601 mStartTimeSpin->setSuffix(":00");
602 topLayout->addWidget(mStartTimeSpin,1,1);
603
604 topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"),
605 topFrame),2,0);
606 mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame);
607 mDefaultDurationSpin->setSuffix(":00");
608 topLayout->addWidget(mDefaultDurationSpin,2,1);
609
610 QStringList alarmList;
611 alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes")
612 << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ;
613 topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame),
614 3,0);
615 mAlarmTimeCombo = new QComboBox(topFrame);
616 mAlarmTimeCombo->insertStringList(alarmList);
617 topLayout->addWidget(mAlarmTimeCombo,3,1);
618
619
620 QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal,
621 i18n("Working Hours"),
622 topFrame);
623 topLayout->addMultiCellWidget(workingHoursGroup,4,4,0,1);
624 workingHoursGroup->layout()->setSpacing( 0 );
625 workingHoursGroup->layout()->setMargin( 4 );
626 QHBox *workStartBox = new QHBox(workingHoursGroup);
627 // workStartBox->setMargin( 0 );
628 addWidTime(i18n("Daily starting hour:"),
629 &(KOPrefs::instance()->mWorkingHoursStart),workStartBox);
630
631 QHBox *workEndBox = new QHBox(workingHoursGroup);
632 //workEndBox->setMargin( 0 );
633 addWidTime(i18n("Daily ending hour:"),
634 &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox);
635 QVBox *excludeBox = new QVBox(workingHoursGroup);
636 //excludeBox->setMargin( 0 );
637 addWidBool(i18n("Exclude holidays"),
638 &(KOPrefs::instance()->mExcludeHolidays),excludeBox);
639
640 addWidBool(i18n("Exclude Saturdays"),
641 &(KOPrefs::instance()->mExcludeSaturdays),excludeBox);
642
643// KPrefsWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"),
644 // &(KOPrefs::instance()->mMarcusBainsShowSeconds),
645 // topFrame);
646// topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0);
647
648 // topLayout->setRowStretch(6,1);
649}
650
651
652void KOPrefsDialog::setupViewsTab()
653{
654
655 QFrame *topFrame = addPage(i18n("Views"),0,0);
656 // DesktopIcon("viewmag",KIcon::SizeMedium));
657
658 QGridLayout *topLayout = new QGridLayout(topFrame,6,1);
659 topLayout->setSpacing(spacingHint());
660 topLayout->setMargin(marginHint());
661
662// QBoxLayout *dayBeginsLayout = new QHBoxLayout;
663// topLayout->addLayout(dayBeginsLayout,0,0);
664
665// KPrefsWidTime *dayBegins =
666// addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins),
667// topFrame);
668// dayBeginsLayout->addWidget(dayBegins->label());
669// dayBeginsLayout->addStretch(1);
670// dayBeginsLayout->addWidget(dayBegins->spinBox());
671
672// QBoxLayout *nextDaysLayout = new QHBoxLayout;
673// topLayout->addLayout(nextDaysLayout,1,0);
674// nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame));
675// mNextXDaysSpin = new QSpinBox(2,14,1,topFrame);
676// nextDaysLayout->addStretch(1);
677// nextDaysLayout->addWidget(mNextXDaysSpin);
678
679
680 int ii = 0;
681 KPrefsWidBool *dummy =
682 addWidBool(i18n("Edit item on doubleclick (if not, show)"),
683 &(KOPrefs::instance()->mEditOnDoubleClick),topFrame);
684 topLayout->addWidget(dummy->checkBox(),ii++,0);
685
686 dummy =
687 addWidBool(i18n("Highlight current day in agenda"),
688 &(KOPrefs::instance()->mHighlightCurrentDay),topFrame);
689 topLayout->addWidget(dummy->checkBox(),ii++,0);
690
691 dummy =
692 addWidBool(i18n("Use light color for highlight current day"),
693 &(KOPrefs::instance()->mUseHighlightLightColor),topFrame);
694 topLayout->addWidget(dummy->checkBox(),ii++,0);
695
696 KPrefsWidBool *dailyRecur =
697 addWidBool(i18n("Show events that recur daily in date nav."),
698 &(KOPrefs::instance()->mDailyRecur),topFrame);
699 topLayout->addWidget(dailyRecur->checkBox(),ii++,0);
700
701 KPrefsWidBool *weeklyRecur =
702 addWidBool(i18n("Show ev. that recur weekly in date nav."),
703 &(KOPrefs::instance()->mWeeklyRecur),topFrame);
704 topLayout->addWidget(weeklyRecur->checkBox(),ii++,0);
705 if ( QApplication::desktop()->width() > 640 ) {
706
707 KPrefsWidBool *enableToolTips =
708 addWidBool(i18n("Enable tooltips displaying summary of ev."),
709 &(KOPrefs::instance()->mEnableToolTips),topFrame);
710 topLayout->addWidget(enableToolTips->checkBox(),ii++,0);
711
712 }
713 KPrefsWidBool *passwdk =
714 addWidBool(i18n("Show parent To-Do's in What's Next view"),
715 &(KOPrefs::instance()->mWNViewShowsParents),topFrame);
716 topLayout->addWidget(passwdk->checkBox(), ii++,0);
717
718 passwdk =
719 addWidBool(i18n("Show location in What's Next view"),
720 &(KOPrefs::instance()->mWNViewShowLocation),topFrame);
721 topLayout->addWidget(passwdk->checkBox(), ii++,0);
722
723 passwdk =
724 addWidBool(i18n("Show Sync Events in WN/Agenda view"),
725 &(KOPrefs::instance()->mShowSyncEvents),topFrame);
726 topLayout->addWidget(passwdk->checkBox(), ii++,0);
727
728
729 KPrefsWidBool *marcusBainsEnabled =
730 addWidBool(i18n("Show Marcus Bains line"),
731 &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame);
732 topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0);
733
734
735 // topLayout->addWidget(hourSizeGroup,ii++,0);
736 // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0);
737 //topLayout->setRowStretch(11,1);
738
739
740
741
742
743
744 topFrame = addPage(i18n("ViewChange"),0,0);
745 // DesktopIcon("viewmag",KIcon::SizeMedium));
746
747 topLayout = new QGridLayout(topFrame,6,1);
748 topLayout->setSpacing(spacingHint());
749 topLayout->setMargin(marginHint());
750 ii = 0;
751
752
753 dummy =
754 addWidBool(i18n("Hold fullscreen on view change"),
755 &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame);
756 topLayout->addWidget(dummy->checkBox(),ii++,0);
757
758 dummy =
759 addWidBool(i18n("Hold non-fullscreen on view change"),
760 &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame);
761 topLayout->addWidget(dummy->checkBox(),ii++,0);
762
763
764 KPrefsWidBool *fullViewTodo =
765 addWidBool(i18n("Event list view uses full window"),
766 &(KOPrefs::instance()->mFullViewTodo),topFrame);
767 topLayout->addWidget(fullViewTodo->checkBox(),ii++,0);
768
769 KPrefsWidBool *fullViewMonth =
770 addWidBool(i18n("Next days view uses full window"),
771 &(KOPrefs::instance()->mFullViewMonth),topFrame);
772 topLayout->addWidget(fullViewMonth->checkBox(),ii++,0);
773
774 dummy =
775 addWidBool(i18n("Set agenda to DayBeginsAt on change"),
776 &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame);
777 topLayout->addWidget(dummy->checkBox(),ii++,0);
778
779 dummy =
780 addWidBool(i18n("Set agenda to current time on change"),
781 &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame);
782 topLayout->addWidget(dummy->checkBox(),ii++,0);
783
784 dummy =
785 addWidBool(i18n("Listview uses monthly timespan"),
786 &(KOPrefs::instance()->mListViewMonthTimespan),topFrame);
787 topLayout->addWidget(dummy->checkBox(),ii++,0);
788 dummy =
789 addWidBool(i18n("Highlight selection in Time Edit"),
790 &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame);
791 topLayout->addWidget( dummy->checkBox(), ii++,0);
792
793
794
795
796
797 topFrame = addPage(i18n("Month View"),0,0);
798 // DesktopIcon("viewmag",KIcon::SizeMedium));
799
800 topLayout = new QGridLayout(topFrame,5,1);
801 topLayout->setSpacing(spacingHint());
802 topLayout->setMargin(marginHint());
803 ii = 0;
804 QLabel *lab;
805 QHBox *habo = new QHBox( topFrame );
806 if ( QApplication::desktop()->width() < 320 ) {
807 lab = new QLabel ( i18n("Show events that recur "), topFrame );
808 topLayout->addMultiCellWidget(lab,ii, ii,0,1);
809 ii++;
810
811 } else {
812 new QLabel ( i18n("Show events that recur "), habo );
813
814 }
815 dailyRecur =
816 addWidBool(i18n("daily"),
817 &(KOPrefs::instance()->mMonthDailyRecur),habo);
818 // topLayout->addWidget(dailyRecur->checkBox(),ii++,0);
819
820 weeklyRecur =
821 addWidBool(i18n("weekly"),
822 &(KOPrefs::instance()->mMonthWeeklyRecur),habo);
823 topLayout->addMultiCellWidget(habo,ii, ii,0,1);
824 ii++;
825
826
827 habo = new QHBox( topFrame );
828 if ( QApplication::desktop()->width() < 320 ) {
829 lab = new QLabel (i18n("Show in every cell ") , topFrame );
830 topLayout->addMultiCellWidget(lab,ii, ii,0,1);
831 ii++;
832
833 } else {
834 new QLabel ( i18n("Show in every cell "), habo );
835 }
836 weeklyRecur =
837 addWidBool(i18n("short month"),
838 &(KOPrefs::instance()->mMonthShowShort),habo);
839 weeklyRecur =
840 addWidBool(i18n("icons"),
841 &(KOPrefs::instance()->mMonthShowIcons),habo);
842
843 topLayout->addMultiCellWidget(habo,ii, ii,0,1);
844 ii++;
845#ifdef DESKTOP_VERSION
846 KPrefsWidBool *enableMonthScroll =
847 addWidBool(i18n("Enable scrollbars in month view cells"),
848 &(KOPrefs::instance()->mEnableMonthScroll),topFrame);
849 topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0);
850#endif
851
852 dummy =
853 addWidBool(i18n("Show Sat/Sun together"),
854 &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame);
855 topLayout->addWidget(dummy->checkBox(),ii++,0);
856
857 KPrefsWidBool *coloredCategoriesInMonthView =
858 addWidBool(i18n("Month view uses category colors"),
859 &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame);
860 topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0);
861
862 dummy =
863 addWidBool(i18n("Categorie colors are applied to text"),
864 &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame);
865 topLayout->addWidget(dummy->checkBox(),ii++,0);
866 coloredCategoriesInMonthView =
867 addWidBool(i18n("Month view uses day colors"),
868 &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame);
869 topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0);
870
871 KPrefsWidColor *holidayColor =
872 addWidColor(i18n("Day color odd months"),
873 &(KOPrefs::instance()->mMonthViewOddColor),topFrame);
874 topLayout->addWidget(holidayColor->label(),ii,0);
875 topLayout->addWidget(holidayColor->button(),ii++,1);
876
877 holidayColor =
878 addWidColor(i18n("Day color even months"),
879 &(KOPrefs::instance()->mMonthViewEvenColor),topFrame);
880 topLayout->addWidget(holidayColor->label(),ii,0);
881 topLayout->addWidget(holidayColor->button(),ii++,1);
882
883
884 holidayColor =
885 addWidColor(i18n("Color for Sundays + category \"Holiday\""),
886 &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame);
887 topLayout->addWidget(holidayColor->label(),ii,0);
888 topLayout->addWidget(holidayColor->button(),ii++,1);
889
890 // *********************** Todo View
891
892 topFrame = addPage(i18n("Todo View"),0,0);
893 // DesktopIcon("viewmag",KIcon::SizeMedium));
894
895 topLayout = new QGridLayout(topFrame,4,1);
896 topLayout->setSpacing(spacingHint());
897 topLayout->setMargin(marginHint());
898 ii = 0;
899
900 KPrefsWidBool *showCompletedTodo =
901 addWidBool(i18n("To-do view shows completed Todos"),
902 &(KOPrefs::instance()->mShowCompletedTodo),topFrame);
903 topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0);
904 dummy =
905 addWidBool(i18n("To-do view shows complete as 'xx %'"),
906 &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame);
907 topLayout->addWidget(dummy->checkBox(),ii++,0);
908
909 dummy =
910 addWidBool(i18n("Small To-do view uses smaller font"),
911 &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame);
912 topLayout->addWidget(dummy->checkBox(),ii++,0);
913
914
915
916 dummy =
917 addWidBool(i18n("Todo view uses category colors"),
918 &(KOPrefs::instance()->mTodoViewUsesCatColors),topFrame);
919 topLayout->addWidget(dummy->checkBox(),ii++,0);
920
921
922 QWidget* wid = new QWidget( topFrame );
923 // Todo due today color
924 KPrefsWidColor *todoDueTodayColor =
925 addWidColor(i18n("Todo due today color:"),
926 &(KOPrefs::instance()->mTodoDueTodayColor),wid);
927 QHBoxLayout *widLayout = new QHBoxLayout(wid);
928 widLayout->addWidget( todoDueTodayColor->label() );
929 widLayout->addWidget( todoDueTodayColor->button() );
930 topLayout->addWidget(wid,ii++,0);
931 //topLayout->addWidget(todoDueTodayColor->button(),ii++,1);
932
933 // Todo overdue color
934 wid = new QWidget( topFrame );
935 widLayout = new QHBoxLayout(wid);
936 KPrefsWidColor *todoOverdueColor =
937 addWidColor(i18n("Todo overdue color:"),
938 &(KOPrefs::instance()->mTodoOverdueColor),wid);
939 widLayout->addWidget(todoOverdueColor->label());
940 widLayout->addWidget(todoOverdueColor->button());
941 topLayout->addWidget(wid,ii++,0);
942
943 dummy =
944 addWidBool(i18n("Colors are applied to text"),
945 &(KOPrefs::instance()->mTodoViewUsesForegroundColor),topFrame);
946 topLayout->addWidget(dummy->checkBox(),ii++,0);
947
948 dummy =
949 addWidBool(i18n("Allday Agenda view shows todos"),
950 &(KOPrefs::instance()->mShowTodoInAgenda),topFrame);
951 topLayout->addWidget(dummy->checkBox(),ii++,0);
952
953
954
955
956 topFrame = addPage(i18n("Alarm"),0,0);
957 // DesktopIcon("viewmag",KIcon::SizeMedium));
958
959 topLayout = new QGridLayout(topFrame,2,1);
960 topLayout->setSpacing(spacingHint());
961 topLayout->setMargin(marginHint());
962 int iii = 0;
963
964 dummy =
965 addWidBool(i18n("Use internal alarm notification"),
966 &(KOPrefs::instance()->mUseInternalAlarmNotification),topFrame);
967 topLayout->addWidget(dummy->checkBox(),iii++,0);
968 lab = new QLabel( i18n("Note: KO/Pi must be running to notify you about an alarm. Recommended for use on Zaurus: Disable this option and install KO/Pi alarm applet.\n"), topFrame);
969
970 topLayout->addWidget(lab ,iii++,0);
971#ifndef DESKTOP_VERSION
972 lab->setAlignment( AlignLeft|WordBreak|AlignTop);
973#else
974 lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop);
975 lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) );
976#endif
977
978 QHBox* dummyBox = new QHBox(topFrame);
979 new QLabel(i18n("Play beeps count:"),dummyBox);
980 mAlarmPlayBeeps = new QSpinBox(0,500,1,dummyBox);
981 topLayout->addWidget(dummyBox,iii++,0);
982
983 dummyBox = new QHBox(topFrame);
984 new QLabel(i18n("Beeps interval in sec:"),dummyBox);
985 mAlarmBeepInterval = new QSpinBox(1,600,1,dummyBox);
986 topLayout->addWidget(dummyBox,iii++,0);
987
988 dummyBox = new QHBox(topFrame);
989 new QLabel(i18n("Default suspend time in min:"),dummyBox);
990 mAlarmSuspendTime = new QSpinBox(1,600,1,dummyBox);
991 topLayout->addWidget(dummyBox,iii++,0);
992
993 dummyBox = new QHBox(topFrame);
994 new QLabel(i18n("Auto suspend count:"),dummyBox);
995 mAlarmSuspendCount = new QSpinBox(0,60,1,dummyBox);
996 topLayout->addWidget(dummyBox,iii++,0);
997
998
999
1000
1001
1002
1003
1004 QHBox* hbo = new QHBox ( topFrame );
1005 mDefaultAlarmFile = new QLineEdit(hbo);
1006 QPushButton * loadTemplate = new QPushButton(hbo);
1007 QPixmap icon;
1008 if ( QApplication::desktop()->width() < 321 )
1009 icon = SmallIcon("fileimport16");
1010 else
1011 icon = SmallIcon("fileimport");
1012 loadTemplate->setIconSet (icon ) ;
1013 connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( selectSoundFile() ) );
1014 int size = loadTemplate->sizeHint().height();
1015 loadTemplate->setFixedSize( size, size );
1016 //lab = new QLabel( i18n("This setting is useless for 5500 user!"), topFrame);
1017 // topLayout->addWidget(lab ,iii++,0);
1018 lab = new QLabel( i18n("Alarm *.wav file for newly created alarm:"), topFrame);
1019 topLayout->addWidget(lab ,iii++,0);
1020 topLayout->addWidget(hbo,iii++,0);
1021 // lab = new QLabel( i18n("Note: This does not mean, that for every alarm this file is replayed. This file here is associated with a newly created alarm."), topFrame);
1022
1023// topLayout->addWidget(lab ,iii++,0);
1024// #ifndef DESKTOP_VERSION
1025// lab->setAlignment( AlignLeft|WordBreak|AlignTop);
1026// #else
1027// lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop);
1028// lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) );
1029// #endif
1030
1031
1032}
1033
1034void KOPrefsDialog::selectSoundFile()
1035{
1036 QString fileName = mDefaultAlarmFile->text();
1037 fileName = KFileDialog::getSaveFileName( mDefaultAlarmFile->text() , "Choose default alarm file", this );
1038 if ( fileName.length() > 0 )
1039 mDefaultAlarmFile->setText( fileName );
1040}
1041void KOPrefsDialog::setupFontsTab()
1042{
1043
1044 QFrame *topFrame = addPage(i18n("Fonts"),0,0);
1045 // DesktopIcon("fonts",KIcon::SizeMedium));
1046
1047 QGridLayout *topLayout = new QGridLayout(topFrame,7,3);
1048 topLayout->setSpacing(1);
1049 topLayout->setMargin(3);
1050 KPrefsWidFont * tVFont;
1051 int i = 0;
1052 KPrefsWidFont *timeLabelsFont =
1053 addWidFont(i18n("23"),i18n("DateNavigator:(nr)"),
1054 &(KOPrefs::instance()->mDateNavigatorFont),topFrame);
1055 topLayout->addWidget(timeLabelsFont->label(),i,0);
1056 topLayout->addWidget(timeLabelsFont->preview(),i,1);
1057 topLayout->addWidget(timeLabelsFont->button(),i,2);
1058 ++i;
1059
1060
1061 timeLabelsFont =
1062 addWidFont(i18n("Mon 15"),i18n("Date Labels:"),
1063 &(KOPrefs::instance()->mTimeLabelsFont),topFrame);
1064 topLayout->addWidget(timeLabelsFont->label(),i,0);
1065 topLayout->addWidget(timeLabelsFont->preview(),i,1);
1066 topLayout->addWidget(timeLabelsFont->button(),i,2);
1067 ++i;
1068
1069 KPrefsWidFont *timeBarFont =
1070 addWidFont(KGlobal::locale()->formatTime(QTime(12,34)),i18n("Time bar:"),
1071 &(KOPrefs::instance()->mTimeBarFont),topFrame);
1072 topLayout->addWidget(timeBarFont->label(),i,0);
1073 topLayout->addWidget(timeBarFont->preview(),i,1);
1074 topLayout->addWidget(timeBarFont->button(),i,2);
1075 ++i;
1076
1077
1078 KPrefsWidFont *marcusBainsFont =
1079 addWidFont(KGlobal::locale()->formatTime(QTime(12,34,23)),i18n("M. Bains line:"),
1080 &(KOPrefs::instance()->mMarcusBainsFont),topFrame);
1081 topLayout->addWidget(marcusBainsFont->label(),i,0);
1082 topLayout->addWidget(marcusBainsFont->preview(),i,1);
1083 topLayout->addWidget(marcusBainsFont->button(),i,2);
1084 ++i;
1085
1086 tVFont =
1087 addWidFont(i18n("Summary"),i18n("Event Viewer:"),
1088 &(KOPrefs::instance()->mEventViewFont),topFrame);
1089 topLayout->addWidget(tVFont->label(),i,0);
1090 topLayout->addWidget(tVFont->preview(),i,1);
1091 topLayout->addWidget(tVFont->button(),i,2);
1092 ++i;
1093
1094
1095
1096 tVFont =
1097 addWidFont(i18n("Details"),i18n("EditorBox:"),
1098 &(KOPrefs::instance()->mEditBoxFont),topFrame);
1099 topLayout->addWidget(tVFont->label(),i,0);
1100 topLayout->addWidget(tVFont->preview(),i,1);
1101 topLayout->addWidget(tVFont->button(),i,2);
1102 ++i;
1103
1104
1105
1106 topLayout->setColStretch(1,1);
1107 topLayout->setRowStretch(4,1);
1108
1109
1110 i = 0;
1111 topFrame = addPage(i18n("View Fonts"),0,
1112 DesktopIcon("fonts",KIcon::SizeMedium));
1113
1114 topLayout = new QGridLayout(topFrame,7,3);
1115 topLayout->setSpacing(1);
1116 topLayout->setMargin(3);
1117
1118 tVFont =
1119 addWidFont(i18n("Configure KO"),i18n("What's Next View:"),
1120 &(KOPrefs::instance()->mWhatsNextFont),topFrame);
1121 topLayout->addWidget(tVFont->label(),i,0);
1122 topLayout->addWidget(tVFont->preview(),i,1);
1123 topLayout->addWidget(tVFont->button(),i,2);
1124 ++i;
1125 KPrefsWidFont *agendaViewFont =
1126 addWidFont(i18n("Event text"),i18n("Agenda view:"),
1127 &(KOPrefs::instance()->mAgendaViewFont),topFrame);
1128 topLayout->addWidget(agendaViewFont->label(),i,0);
1129 topLayout->addWidget(agendaViewFont->preview(),i,1);
1130 topLayout->addWidget(agendaViewFont->button(),i,2);
1131 ++i;
1132
1133
1134 KPrefsWidFont *monthViewFont =
1135 addWidFont(KGlobal::locale()->formatTime(QTime(12,34)) + " " + i18n("Event"),
1136 i18n("Month view:"),&(KOPrefs::instance()->mMonthViewFont),topFrame);
1137 topLayout->addWidget(monthViewFont->label(),i,0);
1138 topLayout->addWidget(monthViewFont->preview(),i,1);
1139 topLayout->addWidget(monthViewFont->button(),i,2);
1140 ++i;
1141
1142
1143 KPrefsWidFont *lVFont =
1144 addWidFont(i18n("Event"),i18n("List View:"),
1145 &(KOPrefs::instance()->mListViewFont),topFrame);
1146 topLayout->addWidget(lVFont->label(),i,0);
1147 topLayout->addWidget(lVFont->preview(),i,1);
1148 topLayout->addWidget(lVFont->button(),i,2);
1149 ++i;
1150
1151
1152 tVFont =
1153 addWidFont(i18n("ToDo"),i18n("ToDoView:"),
1154 &(KOPrefs::instance()->mTodoViewFont),topFrame);
1155 topLayout->addWidget(tVFont->label(),i,0);
1156 topLayout->addWidget(tVFont->preview(),i,1);
1157 topLayout->addWidget(tVFont->button(),i,2);
1158 ++i;
1159
1160
1161 tVFont =
1162 addWidFont(i18n("Today"),i18n("JournalView:"),
1163 &(KOPrefs::instance()->mJornalViewFont),topFrame);
1164 topLayout->addWidget(tVFont->label(),i,0);
1165 topLayout->addWidget(tVFont->preview(),i,1);
1166 topLayout->addWidget(tVFont->button(),i,2);
1167 ++i;
1168
1169
1170
1171
1172 topLayout->setColStretch(1,1);
1173 topLayout->setRowStretch(4,1);
1174
1175
1176
1177
1178}
1179
1180void KOPrefsDialog::setupColorsTab()
1181{
1182 QFrame *topFrame = addPage(i18n("Colors"),0,0);
1183 // DesktopIcon("colorize",KIcon::SizeMedium));
1184
1185 QGridLayout *topLayout = new QGridLayout(topFrame,5,2);
1186 // topLayout->setSpacing(spacingHint());
1187 // topLayout->setMargin(marginHint());
1188
1189 topLayout->setSpacing(2);
1190 topLayout->setMargin(3);
1191
1192 int ii = 1;
1193 QGroupBox *categoryGroup ;
1194
1195 categoryGroup = new QGroupBox(1,Vertical,i18n("Categories"),
1196 topFrame);
1197 topLayout->addMultiCellWidget(categoryGroup,0,0,0,1);
1198
1199 mCategoryCombo = new QComboBox(categoryGroup);
1200 mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories);
1201 connect(mCategoryCombo,SIGNAL(activated(int)),SLOT(updateCategoryColor()));
1202
1203 mCategoryButton = new KColorButton(categoryGroup);
1204 connect(mCategoryButton,SIGNAL(changed(const QColor &)),SLOT(setCategoryColor()));
1205 updateCategoryColor();
1206
1207
1208 // Holiday Color
1209
1210 KPrefsWidColor *holidayColor =
1211 addWidColor(i18n("Holiday color:"),
1212 &(KOPrefs::instance()->mHolidayColor),topFrame);
1213 topLayout->addWidget(holidayColor->label(),ii,0);
1214 topLayout->addWidget(holidayColor->button(),ii++,1);
1215
1216 // Highlight Color
1217 KPrefsWidColor *highlightColor =
1218 addWidColor(i18n("Highlight color:"),
1219 &(KOPrefs::instance()->mHighlightColor),topFrame);
1220 topLayout->addWidget(highlightColor->label(),ii,0);
1221 topLayout->addWidget(highlightColor->button(),ii++,1);
1222
1223 // Event color
1224 KPrefsWidColor *eventColor =
1225 addWidColor(i18n("Default event color:"),
1226 &(KOPrefs::instance()->mEventColor),topFrame);
1227 topLayout->addWidget(eventColor->label(),ii,0);
1228 topLayout->addWidget(eventColor->button(),ii++,1);
1229
1230 // agenda view background color
1231 KPrefsWidColor *agendaBgColor =
1232 addWidColor(i18n("Agenda view background color:"),
1233 &(KOPrefs::instance()->mAgendaBgColor),topFrame);
1234 topLayout->addWidget(agendaBgColor->label(),ii,0);
1235 topLayout->addWidget(agendaBgColor->button(),ii++,1);
1236
1237 // working hours color
1238 KPrefsWidColor *workingHoursColor =
1239 addWidColor(i18n("Working hours color:"),
1240 &(KOPrefs::instance()->mWorkingHoursColor),topFrame);
1241 topLayout->addWidget(workingHoursColor->label(),ii,0);
1242 topLayout->addWidget(workingHoursColor->button(),ii++,1);
1243
1244 KPrefsWidBool *sb =
1245 addWidBool(i18n("Use colors for application:"),
1246 &(KOPrefs::instance()->mUseAppColors),topFrame);
1247 topLayout->addMultiCellWidget(sb->checkBox(), ii, ii, 0,1 );
1248
1249 ii++;
1250 KPrefsWidColor * workingHoursColor1 =
1251 addWidColor(i18n("Buttons, menus, etc.:"),
1252 &(KOPrefs::instance()->mAppColor1),topFrame);
1253 topLayout->addWidget(workingHoursColor1->label(),ii,0);
1254 topLayout->addWidget(workingHoursColor1->button(),ii++,1);
1255
1256 KPrefsWidColor * workingHoursColor2 =
1257 addWidColor(i18n("Frames, labels, etc.:"),
1258 &(KOPrefs::instance()->mAppColor2),topFrame);
1259 topLayout->addWidget(workingHoursColor2->label(),ii,0);
1260 topLayout->addWidget(workingHoursColor2->button(),ii++,1);
1261
1262
1263
1264}
1265
1266void KOPrefsDialog::setCategoryColor()
1267{
1268 mCategoryDict.replace(mCategoryCombo->currentText(), new QColor(mCategoryButton->color()));
1269}
1270
1271void KOPrefsDialog::updateCategoryColor()
1272{
1273 QString cat = mCategoryCombo->currentText();
1274 QColor *color = mCategoryDict.find(cat);
1275 if (!color) {
1276 color = KOPrefs::instance()->categoryColor(cat);
1277 }
1278 if (color) {
1279 mCategoryButton->setColor(*color);
1280 }
1281}
1282
1283void KOPrefsDialog::setupPrinterTab()
1284{
1285 mPrinterTab = addPage(i18n("Printing"),0,
1286 DesktopIcon("fileprint",KIcon::SizeMedium));
1287
1288 QGridLayout *topLayout = new QGridLayout(mPrinterTab,5,2);
1289 topLayout->setSpacing(spacingHint());
1290 topLayout->setMargin(marginHint());
1291
1292 topLayout->setRowStretch(4,1);
1293}
1294
1295void KOPrefsDialog::setupGroupSchedulingTab()
1296{
1297#if 0
1298 QFrame *topFrame = addPage(i18n("Group Scheduling"),0,
1299 DesktopIcon("personal",KIcon::SizeMedium));
1300
1301 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
1302 topLayout->setSpacing(spacingHint());
1303 topLayout->setMargin(marginHint());
1304
1305#if 0
1306 KPrefsWidRadios *schedulerGroup =
1307 addWidRadios(i18n("Scheduler Mail Client"),&(KOPrefs::instance()->mIMIPScheduler),
1308 topFrame);
1309 schedulerGroup->addRadio("Dummy"); // Only for debugging
1310 schedulerGroup->addRadio(i18n("Mail client"));
1311
1312 topLayout->addMultiCellWidget(schedulerGroup->groupBox(),0,0,0,1);
1313#endif
1314
1315 KPrefsWidRadios *sendGroup =
1316 addWidRadios(i18n("Scheduler Mails Should Be"),&(KOPrefs::instance()->mIMIPSend),
1317 topFrame);
1318 sendGroup->addRadio(i18n("Send to outbox"));
1319 sendGroup->addRadio(i18n("Send directly"));
1320
1321 topLayout->addMultiCellWidget(sendGroup->groupBox(),1,1,0,1);
1322
1323 topLayout->addMultiCellWidget(new QLabel(i18n("Additional email addresses:"),topFrame),2,2,0,1);
1324 mAMails = new QListView(topFrame);
1325 mAMails->addColumn(i18n("Email"),300);
1326 topLayout->addMultiCellWidget(mAMails,3,3,0,1);
1327
1328 topLayout->addWidget(new QLabel(i18n("Additional email address:"),topFrame),4,0);
1329 aEmailsEdit = new QLineEdit(topFrame);
1330 aEmailsEdit->setEnabled(false);
1331 topLayout->addWidget(aEmailsEdit,4,1);
1332
1333 QPushButton *add = new QPushButton(i18n("New"),topFrame,"new");
1334 topLayout->addWidget(add,5,0);
1335 QPushButton *del = new QPushButton(i18n("Remove"),topFrame,"remove");
1336 topLayout->addWidget(del,5,1);
1337
1338 //topLayout->setRowStretch(2,1);
1339 connect(add, SIGNAL( clicked() ), this, SLOT(addItem()) );
1340 connect(del, SIGNAL( clicked() ), this, SLOT(removeItem()) );
1341 connect(aEmailsEdit,SIGNAL( textChanged(const QString&) ), this,SLOT(updateItem()));
1342 connect(mAMails,SIGNAL(selectionChanged(QListViewItem *)),SLOT(updateInput()));
1343#endif
1344}
1345
1346void KOPrefsDialog::setupGroupAutomationTab()
1347{
1348 return;
1349 QFrame *topFrame = addPage(i18n("Group Automation"),0,
1350 DesktopIcon("personal",KIcon::SizeMedium));
1351
1352 QGridLayout *topLayout = new QGridLayout(topFrame,5,1);
1353 topLayout->setSpacing(spacingHint());
1354 topLayout->setMargin(marginHint());
1355
1356 KPrefsWidRadios *autoRefreshGroup =
1357 addWidRadios(i18n("Auto Send Refresh"),
1358 &(KOPrefs::instance()->mIMIPAutoRefresh),topFrame);
1359 autoRefreshGroup->addRadio(i18n("Never"));
1360 autoRefreshGroup->addRadio(i18n("If attendee is in addressbook"));
1361 //autoRefreshGroup->addRadio(i18n("selected emails"));
1362 topLayout->addMultiCellWidget(autoRefreshGroup->groupBox(),0,0,0,0);
1363
1364 KPrefsWidRadios *autoInsertGroup =
1365 addWidRadios(i18n("Auto Insert IMIP Replies"),
1366 &(KOPrefs::instance()->mIMIPAutoInsertReply),topFrame);
1367 autoInsertGroup->addRadio(i18n("Never"));
1368 autoInsertGroup->addRadio(i18n("If attendee is in addressbook"));
1369 //autoInsertGroup->addRadio(i18n("selected emails"));
1370 topLayout->addMultiCellWidget(autoInsertGroup->groupBox(),1,1,0,0);
1371
1372 KPrefsWidRadios *autoRequestGroup =
1373 addWidRadios(i18n("Auto Insert IMIP Requests"),
1374 &(KOPrefs::instance()->mIMIPAutoInsertRequest),topFrame);
1375 autoRequestGroup->addRadio(i18n("Never"));
1376 autoRequestGroup->addRadio(i18n("If organizer is in addressbook"));
1377 //autoInsertGroup->addRadio(i18n("selected emails"));
1378 topLayout->addMultiCellWidget(autoRequestGroup->groupBox(),2,2,0,0);
1379
1380 KPrefsWidRadios *autoFreeBusyGroup =
1381 addWidRadios(i18n("Auto Send FreeBusy Information"),
1382 &(KOPrefs::instance()->mIMIPAutoFreeBusy),topFrame);
1383 autoFreeBusyGroup->addRadio(i18n("Never"));
1384 autoFreeBusyGroup->addRadio(i18n("If requested from an email in addressbook"));
1385 //autoFreeBusyGroup->addRadio(i18n("selected emails"));
1386 topLayout->addMultiCellWidget(autoFreeBusyGroup->groupBox(),3,3,0,0);
1387
1388 KPrefsWidRadios *autoFreeBusyReplyGroup =
1389 addWidRadios(i18n("Auto Save FreeBusy Replies"),
1390 &(KOPrefs::instance()->mIMIPAutoFreeBusyReply),topFrame);
1391 autoFreeBusyReplyGroup->addRadio(i18n("Never"));
1392 autoFreeBusyReplyGroup->addRadio(i18n("If attendee is in addressbook"));
1393 //autoFreeBusyGroup->addRadio(i18n("selected emails"));
1394 topLayout->addMultiCellWidget(autoFreeBusyReplyGroup->groupBox(),4,4,0,0);
1395}
1396
1397void KOPrefsDialog::showPrinterTab()
1398{
1399 showPage(pageIndex(mPrinterTab));
1400}
1401
1402
1403void KOPrefsDialog::setCombo(QComboBox *combo, const QString & text,
1404 const QStringList *tags)
1405{
1406 if (tags) {
1407 int i = tags->findIndex(text);
1408 if (i > 0) combo->setCurrentItem(i);
1409 } else {
1410 for(int i=0;i<combo->count();++i) {
1411 if (combo->text(i) == text) {
1412 combo->setCurrentItem(i);
1413 break;
1414 }
1415 }
1416 }
1417}
1418
1419void KOPrefsDialog::usrReadConfig()
1420{
1421 mNameEdit->setText(KOPrefs::instance()->fullName());
1422 mEmailEdit->setText(KOPrefs::instance()->email());
1423
1424 mAutoSaveIntervalSpin->setValue(KOPrefs::instance()->mAutoSaveInterval);
1425 QDate current ( 2001, 1,1);
1426 mStartDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingStart-1));
1427 mEndDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingEnd-1));
1428 setCombo(mTimeZoneCombo,i18n(KOPrefs::instance()->mTimeZoneId));
1429 //mTimezoneOffsetSpin->setValue( KOPrefs::instance()->mTimeZoneOffset);
1430 mStartTimeSpin->setValue(KOPrefs::instance()->mStartTime);
1431 mDefaultDurationSpin->setValue(KOPrefs::instance()->mDefaultDuration);
1432 mAlarmTimeCombo->setCurrentItem(KOPrefs::instance()->mAlarmTime);
1433 // if (KOPrefs::instance()->mAllDaySize > 47 )
1434 // KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize/2;
1435 //mHourSizeSlider->setValue(KOPrefs::instance()->mAllDaySize);
1436
1437 mNextXDaysSpin->setValue(KOPrefs::instance()->mNextXDays);
1438 mWhatsNextSpin->setValue(KOPrefs::instance()->mWhatsNextDays);
1439 mPrioSpin->setValue(KOPrefs::instance()->mWhatsNextPrios);
1440 // mAMails->clear();
1441 // for ( QStringList::Iterator it = KOPrefs::instance()->mAdditionalMails.begin();
1442// it != KOPrefs::instance()->mAdditionalMails.end(); ++it ) {
1443// QListViewItem *item = new QListViewItem(mAMails);
1444// item->setText(0,*it);
1445// mAMails->insertItem(item);
1446// }
1447
1448 // mRemoteIPEdit->setText(KOPrefs::instance()->mRemoteIP);
1449 //mRemoteUser->setText(KOPrefs::instance()->mRemoteUser);
1450 //mRemotePassWd->setText(KOPrefs::instance()->mRemotePassWd);
1451 //mRemoteFile->setText(KOPrefs::instance()->mRemoteFile);
1452
1453 //that soundmLocalTempFile->setText(KOPrefs::instance()->mLocalTempFile);
1454 mDefaultAlarmFile->setText(KOPrefs::instance()->mDefaultAlarmFile);
1455 QString dummy = KOPrefs::instance()->mUserDateFormatLong;
1456 mUserDateFormatLong->setText(dummy.replace( QRegExp("K"), QString(",") ));
1457 dummy = KOPrefs::instance()->mUserDateFormatShort;
1458 mUserDateFormatShort->setText(dummy.replace( QRegExp("K"), QString(",") ));
1459 updateCategories();
1460 mAlarmPlayBeeps->setValue(KOPrefs::instance()->mAlarmPlayBeeps );
1461 mAlarmSuspendTime->setValue(KOPrefs::instance()->mAlarmSuspendTime );
1462 mAlarmSuspendCount->setValue(KOPrefs::instance()->mAlarmSuspendCount );
1463 mAlarmBeepInterval->setValue(KOPrefs::instance()->mAlarmBeepInterval );
1464}
1465
1466
1467void KOPrefsDialog::usrWriteConfig()
1468{
1469
1470 // KOPrefs::instance()->mRemoteIP = mRemoteIPEdit->text();
1471 //KOPrefs::instance()->mRemoteUser = mRemoteUser->text();
1472 //KOPrefs::instance()->mRemotePassWd = mRemotePassWd->text();
1473 //KOPrefs::instance()->mRemoteFile= mRemoteFile->text();
1474 //KOPrefs::instance()->mLocalTempFile =mLocalTempFile->text();
1475 KOPrefs::instance()->mDefaultAlarmFile =mDefaultAlarmFile->text();
1476
1477 KOPrefs::instance()->mUserDateFormatShort = mUserDateFormatShort->text().replace( QRegExp(","), QString("K") );
1478 KOPrefs::instance()->mUserDateFormatLong = mUserDateFormatLong->text().replace( QRegExp(","), QString("K") );
1479 KOPrefs::instance()->setFullName(mNameEdit->text());
1480 KOPrefs::instance()->setEmail(mEmailEdit->text());
1481
1482 KOPrefs::instance()->mAutoSaveInterval = mAutoSaveIntervalSpin->value();
1483
1484 KOPrefs::instance()->mTimeZoneId = mTimeZoneCombo->currentText();
1485 QDate date;
1486 date = mStartDateSavingEdit->date();
1487 int sub = 0;
1488 if ( QDate::leapYear( date.year() ) && date.dayOfYear() > 59 )
1489 sub = 1;
1490 KOPrefs::instance()->mDaylightsavingStart = date.dayOfYear()-sub;
1491 date = mEndDateSavingEdit->date();
1492 if ( QDate::leapYear( date.year() ) && date.dayOfYear() > 59 )
1493 sub = 1;
1494 else
1495 sub = 0;
1496 KOPrefs::instance()->mDaylightsavingEnd = date.dayOfYear()-sub;
1497 // KOPrefs::instance()->mTimeZoneOffset = mTimezoneOffsetSpin->value();
1498
1499 KOPrefs::instance()->mStartTime = mStartTimeSpin->value();
1500 KOPrefs::instance()->mDefaultDuration = mDefaultDurationSpin->value();
1501 KOPrefs::instance()->mAlarmTime = mAlarmTimeCombo->currentItem();
1502
1503 //KOPrefs::instance()->mAllDaySize = mHourSizeSlider->value();
1504
1505 QDictIterator<QColor> it(mCategoryDict);
1506 while (it.current()) {
1507 KOPrefs::instance()->setCategoryColor(it.currentKey(),*it.current());
1508 ++it;
1509 }
1510
1511 KOPrefs::instance()->mNextXDays = mNextXDaysSpin->value();
1512 KOPrefs::instance()->mWhatsNextDays = mWhatsNextSpin->value();
1513 KOPrefs::instance()->mWhatsNextPrios = mPrioSpin->value();
1514
1515 KOPrefs::instance()->mAdditionalMails.clear();
1516 // QListViewItem *item;
1517 // item = mAMails->firstChild();
1518 // while (item)
1519 // {
1520 // KOPrefs::instance()->mAdditionalMails.append( item->text(0) );
1521 // item = item->nextSibling();
1522 // }
1523 KOPrefs::instance()->mAlarmPlayBeeps = mAlarmPlayBeeps->value();
1524 KOPrefs::instance()->mAlarmSuspendTime = mAlarmSuspendTime->value() ;
1525 KOPrefs::instance()->mAlarmSuspendCount= mAlarmSuspendCount->value() ;
1526 KOPrefs::instance()->mAlarmBeepInterval= mAlarmBeepInterval->value() ;
1527
1528}
1529
1530void KOPrefsDialog::updateCategories()
1531{
1532 mCategoryCombo->clear();
1533 mCategoryDict.clear();
1534 mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories);
1535 updateCategoryColor();
1536}
1537
1538void KOPrefsDialog::warningGroupScheduling()
1539{
1540 warningExperimental(mEnableGroupScheduling->checkBox()->isChecked());
1541}
1542
1543void KOPrefsDialog::warningProjectView()
1544{
1545 warningExperimental(mEnableProjectView->checkBox()->isChecked());
1546}
1547
1548void KOPrefsDialog::warningExperimental(bool on)
1549{
1550 if (on) {
1551 KMessageBox::information(this,i18n("This is an experimental feature. "
1552 "It may not work, it may do nothing useful and it may cause data loss. "
1553 "Use with care.\n"
1554 "You have to restart KOrganizer for this setting to take effect."));
1555 } else {
1556 KMessageBox::information(this,
1557 i18n("You have to restart KOrganizer for this setting to take effect."));
1558 }
1559}
1560
1561void KOPrefsDialog::toggleEmailSettings(bool on)
1562{
1563 if (on) {
1564 mEmailEdit->setEnabled(false);
1565 mNameEdit->setEnabled(false);
1566 mEmailLabel->setEnabled(false);
1567 mNameLabel->setEnabled(false);
1568
1569 KEMailSettings settings;
1570 mNameEdit->setText(settings.getSetting(KEMailSettings::RealName));
1571 mEmailEdit->setText(settings.getSetting(KEMailSettings::EmailAddress));
1572 } else {
1573 mEmailEdit->setEnabled(true);
1574 mNameEdit->setEnabled(true);
1575 mEmailLabel->setEnabled(true);
1576 mNameLabel->setEnabled(true);
1577 }
1578}
1579
1580void KOPrefsDialog::addItem()
1581{
1582 // aEmailsEdit->setEnabled(true);
1583// QListViewItem *item = new QListViewItem(mAMails);
1584// mAMails->insertItem(item);
1585// mAMails->setSelected(item,true);
1586// aEmailsEdit->setText(i18n("(EmptyEmail)"));
1587}
1588
1589void KOPrefsDialog::removeItem()
1590{
1591// QListViewItem *item;
1592// item = mAMails->selectedItem();
1593// if (!item) return;
1594// mAMails->takeItem(item);
1595// item = mAMails->selectedItem();
1596// if (!item) {
1597// aEmailsEdit->setText("");
1598// aEmailsEdit->setEnabled(false);
1599// }
1600// if (mAMails->childCount() == 0) {
1601// aEmailsEdit->setEnabled(false);
1602// }
1603}
1604
1605void KOPrefsDialog::updateItem()
1606{
1607 // QListViewItem *item;
1608// item = mAMails->selectedItem();
1609// if (!item) return;
1610// item->setText(0,aEmailsEdit->text());
1611}
1612
1613void KOPrefsDialog::updateInput()
1614{
1615// QListViewItem *item;
1616// item = mAMails->selectedItem();
1617// if (!item) return;
1618// aEmailsEdit->setEnabled(true);
1619// aEmailsEdit->setText(item->text(0));
1620}
1621void KOPrefsDialog::updateTimezoneOffset( int index )
1622{
1623 /*
1624 qDebug("updateTimezoneOffset %d ", index);
1625 if ( index < 24 ) {
1626 mTimezoneOffsetSpin->setEnabled ( false );
1627 mTimezoneOffsetSpin->setValue( ( index-11 ) * 60 );
1628
1629
1630 } else {
1631 if ( index == 24 ) {
1632 mTimezoneOffsetSpin->setEnabled ( true );
1633 mTimezoneOffsetSpin->setValue( KOPrefs::instance()->mTimeZoneOffset);
1634
1635 } else {
1636 mTimezoneOffsetSpin->setEnabled ( false );
1637 mTimezoneOffsetSpin->setValue( 0 );
1638 }
1639 }
1640 */
1641}
1642
1643void KOPrefsDialog::setupTimeZoneTab()
1644{
1645 QFrame *topFrame = addPage(i18n("Time Zone"),0,0);
1646 // DesktopIcon("clock",KIcon::SizeMedium));
1647
1648 QGridLayout *topLayout = new QGridLayout(topFrame,5,2);
1649 topLayout->setSpacing(spacingHint());
1650 topLayout->setMargin(marginHint());
1651
1652 QHBox *timeZoneBox = new QHBox( topFrame );
1653 topLayout->addMultiCellWidget( timeZoneBox, 0, 0, 0, 1 );
1654
1655 new QLabel( i18n("Timezone:"), timeZoneBox );
1656 mTimeZoneCombo = new QComboBox( timeZoneBox );
1657 if ( QApplication::desktop()->width() < 300 ) {
1658 mTimeZoneCombo->setMaximumWidth(150);
1659 }
1660
1661 QStringList list;
1662 list = KGlobal::locale()->timeZoneList();
1663 mTimeZoneCombo->insertStringList(list);
1664
1665 // find the currently set time zone and select it
1666 QString sCurrentlySet = KOPrefs::instance()->mTimeZoneId;
1667 int nCurrentlySet = 11;
1668 for (int i = 0; i < mTimeZoneCombo->count(); i++)
1669 {
1670 if (mTimeZoneCombo->text(i) == sCurrentlySet)
1671 {
1672 nCurrentlySet = i;
1673 break;
1674 }
1675 }
1676 mTimeZoneCombo->setCurrentItem(nCurrentlySet);
1677 int iii = 1;
1678 KPrefsWidBool *sb =
1679 addWidBool(i18n("Timezone has daylight saving"),
1680 &(KOPrefs::instance()->mUseDaylightsaving),topFrame);
1681 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
1682 ++iii;
1683 QLabel* lab = new QLabel( i18n("Actual start and end is the\nsunday before this date."), topFrame );
1684 topLayout->addMultiCellWidget(lab, iii,iii,0,1);
1685 ++iii;
1686 lab = new QLabel( i18n("The year in the date is ignored."), topFrame );
1687 topLayout->addMultiCellWidget(lab, iii,iii,0,1);
1688 ++iii;
1689 lab = new QLabel( i18n("Daylight start:"), topFrame );
1690 topLayout->addWidget(lab, iii,0);
1691 mStartDateSavingEdit = new KDateEdit(topFrame);
1692 topLayout->addWidget(mStartDateSavingEdit, iii,1);
1693 ++iii;
1694
1695 lab = new QLabel( i18n("Daylight end:"), topFrame );
1696 topLayout->addWidget(lab, iii,0);
1697 mEndDateSavingEdit = new KDateEdit(topFrame);
1698 topLayout->addWidget(mEndDateSavingEdit, iii,1);
1699 ++iii;
1700 QDate current ( 2001, 1,1);
1701 mStartDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingStart-1));
1702 mEndDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingEnd-1));
1703
1704
1705}
1706#endif
diff --git a/kmicromail/koprefsdialog.cpp~ b/kmicromail/koprefsdialog.cpp~
new file mode 100644
index 0000000..5ba4817
--- a/dev/null
+++ b/kmicromail/koprefsdialog.cpp~
@@ -0,0 +1,1609 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23
24#include <qlayout.h>
25#include <qlabel.h>
26#include <qgroupbox.h>
27#include <qbuttongroup.h>
28#include <qlineedit.h>
29#include <qfont.h>
30#include <qslider.h>
31#include <qfile.h>
32#include <qtextstream.h>
33#include <qcombobox.h>
34#include <qvbox.h>
35#include <qhbox.h>
36#include <qregexp.h>
37#include <qspinbox.h>
38#include <qdatetime.h>
39#include <qcheckbox.h>
40#include <qradiobutton.h>
41#include <qpushbutton.h>
42#include <qstrlist.h>
43#include <qapplication.h>
44
45#include <kcolorbutton.h>
46#include <kdebug.h>
47#include <klocale.h>
48#include <kglobal.h>
49#include <kfontdialog.h>
50#include <kfiledialog.h>
51#include <kmessagebox.h>
52#include <kcolordialog.h>
53#include <kiconloader.h>
54#include <kemailsettings.h>
55#include <kstandarddirs.h>
56
57#include <kurlrequester.h>
58#include <klineedit.h>
59
60#if defined(USE_SOLARIS)
61#include <sys/param.h>
62
63#define ZONEINFODIR "/usr/share/lib/zoneinfo"
64#define INITFILE "/etc/default/init"
65#endif
66
67#include "koprefs.h"
68
69#include "koprefsdialog.h"
70
71
72KOPrefsDialog::KOPrefsDialog(QWidget *parent, char *name, bool modal) :
73 KPrefsDialog(KOPrefs::instance(),parent,name,true)
74{
75
76 setCaption( i18n("Preferences - some settings need a restart (nr)"));
77 mCategoryDict.setAutoDelete(true);
78
79 KGlobal::locale()->insertCatalogue("timezones");
80
81 setupMainTab();
82 setupLocaleTab();
83 setupTimeZoneTab();
84 setupTimeTab();
85 setupLocaleDateTab();
86 setupFontsTab();
87 setupColorsTab();
88 setupViewsTab();
89 //setupSyncTab();
90 //setupSyncAlgTab();
91 //setupPrinterTab();
92 //setupGroupSchedulingTab();
93 //setupGroupAutomationTab();
94}
95
96
97KOPrefsDialog::~KOPrefsDialog()
98{
99}
100
101void KOPrefsDialog::setupLocaleDateTab()
102{
103QFrame *topFrame = addPage(i18n("Date Format"),0,0);
104 QGridLayout *topLayout = new QGridLayout(topFrame,3,2);
105 topLayout->setSpacing(spacingHint());
106 topLayout->setMargin(marginHint());
107 int iii = 0;
108
109
110 KPrefsWidRadios *syncPrefsGroup =
111 addWidRadios(i18n("Date Format:"),&(KOPrefs::instance()->mPreferredDate),topFrame);
112 QString format;
113 if ( QApplication::desktop()->width() < 480 )
114 format = "(%d.%m.%Y)";
115 else
116 format = "(%d.%m.%Y|%A %d %B %Y)";
117 syncPrefsGroup->addRadio(i18n("24.03.2004 "+format));
118 if ( QApplication::desktop()->width() < 480 )
119 format = "(%m.%d.%Y)";
120 else
121 format = "(%m.%d.%Y|%A %B %d %Y)";
122 syncPrefsGroup->addRadio(i18n("03.24.2004 "+format));
123 if ( QApplication::desktop()->width() < 480 )
124 format = "(%Y-%m-%d)";
125 else
126 format = "(%Y-%m-%d|%A %Y %B %d)";
127 syncPrefsGroup->addRadio(i18n("2004-03-24 "+format));
128 syncPrefsGroup->addRadio(i18n("User defined"));
129 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
130 ++iii;
131 ++iii;
132 QLabel * lab;
133 mUserDateFormatLong = new QLineEdit(topFrame);
134 lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame);
135 topLayout->addWidget(lab ,iii,0);
136 topLayout->addWidget(mUserDateFormatLong,iii,1);
137 ++iii;
138 mUserDateFormatShort = new QLineEdit(topFrame);
139 lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame);
140 topLayout->addWidget(lab ,iii,0);
141 topLayout->addWidget(mUserDateFormatShort,iii,1);
142 ++iii;
143 lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame);
144 topLayout->addMultiCellWidget(lab ,iii,iii,0,1);
145 ++iii;
146 lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame);
147 topLayout->addMultiCellWidget(lab ,iii,iii,0,1);
148 ++iii;
149 lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame);
150 topLayout->addMultiCellWidget(lab ,iii,iii,0,1);
151 ++iii;
152
153}
154
155void KOPrefsDialog::setupLocaleTab()
156{
157 QFrame *topFrame = addPage(i18n("Locale"),0,0);
158 QGridLayout *topLayout = new QGridLayout(topFrame,4,2);
159 topLayout->setSpacing(spacingHint());
160 topLayout->setMargin(marginHint());
161 int iii = 0;
162 KPrefsWidRadios *syncPrefsGroup =
163 addWidRadios(i18n("Language:(needs restart)"),&(KOPrefs::instance()->mPreferredLanguage),topFrame);
164 syncPrefsGroup->addRadio(i18n("English"));
165 syncPrefsGroup->addRadio(i18n("German"));
166 syncPrefsGroup->addRadio(i18n("French"));
167 syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)"));
168 if ( QApplication::desktop()->width() < 300 )
169 ;// syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical);
170 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
171 ++iii;
172
173 syncPrefsGroup =
174 addWidRadios(i18n("Time Format(nr):"),&(KOPrefs::instance()->mPreferredTime),topFrame);
175 if ( QApplication::desktop()->width() > 300 )
176 syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical);
177 syncPrefsGroup->addRadio(i18n("24:00"));
178 syncPrefsGroup->addRadio(i18n("12:00am"));
179 syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical);
180 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
181 ++iii;
182 KPrefsWidBool *sb;
183 if ( QApplication::desktop()->width() < 300 ) {
184 sb =
185 addWidBool(i18n("Week starts on Sunday"),
186 &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame);
187 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
188 ++iii;
189 sb =
190 addWidBool(i18n("Use short date in (WN/E) view"),
191 &(KOPrefs::instance()->mShortDateInViewer),topFrame);
192 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
193 }
194 else {
195 QWidget * hb = new QWidget( topFrame );
196 QHBoxLayout *hbLayout = new QHBoxLayout(hb);
197 sb =
198 addWidBool(i18n("Week starts on Sunday"),
199 &(KOPrefs::instance()->mWeekStartsOnSunday),hb);
200 hbLayout->addWidget(sb->checkBox() );
201 sb =
202 addWidBool(i18n("Use short date in (WN/E) view"),
203 &(KOPrefs::instance()->mShortDateInViewer),hb);
204 hbLayout->addWidget(sb->checkBox() );
205 topLayout->addMultiCellWidget(hb, iii,iii,0,1);
206
207 }
208 //#ifndef DESKTOP_VERSION
209#if 0
210 ++iii;
211 sb =
212 addWidBool(i18n("Quick load/save (w/o Unicode)"),
213 &(KOPrefs::instance()->mUseQuicksave),topFrame);
214 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
215#endif
216}
217void KOPrefsDialog::showSyncPage()
218{
219 showPage ( 2 ) ;
220
221}
222void KOPrefsDialog::setupSyncAlgTab()
223{
224#if 0
225 QLabel * lab;
226 QFrame *topFrame = addPage(i18n("Sync Prefs"),0,0);
227 mSetupSyncAlgTab = topFrame;
228 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
229 topLayout->setSpacing(spacingHint());
230 topLayout->setMargin(marginHint());
231 int iii = 0;
232
233 KPrefsWidBool *sb =
234 addWidBool(i18n("Ask for preferences before syncing"),
235 &(KOPrefs::instance()->mAskForPreferences),topFrame);
236 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
237
238 ++iii;
239
240 KPrefsWidRadios *syncPrefsGroup =
241 addWidRadios(i18n("Sync preferences:"),&(KOPrefs::instance()->mSyncAlgoPrefs),
242 topFrame);
243 syncPrefsGroup->addRadio(i18n("Take local entry on conflict"));
244 syncPrefsGroup->addRadio(i18n("Take remote entry on conflict"));
245 syncPrefsGroup->addRadio(i18n("Take newest entry on conflict"));
246 syncPrefsGroup->addRadio(i18n("Ask for every entry on conflict"));
247 syncPrefsGroup->addRadio(i18n("Force take local entry always"));
248 syncPrefsGroup->addRadio(i18n("Force take remote entry always"));
249 topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1);
250 ++iii;
251 sb =
252 addWidBool(i18n("Show summary after syncing"),
253 &(KOPrefs::instance()->mShowSyncSummary),topFrame);
254 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
255
256 ++iii;
257#endif
258
259
260
261}
262
263
264void KOPrefsDialog::setupSyncTab()
265{
266#if 0
267 QLabel * lab;
268 QFrame *topFrame = addPage(i18n("Sync Network"),0,0);
269 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
270 topLayout->setSpacing(spacingHint());
271 topLayout->setMargin(marginHint());
272 lab = new QLabel(i18n("Remote syncing (via ssh/scp)\nnetwork settings "), topFrame);
273 int iii = 0;
274 topLayout->addMultiCellWidget(lab , iii,iii,0,1);
275 ++iii;
276
277 mRemoteIPEdit = new QLineEdit(topFrame);
278 lab = new QLabel(mRemoteIPEdit, i18n("Remote IP:"), topFrame);
279 topLayout->addWidget(lab ,iii,0);
280 topLayout->addWidget(mRemoteIPEdit,iii,1);
281 ++iii;
282 mRemoteUser = new QLineEdit(topFrame);
283 lab = new QLabel(mRemoteUser, i18n("Remote user:"), topFrame);
284 topLayout->addWidget(lab ,iii,0);
285 topLayout->addWidget(mRemoteUser, iii,1);
286 ++iii;
287
288 mRemoteFile = new QLineEdit(topFrame);
289 lab = new QLabel(mRemoteFile, i18n("Remote file:"), topFrame);
290 topLayout->addWidget(lab ,iii,0);
291 topLayout->addWidget(mRemoteFile,iii,1);
292 ++iii;
293
294 mLocalTempFile = new QLineEdit(topFrame);
295 lab = new QLabel(mLocalTempFile, i18n("Local temp file:"), topFrame);
296 topLayout->addWidget(lab ,iii,0);
297 topLayout->addWidget(mLocalTempFile,iii,1);
298 ++iii;
299
300 KPrefsWidBool *wb =
301 addWidBool(i18n("Write back synced file"),
302 &(KOPrefs::instance()->mWriteBackFile),topFrame);
303 topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1);
304 ++iii;
305 wb =
306 addWidBool(i18n("Write back existing entries only"),
307 &(KOPrefs::instance()->mWriteBackExistingOnly),topFrame);
308 topLayout->addMultiCellWidget(wb->checkBox(), iii,iii,0,1);
309 ++iii;
310
311#endif
312}
313
314void KOPrefsDialog::setupMainTab()
315{
316 QFrame *topFrame = addPage(i18n("General"),0,0);
317 // DesktopIcon("identity",KIcon::SizeMedium));
318
319 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
320 topLayout->setSpacing(spacingHint());
321 topLayout->setMargin(marginHint());
322
323 // KPrefsWidBool *emailControlCenter =
324// addWidBool(i18n("&Use email settings from Control Center"),
325// &(KOPrefs::instance()->mEmailControlCenter),topFrame);
326// topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1);
327 // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)),
328 // SLOT(toggleEmailSettings(bool)));
329
330 mNameEdit = new QLineEdit(topFrame);
331 mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame);
332 topLayout->addWidget(mNameLabel,0,0);
333 topLayout->addWidget(mNameEdit,0,1);
334
335 mEmailEdit = new QLineEdit(topFrame);
336 mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame);
337 topLayout->addWidget(mEmailLabel,1,0);
338 topLayout->addWidget(mEmailEdit,1,1);
339 KPrefsWidBool *wb;
340 QHBox *dummy;
341 if ( QApplication::desktop()->width() > 480 ) {
342 dummy = new QHBox(topFrame);
343 } else {
344 dummy = new QVBox(topFrame);
345 }
346
347 topLayout->addMultiCellWidget(dummy, 2,2,0,1);
348 addWidBool(i18n("Full menu bar(nr)"),
349 &(KOPrefs::instance()->mShowFullMenu),dummy);
350
351
352 addWidBool(i18n("Mini icons in toolbar(nr)"),
353 &(KOPrefs::instance()->mToolBarMiniIcons),dummy);
354
355
356 dummy = new QHBox(topFrame);
357 new QLabel(i18n("Days in What's Next:"),dummy);
358 mWhatsNextSpin = new QSpinBox(1,14,1,dummy);
359
360 topLayout->addMultiCellWidget(dummy,3,3,0,1);
361
362
363
364 dummy = new QHBox(topFrame);
365 new QLabel(i18n("Days in Next-X-Days:"),dummy);
366 mNextXDaysSpin = new QSpinBox(2,14,1,dummy);
367
368 topLayout->addMultiCellWidget(dummy,4,4,0,1);
369
370 QHBox *prioBox = new QHBox(topFrame);
371 // intervalBox->setSpacing(spacingHint());
372 topLayout->addMultiCellWidget(prioBox,5,5,0,1);
373 QString messa = i18n("Show topmost todo prios in What's Next:");
374
375 if ( QApplication::desktop()->width() < 300 )
376 messa = i18n("Show topmost todo prios in What's N.:");
377 QLabel *prioLabel = new QLabel(messa, prioBox);
378 mPrioSpin = new QSpinBox(0,5,1,prioBox);
379 if ( QApplication::desktop()->width() < 300 )
380 mPrioSpin->setFixedWidth( 40 );
381
382 // KPrefsWidBool *bcc =
383// addWidBool(i18n("Send copy to owner when mailing events"),
384// &(KOPrefs::instance()->mBcc),topFrame);
385// topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1);
386
387
388 // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame);
389 //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1);
390
391 // addWidBool(i18n("Enable automatic saving of calendar"),
392 // &(KOPrefs::instance()->mAutoSave),autoSaveGroup);
393
394 QHBox *intervalBox = new QHBox(topFrame);
395 // intervalBox->setSpacing(spacingHint());
396 topLayout->addMultiCellWidget(intervalBox,6,6,0,1);
397 QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox);
398 mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox);
399 autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin);
400 /*
401 QHBox * agendasize = new QHBox ( topFrame );
402
403 new QLabel (i18n("AllDayAgenda Height:"), agendasize );
404
405
406 mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize);
407 topLayout->addMultiCellWidget(agendasize,7,7,0,1);
408 */
409 KPrefsWidBool *verticalScreen =
410 addWidBool(i18n("Show vertical screen (Needs restart)"),
411 &(KOPrefs::instance()->mVerticalScreen),topFrame);
412 //topLayout->addWidget(verticalScreen->checkBox(),ii++,0);
413 topLayout->addMultiCellWidget(verticalScreen->checkBox(),7,7,0,1);
414
415 KPrefsWidBool *ask =
416 addWidBool(i18n("Ask for quit when closing KO/Pi"),
417 &(KOPrefs::instance()->mAskForQuit),topFrame);
418 topLayout->addMultiCellWidget(ask->checkBox(),8,8,0,1);
419
420
421 /*
422 KPrefsWidBool *confirmCheck =
423 addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm),
424 topFrame);
425 topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1);
426
427
428 mEnableGroupScheduling =
429 addWidBool(i18n("Enable group scheduling"),
430 &(KOPrefs::instance()->mEnableGroupScheduling),topFrame);
431 topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0);
432 connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()),
433 SLOT(warningGroupScheduling()));
434
435 mEnableProjectView =
436 addWidBool(i18n("Enable project view"),
437 &(KOPrefs::instance()->mEnableProjectView),topFrame);
438 topLayout->addWidget(mEnableProjectView->checkBox(),9,0);
439 connect(mEnableProjectView->checkBox(),SIGNAL(clicked()),
440 SLOT(warningProjectView()));
441
442 // Can't be disabled anymore
443 mEnableGroupScheduling->checkBox()->hide();
444
445 // Disable setting, because this feature now becomes stable
446 mEnableProjectView->checkBox()->hide();
447
448 KPrefsWidRadios *defaultFormatGroup =
449 addWidRadios(i18n("Default Calendar Format"),
450 &(KOPrefs::instance()->mDefaultFormat),topFrame);
451 defaultFormatGroup->addRadio(i18n("vCalendar"));
452 defaultFormatGroup->addRadio(i18n("iCalendar"));
453
454 topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1);
455
456 // Default format unconditionally is iCalendar
457 defaultFormatGroup->groupBox()->hide();
458
459 KPrefsWidRadios *mailClientGroup =
460 addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient),
461 topFrame);
462 mailClientGroup->addRadio(i18n("KMail"));
463 mailClientGroup->addRadio(i18n("Sendmail"));
464 topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1);
465
466 KPrefsWidBool *htmlsave =
467 addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave),
468 topFrame);
469 topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1);
470
471 KPrefsWidRadios *destinationGroup =
472 addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination),
473 topFrame);
474 destinationGroup->addRadio(i18n("be added to the standard resource"));
475 destinationGroup->addRadio(i18n("be asked which resource to use"));
476 topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1);
477
478 topLayout->setRowStretch(14,1);
479 */
480}
481
482
483void KOPrefsDialog::setupTimeTab()
484{
485 QFrame *topFrame = addPage(i18n("Time"),0,0);
486 // DesktopIcon("clock",KIcon::SizeMedium));
487
488 QGridLayout *topLayout = new QGridLayout(topFrame,4,2);
489 topLayout->setSpacing(spacingHint());
490 topLayout->setMargin(marginHint());
491
492 QHBox *dummy = new QHBox(topFrame);
493 KPrefsWidTime *dayBegins =
494 addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins),
495 dummy);
496 //topLayout->addWidget(dayBegins->label(),2,0);
497
498 //topLayout->addWidget(dayBegins->spinBox(),2,1);
499 topLayout->addMultiCellWidget(dummy,0,0,0,1);
500
501 topLayout->addWidget(new QLabel(i18n("Default appointment time:"),
502 topFrame),1,0);
503 mStartTimeSpin = new QSpinBox(0,23,1,topFrame);
504 mStartTimeSpin->setSuffix(":00");
505 topLayout->addWidget(mStartTimeSpin,1,1);
506
507 topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"),
508 topFrame),2,0);
509 mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame);
510 mDefaultDurationSpin->setSuffix(":00");
511 topLayout->addWidget(mDefaultDurationSpin,2,1);
512
513 QStringList alarmList;
514 alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes")
515 << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ;
516 topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame),
517 3,0);
518 mAlarmTimeCombo = new QComboBox(topFrame);
519 mAlarmTimeCombo->insertStringList(alarmList);
520 topLayout->addWidget(mAlarmTimeCombo,3,1);
521
522
523 QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal,
524 i18n("Working Hours"),
525 topFrame);
526 topLayout->addMultiCellWidget(workingHoursGroup,4,4,0,1);
527 workingHoursGroup->layout()->setSpacing( 0 );
528 workingHoursGroup->layout()->setMargin( 4 );
529 QHBox *workStartBox = new QHBox(workingHoursGroup);
530 // workStartBox->setMargin( 0 );
531 addWidTime(i18n("Daily starting hour:"),
532 &(KOPrefs::instance()->mWorkingHoursStart),workStartBox);
533
534 QHBox *workEndBox = new QHBox(workingHoursGroup);
535 //workEndBox->setMargin( 0 );
536 addWidTime(i18n("Daily ending hour:"),
537 &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox);
538 QVBox *excludeBox = new QVBox(workingHoursGroup);
539 //excludeBox->setMargin( 0 );
540 addWidBool(i18n("Exclude holidays"),
541 &(KOPrefs::instance()->mExcludeHolidays),excludeBox);
542
543 addWidBool(i18n("Exclude Saturdays"),
544 &(KOPrefs::instance()->mExcludeSaturdays),excludeBox);
545
546// KPrefsWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"),
547 // &(KOPrefs::instance()->mMarcusBainsShowSeconds),
548 // topFrame);
549// topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0);
550
551 // topLayout->setRowStretch(6,1);
552}
553
554
555void KOPrefsDialog::setupViewsTab()
556{
557
558 QFrame *topFrame = addPage(i18n("Views"),0,0);
559 // DesktopIcon("viewmag",KIcon::SizeMedium));
560
561 QGridLayout *topLayout = new QGridLayout(topFrame,6,1);
562 topLayout->setSpacing(spacingHint());
563 topLayout->setMargin(marginHint());
564
565// QBoxLayout *dayBeginsLayout = new QHBoxLayout;
566// topLayout->addLayout(dayBeginsLayout,0,0);
567
568// KPrefsWidTime *dayBegins =
569// addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins),
570// topFrame);
571// dayBeginsLayout->addWidget(dayBegins->label());
572// dayBeginsLayout->addStretch(1);
573// dayBeginsLayout->addWidget(dayBegins->spinBox());
574
575// QBoxLayout *nextDaysLayout = new QHBoxLayout;
576// topLayout->addLayout(nextDaysLayout,1,0);
577// nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame));
578// mNextXDaysSpin = new QSpinBox(2,14,1,topFrame);
579// nextDaysLayout->addStretch(1);
580// nextDaysLayout->addWidget(mNextXDaysSpin);
581
582
583 int ii = 0;
584 KPrefsWidBool *dummy =
585 addWidBool(i18n("Edit item on doubleclick (if not, show)"),
586 &(KOPrefs::instance()->mEditOnDoubleClick),topFrame);
587 topLayout->addWidget(dummy->checkBox(),ii++,0);
588
589 dummy =
590 addWidBool(i18n("Highlight current day in agenda"),
591 &(KOPrefs::instance()->mHighlightCurrentDay),topFrame);
592 topLayout->addWidget(dummy->checkBox(),ii++,0);
593
594 dummy =
595 addWidBool(i18n("Use light color for highlight current day"),
596 &(KOPrefs::instance()->mUseHighlightLightColor),topFrame);
597 topLayout->addWidget(dummy->checkBox(),ii++,0);
598
599 KPrefsWidBool *dailyRecur =
600 addWidBool(i18n("Show events that recur daily in date nav."),
601 &(KOPrefs::instance()->mDailyRecur),topFrame);
602 topLayout->addWidget(dailyRecur->checkBox(),ii++,0);
603
604 KPrefsWidBool *weeklyRecur =
605 addWidBool(i18n("Show ev. that recur weekly in date nav."),
606 &(KOPrefs::instance()->mWeeklyRecur),topFrame);
607 topLayout->addWidget(weeklyRecur->checkBox(),ii++,0);
608 if ( QApplication::desktop()->width() > 640 ) {
609
610 KPrefsWidBool *enableToolTips =
611 addWidBool(i18n("Enable tooltips displaying summary of ev."),
612 &(KOPrefs::instance()->mEnableToolTips),topFrame);
613 topLayout->addWidget(enableToolTips->checkBox(),ii++,0);
614
615 }
616 KPrefsWidBool *passwdk =
617 addWidBool(i18n("Show parent To-Do's in What's Next view"),
618 &(KOPrefs::instance()->mWNViewShowsParents),topFrame);
619 topLayout->addWidget(passwdk->checkBox(), ii++,0);
620
621 passwdk =
622 addWidBool(i18n("Show location in What's Next view"),
623 &(KOPrefs::instance()->mWNViewShowLocation),topFrame);
624 topLayout->addWidget(passwdk->checkBox(), ii++,0);
625
626 passwdk =
627 addWidBool(i18n("Show Sync Events in WN/Agenda view"),
628 &(KOPrefs::instance()->mShowSyncEvents),topFrame);
629 topLayout->addWidget(passwdk->checkBox(), ii++,0);
630
631
632 KPrefsWidBool *marcusBainsEnabled =
633 addWidBool(i18n("Show Marcus Bains line"),
634 &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame);
635 topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0);
636
637
638 // topLayout->addWidget(hourSizeGroup,ii++,0);
639 // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0);
640 //topLayout->setRowStretch(11,1);
641
642
643
644
645
646
647 topFrame = addPage(i18n("ViewChange"),0,0);
648 // DesktopIcon("viewmag",KIcon::SizeMedium));
649
650 topLayout = new QGridLayout(topFrame,6,1);
651 topLayout->setSpacing(spacingHint());
652 topLayout->setMargin(marginHint());
653 ii = 0;
654
655
656 dummy =
657 addWidBool(i18n("Hold fullscreen on view change"),
658 &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame);
659 topLayout->addWidget(dummy->checkBox(),ii++,0);
660
661 dummy =
662 addWidBool(i18n("Hold non-fullscreen on view change"),
663 &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame);
664 topLayout->addWidget(dummy->checkBox(),ii++,0);
665
666
667 KPrefsWidBool *fullViewTodo =
668 addWidBool(i18n("Event list view uses full window"),
669 &(KOPrefs::instance()->mFullViewTodo),topFrame);
670 topLayout->addWidget(fullViewTodo->checkBox(),ii++,0);
671
672 KPrefsWidBool *fullViewMonth =
673 addWidBool(i18n("Next days view uses full window"),
674 &(KOPrefs::instance()->mFullViewMonth),topFrame);
675 topLayout->addWidget(fullViewMonth->checkBox(),ii++,0);
676
677 dummy =
678 addWidBool(i18n("Set agenda to DayBeginsAt on change"),
679 &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame);
680 topLayout->addWidget(dummy->checkBox(),ii++,0);
681
682 dummy =
683 addWidBool(i18n("Set agenda to current time on change"),
684 &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame);
685 topLayout->addWidget(dummy->checkBox(),ii++,0);
686
687 dummy =
688 addWidBool(i18n("Listview uses monthly timespan"),
689 &(KOPrefs::instance()->mListViewMonthTimespan),topFrame);
690 topLayout->addWidget(dummy->checkBox(),ii++,0);
691 dummy =
692 addWidBool(i18n("Highlight selection in Time Edit"),
693 &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame);
694 topLayout->addWidget( dummy->checkBox(), ii++,0);
695
696
697
698
699
700 topFrame = addPage(i18n("Month View"),0,0);
701 // DesktopIcon("viewmag",KIcon::SizeMedium));
702
703 topLayout = new QGridLayout(topFrame,5,1);
704 topLayout->setSpacing(spacingHint());
705 topLayout->setMargin(marginHint());
706 ii = 0;
707 QLabel *lab;
708 QHBox *habo = new QHBox( topFrame );
709 if ( QApplication::desktop()->width() < 320 ) {
710 lab = new QLabel ( i18n("Show events that recur "), topFrame );
711 topLayout->addMultiCellWidget(lab,ii, ii,0,1);
712 ii++;
713
714 } else {
715 new QLabel ( i18n("Show events that recur "), habo );
716
717 }
718 dailyRecur =
719 addWidBool(i18n("daily"),
720 &(KOPrefs::instance()->mMonthDailyRecur),habo);
721 // topLayout->addWidget(dailyRecur->checkBox(),ii++,0);
722
723 weeklyRecur =
724 addWidBool(i18n("weekly"),
725 &(KOPrefs::instance()->mMonthWeeklyRecur),habo);
726 topLayout->addMultiCellWidget(habo,ii, ii,0,1);
727 ii++;
728
729
730 habo = new QHBox( topFrame );
731 if ( QApplication::desktop()->width() < 320 ) {
732 lab = new QLabel (i18n("Show in every cell ") , topFrame );
733 topLayout->addMultiCellWidget(lab,ii, ii,0,1);
734 ii++;
735
736 } else {
737 new QLabel ( i18n("Show in every cell "), habo );
738 }
739 weeklyRecur =
740 addWidBool(i18n("short month"),
741 &(KOPrefs::instance()->mMonthShowShort),habo);
742 weeklyRecur =
743 addWidBool(i18n("icons"),
744 &(KOPrefs::instance()->mMonthShowIcons),habo);
745
746 topLayout->addMultiCellWidget(habo,ii, ii,0,1);
747 ii++;
748#ifdef DESKTOP_VERSION
749 KPrefsWidBool *enableMonthScroll =
750 addWidBool(i18n("Enable scrollbars in month view cells"),
751 &(KOPrefs::instance()->mEnableMonthScroll),topFrame);
752 topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0);
753#endif
754
755 dummy =
756 addWidBool(i18n("Show Sat/Sun together"),
757 &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame);
758 topLayout->addWidget(dummy->checkBox(),ii++,0);
759
760 KPrefsWidBool *coloredCategoriesInMonthView =
761 addWidBool(i18n("Month view uses category colors"),
762 &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame);
763 topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0);
764
765 dummy =
766 addWidBool(i18n("Categorie colors are applied to text"),
767 &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame);
768 topLayout->addWidget(dummy->checkBox(),ii++,0);
769 coloredCategoriesInMonthView =
770 addWidBool(i18n("Month view uses day colors"),
771 &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame);
772 topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0);
773
774 KPrefsWidColor *holidayColor =
775 addWidColor(i18n("Day color odd months"),
776 &(KOPrefs::instance()->mMonthViewOddColor),topFrame);
777 topLayout->addWidget(holidayColor->label(),ii,0);
778 topLayout->addWidget(holidayColor->button(),ii++,1);
779
780 holidayColor =
781 addWidColor(i18n("Day color even months"),
782 &(KOPrefs::instance()->mMonthViewEvenColor),topFrame);
783 topLayout->addWidget(holidayColor->label(),ii,0);
784 topLayout->addWidget(holidayColor->button(),ii++,1);
785
786
787 holidayColor =
788 addWidColor(i18n("Color for Sundays + category \"Holiday\""),
789 &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame);
790 topLayout->addWidget(holidayColor->label(),ii,0);
791 topLayout->addWidget(holidayColor->button(),ii++,1);
792
793 // *********************** Todo View
794
795 topFrame = addPage(i18n("Todo View"),0,0);
796 // DesktopIcon("viewmag",KIcon::SizeMedium));
797
798 topLayout = new QGridLayout(topFrame,4,1);
799 topLayout->setSpacing(spacingHint());
800 topLayout->setMargin(marginHint());
801 ii = 0;
802
803 KPrefsWidBool *showCompletedTodo =
804 addWidBool(i18n("To-do view shows completed Todos"),
805 &(KOPrefs::instance()->mShowCompletedTodo),topFrame);
806 topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0);
807 dummy =
808 addWidBool(i18n("To-do view shows complete as 'xx %'"),
809 &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame);
810 topLayout->addWidget(dummy->checkBox(),ii++,0);
811
812 dummy =
813 addWidBool(i18n("Small To-do view uses smaller font"),
814 &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame);
815 topLayout->addWidget(dummy->checkBox(),ii++,0);
816
817
818
819 dummy =
820 addWidBool(i18n("Todo view uses category colors"),
821 &(KOPrefs::instance()->mTodoViewUsesCatColors),topFrame);
822 topLayout->addWidget(dummy->checkBox(),ii++,0);
823
824
825 QWidget* wid = new QWidget( topFrame );
826 // Todo due today color
827 KPrefsWidColor *todoDueTodayColor =
828 addWidColor(i18n("Todo due today color:"),
829 &(KOPrefs::instance()->mTodoDueTodayColor),wid);
830 QHBoxLayout *widLayout = new QHBoxLayout(wid);
831 widLayout->addWidget( todoDueTodayColor->label() );
832 widLayout->addWidget( todoDueTodayColor->button() );
833 topLayout->addWidget(wid,ii++,0);
834 //topLayout->addWidget(todoDueTodayColor->button(),ii++,1);
835
836 // Todo overdue color
837 wid = new QWidget( topFrame );
838 widLayout = new QHBoxLayout(wid);
839 KPrefsWidColor *todoOverdueColor =
840 addWidColor(i18n("Todo overdue color:"),
841 &(KOPrefs::instance()->mTodoOverdueColor),wid);
842 widLayout->addWidget(todoOverdueColor->label());
843 widLayout->addWidget(todoOverdueColor->button());
844 topLayout->addWidget(wid,ii++,0);
845
846 dummy =
847 addWidBool(i18n("Colors are applied to text"),
848 &(KOPrefs::instance()->mTodoViewUsesForegroundColor),topFrame);
849 topLayout->addWidget(dummy->checkBox(),ii++,0);
850
851 dummy =
852 addWidBool(i18n("Allday Agenda view shows todos"),
853 &(KOPrefs::instance()->mShowTodoInAgenda),topFrame);
854 topLayout->addWidget(dummy->checkBox(),ii++,0);
855
856
857
858
859 topFrame = addPage(i18n("Alarm"),0,0);
860 // DesktopIcon("viewmag",KIcon::SizeMedium));
861
862 topLayout = new QGridLayout(topFrame,2,1);
863 topLayout->setSpacing(spacingHint());
864 topLayout->setMargin(marginHint());
865 int iii = 0;
866
867 dummy =
868 addWidBool(i18n("Use internal alarm notification"),
869 &(KOPrefs::instance()->mUseInternalAlarmNotification),topFrame);
870 topLayout->addWidget(dummy->checkBox(),iii++,0);
871 lab = new QLabel( i18n("Note: KO/Pi must be running to notify you about an alarm. Recommended for use on Zaurus: Disable this option and install KO/Pi alarm applet.\n"), topFrame);
872
873 topLayout->addWidget(lab ,iii++,0);
874#ifndef DESKTOP_VERSION
875 lab->setAlignment( AlignLeft|WordBreak|AlignTop);
876#else
877 lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop);
878 lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) );
879#endif
880
881 QHBox* dummyBox = new QHBox(topFrame);
882 new QLabel(i18n("Play beeps count:"),dummyBox);
883 mAlarmPlayBeeps = new QSpinBox(0,500,1,dummyBox);
884 topLayout->addWidget(dummyBox,iii++,0);
885
886 dummyBox = new QHBox(topFrame);
887 new QLabel(i18n("Beeps interval in sec:"),dummyBox);
888 mAlarmBeepInterval = new QSpinBox(1,600,1,dummyBox);
889 topLayout->addWidget(dummyBox,iii++,0);
890
891 dummyBox = new QHBox(topFrame);
892 new QLabel(i18n("Default suspend time in min:"),dummyBox);
893 mAlarmSuspendTime = new QSpinBox(1,600,1,dummyBox);
894 topLayout->addWidget(dummyBox,iii++,0);
895
896 dummyBox = new QHBox(topFrame);
897 new QLabel(i18n("Auto suspend count:"),dummyBox);
898 mAlarmSuspendCount = new QSpinBox(0,60,1,dummyBox);
899 topLayout->addWidget(dummyBox,iii++,0);
900
901
902
903
904
905
906
907 QHBox* hbo = new QHBox ( topFrame );
908 mDefaultAlarmFile = new QLineEdit(hbo);
909 QPushButton * loadTemplate = new QPushButton(hbo);
910 QPixmap icon;
911 if ( QApplication::desktop()->width() < 321 )
912 icon = SmallIcon("fileimport16");
913 else
914 icon = SmallIcon("fileimport");
915 loadTemplate->setIconSet (icon ) ;
916 connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( selectSoundFile() ) );
917 int size = loadTemplate->sizeHint().height();
918 loadTemplate->setFixedSize( size, size );
919 //lab = new QLabel( i18n("This setting is useless for 5500 user!"), topFrame);
920 // topLayout->addWidget(lab ,iii++,0);
921 lab = new QLabel( i18n("Alarm *.wav file for newly created alarm:"), topFrame);
922 topLayout->addWidget(lab ,iii++,0);
923 topLayout->addWidget(hbo,iii++,0);
924 // lab = new QLabel( i18n("Note: This does not mean, that for every alarm this file is replayed. This file here is associated with a newly created alarm."), topFrame);
925
926// topLayout->addWidget(lab ,iii++,0);
927// #ifndef DESKTOP_VERSION
928// lab->setAlignment( AlignLeft|WordBreak|AlignTop);
929// #else
930// lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop);
931// lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) );
932// #endif
933
934
935}
936
937void KOPrefsDialog::selectSoundFile()
938{
939 QString fileName = mDefaultAlarmFile->text();
940 fileName = KFileDialog::getSaveFileName( mDefaultAlarmFile->text() , "Choose default alarm file", this );
941 if ( fileName.length() > 0 )
942 mDefaultAlarmFile->setText( fileName );
943}
944void KOPrefsDialog::setupFontsTab()
945{
946
947 QFrame *topFrame = addPage(i18n("Fonts"),0,0);
948 // DesktopIcon("fonts",KIcon::SizeMedium));
949
950 QGridLayout *topLayout = new QGridLayout(topFrame,7,3);
951 topLayout->setSpacing(1);
952 topLayout->setMargin(3);
953 KPrefsWidFont * tVFont;
954 int i = 0;
955 KPrefsWidFont *timeLabelsFont =
956 addWidFont(i18n("23"),i18n("DateNavigator:(nr)"),
957 &(KOPrefs::instance()->mDateNavigatorFont),topFrame);
958 topLayout->addWidget(timeLabelsFont->label(),i,0);
959 topLayout->addWidget(timeLabelsFont->preview(),i,1);
960 topLayout->addWidget(timeLabelsFont->button(),i,2);
961 ++i;
962
963
964 timeLabelsFont =
965 addWidFont(i18n("Mon 15"),i18n("Date Labels:"),
966 &(KOPrefs::instance()->mTimeLabelsFont),topFrame);
967 topLayout->addWidget(timeLabelsFont->label(),i,0);
968 topLayout->addWidget(timeLabelsFont->preview(),i,1);
969 topLayout->addWidget(timeLabelsFont->button(),i,2);
970 ++i;
971
972 KPrefsWidFont *timeBarFont =
973 addWidFont(KGlobal::locale()->formatTime(QTime(12,34)),i18n("Time bar:"),
974 &(KOPrefs::instance()->mTimeBarFont),topFrame);
975 topLayout->addWidget(timeBarFont->label(),i,0);
976 topLayout->addWidget(timeBarFont->preview(),i,1);
977 topLayout->addWidget(timeBarFont->button(),i,2);
978 ++i;
979
980
981 KPrefsWidFont *marcusBainsFont =
982 addWidFont(KGlobal::locale()->formatTime(QTime(12,34,23)),i18n("M. Bains line:"),
983 &(KOPrefs::instance()->mMarcusBainsFont),topFrame);
984 topLayout->addWidget(marcusBainsFont->label(),i,0);
985 topLayout->addWidget(marcusBainsFont->preview(),i,1);
986 topLayout->addWidget(marcusBainsFont->button(),i,2);
987 ++i;
988
989 tVFont =
990 addWidFont(i18n("Summary"),i18n("Event Viewer:"),
991 &(KOPrefs::instance()->mEventViewFont),topFrame);
992 topLayout->addWidget(tVFont->label(),i,0);
993 topLayout->addWidget(tVFont->preview(),i,1);
994 topLayout->addWidget(tVFont->button(),i,2);
995 ++i;
996
997
998
999 tVFont =
1000 addWidFont(i18n("Details"),i18n("EditorBox:"),
1001 &(KOPrefs::instance()->mEditBoxFont),topFrame);
1002 topLayout->addWidget(tVFont->label(),i,0);
1003 topLayout->addWidget(tVFont->preview(),i,1);
1004 topLayout->addWidget(tVFont->button(),i,2);
1005 ++i;
1006
1007
1008
1009 topLayout->setColStretch(1,1);
1010 topLayout->setRowStretch(4,1);
1011
1012
1013 i = 0;
1014 topFrame = addPage(i18n("View Fonts"),0,
1015 DesktopIcon("fonts",KIcon::SizeMedium));
1016
1017 topLayout = new QGridLayout(topFrame,7,3);
1018 topLayout->setSpacing(1);
1019 topLayout->setMargin(3);
1020
1021 tVFont =
1022 addWidFont(i18n("Configure KO"),i18n("What's Next View:"),
1023 &(KOPrefs::instance()->mWhatsNextFont),topFrame);
1024 topLayout->addWidget(tVFont->label(),i,0);
1025 topLayout->addWidget(tVFont->preview(),i,1);
1026 topLayout->addWidget(tVFont->button(),i,2);
1027 ++i;
1028 KPrefsWidFont *agendaViewFont =
1029 addWidFont(i18n("Event text"),i18n("Agenda view:"),
1030 &(KOPrefs::instance()->mAgendaViewFont),topFrame);
1031 topLayout->addWidget(agendaViewFont->label(),i,0);
1032 topLayout->addWidget(agendaViewFont->preview(),i,1);
1033 topLayout->addWidget(agendaViewFont->button(),i,2);
1034 ++i;
1035
1036
1037 KPrefsWidFont *monthViewFont =
1038 addWidFont(KGlobal::locale()->formatTime(QTime(12,34)) + " " + i18n("Event"),
1039 i18n("Month view:"),&(KOPrefs::instance()->mMonthViewFont),topFrame);
1040 topLayout->addWidget(monthViewFont->label(),i,0);
1041 topLayout->addWidget(monthViewFont->preview(),i,1);
1042 topLayout->addWidget(monthViewFont->button(),i,2);
1043 ++i;
1044
1045
1046 KPrefsWidFont *lVFont =
1047 addWidFont(i18n("Event"),i18n("List View:"),
1048 &(KOPrefs::instance()->mListViewFont),topFrame);
1049 topLayout->addWidget(lVFont->label(),i,0);
1050 topLayout->addWidget(lVFont->preview(),i,1);
1051 topLayout->addWidget(lVFont->button(),i,2);
1052 ++i;
1053
1054
1055 tVFont =
1056 addWidFont(i18n("ToDo"),i18n("ToDoView:"),
1057 &(KOPrefs::instance()->mTodoViewFont),topFrame);
1058 topLayout->addWidget(tVFont->label(),i,0);
1059 topLayout->addWidget(tVFont->preview(),i,1);
1060 topLayout->addWidget(tVFont->button(),i,2);
1061 ++i;
1062
1063
1064 tVFont =
1065 addWidFont(i18n("Today"),i18n("JournalView:"),
1066 &(KOPrefs::instance()->mJornalViewFont),topFrame);
1067 topLayout->addWidget(tVFont->label(),i,0);
1068 topLayout->addWidget(tVFont->preview(),i,1);
1069 topLayout->addWidget(tVFont->button(),i,2);
1070 ++i;
1071
1072
1073
1074
1075 topLayout->setColStretch(1,1);
1076 topLayout->setRowStretch(4,1);
1077
1078
1079
1080
1081}
1082
1083void KOPrefsDialog::setupColorsTab()
1084{
1085 QFrame *topFrame = addPage(i18n("Colors"),0,0);
1086 // DesktopIcon("colorize",KIcon::SizeMedium));
1087
1088 QGridLayout *topLayout = new QGridLayout(topFrame,5,2);
1089 // topLayout->setSpacing(spacingHint());
1090 // topLayout->setMargin(marginHint());
1091
1092 topLayout->setSpacing(2);
1093 topLayout->setMargin(3);
1094
1095 int ii = 1;
1096 QGroupBox *categoryGroup ;
1097
1098 categoryGroup = new QGroupBox(1,Vertical,i18n("Categories"),
1099 topFrame);
1100 topLayout->addMultiCellWidget(categoryGroup,0,0,0,1);
1101
1102 mCategoryCombo = new QComboBox(categoryGroup);
1103 mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories);
1104 connect(mCategoryCombo,SIGNAL(activated(int)),SLOT(updateCategoryColor()));
1105
1106 mCategoryButton = new KColorButton(categoryGroup);
1107 connect(mCategoryButton,SIGNAL(changed(const QColor &)),SLOT(setCategoryColor()));
1108 updateCategoryColor();
1109
1110
1111 // Holiday Color
1112
1113 KPrefsWidColor *holidayColor =
1114 addWidColor(i18n("Holiday color:"),
1115 &(KOPrefs::instance()->mHolidayColor),topFrame);
1116 topLayout->addWidget(holidayColor->label(),ii,0);
1117 topLayout->addWidget(holidayColor->button(),ii++,1);
1118
1119 // Highlight Color
1120 KPrefsWidColor *highlightColor =
1121 addWidColor(i18n("Highlight color:"),
1122 &(KOPrefs::instance()->mHighlightColor),topFrame);
1123 topLayout->addWidget(highlightColor->label(),ii,0);
1124 topLayout->addWidget(highlightColor->button(),ii++,1);
1125
1126 // Event color
1127 KPrefsWidColor *eventColor =
1128 addWidColor(i18n("Default event color:"),
1129 &(KOPrefs::instance()->mEventColor),topFrame);
1130 topLayout->addWidget(eventColor->label(),ii,0);
1131 topLayout->addWidget(eventColor->button(),ii++,1);
1132
1133 // agenda view background color
1134 KPrefsWidColor *agendaBgColor =
1135 addWidColor(i18n("Agenda view background color:"),
1136 &(KOPrefs::instance()->mAgendaBgColor),topFrame);
1137 topLayout->addWidget(agendaBgColor->label(),ii,0);
1138 topLayout->addWidget(agendaBgColor->button(),ii++,1);
1139
1140 // working hours color
1141 KPrefsWidColor *workingHoursColor =
1142 addWidColor(i18n("Working hours color:"),
1143 &(KOPrefs::instance()->mWorkingHoursColor),topFrame);
1144 topLayout->addWidget(workingHoursColor->label(),ii,0);
1145 topLayout->addWidget(workingHoursColor->button(),ii++,1);
1146
1147 KPrefsWidBool *sb =
1148 addWidBool(i18n("Use colors for application:"),
1149 &(KOPrefs::instance()->mUseAppColors),topFrame);
1150 topLayout->addMultiCellWidget(sb->checkBox(), ii, ii, 0,1 );
1151
1152 ii++;
1153 KPrefsWidColor * workingHoursColor1 =
1154 addWidColor(i18n("Buttons, menus, etc.:"),
1155 &(KOPrefs::instance()->mAppColor1),topFrame);
1156 topLayout->addWidget(workingHoursColor1->label(),ii,0);
1157 topLayout->addWidget(workingHoursColor1->button(),ii++,1);
1158
1159 KPrefsWidColor * workingHoursColor2 =
1160 addWidColor(i18n("Frames, labels, etc.:"),
1161 &(KOPrefs::instance()->mAppColor2),topFrame);
1162 topLayout->addWidget(workingHoursColor2->label(),ii,0);
1163 topLayout->addWidget(workingHoursColor2->button(),ii++,1);
1164
1165
1166
1167}
1168
1169void KOPrefsDialog::setCategoryColor()
1170{
1171 mCategoryDict.replace(mCategoryCombo->currentText(), new QColor(mCategoryButton->color()));
1172}
1173
1174void KOPrefsDialog::updateCategoryColor()
1175{
1176 QString cat = mCategoryCombo->currentText();
1177 QColor *color = mCategoryDict.find(cat);
1178 if (!color) {
1179 color = KOPrefs::instance()->categoryColor(cat);
1180 }
1181 if (color) {
1182 mCategoryButton->setColor(*color);
1183 }
1184}
1185
1186void KOPrefsDialog::setupPrinterTab()
1187{
1188 mPrinterTab = addPage(i18n("Printing"),0,
1189 DesktopIcon("fileprint",KIcon::SizeMedium));
1190
1191 QGridLayout *topLayout = new QGridLayout(mPrinterTab,5,2);
1192 topLayout->setSpacing(spacingHint());
1193 topLayout->setMargin(marginHint());
1194
1195 topLayout->setRowStretch(4,1);
1196}
1197
1198void KOPrefsDialog::setupGroupSchedulingTab()
1199{
1200#if 0
1201 QFrame *topFrame = addPage(i18n("Group Scheduling"),0,
1202 DesktopIcon("personal",KIcon::SizeMedium));
1203
1204 QGridLayout *topLayout = new QGridLayout(topFrame,6,2);
1205 topLayout->setSpacing(spacingHint());
1206 topLayout->setMargin(marginHint());
1207
1208#if 0
1209 KPrefsWidRadios *schedulerGroup =
1210 addWidRadios(i18n("Scheduler Mail Client"),&(KOPrefs::instance()->mIMIPScheduler),
1211 topFrame);
1212 schedulerGroup->addRadio("Dummy"); // Only for debugging
1213 schedulerGroup->addRadio(i18n("Mail client"));
1214
1215 topLayout->addMultiCellWidget(schedulerGroup->groupBox(),0,0,0,1);
1216#endif
1217
1218 KPrefsWidRadios *sendGroup =
1219 addWidRadios(i18n("Scheduler Mails Should Be"),&(KOPrefs::instance()->mIMIPSend),
1220 topFrame);
1221 sendGroup->addRadio(i18n("Send to outbox"));
1222 sendGroup->addRadio(i18n("Send directly"));
1223
1224 topLayout->addMultiCellWidget(sendGroup->groupBox(),1,1,0,1);
1225
1226 topLayout->addMultiCellWidget(new QLabel(i18n("Additional email addresses:"),topFrame),2,2,0,1);
1227 mAMails = new QListView(topFrame);
1228 mAMails->addColumn(i18n("Email"),300);
1229 topLayout->addMultiCellWidget(mAMails,3,3,0,1);
1230
1231 topLayout->addWidget(new QLabel(i18n("Additional email address:"),topFrame),4,0);
1232 aEmailsEdit = new QLineEdit(topFrame);
1233 aEmailsEdit->setEnabled(false);
1234 topLayout->addWidget(aEmailsEdit,4,1);
1235
1236 QPushButton *add = new QPushButton(i18n("New"),topFrame,"new");
1237 topLayout->addWidget(add,5,0);
1238 QPushButton *del = new QPushButton(i18n("Remove"),topFrame,"remove");
1239 topLayout->addWidget(del,5,1);
1240
1241 //topLayout->setRowStretch(2,1);
1242 connect(add, SIGNAL( clicked() ), this, SLOT(addItem()) );
1243 connect(del, SIGNAL( clicked() ), this, SLOT(removeItem()) );
1244 connect(aEmailsEdit,SIGNAL( textChanged(const QString&) ), this,SLOT(updateItem()));
1245 connect(mAMails,SIGNAL(selectionChanged(QListViewItem *)),SLOT(updateInput()));
1246#endif
1247}
1248
1249void KOPrefsDialog::setupGroupAutomationTab()
1250{
1251 return;
1252 QFrame *topFrame = addPage(i18n("Group Automation"),0,
1253 DesktopIcon("personal",KIcon::SizeMedium));
1254
1255 QGridLayout *topLayout = new QGridLayout(topFrame,5,1);
1256 topLayout->setSpacing(spacingHint());
1257 topLayout->setMargin(marginHint());
1258
1259 KPrefsWidRadios *autoRefreshGroup =
1260 addWidRadios(i18n("Auto Send Refresh"),
1261 &(KOPrefs::instance()->mIMIPAutoRefresh),topFrame);
1262 autoRefreshGroup->addRadio(i18n("Never"));
1263 autoRefreshGroup->addRadio(i18n("If attendee is in addressbook"));
1264 //autoRefreshGroup->addRadio(i18n("selected emails"));
1265 topLayout->addMultiCellWidget(autoRefreshGroup->groupBox(),0,0,0,0);
1266
1267 KPrefsWidRadios *autoInsertGroup =
1268 addWidRadios(i18n("Auto Insert IMIP Replies"),
1269 &(KOPrefs::instance()->mIMIPAutoInsertReply),topFrame);
1270 autoInsertGroup->addRadio(i18n("Never"));
1271 autoInsertGroup->addRadio(i18n("If attendee is in addressbook"));
1272 //autoInsertGroup->addRadio(i18n("selected emails"));
1273 topLayout->addMultiCellWidget(autoInsertGroup->groupBox(),1,1,0,0);
1274
1275 KPrefsWidRadios *autoRequestGroup =
1276 addWidRadios(i18n("Auto Insert IMIP Requests"),
1277 &(KOPrefs::instance()->mIMIPAutoInsertRequest),topFrame);
1278 autoRequestGroup->addRadio(i18n("Never"));
1279 autoRequestGroup->addRadio(i18n("If organizer is in addressbook"));
1280 //autoInsertGroup->addRadio(i18n("selected emails"));
1281 topLayout->addMultiCellWidget(autoRequestGroup->groupBox(),2,2,0,0);
1282
1283 KPrefsWidRadios *autoFreeBusyGroup =
1284 addWidRadios(i18n("Auto Send FreeBusy Information"),
1285 &(KOPrefs::instance()->mIMIPAutoFreeBusy),topFrame);
1286 autoFreeBusyGroup->addRadio(i18n("Never"));
1287 autoFreeBusyGroup->addRadio(i18n("If requested from an email in addressbook"));
1288 //autoFreeBusyGroup->addRadio(i18n("selected emails"));
1289 topLayout->addMultiCellWidget(autoFreeBusyGroup->groupBox(),3,3,0,0);
1290
1291 KPrefsWidRadios *autoFreeBusyReplyGroup =
1292 addWidRadios(i18n("Auto Save FreeBusy Replies"),
1293 &(KOPrefs::instance()->mIMIPAutoFreeBusyReply),topFrame);
1294 autoFreeBusyReplyGroup->addRadio(i18n("Never"));
1295 autoFreeBusyReplyGroup->addRadio(i18n("If attendee is in addressbook"));
1296 //autoFreeBusyGroup->addRadio(i18n("selected emails"));
1297 topLayout->addMultiCellWidget(autoFreeBusyReplyGroup->groupBox(),4,4,0,0);
1298}
1299
1300void KOPrefsDialog::showPrinterTab()
1301{
1302 showPage(pageIndex(mPrinterTab));
1303}
1304
1305
1306void KOPrefsDialog::setCombo(QComboBox *combo, const QString & text,
1307 const QStringList *tags)
1308{
1309 if (tags) {
1310 int i = tags->findIndex(text);
1311 if (i > 0) combo->setCurrentItem(i);
1312 } else {
1313 for(int i=0;i<combo->count();++i) {
1314 if (combo->text(i) == text) {
1315 combo->setCurrentItem(i);
1316 break;
1317 }
1318 }
1319 }
1320}
1321
1322void KOPrefsDialog::usrReadConfig()
1323{
1324 mNameEdit->setText(KOPrefs::instance()->fullName());
1325 mEmailEdit->setText(KOPrefs::instance()->email());
1326
1327 mAutoSaveIntervalSpin->setValue(KOPrefs::instance()->mAutoSaveInterval);
1328 QDate current ( 2001, 1,1);
1329 mStartDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingStart-1));
1330 mEndDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingEnd-1));
1331 setCombo(mTimeZoneCombo,i18n(KOPrefs::instance()->mTimeZoneId));
1332 //mTimezoneOffsetSpin->setValue( KOPrefs::instance()->mTimeZoneOffset);
1333 mStartTimeSpin->setValue(KOPrefs::instance()->mStartTime);
1334 mDefaultDurationSpin->setValue(KOPrefs::instance()->mDefaultDuration);
1335 mAlarmTimeCombo->setCurrentItem(KOPrefs::instance()->mAlarmTime);
1336 // if (KOPrefs::instance()->mAllDaySize > 47 )
1337 // KOPrefs::instance()->mAllDaySize = KOPrefs::instance()->mAllDaySize/2;
1338 //mHourSizeSlider->setValue(KOPrefs::instance()->mAllDaySize);
1339
1340 mNextXDaysSpin->setValue(KOPrefs::instance()->mNextXDays);
1341 mWhatsNextSpin->setValue(KOPrefs::instance()->mWhatsNextDays);
1342 mPrioSpin->setValue(KOPrefs::instance()->mWhatsNextPrios);
1343 // mAMails->clear();
1344 // for ( QStringList::Iterator it = KOPrefs::instance()->mAdditionalMails.begin();
1345// it != KOPrefs::instance()->mAdditionalMails.end(); ++it ) {
1346// QListViewItem *item = new QListViewItem(mAMails);
1347// item->setText(0,*it);
1348// mAMails->insertItem(item);
1349// }
1350
1351 // mRemoteIPEdit->setText(KOPrefs::instance()->mRemoteIP);
1352 //mRemoteUser->setText(KOPrefs::instance()->mRemoteUser);
1353 //mRemotePassWd->setText(KOPrefs::instance()->mRemotePassWd);
1354 //mRemoteFile->setText(KOPrefs::instance()->mRemoteFile);
1355
1356 //that soundmLocalTempFile->setText(KOPrefs::instance()->mLocalTempFile);
1357 mDefaultAlarmFile->setText(KOPrefs::instance()->mDefaultAlarmFile);
1358 QString dummy = KOPrefs::instance()->mUserDateFormatLong;
1359 mUserDateFormatLong->setText(dummy.replace( QRegExp("K"), QString(",") ));
1360 dummy = KOPrefs::instance()->mUserDateFormatShort;
1361 mUserDateFormatShort->setText(dummy.replace( QRegExp("K"), QString(",") ));
1362 updateCategories();
1363 mAlarmPlayBeeps->setValue(KOPrefs::instance()->mAlarmPlayBeeps );
1364 mAlarmSuspendTime->setValue(KOPrefs::instance()->mAlarmSuspendTime );
1365 mAlarmSuspendCount->setValue(KOPrefs::instance()->mAlarmSuspendCount );
1366 mAlarmBeepInterval->setValue(KOPrefs::instance()->mAlarmBeepInterval );
1367}
1368
1369
1370void KOPrefsDialog::usrWriteConfig()
1371{
1372
1373 // KOPrefs::instance()->mRemoteIP = mRemoteIPEdit->text();
1374 //KOPrefs::instance()->mRemoteUser = mRemoteUser->text();
1375 //KOPrefs::instance()->mRemotePassWd = mRemotePassWd->text();
1376 //KOPrefs::instance()->mRemoteFile= mRemoteFile->text();
1377 //KOPrefs::instance()->mLocalTempFile =mLocalTempFile->text();
1378 KOPrefs::instance()->mDefaultAlarmFile =mDefaultAlarmFile->text();
1379
1380 KOPrefs::instance()->mUserDateFormatShort = mUserDateFormatShort->text().replace( QRegExp(","), QString("K") );
1381 KOPrefs::instance()->mUserDateFormatLong = mUserDateFormatLong->text().replace( QRegExp(","), QString("K") );
1382 KOPrefs::instance()->setFullName(mNameEdit->text());
1383 KOPrefs::instance()->setEmail(mEmailEdit->text());
1384
1385 KOPrefs::instance()->mAutoSaveInterval = mAutoSaveIntervalSpin->value();
1386
1387 KOPrefs::instance()->mTimeZoneId = mTimeZoneCombo->currentText();
1388 QDate date;
1389 date = mStartDateSavingEdit->date();
1390 int sub = 0;
1391 if ( QDate::leapYear( date.year() ) && date.dayOfYear() > 59 )
1392 sub = 1;
1393 KOPrefs::instance()->mDaylightsavingStart = date.dayOfYear()-sub;
1394 date = mEndDateSavingEdit->date();
1395 if ( QDate::leapYear( date.year() ) && date.dayOfYear() > 59 )
1396 sub = 1;
1397 else
1398 sub = 0;
1399 KOPrefs::instance()->mDaylightsavingEnd = date.dayOfYear()-sub;
1400 // KOPrefs::instance()->mTimeZoneOffset = mTimezoneOffsetSpin->value();
1401
1402 KOPrefs::instance()->mStartTime = mStartTimeSpin->value();
1403 KOPrefs::instance()->mDefaultDuration = mDefaultDurationSpin->value();
1404 KOPrefs::instance()->mAlarmTime = mAlarmTimeCombo->currentItem();
1405
1406 //KOPrefs::instance()->mAllDaySize = mHourSizeSlider->value();
1407
1408 QDictIterator<QColor> it(mCategoryDict);
1409 while (it.current()) {
1410 KOPrefs::instance()->setCategoryColor(it.currentKey(),*it.current());
1411 ++it;
1412 }
1413
1414 KOPrefs::instance()->mNextXDays = mNextXDaysSpin->value();
1415 KOPrefs::instance()->mWhatsNextDays = mWhatsNextSpin->value();
1416 KOPrefs::instance()->mWhatsNextPrios = mPrioSpin->value();
1417
1418 KOPrefs::instance()->mAdditionalMails.clear();
1419 // QListViewItem *item;
1420 // item = mAMails->firstChild();
1421 // while (item)
1422 // {
1423 // KOPrefs::instance()->mAdditionalMails.append( item->text(0) );
1424 // item = item->nextSibling();
1425 // }
1426 KOPrefs::instance()->mAlarmPlayBeeps = mAlarmPlayBeeps->value();
1427 KOPrefs::instance()->mAlarmSuspendTime = mAlarmSuspendTime->value() ;
1428 KOPrefs::instance()->mAlarmSuspendCount= mAlarmSuspendCount->value() ;
1429 KOPrefs::instance()->mAlarmBeepInterval= mAlarmBeepInterval->value() ;
1430
1431}
1432
1433void KOPrefsDialog::updateCategories()
1434{
1435 mCategoryCombo->clear();
1436 mCategoryDict.clear();
1437 mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories);
1438 updateCategoryColor();
1439}
1440
1441void KOPrefsDialog::warningGroupScheduling()
1442{
1443 warningExperimental(mEnableGroupScheduling->checkBox()->isChecked());
1444}
1445
1446void KOPrefsDialog::warningProjectView()
1447{
1448 warningExperimental(mEnableProjectView->checkBox()->isChecked());
1449}
1450
1451void KOPrefsDialog::warningExperimental(bool on)
1452{
1453 if (on) {
1454 KMessageBox::information(this,i18n("This is an experimental feature. "
1455 "It may not work, it may do nothing useful and it may cause data loss. "
1456 "Use with care.\n"
1457 "You have to restart KOrganizer for this setting to take effect."));
1458 } else {
1459 KMessageBox::information(this,
1460 i18n("You have to restart KOrganizer for this setting to take effect."));
1461 }
1462}
1463
1464void KOPrefsDialog::toggleEmailSettings(bool on)
1465{
1466 if (on) {
1467 mEmailEdit->setEnabled(false);
1468 mNameEdit->setEnabled(false);
1469 mEmailLabel->setEnabled(false);
1470 mNameLabel->setEnabled(false);
1471
1472 KEMailSettings settings;
1473 mNameEdit->setText(settings.getSetting(KEMailSettings::RealName));
1474 mEmailEdit->setText(settings.getSetting(KEMailSettings::EmailAddress));
1475 } else {
1476 mEmailEdit->setEnabled(true);
1477 mNameEdit->setEnabled(true);
1478 mEmailLabel->setEnabled(true);
1479 mNameLabel->setEnabled(true);
1480 }
1481}
1482
1483void KOPrefsDialog::addItem()
1484{
1485 // aEmailsEdit->setEnabled(true);
1486// QListViewItem *item = new QListViewItem(mAMails);
1487// mAMails->insertItem(item);
1488// mAMails->setSelected(item,true);
1489// aEmailsEdit->setText(i18n("(EmptyEmail)"));
1490}
1491
1492void KOPrefsDialog::removeItem()
1493{
1494// QListViewItem *item;
1495// item = mAMails->selectedItem();
1496// if (!item) return;
1497// mAMails->takeItem(item);
1498// item = mAMails->selectedItem();
1499// if (!item) {
1500// aEmailsEdit->setText("");
1501// aEmailsEdit->setEnabled(false);
1502// }
1503// if (mAMails->childCount() == 0) {
1504// aEmailsEdit->setEnabled(false);
1505// }
1506}
1507
1508void KOPrefsDialog::updateItem()
1509{
1510 // QListViewItem *item;
1511// item = mAMails->selectedItem();
1512// if (!item) return;
1513// item->setText(0,aEmailsEdit->text());
1514}
1515
1516void KOPrefsDialog::updateInput()
1517{
1518// QListViewItem *item;
1519// item = mAMails->selectedItem();
1520// if (!item) return;
1521// aEmailsEdit->setEnabled(true);
1522// aEmailsEdit->setText(item->text(0));
1523}
1524void KOPrefsDialog::updateTimezoneOffset( int index )
1525{
1526 /*
1527 qDebug("updateTimezoneOffset %d ", index);
1528 if ( index < 24 ) {
1529 mTimezoneOffsetSpin->setEnabled ( false );
1530 mTimezoneOffsetSpin->setValue( ( index-11 ) * 60 );
1531
1532
1533 } else {
1534 if ( index == 24 ) {
1535 mTimezoneOffsetSpin->setEnabled ( true );
1536 mTimezoneOffsetSpin->setValue( KOPrefs::instance()->mTimeZoneOffset);
1537
1538 } else {
1539 mTimezoneOffsetSpin->setEnabled ( false );
1540 mTimezoneOffsetSpin->setValue( 0 );
1541 }
1542 }
1543 */
1544}
1545
1546void KOPrefsDialog::setupTimeZoneTab()
1547{
1548 QFrame *topFrame = addPage(i18n("Time Zone"),0,0);
1549 // DesktopIcon("clock",KIcon::SizeMedium));
1550
1551 QGridLayout *topLayout = new QGridLayout(topFrame,5,2);
1552 topLayout->setSpacing(spacingHint());
1553 topLayout->setMargin(marginHint());
1554
1555 QHBox *timeZoneBox = new QHBox( topFrame );
1556 topLayout->addMultiCellWidget( timeZoneBox, 0, 0, 0, 1 );
1557
1558 new QLabel( i18n("Timezone:"), timeZoneBox );
1559 mTimeZoneCombo = new QComboBox( timeZoneBox );
1560 if ( QApplication::desktop()->width() < 300 ) {
1561 mTimeZoneCombo->setMaximumWidth(150);
1562 }
1563
1564 QStringList list;
1565 list = KGlobal::locale()->timeZoneList();
1566 mTimeZoneCombo->insertStringList(list);
1567
1568 // find the currently set time zone and select it
1569 QString sCurrentlySet = KOPrefs::instance()->mTimeZoneId;
1570 int nCurrentlySet = 11;
1571 for (int i = 0; i < mTimeZoneCombo->count(); i++)
1572 {
1573 if (mTimeZoneCombo->text(i) == sCurrentlySet)
1574 {
1575 nCurrentlySet = i;
1576 break;
1577 }
1578 }
1579 mTimeZoneCombo->setCurrentItem(nCurrentlySet);
1580 int iii = 1;
1581 KPrefsWidBool *sb =
1582 addWidBool(i18n("Timezone has daylight saving"),
1583 &(KOPrefs::instance()->mUseDaylightsaving),topFrame);
1584 topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1);
1585 ++iii;
1586 QLabel* lab = new QLabel( i18n("Actual start and end is the\nsunday before this date."), topFrame );
1587 topLayout->addMultiCellWidget(lab, iii,iii,0,1);
1588 ++iii;
1589 lab = new QLabel( i18n("The year in the date is ignored."), topFrame );
1590 topLayout->addMultiCellWidget(lab, iii,iii,0,1);
1591 ++iii;
1592 lab = new QLabel( i18n("Daylight start:"), topFrame );
1593 topLayout->addWidget(lab, iii,0);
1594 mStartDateSavingEdit = new KDateEdit(topFrame);
1595 topLayout->addWidget(mStartDateSavingEdit, iii,1);
1596 ++iii;
1597
1598 lab = new QLabel( i18n("Daylight end:"), topFrame );
1599 topLayout->addWidget(lab, iii,0);
1600 mEndDateSavingEdit = new KDateEdit(topFrame);
1601 topLayout->addWidget(mEndDateSavingEdit, iii,1);
1602 ++iii;
1603 QDate current ( 2001, 1,1);
1604 mStartDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingStart-1));
1605 mEndDateSavingEdit->setDate(current.addDays(KOPrefs::instance()->mDaylightsavingEnd-1));
1606
1607
1608}
1609
diff --git a/kmicromail/koprefsdialog.h b/kmicromail/koprefsdialog.h
new file mode 100644
index 0000000..4b6bd4b
--- a/dev/null
+++ b/kmicromail/koprefsdialog.h
@@ -0,0 +1,176 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23#ifndef _KOPREFSDIALOG_H
24#define _KOPREFSDIALOG_H
25
26#include <qframe.h>
27#include <qdict.h>
28#include <qcolor.h>
29#include <qlistview.h>
30
31#include <kdialogbase.h>
32
33#include <libkdepim/kprefsdialog.h>
34#include <libkdepim/kdateedit.h>
35
36class KColorButton;
37class QSpinBox;
38class QSlider;
39class KURLRequester;
40class QComboBox;
41class QLineEdit;
42class QStringList;
43
44/** Dialog to change the korganizer configuration.
45 */
46class KOPrefsDialog : public KPrefsDialog
47{
48 Q_OBJECT
49 public:
50 /** Initialize dialog and pages */
51 KOPrefsDialog(QWidget *parent=0,char *name=0,bool modal=false);
52 ~KOPrefsDialog();
53
54protected:
55 void usrReadConfig();
56 void usrWriteConfig();
57
58 void setupMainTab();
59 void setupMailTab();
60 void setupFontsTab();
61 private:
62 QLineEdit *mNameEdit;
63 QLineEdit *mEmailEdit;
64 QLabel *mNameLabel;
65 QLabel *mEmailLabel;
66#if 0
67 /*
68 public slots:
69 void showPrinterTab();
70
71
72 void updateCategories();
73 void showSyncPage();
74 protected slots:
75 void selectSoundFile();
76 void setCategoryColor();
77 void updateCategoryColor();
78 void updateTimezoneOffset( int );
79
80
81 void warningExperimental(bool on);
82 void warningGroupScheduling();
83 void warningProjectView();
84
85 void toggleEmailSettings(bool);
86
87 //additional emails
88 void addItem();
89 void removeItem();
90 void updateItem();
91 void updateInput();
92*/
93 protected:
94 void usrReadConfig();
95 void usrWriteConfig();
96
97 void setupMainTab();
98 void setupTimeTab();
99 void setupTimeZoneTab();
100 void setupLocaleTab();
101 void setupLocaleDateTab();
102 void setupFontsTab();
103 void setupColorsTab();
104 void setupViewsTab();
105 void setupDisplayTab();
106 void setupPrinterTab();
107 void setupGroupSchedulingTab();
108 void setupGroupAutomationTab();
109 void setupSyncTab();
110 void setupSyncAlgTab();
111
112 void setCombo(QComboBox *combo,const QString & text, const QStringList *tags = 0);
113
114
115 private:
116 KPrefsWidBool *mEnableGroupScheduling;
117 KPrefsWidBool *mEnableProjectView;
118
119 QFrame *mPrinterTab;
120
121 QLineEdit *nameEdit;
122 QLineEdit *emailEdit;
123
124 QComboBox *timeCombo;
125 QComboBox *tzCombo;
126
127 // widgets holding preferences data
128 QLineEdit *mNameEdit;
129 QLineEdit *mEmailEdit;
130 QLabel *mNameLabel;
131 QLabel *mEmailLabel;
132 QLineEdit *mAdditionalEdit;
133 QSpinBox *mAutoSaveIntervalSpin;
134 QSpinBox *mPrioSpin;
135 // QListView *mAMails;
136 QLineEdit *aEmailsEdit;
137
138 QComboBox *mTimeZoneCombo;
139 QStringList tzonenames;
140 QSpinBox *mStartTimeSpin;
141 QSpinBox *mDefaultDurationSpin;
142 QComboBox *mAlarmTimeCombo;
143
144 QComboBox *mCategoryCombo;
145 KColorButton *mCategoryButton;
146 QDict<QColor> mCategoryDict;
147
148 QSlider *mHourSizeSlider;
149
150 QSpinBox *mNextXDaysSpin;
151 QSpinBox *mWhatsNextSpin;
152
153 QLineEdit * mRemoteIPEdit;
154 QLineEdit * mRemoteUser;
155 QLineEdit * mRemotePassWd;
156 QLineEdit * mRemoteFile;
157 QLineEdit * mLocalTempFile;
158 QWidget* mSetupSyncAlgTab;
159 QLineEdit * mUserDateFormatLong;
160 QLineEdit * mUserDateFormatShort;
161
162 QSpinBox *mTimezoneOffsetSpin;
163 QSpinBox *mDaylightsavingStart;
164 QSpinBox *mDaylightsavingEnd;
165 KDateEdit* mStartDateSavingEdit;
166 KDateEdit* mEndDateSavingEdit;
167 QSpinBox * mAlarmPlayBeeps;
168 QSpinBox * mAlarmSuspendTime;
169 QSpinBox * mAlarmSuspendCount;
170 QSpinBox * mAlarmBeepInterval;
171
172 QLineEdit * mDefaultAlarmFile;
173#endif
174};
175
176#endif
diff --git a/kmicromail/koprefsdialog.h~ b/kmicromail/koprefsdialog.h~
new file mode 100644
index 0000000..fd651d0
--- a/dev/null
+++ b/kmicromail/koprefsdialog.h~
@@ -0,0 +1,161 @@
1/*
2 This file is part of KOrganizer.
3 Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org>
4
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
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23#ifndef _KOPREFSDIALOG_H
24#define _KOPREFSDIALOG_H
25
26#include <qframe.h>
27#include <qdict.h>
28#include <qcolor.h>
29#include <qlistview.h>
30
31#include <kdialogbase.h>
32
33#include <libkdepim/kprefsdialog.h>
34#include <libkdepim/kdateedit.h>
35
36class KColorButton;
37class QSpinBox;
38class QSlider;
39class KURLRequester;
40class QComboBox;
41class QLineEdit;
42class QStringList;
43
44/** Dialog to change the korganizer configuration.
45 */
46class KOPrefsDialog : public KPrefsDialog
47{
48 Q_OBJECT
49 public:
50 /** Initialize dialog and pages */
51 KOPrefsDialog(QWidget *parent=0,char *name=0,bool modal=false);
52 ~KOPrefsDialog();
53
54 public slots:
55 void showPrinterTab();
56
57 /** Update controls for categories */
58 void updateCategories();
59 void showSyncPage();
60 protected slots:
61 void selectSoundFile();
62 void setCategoryColor();
63 void updateCategoryColor();
64 void updateTimezoneOffset( int );
65
66
67 void warningExperimental(bool on);
68 void warningGroupScheduling();
69 void warningProjectView();
70
71 void toggleEmailSettings(bool);
72
73 //additional emails
74 void addItem();
75 void removeItem();
76 void updateItem();
77 void updateInput();
78
79 protected:
80 void usrReadConfig();
81 void usrWriteConfig();
82
83 void setupMainTab();
84 void setupTimeTab();
85 void setupTimeZoneTab();
86 void setupLocaleTab();
87 void setupLocaleDateTab();
88 void setupFontsTab();
89 void setupColorsTab();
90 void setupViewsTab();
91 void setupDisplayTab();
92 void setupPrinterTab();
93 void setupGroupSchedulingTab();
94 void setupGroupAutomationTab();
95 void setupSyncTab();
96 void setupSyncAlgTab();
97
98 void setCombo(QComboBox *combo,const QString & text, const QStringList *tags = 0);
99
100
101 private:
102 KPrefsWidBool *mEnableGroupScheduling;
103 KPrefsWidBool *mEnableProjectView;
104
105 QFrame *mPrinterTab;
106
107 QLineEdit *nameEdit;
108 QLineEdit *emailEdit;
109
110 QComboBox *timeCombo;
111 QComboBox *tzCombo;
112
113 // widgets holding preferences data
114 QLineEdit *mNameEdit;
115 QLineEdit *mEmailEdit;
116 QLabel *mNameLabel;
117 QLabel *mEmailLabel;
118 QLineEdit *mAdditionalEdit;
119 QSpinBox *mAutoSaveIntervalSpin;
120 QSpinBox *mPrioSpin;
121 // QListView *mAMails;
122 QLineEdit *aEmailsEdit;
123
124 QComboBox *mTimeZoneCombo;
125 QStringList tzonenames;
126 QSpinBox *mStartTimeSpin;
127 QSpinBox *mDefaultDurationSpin;
128 QComboBox *mAlarmTimeCombo;
129
130 QComboBox *mCategoryCombo;
131 KColorButton *mCategoryButton;
132 QDict<QColor> mCategoryDict;
133
134 QSlider *mHourSizeSlider;
135
136 QSpinBox *mNextXDaysSpin;
137 QSpinBox *mWhatsNextSpin;
138
139 QLineEdit * mRemoteIPEdit;
140 QLineEdit * mRemoteUser;
141 QLineEdit * mRemotePassWd;
142 QLineEdit * mRemoteFile;
143 QLineEdit * mLocalTempFile;
144 QWidget* mSetupSyncAlgTab;
145 QLineEdit * mUserDateFormatLong;
146 QLineEdit * mUserDateFormatShort;
147
148 QSpinBox *mTimezoneOffsetSpin;
149 QSpinBox *mDaylightsavingStart;
150 QSpinBox *mDaylightsavingEnd;
151 KDateEdit* mStartDateSavingEdit;
152 KDateEdit* mEndDateSavingEdit;
153 QSpinBox * mAlarmPlayBeeps;
154 QSpinBox * mAlarmSuspendTime;
155 QSpinBox * mAlarmSuspendCount;
156 QSpinBox * mAlarmBeepInterval;
157
158 QLineEdit * mDefaultAlarmFile;
159};
160
161#endif
diff --git a/kmicromail/main.cpp b/kmicromail/main.cpp
index db29ff3..5362f08 100644
--- a/kmicromail/main.cpp
+++ b/kmicromail/main.cpp
@@ -18,6 +18,7 @@
18#include <kglobal.h> 18#include <kglobal.h>
19#include <stdio.h> 19#include <stdio.h>
20#include "mainwindow.h" 20#include "mainwindow.h"
21#include "koprefs.h"
21 22
22//using namespace Opie::Core; 23//using namespace Opie::Core;
23int main( int argc, char **argv ) { 24int main( int argc, char **argv ) {
@@ -29,7 +30,7 @@ int main( int argc, char **argv ) {
29 QApplication a( argc, argv ); 30 QApplication a( argc, argv );
30 QApplication::setStyle( new QPlatinumStyle ()); 31 QApplication::setStyle( new QPlatinumStyle ());
31#endif 32#endif
32 33 a.setFont( KOPrefs::instance()->mAppFont );
33 KGlobal::setAppName( "kopiemail" ); 34 KGlobal::setAppName( "kopiemail" );
34 QString fileName ; 35 QString fileName ;
35#ifndef DESKTOP_VERSION 36#ifndef DESKTOP_VERSION
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp
index 19ffdb3..4e7c6be 100644
--- a/kmicromail/opiemail.cpp
+++ b/kmicromail/opiemail.cpp
@@ -10,6 +10,7 @@
10#include "selectstore.h" 10#include "selectstore.h"
11#include "selectsmtp.h" 11#include "selectsmtp.h"
12#include "accountitem.h" 12#include "accountitem.h"
13#include "koprefsdialog.h"
13 14
14#include <qmessagebox.h> 15#include <qmessagebox.h>
15#include <qtimer.h> 16#include <qtimer.h>
@@ -84,15 +85,17 @@ void OpieMail::message(const QCString &msg, const QByteArray &data)
84 // NAME <EMAIL>:SUBJECT 85 // NAME <EMAIL>:SUBJECT
85 QTimer::singleShot ( 50, this, SLOT(slotComposeMail() ) ); 86 QTimer::singleShot ( 50, this, SLOT(slotComposeMail() ) );
86 } else { 87 } else {
87 if ( ii == 1 ) { 88 mPendingData = data;
88 qDebug("Kopiemail::Error:: Initial QCOP call for ExternalAppHandler not supported "); 89 mPendingMessage = msg;
89 return; 90 QTimer::singleShot ( 50, this, SLOT(slotExtAppHandler() ) );
90 }
91 ExternalAppHandler::instance()->appMessage ( msg, data);
92 } 91 }
93 92
94 //qDebug("END OpieMail::message "); 93 //qDebug("END OpieMail::message ");
95} 94}
95void OpieMail::slotExtAppHandler()
96{
97 ExternalAppHandler::instance()->appMessage ( mPendingMessage, mPendingData );
98}
96void OpieMail::slotwriteMail2(const QString& namemail ) 99void OpieMail::slotwriteMail2(const QString& namemail )
97{ 100{
98 //qDebug("OpieMail::slotwriteMail2 "); 101 //qDebug("OpieMail::slotwriteMail2 ");
@@ -207,14 +210,19 @@ void OpieMail::slotSearchMails()
207 210
208void OpieMail::slotEditSettings() 211void OpieMail::slotEditSettings()
209{ 212{
213#if 0
210 SettingsDialog settingsDialog( this, 0, true, WStyle_ContextHelp ); 214 SettingsDialog settingsDialog( this, 0, true, WStyle_ContextHelp );
211 settingsDialog.showMaximized(); 215 settingsDialog.showMaximized();
212 settingsDialog.exec(); 216 settingsDialog.exec();
217#endif
218 KOPrefsDialog settingsDialog( this, "koprefs", true );
219 settingsDialog.showMaximized();
220 settingsDialog.exec();
213} 221}
214 222
215void OpieMail::slotEditAccounts() 223void OpieMail::slotEditAccounts()
216{ 224{
217 EditAccounts eaDialog( settings, this, 0, true, WStyle_ContextHelp ); 225 EditAccounts eaDialog( settings, this, 0, true );
218 eaDialog.slotAdjustColumns(); 226 eaDialog.slotAdjustColumns();
219 eaDialog.showMaximized(); 227 eaDialog.showMaximized();
220 eaDialog.exec(); 228 eaDialog.exec();
@@ -230,7 +238,7 @@ void OpieMail::displayMail()
230 if (!item) return; 238 if (!item) return;
231 RecMailP mail = ((MailListViewItem*)item)->data(); 239 RecMailP mail = ((MailListViewItem*)item)->data();
232 RecBodyP body = folderView->fetchBody(mail); 240 RecBodyP body = folderView->fetchBody(mail);
233 ViewMail readMail( this,"", Qt::WType_Modal | WStyle_ContextHelp ); 241 ViewMail readMail( this,"", Qt::WType_Modal );
234 readMail.setBody( body ); 242 readMail.setBody( body );
235 readMail.setMail( mail ); 243 readMail.setMail( mail );
236 readMail.showMaximized(); 244 readMail.showMaximized();
diff --git a/kmicromail/opiemail.h b/kmicromail/opiemail.h
index e054b9e..47264e4 100644
--- a/kmicromail/opiemail.h
+++ b/kmicromail/opiemail.h
@@ -21,6 +21,7 @@ public slots:
21 virtual void slotwriteMail(const QString&name,const QString&email); 21 virtual void slotwriteMail(const QString&name,const QString&email);
22 virtual void slotwriteMail2(const QString&nameemail); 22 virtual void slotwriteMail2(const QString&nameemail);
23 virtual void slotComposeMail(); 23 virtual void slotComposeMail();
24 virtual void slotExtAppHandler();
24 virtual void appMessage(const QCString &msg, const QByteArray &data); 25 virtual void appMessage(const QCString &msg, const QByteArray &data);
25 virtual void message(const QCString &msg, const QByteArray &data); 26 virtual void message(const QCString &msg, const QByteArray &data);
26protected slots: 27protected slots:
@@ -44,6 +45,8 @@ protected slots:
44private: 45private:
45 QString mPendingEmail; 46 QString mPendingEmail;
46 QString mPendingName; 47 QString mPendingName;
48 QByteArray mPendingData;
49 QCString mPendingMessage;
47 Settings *settings; 50 Settings *settings;
48 51
49}; 52};
diff --git a/kmicromail/settingsdialog.cpp b/kmicromail/settingsdialog.cpp
index 061ea72..c593b48 100644
--- a/kmicromail/settingsdialog.cpp
+++ b/kmicromail/settingsdialog.cpp
@@ -1,7 +1,13 @@
1#include <qcheckbox.h> 1#include <qcheckbox.h>
2#include <qspinbox.h> 2#include <qspinbox.h>
3#include <qlayout.h>
4#include <qtabwidget.h>
3 5
4#include <qpe/config.h> 6#include <kconfig.h>
7#include <kprefs.h>
8#include <klocale.h>
9#include <kglobal.h>
10#include <kfontdialog.h>
5 11
6#include "settingsdialog.h" 12#include "settingsdialog.h"
7 13
@@ -9,7 +15,41 @@
9SettingsDialog::SettingsDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) 15SettingsDialog::SettingsDialog( QWidget* parent, const char* name, bool modal, WFlags fl )
10 : SettingsDialogUI( parent, name, modal, fl ) { 16 : SettingsDialogUI( parent, name, modal, fl ) {
11 17
18#if 0
19 QTabWidget *topFrame = TabWidget2;
20
21 QGridLayout *topLayout = new QGridLayout(topFrame,3,3);
22 topLayout->setSpacing(2);
23 topLayout->setMargin(3);
24 KPrefsWidFont * tVFont;
25 int i = 0;
26 KPrefsWidFont *timeLabelsFont =
27 addWidFont(i18n("OK"),i18n("Application(nr):"),
28 &(mAppFont),topFrame);
29 topLayout->addWidget(timeLabelsFont->label(),i,0);
30 topLayout->addWidget(timeLabelsFont->preview(),i,1);
31 topLayout->addWidget(timeLabelsFont->button(),i,2);
32 ++i;
33
34
35 timeLabelsFont =
36 addWidFont(i18n("Mon 15"),i18n("Compose Mail:"),
37 &(mComposeFont),topFrame);
38 topLayout->addWidget(timeLabelsFont->label(),i,0);
39 topLayout->addWidget(timeLabelsFont->preview(),i,1);
40 topLayout->addWidget(timeLabelsFont->button(),i,2);
41 ++i;
42
43 KPrefsWidFont *timeBarFont =
44 addWidFont(i18n("Mon 15"),i18n("Read Mail:"),
45 &(mReadFont),topFrame);
46 topLayout->addWidget(timeBarFont->label(),i,0);
47 topLayout->addWidget(timeBarFont->preview(),i,1);
48 topLayout->addWidget(timeBarFont->button(),i,2);
49 ++i;
50
12 readConfig(); 51 readConfig();
52#endif
13} 53}
14 54
15SettingsDialog::~SettingsDialog() { 55SettingsDialog::~SettingsDialog() {
@@ -17,7 +57,7 @@ SettingsDialog::~SettingsDialog() {
17} 57}
18 58
19void SettingsDialog::readConfig() { 59void SettingsDialog::readConfig() {
20 Config cfg("mail"); 60 KConfig cfg = ( locateLocal("config","kopiemailrc" ));
21 cfg.setGroup( "Settings" ); 61 cfg.setGroup( "Settings" );
22 showHtmlButton->setChecked( cfg.readBoolEntry( "showHtml", false ) ); 62 showHtmlButton->setChecked( cfg.readBoolEntry( "showHtml", false ) );
23 cfg.setGroup( "Compose" ); 63 cfg.setGroup( "Compose" );
@@ -31,7 +71,7 @@ void SettingsDialog::readConfig() {
31} 71}
32 72
33void SettingsDialog::writeConfig() { 73void SettingsDialog::writeConfig() {
34 Config cfg( "mail" ); 74 KConfig cfg ( locateLocal("config","kopiemailrc" ));
35 cfg.setGroup( "Settings" ); 75 cfg.setGroup( "Settings" );
36 cfg.writeEntry( "showHtml", showHtmlButton->isChecked() ); 76 cfg.writeEntry( "showHtml", showHtmlButton->isChecked() );
37 cfg.setGroup( "Compose" ); 77 cfg.setGroup( "Compose" );
diff --git a/kmicromail/settingsdialog.h b/kmicromail/settingsdialog.h
index 6b4d456..042b69f 100644
--- a/kmicromail/settingsdialog.h
+++ b/kmicromail/settingsdialog.h
@@ -2,6 +2,7 @@
2#define SETTINGS_DIALOG_H 2#define SETTINGS_DIALOG_H
3 3
4#include <qwidget.h> 4#include <qwidget.h>
5#include <qfont.h>
5 6
6#include "settingsdialogui.h" 7#include "settingsdialogui.h"
7 8
@@ -16,7 +17,7 @@ public:
16private: 17private:
17 void readConfig(); 18 void readConfig();
18 void writeConfig(); 19 void writeConfig();
19 20 QFont mAppFont, mComposeFont, mReadFont;
20 21
21private slots: 22private slots:
22 void accept(); 23 void accept();
diff --git a/kmicromail/settingsdialogui.ui b/kmicromail/settingsdialogui.ui
index b503667..f1d48a4 100644
--- a/kmicromail/settingsdialogui.ui
+++ b/kmicromail/settingsdialogui.ui
@@ -11,8 +11,8 @@
11 <rect> 11 <rect>
12 <x>0</x> 12 <x>0</x>
13 <y>0</y> 13 <y>0</y>
14 <width>312</width> 14 <width>261</width>
15 <height>379</height> 15 <height>298</height>
16 </rect> 16 </rect>
17 </property> 17 </property>
18 <property stdset="1"> 18 <property stdset="1">
@@ -58,16 +58,16 @@
58 </property> 58 </property>
59 <attribute> 59 <attribute>
60 <name>title</name> 60 <name>title</name>
61 <string>View Mail</string> 61 <string>Mail</string>
62 </attribute> 62 </attribute>
63 <vbox> 63 <vbox>
64 <property stdset="1"> 64 <property stdset="1">
65 <name>margin</name> 65 <name>margin</name>
66 <number>3</number> 66 <number>11</number>
67 </property> 67 </property>
68 <property stdset="1"> 68 <property stdset="1">
69 <name>spacing</name> 69 <name>spacing</name>
70 <number>3</number> 70 <number>6</number>
71 </property> 71 </property>
72 <widget> 72 <widget>
73 <class>QCheckBox</class> 73 <class>QCheckBox</class>
@@ -80,48 +80,6 @@
80 <string>View mail as Html</string> 80 <string>View mail as Html</string>
81 </property> 81 </property>
82 </widget> 82 </widget>
83 <spacer>
84 <property>
85 <name>name</name>
86 <cstring>Spacer1</cstring>
87 </property>
88 <property stdset="1">
89 <name>orientation</name>
90 <enum>Vertical</enum>
91 </property>
92 <property stdset="1">
93 <name>sizeType</name>
94 <enum>Expanding</enum>
95 </property>
96 <property>
97 <name>sizeHint</name>
98 <size>
99 <width>20</width>
100 <height>20</height>
101 </size>
102 </property>
103 </spacer>
104 </vbox>
105 </widget>
106 <widget>
107 <class>QWidget</class>
108 <property stdset="1">
109 <name>name</name>
110 <cstring>tab</cstring>
111 </property>
112 <attribute>
113 <name>title</name>
114 <string>Compose Mail</string>
115 </attribute>
116 <vbox>
117 <property stdset="1">
118 <name>margin</name>
119 <number>3</number>
120 </property>
121 <property stdset="1">
122 <name>spacing</name>
123 <number>3</number>
124 </property>
125 <widget> 83 <widget>
126 <class>QCheckBox</class> 84 <class>QCheckBox</class>
127 <property stdset="1"> 85 <property stdset="1">
@@ -136,7 +94,7 @@
136 <spacer> 94 <spacer>
137 <property> 95 <property>
138 <name>name</name> 96 <name>name</name>
139 <cstring>Spacer2</cstring> 97 <cstring>Spacer1</cstring>
140 </property> 98 </property>
141 <property stdset="1"> 99 <property stdset="1">
142 <name>orientation</name> 100 <name>orientation</name>
@@ -164,6 +122,17 @@
164 </property> 122 </property>
165 <attribute> 123 <attribute>
166 <name>title</name> 124 <name>title</name>
125 <string>Fonts</string>
126 </attribute>
127 </widget>
128 <widget>
129 <class>QWidget</class>
130 <property stdset="1">
131 <name>name</name>
132 <cstring>tab</cstring>
133 </property>
134 <attribute>
135 <name>title</name>
167 <string>Taskbar Applet</string> 136 <string>Taskbar Applet</string>
168 </attribute> 137 </attribute>
169 <vbox> 138 <vbox>
diff --git a/kmicromail/viewmail.cpp b/kmicromail/viewmail.cpp
index 67b77f8..6e560d7 100644
--- a/kmicromail/viewmail.cpp
+++ b/kmicromail/viewmail.cpp
@@ -15,7 +15,6 @@
15#include <kfiledialog.h> 15#include <kfiledialog.h>
16#include <kdialog.h> 16#include <kdialog.h>
17 17
18#include <qpe/config.h>
19#include <qpe/qpeapplication.h> 18#include <qpe/qpeapplication.h>
20 19
21/* QT */ 20/* QT */
@@ -26,6 +25,7 @@
26#include <qpopupmenu.h> 25#include <qpopupmenu.h>
27#include <qfile.h> 26#include <qfile.h>
28#include <qlayout.h> 27#include <qlayout.h>
28#include "koprefs.h"
29 29
30//using namespace Opie::Ui; 30//using namespace Opie::Ui;
31//using namespace Opie::Core; 31//using namespace Opie::Core;
@@ -326,9 +326,9 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
326 326
327void ViewMail::readConfig() 327void ViewMail::readConfig()
328{ 328{
329 Config cfg( "mail" ); 329
330 cfg.setGroup( "Settings" ); 330 setFont ( KOPrefs::instance()->mReadFont );
331 m_showHtml = cfg.readBoolEntry( "showHtml", false ); 331 m_showHtml = KOPrefs::instance()->mViewAsHtml;
332 showHtml->setOn( m_showHtml ); 332 showHtml->setOn( m_showHtml );
333} 333}
334 334
@@ -362,7 +362,7 @@ void ViewMail::setText()
362 "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + 362 "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" +
363 tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" 363 tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>"
364 "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] + 364 "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] +
365 "</td></tr></table><font face=fixed>"; 365 "</td></tr></table><font>";
366 366
367 if ( !m_showHtml ) 367 if ( !m_showHtml )
368 { 368 {