summaryrefslogtreecommitdiffabout
path: root/kmicromail/koprefsdialog.h
Unidiff
Diffstat (limited to 'kmicromail/koprefsdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/koprefsdialog.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kmicromail/koprefsdialog.h b/kmicromail/koprefsdialog.h
index 615574b..a0416ae 100644
--- a/kmicromail/koprefsdialog.h
+++ b/kmicromail/koprefsdialog.h
@@ -1,179 +1,180 @@
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
37class KColorButton; 37class KColorButton;
38class QSpinBox; 38class QSpinBox;
39class QSlider; 39class QSlider;
40class KURLRequester; 40class KURLRequester;
41class QComboBox; 41class QComboBox;
42class QLineEdit; 42class QLineEdit;
43class QStringList; 43class QStringList;
44 44
45/** Dialog to change the korganizer configuration. 45/** Dialog to change the korganizer configuration.
46 */ 46 */
47class KOPrefsDialog : public KPrefsDialog 47class 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
55protected: 55protected:
56 void usrReadConfig(); 56 void usrReadConfig();
57 void usrWriteConfig(); 57 void usrWriteConfig();
58 58
59 void setupMainTab(); 59 void setupMainTab();
60 void setupGlobalTab(); 60 void setupGlobalTab();
61 void setupMailTab(); 61 void setupMailTab();
62 void setupFontsTab(); 62 void setupFontsTab();
63 private: 63 private:
64 KDEPIMConfigWidget* kdelibcfg; 64 KDEPIMConfigWidget* kdelibcfg;
65 QLineEdit *mNameEdit; 65 QLineEdit *mNameEdit;
66 QLineEdit *mCodecEdit;
66 QLineEdit *mEmailEdit; 67 QLineEdit *mEmailEdit;
67 QLabel *mNameLabel; 68 QLabel *mNameLabel;
68 QLabel *mEmailLabel; 69 QLabel *mEmailLabel;
69#if 0 70#if 0
70 /* 71 /*
71 public slots: 72 public slots:
72 void showPrinterTab(); 73 void showPrinterTab();
73 74
74 75
75 void updateCategories(); 76 void updateCategories();
76 void showSyncPage(); 77 void showSyncPage();
77 protected slots: 78 protected slots:
78 void selectSoundFile(); 79 void selectSoundFile();
79 void setCategoryColor(); 80 void setCategoryColor();
80 void updateCategoryColor(); 81 void updateCategoryColor();
81 void updateTimezoneOffset( int ); 82 void updateTimezoneOffset( int );
82 83
83 84
84 void warningExperimental(bool on); 85 void warningExperimental(bool on);
85 void warningGroupScheduling(); 86 void warningGroupScheduling();
86 void warningProjectView(); 87 void warningProjectView();
87 88
88 void toggleEmailSettings(bool); 89 void toggleEmailSettings(bool);
89 90
90 //additional emails 91 //additional emails
91 void addItem(); 92 void addItem();
92 void removeItem(); 93 void removeItem();
93 void updateItem(); 94 void updateItem();
94 void updateInput(); 95 void updateInput();
95*/ 96*/
96 protected: 97 protected:
97 void usrReadConfig(); 98 void usrReadConfig();
98 void usrWriteConfig(); 99 void usrWriteConfig();
99 100
100 void setupMainTab(); 101 void setupMainTab();
101 void setupTimeTab(); 102 void setupTimeTab();
102 void setupTimeZoneTab(); 103 void setupTimeZoneTab();
103 void setupLocaleTab(); 104 void setupLocaleTab();
104 void setupLocaleDateTab(); 105 void setupLocaleDateTab();
105 void setupFontsTab(); 106 void setupFontsTab();
106 void setupColorsTab(); 107 void setupColorsTab();
107 void setupViewsTab(); 108 void setupViewsTab();
108 void setupDisplayTab(); 109 void setupDisplayTab();
109 void setupPrinterTab(); 110 void setupPrinterTab();
110 void setupGroupSchedulingTab(); 111 void setupGroupSchedulingTab();
111 void setupGroupAutomationTab(); 112 void setupGroupAutomationTab();
112 void setupSyncTab(); 113 void setupSyncTab();
113 void setupSyncAlgTab(); 114 void setupSyncAlgTab();
114 115
115 void setCombo(QComboBox *combo,const QString & text, const QStringList *tags = 0); 116 void setCombo(QComboBox *combo,const QString & text, const QStringList *tags = 0);
116 117
117 118
118 private: 119 private:
119 KPrefsWidBool *mEnableGroupScheduling; 120 KPrefsWidBool *mEnableGroupScheduling;
120 KPrefsWidBool *mEnableProjectView; 121 KPrefsWidBool *mEnableProjectView;
121 122
122 QFrame *mPrinterTab; 123 QFrame *mPrinterTab;
123 124
124 QLineEdit *nameEdit; 125 QLineEdit *nameEdit;
125 QLineEdit *emailEdit; 126 QLineEdit *emailEdit;
126 127
127 QComboBox *timeCombo; 128 QComboBox *timeCombo;
128 QComboBox *tzCombo; 129 QComboBox *tzCombo;
129 130
130 // widgets holding preferences data 131 // widgets holding preferences data
131 QLineEdit *mNameEdit; 132 QLineEdit *mNameEdit;
132 QLineEdit *mEmailEdit; 133 QLineEdit *mEmailEdit;
133 QLabel *mNameLabel; 134 QLabel *mNameLabel;
134 QLabel *mEmailLabel; 135 QLabel *mEmailLabel;
135 QLineEdit *mAdditionalEdit; 136 QLineEdit *mAdditionalEdit;
136 QSpinBox *mAutoSaveIntervalSpin; 137 QSpinBox *mAutoSaveIntervalSpin;
137 QSpinBox *mPrioSpin; 138 QSpinBox *mPrioSpin;
138 // QListView *mAMails; 139 // QListView *mAMails;
139 QLineEdit *aEmailsEdit; 140 QLineEdit *aEmailsEdit;
140 141
141 QComboBox *mTimeZoneCombo; 142 QComboBox *mTimeZoneCombo;
142 QStringList tzonenames; 143 QStringList tzonenames;
143 QSpinBox *mStartTimeSpin; 144 QSpinBox *mStartTimeSpin;
144 QSpinBox *mDefaultDurationSpin; 145 QSpinBox *mDefaultDurationSpin;
145 QComboBox *mAlarmTimeCombo; 146 QComboBox *mAlarmTimeCombo;
146 147
147 QComboBox *mCategoryCombo; 148 QComboBox *mCategoryCombo;
148 KColorButton *mCategoryButton; 149 KColorButton *mCategoryButton;
149 QDict<QColor> mCategoryDict; 150 QDict<QColor> mCategoryDict;
150 151
151 QSlider *mHourSizeSlider; 152 QSlider *mHourSizeSlider;
152 153
153 QSpinBox *mNextXDaysSpin; 154 QSpinBox *mNextXDaysSpin;
154 QSpinBox *mWhatsNextSpin; 155 QSpinBox *mWhatsNextSpin;
155 156
156 QLineEdit * mRemoteIPEdit; 157 QLineEdit * mRemoteIPEdit;
157 QLineEdit * mRemoteUser; 158 QLineEdit * mRemoteUser;
158 QLineEdit * mRemotePassWd; 159 QLineEdit * mRemotePassWd;
159 QLineEdit * mRemoteFile; 160 QLineEdit * mRemoteFile;
160 QLineEdit * mLocalTempFile; 161 QLineEdit * mLocalTempFile;
161 QWidget* mSetupSyncAlgTab; 162 QWidget* mSetupSyncAlgTab;
162 QLineEdit * mUserDateFormatLong; 163 QLineEdit * mUserDateFormatLong;
163 QLineEdit * mUserDateFormatShort; 164 QLineEdit * mUserDateFormatShort;
164 165
165 QSpinBox *mTimezoneOffsetSpin; 166 QSpinBox *mTimezoneOffsetSpin;
166 QSpinBox *mDaylightsavingStart; 167 QSpinBox *mDaylightsavingStart;
167 QSpinBox *mDaylightsavingEnd; 168 QSpinBox *mDaylightsavingEnd;
168 KDateEdit* mStartDateSavingEdit; 169 KDateEdit* mStartDateSavingEdit;
169 KDateEdit* mEndDateSavingEdit; 170 KDateEdit* mEndDateSavingEdit;
170 QSpinBox * mAlarmPlayBeeps; 171 QSpinBox * mAlarmPlayBeeps;
171 QSpinBox * mAlarmSuspendTime; 172 QSpinBox * mAlarmSuspendTime;
172 QSpinBox * mAlarmSuspendCount; 173 QSpinBox * mAlarmSuspendCount;
173 QSpinBox * mAlarmBeepInterval; 174 QSpinBox * mAlarmBeepInterval;
174 175
175 QLineEdit * mDefaultAlarmFile; 176 QLineEdit * mDefaultAlarmFile;
176#endif 177#endif
177}; 178};
178 179
179#endif 180#endif