summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/abconfig.h
Unidiff
Diffstat (limited to 'core/pim/addressbook/abconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/abconfig.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/core/pim/addressbook/abconfig.h b/core/pim/addressbook/abconfig.h
index c312179..68d087c 100644
--- a/core/pim/addressbook/abconfig.h
+++ b/core/pim/addressbook/abconfig.h
@@ -2,5 +2,5 @@
2#define _ABCONFIG_H_ 2#define _ABCONFIG_H_
3 3
4#include <qstringlist.h> 4#include <qstringlist.h>
5#include <qmainwindow.h> 5#include <qmainwindow.h>
6 6
@@ -18,5 +18,5 @@ public:
18 AbConfig(); 18 AbConfig();
19 ~AbConfig(); 19 ~AbConfig();
20 20
21 // Search Settings 21 // Search Settings
22 bool useRegExp() const; 22 bool useRegExp() const;
@@ -30,8 +30,9 @@ public:
30 bool fixedBars() const; 30 bool fixedBars() const;
31 LPSearchMode letterPickerSearch() const; 31 LPSearchMode letterPickerSearch() const;
32 32 const QString &category() const;
33
33 void setUseRegExp( bool v ); 34 void setUseRegExp( bool v );
34 void setUseWildCards( bool v ); 35 void setUseWildCards( bool v );
35 void setBeCaseSensitive( bool v ); 36 void setBeCaseSensitive( bool v );
36 void setUseQtMail( bool v ); 37 void setUseQtMail( bool v );
37 void setUseOpieMail( bool v ); 38 void setUseOpieMail( bool v );
@@ -41,4 +42,5 @@ public:
41 void setFixedBars( const bool fixed ); 42 void setFixedBars( const bool fixed );
42 void setLetterPickerSearch( const LPSearchMode mode ); 43 void setLetterPickerSearch( const LPSearchMode mode );
44 void setCategory( const QString &cat );
43 45
44 void operator= ( const AbConfig& cnf ); 46 void operator= ( const AbConfig& cnf );
@@ -56,5 +58,5 @@ protected:
56 bool m_useOpieMail; 58 bool m_useOpieMail;
57 bool m_useRegExp; 59 bool m_useRegExp;
58 bool m_beCaseSensitive; 60 bool m_beCaseSensitive;
59 int m_fontSize; 61 int m_fontSize;
60 QValueList<int> m_ordered; 62 QValueList<int> m_ordered;
@@ -62,4 +64,5 @@ protected:
62 bool m_fixedBars; 64 bool m_fixedBars;
63 int m_lpSearchMode; 65 int m_lpSearchMode;
66 QString m_category;
64 67
65 bool m_changed; 68 bool m_changed;