- many design improvements:

- new text inputs
 - new delegate highlighting
 - better text scaling
- some cleanup
This commit is contained in:
Dorian Zedler 2019-03-29 19:15:20 +01:00
parent f62a2f5b94
commit dc26169fe0
8 changed files with 208 additions and 165 deletions

View file

@ -21,6 +21,7 @@ import QtQuick.Window 2.2
import QtQuick.Controls 2.2 import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3 import QtQuick.Layouts 1.3
import QtGraphicalEffects 1.0 import QtGraphicalEffects 1.0
import QtQuick.Controls.Styles 1.4
import "./components" import "./components"
Popup { Popup {
@ -76,7 +77,7 @@ Popup {
} }
RectangularGlow { RectangularGlow {
id: effect_2 id: headerUnderlineEffect
glowRadius: 7 glowRadius: 7
spread: 0.02 spread: 0.02
color: "black" color: "black"
@ -139,14 +140,21 @@ Popup {
Label { Label {
id: head_text id: head_text
text: options_stack.currentItem.title
font.pixelSize: headlineUnderline.width * 0.05
color: enabled ? appTheme.style.textColor:appTheme.style.disabledTextColor
anchors { anchors {
horizontalCenter: parent.horizontalCenter centerIn: parent
top: parent.top
topMargin: headlineUnderline.anchors.topMargin / 2 - height / 2
} }
width: headlineUnderline.width * 0.4
height: parent.height
fontSizeMode: Text.Fit
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
text: options_stack.currentItem.title
font.pixelSize: headlineUnderline.width * 0.1
color: enabled ? appTheme.style.textColor:appTheme.style.disabledTextColor
} }
} }
@ -195,13 +203,12 @@ Popup {
} }
} }
} }
} }
StackView { StackView {
id: options_stack id: options_stack
property int text_pixelSize: root.height * 0.06 property int delegateHeight: height * 0.2
property int rowSpacing: root.height * 0.01 property int rowSpacing: height * 0.01
initialItem: settings initialItem: settings
width: headlineUnderline.width width: headlineUnderline.width
@ -224,13 +231,17 @@ Popup {
id: settings id: settings
Column { Column {
property string title: qsTr("Options")
id: settings_col id: settings_col
property string title: qsTr("Options")
spacing: options_stack.rowSpacing spacing: options_stack.rowSpacing
/*----Connect to external devices----*/ /*----Connect to external devices----*/
NextPageDelegate { NextPageDelegate {
id: connect_del id: connect_del
height: options_stack.delegateHeight
text: qsTr("Base Station") text: qsTr("Base Station")
onClicked: { onClicked: {
options_stack.push(connect) options_stack.push(connect)
@ -240,6 +251,9 @@ Popup {
/*----Automated Start----*/ /*----Automated Start----*/
NextPageDelegate { NextPageDelegate {
id: autostart_del id: autostart_del
height: options_stack.delegateHeight
text: qsTr("start sequence") text: qsTr("start sequence")
onClicked: { onClicked: {
@ -252,6 +266,9 @@ Popup {
id: styleDel id: styleDel
text: qsTr("dark mode") text: qsTr("dark mode")
width: parent.width
height: options_stack.delegateHeight
checked: speedBackend.readSetting("theme") === "Dark" checked: speedBackend.readSetting("theme") === "Dark"
onCheckedChanged: { onCheckedChanged: {
@ -268,7 +285,9 @@ Popup {
Column { Column {
id: connect_col id: connect_col
property string title: qsTr("Base Station") property string title: qsTr("Base Station")
property int delegateHeight: height*0.18 property int delegateHeight: height * 0.18
spacing: options_stack.rowSpacing
ConnectionDelegate { ConnectionDelegate {
id: connect_base_del id: connect_base_del
@ -279,6 +298,8 @@ Popup {
type: "baseStation" type: "baseStation"
width: parent.width width: parent.width
height: options_stack.delegateHeight
font.pixelSize: height * 0.6 font.pixelSize: height * 0.6
} }
@ -286,6 +307,9 @@ Popup {
id: baseStationConnections_del id: baseStationConnections_del
text: qsTr("connected extentions") text: qsTr("connected extentions")
width: parent.width
height: options_stack.delegateHeight
onClicked: { onClicked: {
options_stack.push(baseStationConnections) options_stack.push(baseStationConnections)
} }
@ -298,132 +322,85 @@ Popup {
id: autostart id: autostart
Column { Column {
id: autostart_col id: autostart_col
spacing: options_stack.rowSpacing
property string title: "Autostart" property string title: "Autostart"
property int delegateHeight: height*0.18
function updateSetting(key, val, del){ function updateSetting(key, val, del){
del.enabled = false
speedBackend.writeSetting(key, val) speedBackend.writeSetting(key, val)
del.enabled = true
} }
function loadSetting(key, del){ function loadSetting(key, del){
del.enabled = false
var val var val
val = speedBackend.readSetting(key) val = speedBackend.readSetting(key)
del.enabled = true
return val return val
} }
SmoothSwitchDelegate { SmoothSwitchDelegate {
id: ready_del id: ready_del
width: parent.width
height: options_stack.delegateHeight
text: qsTr("say 'ready'") text: qsTr("say 'ready'")
contentItem: Text {
text: parent.text
color: appTheme.style.textColor
font.pixelSize: options_stack.text_pixelSize
}
checked: parent.loadSetting("ready_en", ready_del) === "true" checked: parent.loadSetting("ready_en", ready_del) === "true"
width: parent.width
height: parent.delegateHeight
font.pixelSize: options_stack.text_pixelSize
onCheckedChanged: { onCheckedChanged: {
parent.updateSetting("ready_en",checked, ready_del) parent.updateSetting("ready_en",checked, ready_del)
} }
indicator: SimpleIndicator{}
} }
SmoothItemDelegate { InputDelegate {
id: ready_delay_del id: ready_delay_del
text: qsTr("delay (ms)")
contentItem: Text { width: parent.width
text: parent.text height: options_stack.delegateHeight
color: appTheme.style.textColor
font.pixelSize: options_stack.text_pixelSize
}
enabled: ready_del.checked enabled: ready_del.checked
width: parent.width
font.pixelSize: options_stack.text_pixelSize
height: parent.delegateHeight
TextField { text: qsTr("delay (ms)")
focus: true
placeholderText: qsTr("time")
width: parent.width * 0.3
height: parent.height
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
inputMethodHints: Qt.ImhFormattedNumbersOnly
text: autostart_col.loadSetting("ready_delay", ready_del) inputText: autostart_col.loadSetting("ready_delay", ready_del)
onTextChanged: { onInputTextChanged: {
autostart_col.updateSetting("ready_delay", text, ready_delay_del) autostart_col.updateSetting("ready_delay", inputText, ready_delay_del)
}
} }
} }
SmoothSwitchDelegate { SmoothSwitchDelegate {
id: at_marks_del id: at_marks_del
text: qsTr("say\n'at your marks'")
contentItem: Text { width: parent.width
text: parent.text height: options_stack.delegateHeight
color: appTheme.style.textColor
font.pixelSize: options_stack.text_pixelSize text: qsTr("say 'at your marks'")
}
checked: autostart_col.loadSetting("at_marks_en", ready_del) === "true" checked: autostart_col.loadSetting("at_marks_en", ready_del) === "true"
width: parent.width
//height: parent.delegateHeight * 1.5
font.pixelSize: options_stack.text_pixelSize
onCheckedChanged: { onCheckedChanged: {
parent.updateSetting("at_marks_en",at_marks_del.checked, at_marks_del) parent.updateSetting("at_marks_en",at_marks_del.checked, at_marks_del)
} }
indicator: SimpleIndicator{}
} }
SmoothItemDelegate {
InputDelegate {
id: at_marks_delay_del id: at_marks_delay_del
width: parent.width
height: options_stack.delegateHeight
text: qsTr("delay (ms)") text: qsTr("delay (ms)")
contentItem: Text {
text: parent.text
color: appTheme.style.textColor
font.pixelSize: options_stack.text_pixelSize
}
enabled: at_marks_del.checked enabled: at_marks_del.checked
width: parent.width
height: parent.delegateHeight
font.pixelSize: options_stack.text_pixelSize inputText: autostart_col.loadSetting("at_marks_delay", at_marks_delay_del)
TextField { onInputTextChanged: {
focus: true autostart_col.updateSetting("at_marks_delay", inputText, at_marks_delay_del)
placeholderText: qsTr("time")
width: parent.width * 0.3
height: parent.height
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
inputMethodHints: Qt.ImhFormattedNumbersOnly
text: autostart_col.loadSetting("at_marks_delay", ready_del)
onTextChanged: {
autostart_col.updateSetting("at_marks_delay",text, at_marks_delay_del)
}
} }
} }
} }
@ -434,17 +411,18 @@ Popup {
id: baseStationConnections id: baseStationConnections
ListView { ListView {
id: baseStationConnections_list id: baseStationConnections_list
property string title: qsTr("connections")
property int delegateHeight: height * 0.18
property string title: qsTr("connections")
spacing: options_stack.rowSpacing
boundsBehavior: Flickable.StopAtBounds boundsBehavior: Flickable.StopAtBounds
model: speedBackend.baseStationConnections.length model: speedBackend.baseStationConnections.length
delegate: ConnectionDelegate { delegate: ConnectionDelegate {
enabled: false
font.pixelSize: height * 0.6
width: parent.width width: parent.width
//height: baseStationConnections_list.delegateHeight height: options_stack.delegateHeight
enabled: false
text: speedBackend.baseStationConnections[index]["name"] text: speedBackend.baseStationConnections[index]["name"]
status: {'status': speedBackend.baseStationConnections[index]["state"], 'progress': speedBackend.baseStationConnections[index]["progress"]} status: {'status': speedBackend.baseStationConnections[index]["state"], 'progress': speedBackend.baseStationConnections[index]["progress"]}

View file

@ -18,12 +18,6 @@ SmoothItemDelegate {
} }
} }
contentItem: Text {
text: parent.text
color: appTheme.style.textColor
font.pixelSize: options_stack.text_pixelSize
}
Timer { Timer {
id: shortDelay id: shortDelay
running: false running: false

View file

@ -0,0 +1,57 @@
import QtQuick 2.0
import QtQuick.Controls 2.3
SmoothItemDelegate {
id: control
property string inputText: ""
onInputTextChanged: {
textField.text = inputText
}
text: qsTr("delay (ms)")
width: parent.width
height: parent.delegateHeight
TextField {
id: textField
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
width: parent.width * 0.3
height: parent.height
focus: true
placeholderText: qsTr("time")
font.pixelSize: height * 0.4
opacity: control.enabled ? 1:0.2
inputMethodHints: Qt.ImhFormattedNumbersOnly
palette.text: appTheme.style.textColor
onTextChanged: {
control.inputText = text
control.inputTextChanged()
}
background: Rectangle {
implicitWidth: 200
implicitHeight: 40
color: "transparent"//control.enabled ? "transparent" : "#353637"
border.color: (textField.activeFocus ? "#21be2b" : "#999999")
radius: height * 0.3
}
Behavior on opacity {
NumberAnimation {
duration: 200
}
}
}
}

View file

@ -9,12 +9,12 @@ SmoothItemDelegate {
id: forwardImage id: forwardImage
source: appTheme.style.backIcon source: appTheme.style.backIcon
rotation: 180 rotation: 180
height: control.font.pixelSize height: control.height * 0.4
width: height width: height
anchors { anchors {
verticalCenter: parent.verticalCenter verticalCenter: parent.verticalCenter
right: parent.right right: parent.right
rightMargin: 10 rightMargin: control.width * 0.01
} }
} }
} }

View file

@ -1,52 +0,0 @@
/*
Speed Climbing Stopwatch - Simple Stopwatch for Climbers
Copyright (C) 2018 Itsblue Development - Dorian Zeder
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import QtQuick 2.0
Rectangle {
property bool checked: parent.checked
property bool down: parent.down
property int set_height: parent.font.pixelSize * 1.4
implicitWidth: set_height * 1.84
implicitHeight: set_height
x: parent.width - width - parent.rightPadding
y: parent.height / 2 - height / 2
radius: implicitHeight * 0.5
color: parent.checked ? "#17a81a" : "transparent"
border.color: parent.checked ? "#17a81a" : "#cccccc"
Behavior on color{
ColorAnimation{
duration: 200
}
}
Rectangle {
x: parent.checked ? parent.width - width : 0
width: parent.height
height: parent.height
radius: height * 0.5
color: parent.down ? "#cccccc" : "#ffffff"
border.color: parent.checked ? (parent.down ? "#17a81a" : "#21be2b") : "#999999"
Behavior on x{
NumberAnimation {
property: "x"
duration: 200
easing.type: Easing.InOutQuad
}
}
}
}

View file

@ -8,9 +8,23 @@ ItemDelegate {
property color textColor: appTheme.style.textColor property color textColor: appTheme.style.textColor
contentItem: Text { contentItem: Text {
text: parent.text visible: false
color: control.textColor }
font.pixelSize: parent.font.pixelSize
Text {
anchors {
verticalCenter: parent.verticalCenter
left: parent.left
leftMargin: control.width * 0.02
}
text: control.text
color: appTheme.style.textColor
fontSizeMode: Text.Fit
font.pixelSize: control.height * 0.4
} }
width: parent.width width: parent.width

View file

@ -3,21 +3,73 @@ import QtQuick.Controls 2.3
SwitchDelegate { SwitchDelegate {
id: control id: control
text: qsTr("dark mode")
implicitHeight: 50
implicitWidth: 100
baselineOffset: 100
contentItem: Text { contentItem: Text {
text: parent.text visible: false
color: appTheme.style.textColor
font.pixelSize: options_stack.text_pixelSize
} }
Text {
width: parent.width anchors {
height: parent.delegateHeight verticalCenter: parent.verticalCenter
left: parent.left
right: indicator.left
leftMargin: control.width * 0.02
}
font.pixelSize: options_stack.text_pixelSize text: control.text
color: appTheme.style.textColor
indicator: SimpleIndicator{} fontSizeMode: Text.Fit
font.pixelSize: control.height * 0.4
}
indicator: Rectangle {
property bool checked: parent.checked
property bool down: parent.down
height: parent.height * 0.6
width: height * 1.84
anchors {
verticalCenter: parent.verticalCenter
right: parent.right
rightMargin: control.width * 0.02
}
radius: height * 0.5
color: parent.checked ? "#17a81a" : "transparent"
border.color: parent.checked ? "#17a81a" : "#cccccc"
Behavior on color{
ColorAnimation{
duration: 200
}
}
Rectangle {
x: parent.checked ? parent.width - width : 0
width: parent.height
height: parent.height
radius: height * 0.5
color: parent.down ? "#cccccc" : "#ffffff"
border.color: parent.checked ? (parent.down ? "#17a81a" : "#21be2b") : "#999999"
Behavior on x{
NumberAnimation {
property: "x"
duration: 200
easing.type: Easing.InOutQuad
}
}
}
}
background: Rectangle { background: Rectangle {
opacity: enabled ? 1 : 0.3 opacity: enabled ? 1 : 0.3

View file

@ -4,7 +4,6 @@
<file>ProfilesDialog.qml</file> <file>ProfilesDialog.qml</file>
<file>SettingsDialog.qml</file> <file>SettingsDialog.qml</file>
<file>components/ProgressCircle.qml</file> <file>components/ProgressCircle.qml</file>
<file>components/SimpleIndicator.qml</file>
<file>components/ConnectionDelegate.qml</file> <file>components/ConnectionDelegate.qml</file>
<file>components/FadeAnimation.qml</file> <file>components/FadeAnimation.qml</file>
<file>components/ConnectionIcon.qml</file> <file>components/ConnectionIcon.qml</file>
@ -13,5 +12,6 @@
<file>components/FancyButton.qml</file> <file>components/FancyButton.qml</file>
<file>components/SmoothItemDelegate.qml</file> <file>components/SmoothItemDelegate.qml</file>
<file>components/SmoothSwitchDelegate.qml</file> <file>components/SmoothSwitchDelegate.qml</file>
<file>components/InputDelegate.qml</file>
</qresource> </qresource>
</RCC> </RCC>