summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.h
blob: 8be469bc3ef0a1fea12e052faead38fca4e5ec44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _CONFIGDLG_H_
#define _CONFIGDLG_H_

#include "configdlg_base.h"

class ConfigDlg: public ConfigDlg_Base
{
    Q_OBJECT
public:
    ConfigDlg( QWidget *parent = 0, const char *name = 0 );
    
    // Search Settings
    bool useRegExp() const;
    bool useWildCards() const;
    bool beCaseSensitive() const;
    bool signalWrapAround() const;
    
    void setUseRegExp( bool v );
    void setUseWildCards( bool v );
    void setBeCaseSensitive( bool v ); 
    void setSignalWrapAround( bool v );
};


#endif