author | ulf69 <ulf69> | 2004-08-06 20:34:07 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-06 20:34:07 (UTC) |
commit | 4cbb59835b52b524c9fcbb377159d91a97e1b626 (patch) (unidiff) | |
tree | b2b4fe7fa037b1d4395f71873f086e11ac97e80f /kaddressbook/kabprefs.h | |
parent | 26697d027609149853b984874190e2624749b7e3 (diff) | |
download | kdepimpi-4cbb59835b52b524c9fcbb377159d91a97e1b626.zip kdepimpi-4cbb59835b52b524c9fcbb377159d91a97e1b626.tar.gz kdepimpi-4cbb59835b52b524c9fcbb377159d91a97e1b626.tar.bz2 |
kcmultidialog can now handle the configuration of multiple applications at once
-rw-r--r-- | kaddressbook/kabprefs.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/kaddressbook/kabprefs.h b/kaddressbook/kabprefs.h index c81a9a9..8f149ac 100644 --- a/kaddressbook/kabprefs.h +++ b/kaddressbook/kabprefs.h | |||
@@ -28,47 +28,37 @@ | |||
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 | |||
48 | // General | 40 | // General |
49 | bool mHonorSingleClick; | 41 | bool mHonorSingleClick; |
50 | bool mAutomaticNameParsing; | 42 | bool mAutomaticNameParsing; |
51 | int mCurrentIncSearchField; | 43 | int mCurrentIncSearchField; |
52 | 44 | ||
53 | #ifdef KAB_EMBEDDED | 45 | #ifdef KAB_EMBEDDED |
54 | // US introduce a nonconst way to return the config object. | 46 | // US introduce a nonconst way to return the config object. |
55 | KConfig* getConfig(); | 47 | KConfig* getConfig(); |
56 | 48 | ||
57 | bool mToolBarHor; | 49 | bool mToolBarHor; |
58 | bool mToolBarUp; | 50 | bool mToolBarUp; |
59 | bool mAskForQuit; | 51 | bool mAskForQuit; |
60 | 52 | ||
61 | int mEmailClient; | ||
62 | QString mEmailChannel; | ||
63 | 53 | ||
64 | /** Set preferences to default values */ | 54 | /** Set preferences to default values */ |
65 | // void usrSetDefaults(); | 55 | // void usrSetDefaults(); |
66 | 56 | ||
67 | /** Read preferences from config file */ | 57 | /** Read preferences from config file */ |
68 | // void usrReadConfig(); | 58 | // void usrReadConfig(); |
69 | 59 | ||
70 | /** Write preferences to config file */ | 60 | /** Write preferences to config file */ |
71 | // void usrWriteConfig(); | 61 | // void usrWriteConfig(); |
72 | #endif //KAB_EMBEDDED | 62 | #endif //KAB_EMBEDDED |
73 | 63 | ||
74 | 64 | ||