Skip to content
Snippets Groups Projects
Commit 50e4414b authored by Evgenii Tagiltsev's avatar Evgenii Tagiltsev
Browse files

[*] merge branch 'master' into features-2554

parents 62da7099 12652af6
No related branches found
No related tags found
1 merge request!34Features 2554
Pipeline #1098 passed with stage
in 7 minutes and 41 seconds
...@@ -89,6 +89,13 @@ Page { ...@@ -89,6 +89,13 @@ Page {
hover: "qrc:/Resources/Icons/icon_settings_hover.png" hover: "qrc:/Resources/Icons/icon_settings_hover.png"
} }
ListElement {
name: qsTr("VPN")
page: "DapUiQmlScreenVpn.qml"
normal: "qrc:/Resources/Icons/defaul_icon.png"
hover: "qrc:/Resources/Icons/defaul_icon.png"
}
/// TODO: It wasn't in the task. I will not delete it, maybe later /// TODO: It wasn't in the task. I will not delete it, maybe later
/// we will need it /// we will need it
// ListElement { // ListElement {
......
...@@ -10,6 +10,11 @@ DapUiQmlScreenSettingsForm { ...@@ -10,6 +10,11 @@ DapUiQmlScreenSettingsForm {
name: qsTr("Network") name: qsTr("Network")
element: "DapUiQmlWidgetSettingsNetwork.qml" element: "DapUiQmlWidgetSettingsNetwork.qml"
} }
ListElement {
name: qsTr("VPN")
element: "DapUiQmlWidgetSettingsVpn.qml"
}
} }
ListView { ListView {
......
import QtQuick 2.4
DapUiQmlScreenVpnForm {
}
import QtQuick 2.4
import QtQuick.Controls 2.5
import QtQuick.Controls.Styles 1.4
import QtGraphicalEffects 1.0
import QtQuick.Layouts 1.13
Item {
width: 400
height: 600
Text {
anchors.left: parent.left
anchors.top: parent.top
anchors.leftMargin: 30 * pt
anchors.topMargin: 18 * pt
color: "#d61f5d"
font.family: "Roboto Regular"
font.pixelSize: 14 * pt
text: "283 days left"
}
Row {
width: childrenRect.width
anchors.top: parent.top
anchors.topMargin: 40 * pt
anchors.horizontalCenter: parent.horizontalCenter
spacing: 10 * pt
Image {
id: imageVpn
Layout.alignment: Qt.AlignVCenter
width: 48 * pt
height: 48 * pt
source: "qrc:/Resources/Icons/defaul_icon.png"
}
Text {
id: titleVpn
Layout.alignment: Qt.AlignVCenter
verticalAlignment: Text.AlignVCenter
text: "KELVPN"
font.family: "Roboto Regular"
font.pixelSize: 42 * pt
}
}
Switch {
id: control
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
width: 150 * pt
height: 70 * pt
text: checked ? "Connected" : "Disconnected"
indicator: Rectangle {
implicitWidth: control.width
implicitHeight: control.height
x: control.leftPadding
y: parent.height / 2 - height / 2
radius: control.height / 2
color: control.checked ? "#d61f5d" : "#ffffff"
border.color: control.checked ? "#d61f5d" : "#cccccc"
Rectangle {
x: control.checked ? parent.width - width - 10 * pt : 10 * pt
anchors.verticalCenter: parent.verticalCenter
width: control.height - 15 * pt
height: width
radius: height / 2
color: control.down ? "#cccccc" : "#ffffff"
border.color: control.checked ? (control.down ? "#17a81a" : "#d61f5d") : "#999999"
}
}
contentItem: Text {
text: control.text
anchors.left: control.left
anchors.right: control.right
anchors.bottom: control.top
anchors.bottomMargin: 10 * pt
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignBottom
font.family: "Roboto"
font.pixelSize: 16 * pt
color: "#707070"
}
}
ComboBox {
id: comboboxServer
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: 40 * pt
width: 150 * pt
height: 48 * pt
textRole: "name"
model: ListModel {
id: modelTest
ListElement {name: "first"; icon: "qrc:/Resources/Icons/defaul_icon.png" }
ListElement {name: "second"; icon: "qrc:/Resources/Icons/defaul_icon.png" }
}
background: Rectangle {
anchors.fill: parent
Rectangle {
id: contentCorner
anchors.fill: parent
color: "#FFFFFF"
radius: width / 2
}
DropShadow {
anchors.fill: parent
source: contentCorner
verticalOffset: 4 * pt
samples: 13 * pt
color: "#40000000"
}
}
contentItem: Rectangle {
anchors.fill: parent
color: "transparent"
Image {
id: imageServer
anchors.left: parent.left
anchors.leftMargin: 22 * pt
anchors.verticalCenter: parent.verticalCenter
source: modelTest.get(modelTest.index(comboboxServer.currentIndex, 0)).icon
width: 24 * pt
height: 24 * pt
}
Text {
anchors.left: imageServer.right
anchors.leftMargin: 10 * pt
anchors.verticalCenter: parent.verticalCenter
text: comboboxServer.currentText
font.family: "Roboto Light"
font.pixelSize: 16 * pt
}
}
}
}
...@@ -3,7 +3,7 @@ import QtQuick.Controls 2.12 ...@@ -3,7 +3,7 @@ import QtQuick.Controls 2.12
DapUiQmlWidgetSettingsNetworkForm { DapUiQmlWidgetSettingsNetworkForm {
width: parent.width width: parent.width
height: childrenRect.height height: childrenRect.height + 40 * pt
ComboBox { ComboBox {
width: 150 width: 150
......
import QtQuick 2.4
DapUiQmlWidgetSettingsVpnForm {
Column {
anchors.left: parent.left
anchors.top: parent.top
anchors.leftMargin: 15 * pt
anchors.topMargin: 13 * pt
spacing: 15 * pt
DapUiQmlWidgetSettingsVpnComboBox {
id: comboBoxBand
width: 150 * pt
height: 32 * pt
textRole: "band"
model: ListModel {
ListElement {band: "100 Mbit" }
ListElement {band: "200 Mbit" }
}
}
DapUiQmlWidgetSettingsVpnComboBox {
id: comboBoxUptime
width: 150 * pt
height: 32 * pt
textRole: "uptime"
model: ListModel {
ListElement {uptime: "30 minutes" }
ListElement {uptime: "3 hours" }
}
}
DapUiQmlWidgetSettingsVpnComboBox {
id: comboBoxEncription
width: 150 * pt
height: 32 * pt
textRole: "encription"
model: ListModel {
ListElement {encription: "RSA-2048" }
ListElement {encription: "AES-256" }
}
}
DapUiQmlWidgetSettingsVpnComboBox {
id: comboBoxBalance
width: 150 * pt
height: 32 * pt
textRole: "balance"
model: ListModel {
ListElement {balance: "320 RUB" }
ListElement {balance: "500 RUB" }
}
}
DapUiQmlWidgetSettingsVpnComboBox {
id: comboBoxLanguage
width: 150 * pt
height: 32 * pt
textRole: "language"
model: ListModel {
ListElement {language: "RUS" }
ListElement {language: "ENG" }
}
}
}
}
import QtQuick 2.4
DapUiQmlWidgetSettingsVpnComboBoxForm {
}
import QtQuick 2.4
import QtQuick.Controls 2.5
import QtGraphicalEffects 1.0
ComboBox {
background: Rectangle {
anchors.fill: parent
border.color: "#707070"
border.width: 1
radius: parent.width / 2
}
contentItem: Text {
anchors.fill: parent
anchors.leftMargin: 12 * pt
anchors.rightMargin: 52 * pt
text: parent.displayText
font.family: "Regular"
font.pixelSize: 14 * pt
color: "#A7A7A7"
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
}
DropShadow {
anchors.fill: parent
source: parent.background
verticalOffset: 4 * pt
samples: 13 * pt
color: "#40000000"
}
}
import QtQuick 2.4
Item {
width: 400
height: 400
}
...@@ -87,5 +87,11 @@ ...@@ -87,5 +87,11 @@
<file>DapUiQmlWidgetStatusBarComboBoxTokenForm.ui.qml</file> <file>DapUiQmlWidgetStatusBarComboBoxTokenForm.ui.qml</file>
<file>Resources/Icons/icon_settings.png</file> <file>Resources/Icons/icon_settings.png</file>
<file>Resources/Icons/icon_settings_hover.png</file> <file>Resources/Icons/icon_settings_hover.png</file>
<file>DapUiQmlScreenVpn.qml</file>
<file>DapUiQmlScreenVpnForm.ui.qml</file>
<file>DapUiQmlWidgetSettingsVpn.qml</file>
<file>DapUiQmlWidgetSettingsVpnForm.ui.qml</file>
<file>DapUiQmlWidgetSettingsVpnComboBox.qml</file>
<file>DapUiQmlWidgetSettingsVpnComboBoxForm.ui.qml</file>
</qresource> </qresource>
</RCC> </RCC>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment