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
|
/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
** If you wish to add, delete or rename slots use TQt Designer which will
** update this file, preserving your code. Create an init() slot in place of
** a constructor, and a destroy() slot in place of a destructor.
*****************************************************************************/
/******************************************************************************
* *
* This file is part of KSambaPlugin. *
* *
* KSambaPlugin 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. *
* *
* KSambaPlugin 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 KSambaPlugin; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
* *
******************************************************************************/
void KcmInterface::init()
{
addShareBtn->setIconSet(SmallIconSet("filenew"));
editShareBtn->setIconSet(SmallIconSet("edit"));
removeShareBtn->setIconSet(SmallIconSet("editdelete"));
editDefaultShareBtn->setIconSet(SmallIconSet("queue"));
addPrinterBtn->setIconSet(SmallIconSet("filenew"));
editPrinterBtn->setIconSet(SmallIconSet("edit"));
removePrinterBtn->setIconSet(SmallIconSet("editdelete"));
editDefaultPrinterBtn->setIconSet(SmallIconSet("print_class"));
advancedWarningPixLbl->setPixmap(SmallIcon("messagebox_warning"));
}
void KcmInterface::changedSlot()
{
emit changed();
}
void KcmInterface::securityLevelCombo_activated( int i )
{
passwordServerEdit->setDisabled(i<2);
allowGuestLoginsChk->setDisabled(i==0);
updateSecurityLevelHelpLbl();
}
void KcmInterface::KURLLabel1_leftClickedURL()
{
KProcess* p = new KProcess();
*p << "konqueror";
*p << "man:smb.conf";
p->start();
}
void KcmInterface::lmAnnounceCombo_activated( int i)
{
lmIntervalSpin->setEnabled(i==0);
}
void KcmInterface::allowGuestLoginsChk_toggled( bool b)
{
int i = 0;
if (b)
i = 1;
mapToGuestCombo->setCurrentItem(i);
}
void KcmInterface::mapToGuestCombo_activated( int i)
{
allowGuestLoginsChk->setChecked(i>0);
}
void KcmInterface::updateSecurityLevelHelpLbl()
{
if (shareRadio->isChecked()) {
securityLevelHelpLbl->setText(i18n("Use the <i>share</i> security level if you have a home network "
"or a small office network.<br> It allows everyone to read the list "
"of all your shared directories and printers before a login is required."));
} else if (userRadio->isChecked()) {
securityLevelHelpLbl->setText(i18n("Use the <i>user</i> security level if you have a bigger network "
"and you do not want to allow everyone to read your list of shared "
"directories and printers without a login.<p>"
"If you want to run your Samba server as a <b>Primary Domain controller</b> (PDC) "
"you also have to set this option."));
} else if (serverRadio->isChecked()) {
securityLevelHelpLbl->setText(i18n("Use the <i>server</i> security level if you have a big network "
"and the samba server should validate the username/password "
"by passing it to another SMB server, such as an NT box."));
} else if (domainRadio->isChecked()) {
securityLevelHelpLbl->setText(i18n("Use the <i>domain</i> security level if you have a big network "
"and the samba server should validate the username/password "
"by passing it to a Windows NT Primary or Backup Domain Controller."));
} else if (adsRadio->isChecked()) {
securityLevelHelpLbl->setText(i18n("Use the <i>ADS</i> security level if you have a big network "
"and the samba server should act as a domain member in an ADS realm."));
}
}
|