-rw-r--r-- | libkdepim/kcmconfigs/kdepimconfigwidget.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/libkdepim/kcmconfigs/kdepimconfigwidget.cpp b/libkdepim/kcmconfigs/kdepimconfigwidget.cpp index 4817a3f..20594c6 100644 --- a/libkdepim/kcmconfigs/kdepimconfigwidget.cpp +++ b/libkdepim/kcmconfigs/kdepimconfigwidget.cpp | |||
@@ -46,129 +46,129 @@ $Id$ | |||
46 | 46 | ||
47 | /*US | 47 | /*US |
48 | #include <qcheckbox.h> | 48 | #include <qcheckbox.h> |
49 | #include <qframe.h> | 49 | #include <qframe.h> |
50 | #include <qpushbutton.h> | 50 | #include <qpushbutton.h> |
51 | #include <qcombobox.h> | 51 | #include <qcombobox.h> |
52 | #include <qlineedit.h> | 52 | #include <qlineedit.h> |
53 | #include <qlabel.h> | 53 | #include <qlabel.h> |
54 | #include <qfile.h> | 54 | #include <qfile.h> |
55 | 55 | ||
56 | #include <kconfig.h> | 56 | #include <kconfig.h> |
57 | #include <kdebug.h> | 57 | #include <kdebug.h> |
58 | #include <kdialog.h> | 58 | #include <kdialog.h> |
59 | #include <klistview.h> | 59 | #include <klistview.h> |
60 | #include <klocale.h> | 60 | #include <klocale.h> |
61 | #include <kglobal.h> | 61 | #include <kglobal.h> |
62 | #include <kmessagebox.h> | 62 | #include <kmessagebox.h> |
63 | #include <kstandarddirs.h> | 63 | #include <kstandarddirs.h> |
64 | 64 | ||
65 | #ifndef KAB_EMBEDDED | 65 | #ifndef KAB_EMBEDDED |
66 | #include <ktrader.h> | 66 | #include <ktrader.h> |
67 | #else // KAB_EMBEDDED | 67 | #else // KAB_EMBEDDED |
68 | #include <mergewidget.h> | 68 | #include <mergewidget.h> |
69 | #include <distributionlistwidget.h> | 69 | #include <distributionlistwidget.h> |
70 | #endif // KAB_EMBEDDED | 70 | #endif // KAB_EMBEDDED |
71 | 71 | ||
72 | #include "addresseewidget.h" | 72 | #include "addresseewidget.h" |
73 | #include "extensionconfigdialog.h" | 73 | #include "extensionconfigdialog.h" |
74 | #include "extensionwidget.h" | 74 | #include "extensionwidget.h" |
75 | */ | 75 | */ |
76 | 76 | ||
77 | #include "qapplication.h" | 77 | #include "qapplication.h" |
78 | 78 | ||
79 | #include "kpimglobalprefs.h" | 79 | #include "kpimglobalprefs.h" |
80 | 80 | ||
81 | #include "kdepimconfigwidget.h" | 81 | #include "kdepimconfigwidget.h" |
82 | 82 | ||
83 | 83 | ||
84 | KDEPIMConfigWidget::KDEPIMConfigWidget(KPimGlobalPrefs *prefs, QWidget *parent, const char *name ) | 84 | KDEPIMConfigWidget::KDEPIMConfigWidget(KPimGlobalPrefs *prefs, QWidget *parent, const char *name ) |
85 | : KPrefsWidget(prefs, parent, name ) | 85 | : KPrefsWidget(prefs, parent, name ) |
86 | { | 86 | { |
87 | mExternalAppsMap.insert(ExternalAppHandler::EMAIL, i18n("Email")); | 87 | mExternalAppsMap.insert(ExternalAppHandler::EMAIL, i18n("Email")); |
88 | mExternalAppsMap.insert(ExternalAppHandler::PHONE, i18n("Phone")); | 88 | mExternalAppsMap.insert(ExternalAppHandler::PHONE, i18n("Phone")); |
89 | mExternalAppsMap.insert(ExternalAppHandler::SMS, i18n("SMS")); | 89 | mExternalAppsMap.insert(ExternalAppHandler::SMS, i18n("SMS")); |
90 | mExternalAppsMap.insert(ExternalAppHandler::FAX, i18n("Fax")); | 90 | mExternalAppsMap.insert(ExternalAppHandler::FAX, i18n("Fax")); |
91 | mExternalAppsMap.insert(ExternalAppHandler::PAGER, i18n("Pager")); | 91 | mExternalAppsMap.insert(ExternalAppHandler::PAGER, i18n("Pager")); |
92 | mExternalAppsMap.insert(ExternalAppHandler::SIP, i18n("SIP")); | 92 | mExternalAppsMap.insert(ExternalAppHandler::SIP, i18n("SIP")); |
93 | 93 | ||
94 | 94 | ||
95 | QVBoxLayout *topLayout = new QVBoxLayout( this, 0, | 95 | QVBoxLayout *topLayout = new QVBoxLayout( this, 0, |
96 | KDialog::spacingHint() ); | 96 | KDialog::spacingHint() ); |
97 | 97 | ||
98 | tabWidget = new QTabWidget( this ); | 98 | tabWidget = new QTabWidget( this ); |
99 | topLayout->addWidget( tabWidget ); | 99 | topLayout->addWidget( tabWidget ); |
100 | 100 | ||
101 | 101 | ||
102 | setupLocaleTab(); | 102 | setupLocaleTab(); |
103 | setupLocaleDateTab(); | 103 | setupLocaleDateTab(); |
104 | setupTimeZoneTab(); | 104 | setupTimeZoneTab(); |
105 | setupExternalAppTab(); | 105 | setupExternalAppTab(); |
106 | 106 | ||
107 | } | 107 | } |
108 | void KDEPIMConfigWidget::showTimeZoneTab() | 108 | void KDEPIMConfigWidget::showTimeZoneTab() |
109 | { | 109 | { |
110 | tabWidget->setCurrentPage ( 2 ) ; | 110 | tabWidget->setCurrentPage ( 3 ) ; |
111 | } | 111 | } |
112 | void KDEPIMConfigWidget::setupExternalAppTab() | 112 | void KDEPIMConfigWidget::setupExternalAppTab() |
113 | { | 113 | { |
114 | QWidget *externalAppsPage = new QWidget( this ); | 114 | QWidget *externalAppsPage = new QWidget( this ); |
115 | QVBoxLayout* layout = new QVBoxLayout( externalAppsPage, KDialog::marginHintSmall(), | 115 | QVBoxLayout* layout = new QVBoxLayout( externalAppsPage, KDialog::marginHintSmall(), |
116 | KDialog::spacingHintSmall() ); | 116 | KDialog::spacingHintSmall() ); |
117 | 117 | ||
118 | mExternalApps = new QComboBox( externalAppsPage ); | 118 | mExternalApps = new QComboBox( externalAppsPage ); |
119 | 119 | ||
120 | QMap<ExternalAppHandler::Types, QString>::Iterator it; | 120 | QMap<ExternalAppHandler::Types, QString>::Iterator it; |
121 | for( it = mExternalAppsMap.begin(); it != mExternalAppsMap.end(); ++it ) | 121 | for( it = mExternalAppsMap.begin(); it != mExternalAppsMap.end(); ++it ) |
122 | mExternalApps->insertItem( it.data(), it.key() ); | 122 | mExternalApps->insertItem( it.data(), it.key() ); |
123 | 123 | ||
124 | layout->addWidget( mExternalApps ); | 124 | layout->addWidget( mExternalApps ); |
125 | 125 | ||
126 | connect( mExternalApps, SIGNAL( activated( int ) ), | 126 | connect( mExternalApps, SIGNAL( activated( int ) ), |
127 | this, SLOT (externalapp_changed( int ) ) ); | 127 | this, SLOT (externalapp_changed( int ) ) ); |
128 | 128 | ||
129 | 129 | ||
130 | mExternalAppGroupBox = new QGroupBox( 0, Qt::Vertical, i18n( "Used Mail Client" ), externalAppsPage ); | 130 | mExternalAppGroupBox = new QGroupBox( 0, Qt::Vertical, i18n( "Used Mail Client" ), externalAppsPage ); |
131 | QGridLayout *boxLayout = new QGridLayout( mExternalAppGroupBox->layout(), 4, 2, -1, "gridlayout" ); | 131 | QGridLayout *boxLayout = new QGridLayout( mExternalAppGroupBox->layout(), 4, 2, -1, "gridlayout" ); |
132 | mExternalAppGroupBox->layout()->setMargin(5); | 132 | mExternalAppGroupBox->layout()->setMargin(5); |
133 | 133 | ||
134 | mClient = new QComboBox( mExternalAppGroupBox ); | 134 | mClient = new QComboBox( mExternalAppGroupBox ); |
135 | boxLayout->addMultiCellWidget( mClient, 0, 0, 0, 1 ); | 135 | boxLayout->addMultiCellWidget( mClient, 0, 0, 0, 1 ); |
136 | 136 | ||
137 | connect( mClient, SIGNAL( activated( int ) ), | 137 | connect( mClient, SIGNAL( activated( int ) ), |
138 | this, SLOT (client_changed( int ) ) ); | 138 | this, SLOT (client_changed( int ) ) ); |
139 | 139 | ||
140 | QLabel* lab = new QLabel( i18n("Channel:"), mExternalAppGroupBox); | 140 | QLabel* lab = new QLabel( i18n("Channel:"), mExternalAppGroupBox); |
141 | boxLayout->addWidget( lab, 1, 0 ); | 141 | boxLayout->addWidget( lab, 1, 0 ); |
142 | mChannel = new QLineEdit(mExternalAppGroupBox); | 142 | mChannel = new QLineEdit(mExternalAppGroupBox); |
143 | mChannel->setReadOnly(true); | 143 | mChannel->setReadOnly(true); |
144 | boxLayout->addMultiCellWidget( mChannel, 2 , 2, 0, 1 ); | 144 | boxLayout->addMultiCellWidget( mChannel, 2 , 2, 0, 1 ); |
145 | 145 | ||
146 | lab = new QLabel( i18n("Message:"), mExternalAppGroupBox); | 146 | lab = new QLabel( i18n("Message:"), mExternalAppGroupBox); |
147 | boxLayout->addWidget( lab, 3, 0 ); | 147 | boxLayout->addWidget( lab, 3, 0 ); |
148 | mMessage = new QLineEdit(mExternalAppGroupBox); | 148 | mMessage = new QLineEdit(mExternalAppGroupBox); |
149 | mMessage->setReadOnly(true); | 149 | mMessage->setReadOnly(true); |
150 | boxLayout->addWidget( mMessage , 4, 0); | 150 | boxLayout->addWidget( mMessage , 4, 0); |
151 | 151 | ||
152 | lab = new QLabel( i18n("Parameters:"), mExternalAppGroupBox); | 152 | lab = new QLabel( i18n("Parameters:"), mExternalAppGroupBox); |
153 | boxLayout->addWidget( lab, 3, 1 ); | 153 | boxLayout->addWidget( lab, 3, 1 ); |
154 | mParameters = new QLineEdit(mExternalAppGroupBox); | 154 | mParameters = new QLineEdit(mExternalAppGroupBox); |
155 | mParameters->setReadOnly(true); | 155 | mParameters->setReadOnly(true); |
156 | boxLayout->addWidget( mParameters, 4, 1 ); | 156 | boxLayout->addWidget( mParameters, 4, 1 ); |
157 | 157 | ||
158 | lab = new QLabel( i18n("HINT: Delimiter=; Name=%1,Email=%2"), mExternalAppGroupBox); | 158 | lab = new QLabel( i18n("HINT: Delimiter=; Name=%1,Email=%2"), mExternalAppGroupBox); |
159 | boxLayout->addMultiCellWidget( lab, 5, 5, 0, 1 ); | 159 | boxLayout->addMultiCellWidget( lab, 5, 5, 0, 1 ); |
160 | 160 | ||
161 | 161 | ||
162 | lab = new QLabel( i18n("extra Message:"), mExternalAppGroupBox); | 162 | lab = new QLabel( i18n("extra Message:"), mExternalAppGroupBox); |
163 | boxLayout->addWidget( lab, 6, 0 ); | 163 | boxLayout->addWidget( lab, 6, 0 ); |
164 | mMessage2 = new QLineEdit(mExternalAppGroupBox); | 164 | mMessage2 = new QLineEdit(mExternalAppGroupBox); |
165 | mMessage2->setReadOnly(true); | 165 | mMessage2->setReadOnly(true); |
166 | boxLayout->addWidget( mMessage2 , 7, 0); | 166 | boxLayout->addWidget( mMessage2 , 7, 0); |
167 | 167 | ||
168 | lab = new QLabel( i18n("extra Parameters:"), mExternalAppGroupBox); | 168 | lab = new QLabel( i18n("extra Parameters:"), mExternalAppGroupBox); |
169 | boxLayout->addWidget( lab, 6, 1 ); | 169 | boxLayout->addWidget( lab, 6, 1 ); |
170 | mParameters2 = new QLineEdit(mExternalAppGroupBox); | 170 | mParameters2 = new QLineEdit(mExternalAppGroupBox); |
171 | mParameters2->setReadOnly(true); | 171 | mParameters2->setReadOnly(true); |
172 | boxLayout->addWidget( mParameters2, 7, 1 ); | 172 | boxLayout->addWidget( mParameters2, 7, 1 ); |
173 | 173 | ||
174 | lab = new QLabel( i18n("HINT: Emails=%1,Attachments=%2"), mExternalAppGroupBox); | 174 | lab = new QLabel( i18n("HINT: Emails=%1,Attachments=%2"), mExternalAppGroupBox); |
@@ -214,145 +214,153 @@ void KDEPIMConfigWidget::setupLocaleDateTab() | |||
214 | if ( QApplication::desktop()->width() < 480 ) | 214 | if ( QApplication::desktop()->width() < 480 ) |
215 | format = "(%Y-%m-%d)"; | 215 | format = "(%Y-%m-%d)"; |
216 | else | 216 | else |
217 | format = "(%Y-%m-%d|%A %Y %B %d)"; | 217 | format = "(%Y-%m-%d|%A %Y %B %d)"; |
218 | syncPrefsGroup->addRadio(i18n("2004-03-24 "+format)); | 218 | syncPrefsGroup->addRadio(i18n("2004-03-24 "+format)); |
219 | syncPrefsGroup->addRadio(i18n("User defined")); | 219 | syncPrefsGroup->addRadio(i18n("User defined")); |
220 | if ( QApplication::desktop()->width() < 480 ) { | 220 | if ( QApplication::desktop()->width() < 480 ) { |
221 | syncPrefsGroup->groupBox()->layout()->setMargin( 5 ); | 221 | syncPrefsGroup->groupBox()->layout()->setMargin( 5 ); |
222 | syncPrefsGroup->groupBox()->layout()->setSpacing( 0 ); | 222 | syncPrefsGroup->groupBox()->layout()->setSpacing( 0 ); |
223 | } | 223 | } |
224 | topLayout->addMultiCellWidget( (QWidget*)syncPrefsGroup->groupBox(),iii,iii,0,1); | 224 | topLayout->addMultiCellWidget( (QWidget*)syncPrefsGroup->groupBox(),iii,iii,0,1); |
225 | ++iii; | 225 | ++iii; |
226 | ++iii; | 226 | ++iii; |
227 | QLabel * lab; | 227 | QLabel * lab; |
228 | mUserDateFormatLong = new QLineEdit(topFrame); | 228 | mUserDateFormatLong = new QLineEdit(topFrame); |
229 | lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame); | 229 | lab = new QLabel(mUserDateFormatLong, i18n("User long date:"), topFrame); |
230 | topLayout->addWidget(lab ,iii,0); | 230 | topLayout->addWidget(lab ,iii,0); |
231 | topLayout->addWidget(mUserDateFormatLong,iii,1); | 231 | topLayout->addWidget(mUserDateFormatLong,iii,1); |
232 | ++iii; | 232 | ++iii; |
233 | mUserDateFormatShort = new QLineEdit(topFrame); | 233 | mUserDateFormatShort = new QLineEdit(topFrame); |
234 | lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame); | 234 | lab = new QLabel(mUserDateFormatShort, i18n("User short date:"), topFrame); |
235 | topLayout->addWidget(lab ,iii,0); | 235 | topLayout->addWidget(lab ,iii,0); |
236 | topLayout->addWidget(mUserDateFormatShort,iii,1); | 236 | topLayout->addWidget(mUserDateFormatShort,iii,1); |
237 | ++iii; | 237 | ++iii; |
238 | lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame); | 238 | lab = new QLabel( i18n("Monday 19 April 2004: %A %d %B %Y"), topFrame); |
239 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 239 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
240 | ++iii; | 240 | ++iii; |
241 | lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame); | 241 | lab = new QLabel( i18n("Mon 19.04.04: %a %d.%m.%y"), topFrame); |
242 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 242 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
243 | ++iii; | 243 | ++iii; |
244 | lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame); | 244 | lab = new QLabel( i18n("Mon, 19.Apr.04: %a, %d.%b.%y"), topFrame); |
245 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); | 245 | topLayout->addMultiCellWidget(lab ,iii,iii,0,1); |
246 | ++iii; | 246 | ++iii; |
247 | 247 | ||
248 | connect( mUserDateFormatLong, SIGNAL( textChanged ( const QString & )), this, SLOT( textChanged ( const QString & )) ); | 248 | connect( mUserDateFormatLong, SIGNAL( textChanged ( const QString & )), this, SLOT( textChanged ( const QString & )) ); |
249 | connect( mUserDateFormatShort, SIGNAL( textChanged ( const QString & )), this, SLOT( textChanged ( const QString & )) ); | 249 | connect( mUserDateFormatShort, SIGNAL( textChanged ( const QString & )), this, SLOT( textChanged ( const QString & )) ); |
250 | 250 | ||
251 | 251 | ||
252 | tabWidget->addTab( topFrame, i18n( "Date Format" ) ); | 252 | tabWidget->addTab( topFrame, i18n( "Date Format" ) ); |
253 | } | 253 | } |
254 | 254 | ||
255 | void KDEPIMConfigWidget::setupLocaleTab() | 255 | void KDEPIMConfigWidget::setupLocaleTab() |
256 | { | 256 | { |
257 | 257 | ||
258 | QWidget *topFrame = new QWidget( this ); | 258 | QWidget *topFrame = new QWidget( this ); |
259 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); | 259 | QGridLayout *topLayout = new QGridLayout(topFrame,4,2); |
260 | 260 | ||
261 | topLayout->setSpacing(KDialog::spacingHint()); | 261 | topLayout->setSpacing(KDialog::spacingHint()); |
262 | topLayout->setMargin(KDialog::marginHint()); | 262 | topLayout->setMargin(KDialog::marginHint()); |
263 | int iii = 0; | 263 | int iii = 0; |
264 | KPrefsWidRadios *syncPrefsGroup = | 264 | KPrefsWidRadios *syncPrefsGroup = |
265 | addWidRadios(i18n("Language:(needs restart)"),&(KPimGlobalPrefs::instance()->mPreferredLanguage),topFrame); | 265 | addWidRadios(i18n("Language:(needs restart)"),&(KPimGlobalPrefs::instance()->mPreferredLanguage),topFrame); |
266 | syncPrefsGroup->addRadio(i18n("English")); | 266 | syncPrefsGroup->addRadio(i18n("English")); |
267 | syncPrefsGroup->addRadio(i18n("German")); | 267 | syncPrefsGroup->addRadio(i18n("German")); |
268 | syncPrefsGroup->addRadio(i18n("French")); | 268 | syncPrefsGroup->addRadio(i18n("French")); |
269 | syncPrefsGroup->addRadio(i18n("Italian")); | 269 | syncPrefsGroup->addRadio(i18n("Italian")); |
270 | syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)")); | 270 | syncPrefsGroup->addRadio(i18n("User defined (usertranslation.txt)")); |
271 | if ( QApplication::desktop()->width() < 300 ) { | 271 | if ( QApplication::desktop()->width() < 300 ) { |
272 | syncPrefsGroup->groupBox()->layout()->setMargin( 5 ); | 272 | syncPrefsGroup->groupBox()->layout()->setMargin( 5 ); |
273 | syncPrefsGroup->groupBox()->layout()->setSpacing( 0 ); | 273 | syncPrefsGroup->groupBox()->layout()->setSpacing( 0 ); |
274 | } | 274 | } |
275 | topLayout->addMultiCellWidget( (QWidget*)syncPrefsGroup->groupBox(),iii,iii,0,1); | 275 | topLayout->addMultiCellWidget( (QWidget*)syncPrefsGroup->groupBox(),iii,iii,0,1); |
276 | ++iii; | 276 | ++iii; |
277 | 277 | ||
278 | |||
279 | tabWidget->addTab( topFrame, i18n( "Language" ) ); | ||
280 | topFrame = new QWidget( this ); | ||
281 | topLayout = new QGridLayout(topFrame,4,2); | ||
282 | |||
283 | topLayout->setSpacing(KDialog::spacingHint()); | ||
284 | topLayout->setMargin(KDialog::marginHint()); | ||
285 | iii = 0; | ||
278 | syncPrefsGroup = | 286 | syncPrefsGroup = |
279 | addWidRadios(i18n("Time Format(nr):"),&(KPimGlobalPrefs::instance()->mPreferredTime),topFrame); | 287 | addWidRadios(i18n("Time Format(nr):"),&(KPimGlobalPrefs::instance()->mPreferredTime),topFrame); |
280 | if ( QApplication::desktop()->width() > 300 ) | 288 | if ( QApplication::desktop()->width() > 300 ) |
281 | syncPrefsGroup->groupBox()->setOrientation (Qt::Vertical); | 289 | syncPrefsGroup->groupBox()->setOrientation (Qt::Vertical); |
282 | syncPrefsGroup->addRadio(i18n("24:00")); | 290 | syncPrefsGroup->addRadio(i18n("24:00")); |
283 | syncPrefsGroup->addRadio(i18n("12:00am")); | 291 | syncPrefsGroup->addRadio(i18n("12:00am")); |
284 | syncPrefsGroup->groupBox()->setOrientation (Qt::Vertical); | 292 | syncPrefsGroup->groupBox()->setOrientation (Qt::Vertical); |
285 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); | 293 | topLayout->addMultiCellWidget( syncPrefsGroup->groupBox(),iii,iii,0,1); |
286 | ++iii; | 294 | ++iii; |
287 | 295 | ||
288 | KPrefsWidBool *sb = addWidBool(i18n("Week starts on Sunday"), | 296 | KPrefsWidBool *sb = addWidBool(i18n("Week starts on Sunday"), |
289 | &(KPimGlobalPrefs::instance()->mWeekStartsOnSunday),topFrame); | 297 | &(KPimGlobalPrefs::instance()->mWeekStartsOnSunday),topFrame); |
290 | topLayout->addMultiCellWidget((QWidget*)sb->checkBox(), iii,iii,0,1); | 298 | topLayout->addMultiCellWidget((QWidget*)sb->checkBox(), iii,iii,0,1); |
291 | ++iii; | 299 | ++iii; |
292 | 300 | ||
293 | 301 | ||
294 | tabWidget->addTab( topFrame, i18n( "Locale" ) ); | 302 | tabWidget->addTab( topFrame, i18n( "Time Format" ) ); |
295 | 303 | ||
296 | } | 304 | } |
297 | 305 | ||
298 | 306 | ||
299 | void KDEPIMConfigWidget::setupTimeZoneTab() | 307 | void KDEPIMConfigWidget::setupTimeZoneTab() |
300 | { | 308 | { |
301 | QWidget *topFrame = new QWidget( this ); | 309 | QWidget *topFrame = new QWidget( this ); |
302 | QGridLayout *topLayout = new QGridLayout( topFrame, 5, 2); | 310 | QGridLayout *topLayout = new QGridLayout( topFrame, 5, 2); |
303 | topLayout->setSpacing(KDialog::spacingHintSmall()); | 311 | topLayout->setSpacing(KDialog::spacingHintSmall()); |
304 | topLayout->setMargin(KDialog::marginHintSmall()); | 312 | topLayout->setMargin(KDialog::marginHintSmall()); |
305 | 313 | ||
306 | QHBox *timeZoneBox = new QHBox( topFrame ); | 314 | QHBox *timeZoneBox = new QHBox( topFrame ); |
307 | topLayout->addMultiCellWidget( timeZoneBox, 0, 0, 0, 1 ); | 315 | topLayout->addMultiCellWidget( timeZoneBox, 0, 0, 0, 1 ); |
308 | 316 | ||
309 | new QLabel( i18n("Timezone:"), timeZoneBox ); | 317 | new QLabel( i18n("Timezone:"), timeZoneBox ); |
310 | mTimeZoneCombo = new QComboBox( timeZoneBox ); | 318 | mTimeZoneCombo = new QComboBox( timeZoneBox ); |
311 | if ( QApplication::desktop()->width() < 300 ) { | 319 | if ( QApplication::desktop()->width() < 300 ) { |
312 | mTimeZoneCombo->setMaximumWidth(150); | 320 | mTimeZoneCombo->setMaximumWidth(150); |
313 | } | 321 | } |
314 | 322 | ||
315 | QStringList list; | 323 | QStringList list; |
316 | list = KGlobal::locale()->timeZoneList(); | 324 | list = KGlobal::locale()->timeZoneList(); |
317 | mTimeZoneCombo->insertStringList(list); | 325 | mTimeZoneCombo->insertStringList(list); |
318 | 326 | ||
319 | // find the currently set time zone and select it | 327 | // find the currently set time zone and select it |
320 | QString sCurrentlySet = KPimGlobalPrefs::instance()->mTimeZoneId; | 328 | QString sCurrentlySet = KPimGlobalPrefs::instance()->mTimeZoneId; |
321 | int nCurrentlySet = 11; | 329 | int nCurrentlySet = 11; |
322 | for (int i = 0; i < mTimeZoneCombo->count(); i++) | 330 | for (int i = 0; i < mTimeZoneCombo->count(); i++) |
323 | { | 331 | { |
324 | if (mTimeZoneCombo->text(i) == sCurrentlySet) | 332 | if (mTimeZoneCombo->text(i) == sCurrentlySet) |
325 | { | 333 | { |
326 | nCurrentlySet = i; | 334 | nCurrentlySet = i; |
327 | break; | 335 | break; |
328 | } | 336 | } |
329 | } | 337 | } |
330 | mTimeZoneCombo->setCurrentItem(nCurrentlySet); | 338 | mTimeZoneCombo->setCurrentItem(nCurrentlySet); |
331 | int iii = 1; | 339 | int iii = 1; |
332 | KPrefsWidBool *sb = | 340 | KPrefsWidBool *sb = |
333 | addWidBool(i18n("Add 30 min to selected Timezone"), | 341 | addWidBool(i18n("Add 30 min to selected Timezone"), |
334 | &(KPimGlobalPrefs::instance()->mTimeZoneAdd30min),topFrame); | 342 | &(KPimGlobalPrefs::instance()->mTimeZoneAdd30min),topFrame); |
335 | topLayout->addMultiCellWidget((QWidget*)sb->checkBox(), iii,iii,0,1); | 343 | topLayout->addMultiCellWidget((QWidget*)sb->checkBox(), iii,iii,0,1); |
336 | ++iii; | 344 | ++iii; |
337 | sb = | 345 | sb = |
338 | addWidBool(i18n("Timezone has daylight saving"), | 346 | addWidBool(i18n("Timezone has daylight saving"), |
339 | &(KPimGlobalPrefs::instance()->mUseDaylightsaving),topFrame); | 347 | &(KPimGlobalPrefs::instance()->mUseDaylightsaving),topFrame); |
340 | topLayout->addMultiCellWidget((QWidget*)sb->checkBox(), iii,iii,0,1); | 348 | topLayout->addMultiCellWidget((QWidget*)sb->checkBox(), iii,iii,0,1); |
341 | ++iii; | 349 | ++iii; |
342 | QLabel* lab; | 350 | QLabel* lab; |
343 | 351 | ||
344 | lab = new QLabel( i18n("Actual start and end is the\nsunday before this date."), topFrame ); | 352 | lab = new QLabel( i18n("Actual start and end is the\nsunday before this date."), topFrame ); |
345 | topLayout->addMultiCellWidget(lab, iii,iii,0,1); | 353 | topLayout->addMultiCellWidget(lab, iii,iii,0,1); |
346 | ++iii; | 354 | ++iii; |
347 | 355 | ||
348 | lab = new QLabel( i18n("The year in the date is ignored."), topFrame ); | 356 | lab = new QLabel( i18n("The year in the date is ignored."), topFrame ); |
349 | topLayout->addMultiCellWidget(lab, iii,iii,0,1); | 357 | topLayout->addMultiCellWidget(lab, iii,iii,0,1); |
350 | ++iii; | 358 | ++iii; |
351 | lab = new QLabel( i18n("Daylight start:"), topFrame ); | 359 | lab = new QLabel( i18n("Daylight start:"), topFrame ); |
352 | topLayout->addWidget(lab, iii,0); | 360 | topLayout->addWidget(lab, iii,0); |
353 | mStartDateSavingEdit = new KDateEdit(topFrame); | 361 | mStartDateSavingEdit = new KDateEdit(topFrame); |
354 | topLayout->addWidget(mStartDateSavingEdit, iii,1); | 362 | topLayout->addWidget(mStartDateSavingEdit, iii,1); |
355 | ++iii; | 363 | ++iii; |
356 | 364 | ||
357 | lab = new QLabel( i18n("Daylight end:"), topFrame ); | 365 | lab = new QLabel( i18n("Daylight end:"), topFrame ); |
358 | topLayout->addWidget(lab, iii,0); | 366 | topLayout->addWidget(lab, iii,0); |