~ubuntu-branches/ubuntu/precise/networkmanagement/precise

« back to all changes in this revision

Viewing changes to libs/ui/security/wpaauthwidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-23 14:00:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20111023140013-e38hdzybcg6zndrk
Tags: 0.9~svngit.nm09.20111023.ff842e-0ubuntu1
* New upstream snapshot.
* Drop all patches, merged upstream.
* Add kubuntu_add_subdirectory_po.diff to build the translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright 2011 Ilia Kats <ilia-kats@gmx.net>
 
3
 
 
4
This program is free software; you can redistribute it and/or
 
5
modify it under the terms of the GNU General Public License as
 
6
published by the Free Software Foundation; either version 2 of
 
7
the License or (at your option) version 3 or any later version
 
8
accepted by the membership of KDE e.V. (or its successor approved
 
9
by the membership of KDE e.V.), which shall act as a proxy
 
10
defined in Section 14 of version 3 of the license.
 
11
 
 
12
This program is distributed in the hope that it will be useful,
 
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
GNU General Public License for more details.
 
16
 
 
17
You should have received a copy of the GNU General Public License
 
18
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
*/
 
20
 
 
21
#include "wpaauthwidget.h"
 
22
 
 
23
#include <QWidget>
 
24
#include <QFormLayout>
 
25
#include <QLabel>
 
26
#include <KLineEdit>
 
27
#include <KLocale>
 
28
 
 
29
#include <settings/802-11-wireless-security.h>
 
30
#include <connection.h>
 
31
 
 
32
class WpaAuthWidget::Private
 
33
{
 
34
public:
 
35
    Knm::WirelessSecuritySetting * setting;
 
36
    QFormLayout *layout;
 
37
    KLineEdit *pw;
 
38
};
 
39
 
 
40
WpaAuthWidget::WpaAuthWidget(Knm::Connection * connection, QWidget * parent)
 
41
: SecurityWidget(connection, parent), d(new WpaAuthWidget::Private)
 
42
{
 
43
    d->setting = static_cast<Knm::WirelessSecuritySetting *>(connection->setting(Knm::Setting::WirelessSecurity));
 
44
    d->layout = new QFormLayout(this);
 
45
    this->setLayout(d->layout);
 
46
    setupUi();
 
47
}
 
48
 
 
49
WpaAuthWidget::WpaAuthWidget(Knm::Connection * connection, QFormLayout *layout, QWidget * parent)
 
50
: SecurityWidget(connection, parent), d(new WpaAuthWidget::Private)
 
51
{
 
52
    d->setting = static_cast<Knm::WirelessSecuritySetting *>(connection->setting(Knm::Setting::WirelessSecurity));
 
53
    d->layout = layout;
 
54
    setupUi();
 
55
}
 
56
 
 
57
WpaAuthWidget::~WpaAuthWidget()
 
58
{
 
59
    delete d;
 
60
}
 
61
 
 
62
void WpaAuthWidget::setupUi()
 
63
{
 
64
    QLabel *label = new QLabel(this);
 
65
    label->setText(i18n("Password:"));
 
66
    d->pw = new KLineEdit(this);
 
67
    d->pw->setPasswordMode(true);
 
68
    d->layout->addRow(label, d->pw);
 
69
    d->pw->setFocus(Qt::OtherFocusReason);
 
70
}
 
71
 
 
72
bool WpaAuthWidget::validate() const
 
73
{
 
74
    return true;
 
75
}
 
76
 
 
77
void WpaAuthWidget::writeConfig()
 
78
{
 
79
    d->setting->setPsk(d->pw->text());
 
80
}
 
81
 
 
82
void WpaAuthWidget::setShowPasswords(bool on)
 
83
{
 
84
    d->pw->setPasswordMode(!on);
 
85
}