summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/configdlg.cpp
blob: c0195d1a77b15c1d644002f5baa3431d6fd1e5fc (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#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::useQtMail() const
{
	return m_useQtMail->isOn();
}
bool ConfigDlg::useOpieMail() const
{
	return m_useOpieMail->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 );
}
void ConfigDlg::setQtMail( bool v )
{
	m_useQtMail->setChecked( v );
}
void ConfigDlg::setOpieMail( bool v )
{
	m_useOpieMail->setChecked( v );
}