summaryrefslogtreecommitdiffstats
path: root/src/ui_netparamswizard.cpp
blob: 42a93d2664ee42f5bd23f0fb2ef6ddaecf054650 (plain)
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) 2005 by Pawel Nawrocki                                  *
 *   pnawrocki@interia.pl                                                  *
 *                                                                         *
 *   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 "ui_netparamswizard.h"
#include "netparams.h"

#include <tqpushbutton.h>
#include <tqradiobutton.h>
#include <tqlineedit.h>
#include <tqcheckbox.h>
#include <tqlabel.h>

#include <kiconloader.h>

ui_NetParamsWizard::ui_NetParamsWizard(TQWidget* parent, const char* name, bool modal, WFlags fl)
                : NetParamsWizard(parent,name, modal,fl)
{
        backButton()->setIconSet( SmallIconSet("back") );
        nextButton()->setIconSet( SmallIconSet("forward") );
        cancelButton()->setIconSet( SmallIconSet("cancel") );
        finishButton()->setIconSet( SmallIconSet("ok") );
        //helpButton()->setIconSet( SmallIconSet("help") );
        helpButton()->hide();
        setFinishEnabled( page( pageCount()-1 ), true );
}

ui_NetParamsWizard::~ui_NetParamsWizard()
{}

/*$SPECIALIZATION$*/

void ui_NetParamsWizard::setWepEnabled( bool w )
{
        setAppropriate( page(4), w );
}

void ui_NetParamsWizard::setWpaEnabled( bool w, TQStringList settings )
{
        setAppropriate( page(5), w );
	if (w) labelWpaSettings->setText( TQString("<i>%1</i>").arg( settings.join("<br>") ) );
}


void ui_NetParamsWizard::setEssidEnabled( bool e )
{
        setAppropriate( page(1), e );
}

void ui_NetParamsWizard::next()
{
        if (indexOf(currentPage())==2)
                setAppropriate( page(3), radioManualConfig->isChecked() );
        TQWizard::next();
}

WANetParams ui_NetParamsWizard::readNetParams( WANetParams & np )
{
        if (appropriate(page(1)))
                np.essid = essid->text();
        np.dhcp = radioDhcp->isChecked();
        if (!np.dhcp) { // manual configuration option selected
                np.ip = ip->text();
                np.broadcast = broadcast->text();
                np.netmask = netmask->text();
                np.gateway = gateway->text();
                np.domain = domain->text();
                np.dns1 = dns1->text();
                np.dns2 = dns2->text();
        }
        if (np.wep) { // WEP authentication needed
                if (radioWepOpen->isChecked())
                        np.wepMode = "open";
                else
                        np.wepMode = "restricted";
                np.wepKey = wepKey->text();
                if (checkWepAscii->isChecked())
                        np.wepKey.prepend("s:");
        }
        if (np.wpa) { // WPA authentication needed
                np.wpaKey = wpaKey->text();
                if (checkWpaAscii->isChecked())
                        np.wpaKey.prepend("s:");
        }

        return np;
}

#include "ui_netparamswizard.moc"