diff --git a/vpn/pptp/pptpauth.cpp b/vpn/pptp/pptpauth.cpp index a2b1255e..3b7a1c8a 100644 --- a/vpn/pptp/pptpauth.cpp +++ b/vpn/pptp/pptpauth.cpp @@ -1,70 +1,72 @@ /* Copyright 2011 Ilia Kats Copyright 2013 Lukáš Tinkl 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) version 3 or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), which shall act as a proxy defined in Section 14 of version 3 of the license. 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, see . */ #include "pptpauth.h" #include "ui_pptpauth.h" #include "nm-pptp-service.h" class PptpAuthWidgetPrivate { public: NetworkManager::VpnSetting::Ptr setting; Ui_PptpAuthenticationWidget ui; }; PptpAuthWidget::PptpAuthWidget(const NetworkManager::VpnSetting::Ptr &setting, QWidget * parent) : SettingWidget(setting, parent), d_ptr(new PptpAuthWidgetPrivate) { Q_D(PptpAuthWidget); d->setting = setting; d->ui.setupUi(this); connect(d->ui.chkShowPassword, SIGNAL(toggled(bool)), this, SLOT(showPasswordsToggled(bool))); + d->ui.lePassword->setFocus(Qt::OtherFocusReason); + KAcceleratorManager::manage(this); } PptpAuthWidget::~PptpAuthWidget() { delete d_ptr; } QVariantMap PptpAuthWidget::setting(bool agentOwned) const { Q_D(const PptpAuthWidget); Q_UNUSED(agentOwned) NMStringMap secrets; QVariantMap secretData; if (!d->ui.lePassword->text().isEmpty()) { secrets.insert(QLatin1String(NM_PPTP_KEY_PASSWORD), d->ui.lePassword->text()); } secretData.insert("secrets", QVariant::fromValue(secrets)); return secretData; } void PptpAuthWidget::showPasswordsToggled(bool toggled) { Q_D(PptpAuthWidget); d->ui.lePassword->setPasswordMode(!toggled); } diff --git a/vpn/pptp/pptpauth.ui b/vpn/pptp/pptpauth.ui index 86bbdb89..a3d7948b 100644 --- a/vpn/pptp/pptpauth.ui +++ b/vpn/pptp/pptpauth.ui @@ -1,80 +1,80 @@ PptpAuthenticationWidget 0 0 - 372 + 429 85 PPTPAuthentication QLayout::SetMinimumSize 0 Password: false lePassword - + Show password Qt::Vertical 20 0 true qPixmapFromMimeSource KLineEdit QLineEdit
klineedit.h
lePassword chkShowPassword