author | zautrix <zautrix> | 2004-10-27 21:34:55 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-27 21:34:55 (UTC) |
commit | 9c88346fc757fd1dc54b3fca151a2a610159d8cf (patch) (unidiff) | |
tree | 4a5de97ba71ce66eea914d55923d88aff3515c93 /kaddressbook/kabprefs.h | |
parent | 7f3cc07fab5f5f6ddd402c458341f1df3a144e2c (diff) | |
download | kdepimpi-9c88346fc757fd1dc54b3fca151a2a610159d8cf.zip kdepimpi-9c88346fc757fd1dc54b3fca151a2a610159d8cf.tar.gz kdepimpi-9c88346fc757fd1dc54b3fca151a2a610159d8cf.tar.bz2 |
several fixes
-rw-r--r-- | kaddressbook/kabprefs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kaddressbook/kabprefs.h b/kaddressbook/kabprefs.h index cc8413e..1e3b48f 100644 --- a/kaddressbook/kabprefs.h +++ b/kaddressbook/kabprefs.h | |||
@@ -36,60 +36,61 @@ class KABPrefs : public KPimPrefs | |||
36 | public: | 36 | public: |
37 | virtual ~KABPrefs(); | 37 | virtual ~KABPrefs(); |
38 | 38 | ||
39 | static KABPrefs *instance(); | 39 | static KABPrefs *instance(); |
40 | 40 | ||
41 | // General | 41 | // General |
42 | bool mHonorSingleClick; | 42 | bool mHonorSingleClick; |
43 | bool mAutomaticNameParsing; | 43 | bool mAutomaticNameParsing; |
44 | int mCurrentIncSearchField; | 44 | int mCurrentIncSearchField; |
45 | 45 | ||
46 | #ifdef KAB_EMBEDDED | 46 | #ifdef KAB_EMBEDDED |
47 | // US introduce a nonconst way to return the config object. | 47 | // US introduce a nonconst way to return the config object. |
48 | KConfig* getConfig(); | 48 | KConfig* getConfig(); |
49 | 49 | ||
50 | bool mToolBarHor; | 50 | bool mToolBarHor; |
51 | bool mToolBarUp; | 51 | bool mToolBarUp; |
52 | bool mAskForQuit; | 52 | bool mAskForQuit; |
53 | 53 | ||
54 | 54 | ||
55 | /** Set preferences to default values */ | 55 | /** Set preferences to default values */ |
56 | // void usrSetDefaults(); | 56 | // void usrSetDefaults(); |
57 | 57 | ||
58 | /** Read preferences from config file */ | 58 | /** Read preferences from config file */ |
59 | // void usrReadConfig(); | 59 | // void usrReadConfig(); |
60 | 60 | ||
61 | /** Write preferences to config file */ | 61 | /** Write preferences to config file */ |
62 | // void usrWriteConfig(); | 62 | // void usrWriteConfig(); |
63 | #endif //KAB_EMBEDDED | 63 | #endif //KAB_EMBEDDED |
64 | void usrReadConfig(); | 64 | void usrReadConfig(); |
65 | 65 | ||
66 | 66 | ||
67 | // GUI | 67 | // GUI |
68 | bool mFullMenuBarVisible; | ||
68 | bool mJumpButtonBarVisible; | 69 | bool mJumpButtonBarVisible; |
69 | bool mDetailsPageVisible; | 70 | bool mDetailsPageVisible; |
70 | bool mMultipleViewsAtOnce; | 71 | bool mMultipleViewsAtOnce; |
71 | bool mSearchWithReturn; | 72 | bool mSearchWithReturn; |
72 | QValueList<int> mExtensionsSplitter; | 73 | QValueList<int> mExtensionsSplitter; |
73 | QValueList<int> mDetailsSplitter; | 74 | QValueList<int> mDetailsSplitter; |
74 | 75 | ||
75 | // Extensions stuff | 76 | // Extensions stuff |
76 | int mCurrentExtension; | 77 | int mCurrentExtension; |
77 | QStringList mActiveExtensions; | 78 | QStringList mActiveExtensions; |
78 | 79 | ||
79 | // Views stuff | 80 | // Views stuff |
80 | QString mCurrentView; | 81 | QString mCurrentView; |
81 | QStringList mViewNames; | 82 | QStringList mViewNames; |
82 | 83 | ||
83 | // Filter | 84 | // Filter |
84 | int mCurrentFilter; | 85 | int mCurrentFilter; |
85 | 86 | ||
86 | void setCategoryDefaults(); | 87 | void setCategoryDefaults(); |
87 | QFont mDetailsFont; | 88 | QFont mDetailsFont; |
88 | 89 | ||
89 | private: | 90 | private: |
90 | KABPrefs(); | 91 | KABPrefs(); |
91 | 92 | ||
92 | static KABPrefs *sInstance; | 93 | static KABPrefs *sInstance; |
93 | }; | 94 | }; |
94 | 95 | ||
95 | #endif | 96 | #endif |