summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.cpp
blob: b7c3b774fcf21d760d7b1004698e8503e5dcba21 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "configdlg.h"
#include <qcheckbox.h>
#include <qradiobutton.h>

ConfigDlg::ConfigDlg( QWidget *parent = 0, const char *name = 0 ):
	ConfigDlg_Base(parent, name, true )
{}
    

bool ConfigDlg::useRegExp() const
{
	return m_useRegExp->isOn();
}
bool ConfigDlg::useWildCards() const
{
	return m_useWildCard->isOn();
}
bool ConfigDlg::beCaseSensitive() const
{
	return m_useCaseSensitive->isChecked();
}
bool ConfigDlg::signalWrapAround() const
{
	return m_signalWrapAround->isChecked();
}
void ConfigDlg::setUseRegExp( bool v )
{
	m_useRegExp->setChecked( v );
}
void ConfigDlg::setUseWildCards( bool v )
{
	m_useWildCard->setChecked( v );
}
void ConfigDlg::setBeCaseSensitive( bool v )
{
	m_useCaseSensitive->setChecked( v );
}
void ConfigDlg::setSignalWrapAround( bool v )
{
	m_signalWrapAround->setChecked( v );
}