summaryrefslogtreecommitdiffstats
path: root/src/settingsui/network/PassphraseEnter.qml
diff options
context:
space:
mode:
authorSami Nurmenniemi <sami.nurmenniemi@qt.io>2017-11-07 15:16:21 +0200
committerSami Nurmenniemi <sami.nurmenniemi@qt.io>2017-11-22 10:42:12 +0000
commite1ed6a4e35b03aded27f8c505aa2f6ee9f94098b (patch)
tree525eeab1a679f825c88c1417324a96d271ccafe6 /src/settingsui/network/PassphraseEnter.qml
parenta754a1323234be2feb9945128837875d87c3cc34 (diff)
More user friendly handling of WiFi passphrase
Task-number: QTBUG-64230 Change-Id: I9de0f5668b419e322a3b0466f2e30a6f957e617e Reviewed-by: Kari Oikarinen <kari.oikarinen@qt.io> Reviewed-by: Teemu Holappa <teemu.holappa@qt.io>
Diffstat (limited to 'src/settingsui/network/PassphraseEnter.qml')
-rw-r--r--src/settingsui/network/PassphraseEnter.qml103
1 files changed, 63 insertions, 40 deletions
diff --git a/src/settingsui/network/PassphraseEnter.qml b/src/settingsui/network/PassphraseEnter.qml
index 2841745..1881866 100644
--- a/src/settingsui/network/PassphraseEnter.qml
+++ b/src/settingsui/network/PassphraseEnter.qml
@@ -27,56 +27,79 @@
**
****************************************************************************/
import QtQuick 2.0
-import QtGraphicalEffects 1.0
import QtQuick.Controls 2.0
import QtDeviceUtilities.QtButtonImageProvider 1.0
import QtDeviceUtilities.NetworkSettings 1.0
-Item {
- id: root
- Column {
- spacing: pluginMain.spacing
- anchors.margins: viewSettings.pageMargin
+Rectangle {
+ id: passphrasePopup
+ width: root.width
+ height: root.height
+ color: viewSettings.backgroundColor
+ opacity: 0.9
+ property string extraInfo: ""
- Text {
- id: enterPassphraseText
- font.pixelSize: pluginMain.subTitleFontSize
- font.family: appFont
- color: "white"
- text: qsTr("Enter Passphrase")
- }
+ Rectangle {
+ id: frame
+ color: viewSettings.backgroundColor
+ border.color: viewSettings.borderColor
+ border.width: 3
+ anchors.centerIn: parent
+ width: passphraseColumn.width * 1.1
+ height: passphraseColumn.height * 1.1
+
+ Column {
+ id: passphraseColumn
+ anchors.centerIn: parent
+ spacing: viewSettings.spacing
- TextField {
- id: passField
- width: root.width * 0.4
- height: root.height * 0.075
- color: "white"
- echoMode: TextInput.Password
- background: Rectangle {
- color: "transparent"
- border.color: passField.focus ? viewSettings.buttonGreenColor : viewSettings.buttonGrayColor
- border.width: passField.focus ? width * 0.01 : 2
+ Text {
+ font.pixelSize: pluginMain.subTitleFontSize
+ font.family: appFont
+ color: "white"
+ text: qsTr("Enter Passphrase")
}
- }
- Row{
- spacing: parent.width * 0.025
- QtButton {
- id: setButton
- text: qsTr("SET")
- onClicked: {
- passField.focus = false
- NetworkSettingsManager.userAgent.setPassphrase(passField.text)
+ Text {
+ font.pixelSize: pluginMain.valueFontSize
+ font.family: appFont
+ color: "red"
+ text: extraInfo
+ visible: (extraInfo !== "")
+ }
+
+ TextField {
+ id: passField
+ width: root.width * 0.4
+ height: root.height * 0.075
+ color: "white"
+ echoMode: TextInput.Password
+ background: Rectangle{
+ color: "transparent"
+ border.color: passField.focus ? viewSettings.buttonGreenColor : viewSettings.buttonGrayColor
+ border.width: passField.focus ? width * 0.01 : 2
}
}
- QtButton {
- id: cancelButton
- text: qsTr("CANCEL")
- borderColor: "transparent"
- fillColor: viewSettings.buttonGrayColor
- onClicked: {
- NetworkSettingsManager.userAgent.cancelInput()
- settingsLoader.source = "qrc:/network/NetworkSettings.qml"
+
+ Row {
+ spacing: parent.width * 0.025
+ QtButton{
+ id: setButton
+ text: qsTr("SET")
+ onClicked: {
+ NetworkSettingsManager.userAgent.setPassphrase(passField.text)
+ passphrasePopup.visible = false;
+ }
+ }
+ QtButton {
+ id: cancelButton
+ text: qsTr("CANCEL")
+ borderColor: "transparent"
+ fillColor: viewSettings.buttonGrayColor
+ onClicked: {
+ NetworkSettingsManager.userAgent.cancelInput()
+ passphrasePopup.visible = false;
+ }
}
}
}