summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.h
Unidiff
Diffstat (limited to 'core/pim/addressbook/configdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/configdlg.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/pim/addressbook/configdlg.h b/core/pim/addressbook/configdlg.h
new file mode 100644
index 0000000..8be469b
--- a/dev/null
+++ b/core/pim/addressbook/configdlg.h
@@ -0,0 +1,25 @@
1#ifndef _CONFIGDLG_H_
2#define _CONFIGDLG_H_
3
4#include "configdlg_base.h"
5
6class ConfigDlg: public ConfigDlg_Base
7{
8 Q_OBJECT
9public:
10 ConfigDlg( QWidget *parent = 0, const char *name = 0 );
11
12 // Search Settings
13 bool useRegExp() const;
14 bool useWildCards() const;
15 bool beCaseSensitive() const;
16 bool signalWrapAround() const;
17
18 void setUseRegExp( bool v );
19 void setUseWildCards( bool v );
20 void setBeCaseSensitive( bool v );
21 void setSignalWrapAround( bool v );
22};
23
24
25#endif