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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/**
* Copyright (c) 2000- Dawit Alemayehu <adawit@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <tqpushbutton.h>
#include <tqwhatsthis.h>
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqvalidator.h>
#include <klineedit.h>
#include <kcombobox.h>
#include <klocale.h>
#include "policydlg.h"
#include "policydlg_ui.h"
class DomainLineValidator : public QValidator
{
public:
DomainLineValidator(TQObject *parent)
:TQValidator(parent, "domainValidator")
{
}
State validate(TQString &input, int &) const
{
if (input.isEmpty() || (input == "."))
return Intermediate;
int length = input.length();
for(int i = 0 ; i < length; i++)
{
if (!input[i].isLetterOrNumber() && input[i] != '.' && input[i] != '-')
return Invalid;
}
return Acceptable;
}
};
PolicyDlg::PolicyDlg (const TQString& caption, TQWidget *parent,
const char *name)
: KDialogBase(parent, name, true, caption, Ok|Cancel, Ok, true)
{
m_dlgUI = new PolicyDlgUI (this);
setMainWidget(m_dlgUI);
m_dlgUI->leDomain->setValidator(new DomainLineValidator(m_dlgUI->leDomain));
m_dlgUI->cbPolicy->setMinimumWidth( m_dlgUI->cbPolicy->fontMetrics().maxWidth() * 25 );
enableButtonOK( false );
connect(m_dlgUI->leDomain, TQT_SIGNAL(textChanged(const TQString&)),
TQT_SLOT(slotTextChanged(const TQString&)));
setFixedSize (tqsizeHint());
m_dlgUI->leDomain->setFocus ();
}
void PolicyDlg::setEnableHostEdit( bool state, const TQString& host )
{
if ( !host.isEmpty() )
m_dlgUI->leDomain->setText( host );
m_dlgUI->leDomain->setEnabled( state );
}
void PolicyDlg::setPolicy (int policy)
{
if ( policy > -1 && policy <= static_cast<int>(m_dlgUI->cbPolicy->count()) )
m_dlgUI->cbPolicy->setCurrentItem(policy-1);
if ( !m_dlgUI->leDomain->isEnabled() )
m_dlgUI->cbPolicy->setFocus();
}
int PolicyDlg::advice () const
{
return m_dlgUI->cbPolicy->currentItem() + 1;
}
TQString PolicyDlg::domain () const
{
return m_dlgUI->leDomain->text();
}
void PolicyDlg::slotTextChanged( const TQString& text )
{
enableButtonOK( text.length() > 1 );
}
#include "policydlg.moc"
|