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 <tqlayout.h>
#include <tqlabel.h>
#include <tqwhatsthis.h>
#include <tqcombobox.h>
#include <tdelocale.h>
#include <kbuttonbox.h>
#include <tdemessagebox.h>
#include <tqpushbutton.h>
#include "policydlg.h"
#include "policies.h"
PolicyDialog::PolicyDialog( Policies *policies, TQWidget *parent, const char *name )
: KDialogBase(parent, name, true, TQString::null, Ok|Cancel, Ok, true),
policies(policies)
{
TQFrame *main = makeMainWidget();
insertIdx = 1; // index where to insert additional panels
topl = new TQVBoxLayout(main, 0, spacingHint());
TQGridLayout *grid = new TQGridLayout(topl, 2, 2);
grid->setColStretch(1, 1);
TQLabel *l = new TQLabel(i18n("&Host or domain name:"), main);
grid->addWidget(l, 0, 0);
le_domain = new TQLineEdit(main);
l->setBuddy( le_domain );
grid->addWidget(le_domain, 0, 1);
connect( le_domain,TQT_SIGNAL(textChanged( const TQString & )),
TQT_SLOT(slotTextChanged( const TQString &)));
TQWhatsThis::add(le_domain, i18n("Enter the name of a host (like www.trinitydesktop.org) "
"or a domain, starting with a dot (like .trinitydesktop.org or .org)") );
l_feature_policy = new TQLabel(main);
grid->addWidget(l_feature_policy, 1, 0);
cb_feature_policy = new TQComboBox(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 TQString &text)
{
enableButtonOK(!text.isEmpty());
}
void PolicyDialog::setDisableEdit( bool state, const TQString& 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 TQString &text) {
l_feature_policy->setText(text);
}
void PolicyDialog::setFeatureEnabledWhatsThis(const TQString &text) {
TQWhatsThis::add(cb_feature_policy, text);
}
void PolicyDialog::addPolicyPanel(TQWidget *panel) {
topl->insertWidget(insertIdx++,panel);
}
TQString 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 TQString::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);
}
TQDialog::accept();
}
#include "policydlg.moc"
|