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