-rw-r--r-- | libkdepim/kpimprefs.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/libkdepim/kpimprefs.h b/libkdepim/kpimprefs.h index 05a564c..5186315 100644 --- a/libkdepim/kpimprefs.h +++ b/libkdepim/kpimprefs.h | |||
@@ -1,53 +1,67 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkdepim. | 2 | This file is part of libkdepim. |
3 | Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2002 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 KPIMPREFS_H | 23 | #ifndef KPIMPREFS_H |
24 | #define KPIMPREFS_H | 24 | #define KPIMPREFS_H |
25 | 25 | ||
26 | #include <qstringlist.h> | 26 | #include <qstringlist.h> |
27 | 27 | ||
28 | #include "kprefs.h" | 28 | #include "kprefs.h" |
29 | 29 | ||
30 | class KPimPrefs : public KPrefs | 30 | class KPimPrefs : public KPrefs |
31 | { | 31 | { |
32 | public: | 32 | public: |
33 | |||
33 | KPimPrefs( const QString &name = QString::null ); | 34 | KPimPrefs( const QString &name = QString::null ); |
34 | 35 | ||
35 | virtual ~KPimPrefs(); | 36 | virtual ~KPimPrefs(); |
36 | 37 | ||
37 | /** Set preferences to default values */ | 38 | /** Set preferences to default values */ |
38 | void usrSetDefaults(); | 39 | void usrSetDefaults(); |
39 | 40 | ||
40 | /** Read preferences from config file */ | 41 | /** Read preferences from config file */ |
41 | void usrReadConfig(); | 42 | void usrReadConfig(); |
42 | 43 | ||
43 | /** Write preferences to config file */ | 44 | /** Write preferences to config file */ |
44 | void usrWriteConfig(); | 45 | void usrWriteConfig(); |
45 | 46 | ||
47 | enum EMailClients { | ||
48 | OMPI = 0, | ||
49 | QTOPIA = 1, | ||
50 | OPIE = 2, | ||
51 | OTHER = 3 | ||
52 | }; | ||
53 | |||
54 | |||
46 | public: | 55 | public: |
47 | QStringList mCustomCategories; | 56 | QStringList mCustomCategories; |
48 | 57 | ||
58 | int mEmailClient; | ||
59 | QString mEmailChannel; | ||
60 | |||
61 | |||
62 | |||
49 | protected: | 63 | protected: |
50 | virtual void setCategoryDefaults() = 0; | 64 | virtual void setCategoryDefaults() = 0; |
51 | }; | 65 | }; |
52 | 66 | ||
53 | #endif | 67 | #endif |