-rw-r--r-- | korganizer/koprefsdialog.cpp | 14 | ||||
-rw-r--r-- | korganizer/koprefsdialog.h | 1 |
2 files changed, 11 insertions, 4 deletions
diff --git a/korganizer/koprefsdialog.cpp b/korganizer/koprefsdialog.cpp index 7ba1392..ebcff33 100644 --- a/korganizer/koprefsdialog.cpp +++ b/korganizer/koprefsdialog.cpp | |||
@@ -1,1538 +1,1544 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <qlayout.h> | 24 | #include <qlayout.h> |
25 | #include <qlabel.h> | 25 | #include <qlabel.h> |
26 | #include <qgroupbox.h> | 26 | #include <qgroupbox.h> |
27 | #include <qbuttongroup.h> | 27 | #include <qbuttongroup.h> |
28 | #include <qlineedit.h> | 28 | #include <qlineedit.h> |
29 | #include <qfont.h> | 29 | #include <qfont.h> |
30 | #include <qslider.h> | 30 | #include <qslider.h> |
31 | #include <qfile.h> | 31 | #include <qfile.h> |
32 | #include <qtextstream.h> | 32 | #include <qtextstream.h> |
33 | #include <qcombobox.h> | 33 | #include <qcombobox.h> |
34 | #include <qvbox.h> | 34 | #include <qvbox.h> |
35 | #include <qhbox.h> | 35 | #include <qhbox.h> |
36 | #include <qregexp.h> | 36 | #include <qregexp.h> |
37 | #include <qspinbox.h> | 37 | #include <qspinbox.h> |
38 | #include <qdatetime.h> | 38 | #include <qdatetime.h> |
39 | #include <qcheckbox.h> | 39 | #include <qcheckbox.h> |
40 | #include <qradiobutton.h> | 40 | #include <qradiobutton.h> |
41 | #include <qpushbutton.h> | 41 | #include <qpushbutton.h> |
42 | #include <qstrlist.h> | 42 | #include <qstrlist.h> |
43 | #include <qapplication.h> | 43 | #include <qapplication.h> |
44 | 44 | ||
45 | #include <kcolorbutton.h> | 45 | #include <kcolorbutton.h> |
46 | #include <kdebug.h> | 46 | #include <kdebug.h> |
47 | #include <klocale.h> | 47 | #include <klocale.h> |
48 | #include <kglobal.h> | 48 | #include <kglobal.h> |
49 | #include <kfontdialog.h> | 49 | #include <kfontdialog.h> |
50 | #include <kfiledialog.h> | 50 | #include <kfiledialog.h> |
51 | #include <kmessagebox.h> | 51 | #include <kmessagebox.h> |
52 | #include <kcolordialog.h> | 52 | #include <kcolordialog.h> |
53 | #include <kiconloader.h> | 53 | #include <kiconloader.h> |
54 | #include <kemailsettings.h> | 54 | #include <kemailsettings.h> |
55 | #include <kstandarddirs.h> | 55 | #include <kstandarddirs.h> |
56 | #include <kglobalsettings.h> | 56 | #include <kglobalsettings.h> |
57 | 57 | ||
58 | #include <kurlrequester.h> | 58 | #include <kurlrequester.h> |
59 | #include <klineedit.h> | 59 | #include <klineedit.h> |
60 | 60 | ||
61 | #if defined(USE_SOLARIS) | 61 | #if defined(USE_SOLARIS) |
62 | #include <sys/param.h> | 62 | #include <sys/param.h> |
63 | 63 | ||
64 | #define ZONEINFODIR "/usr/share/lib/zoneinfo" | 64 | #define ZONEINFODIR "/usr/share/lib/zoneinfo" |
65 | #define INITFILE "/etc/default/init" | 65 | #define INITFILE "/etc/default/init" |
66 | #endif | 66 | #endif |
67 | 67 | ||
68 | #include "koprefs.h" | 68 | #include "koprefs.h" |
69 | 69 | ||
70 | #include "koprefsdialog.h" | 70 | #include "koprefsdialog.h" |
71 | #include "kpimglobalprefs.h" | 71 | #include "kpimglobalprefs.h" |
72 | 72 | ||
73 | 73 | ||
74 | KOPrefsDialog::KOPrefsDialog(QWidget *parent, char *name, bool modal) : | 74 | KOPrefsDialog::KOPrefsDialog(QWidget *parent, char *name, bool modal) : |
75 | KPrefsDialog(KOPrefs::instance(),parent,name,true) | 75 | KPrefsDialog(KOPrefs::instance(),parent,name,true) |
76 | { | 76 | { |
77 | 77 | ||
78 | setFont( KGlobalSettings::generalMaxFont() ); | 78 | setFont( KGlobalSettings::generalMaxFont() ); |
79 | setCaption( i18n("Preferences - some settings need a restart (nr)")); | 79 | setCaption( i18n("Preferences - some settings need a restart (nr)")); |
80 | mCategoryDict.setAutoDelete(true); | 80 | mCategoryDict.setAutoDelete(true); |
81 | 81 | ||
82 | KGlobal::locale()->insertCatalogue("timezones"); | 82 | KGlobal::locale()->insertCatalogue("timezones"); |
83 | mSpacingHint = spacingHintSmall(); | 83 | mSpacingHint = spacingHintSmall(); |
84 | mMarginHint = marginHintSmall(); | 84 | mMarginHint = marginHintSmall(); |
85 | #ifndef DESKTOP_VERSION | 85 | #ifndef DESKTOP_VERSION |
86 | if ( QApplication::desktop()->height() == 480 ) | 86 | if ( QApplication::desktop()->height() == 480 ) |
87 | hideButtons(); | 87 | hideButtons(); |
88 | #endif | 88 | #endif |
89 | 89 | ||
90 | setupMainTab(); | 90 | setupMainTab(); |
91 | // setupLocaleTab(); | 91 | // setupLocaleTab(); |
92 | //setupTimeZoneTab(); | 92 | //setupTimeZoneTab(); |
93 | setupTimeTab(); | 93 | setupTimeTab(); |
94 | //setupLocaleDateTab(); | 94 | //setupLocaleDateTab(); |
95 | setupFontsTab(); | 95 | setupFontsTab(); |
96 | setupColorsTab(); | 96 | setupColorsTab(); |
97 | setupViewsTab(); | 97 | setupViewsTab(); |
98 | //setupSyncTab(); | 98 | //setupSyncTab(); |
99 | //setupSyncAlgTab(); | 99 | //setupSyncAlgTab(); |
100 | //setupPrinterTab(); | 100 | //setupPrinterTab(); |
101 | //setupGroupSchedulingTab(); | 101 | //setupGroupSchedulingTab(); |
102 | //setupGroupAutomationTab(); | 102 | //setupGroupAutomationTab(); |
103 | 103 | ||
104 | 104 | ||
105 | } | 105 | } |
106 | 106 | ||
107 | 107 | ||
108 | KOPrefsDialog::~KOPrefsDialog() | 108 | KOPrefsDialog::~KOPrefsDialog() |
109 | { | 109 | { |
110 | } | 110 | } |
111 | void KOPrefsDialog::setupGlobalTab() | 111 | void KOPrefsDialog::setupGlobalTab() |
112 | { | 112 | { |
113 | 113 | ||
114 | 114 | ||
115 | } | 115 | } |
116 | void KOPrefsDialog::setupLocaleDateTab() | 116 | void KOPrefsDialog::setupLocaleDateTab() |
117 | { | 117 | { |
118 | #if 0 | 118 | #if 0 |
119 | QFrame *topFrame = addPage(i18n("Date Format"),0,0); | 119 | QFrame *topFrame = addPage(i18n("Date Format"),0,0); |
120 | QGridLayout *topLayout = new QGridLayout(topFrame,3,2); | 120 | QGridLayout *topLayout = new QGridLayout(topFrame,3,2); |
121 | topLayout->setSpacing(mSpacingHint); | 121 | topLayout->setSpacing(mSpacingHint); |
122 | topLayout->setMargin(mMarginHint); | 122 | topLayout->setMargin(mMarginHint); |
123 | int iii = 0; | 123 | int iii = 0; |
124 | 124 | ||
125 | 125 | ||
126 | KPrefsDialogWidRadios *syncPrefsGroup = | 126 | KPrefsDialogWidRadios *syncPrefsGroup = |
127 | addWidRadios(i18n("Date Format:"),&(KOPrefs::instance()->mPreferredDate),topFrame); | 127 | addWidRadios(i18n("Date Format:"),&(KOPrefs::instance()->mPreferredDate),topFrame); |
128 | QString format; | 128 | QString format; |
129 | if ( QApplication::desktop()->width() < 480 ) | 129 | if ( QApplication::desktop()->width() < 480 ) |
130 | format = "(%d.%m.%Y)"; | 130 | format = "(%d.%m.%Y)"; |
131 | else | 131 | else |
132 | format = "(%d.%m.%Y|%A %d %B %Y)"; | 132 | format = "(%d.%m.%Y|%A %d %B %Y)"; |
133 | syncPrefsGroup->addRadio(i18n("24.03.2004 "+format)); | 133 | syncPrefsGroup->addRadio(i18n("24.03.2004 "+format)); |
134 | if ( QApplication::desktop()->width() < 480 ) | 134 | if ( QApplication::desktop()->width() < 480 ) |
135 | format = "(%m.%d.%Y)"; | 135 | format = "(%m.%d.%Y)"; |
136 | else | 136 | else |
137 | format = "(%m.%d.%Y|%A %B %d %Y)"; | 137 | format = "(%m.%d.%Y|%A %B %d %Y)"; |
138 | syncPrefsGroup->addRadio(i18n("03.24.2004 "+format)); | 138 | syncPrefsGroup->addRadio(i18n("03.24.2004 "+format)); |
139 | if ( QApplication::desktop()->width() < 480 ) | 139 | if ( QApplication::desktop()->width() < 480 ) |
140 | format = "(%Y-%m-%d)"; | 140 | format = "(%Y-%m-%d)"; |
141 | else | 141 | else |
142 | format = "(%Y-%m-%d|%A %Y %B %d)"; | 142 | format = "(%Y-%m-%d|%A %Y %B %d)"; |
143 | syncPrefsGroup->addRadio(i18n("2004-03-24 "+format)); | 143 | syncPrefsGroup->addRadio(i18n("2004-03-24 "+format)); |
144 | syncPrefsGroup->addRadio(i18n("User defined")); | 144 | syncPrefsGroup->addRadio(i18n("User defined")); |
145 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 145 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
146 | ++iii; | 146 | ++iii; |
147 | ++iii; | 147 | ++iii; |
148 | QLabel * lab; | 148 | QLabel * lab; |
149 | mUserDateFormatLong = new QLineEdit(topFrame); | 149 | mUserDateFormatLong = new QLineEdit(topFrame); |
150 | lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame); | 150 | lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame); |
151 | topLayout->addWidget(lab ,iii,0); | 151 | topLayout->addWidget(lab ,iii,0); |
152 | topLayout->addWidget(mUserDateFormatLong,iii,1); | 152 | topLayout->addWidget(mUserDateFormatLong,iii,1); |
153 | ++iii; | 153 | ++iii; |
154 | mUserDateFormatShort = new QLineEdit(topFrame); | 154 | mUserDateFormatShort = new QLineEdit(topFrame); |
155 | lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame); | 155 | lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame); |
156 | topLayout->addWidget(lab ,iii,0); | 156 | topLayout->addWidget(lab ,iii,0); |
157 | topLayout->addWidget(mUserDateFormatShort,iii,1); | 157 | topLayout->addWidget(mUserDateFormatShort,iii,1); |
158 | ++iii; | 158 | ++iii; |
159 | lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame); | 159 | lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame); |
160 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 160 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
161 | ++iii; | 161 | ++iii; |
162 | lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame); | 162 | lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame); |
163 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 163 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
164 | ++iii; | 164 | ++iii; |
165 | lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame); | 165 | lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame); |
166 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 166 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
167 | ++iii; | 167 | ++iii; |
168 | #endif | 168 | #endif |
169 | 169 | ||
170 | } | 170 | } |
171 | 171 | ||
172 | void KOPrefsDialog::setupLocaleTab() | 172 | void KOPrefsDialog::setupLocaleTab() |
173 | { | 173 | { |
174 | #if 0 | 174 | #if 0 |
175 | QFrame *topFrame = addPage(i18n("Locale"),0,0); | 175 | QFrame *topFrame = addPage(i18n("Locale"),0,0); |
176 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); | 176 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); |
177 | topLayout->setSpacing(mSpacingHint); | 177 | topLayout->setSpacing(mSpacingHint); |
178 | topLayout->setMargin(mMarginHint); | 178 | topLayout->setMargin(mMarginHint); |
179 | int iii = 0; | 179 | int iii = 0; |
180 | KPrefsDialogWidRadios *syncPrefsGroup = | 180 | KPrefsDialogWidRadios *syncPrefsGroup = |
181 | addWidRadios(i18n("Language:(needs restart)"),&(KOPrefs::instance()->mPreferredLanguage),topFrame); | 181 | addWidRadios(i18n("Language:(needs restart)"),&(KOPrefs::instance()->mPreferredLanguage),topFrame); |
182 | syncPrefsGroup->addRadio(i18n("English")); | 182 | syncPrefsGroup->addRadio(i18n("English")); |
183 | syncPrefsGroup->addRadio(i18n("German")); | 183 | syncPrefsGroup->addRadio(i18n("German")); |
184 | syncPrefsGroup->addRadio(i18n("French")); | 184 | syncPrefsGroup->addRadio(i18n("French")); |
185 | syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)")); | 185 | syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)")); |
186 | if ( QApplication::desktop()->width() < 300 ) | 186 | if ( QApplication::desktop()->width() < 300 ) |
187 | ;// syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 187 | ;// syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
188 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 188 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
189 | ++iii; | 189 | ++iii; |
190 | 190 | ||
191 | syncPrefsGroup = | 191 | syncPrefsGroup = |
192 | addWidRadios(i18n("Time Format(nr):"),&(KOPrefs::instance()->mPreferredTime),topFrame); | 192 | addWidRadios(i18n("Time Format(nr):"),&(KOPrefs::instance()->mPreferredTime),topFrame); |
193 | if ( QApplication::desktop()->width() > 300 ) | 193 | if ( QApplication::desktop()->width() > 300 ) |
194 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 194 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
195 | syncPrefsGroup->addRadio(i18n("24:00")); | 195 | syncPrefsGroup->addRadio(i18n("24:00")); |
196 | syncPrefsGroup->addRadio(i18n("12:00am")); | 196 | syncPrefsGroup->addRadio(i18n("12:00am")); |
197 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); | 197 | syncPrefsGroup->groupBox()-> setOrientation (Qt::Vertical); |
198 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 198 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
199 | ++iii; | 199 | ++iii; |
200 | KPrefsDialogWidBool *sb; | 200 | KPrefsDialogWidBool *sb; |
201 | if ( QApplication::desktop()->width() < 300 ) { | 201 | if ( QApplication::desktop()->width() < 300 ) { |
202 | sb = | 202 | sb = |
203 | addWidBool(i18n("Week starts on Sunday"), | 203 | addWidBool(i18n("Week starts on Sunday"), |
204 | &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame); | 204 | &(KOPrefs::instance()->mWeekStartsOnSunday),topFrame); |
205 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 205 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
206 | ++iii; | 206 | ++iii; |
207 | sb = | 207 | sb = |
208 | addWidBool(i18n("Use short date in (WN/E) view"), | 208 | addWidBool(i18n("Use short date in (WN/E) view"), |
209 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); | 209 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); |
210 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 210 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
211 | } | 211 | } |
212 | else { | 212 | else { |
213 | QWidget * hb = new QWidget( topFrame ); | 213 | QWidget * hb = new QWidget( topFrame ); |
214 | QHBoxLayout *hbLayout = new QHBoxLayout(hb); | 214 | QHBoxLayout *hbLayout = new QHBoxLayout(hb); |
215 | sb = | 215 | sb = |
216 | addWidBool(i18n("Week starts on Sunday"), | 216 | addWidBool(i18n("Week starts on Sunday"), |
217 | &(KOPrefs::instance()->mWeekStartsOnSunday),hb); | 217 | &(KOPrefs::instance()->mWeekStartsOnSunday),hb); |
218 | hbLayout->addWidget(sb->checkBox() ); | 218 | hbLayout->addWidget(sb->checkBox() ); |
219 | sb = | 219 | sb = |
220 | addWidBool(i18n("Use short date in (WN/E) view"), | 220 | addWidBool(i18n("Use short date in (WN/E) view"), |
221 | &(KOPrefs::instance()->mShortDateInViewer),hb); | 221 | &(KOPrefs::instance()->mShortDateInViewer),hb); |
222 | hbLayout->addWidget(sb->checkBox() ); | 222 | hbLayout->addWidget(sb->checkBox() ); |
223 | topLayout->addMultiCellWidget(hb, iii,iii,0,1); | 223 | topLayout->addMultiCellWidget(hb, iii,iii,0,1); |
224 | 224 | ||
225 | } | 225 | } |
226 | // KPrefsDialogWidBool *sb; //#ifndef DESKTOP_VERSION | 226 | // KPrefsDialogWidBool *sb; //#ifndef DESKTOP_VERSION |
227 | #if 0 | 227 | #if 0 |
228 | ++iii; | 228 | ++iii; |
229 | sb = | 229 | sb = |
230 | addWidBool(i18n("Quick load/save (w/o Unicode)"), | 230 | addWidBool(i18n("Quick load/save (w/o Unicode)"), |
231 | &(KOPrefs::instance()->mUseQuicksave),topFrame); | 231 | &(KOPrefs::instance()->mUseQuicksave),topFrame); |
232 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); | 232 | topLayout->addMultiCellWidget(sb->checkBox(), iii,iii,0,1); |
233 | #endif | 233 | #endif |
234 | #endif | 234 | #endif |
235 | } | 235 | } |
236 | 236 | ||
237 | void KOPrefsDialog::setupMainTab() | 237 | void KOPrefsDialog::setupMainTab() |
238 | { | 238 | { |
239 | QFrame *topFrame = addPage(i18n("General"),0,0); | 239 | QFrame *topFrame = addPage(i18n("General"),0,0); |
240 | // DesktopIcon("identity",KIcon::SizeMedium)); | 240 | // DesktopIcon("identity",KIcon::SizeMedium)); |
241 | 241 | ||
242 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); | 242 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); |
243 | topLayout->setSpacing(mSpacingHint); | 243 | topLayout->setSpacing(mSpacingHint); |
244 | topLayout->setMargin(mMarginHint); | 244 | topLayout->setMargin(mMarginHint); |
245 | 245 | ||
246 | // KPrefsDialogWidBool *emailControlCenter = | 246 | // KPrefsDialogWidBool *emailControlCenter = |
247 | // addWidBool(i18n("&Use email settings from Control Center"), | 247 | // addWidBool(i18n("&Use email settings from Control Center"), |
248 | // &(KOPrefs::instance()->mEmailControlCenter),topFrame); | 248 | // &(KOPrefs::instance()->mEmailControlCenter),topFrame); |
249 | // topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1); | 249 | // topLayout->addMultiCellWidget(emailControlCenter->checkBox(),0,0,0,1); |
250 | // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)), | 250 | // connect(emailControlCenter->checkBox(),SIGNAL(toggled(bool)), |
251 | // SLOT(toggleEmailSettings(bool))); | 251 | // SLOT(toggleEmailSettings(bool))); |
252 | 252 | ||
253 | mNameEdit = new QLineEdit(topFrame); | 253 | mNameEdit = new QLineEdit(topFrame); |
254 | mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame); | 254 | mNameLabel = new QLabel(mNameEdit, i18n("Full &name:"), topFrame); |
255 | topLayout->addWidget(mNameLabel,0,0); | 255 | topLayout->addWidget(mNameLabel,0,0); |
256 | topLayout->addWidget(mNameEdit,0,1); | 256 | topLayout->addWidget(mNameEdit,0,1); |
257 | 257 | ||
258 | mEmailEdit = new QLineEdit(topFrame); | 258 | mEmailEdit = new QLineEdit(topFrame); |
259 | mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame); | 259 | mEmailLabel = new QLabel(mEmailEdit, i18n("E&mail address:"),topFrame); |
260 | topLayout->addWidget(mEmailLabel,1,0); | 260 | topLayout->addWidget(mEmailLabel,1,0); |
261 | topLayout->addWidget(mEmailEdit,1,1); | 261 | topLayout->addWidget(mEmailEdit,1,1); |
262 | KPrefsDialogWidBool *wb; | 262 | KPrefsDialogWidBool *wb; |
263 | 263 | ||
264 | 264 | ||
265 | 265 | ||
266 | KPrefsDialogWidBool *widbool = addWidBool(i18n("Full menu bar(nr)"), | 266 | KPrefsDialogWidBool *widbool = addWidBool(i18n("Full menu bar(nr)"), |
267 | &(KOPrefs::instance()->mShowFullMenu),topFrame); | 267 | &(KOPrefs::instance()->mShowFullMenu),topFrame); |
268 | topLayout->addMultiCellWidget( widbool->checkBox(), 2,2,0,1); | 268 | topLayout->addMultiCellWidget( widbool->checkBox(), 2,2,0,1); |
269 | 269 | ||
270 | 270 | ||
271 | widbool = addWidBool(i18n("Mini icons in toolbar(nr)"), | 271 | widbool = addWidBool(i18n("Mini icons in toolbar(nr)"), |
272 | &(KOPrefs::instance()->mToolBarMiniIcons),topFrame); | 272 | &(KOPrefs::instance()->mToolBarMiniIcons),topFrame); |
273 | topLayout->addMultiCellWidget( widbool->checkBox(), 3,3,0,1); | 273 | topLayout->addMultiCellWidget( widbool->checkBox(), 3,3,0,1); |
274 | 274 | ||
275 | 275 | ||
276 | KPrefsDialogWidBool *verticalScreen = | 276 | KPrefsDialogWidBool *verticalScreen = |
277 | addWidBool(i18n("Vertical screen layout(Needs restart)"), | 277 | addWidBool(i18n("Vertical screen layout(Needs restart)"), |
278 | &(KOPrefs::instance()->mVerticalScreen),topFrame); | 278 | &(KOPrefs::instance()->mVerticalScreen),topFrame); |
279 | //topLayout->addWidget(verticalScreen->checkBox(),ii++,0); | 279 | //topLayout->addWidget(verticalScreen->checkBox(),ii++,0); |
280 | topLayout->addMultiCellWidget(verticalScreen->checkBox(),4,4,0,1); | 280 | topLayout->addMultiCellWidget(verticalScreen->checkBox(),4,4,0,1); |
281 | 281 | ||
282 | 282 | ||
283 | int iii = 5; | 283 | int iii = 5; |
284 | widbool = addWidBool(i18n("Block popup until mouse button release"), | 284 | widbool = addWidBool(i18n("Block popup until mouse button release"), |
285 | &(KOPrefs::instance()->mBlockPopupMenu),topFrame); | 285 | &(KOPrefs::instance()->mBlockPopupMenu),topFrame); |
286 | topLayout->addMultiCellWidget( widbool->checkBox(), iii,iii,0,1); | 286 | topLayout->addMultiCellWidget( widbool->checkBox(), iii,iii,0,1); |
287 | ++iii; | 287 | ++iii; |
288 | if ( QApplication::desktop()->height() <= 240 ) { | 288 | if ( QApplication::desktop()->height() <= 240 ) { |
289 | topFrame = addPage(i18n("General") +" 2",0,0); | 289 | topFrame = addPage(i18n("General") +" 2",0,0); |
290 | topLayout = new QGridLayout(topFrame,4,2); | 290 | topLayout = new QGridLayout(topFrame,4,2); |
291 | topLayout->setSpacing(2); | 291 | topLayout->setSpacing(2); |
292 | topLayout->setMargin(3); | 292 | topLayout->setMargin(3); |
293 | iii = 0; | 293 | iii = 0; |
294 | } | 294 | } |
295 | QHBox *dummy = new QHBox(topFrame); | 295 | QHBox *dummy = new QHBox(topFrame); |
296 | new QLabel(i18n("Days in Next-X-Days:"),dummy); | 296 | new QLabel(i18n("Days in Next-X-Days:"),dummy); |
297 | mNextXDaysSpin = new QSpinBox(2,14,1,dummy); | 297 | mNextXDaysSpin = new QSpinBox(2,14,1,dummy); |
298 | 298 | ||
299 | topLayout->addMultiCellWidget(dummy,iii,iii,0,1); | 299 | topLayout->addMultiCellWidget(dummy,iii,iii,0,1); |
300 | 300 | ||
301 | ++iii; | 301 | ++iii; |
302 | 302 | ||
303 | 303 | ||
304 | // KPrefsDialogWidBool *bcc = | 304 | // KPrefsDialogWidBool *bcc = |
305 | // addWidBool(i18n("Send copy to owner when mailing events"), | 305 | // addWidBool(i18n("Send copy to owner when mailing events"), |
306 | // &(KOPrefs::instance()->mBcc),topFrame); | 306 | // &(KOPrefs::instance()->mBcc),topFrame); |
307 | // topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1); | 307 | // topLayout->addMultiCellWidget(bcc->checkBox(),4,4,0,1); |
308 | 308 | ||
309 | 309 | ||
310 | // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame); | 310 | // QGroupBox *autoSaveGroup = new QGroupBox(1,Horizontal,i18n("Auto-Save"), topFrame); |
311 | //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1); | 311 | //topLayout->addMultiCellWidget(autoSaveGroup,6,6,0,1); |
312 | 312 | ||
313 | // addWidBool(i18n("Enable automatic saving of calendar"), | 313 | // addWidBool(i18n("Enable automatic saving of calendar"), |
314 | // &(KOPrefs::instance()->mAutoSave),autoSaveGroup); | 314 | // &(KOPrefs::instance()->mAutoSave),autoSaveGroup); |
315 | 315 | ||
316 | QHBox *intervalBox = new QHBox(topFrame); | 316 | QHBox *intervalBox = new QHBox(topFrame); |
317 | // intervalBox->setSpacing(mSpacingHint); | 317 | // intervalBox->setSpacing(mSpacingHint); |
318 | topLayout->addMultiCellWidget(intervalBox,iii,iii,0,1); | 318 | topLayout->addMultiCellWidget(intervalBox,iii,iii,0,1); |
319 | ++iii; | 319 | ++iii; |
320 | QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox); | 320 | QLabel *autoSaveIntervalLabel = new QLabel(i18n("Auto save delay in minutes:"),intervalBox); |
321 | mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox); | 321 | mAutoSaveIntervalSpin = new QSpinBox(0,500,1,intervalBox); |
322 | autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin); | 322 | autoSaveIntervalLabel->setBuddy(mAutoSaveIntervalSpin); |
323 | /* | 323 | /* |
324 | QHBox * agendasize = new QHBox ( topFrame ); | 324 | QHBox * agendasize = new QHBox ( topFrame ); |
325 | 325 | ||
326 | new QLabel (i18n("AllDayAgenda Height:"), agendasize ); | 326 | new QLabel (i18n("AllDayAgenda Height:"), agendasize ); |
327 | 327 | ||
328 | 328 | ||
329 | mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize); | 329 | mHourSizeSlider = new QSlider(24,47,1,24,Horizontal,agendasize); |
330 | topLayout->addMultiCellWidget(agendasize,7,7,0,1); | 330 | topLayout->addMultiCellWidget(agendasize,7,7,0,1); |
331 | */ | 331 | */ |
332 | 332 | ||
333 | 333 | ||
334 | KPrefsDialogWidBool *ask = | 334 | KPrefsDialogWidBool *ask = |
335 | addWidBool(i18n("Ask for quit when closing KO/Pi"), | 335 | addWidBool(i18n("Ask for quit when closing KO/Pi"), |
336 | &(KOPrefs::instance()->mAskForQuit),topFrame); | 336 | &(KOPrefs::instance()->mAskForQuit),topFrame); |
337 | topLayout->addMultiCellWidget(ask->checkBox(),iii,iii,0,1); | 337 | topLayout->addMultiCellWidget(ask->checkBox(),iii,iii,0,1); |
338 | ++iii; | 338 | ++iii; |
339 | 339 | ||
340 | 340 | ||
341 | /* | 341 | /* |
342 | KPrefsDialogWidBool *confirmCheck = | 342 | KPrefsDialogWidBool *confirmCheck = |
343 | addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm), | 343 | addWidBool(i18n("Confirm &deletes"),&(KOPrefs::instance()->mConfirm), |
344 | topFrame); | 344 | topFrame); |
345 | topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1); | 345 | topLayout->addMultiCellWidget(confirmCheck->checkBox(),7,7,0,1); |
346 | 346 | ||
347 | 347 | ||
348 | mEnableGroupScheduling = | 348 | mEnableGroupScheduling = |
349 | addWidBool(i18n("Enable group scheduling"), | 349 | addWidBool(i18n("Enable group scheduling"), |
350 | &(KOPrefs::instance()->mEnableGroupScheduling),topFrame); | 350 | &(KOPrefs::instance()->mEnableGroupScheduling),topFrame); |
351 | topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0); | 351 | topLayout->addWidget(mEnableGroupScheduling->checkBox(),8,0); |
352 | connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()), | 352 | connect(mEnableGroupScheduling->checkBox(),SIGNAL(clicked()), |
353 | SLOT(warningGroupScheduling())); | 353 | SLOT(warningGroupScheduling())); |
354 | 354 | ||
355 | mEnableProjectView = | 355 | mEnableProjectView = |
356 | addWidBool(i18n("Enable project view"), | 356 | addWidBool(i18n("Enable project view"), |
357 | &(KOPrefs::instance()->mEnableProjectView),topFrame); | 357 | &(KOPrefs::instance()->mEnableProjectView),topFrame); |
358 | topLayout->addWidget(mEnableProjectView->checkBox(),9,0); | 358 | topLayout->addWidget(mEnableProjectView->checkBox(),9,0); |
359 | connect(mEnableProjectView->checkBox(),SIGNAL(clicked()), | 359 | connect(mEnableProjectView->checkBox(),SIGNAL(clicked()), |
360 | SLOT(warningProjectView())); | 360 | SLOT(warningProjectView())); |
361 | 361 | ||
362 | // Can't be disabled anymore | 362 | // Can't be disabled anymore |
363 | mEnableGroupScheduling->checkBox()->hide(); | 363 | mEnableGroupScheduling->checkBox()->hide(); |
364 | 364 | ||
365 | // Disable setting, because this feature now becomes stable | 365 | // Disable setting, because this feature now becomes stable |
366 | mEnableProjectView->checkBox()->hide(); | 366 | mEnableProjectView->checkBox()->hide(); |
367 | 367 | ||
368 | KPrefsDialogWidRadios *defaultFormatGroup = | 368 | KPrefsDialogWidRadios *defaultFormatGroup = |
369 | addWidRadios(i18n("Default Calendar Format"), | 369 | addWidRadios(i18n("Default Calendar Format"), |
370 | &(KOPrefs::instance()->mDefaultFormat),topFrame); | 370 | &(KOPrefs::instance()->mDefaultFormat),topFrame); |
371 | defaultFormatGroup->addRadio(i18n("vCalendar")); | 371 | defaultFormatGroup->addRadio(i18n("vCalendar")); |
372 | defaultFormatGroup->addRadio(i18n("iCalendar")); | 372 | defaultFormatGroup->addRadio(i18n("iCalendar")); |
373 | 373 | ||
374 | topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1); | 374 | topLayout->addMultiCellWidget(defaultFormatGroup->groupBox(),10,10,0,1); |
375 | 375 | ||
376 | // Default format unconditionally is iCalendar | 376 | // Default format unconditionally is iCalendar |
377 | defaultFormatGroup->groupBox()->hide(); | 377 | defaultFormatGroup->groupBox()->hide(); |
378 | 378 | ||
379 | KPrefsDialogWidRadios *mailClientGroup = | 379 | KPrefsDialogWidRadios *mailClientGroup = |
380 | addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient), | 380 | addWidRadios(i18n("Mail Client"),&(KOPrefs::instance()->mMailClient), |
381 | topFrame); | 381 | topFrame); |
382 | mailClientGroup->addRadio(i18n("KMail")); | 382 | mailClientGroup->addRadio(i18n("KMail")); |
383 | mailClientGroup->addRadio(i18n("Sendmail")); | 383 | mailClientGroup->addRadio(i18n("Sendmail")); |
384 | topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1); | 384 | topLayout->addMultiCellWidget(mailClientGroup->groupBox(),11,11,0,1); |
385 | 385 | ||
386 | KPrefsDialogWidBool *htmlsave = | 386 | KPrefsDialogWidBool *htmlsave = |
387 | addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave), | 387 | addWidBool(i18n("Export to HTML with every save"),&(KOPrefs::instance()->mHtmlWithSave), |
388 | topFrame); | 388 | topFrame); |
389 | topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1); | 389 | topLayout->addMultiCellWidget(htmlsave->checkBox(),12,12,0,1); |
390 | 390 | ||
391 | KPrefsDialogWidRadios *destinationGroup = | 391 | KPrefsDialogWidRadios *destinationGroup = |
392 | addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination), | 392 | addWidRadios(i18n("New Events/Todos should"),&(KOPrefs::instance()->mDestination), |
393 | topFrame); | 393 | topFrame); |
394 | destinationGroup->addRadio(i18n("be added to the standard resource")); | 394 | destinationGroup->addRadio(i18n("be added to the standard resource")); |
395 | destinationGroup->addRadio(i18n("be asked which resource to use")); | 395 | destinationGroup->addRadio(i18n("be asked which resource to use")); |
396 | topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1); | 396 | topLayout->addMultiCellWidget(destinationGroup->groupBox(),13,13,0,1); |
397 | 397 | ||
398 | topLayout->setRowStretch(14,1); | 398 | topLayout->setRowStretch(14,1); |
399 | */ | 399 | */ |
400 | } | 400 | } |
401 | 401 | ||
402 | 402 | ||
403 | void KOPrefsDialog::setupTimeTab() | 403 | void KOPrefsDialog::setupTimeTab() |
404 | { | 404 | { |
405 | QFrame *topFrame = addPage(i18n("Time"),0,0); | 405 | QFrame *topFrame = addPage(i18n("Time"),0,0); |
406 | // DesktopIcon("clock",KIcon::SizeMedium)); | 406 | // DesktopIcon("clock",KIcon::SizeMedium)); |
407 | 407 | ||
408 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); | 408 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); |
409 | topLayout->setSpacing(mSpacingHint); | 409 | topLayout->setSpacing(mSpacingHint); |
410 | topLayout->setMargin(mMarginHint); | 410 | topLayout->setMargin(mMarginHint); |
411 | 411 | ||
412 | QHBox *dummy = new QHBox(topFrame); | 412 | QHBox *dummy = new QHBox(topFrame); |
413 | KPrefsDialogWidTime *dayBegins = | 413 | KPrefsDialogWidTime *dayBegins = |
414 | addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), | 414 | addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), |
415 | dummy); | 415 | dummy); |
416 | //topLayout->addWidget(dayBegins->label(),2,0); | 416 | //topLayout->addWidget(dayBegins->label(),2,0); |
417 | 417 | ||
418 | //topLayout->addWidget(dayBegins->spinBox(),2,1); | 418 | //topLayout->addWidget(dayBegins->spinBox(),2,1); |
419 | topLayout->addMultiCellWidget(dummy,0,0,0,1); | 419 | topLayout->addMultiCellWidget(dummy,0,0,0,1); |
420 | 420 | ||
421 | topLayout->addWidget(new QLabel(i18n("Default appointment time:"), | 421 | topLayout->addWidget(new QLabel(i18n("Default appointment time:"), |
422 | topFrame),1,0); | 422 | topFrame),1,0); |
423 | mStartTimeSpin = new QSpinBox(0,23,1,topFrame); | 423 | mStartTimeSpin = new QSpinBox(0,23,1,topFrame); |
424 | mStartTimeSpin->setSuffix(":00"); | 424 | mStartTimeSpin->setSuffix(":00"); |
425 | topLayout->addWidget(mStartTimeSpin,1,1); | 425 | topLayout->addWidget(mStartTimeSpin,1,1); |
426 | 426 | ||
427 | topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"), | 427 | topLayout->addWidget(new QLabel(i18n("Def. duration of new app.:"), |
428 | topFrame),2,0); | 428 | topFrame),2,0); |
429 | mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame); | 429 | mDefaultDurationSpin = new QSpinBox(0,23,1,topFrame); |
430 | mDefaultDurationSpin->setSuffix(":00"); | 430 | mDefaultDurationSpin->setSuffix(":00"); |
431 | topLayout->addWidget(mDefaultDurationSpin,2,1); | 431 | topLayout->addWidget(mDefaultDurationSpin,2,1); |
432 | 432 | ||
433 | QStringList alarmList; | 433 | QStringList alarmList; |
434 | alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes") | 434 | alarmList << i18n("1 minute") << i18n("5 minutes") << i18n("10 minutes") |
435 | << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ; | 435 | << i18n("15 minutes") << i18n("30 minutes")<< i18n("1 hour")<< i18n("3 hours") << i18n("24 hours") ; |
436 | topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame), | 436 | topLayout->addWidget(new QLabel(i18n("Default alarm time:"),topFrame), |
437 | 3,0); | 437 | 3,0); |
438 | mAlarmTimeCombo = new QComboBox(topFrame); | 438 | mAlarmTimeCombo = new QComboBox(topFrame); |
439 | mAlarmTimeCombo->insertStringList(alarmList); | 439 | mAlarmTimeCombo->insertStringList(alarmList); |
440 | topLayout->addWidget(mAlarmTimeCombo,3,1); | 440 | topLayout->addWidget(mAlarmTimeCombo,3,1); |
441 | int iii = 4; | 441 | int iii = 4; |
442 | if ( QApplication::desktop()->height() <= 240 ) { | 442 | if ( QApplication::desktop()->height() <= 240 ) { |
443 | topFrame = addPage(i18n("Time") +" 2",0,0); | 443 | topFrame = addPage(i18n("Time") +" 2",0,0); |
444 | topLayout = new QGridLayout(topFrame,1,2); | 444 | topLayout = new QGridLayout(topFrame,1,2); |
445 | topLayout->setSpacing(2); | 445 | topLayout->setSpacing(2); |
446 | topLayout->setMargin(3); | 446 | topLayout->setMargin(3); |
447 | iii = 0; | 447 | iii = 0; |
448 | } | 448 | } |
449 | 449 | ||
450 | QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal, | 450 | QGroupBox *workingHoursGroup = new QGroupBox(1,Horizontal, |
451 | i18n("Working Hours"), | 451 | i18n("Working Hours"), |
452 | topFrame); | 452 | topFrame); |
453 | topLayout->addMultiCellWidget(workingHoursGroup,iii,iii,0,1); | 453 | topLayout->addMultiCellWidget(workingHoursGroup,iii,iii,0,1); |
454 | workingHoursGroup->layout()->setSpacing( 0 ); | 454 | workingHoursGroup->layout()->setSpacing( 0 ); |
455 | workingHoursGroup->layout()->setMargin( 4 ); | 455 | workingHoursGroup->layout()->setMargin( 4 ); |
456 | QHBox *workStartBox = new QHBox(workingHoursGroup); | 456 | QHBox *workStartBox = new QHBox(workingHoursGroup); |
457 | // workStartBox->setMargin( 0 ); | 457 | // workStartBox->setMargin( 0 ); |
458 | addWidTime(i18n("Daily starting hour:"), | 458 | addWidTime(i18n("Daily starting hour:"), |
459 | &(KOPrefs::instance()->mWorkingHoursStart),workStartBox); | 459 | &(KOPrefs::instance()->mWorkingHoursStart),workStartBox); |
460 | 460 | ||
461 | QHBox *workEndBox = new QHBox(workingHoursGroup); | 461 | QHBox *workEndBox = new QHBox(workingHoursGroup); |
462 | //workEndBox->setMargin( 0 ); | 462 | //workEndBox->setMargin( 0 ); |
463 | addWidTime(i18n("Daily ending hour:"), | 463 | addWidTime(i18n("Daily ending hour:"), |
464 | &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox); | 464 | &(KOPrefs::instance()->mWorkingHoursEnd),workEndBox); |
465 | QVBox *excludeBox = new QVBox(workingHoursGroup); | 465 | QVBox *excludeBox = new QVBox(workingHoursGroup); |
466 | //excludeBox->setMargin( 0 ); | 466 | //excludeBox->setMargin( 0 ); |
467 | addWidBool(i18n("Exclude holidays"), | 467 | addWidBool(i18n("Exclude holidays"), |
468 | &(KOPrefs::instance()->mExcludeHolidays),excludeBox); | 468 | &(KOPrefs::instance()->mExcludeHolidays),excludeBox); |
469 | 469 | ||
470 | addWidBool(i18n("Exclude Saturdays"), | 470 | addWidBool(i18n("Exclude Saturdays"), |
471 | &(KOPrefs::instance()->mExcludeSaturdays),excludeBox); | 471 | &(KOPrefs::instance()->mExcludeSaturdays),excludeBox); |
472 | 472 | ||
473 | // KPrefsDialogWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"), | 473 | // KPrefsDialogWidBool *marcusBainsShowSeconds = addWidBool(i18n("Show seconds on Marcus Bains line"), |
474 | // &(KOPrefs::instance()->mMarcusBainsShowSeconds), | 474 | // &(KOPrefs::instance()->mMarcusBainsShowSeconds), |
475 | // topFrame); | 475 | // topFrame); |
476 | // topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0); | 476 | // topLayout->addWidget(marcusBainsShowSeconds->checkBox(),5,0); |
477 | 477 | ||
478 | // topLayout->setRowStretch(6,1); | 478 | // topLayout->setRowStretch(6,1); |
479 | } | 479 | } |
480 | 480 | ||
481 | 481 | ||
482 | void KOPrefsDialog::setupViewsTab() | 482 | void KOPrefsDialog::setupViewsTab() |
483 | { | 483 | { |
484 | 484 | ||
485 | QFrame *topFrame = addPage(i18n("Views"),0,0); | 485 | QFrame *topFrame = addPage(i18n("Views"),0,0); |
486 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 486 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
487 | 487 | ||
488 | QGridLayout *topLayout = new QGridLayout(topFrame,6,1); | 488 | QGridLayout *topLayout = new QGridLayout(topFrame,6,1); |
489 | topLayout->setSpacing(mSpacingHint); | 489 | topLayout->setSpacing(mSpacingHint); |
490 | topLayout->setMargin(mMarginHint); | 490 | topLayout->setMargin(mMarginHint); |
491 | 491 | ||
492 | // QBoxLayout *dayBeginsLayout = new QHBoxLayout; | 492 | // QBoxLayout *dayBeginsLayout = new QHBoxLayout; |
493 | // topLayout->addLayout(dayBeginsLayout,0,0); | 493 | // topLayout->addLayout(dayBeginsLayout,0,0); |
494 | 494 | ||
495 | // KPrefsDialogWidTime *dayBegins = | 495 | // KPrefsDialogWidTime *dayBegins = |
496 | // addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), | 496 | // addWidTime(i18n("Day begins at:"),&(KOPrefs::instance()->mDayBegins), |
497 | // topFrame); | 497 | // topFrame); |
498 | // dayBeginsLayout->addWidget(dayBegins->label()); | 498 | // dayBeginsLayout->addWidget(dayBegins->label()); |
499 | // dayBeginsLayout->addStretch(1); | 499 | // dayBeginsLayout->addStretch(1); |
500 | // dayBeginsLayout->addWidget(dayBegins->spinBox()); | 500 | // dayBeginsLayout->addWidget(dayBegins->spinBox()); |
501 | 501 | ||
502 | // QBoxLayout *nextDaysLayout = new QHBoxLayout; | 502 | // QBoxLayout *nextDaysLayout = new QHBoxLayout; |
503 | // topLayout->addLayout(nextDaysLayout,1,0); | 503 | // topLayout->addLayout(nextDaysLayout,1,0); |
504 | // nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame)); | 504 | // nextDaysLayout->addWidget(new QLabel(i18n("Days to show in Next-X-Days view:"),topFrame)); |
505 | // mNextXDaysSpin = new QSpinBox(2,14,1,topFrame); | 505 | // mNextXDaysSpin = new QSpinBox(2,14,1,topFrame); |
506 | // nextDaysLayout->addStretch(1); | 506 | // nextDaysLayout->addStretch(1); |
507 | // nextDaysLayout->addWidget(mNextXDaysSpin); | 507 | // nextDaysLayout->addWidget(mNextXDaysSpin); |
508 | 508 | ||
509 | 509 | ||
510 | int ii = 0; | 510 | int ii = 0; |
511 | KPrefsDialogWidBool *dummy = | 511 | KPrefsDialogWidBool *dummy = |
512 | addWidBool(i18n("Edit item on doubleclick (if not, show)"), | 512 | addWidBool(i18n("Edit item on doubleclick (if not, show)"), |
513 | &(KOPrefs::instance()->mEditOnDoubleClick),topFrame); | 513 | &(KOPrefs::instance()->mEditOnDoubleClick),topFrame); |
514 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 514 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
515 | 515 | ||
516 | 516 | ||
517 | 517 | ||
518 | 518 | ||
519 | 519 | ||
520 | 520 | ||
521 | // topLayout->addWidget(hourSizeGroup,ii++,0); | 521 | // topLayout->addWidget(hourSizeGroup,ii++,0); |
522 | // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0); | 522 | // topLayout->addMultiCellWidget(hourSizeGroup,ii,ii,0,0); |
523 | //topLayout->setRowStretch(11,1); | 523 | //topLayout->setRowStretch(11,1); |
524 | 524 | ||
525 | 525 | ||
526 | 526 | ||
527 | 527 | ||
528 | #if 0 | 528 | #if 0 |
529 | 529 | ||
530 | topFrame = addPage(i18n("ViewChange"),0,0); | 530 | topFrame = addPage(i18n("ViewChange"),0,0); |
531 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 531 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
532 | 532 | ||
533 | topLayout = new QGridLayout(topFrame,6,1); | 533 | topLayout = new QGridLayout(topFrame,6,1); |
534 | topLayout->setSpacing(mSpacingHint); | 534 | topLayout->setSpacing(mSpacingHint); |
535 | topLayout->setMargin(mMarginHint); | 535 | topLayout->setMargin(mMarginHint); |
536 | ii = 0; | 536 | ii = 0; |
537 | 537 | ||
538 | #endif | 538 | #endif |
539 | 539 | ||
540 | dummy = | 540 | dummy = |
541 | addWidBool(i18n("Hold fullscreen on view change"), | 541 | addWidBool(i18n("Hold fullscreen on view change"), |
542 | &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame); | 542 | &(KOPrefs::instance()->mViewChangeHoldFullscreen),topFrame); |
543 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 543 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
544 | 544 | ||
545 | dummy = | 545 | dummy = |
546 | addWidBool(i18n("Hold non-fullscreen on view change"), | 546 | addWidBool(i18n("Hold non-fullscreen on view change"), |
547 | &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame); | 547 | &(KOPrefs::instance()->mViewChangeHoldNonFullscreen),topFrame); |
548 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 548 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
549 | 549 | ||
550 | 550 | ||
551 | 551 | ||
552 | KPrefsDialogWidBool *fullViewMonth = | 552 | KPrefsDialogWidBool *fullViewMonth = |
553 | addWidBool(i18n("Next days view uses full window"), | 553 | addWidBool(i18n("Next days view uses full window"), |
554 | &(KOPrefs::instance()->mFullViewMonth),topFrame); | 554 | &(KOPrefs::instance()->mFullViewMonth),topFrame); |
555 | topLayout->addWidget(fullViewMonth->checkBox(),ii++,0); | 555 | topLayout->addWidget(fullViewMonth->checkBox(),ii++,0); |
556 | 556 | ||
557 | 557 | ||
558 | KPrefsDialogWidBool *fullViewTodo = | 558 | KPrefsDialogWidBool *fullViewTodo = |
559 | addWidBool(i18n("Event list view uses full window"), | 559 | addWidBool(i18n("Event list view uses full window"), |
560 | &(KOPrefs::instance()->mFullViewTodo),topFrame); | 560 | &(KOPrefs::instance()->mFullViewTodo),topFrame); |
561 | topLayout->addWidget(fullViewTodo->checkBox(),ii++,0); | 561 | topLayout->addWidget(fullViewTodo->checkBox(),ii++,0); |
562 | dummy = | 562 | dummy = |
563 | addWidBool(i18n("Listview uses monthly timespan"), | 563 | addWidBool(i18n("Listview uses monthly timespan"), |
564 | &(KOPrefs::instance()->mListViewMonthTimespan),topFrame); | 564 | &(KOPrefs::instance()->mListViewMonthTimespan),topFrame); |
565 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 565 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
566 | dummy = | 566 | dummy = |
567 | addWidBool(i18n("Highlight selection in Time Edit"), | 567 | addWidBool(i18n("Highlight selection in Time Edit"), |
568 | &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame); | 568 | &(KOPrefs::instance()->mHightlightDateTimeEdit),topFrame); |
569 | topLayout->addWidget( dummy->checkBox(), ii++,0); | 569 | topLayout->addWidget( dummy->checkBox(), ii++,0); |
570 | 570 | ||
571 | KPrefsDialogWidBool *dailyRecur = | 571 | KPrefsDialogWidBool *dailyRecur = |
572 | addWidBool(i18n("Show events that recur daily in date nav."), | 572 | addWidBool(i18n("Show events that recur daily in date nav."), |
573 | &(KOPrefs::instance()->mDailyRecur),topFrame); | 573 | &(KOPrefs::instance()->mDailyRecur),topFrame); |
574 | topLayout->addWidget(dailyRecur->checkBox(),ii++,0); | 574 | topLayout->addWidget(dailyRecur->checkBox(),ii++,0); |
575 | 575 | ||
576 | KPrefsDialogWidBool *weeklyRecur = | 576 | KPrefsDialogWidBool *weeklyRecur = |
577 | addWidBool(i18n("Show ev. that recur weekly in date nav."), | 577 | addWidBool(i18n("Show ev. that recur weekly in date nav."), |
578 | &(KOPrefs::instance()->mWeeklyRecur),topFrame); | 578 | &(KOPrefs::instance()->mWeeklyRecur),topFrame); |
579 | topLayout->addWidget(weeklyRecur->checkBox(),ii++,0); | 579 | topLayout->addWidget(weeklyRecur->checkBox(),ii++,0); |
580 | 580 | ||
581 | #ifdef DESKTOP_VERSION | 581 | #ifdef DESKTOP_VERSION |
582 | KPrefsDialogWidBool *enableToolTips = | 582 | KPrefsDialogWidBool *enableToolTips = |
583 | addWidBool(i18n("Enable tooltips displaying summary of ev."), | 583 | addWidBool(i18n("Enable tooltips displaying summary of ev."), |
584 | &(KOPrefs::instance()->mEnableToolTips),topFrame); | 584 | &(KOPrefs::instance()->mEnableToolTips),topFrame); |
585 | topLayout->addWidget(enableToolTips->checkBox(),ii++,0); | 585 | topLayout->addWidget(enableToolTips->checkBox(),ii++,0); |
586 | #endif | 586 | #endif |
587 | // ********************************************************* | 587 | // ********************************************************* |
588 | 588 | ||
589 | topFrame = addPage(i18n("Agenda View"),0,0); | 589 | topFrame = addPage(i18n("Agenda View"),0,0); |
590 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 590 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
591 | 591 | ||
592 | topLayout = new QGridLayout(topFrame,5,1); | 592 | topLayout = new QGridLayout(topFrame,5,1); |
593 | topLayout->setSpacing(mSpacingHint); | 593 | topLayout->setSpacing(mSpacingHint); |
594 | topLayout->setMargin(mMarginHint); | 594 | topLayout->setMargin(mMarginHint); |
595 | ii = 0; | 595 | ii = 0; |
596 | 596 | ||
597 | 597 | ||
598 | dummy = | 598 | dummy = |
599 | addWidBool(i18n("Show time in agenda items"), | 599 | addWidBool(i18n("Show time in agenda items"), |
600 | &(KOPrefs::instance()->mShowTimeInAgenda),topFrame); | 600 | &(KOPrefs::instance()->mShowTimeInAgenda),topFrame); |
601 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 601 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
602 | 602 | ||
603 | dummy = | 603 | dummy = |
604 | addWidBool(i18n("Highlight current day in agenda"), | 604 | addWidBool(i18n("Highlight current day in agenda"), |
605 | &(KOPrefs::instance()->mHighlightCurrentDay),topFrame); | 605 | &(KOPrefs::instance()->mHighlightCurrentDay),topFrame); |
606 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 606 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
607 | 607 | ||
608 | dummy = | 608 | dummy = |
609 | addWidBool(i18n("Use light color for highlight current day"), | 609 | addWidBool(i18n("Use light color for highlight current day"), |
610 | &(KOPrefs::instance()->mUseHighlightLightColor),topFrame); | 610 | &(KOPrefs::instance()->mUseHighlightLightColor),topFrame); |
611 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 611 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
612 | 612 | ||
613 | 613 | ||
614 | KPrefsDialogWidBool *marcusBainsEnabled = | 614 | KPrefsDialogWidBool *marcusBainsEnabled = |
615 | addWidBool(i18n("Show current time"), | 615 | addWidBool(i18n("Show current time"), |
616 | &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame); | 616 | &(KOPrefs::instance()->mMarcusBainsEnabled),topFrame); |
617 | topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0); | 617 | topLayout->addWidget(marcusBainsEnabled->checkBox(),ii++,0); |
618 | 618 | ||
619 | 619 | ||
620 | dummy = | 620 | dummy = |
621 | addWidBool(i18n("Set agenda to DayBeginsAt on change"), | 621 | addWidBool(i18n("Set agenda to DayBeginsAt on change"), |
622 | &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame); | 622 | &(KOPrefs::instance()->mSetTimeToDayStartAt),topFrame); |
623 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 623 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
624 | 624 | ||
625 | dummy = | 625 | dummy = |
626 | addWidBool(i18n("Set agenda to current time on change"), | 626 | addWidBool(i18n("Set agenda to current time on change"), |
627 | &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame); | 627 | &(KOPrefs::instance()->mCenterOnCurrentTime),topFrame); |
628 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 628 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
629 | 629 | ||
630 | 630 | ||
631 | dummy = | 631 | dummy = |
632 | addWidBool(i18n("Allday Agenda view shows todos"), | 632 | addWidBool(i18n("Allday Agenda view shows todos"), |
633 | &(KOPrefs::instance()->mShowTodoInAgenda),topFrame); | 633 | &(KOPrefs::instance()->mShowTodoInAgenda),topFrame); |
634 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 634 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
635 | 635 | ||
636 | 636 | ||
637 | 637 | ||
638 | dummy = | 638 | dummy = |
639 | addWidBool(i18n("Agenda view shows completed todos"), | 639 | addWidBool(i18n("Agenda view shows completed todos"), |
640 | &(KOPrefs::instance()->mShowCompletedTodoInAgenda),topFrame); | 640 | &(KOPrefs::instance()->mShowCompletedTodoInAgenda),topFrame); |
641 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 641 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
642 | 642 | ||
643 | 643 | ||
644 | 644 | ||
645 | 645 | ||
646 | 646 | ||
647 | topFrame = addPage(i18n("Month View"),0,0); | 647 | topFrame = addPage(i18n("Month View"),0,0); |
648 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 648 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
649 | 649 | ||
650 | topLayout = new QGridLayout(topFrame,5,1); | 650 | topLayout = new QGridLayout(topFrame,5,1); |
651 | topLayout->setSpacing(mSpacingHint); | 651 | topLayout->setSpacing(mSpacingHint); |
652 | topLayout->setMargin(mMarginHint); | 652 | topLayout->setMargin(mMarginHint); |
653 | ii = 0; | 653 | ii = 0; |
654 | QLabel *lab; | 654 | QLabel *lab; |
655 | QHBox *habo = new QHBox( topFrame ); | 655 | QHBox *habo = new QHBox( topFrame ); |
656 | if ( QApplication::desktop()->width() <= 480 ) { | 656 | if ( QApplication::desktop()->width() <= 480 ) { |
657 | lab = new QLabel ( i18n("Show events that recur "), topFrame ); | 657 | lab = new QLabel ( i18n("Show events that recur "), topFrame ); |
658 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); | 658 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); |
659 | ii++; | 659 | ii++; |
660 | } else { | 660 | } else { |
661 | new QLabel ( i18n("Show events that recur "), habo ); | 661 | new QLabel ( i18n("Show events that recur "), habo ); |
662 | } | 662 | } |
663 | dailyRecur = | 663 | dailyRecur = |
664 | addWidBool(i18n("daily"), | 664 | addWidBool(i18n("daily"), |
665 | &(KOPrefs::instance()->mMonthDailyRecur),habo); | 665 | &(KOPrefs::instance()->mMonthDailyRecur),habo); |
666 | // topLayout->addWidget(dailyRecur->checkBox(),ii++,0); | 666 | // topLayout->addWidget(dailyRecur->checkBox(),ii++,0); |
667 | 667 | ||
668 | weeklyRecur = | 668 | weeklyRecur = |
669 | addWidBool(i18n("weekly"), | 669 | addWidBool(i18n("weekly"), |
670 | &(KOPrefs::instance()->mMonthWeeklyRecur),habo); | 670 | &(KOPrefs::instance()->mMonthWeeklyRecur),habo); |
671 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); | 671 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); |
672 | ii++; | 672 | ii++; |
673 | 673 | ||
674 | 674 | ||
675 | habo = new QHBox( topFrame ); | 675 | habo = new QHBox( topFrame ); |
676 | if ( QApplication::desktop()->width() <= 480 ) { | 676 | if ( QApplication::desktop()->width() <= 480 ) { |
677 | lab = new QLabel (i18n("Show in every cell ") , topFrame ); | 677 | lab = new QLabel (i18n("Show in every cell ") , topFrame ); |
678 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); | 678 | topLayout->addMultiCellWidget(lab,ii, ii,0,1); |
679 | ii++; | 679 | ii++; |
680 | 680 | ||
681 | } else { | 681 | } else { |
682 | new QLabel ( i18n("Show in every cell "), habo ); | 682 | new QLabel ( i18n("Show in every cell "), habo ); |
683 | } | 683 | } |
684 | weeklyRecur = | 684 | weeklyRecur = |
685 | addWidBool(i18n("short month"), | 685 | addWidBool(i18n("short month"), |
686 | &(KOPrefs::instance()->mMonthShowShort),habo); | 686 | &(KOPrefs::instance()->mMonthShowShort),habo); |
687 | weeklyRecur = | 687 | weeklyRecur = |
688 | addWidBool(i18n("icons"), | 688 | addWidBool(i18n("icons"), |
689 | &(KOPrefs::instance()->mMonthShowIcons),habo); | 689 | &(KOPrefs::instance()->mMonthShowIcons),habo); |
690 | weeklyRecur = | 690 | weeklyRecur = |
691 | addWidBool(i18n("times"), | 691 | addWidBool(i18n("times"), |
692 | &(KOPrefs::instance()->mMonthShowTimes),habo); | 692 | &(KOPrefs::instance()->mMonthShowTimes),habo); |
693 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); | 693 | topLayout->addMultiCellWidget(habo,ii, ii,0,1); |
694 | ii++; | 694 | ii++; |
695 | #ifdef DESKTOP_VERSION | 695 | #ifdef DESKTOP_VERSION |
696 | KPrefsDialogWidBool *enableMonthScroll = | 696 | KPrefsDialogWidBool *enableMonthScroll = |
697 | addWidBool(i18n("Enable scrollbars in month view cells"), | 697 | addWidBool(i18n("Enable scrollbars in month view cells"), |
698 | &(KOPrefs::instance()->mEnableMonthScroll),topFrame); | 698 | &(KOPrefs::instance()->mEnableMonthScroll),topFrame); |
699 | topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0); | 699 | topLayout->addWidget(enableMonthScroll->checkBox(),ii++,0); |
700 | #endif | 700 | #endif |
701 | dummy = | 701 | dummy = |
702 | addWidBool(i18n("Week view mode uses bigger font"), | 702 | addWidBool(i18n("Week view mode uses bigger font"), |
703 | &(KOPrefs::instance()->mMonthViewUsesBigFont),topFrame); | 703 | &(KOPrefs::instance()->mMonthViewUsesBigFont),topFrame); |
704 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 704 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
705 | dummy = | 705 | dummy = |
706 | addWidBool(i18n("Show Sat/Sun together"), | 706 | addWidBool(i18n("Show Sat/Sun together"), |
707 | &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame); | 707 | &(KOPrefs::instance()->mMonthViewSatSunTog),topFrame); |
708 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 708 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
709 | 709 | ||
710 | KPrefsDialogWidBool *coloredCategoriesInMonthView = | 710 | KPrefsDialogWidBool *coloredCategoriesInMonthView = |
711 | addWidBool(i18n("Month view uses category colors"), | 711 | addWidBool(i18n("Month view uses category colors"), |
712 | &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame); | 712 | &(KOPrefs::instance()->mMonthViewUsesCategoryColor),topFrame); |
713 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); | 713 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); |
714 | 714 | ||
715 | dummy = | 715 | dummy = |
716 | addWidBool(i18n("Category colors are applied to text"), | 716 | addWidBool(i18n("Category colors are applied to text"), |
717 | &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame); | 717 | &(KOPrefs::instance()->mMonthViewUsesForegroundColor),topFrame); |
718 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 718 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
719 | 719 | ||
720 | 720 | ||
721 | 721 | ||
722 | if ( QApplication::desktop()->height() <= 240 ) { | 722 | if ( QApplication::desktop()->height() <= 240 ) { |
723 | topFrame = addPage(i18n("Month View") +" 2",0,0); | 723 | topFrame = addPage(i18n("Month View") +" 2",0,0); |
724 | topLayout = new QGridLayout(topFrame,4,1); | 724 | topLayout = new QGridLayout(topFrame,4,1); |
725 | topLayout->setSpacing(2); | 725 | topLayout->setSpacing(2); |
726 | topLayout->setMargin(1); | 726 | topLayout->setMargin(1); |
727 | ii = 0; | 727 | ii = 0; |
728 | } | 728 | } |
729 | 729 | ||
730 | 730 | ||
731 | coloredCategoriesInMonthView = | 731 | coloredCategoriesInMonthView = |
732 | addWidBool(i18n("Month view uses day colors"), | 732 | addWidBool(i18n("Month view uses day colors"), |
733 | &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame); | 733 | &(KOPrefs::instance()->mMonthViewUsesDayColors),topFrame); |
734 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); | 734 | topLayout->addWidget(coloredCategoriesInMonthView->checkBox(),ii++,0); |
735 | 735 | ||
736 | KPrefsDialogWidColor *holidayColor = | 736 | KPrefsDialogWidColor *holidayColor = |
737 | addWidColor(i18n("Day color odd months"), | 737 | addWidColor(i18n("Day color odd months"), |
738 | &(KOPrefs::instance()->mMonthViewOddColor),topFrame); | 738 | &(KOPrefs::instance()->mMonthViewOddColor),topFrame); |
739 | topLayout->addWidget(holidayColor->label(),ii,0); | 739 | topLayout->addWidget(holidayColor->label(),ii,0); |
740 | topLayout->addWidget(holidayColor->button(),ii++,1); | 740 | topLayout->addWidget(holidayColor->button(),ii++,1); |
741 | 741 | ||
742 | holidayColor = | 742 | holidayColor = |
743 | addWidColor(i18n("Day color even months"), | 743 | addWidColor(i18n("Day color even months"), |
744 | &(KOPrefs::instance()->mMonthViewEvenColor),topFrame); | 744 | &(KOPrefs::instance()->mMonthViewEvenColor),topFrame); |
745 | topLayout->addWidget(holidayColor->label(),ii,0); | 745 | topLayout->addWidget(holidayColor->label(),ii,0); |
746 | topLayout->addWidget(holidayColor->button(),ii++,1); | 746 | topLayout->addWidget(holidayColor->button(),ii++,1); |
747 | 747 | ||
748 | 748 | ||
749 | holidayColor = | 749 | holidayColor = |
750 | addWidColor(i18n("Color for Sundays + category \"Holiday\""), | 750 | addWidColor(i18n("Color for Sundays + category \"Holiday\""), |
751 | &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame); | 751 | &(KOPrefs::instance()->mMonthViewHolidayColor),topFrame); |
752 | topLayout->addWidget(holidayColor->label(),ii,0); | 752 | topLayout->addWidget(holidayColor->label(),ii,0); |
753 | topLayout->addWidget(holidayColor->button(),ii++,1); | 753 | topLayout->addWidget(holidayColor->button(),ii++,1); |
754 | // *********************** What'sNext View | 754 | // *********************** What'sNext View |
755 | topFrame = addPage(i18n("What's Next View"),0,0); | 755 | topFrame = addPage(i18n("What's Next View"),0,0); |
756 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 756 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
757 | 757 | ||
758 | topLayout = new QGridLayout(topFrame,4,1); | 758 | topLayout = new QGridLayout(topFrame,4,1); |
759 | topLayout->setSpacing(mSpacingHint); | 759 | topLayout->setSpacing(mSpacingHint); |
760 | topLayout->setMargin(mMarginHint); | 760 | topLayout->setMargin(mMarginHint); |
761 | ii = 0; | 761 | ii = 0; |
762 | 762 | ||
763 | 763 | ||
764 | QHBox* hdummy = new QHBox(topFrame); | 764 | QHBox* hdummy = new QHBox(topFrame); |
765 | new QLabel(i18n("Days in What's Next:"),hdummy); | 765 | new QLabel(i18n("Days in What's Next:"),hdummy); |
766 | mWhatsNextSpin = new QSpinBox(1,14,1,hdummy); | 766 | mWhatsNextSpin = new QSpinBox(1,14,1,hdummy); |
767 | 767 | ||
768 | topLayout->addWidget(hdummy,ii++,0); | 768 | topLayout->addWidget(hdummy,ii++,0); |
769 | 769 | ||
770 | QHBox *prioBox = new QHBox(topFrame); | 770 | QHBox *prioBox = new QHBox(topFrame); |
771 | // intervalBox->setSpacing(mSpacingHint); | 771 | // intervalBox->setSpacing(mSpacingHint); |
772 | topLayout->addWidget(prioBox,ii++,0); | 772 | topLayout->addWidget(prioBox,ii++,0); |
773 | 773 | ||
774 | QLabel *prioLabel = new QLabel(i18n("Number of max.displayed todo prios:"), prioBox); | 774 | QLabel *prioLabel = new QLabel(i18n("Number of max.displayed todo prios:"), prioBox); |
775 | mPrioSpin = new QSpinBox(0,5,1,prioBox); | 775 | mPrioSpin = new QSpinBox(0,5,1,prioBox); |
776 | if ( QApplication::desktop()->width() < 300 ) | 776 | if ( QApplication::desktop()->width() < 300 ) |
777 | mPrioSpin->setFixedWidth( 40 ); | 777 | mPrioSpin->setFixedWidth( 40 ); |
778 | 778 | ||
779 | KPrefsDialogWidBool *passwdk = | 779 | KPrefsDialogWidBool *passwdk = |
780 | 780 | ||
781 | addWidBool(i18n("Show events that are done"), | 781 | addWidBool(i18n("Show events that are done"), |
782 | &(KOPrefs::instance()->mWNViewShowsPast),topFrame); | 782 | &(KOPrefs::instance()->mWNViewShowsPast),topFrame); |
783 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 783 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
784 | passwdk = | 784 | passwdk = |
785 | addWidBool(i18n("Show parent To-Do's"), | 785 | addWidBool(i18n("Show parent To-Do's"), |
786 | &(KOPrefs::instance()->mWNViewShowsParents),topFrame); | 786 | &(KOPrefs::instance()->mWNViewShowsParents),topFrame); |
787 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 787 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
788 | 788 | ||
789 | passwdk = | 789 | passwdk = |
790 | addWidBool(i18n("Show location"), | 790 | addWidBool(i18n("Show location"), |
791 | &(KOPrefs::instance()->mWNViewShowLocation),topFrame); | 791 | &(KOPrefs::instance()->mWNViewShowLocation),topFrame); |
792 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 792 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
793 | 793 | ||
794 | 794 | ||
795 | passwdk = | 795 | passwdk = |
796 | addWidBool(i18n("Use short date in WN+Event view"), | 796 | addWidBool(i18n("Use short date in WN+Event view"), |
797 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); | 797 | &(KOPrefs::instance()->mShortDateInViewer),topFrame); |
798 | topLayout->addWidget(passwdk->checkBox(), ii++,0); | 798 | topLayout->addWidget(passwdk->checkBox(), ii++,0); |
799 | 799 | ||
800 | 800 | ||
801 | 801 | ||
802 | 802 | ||
803 | // *********************** Todo View | 803 | // *********************** Todo View |
804 | 804 | ||
805 | topFrame = addPage(i18n("Todo View"),0,0); | 805 | topFrame = addPage(i18n("Todo View"),0,0); |
806 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 806 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
807 | 807 | ||
808 | topLayout = new QGridLayout(topFrame,4,1); | 808 | topLayout = new QGridLayout(topFrame,4,1); |
809 | topLayout->setSpacing(mSpacingHint); | 809 | topLayout->setSpacing(mSpacingHint); |
810 | topLayout->setMargin(mMarginHint); | 810 | topLayout->setMargin(mMarginHint); |
811 | ii = 0; | 811 | ii = 0; |
812 | dummy = | 812 | dummy = |
813 | addWidBool(i18n("Hide not running Todos in To-do view"), | 813 | addWidBool(i18n("Hide not running Todos in To-do view"), |
814 | &(KOPrefs::instance()->mHideNonStartedTodos),topFrame); | 814 | &(KOPrefs::instance()->mHideNonStartedTodos),topFrame); |
815 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 815 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
816 | 816 | ||
817 | 817 | ||
818 | KPrefsDialogWidBool *showCompletedTodo = | 818 | KPrefsDialogWidBool *showCompletedTodo = |
819 | addWidBool(i18n("To-do view shows completed Todos"), | 819 | addWidBool(i18n("To-do view shows completed Todos"), |
820 | &(KOPrefs::instance()->mShowCompletedTodo),topFrame); | 820 | &(KOPrefs::instance()->mShowCompletedTodo),topFrame); |
821 | topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0); | 821 | topLayout->addWidget(showCompletedTodo->checkBox(),ii++,0); |
822 | dummy = | 822 | dummy = |
823 | addWidBool(i18n("To-do view shows complete as 'xx %'"), | 823 | addWidBool(i18n("To-do view shows complete as 'xx %'"), |
824 | &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame); | 824 | &(KOPrefs::instance()->mTodoViewShowsPercentage),topFrame); |
825 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 825 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
826 | 826 | ||
827 | dummy = | 827 | dummy = |
828 | addWidBool(i18n("Small To-do view uses smaller font"), | 828 | addWidBool(i18n("Small To-do view uses smaller font"), |
829 | &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame); | 829 | &(KOPrefs::instance()->mTodoViewUsesSmallFont),topFrame); |
830 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 830 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
831 | 831 | ||
832 | 832 | ||
833 | 833 | ||
834 | dummy = | 834 | dummy = |
835 | addWidBool(i18n("Todo view uses category colors"), | 835 | addWidBool(i18n("Todo view uses category colors"), |
836 | &(KOPrefs::instance()->mTodoViewUsesCatColors),topFrame); | 836 | &(KOPrefs::instance()->mTodoViewUsesCatColors),topFrame); |
837 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 837 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
838 | 838 | ||
839 | 839 | ||
840 | QWidget* wid = new QWidget( topFrame ); | 840 | QWidget* wid = new QWidget( topFrame ); |
841 | // Todo run today color | 841 | // Todo run today color |
842 | KPrefsDialogWidColor *todoRunColor = | 842 | KPrefsDialogWidColor *todoRunColor = |
843 | addWidColor(i18n("Color for running todos:"), | 843 | addWidColor(i18n("Color for running todos:"), |
844 | &(KOPrefs::instance()->mTodoRunColor),wid); | 844 | &(KOPrefs::instance()->mTodoRunColor),wid); |
845 | QHBoxLayout *widLayout = new QHBoxLayout(wid); | 845 | QHBoxLayout *widLayout = new QHBoxLayout(wid); |
846 | widLayout->addWidget( todoRunColor->label() ); | 846 | widLayout->addWidget( todoRunColor->label() ); |
847 | widLayout->addWidget( todoRunColor->button() ); | 847 | widLayout->addWidget( todoRunColor->button() ); |
848 | topLayout->addWidget(wid,ii++,0); | 848 | topLayout->addWidget(wid,ii++,0); |
849 | 849 | ||
850 | wid = new QWidget( topFrame ); | 850 | wid = new QWidget( topFrame ); |
851 | // Todo due today color | 851 | // Todo due today color |
852 | KPrefsDialogWidColor *todoDueTodayColor = | 852 | KPrefsDialogWidColor *todoDueTodayColor = |
853 | addWidColor(i18n("Todo due today color:"), | 853 | addWidColor(i18n("Todo due today color:"), |
854 | &(KOPrefs::instance()->mTodoDueTodayColor),wid); | 854 | &(KOPrefs::instance()->mTodoDueTodayColor),wid); |
855 | widLayout = new QHBoxLayout(wid); | 855 | widLayout = new QHBoxLayout(wid); |
856 | widLayout->addWidget( todoDueTodayColor->label() ); | 856 | widLayout->addWidget( todoDueTodayColor->label() ); |
857 | widLayout->addWidget( todoDueTodayColor->button() ); | 857 | widLayout->addWidget( todoDueTodayColor->button() ); |
858 | topLayout->addWidget(wid,ii++,0); | 858 | topLayout->addWidget(wid,ii++,0); |
859 | //topLayout->addWidget(todoDueTodayColor->button(),ii++,1); | 859 | //topLayout->addWidget(todoDueTodayColor->button(),ii++,1); |
860 | 860 | ||
861 | // Todo overdue color | 861 | // Todo overdue color |
862 | wid = new QWidget( topFrame ); | 862 | wid = new QWidget( topFrame ); |
863 | widLayout = new QHBoxLayout(wid); | 863 | widLayout = new QHBoxLayout(wid); |
864 | KPrefsDialogWidColor *todoOverdueColor = | 864 | KPrefsDialogWidColor *todoOverdueColor = |
865 | addWidColor(i18n("Todo overdue color:"), | 865 | addWidColor(i18n("Todo overdue color:"), |
866 | &(KOPrefs::instance()->mTodoOverdueColor),wid); | 866 | &(KOPrefs::instance()->mTodoOverdueColor),wid); |
867 | widLayout->addWidget(todoOverdueColor->label()); | 867 | widLayout->addWidget(todoOverdueColor->label()); |
868 | widLayout->addWidget(todoOverdueColor->button()); | 868 | widLayout->addWidget(todoOverdueColor->button()); |
869 | topLayout->addWidget(wid,ii++,0); | 869 | topLayout->addWidget(wid,ii++,0); |
870 | 870 | ||
871 | dummy = | 871 | dummy = |
872 | addWidBool(i18n("Colors are applied to text"), | 872 | addWidBool(i18n("Colors are applied to text"), |
873 | &(KOPrefs::instance()->mTodoViewUsesForegroundColor),topFrame); | 873 | &(KOPrefs::instance()->mTodoViewUsesForegroundColor),topFrame); |
874 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 874 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
875 | 875 | ||
876 | 876 | ||
877 | 877 | ||
878 | topFrame = addPage(i18n("View Options"),0,0); | 878 | topFrame = addPage(i18n("View Options"),0,0); |
879 | 879 | ||
880 | topLayout = new QGridLayout(topFrame,4,1); | 880 | topLayout = new QGridLayout(topFrame,4,1); |
881 | topLayout->setSpacing(mSpacingHint); | 881 | topLayout->setSpacing(mSpacingHint); |
882 | topLayout->setMargin(mMarginHint); | 882 | topLayout->setMargin(mMarginHint); |
883 | ii = 0; | 883 | ii = 0; |
884 | 884 | ||
885 | dummy = | 885 | dummy = |
886 | addWidBool(i18n("Show Sync Events"), | 886 | addWidBool(i18n("Show Sync Events"), |
887 | &(KOPrefs::instance()->mShowSyncEvents),topFrame); | 887 | &(KOPrefs::instance()->mShowSyncEvents),topFrame); |
888 | topLayout->addWidget(dummy->checkBox(), ii++,0); | 888 | topLayout->addWidget(dummy->checkBox(), ii++,0); |
889 | 889 | ||
890 | lab = new QLabel( i18n("Show in todo/event viewer:"), topFrame); | 890 | lab = new QLabel( i18n("Show in todo/event viewer:"), topFrame); |
891 | topLayout->addWidget(lab ,ii++,0); | 891 | topLayout->addWidget(lab ,ii++,0); |
892 | 892 | ||
893 | dummy = addWidBool(i18n("Details"), | 893 | dummy = addWidBool(i18n("Details"), |
894 | &(KOPrefs::instance()->mEVshowDetails),topFrame); | 894 | &(KOPrefs::instance()->mEVshowDetails),topFrame); |
895 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 895 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
896 | dummy = addWidBool(i18n("Created time"), | 896 | dummy = addWidBool(i18n("Created time"), |
897 | &(KOPrefs::instance()->mEVshowCreated),topFrame); | 897 | &(KOPrefs::instance()->mEVshowCreated),topFrame); |
898 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 898 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
899 | dummy = addWidBool(i18n("Last modified time"), | 899 | dummy = addWidBool(i18n("Last modified time"), |
900 | &(KOPrefs::instance()->mEVshowChanged),topFrame); | 900 | &(KOPrefs::instance()->mEVshowChanged),topFrame); |
901 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 901 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
902 | 902 | ||
903 | 903 | ||
904 | lab = new QLabel( i18n("Show in What'sThis quick overview:"), topFrame); | 904 | lab = new QLabel( i18n("Show in What'sThis quick overview:"), topFrame); |
905 | topLayout->addWidget(lab ,ii++,0); | 905 | topLayout->addWidget(lab ,ii++,0); |
906 | 906 | ||
907 | dummy = addWidBool(i18n("Details"), | 907 | dummy = addWidBool(i18n("Details"), |
908 | &(KOPrefs::instance()->mWTshowDetails),topFrame); | 908 | &(KOPrefs::instance()->mWTshowDetails),topFrame); |
909 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 909 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
910 | dummy = addWidBool(i18n("Created time"), | 910 | dummy = addWidBool(i18n("Created time"), |
911 | &(KOPrefs::instance()->mWTshowCreated),topFrame); | 911 | &(KOPrefs::instance()->mWTshowCreated),topFrame); |
912 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 912 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
913 | dummy = addWidBool(i18n("Last modified time"), | 913 | dummy = addWidBool(i18n("Last modified time"), |
914 | &(KOPrefs::instance()->mWTshowChanged),topFrame); | 914 | &(KOPrefs::instance()->mWTshowChanged),topFrame); |
915 | topLayout->addWidget(dummy->checkBox(),ii++,0); | 915 | topLayout->addWidget(dummy->checkBox(),ii++,0); |
916 | 916 | ||
917 | 917 | ||
918 | topFrame = addPage(i18n("Alarm"),0,0); | 918 | topFrame = addPage(i18n("Alarm"),0,0); |
919 | // DesktopIcon("viewmag",KIcon::SizeMedium)); | 919 | // DesktopIcon("viewmag",KIcon::SizeMedium)); |
920 | 920 | ||
921 | topLayout = new QGridLayout(topFrame,2,1); | 921 | topLayout = new QGridLayout(topFrame,2,1); |
922 | topLayout->setSpacing(mSpacingHint); | 922 | topLayout->setSpacing(mSpacingHint); |
923 | topLayout->setMargin(mMarginHint); | 923 | topLayout->setMargin(mMarginHint); |
924 | int iii = 0; | 924 | int iii = 0; |
925 | 925 | ||
926 | dummy = | 926 | dummy = |
927 | addWidBool(i18n("Use internal alarm notification"), | 927 | addWidBool(i18n("Use internal alarm notification"), |
928 | &(KOPrefs::instance()->mUseInternalAlarmNotification),topFrame); | 928 | &(KOPrefs::instance()->mUseInternalAlarmNotification),topFrame); |
929 | topLayout->addWidget(dummy->checkBox(),iii++,0); | 929 | topLayout->addWidget(dummy->checkBox(),iii++,0); |
930 | 930 | ||
931 | if ( QApplication::desktop()->height() > 240 ) { | 931 | if ( QApplication::desktop()->height() > 240 ) { |
932 | 932 | ||
933 | 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); | 933 | 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); |
934 | 934 | ||
935 | topLayout->addWidget(lab ,iii++,0); | 935 | topLayout->addWidget(lab ,iii++,0); |
936 | } | 936 | } |
937 | #ifndef DESKTOP_VERSION | 937 | #ifndef DESKTOP_VERSION |
938 | lab->setAlignment( AlignLeft|WordBreak|AlignTop); | 938 | lab->setAlignment( AlignLeft|WordBreak|AlignTop); |
939 | #else | 939 | #else |
940 | lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); | 940 | lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); |
941 | lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); | 941 | lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); |
942 | #endif | 942 | #endif |
943 | 943 | ||
944 | QHBox* dummyBox = new QHBox(topFrame); | 944 | QHBox* dummyBox = new QHBox(topFrame); |
945 | new QLabel(i18n("Play beeps count:"),dummyBox); | 945 | new QLabel(i18n("Play beeps count:"),dummyBox); |
946 | mAlarmPlayBeeps = new QSpinBox(0,500,1,dummyBox); | 946 | mAlarmPlayBeeps = new QSpinBox(0,500,1,dummyBox); |
947 | topLayout->addWidget(dummyBox,iii++,0); | 947 | topLayout->addWidget(dummyBox,iii++,0); |
948 | 948 | ||
949 | dummyBox = new QHBox(topFrame); | 949 | dummyBox = new QHBox(topFrame); |
950 | new QLabel(i18n("Beeps interval in sec:"),dummyBox); | 950 | new QLabel(i18n("Beeps interval in sec:"),dummyBox); |
951 | mAlarmBeepInterval = new QSpinBox(1,600,1,dummyBox); | 951 | mAlarmBeepInterval = new QSpinBox(1,600,1,dummyBox); |
952 | topLayout->addWidget(dummyBox,iii++,0); | 952 | topLayout->addWidget(dummyBox,iii++,0); |
953 | 953 | ||
954 | dummyBox = new QHBox(topFrame); | 954 | dummyBox = new QHBox(topFrame); |
955 | new QLabel(i18n("Default suspend time in min:"),dummyBox); | 955 | new QLabel(i18n("Default suspend time in min:"),dummyBox); |
956 | mAlarmSuspendTime = new QSpinBox(1,600,1,dummyBox); | 956 | mAlarmSuspendTime = new QSpinBox(1,600,1,dummyBox); |
957 | topLayout->addWidget(dummyBox,iii++,0); | 957 | topLayout->addWidget(dummyBox,iii++,0); |
958 | 958 | ||
959 | dummyBox = new QHBox(topFrame); | 959 | dummyBox = new QHBox(topFrame); |
960 | new QLabel(i18n("Auto suspend count:"),dummyBox); | 960 | new QLabel(i18n("Auto suspend count:"),dummyBox); |
961 | mAlarmSuspendCount = new QSpinBox(0,60,1,dummyBox); | 961 | mAlarmSuspendCount = new QSpinBox(0,60,1,dummyBox); |
962 | topLayout->addWidget(dummyBox,iii++,0); | 962 | topLayout->addWidget(dummyBox,iii++,0); |
963 | 963 | ||
964 | 964 | ||
965 | 965 | ||
966 | QHBox* hbo = new QHBox ( topFrame ); | 966 | QHBox* hbo = new QHBox ( topFrame ); |
967 | mDefaultAlarmFile = new QLineEdit(hbo); | 967 | mDefaultAlarmFile = new QLineEdit(hbo); |
968 | QPushButton * loadTemplate = new QPushButton(hbo); | 968 | QPushButton * loadTemplate = new QPushButton(hbo); |
969 | QPixmap icon; | 969 | QPixmap icon; |
970 | if ( QApplication::desktop()->width() < 321 ) | 970 | if ( QApplication::desktop()->width() < 321 ) |
971 | icon = SmallIcon("fileimport16"); | 971 | icon = SmallIcon("fileimport16"); |
972 | else | 972 | else |
973 | icon = SmallIcon("fileimport"); | 973 | icon = SmallIcon("fileimport"); |
974 | loadTemplate->setIconSet (icon ) ; | 974 | loadTemplate->setIconSet (icon ) ; |
975 | connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( selectSoundFile() ) ); | 975 | connect( loadTemplate, SIGNAL( clicked() ), this , SLOT( selectSoundFile() ) ); |
976 | int size = loadTemplate->sizeHint().height(); | 976 | int size = loadTemplate->sizeHint().height(); |
977 | loadTemplate->setFixedSize( size, size ); | 977 | loadTemplate->setFixedSize( size, size ); |
978 | //lab = new QLabel( i18n("This setting is useless for 5500 user!"), topFrame); | 978 | //lab = new QLabel( i18n("This setting is useless for 5500 user!"), topFrame); |
979 | // topLayout->addWidget(lab ,iii++,0); | 979 | // topLayout->addWidget(lab ,iii++,0); |
980 | lab = new QLabel( i18n("Alarm *.wav file for newly created alarm:"), topFrame); | 980 | lab = new QLabel( i18n("Alarm *.wav file for newly created alarm:"), topFrame); |
981 | topLayout->addWidget(lab ,iii++,0); | 981 | topLayout->addWidget(lab ,iii++,0); |
982 | topLayout->addWidget(hbo,iii++,0); | 982 | topLayout->addWidget(hbo,iii++,0); |
983 | // 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); | 983 | // 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); |
984 | 984 | ||
985 | // topLayout->addWidget(lab ,iii++,0); | 985 | // topLayout->addWidget(lab ,iii++,0); |
986 | // #ifndef DESKTOP_VERSION | 986 | // #ifndef DESKTOP_VERSION |
987 | // lab->setAlignment( AlignLeft|WordBreak|AlignTop); | 987 | // lab->setAlignment( AlignLeft|WordBreak|AlignTop); |
988 | // #else | 988 | // #else |
989 | // lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); | 989 | // lab->setAlignment( AlignLeft|BreakAnywhere|WordBreak|AlignTop); |
990 | // lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); | 990 | // lab->setSizePolicy( QSizePolicy( QSizePolicy::Ignored , QSizePolicy::Ignored,true) ); |
991 | // #endif | 991 | // #endif |
992 | 992 | ||
993 | 993 | ||
994 | } | 994 | } |
995 | 995 | ||
996 | void KOPrefsDialog::selectSoundFile() | 996 | void KOPrefsDialog::selectSoundFile() |
997 | { | 997 | { |
998 | QString fileName = mDefaultAlarmFile->text(); | 998 | QString fileName = mDefaultAlarmFile->text(); |
999 | fileName = KFileDialog::getSaveFileName( mDefaultAlarmFile->text() , "Choose default alarm file", this ); | 999 | fileName = KFileDialog::getSaveFileName( mDefaultAlarmFile->text() , "Choose default alarm file", this ); |
1000 | if ( fileName.length() > 0 ) | 1000 | if ( fileName.length() > 0 ) |
1001 | mDefaultAlarmFile->setText( fileName ); | 1001 | mDefaultAlarmFile->setText( fileName ); |
1002 | } | 1002 | } |
1003 | void KOPrefsDialog::setupFontsTab() | 1003 | void KOPrefsDialog::setupFontsTab() |
1004 | { | 1004 | { |
1005 | 1005 | ||
1006 | QFrame *topFrame = addPage(i18n("Fonts"),0,0); | 1006 | QFrame *topFrame = addPage(i18n("Fonts"),0,0); |
1007 | // DesktopIcon("fonts",KIcon::SizeMedium)); | 1007 | // DesktopIcon("fonts",KIcon::SizeMedium)); |
1008 | 1008 | ||
1009 | QGridLayout *topLayout = new QGridLayout(topFrame,7,3); | 1009 | QGridLayout *topLayout = new QGridLayout(topFrame,7,3); |
1010 | topLayout->setSpacing(1); | 1010 | topLayout->setSpacing(1); |
1011 | topLayout->setMargin(3); | 1011 | topLayout->setMargin(3); |
1012 | KPrefsDialogWidFont * tVFont; | 1012 | KPrefsDialogWidFont * tVFont; |
1013 | int i = 0; | 1013 | int i = 0; |
1014 | KPrefsDialogWidFont *timeLabelsFont = | 1014 | KPrefsDialogWidFont *timeLabelsFont = |
1015 | addWidFont(i18n("23"),i18n("DateNavigator:(nr)"), | 1015 | addWidFont(i18n("23"),i18n("DateNavigator:(nr)"), |
1016 | &(KOPrefs::instance()->mDateNavigatorFont),topFrame); | 1016 | &(KOPrefs::instance()->mDateNavigatorFont),topFrame); |
1017 | topLayout->addWidget(timeLabelsFont->label(),i,0); | 1017 | topLayout->addWidget(timeLabelsFont->label(),i,0); |
1018 | topLayout->addWidget(timeLabelsFont->preview(),i,1); | 1018 | topLayout->addWidget(timeLabelsFont->preview(),i,1); |
1019 | topLayout->addWidget(timeLabelsFont->button(),i,2); | 1019 | topLayout->addWidget(timeLabelsFont->button(),i,2); |
1020 | ++i; | 1020 | ++i; |
1021 | 1021 | ||
1022 | 1022 | ||
1023 | timeLabelsFont = | 1023 | timeLabelsFont = |
1024 | addWidFont(i18n("Mon 15"),i18n("Date Labels:"), | 1024 | addWidFont(i18n("Mon 15"),i18n("Date Labels:"), |
1025 | &(KOPrefs::instance()->mTimeLabelsFont),topFrame); | 1025 | &(KOPrefs::instance()->mTimeLabelsFont),topFrame); |
1026 | topLayout->addWidget(timeLabelsFont->label(),i,0); | 1026 | topLayout->addWidget(timeLabelsFont->label(),i,0); |
1027 | topLayout->addWidget(timeLabelsFont->preview(),i,1); | 1027 | topLayout->addWidget(timeLabelsFont->preview(),i,1); |
1028 | topLayout->addWidget(timeLabelsFont->button(),i,2); | 1028 | topLayout->addWidget(timeLabelsFont->button(),i,2); |
1029 | ++i; | 1029 | ++i; |
1030 | 1030 | ||
1031 | KPrefsDialogWidFont *timeBarFont = | 1031 | KPrefsDialogWidFont *timeBarFont = |
1032 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)),i18n("Time bar:"), | 1032 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)),i18n("Time bar:"), |
1033 | &(KOPrefs::instance()->mTimeBarFont),topFrame); | 1033 | &(KOPrefs::instance()->mTimeBarFont),topFrame); |
1034 | topLayout->addWidget(timeBarFont->label(),i,0); | 1034 | topLayout->addWidget(timeBarFont->label(),i,0); |
1035 | topLayout->addWidget(timeBarFont->preview(),i,1); | 1035 | topLayout->addWidget(timeBarFont->preview(),i,1); |
1036 | topLayout->addWidget(timeBarFont->button(),i,2); | 1036 | topLayout->addWidget(timeBarFont->button(),i,2); |
1037 | ++i; | 1037 | ++i; |
1038 | 1038 | ||
1039 | 1039 | ||
1040 | KPrefsDialogWidFont *marcusBainsFont = | 1040 | KPrefsDialogWidFont *marcusBainsFont = |
1041 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34,23)),i18n("M. Bains line:"), | 1041 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34,23)),i18n("M. Bains line:"), |
1042 | &(KOPrefs::instance()->mMarcusBainsFont),topFrame); | 1042 | &(KOPrefs::instance()->mMarcusBainsFont),topFrame); |
1043 | topLayout->addWidget(marcusBainsFont->label(),i,0); | 1043 | topLayout->addWidget(marcusBainsFont->label(),i,0); |
1044 | topLayout->addWidget(marcusBainsFont->preview(),i,1); | 1044 | topLayout->addWidget(marcusBainsFont->preview(),i,1); |
1045 | topLayout->addWidget(marcusBainsFont->button(),i,2); | 1045 | topLayout->addWidget(marcusBainsFont->button(),i,2); |
1046 | ++i; | 1046 | ++i; |
1047 | 1047 | ||
1048 | tVFont = | 1048 | tVFont = |
1049 | addWidFont(i18n("Summary"),i18n("Event Viewer:"), | 1049 | addWidFont(i18n("Summary"),i18n("Event Viewer:"), |
1050 | &(KOPrefs::instance()->mEventViewFont),topFrame); | 1050 | &(KOPrefs::instance()->mEventViewFont),topFrame); |
1051 | topLayout->addWidget(tVFont->label(),i,0); | 1051 | topLayout->addWidget(tVFont->label(),i,0); |
1052 | topLayout->addWidget(tVFont->preview(),i,1); | 1052 | topLayout->addWidget(tVFont->preview(),i,1); |
1053 | topLayout->addWidget(tVFont->button(),i,2); | 1053 | topLayout->addWidget(tVFont->button(),i,2); |
1054 | ++i; | 1054 | ++i; |
1055 | 1055 | ||
1056 | 1056 | ||
1057 | 1057 | ||
1058 | tVFont = | 1058 | tVFont = |
1059 | addWidFont(i18n("Details"),i18n("EditorBox:"), | 1059 | addWidFont(i18n("Details"),i18n("EditorBox:"), |
1060 | &(KOPrefs::instance()->mEditBoxFont),topFrame); | 1060 | &(KOPrefs::instance()->mEditBoxFont),topFrame); |
1061 | topLayout->addWidget(tVFont->label(),i,0); | 1061 | topLayout->addWidget(tVFont->label(),i,0); |
1062 | topLayout->addWidget(tVFont->preview(),i,1); | 1062 | topLayout->addWidget(tVFont->preview(),i,1); |
1063 | topLayout->addWidget(tVFont->button(),i,2); | 1063 | topLayout->addWidget(tVFont->button(),i,2); |
1064 | ++i; | 1064 | ++i; |
1065 | 1065 | ||
1066 | 1066 | ||
1067 | 1067 | ||
1068 | topLayout->setColStretch(1,1); | 1068 | topLayout->setColStretch(1,1); |
1069 | topLayout->setRowStretch(4,1); | 1069 | topLayout->setRowStretch(4,1); |
1070 | 1070 | ||
1071 | 1071 | ||
1072 | i = 0; | 1072 | i = 0; |
1073 | topFrame = addPage(i18n("View Fonts"),0, | 1073 | topFrame = addPage(i18n("View Fonts"),0, |
1074 | DesktopIcon("fonts",KIcon::SizeMedium)); | 1074 | DesktopIcon("fonts",KIcon::SizeMedium)); |
1075 | 1075 | ||
1076 | topLayout = new QGridLayout(topFrame,7,3); | 1076 | topLayout = new QGridLayout(topFrame,7,3); |
1077 | topLayout->setSpacing(1); | 1077 | topLayout->setSpacing(1); |
1078 | topLayout->setMargin(3); | 1078 | topLayout->setMargin(3); |
1079 | 1079 | ||
1080 | tVFont = | 1080 | tVFont = |
1081 | addWidFont(i18n("Configure KO"),i18n("What's Next View:"), | 1081 | addWidFont(i18n("Configure KO"),i18n("What's Next View:"), |
1082 | &(KOPrefs::instance()->mWhatsNextFont),topFrame); | 1082 | &(KOPrefs::instance()->mWhatsNextFont),topFrame); |
1083 | topLayout->addWidget(tVFont->label(),i,0); | 1083 | topLayout->addWidget(tVFont->label(),i,0); |
1084 | topLayout->addWidget(tVFont->preview(),i,1); | 1084 | topLayout->addWidget(tVFont->preview(),i,1); |
1085 | topLayout->addWidget(tVFont->button(),i,2); | 1085 | topLayout->addWidget(tVFont->button(),i,2); |
1086 | ++i; | 1086 | ++i; |
1087 | KPrefsDialogWidFont *agendaViewFont = | 1087 | KPrefsDialogWidFont *agendaViewFont = |
1088 | addWidFont(i18n("Event text"),i18n("Agenda view:"), | 1088 | addWidFont(i18n("Event text"),i18n("Agenda view:"), |
1089 | &(KOPrefs::instance()->mAgendaViewFont),topFrame); | 1089 | &(KOPrefs::instance()->mAgendaViewFont),topFrame); |
1090 | topLayout->addWidget(agendaViewFont->label(),i,0); | 1090 | topLayout->addWidget(agendaViewFont->label(),i,0); |
1091 | topLayout->addWidget(agendaViewFont->preview(),i,1); | 1091 | topLayout->addWidget(agendaViewFont->preview(),i,1); |
1092 | topLayout->addWidget(agendaViewFont->button(),i,2); | 1092 | topLayout->addWidget(agendaViewFont->button(),i,2); |
1093 | ++i; | 1093 | ++i; |
1094 | 1094 | ||
1095 | 1095 | ||
1096 | KPrefsDialogWidFont *monthViewFont = | 1096 | KPrefsDialogWidFont *monthViewFont = |
1097 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)) + " " + i18n("Event"), | 1097 | addWidFont(KGlobal::locale()->formatTime(QTime(12,34)) + " " + i18n("Event"), |
1098 | i18n("Month view:"),&(KOPrefs::instance()->mMonthViewFont),topFrame); | 1098 | i18n("Month view:"),&(KOPrefs::instance()->mMonthViewFont),topFrame); |
1099 | topLayout->addWidget(monthViewFont->label(),i,0); | 1099 | topLayout->addWidget(monthViewFont->label(),i,0); |
1100 | topLayout->addWidget(monthViewFont->preview(),i,1); | 1100 | topLayout->addWidget(monthViewFont->preview(),i,1); |
1101 | topLayout->addWidget(monthViewFont->button(),i,2); | 1101 | topLayout->addWidget(monthViewFont->button(),i,2); |
1102 | ++i; | 1102 | ++i; |
1103 | 1103 | ||
1104 | 1104 | ||
1105 | KPrefsDialogWidFont *lVFont = | 1105 | KPrefsDialogWidFont *lVFont = |
1106 | addWidFont(i18n("Event"),i18n("List View:"), | 1106 | addWidFont(i18n("Event"),i18n("List View:"), |
1107 | &(KOPrefs::instance()->mListViewFont),topFrame); | 1107 | &(KOPrefs::instance()->mListViewFont),topFrame); |
1108 | topLayout->addWidget(lVFont->label(),i,0); | 1108 | topLayout->addWidget(lVFont->label(),i,0); |
1109 | topLayout->addWidget(lVFont->preview(),i,1); | 1109 | topLayout->addWidget(lVFont->preview(),i,1); |
1110 | topLayout->addWidget(lVFont->button(),i,2); | 1110 | topLayout->addWidget(lVFont->button(),i,2); |
1111 | ++i; | 1111 | ++i; |
1112 | 1112 | ||
1113 | 1113 | ||
1114 | tVFont = | 1114 | tVFont = |
1115 | addWidFont(i18n("ToDo"),i18n("ToDoView:"), | 1115 | addWidFont(i18n("ToDo"),i18n("ToDoView:"), |
1116 | &(KOPrefs::instance()->mTodoViewFont),topFrame); | 1116 | &(KOPrefs::instance()->mTodoViewFont),topFrame); |
1117 | topLayout->addWidget(tVFont->label(),i,0); | 1117 | topLayout->addWidget(tVFont->label(),i,0); |
1118 | topLayout->addWidget(tVFont->preview(),i,1); | 1118 | topLayout->addWidget(tVFont->preview(),i,1); |
1119 | topLayout->addWidget(tVFont->button(),i,2); | 1119 | topLayout->addWidget(tVFont->button(),i,2); |
1120 | ++i; | 1120 | ++i; |
1121 | 1121 | ||
1122 | 1122 | ||
1123 | tVFont = | 1123 | tVFont = |
1124 | addWidFont(i18n("Today"),i18n("JournalView:"), | 1124 | addWidFont(i18n("Today"),i18n("JournalView:"), |
1125 | &(KOPrefs::instance()->mJornalViewFont),topFrame); | 1125 | &(KOPrefs::instance()->mJornalViewFont),topFrame); |
1126 | topLayout->addWidget(tVFont->label(),i,0); | 1126 | topLayout->addWidget(tVFont->label(),i,0); |
1127 | topLayout->addWidget(tVFont->preview(),i,1); | 1127 | topLayout->addWidget(tVFont->preview(),i,1); |
1128 | topLayout->addWidget(tVFont->button(),i,2); | 1128 | topLayout->addWidget(tVFont->button(),i,2); |
1129 | ++i; | 1129 | ++i; |
1130 | 1130 | ||
1131 | 1131 | ||
1132 | 1132 | ||
1133 | 1133 | ||
1134 | topLayout->setColStretch(1,1); | 1134 | topLayout->setColStretch(1,1); |
1135 | topLayout->setRowStretch(4,1); | 1135 | topLayout->setRowStretch(4,1); |
1136 | 1136 | ||
1137 | 1137 | ||
1138 | 1138 | ||
1139 | 1139 | ||
1140 | } | 1140 | } |
1141 | 1141 | ||
1142 | void KOPrefsDialog::setupColorsTab() | 1142 | void KOPrefsDialog::setupColorsTab() |
1143 | { | 1143 | { |
1144 | QFrame *topFrame = addPage(i18n("Colors"),0,0); | 1144 | QFrame *topFrame = addPage(i18n("Colors"),0,0); |
1145 | // DesktopIcon("colorize",KIcon::SizeMedium)); | 1145 | // DesktopIcon("colorize",KIcon::SizeMedium)); |
1146 | 1146 | ||
1147 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); | 1147 | QGridLayout *topLayout = new QGridLayout(topFrame,5,2); |
1148 | // topLayout->setSpacing(mSpacingHint); | 1148 | // topLayout->setSpacing(mSpacingHint); |
1149 | // topLayout->setMargin(mMarginHint); | 1149 | // topLayout->setMargin(mMarginHint); |
1150 | 1150 | ||
1151 | topLayout->setSpacing(2); | 1151 | topLayout->setSpacing(2); |
1152 | topLayout->setMargin(3); | 1152 | topLayout->setMargin(3); |
1153 | 1153 | ||
1154 | int ii = 1; | 1154 | int ii = 1; |
1155 | QGroupBox *categoryGroup ; | 1155 | QGroupBox *categoryGroup ; |
1156 | 1156 | ||
1157 | categoryGroup = new QGroupBox(1,Vertical,i18n("Categories"), | 1157 | categoryGroup = new QGroupBox(1,Vertical,i18n("Categories"), |
1158 | topFrame); | 1158 | topFrame); |
1159 | topLayout->addMultiCellWidget(categoryGroup,0,0,0,1); | 1159 | topLayout->addMultiCellWidget(categoryGroup,0,0,0,1); |
1160 | 1160 | ||
1161 | mCategoryCombo = new QComboBox(categoryGroup); | 1161 | mCategoryCombo = new QComboBox(categoryGroup); |
1162 | mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories); | 1162 | mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories); |
1163 | connect(mCategoryCombo,SIGNAL(activated(int)),SLOT(updateCategoryColor())); | 1163 | connect(mCategoryCombo,SIGNAL(activated(int)),SLOT(updateCategoryColor())); |
1164 | 1164 | ||
1165 | mCategoryButton = new KColorButton(categoryGroup); | 1165 | mCategoryButton = new KColorButton(categoryGroup); |
1166 | connect(mCategoryButton,SIGNAL(changed(const QColor &)),SLOT(setCategoryColor())); | 1166 | connect(mCategoryButton,SIGNAL(changed(const QColor &)),SLOT(setCategoryColor())); |
1167 | updateCategoryColor(); | 1167 | updateCategoryColor(); |
1168 | 1168 | ||
1169 | 1169 | ||
1170 | // Holiday Color | 1170 | // Holiday Color |
1171 | 1171 | ||
1172 | KPrefsDialogWidColor *holidayColor = | 1172 | KPrefsDialogWidColor *holidayColor = |
1173 | addWidColor(i18n("Holiday color:"), | 1173 | addWidColor(i18n("Holiday color:"), |
1174 | &(KOPrefs::instance()->mHolidayColor),topFrame); | 1174 | &(KOPrefs::instance()->mHolidayColor),topFrame); |
1175 | topLayout->addWidget(holidayColor->label(),ii,0); | 1175 | topLayout->addWidget(holidayColor->label(),ii,0); |
1176 | topLayout->addWidget(holidayColor->button(),ii++,1); | 1176 | topLayout->addWidget(holidayColor->button(),ii++,1); |
1177 | 1177 | ||
1178 | // Highlight Color | 1178 | // Highlight Color |
1179 | KPrefsDialogWidColor *highlightColor = | 1179 | KPrefsDialogWidColor *highlightColor = |
1180 | addWidColor(i18n("Highlight color:"), | 1180 | addWidColor(i18n("Highlight color:"), |
1181 | &(KOPrefs::instance()->mHighlightColor),topFrame); | 1181 | &(KOPrefs::instance()->mHighlightColor),topFrame); |
1182 | topLayout->addWidget(highlightColor->label(),ii,0); | 1182 | topLayout->addWidget(highlightColor->label(),ii,0); |
1183 | topLayout->addWidget(highlightColor->button(),ii++,1); | 1183 | topLayout->addWidget(highlightColor->button(),ii++,1); |
1184 | 1184 | ||
1185 | // Event color | 1185 | // Event color |
1186 | KPrefsDialogWidColor *eventColor = | 1186 | KPrefsDialogWidColor *eventColor = |
1187 | addWidColor(i18n("Default event color:"), | 1187 | addWidColor(i18n("Default event color:"), |
1188 | &(KOPrefs::instance()->mEventColor),topFrame); | 1188 | &(KOPrefs::instance()->mEventColor),topFrame); |
1189 | topLayout->addWidget(eventColor->label(),ii,0); | 1189 | topLayout->addWidget(eventColor->label(),ii,0); |
1190 | topLayout->addWidget(eventColor->button(),ii++,1); | 1190 | topLayout->addWidget(eventColor->button(),ii++,1); |
1191 | eventColor = | 1191 | eventColor = |
1192 | addWidColor(i18n("Default todo done color:"), | 1192 | addWidColor(i18n("Default todo done color:"), |
1193 | &(KOPrefs::instance()->mTodoDoneColor),topFrame); | 1193 | &(KOPrefs::instance()->mTodoDoneColor),topFrame); |
1194 | topLayout->addWidget(eventColor->label(),ii,0); | 1194 | topLayout->addWidget(eventColor->label(),ii,0); |
1195 | topLayout->addWidget(eventColor->button(),ii++,1); | 1195 | topLayout->addWidget(eventColor->button(),ii++,1); |
1196 | 1196 | ||
1197 | if ( QApplication::desktop()->height() <= 240 ) { | 1197 | if ( QApplication::desktop()->height() <= 240 ) { |
1198 | topFrame = addPage(i18n("Colors") +" 2",0,0); | 1198 | topFrame = addPage(i18n("Colors") +" 2",0,0); |
1199 | // DesktopIcon("colorize",KIcon::SizeMedium)); | 1199 | // DesktopIcon("colorize",KIcon::SizeMedium)); |
1200 | 1200 | ||
1201 | topLayout = new QGridLayout(topFrame,5,2); | 1201 | topLayout = new QGridLayout(topFrame,5,2); |
1202 | // topLayout->setSpacing(mSpacingHint); | 1202 | // topLayout->setSpacing(mSpacingHint); |
1203 | // topLayout->setMargin(mMarginHint); | 1203 | // topLayout->setMargin(mMarginHint); |
1204 | 1204 | ||
1205 | topLayout->setSpacing(2); | 1205 | topLayout->setSpacing(2); |
1206 | topLayout->setMargin(3); | 1206 | topLayout->setMargin(3); |
1207 | } | 1207 | } |
1208 | 1208 | ||
1209 | 1209 | ||
1210 | // agenda view background color | 1210 | // agenda view background color |
1211 | KPrefsDialogWidColor *agendaBgColor = | 1211 | KPrefsDialogWidColor *agendaBgColor = |
1212 | addWidColor(i18n("Agenda view background color:"), | 1212 | addWidColor(i18n("Agenda view background color:"), |
1213 | &(KOPrefs::instance()->mAgendaBgColor),topFrame); | 1213 | &(KOPrefs::instance()->mAgendaBgColor),topFrame); |
1214 | topLayout->addWidget(agendaBgColor->label(),ii,0); | 1214 | topLayout->addWidget(agendaBgColor->label(),ii,0); |
1215 | topLayout->addWidget(agendaBgColor->button(),ii++,1); | 1215 | topLayout->addWidget(agendaBgColor->button(),ii++,1); |
1216 | 1216 | ||
1217 | // working hours color | 1217 | // working hours color |
1218 | KPrefsDialogWidColor *workingHoursColor = | 1218 | KPrefsDialogWidColor *workingHoursColor = |
1219 | addWidColor(i18n("Working hours color:"), | 1219 | addWidColor(i18n("Working hours color:"), |
1220 | &(KOPrefs::instance()->mWorkingHoursColor),topFrame); | 1220 | &(KOPrefs::instance()->mWorkingHoursColor),topFrame); |
1221 | topLayout->addWidget(workingHoursColor->label(),ii,0); | 1221 | topLayout->addWidget(workingHoursColor->label(),ii,0); |
1222 | topLayout->addWidget(workingHoursColor->button(),ii++,1); | 1222 | topLayout->addWidget(workingHoursColor->button(),ii++,1); |
1223 | 1223 | ||
1224 | KPrefsDialogWidBool *sb = | 1224 | KPrefsDialogWidBool *sb = |
1225 | addWidBool(i18n("Use colors for application:"), | 1225 | addWidBool(i18n("Use colors for application:"), |
1226 | &(KOPrefs::instance()->mUseAppColors),topFrame); | 1226 | &(KOPrefs::instance()->mUseAppColors),topFrame); |
1227 | topLayout->addMultiCellWidget(sb->checkBox(), ii, ii, 0,1 ); | 1227 | topLayout->addMultiCellWidget(sb->checkBox(), ii, ii, 0,1 ); |
1228 | 1228 | ||
1229 | ii++; | 1229 | ii++; |
1230 | KPrefsDialogWidColor * workingHoursColor1 = | 1230 | KPrefsDialogWidColor * workingHoursColor1 = |
1231 | addWidColor(i18n("Buttons, menus, etc.:"), | 1231 | addWidColor(i18n("Buttons, menus, etc.:"), |
1232 | &(KOPrefs::instance()->mAppColor1),topFrame); | 1232 | &(KOPrefs::instance()->mAppColor1),topFrame); |
1233 | topLayout->addWidget(workingHoursColor1->label(),ii,0); | 1233 | topLayout->addWidget(workingHoursColor1->label(),ii,0); |
1234 | topLayout->addWidget(workingHoursColor1->button(),ii++,1); | 1234 | topLayout->addWidget(workingHoursColor1->button(),ii++,1); |
1235 | 1235 | ||
1236 | KPrefsDialogWidColor * workingHoursColor2 = | 1236 | KPrefsDialogWidColor * workingHoursColor2 = |
1237 | addWidColor(i18n("Frames, labels, etc.:"), | 1237 | addWidColor(i18n("Frames, labels, etc.:"), |
1238 | &(KOPrefs::instance()->mAppColor2),topFrame); | 1238 | &(KOPrefs::instance()->mAppColor2),topFrame); |
1239 | topLayout->addWidget(workingHoursColor2->label(),ii,0); | 1239 | topLayout->addWidget(workingHoursColor2->label(),ii,0); |
1240 | topLayout->addWidget(workingHoursColor2->button(),ii++,1); | 1240 | topLayout->addWidget(workingHoursColor2->button(),ii++,1); |
1241 | 1241 | ||
1242 | 1242 | ||
1243 | 1243 | ||
1244 | } | 1244 | } |
1245 | 1245 | ||
1246 | void KOPrefsDialog::setCategoryColor() | 1246 | void KOPrefsDialog::setCategoryColor() |
1247 | { | 1247 | { |
1248 | mCategoryDict.replace(mCategoryCombo->currentText(), new QColor(mCategoryButton->color())); | 1248 | mCategoryDict.replace(mCategoryCombo->currentText(), new QColor(mCategoryButton->color())); |
1249 | } | 1249 | } |
1250 | 1250 | ||
1251 | void KOPrefsDialog::updateCategoryColor() | 1251 | void KOPrefsDialog::updateCategoryColor() |
1252 | { | 1252 | { |
1253 | QString cat = mCategoryCombo->currentText(); | 1253 | QString cat = mCategoryCombo->currentText(); |
1254 | QColor *color = mCategoryDict.find(cat); | 1254 | QColor *color = mCategoryDict.find(cat); |
1255 | if (!color) { | 1255 | if (!color) { |
1256 | color = KOPrefs::instance()->categoryColor(cat); | 1256 | color = KOPrefs::instance()->categoryColor(cat); |
1257 | } | 1257 | } |
1258 | if (color) { | 1258 | if (color) { |
1259 | mCategoryButton->setColor(*color); | 1259 | mCategoryButton->setColor(*color); |
1260 | } | 1260 | } |
1261 | } | 1261 | } |
1262 | 1262 | ||
1263 | void KOPrefsDialog::setupPrinterTab() | 1263 | void KOPrefsDialog::setupPrinterTab() |
1264 | { | 1264 | { |
1265 | mPrinterTab = addPage(i18n("Printing"),0, | 1265 | mPrinterTab = addPage(i18n("Printing"),0, |
1266 | DesktopIcon("fileprint",KIcon::SizeMedium)); | 1266 | DesktopIcon("fileprint",KIcon::SizeMedium)); |
1267 | 1267 | ||
1268 | QGridLayout *topLayout = new QGridLayout(mPrinterTab,5,2); | 1268 | QGridLayout *topLayout = new QGridLayout(mPrinterTab,5,2); |
1269 | topLayout->setSpacing(mSpacingHint); | 1269 | topLayout->setSpacing(mSpacingHint); |
1270 | topLayout->setMargin(mMarginHint); | 1270 | topLayout->setMargin(mMarginHint); |
1271 | 1271 | ||
1272 | topLayout->setRowStretch(4,1); | 1272 | topLayout->setRowStretch(4,1); |
1273 | } | 1273 | } |
1274 | 1274 | ||
1275 | void KOPrefsDialog::setupGroupSchedulingTab() | 1275 | void KOPrefsDialog::setupGroupSchedulingTab() |
1276 | { | 1276 | { |
1277 | #if 0 | 1277 | #if 0 |
1278 | QFrame *topFrame = addPage(i18n("Group Scheduling"),0, | 1278 | QFrame *topFrame = addPage(i18n("Group Scheduling"),0, |
1279 | DesktopIcon("personal",KIcon::SizeMedium)); | 1279 | DesktopIcon("personal",KIcon::SizeMedium)); |
1280 | 1280 | ||
1281 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); | 1281 | QGridLayout *topLayout = new QGridLayout(topFrame,6,2); |
1282 | topLayout->setSpacing(mSpacingHint); | 1282 | topLayout->setSpacing(mSpacingHint); |
1283 | topLayout->setMargin(mMarginHint); | 1283 | topLayout->setMargin(mMarginHint); |
1284 | 1284 | ||
1285 | #if 0 | 1285 | #if 0 |
1286 | KPrefsDialogWidRadios *schedulerGroup = | 1286 | KPrefsDialogWidRadios *schedulerGroup = |
1287 | addWidRadios(i18n("Scheduler Mail Client"),&(KOPrefs::instance()->mIMIPScheduler), | 1287 | addWidRadios(i18n("Scheduler Mail Client"),&(KOPrefs::instance()->mIMIPScheduler), |
1288 | topFrame); | 1288 | topFrame); |
1289 | schedulerGroup->addRadio("Dummy"); // Only for debugging | 1289 | schedulerGroup->addRadio("Dummy"); // Only for debugging |
1290 | schedulerGroup->addRadio(i18n("Mail client")); | 1290 | schedulerGroup->addRadio(i18n("Mail client")); |
1291 | 1291 | ||
1292 | topLayout->addMultiCellWidget(schedulerGroup->groupBox(),0,0,0,1); | 1292 | topLayout->addMultiCellWidget(schedulerGroup->groupBox(),0,0,0,1); |
1293 | #endif | 1293 | #endif |
1294 | 1294 | ||
1295 | KPrefsDialogWidRadios *sendGroup = | 1295 | KPrefsDialogWidRadios *sendGroup = |
1296 | addWidRadios(i18n("Scheduler Mails Should Be"),&(KOPrefs::instance()->mIMIPSend), | 1296 | addWidRadios(i18n("Scheduler Mails Should Be"),&(KOPrefs::instance()->mIMIPSend), |
1297 | topFrame); | 1297 | topFrame); |
1298 | sendGroup->addRadio(i18n("Send to outbox")); | 1298 | sendGroup->addRadio(i18n("Send to outbox")); |
1299 | sendGroup->addRadio(i18n("Send directly")); | 1299 | sendGroup->addRadio(i18n("Send directly")); |
1300 | 1300 | ||
1301 | topLayout->addMultiCellWidget(sendGroup->groupBox(),1,1,0,1); | 1301 | topLayout->addMultiCellWidget(sendGroup->groupBox(),1,1,0,1); |
1302 | 1302 | ||
1303 | topLayout->addMultiCellWidget(new QLabel(i18n("Additional email addresses:"),topFrame),2,2,0,1); | 1303 | topLayout->addMultiCellWidget(new QLabel(i18n("Additional email addresses:"),topFrame),2,2,0,1); |
1304 | mAMails = new QListView(topFrame); | 1304 | mAMails = new QListView(topFrame); |
1305 | mAMails->addColumn(i18n("Email"),300); | 1305 | mAMails->addColumn(i18n("Email"),300); |
1306 | topLayout->addMultiCellWidget(mAMails,3,3,0,1); | 1306 | topLayout->addMultiCellWidget(mAMails,3,3,0,1); |
1307 | 1307 | ||
1308 | topLayout->addWidget(new QLabel(i18n("Additional email address:"),topFrame),4,0); | 1308 | topLayout->addWidget(new QLabel(i18n("Additional email address:"),topFrame),4,0); |
1309 | aEmailsEdit = new QLineEdit(topFrame); | 1309 | aEmailsEdit = new QLineEdit(topFrame); |
1310 | aEmailsEdit->setEnabled(false); | 1310 | aEmailsEdit->setEnabled(false); |
1311 | topLayout->addWidget(aEmailsEdit,4,1); | 1311 | topLayout->addWidget(aEmailsEdit,4,1); |
1312 | 1312 | ||
1313 | QPushButton *add = new QPushButton(i18n("New"),topFrame,"new"); | 1313 | QPushButton *add = new QPushButton(i18n("New"),topFrame,"new"); |
1314 | topLayout->addWidget(add,5,0); | 1314 | topLayout->addWidget(add,5,0); |
1315 | QPushButton *del = new QPushButton(i18n("Remove"),topFrame,"remove"); | 1315 | QPushButton *del = new QPushButton(i18n("Remove"),topFrame,"remove"); |
1316 | topLayout->addWidget(del,5,1); | 1316 | topLayout->addWidget(del,5,1); |
1317 | 1317 | ||
1318 | //topLayout->setRowStretch(2,1); | 1318 | //topLayout->setRowStretch(2,1); |
1319 | connect(add, SIGNAL( clicked() ), this, SLOT(addItem()) ); | 1319 | connect(add, SIGNAL( clicked() ), this, SLOT(addItem()) ); |
1320 | connect(del, SIGNAL( clicked() ), this, SLOT(removeItem()) ); | 1320 | connect(del, SIGNAL( clicked() ), this, SLOT(removeItem()) ); |
1321 | connect(aEmailsEdit,SIGNAL( textChanged(const QString&) ), this,SLOT(updateItem())); | 1321 | connect(aEmailsEdit,SIGNAL( textChanged(const QString&) ), this,SLOT(updateItem())); |
1322 | connect(mAMails,SIGNAL(selectionChanged(QListViewItem *)),SLOT(updateInput())); | 1322 | connect(mAMails,SIGNAL(selectionChanged(QListViewItem *)),SLOT(updateInput())); |
1323 | #endif | 1323 | #endif |
1324 | } | 1324 | } |
1325 | 1325 | ||
1326 | void KOPrefsDialog::setupGroupAutomationTab() | 1326 | void KOPrefsDialog::setupGroupAutomationTab() |
1327 | { | 1327 | { |
1328 | return; | 1328 | return; |
1329 | QFrame *topFrame = addPage(i18n("Group Automation"),0, | 1329 | QFrame *topFrame = addPage(i18n("Group Automation"),0, |
1330 | DesktopIcon("personal",KIcon::SizeMedium)); | 1330 | DesktopIcon("personal",KIcon::SizeMedium)); |
1331 | 1331 | ||
1332 | QGridLayout *topLayout = new QGridLayout(topFrame,5,1); | 1332 | QGridLayout *topLayout = new QGridLayout(topFrame,5,1); |
1333 | topLayout->setSpacing(mSpacingHint); | 1333 | topLayout->setSpacing(mSpacingHint); |
1334 | topLayout->setMargin(mMarginHint); | 1334 | topLayout->setMargin(mMarginHint); |
1335 | 1335 | ||
1336 | KPrefsDialogWidRadios *autoRefreshGroup = | 1336 | KPrefsDialogWidRadios *autoRefreshGroup = |
1337 | addWidRadios(i18n("Auto Send Refresh"), | 1337 | addWidRadios(i18n("Auto Send Refresh"), |
1338 | &(KOPrefs::instance()->mIMIPAutoRefresh),topFrame); | 1338 | &(KOPrefs::instance()->mIMIPAutoRefresh),topFrame); |
1339 | autoRefreshGroup->addRadio(i18n("Never")); | 1339 | autoRefreshGroup->addRadio(i18n("Never")); |
1340 | autoRefreshGroup->addRadio(i18n("If attendee is in addressbook")); | 1340 | autoRefreshGroup->addRadio(i18n("If attendee is in addressbook")); |
1341 | //autoRefreshGroup->addRadio(i18n("selected emails")); | 1341 | //autoRefreshGroup->addRadio(i18n("selected emails")); |
1342 | topLayout->addMultiCellWidget(autoRefreshGroup->groupBox(),0,0,0,0); | 1342 | topLayout->addMultiCellWidget(autoRefreshGroup->groupBox(),0,0,0,0); |
1343 | 1343 | ||
1344 | KPrefsDialogWidRadios *autoInsertGroup = | 1344 | KPrefsDialogWidRadios *autoInsertGroup = |
1345 | addWidRadios(i18n("Auto Insert IMIP Replies"), | 1345 | addWidRadios(i18n("Auto Insert IMIP Replies"), |
1346 | &(KOPrefs::instance()->mIMIPAutoInsertReply),topFrame); | 1346 | &(KOPrefs::instance()->mIMIPAutoInsertReply),topFrame); |
1347 | autoInsertGroup->addRadio(i18n("Never")); | 1347 | autoInsertGroup->addRadio(i18n("Never")); |
1348 | autoInsertGroup->addRadio(i18n("If attendee is in addressbook")); | 1348 | autoInsertGroup->addRadio(i18n("If attendee is in addressbook")); |
1349 | //autoInsertGroup->addRadio(i18n("selected emails")); | 1349 | //autoInsertGroup->addRadio(i18n("selected emails")); |
1350 | topLayout->addMultiCellWidget(autoInsertGroup->groupBox(),1,1,0,0); | 1350 | topLayout->addMultiCellWidget(autoInsertGroup->groupBox(),1,1,0,0); |
1351 | 1351 | ||
1352 | KPrefsDialogWidRadios *autoRequestGroup = | 1352 | KPrefsDialogWidRadios *autoRequestGroup = |
1353 | addWidRadios(i18n("Auto Insert IMIP Requests"), | 1353 | addWidRadios(i18n("Auto Insert IMIP Requests"), |
1354 | &(KOPrefs::instance()->mIMIPAutoInsertRequest),topFrame); | 1354 | &(KOPrefs::instance()->mIMIPAutoInsertRequest),topFrame); |
1355 | autoRequestGroup->addRadio(i18n("Never")); | 1355 | autoRequestGroup->addRadio(i18n("Never")); |
1356 | autoRequestGroup->addRadio(i18n("If organizer is in addressbook")); | 1356 | autoRequestGroup->addRadio(i18n("If organizer is in addressbook")); |
1357 | //autoInsertGroup->addRadio(i18n("selected emails")); | 1357 | //autoInsertGroup->addRadio(i18n("selected emails")); |
1358 | topLayout->addMultiCellWidget(autoRequestGroup->groupBox(),2,2,0,0); | 1358 | topLayout->addMultiCellWidget(autoRequestGroup->groupBox(),2,2,0,0); |
1359 | 1359 | ||
1360 | KPrefsDialogWidRadios *autoFreeBusyGroup = | 1360 | KPrefsDialogWidRadios *autoFreeBusyGroup = |
1361 | addWidRadios(i18n("Auto Send FreeBusy Information"), | 1361 | addWidRadios(i18n("Auto Send FreeBusy Information"), |
1362 | &(KOPrefs::instance()->mIMIPAutoFreeBusy),topFrame); | 1362 | &(KOPrefs::instance()->mIMIPAutoFreeBusy),topFrame); |
1363 | autoFreeBusyGroup->addRadio(i18n("Never")); | 1363 | autoFreeBusyGroup->addRadio(i18n("Never")); |
1364 | autoFreeBusyGroup->addRadio(i18n("If requested from an email in addressbook")); | 1364 | autoFreeBusyGroup->addRadio(i18n("If requested from an email in addressbook")); |
1365 | //autoFreeBusyGroup->addRadio(i18n("selected emails")); | 1365 | //autoFreeBusyGroup->addRadio(i18n("selected emails")); |
1366 | topLayout->addMultiCellWidget(autoFreeBusyGroup->groupBox(),3,3,0,0); | 1366 | topLayout->addMultiCellWidget(autoFreeBusyGroup->groupBox(),3,3,0,0); |
1367 | 1367 | ||
1368 | KPrefsDialogWidRadios *autoFreeBusyReplyGroup = | 1368 | KPrefsDialogWidRadios *autoFreeBusyReplyGroup = |
1369 | addWidRadios(i18n("Auto Save FreeBusy Replies"), | 1369 | addWidRadios(i18n("Auto Save FreeBusy Replies"), |
1370 | &(KOPrefs::instance()->mIMIPAutoFreeBusyReply),topFrame); | 1370 | &(KOPrefs::instance()->mIMIPAutoFreeBusyReply),topFrame); |
1371 | autoFreeBusyReplyGroup->addRadio(i18n("Never")); | 1371 | autoFreeBusyReplyGroup->addRadio(i18n("Never")); |
1372 | autoFreeBusyReplyGroup->addRadio(i18n("If attendee is in addressbook")); | 1372 | autoFreeBusyReplyGroup->addRadio(i18n("If attendee is in addressbook")); |
1373 | //autoFreeBusyGroup->addRadio(i18n("selected emails")); | 1373 | //autoFreeBusyGroup->addRadio(i18n("selected emails")); |
1374 | topLayout->addMultiCellWidget(autoFreeBusyReplyGroup->groupBox(),4,4,0,0); | 1374 | topLayout->addMultiCellWidget(autoFreeBusyReplyGroup->groupBox(),4,4,0,0); |
1375 | } | 1375 | } |
1376 | 1376 | ||
1377 | void KOPrefsDialog::showPrinterTab() | 1377 | void KOPrefsDialog::showPrinterTab() |
1378 | { | 1378 | { |
1379 | showPage(pageIndex(mPrinterTab)); | 1379 | showPage(pageIndex(mPrinterTab)); |
1380 | } | 1380 | } |
1381 | 1381 | ||
1382 | 1382 | ||
1383 | void KOPrefsDialog::setCombo(QComboBox *combo, const QString & text, | 1383 | void KOPrefsDialog::setCombo(QComboBox *combo, const QString & text, |
1384 | const QStringList *tags) | 1384 | const QStringList *tags) |
1385 | { | 1385 | { |
1386 | if (tags) { | 1386 | if (tags) { |
1387 | int i = tags->findIndex(text); | 1387 | int i = tags->findIndex(text); |
1388 | if (i > 0) combo->setCurrentItem(i); | 1388 | if (i > 0) combo->setCurrentItem(i); |
1389 | } else { | 1389 | } else { |
1390 | for(int i=0;i<combo->count();++i) { | 1390 | for(int i=0;i<combo->count();++i) { |
1391 | if (combo->text(i) == text) { | 1391 | if (combo->text(i) == text) { |
1392 | combo->setCurrentItem(i); | 1392 | combo->setCurrentItem(i); |
1393 | break; | 1393 | break; |
1394 | } | 1394 | } |
1395 | } | 1395 | } |
1396 | } | 1396 | } |
1397 | } | 1397 | } |
1398 | 1398 | ||
1399 | void KOPrefsDialog::usrReadConfig() | 1399 | void KOPrefsDialog::usrReadConfig() |
1400 | { | 1400 | { |
1401 | 1401 | ||
1402 | mNameEdit->setText(KOPrefs::instance()->fullName()); | 1402 | mNameEdit->setText(KOPrefs::instance()->fullName()); |
1403 | mEmailEdit->setText(KOPrefs::instance()->email()); | 1403 | mEmailEdit->setText(KOPrefs::instance()->email()); |
1404 | 1404 | ||
1405 | mAutoSaveIntervalSpin->setValue(KOPrefs::instance()->mAutoSaveInterval); | 1405 | mAutoSaveIntervalSpin->setValue(KOPrefs::instance()->mAutoSaveInterval); |
1406 | 1406 | ||
1407 | mStartTimeSpin->setValue(KOPrefs::instance()->mStartTime); | 1407 | mStartTimeSpin->setValue(KOPrefs::instance()->mStartTime); |
1408 | mDefaultDurationSpin->setValue(KOPrefs::instance()->mDefaultDuration); | 1408 | mDefaultDurationSpin->setValue(KOPrefs::instance()->mDefaultDuration); |
1409 | mAlarmTimeCombo->setCurrentItem(KOPrefs::instance()->mAlarmTime); | 1409 | mAlarmTimeCombo->setCurrentItem(KOPrefs::instance()->mAlarmTime); |
1410 | 1410 | ||
1411 | mNextXDaysSpin->setValue(KOPrefs::instance()->mNextXDays); | 1411 | mNextXDaysSpin->setValue(KOPrefs::instance()->mNextXDays); |
1412 | mWhatsNextSpin->setValue(KOPrefs::instance()->mWhatsNextDays); | 1412 | mWhatsNextSpin->setValue(KOPrefs::instance()->mWhatsNextDays); |
1413 | mPrioSpin->setValue(KOPrefs::instance()->mWhatsNextPrios); | 1413 | mPrioSpin->setValue(KOPrefs::instance()->mWhatsNextPrios); |
1414 | // mAMails->clear(); | 1414 | // mAMails->clear(); |
1415 | // for ( QStringList::Iterator it = KOPrefs::instance()->mAdditionalMails.begin(); | 1415 | // for ( QStringList::Iterator it = KOPrefs::instance()->mAdditionalMails.begin(); |
1416 | // it != KOPrefs::instance()->mAdditionalMails.end(); ++it ) { | 1416 | // it != KOPrefs::instance()->mAdditionalMails.end(); ++it ) { |
1417 | // QListViewItem *item = new QListViewItem(mAMails); | 1417 | // QListViewItem *item = new QListViewItem(mAMails); |
1418 | // item->setText(0,*it); | 1418 | // item->setText(0,*it); |
1419 | // mAMails->insertItem(item); | 1419 | // mAMails->insertItem(item); |
1420 | // } | 1420 | // } |
1421 | 1421 | ||
1422 | //that soundmLocalTempFile->setText(KOPrefs::instance()->mLocalTempFile); | 1422 | //that soundmLocalTempFile->setText(KOPrefs::instance()->mLocalTempFile); |
1423 | mDefaultAlarmFile->setText(KOPrefs::instance()->mDefaultAlarmFile); | 1423 | mDefaultAlarmFile->setText(KOPrefs::instance()->mDefaultAlarmFile); |
1424 | updateCategories(); | 1424 | updateCategories(); |
1425 | mAlarmPlayBeeps->setValue(KOPrefs::instance()->mAlarmPlayBeeps ); | 1425 | mAlarmPlayBeeps->setValue(KOPrefs::instance()->mAlarmPlayBeeps ); |
1426 | mAlarmSuspendTime->setValue(KOPrefs::instance()->mAlarmSuspendTime ); | 1426 | mAlarmSuspendTime->setValue(KOPrefs::instance()->mAlarmSuspendTime ); |
1427 | mAlarmSuspendCount->setValue(KOPrefs::instance()->mAlarmSuspendCount ); | 1427 | mAlarmSuspendCount->setValue(KOPrefs::instance()->mAlarmSuspendCount ); |
1428 | mAlarmBeepInterval->setValue(KOPrefs::instance()->mAlarmBeepInterval ); | 1428 | mAlarmBeepInterval->setValue(KOPrefs::instance()->mAlarmBeepInterval ); |
1429 | 1429 | mCatDefaultColor = KOPrefs::instance()->mEventColor; | |
1430 | } | 1430 | } |
1431 | 1431 | ||
1432 | 1432 | ||
1433 | void KOPrefsDialog::usrWriteConfig() | 1433 | void KOPrefsDialog::usrWriteConfig() |
1434 | { | 1434 | { |
1435 | |||
1436 | |||
1437 | KOPrefs::instance()->mDefaultAlarmFile =mDefaultAlarmFile->text(); | 1435 | KOPrefs::instance()->mDefaultAlarmFile =mDefaultAlarmFile->text(); |
1438 | KOPrefs::instance()->setFullName(mNameEdit->text()); | 1436 | KOPrefs::instance()->setFullName(mNameEdit->text()); |
1439 | KOPrefs::instance()->setEmail(mEmailEdit->text()); | 1437 | KOPrefs::instance()->setEmail(mEmailEdit->text()); |
1440 | 1438 | ||
1441 | KOPrefs::instance()->mAutoSaveInterval = mAutoSaveIntervalSpin->value(); | 1439 | KOPrefs::instance()->mAutoSaveInterval = mAutoSaveIntervalSpin->value(); |
1442 | KOPrefs::instance()->mStartTime = mStartTimeSpin->value(); | 1440 | KOPrefs::instance()->mStartTime = mStartTimeSpin->value(); |
1443 | KOPrefs::instance()->mDefaultDuration = mDefaultDurationSpin->value(); | 1441 | KOPrefs::instance()->mDefaultDuration = mDefaultDurationSpin->value(); |
1444 | KOPrefs::instance()->mAlarmTime = mAlarmTimeCombo->currentItem(); | 1442 | KOPrefs::instance()->mAlarmTime = mAlarmTimeCombo->currentItem(); |
1445 | 1443 | if ( mCatDefaultColor != KOPrefs::instance()->mEventColor ) { | |
1444 | QStringList cat = KOPrefs::instance()->mCustomCategories; | ||
1445 | int iii = 0; | ||
1446 | while ( iii < cat.count() ) { | ||
1447 | if ( *KOPrefs::instance()->categoryColor( cat[ iii ] ) == mCatDefaultColor ) | ||
1448 | KOPrefs::instance()->setCategoryColor( cat[ iii ], KOPrefs::instance()->mEventColor ); | ||
1449 | ++iii; | ||
1450 | } | ||
1451 | } | ||
1446 | QDictIterator<QColor> it(mCategoryDict); | 1452 | QDictIterator<QColor> it(mCategoryDict); |
1447 | while (it.current()) { | 1453 | while (it.current()) { |
1448 | KOPrefs::instance()->setCategoryColor(it.currentKey(),*it.current()); | 1454 | KOPrefs::instance()->setCategoryColor(it.currentKey(),*it.current()); |
1449 | ++it; | 1455 | ++it; |
1450 | } | 1456 | } |
1451 | 1457 | ||
1452 | KOPrefs::instance()->mNextXDays = mNextXDaysSpin->value(); | 1458 | KOPrefs::instance()->mNextXDays = mNextXDaysSpin->value(); |
1453 | KOPrefs::instance()->mWhatsNextDays = mWhatsNextSpin->value(); | 1459 | KOPrefs::instance()->mWhatsNextDays = mWhatsNextSpin->value(); |
1454 | KOPrefs::instance()->mWhatsNextPrios = mPrioSpin->value(); | 1460 | KOPrefs::instance()->mWhatsNextPrios = mPrioSpin->value(); |
1455 | 1461 | ||
1456 | KOPrefs::instance()->mAdditionalMails.clear(); | 1462 | KOPrefs::instance()->mAdditionalMails.clear(); |
1457 | // QListViewItem *item; | 1463 | // QListViewItem *item; |
1458 | // item = mAMails->firstChild(); | 1464 | // item = mAMails->firstChild(); |
1459 | // while (item) | 1465 | // while (item) |
1460 | // { | 1466 | // { |
1461 | // KOPrefs::instance()->mAdditionalMails.append( item->text(0) ); | 1467 | // KOPrefs::instance()->mAdditionalMails.append( item->text(0) ); |
1462 | // item = item->nextSibling(); | 1468 | // item = item->nextSibling(); |
1463 | // } | 1469 | // } |
1464 | KOPrefs::instance()->mAlarmPlayBeeps = mAlarmPlayBeeps->value(); | 1470 | KOPrefs::instance()->mAlarmPlayBeeps = mAlarmPlayBeeps->value(); |
1465 | KOPrefs::instance()->mAlarmSuspendTime = mAlarmSuspendTime->value() ; | 1471 | KOPrefs::instance()->mAlarmSuspendTime = mAlarmSuspendTime->value() ; |
1466 | KOPrefs::instance()->mAlarmSuspendCount= mAlarmSuspendCount->value() ; | 1472 | KOPrefs::instance()->mAlarmSuspendCount= mAlarmSuspendCount->value() ; |
1467 | KOPrefs::instance()->mAlarmBeepInterval= mAlarmBeepInterval->value() ; | 1473 | KOPrefs::instance()->mAlarmBeepInterval= mAlarmBeepInterval->value() ; |
1468 | } | 1474 | } |
1469 | 1475 | ||
1470 | void KOPrefsDialog::updateCategories() | 1476 | void KOPrefsDialog::updateCategories() |
1471 | { | 1477 | { |
1472 | mCategoryCombo->clear(); | 1478 | mCategoryCombo->clear(); |
1473 | mCategoryDict.clear(); | 1479 | mCategoryDict.clear(); |
1474 | mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories); | 1480 | mCategoryCombo->insertStringList(KOPrefs::instance()->mCustomCategories); |
1475 | updateCategoryColor(); | 1481 | updateCategoryColor(); |
1476 | } | 1482 | } |
1477 | 1483 | ||
1478 | void KOPrefsDialog::toggleEmailSettings(bool on) | 1484 | void KOPrefsDialog::toggleEmailSettings(bool on) |
1479 | { | 1485 | { |
1480 | if (on) { | 1486 | if (on) { |
1481 | mEmailEdit->setEnabled(false); | 1487 | mEmailEdit->setEnabled(false); |
1482 | mNameEdit->setEnabled(false); | 1488 | mNameEdit->setEnabled(false); |
1483 | mEmailLabel->setEnabled(false); | 1489 | mEmailLabel->setEnabled(false); |
1484 | mNameLabel->setEnabled(false); | 1490 | mNameLabel->setEnabled(false); |
1485 | 1491 | ||
1486 | KEMailSettings settings; | 1492 | KEMailSettings settings; |
1487 | mNameEdit->setText(settings.getSetting(KEMailSettings::RealName)); | 1493 | mNameEdit->setText(settings.getSetting(KEMailSettings::RealName)); |
1488 | mEmailEdit->setText(settings.getSetting(KEMailSettings::EmailAddress)); | 1494 | mEmailEdit->setText(settings.getSetting(KEMailSettings::EmailAddress)); |
1489 | } else { | 1495 | } else { |
1490 | mEmailEdit->setEnabled(true); | 1496 | mEmailEdit->setEnabled(true); |
1491 | mNameEdit->setEnabled(true); | 1497 | mNameEdit->setEnabled(true); |
1492 | mEmailLabel->setEnabled(true); | 1498 | mEmailLabel->setEnabled(true); |
1493 | mNameLabel->setEnabled(true); | 1499 | mNameLabel->setEnabled(true); |
1494 | } | 1500 | } |
1495 | } | 1501 | } |
1496 | 1502 | ||
1497 | void KOPrefsDialog::addItem() | 1503 | void KOPrefsDialog::addItem() |
1498 | { | 1504 | { |
1499 | // aEmailsEdit->setEnabled(true); | 1505 | // aEmailsEdit->setEnabled(true); |
1500 | // QListViewItem *item = new QListViewItem(mAMails); | 1506 | // QListViewItem *item = new QListViewItem(mAMails); |
1501 | // mAMails->insertItem(item); | 1507 | // mAMails->insertItem(item); |
1502 | // mAMails->setSelected(item,true); | 1508 | // mAMails->setSelected(item,true); |
1503 | // aEmailsEdit->setText(i18n("(EmptyEmail)")); | 1509 | // aEmailsEdit->setText(i18n("(EmptyEmail)")); |
1504 | } | 1510 | } |
1505 | 1511 | ||
1506 | void KOPrefsDialog::removeItem() | 1512 | void KOPrefsDialog::removeItem() |
1507 | { | 1513 | { |
1508 | // QListViewItem *item; | 1514 | // QListViewItem *item; |
1509 | // item = mAMails->selectedItem(); | 1515 | // item = mAMails->selectedItem(); |
1510 | // if (!item) return; | 1516 | // if (!item) return; |
1511 | // mAMails->takeItem(item); | 1517 | // mAMails->takeItem(item); |
1512 | // item = mAMails->selectedItem(); | 1518 | // item = mAMails->selectedItem(); |
1513 | // if (!item) { | 1519 | // if (!item) { |
1514 | // aEmailsEdit->setText(""); | 1520 | // aEmailsEdit->setText(""); |
1515 | // aEmailsEdit->setEnabled(false); | 1521 | // aEmailsEdit->setEnabled(false); |
1516 | // } | 1522 | // } |
1517 | // if (mAMails->childCount() == 0) { | 1523 | // if (mAMails->childCount() == 0) { |
1518 | // aEmailsEdit->setEnabled(false); | 1524 | // aEmailsEdit->setEnabled(false); |
1519 | // } | 1525 | // } |
1520 | } | 1526 | } |
1521 | 1527 | ||
1522 | void KOPrefsDialog::updateItem() | 1528 | void KOPrefsDialog::updateItem() |
1523 | { | 1529 | { |
1524 | // QListViewItem *item; | 1530 | // QListViewItem *item; |
1525 | // item = mAMails->selectedItem(); | 1531 | // item = mAMails->selectedItem(); |
1526 | // if (!item) return; | 1532 | // if (!item) return; |
1527 | // item->setText(0,aEmailsEdit->text()); | 1533 | // item->setText(0,aEmailsEdit->text()); |
1528 | } | 1534 | } |
1529 | 1535 | ||
1530 | void KOPrefsDialog::updateInput() | 1536 | void KOPrefsDialog::updateInput() |
1531 | { | 1537 | { |
1532 | // QListViewItem *item; | 1538 | // QListViewItem *item; |
1533 | // item = mAMails->selectedItem(); | 1539 | // item = mAMails->selectedItem(); |
1534 | // if (!item) return; | 1540 | // if (!item) return; |
1535 | // aEmailsEdit->setEnabled(true); | 1541 | // aEmailsEdit->setEnabled(true); |
1536 | // aEmailsEdit->setText(item->text(0)); | 1542 | // aEmailsEdit->setText(item->text(0)); |
1537 | } | 1543 | } |
1538 | 1544 | ||
diff --git a/korganizer/koprefsdialog.h b/korganizer/koprefsdialog.h index 80d6545..baa6cf9 100644 --- a/korganizer/koprefsdialog.h +++ b/korganizer/koprefsdialog.h | |||
@@ -1,154 +1,155 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | #ifndef _KOPREFSDIALOG_H | 23 | #ifndef _KOPREFSDIALOG_H |
24 | #define _KOPREFSDIALOG_H | 24 | #define _KOPREFSDIALOG_H |
25 | 25 | ||
26 | #include <qframe.h> | 26 | #include <qframe.h> |
27 | #include <qdict.h> | 27 | #include <qdict.h> |
28 | #include <qcolor.h> | 28 | #include <qcolor.h> |
29 | #include <qlistview.h> | 29 | #include <qlistview.h> |
30 | 30 | ||
31 | #include <kdialogbase.h> | 31 | #include <kdialogbase.h> |
32 | 32 | ||
33 | #include <libkdepim/kprefsdialog.h> | 33 | #include <libkdepim/kprefsdialog.h> |
34 | #include <libkdepim/kdateedit.h> | 34 | #include <libkdepim/kdateedit.h> |
35 | #include <kcmconfigs/kdepimconfigwidget.h> | 35 | #include <kcmconfigs/kdepimconfigwidget.h> |
36 | 36 | ||
37 | class KColorButton; | 37 | class KColorButton; |
38 | class QSpinBox; | 38 | class QSpinBox; |
39 | class QSlider; | 39 | class QSlider; |
40 | class KURLRequester; | 40 | class KURLRequester; |
41 | class QComboBox; | 41 | class QComboBox; |
42 | class QLineEdit; | 42 | class QLineEdit; |
43 | class QStringList; | 43 | class QStringList; |
44 | 44 | ||
45 | /** Dialog to change the korganizer configuration. | 45 | /** Dialog to change the korganizer configuration. |
46 | */ | 46 | */ |
47 | class KOPrefsDialog : public KPrefsDialog | 47 | class KOPrefsDialog : public KPrefsDialog |
48 | { | 48 | { |
49 | Q_OBJECT | 49 | Q_OBJECT |
50 | public: | 50 | public: |
51 | /** Initialize dialog and pages */ | 51 | /** Initialize dialog and pages */ |
52 | KOPrefsDialog(QWidget *parent=0,char *name=0,bool modal=false); | 52 | KOPrefsDialog(QWidget *parent=0,char *name=0,bool modal=false); |
53 | ~KOPrefsDialog(); | 53 | ~KOPrefsDialog(); |
54 | 54 | ||
55 | public slots: | 55 | public slots: |
56 | void showPrinterTab(); | 56 | void showPrinterTab(); |
57 | 57 | ||
58 | /** Update controls for categories */ | 58 | /** Update controls for categories */ |
59 | void updateCategories(); | 59 | void updateCategories(); |
60 | protected slots: | 60 | protected slots: |
61 | void selectSoundFile(); | 61 | void selectSoundFile(); |
62 | void setCategoryColor(); | 62 | void setCategoryColor(); |
63 | void updateCategoryColor(); | 63 | void updateCategoryColor(); |
64 | void toggleEmailSettings(bool); | 64 | void toggleEmailSettings(bool); |
65 | 65 | ||
66 | //additional emails | 66 | //additional emails |
67 | void addItem(); | 67 | void addItem(); |
68 | void removeItem(); | 68 | void removeItem(); |
69 | void updateItem(); | 69 | void updateItem(); |
70 | void updateInput(); | 70 | void updateInput(); |
71 | 71 | ||
72 | protected: | 72 | protected: |
73 | void usrReadConfig(); | 73 | void usrReadConfig(); |
74 | void usrWriteConfig(); | 74 | void usrWriteConfig(); |
75 | void setupGlobalTab(); | 75 | void setupGlobalTab(); |
76 | 76 | ||
77 | void setupMainTab(); | 77 | void setupMainTab(); |
78 | void setupTimeTab(); | 78 | void setupTimeTab(); |
79 | void setupLocaleTab(); | 79 | void setupLocaleTab(); |
80 | void setupLocaleDateTab(); | 80 | void setupLocaleDateTab(); |
81 | void setupFontsTab(); | 81 | void setupFontsTab(); |
82 | void setupColorsTab(); | 82 | void setupColorsTab(); |
83 | void setupViewsTab(); | 83 | void setupViewsTab(); |
84 | void setupDisplayTab(); | 84 | void setupDisplayTab(); |
85 | void setupPrinterTab(); | 85 | void setupPrinterTab(); |
86 | void setupGroupSchedulingTab(); | 86 | void setupGroupSchedulingTab(); |
87 | void setupGroupAutomationTab(); | 87 | void setupGroupAutomationTab(); |
88 | 88 | ||
89 | void setCombo(QComboBox *combo,const QString & text, const QStringList *tags = 0); | 89 | void setCombo(QComboBox *combo,const QString & text, const QStringList *tags = 0); |
90 | 90 | ||
91 | 91 | ||
92 | private: | 92 | private: |
93 | QColor mCatDefaultColor; | ||
93 | KPrefsDialogWidBool *mEnableGroupScheduling; | 94 | KPrefsDialogWidBool *mEnableGroupScheduling; |
94 | KPrefsDialogWidBool *mEnableProjectView; | 95 | KPrefsDialogWidBool *mEnableProjectView; |
95 | 96 | ||
96 | QFrame *mPrinterTab; | 97 | QFrame *mPrinterTab; |
97 | 98 | ||
98 | QLineEdit *nameEdit; | 99 | QLineEdit *nameEdit; |
99 | QLineEdit *emailEdit; | 100 | QLineEdit *emailEdit; |
100 | 101 | ||
101 | QComboBox *timeCombo; | 102 | QComboBox *timeCombo; |
102 | QComboBox *tzCombo; | 103 | QComboBox *tzCombo; |
103 | 104 | ||
104 | // widgets holding preferences data | 105 | // widgets holding preferences data |
105 | QLineEdit *mNameEdit; | 106 | QLineEdit *mNameEdit; |
106 | QLineEdit *mEmailEdit; | 107 | QLineEdit *mEmailEdit; |
107 | QLabel *mNameLabel; | 108 | QLabel *mNameLabel; |
108 | QLabel *mEmailLabel; | 109 | QLabel *mEmailLabel; |
109 | QLineEdit *mAdditionalEdit; | 110 | QLineEdit *mAdditionalEdit; |
110 | QSpinBox *mAutoSaveIntervalSpin; | 111 | QSpinBox *mAutoSaveIntervalSpin; |
111 | QSpinBox *mPrioSpin; | 112 | QSpinBox *mPrioSpin; |
112 | // QListView *mAMails; | 113 | // QListView *mAMails; |
113 | QLineEdit *aEmailsEdit; | 114 | QLineEdit *aEmailsEdit; |
114 | 115 | ||
115 | QComboBox *mTimeZoneCombo; | 116 | QComboBox *mTimeZoneCombo; |
116 | QStringList tzonenames; | 117 | QStringList tzonenames; |
117 | QSpinBox *mStartTimeSpin; | 118 | QSpinBox *mStartTimeSpin; |
118 | QSpinBox *mDefaultDurationSpin; | 119 | QSpinBox *mDefaultDurationSpin; |
119 | QComboBox *mAlarmTimeCombo; | 120 | QComboBox *mAlarmTimeCombo; |
120 | 121 | ||
121 | QComboBox *mCategoryCombo; | 122 | QComboBox *mCategoryCombo; |
122 | KColorButton *mCategoryButton; | 123 | KColorButton *mCategoryButton; |
123 | QDict<QColor> mCategoryDict; | 124 | QDict<QColor> mCategoryDict; |
124 | 125 | ||
125 | QSlider *mHourSizeSlider; | 126 | QSlider *mHourSizeSlider; |
126 | 127 | ||
127 | QSpinBox *mNextXDaysSpin; | 128 | QSpinBox *mNextXDaysSpin; |
128 | QSpinBox *mWhatsNextSpin; | 129 | QSpinBox *mWhatsNextSpin; |
129 | 130 | ||
130 | QLineEdit * mRemoteIPEdit; | 131 | QLineEdit * mRemoteIPEdit; |
131 | QLineEdit * mRemoteUser; | 132 | QLineEdit * mRemoteUser; |
132 | QLineEdit * mRemotePassWd; | 133 | QLineEdit * mRemotePassWd; |
133 | QLineEdit * mRemoteFile; | 134 | QLineEdit * mRemoteFile; |
134 | QLineEdit * mLocalTempFile; | 135 | QLineEdit * mLocalTempFile; |
135 | QWidget* mSetupSyncAlgTab; | 136 | QWidget* mSetupSyncAlgTab; |
136 | QLineEdit * mUserDateFormatLong; | 137 | QLineEdit * mUserDateFormatLong; |
137 | QLineEdit * mUserDateFormatShort; | 138 | QLineEdit * mUserDateFormatShort; |
138 | 139 | ||
139 | QSpinBox *mTimezoneOffsetSpin; | 140 | QSpinBox *mTimezoneOffsetSpin; |
140 | QSpinBox *mDaylightsavingStart; | 141 | QSpinBox *mDaylightsavingStart; |
141 | QSpinBox *mDaylightsavingEnd; | 142 | QSpinBox *mDaylightsavingEnd; |
142 | KDateEdit* mStartDateSavingEdit; | 143 | KDateEdit* mStartDateSavingEdit; |
143 | KDateEdit* mEndDateSavingEdit; | 144 | KDateEdit* mEndDateSavingEdit; |
144 | QSpinBox * mAlarmPlayBeeps; | 145 | QSpinBox * mAlarmPlayBeeps; |
145 | QSpinBox * mAlarmSuspendTime; | 146 | QSpinBox * mAlarmSuspendTime; |
146 | QSpinBox * mAlarmSuspendCount; | 147 | QSpinBox * mAlarmSuspendCount; |
147 | QSpinBox * mAlarmBeepInterval; | 148 | QSpinBox * mAlarmBeepInterval; |
148 | 149 | ||
149 | QLineEdit * mDefaultAlarmFile; | 150 | QLineEdit * mDefaultAlarmFile; |
150 | int mSpacingHint; | 151 | int mSpacingHint; |
151 | int mMarginHint; | 152 | int mMarginHint; |
152 | }; | 153 | }; |
153 | 154 | ||
154 | #endif | 155 | #endif |