-rw-r--r-- | kaddressbook/kabprefs.h | 58 |
1 files changed, 35 insertions, 23 deletions
diff --git a/kaddressbook/kabprefs.h b/kaddressbook/kabprefs.h index 370fc5b..c81a9a9 100644 --- a/kaddressbook/kabprefs.h +++ b/kaddressbook/kabprefs.h | |||
@@ -1,88 +1,100 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KAddressBook. | 2 | This file is part of KAddressBook. |
3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> | 3 | Copyright (c) 2002 Mike Pilone <mpilone@slac.com> |
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 | #ifndef KABPREFS_H | 24 | #ifndef KABPREFS_H |
25 | #define KABPREFS_H | 25 | #define KABPREFS_H |
26 | 26 | ||
27 | #include <qstringlist.h> | 27 | #include <qstringlist.h> |
28 | 28 | ||
29 | #include <libkdepim/kpimprefs.h> | 29 | #include <libkdepim/kpimprefs.h> |
30 | 30 | ||
31 | class KConfig; | 31 | class KConfig; |
32 | 32 | ||
33 | class KABPrefs : public KPimPrefs | 33 | class KABPrefs : public KPimPrefs |
34 | { | 34 | { |
35 | public: | 35 | public: |
36 | virtual ~KABPrefs(); | 36 | virtual ~KABPrefs(); |
37 | 37 | ||
38 | static KABPrefs *instance(); | 38 | static KABPrefs *instance(); |
39 | 39 | ||
40 | enum EMailClients { | ||
41 | OMPI = 0, | ||
42 | QTOPIA = 1, | ||
43 | OPIE = 2, | ||
44 | OTHER = 3 | ||
45 | }; | ||
46 | |||
47 | |||
40 | // General | 48 | // General |
41 | bool mHonorSingleClick; | 49 | bool mHonorSingleClick; |
42 | bool mAutomaticNameParsing; | 50 | bool mAutomaticNameParsing; |
43 | int mCurrentIncSearchField; | 51 | int mCurrentIncSearchField; |
44 | 52 | ||
45 | #ifdef KAB_EMBEDDED | 53 | #ifdef KAB_EMBEDDED |
46 | // US introduce a nonconst way to return the config object. | 54 | // US introduce a nonconst way to return the config object. |
47 | KConfig* getConfig(); | 55 | KConfig* getConfig(); |
48 | 56 | ||
49 | bool mToolBarHor; | 57 | bool mToolBarHor; |
50 | bool mToolBarUp; | 58 | bool mToolBarUp; |
51 | bool mAskForQuit; | 59 | bool mAskForQuit; |
60 | |||
61 | int mEmailClient; | ||
62 | QString mEmailChannel; | ||
63 | |||
52 | /** Set preferences to default values */ | 64 | /** Set preferences to default values */ |
53 | // void usrSetDefaults(); | 65 | // void usrSetDefaults(); |
54 | 66 | ||
55 | /** Read preferences from config file */ | 67 | /** Read preferences from config file */ |
56 | // void usrReadConfig(); | 68 | // void usrReadConfig(); |
57 | 69 | ||
58 | /** Write preferences to config file */ | 70 | /** Write preferences to config file */ |
59 | // void usrWriteConfig(); | 71 | // void usrWriteConfig(); |
60 | #endif //KAB_EMBEDDED | 72 | #endif //KAB_EMBEDDED |
61 | 73 | ||
62 | 74 | ||
63 | // GUI | 75 | // GUI |
64 | bool mJumpButtonBarVisible; | 76 | bool mJumpButtonBarVisible; |
65 | bool mDetailsPageVisible; | 77 | bool mDetailsPageVisible; |
66 | QValueList<int> mExtensionsSplitter; | 78 | QValueList<int> mExtensionsSplitter; |
67 | QValueList<int> mDetailsSplitter; | 79 | QValueList<int> mDetailsSplitter; |
68 | 80 | ||
69 | // Extensions stuff | 81 | // Extensions stuff |
70 | int mCurrentExtension; | 82 | int mCurrentExtension; |
71 | QStringList mActiveExtensions; | 83 | QStringList mActiveExtensions; |
72 | 84 | ||
73 | // Views stuff | 85 | // Views stuff |
74 | QString mCurrentView; | 86 | QString mCurrentView; |
75 | QStringList mViewNames; | 87 | QStringList mViewNames; |
76 | 88 | ||
77 | // Filter | 89 | // Filter |
78 | int mCurrentFilter; | 90 | int mCurrentFilter; |
79 | 91 | ||
80 | void setCategoryDefaults(); | 92 | void setCategoryDefaults(); |
81 | 93 | ||
82 | private: | 94 | private: |
83 | KABPrefs(); | 95 | KABPrefs(); |
84 | 96 | ||
85 | static KABPrefs *sInstance; | 97 | static KABPrefs *sInstance; |
86 | }; | 98 | }; |
87 | 99 | ||
88 | #endif | 100 | #endif |