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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// (C) < 2002 to whoever created and edited this file before
// (C) 2002 Leo Savernik <l.savernik@aon.at>
// Generalizing the policy dialog
#include <qlayout.h>
#include <qlabel.h>
#include <qwhatsthis.h>
#include <qcombobox.h>
#include <klocale.h>
#include <kbuttonbox.h>
#include <kmessagebox.h>
#include <qpushbutton.h>
#include "policydlg.h"
#include "policies.h"
PolicyDialog::PolicyDialog( Policies *policies, QWidget *parent, const char *name )
: KDialogBase(parent, name, true, QString::null, Ok|Cancel, Ok, true),
policies(policies)
{
QFrame *main = makeMainWidget();
insertIdx = 1; // index where to insert additional panels
topl = new QVBoxLayout(main, 0, spacingHint());
QGridLayout *grid = new QGridLayout(topl, 2, 2);
grid->setColStretch(1, 1);
QLabel *l = new QLabel(i18n("&Host or domain name:"), main);
grid->addWidget(l, 0, 0);
le_domain = new QLineEdit(main);
l->setBuddy( le_domain );
grid->addWidget(le_domain, 0, 1);
connect( le_domain,SIGNAL(textChanged( const QString & )),
SLOT(slotTextChanged( const QString &)));
QWhatsThis::add(le_domain, i18n("Enter the name of a host (like www.kde.org) "
"or a domain, starting with a dot (like .kde.org or .org)") );
l_feature_policy = new QLabel(main);
grid->addWidget(l_feature_policy, 1, 0);
cb_feature_policy = new QComboBox(main);
l_feature_policy->setBuddy( cb_feature_policy );
policy_values << i18n("Use Global") << i18n("Accept") << i18n("Reject");
cb_feature_policy->insertStringList(policy_values);
grid->addWidget(cb_feature_policy, 1, 1);
le_domain->setFocus();
enableButtonOK(!le_domain->text().isEmpty());
}
PolicyDialog::FeatureEnabledPolicy PolicyDialog::featureEnabledPolicy() const {
return (FeatureEnabledPolicy)cb_feature_policy->currentItem();
}
void PolicyDialog::slotTextChanged( const QString &text)
{
enableButtonOK(!text.isEmpty());
}
void PolicyDialog::setDisableEdit( bool state, const QString& text )
{
le_domain->setText( text );
le_domain->setEnabled( state );
if( state )
cb_feature_policy->setFocus();
}
void PolicyDialog::refresh() {
FeatureEnabledPolicy pol;
if (policies->isFeatureEnabledPolicyInherited())
pol = InheritGlobal;
else if (policies->isFeatureEnabled())
pol = Accept;
else
pol = Reject;
cb_feature_policy->setCurrentItem(pol);
}
void PolicyDialog::setFeatureEnabledLabel(const QString &text) {
l_feature_policy->setText(text);
}
void PolicyDialog::setFeatureEnabledWhatsThis(const QString &text) {
QWhatsThis::add(cb_feature_policy, text);
}
void PolicyDialog::addPolicyPanel(QWidget *panel) {
topl->insertWidget(insertIdx++,panel);
}
QString PolicyDialog::featureEnabledPolicyText() const {
int pol = cb_feature_policy->currentItem();
if (pol >= 0 && pol < 3) // Keep in sync with FeatureEnabledPolicy
return policy_values[pol];
else
return QString::null;
}
void PolicyDialog::accept()
{
if( le_domain->text().isEmpty() )
{
KMessageBox::information( 0, i18n("You must first enter a domain name.") );
return;
}
FeatureEnabledPolicy pol = (FeatureEnabledPolicy)
cb_feature_policy->currentItem();
if (pol == InheritGlobal) {
policies->inheritFeatureEnabledPolicy();
} else if (pol == Reject) {
policies->setFeatureEnabled(false);
} else {
policies->setFeatureEnabled(true);
}
QDialog::accept();
}
#include "policydlg.moc"
|