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
|
/***************************************************************************
* Copyright (C) 2012 by Timothy Pearson *
* kb9vqf@pearsoncomputing.net *
* *
* 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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <tdelocale.h>
#include <klineedit.h>
#include <ktextedit.h>
#include <knuminput.h>
#include <tdeactionselector.h>
#include <tqlistbox.h>
#include <kpushbutton.h>
#include <tqpixmap.h>
#include <tqiconset.h>
#include <tqlabel.h>
#include "realmpropertiesdialog.h"
RealmPropertiesDialog::RealmPropertiesDialog(LDAPRealmConfigList *realmList, TQString realmName, TQWidget* parent, const char* name)
: KDialogBase(parent, name, true, i18n("Realm Properties"), Ok|Cancel, Ok, true), m_realmList(realmList), m_realmName(realmName)
{
m_base = new BondRealmPage(this);
m_base->txtRealmName->setEnabled(false);
m_base->txtKDC->setEnabled(false);
m_base->txtKDCPort->setEnabled(false);
m_base->txtAdminServer->setEnabled(false);
m_base->txtAdminServerPort->setEnabled(false);
m_base->px_introSidebar->hide();
LDAPRealmConfig realm = (*m_realmList)[m_realmName];
// Load values into dialog
m_base->txtRealmName->setText(realm.name);
m_base->txtUIDOffset->setValue(realm.uid_offset);
m_base->txtGIDOffset->setValue(realm.gid_offset);
m_base->txtDomains->setText(realm.domain_mappings.join("\n"));
m_base->txtKDC->setText(realm.kdc);
m_base->txtKDCPort->setValue(realm.kdc_port);
m_base->txtAdminServer->setText(realm.admin_server);
m_base->txtAdminServerPort->setValue(realm.admin_server_port);
m_base->checkRequireEKU->setChecked(realm.pkinit_require_eku);
m_base->checkRequireKrbtgtOtherName->setChecked(realm.pkinit_require_krbtgt_otherName);
m_base->checkWin2k->setChecked(realm.win2k_pkinit);
m_base->checkWin2kPkinitRequireBinding->setChecked(realm.win2k_pkinit_require_binding);
setMainWidget(m_base);
}
void RealmPropertiesDialog::slotOk() {
// Load values into realmcfg
LDAPRealmConfig realm = (*m_realmList)[m_realmName];
realm.name = m_base->txtRealmName->text();
realm.uid_offset = m_base->txtUIDOffset->value();
realm.gid_offset = m_base->txtGIDOffset->value();
realm.domain_mappings = TQStringList::split("\n", m_base->txtDomains->text(), FALSE);
realm.kdc = m_base->txtKDC->text();
realm.kdc_port = m_base->txtKDCPort->value();
realm.admin_server = m_base->txtAdminServer->text();
realm.admin_server_port = m_base->txtAdminServerPort->value();
realm.pkinit_require_eku = m_base->checkRequireEKU->isChecked();
realm.pkinit_require_krbtgt_otherName = m_base->checkRequireKrbtgtOtherName->isChecked();
realm.win2k_pkinit = m_base->checkWin2k->isChecked();
realm.win2k_pkinit_require_binding = m_base->checkWin2kPkinitRequireBinding->isChecked();
// Remove m_realmName and re-add it
m_realmList->remove(m_realmName);
m_realmList->insert(m_realmName, realm);
accept();
}
#include "realmpropertiesdialog.moc"
|