2019-01-01 15:23:15 +01:00
|
|
|
/*
|
|
|
|
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.9
|
|
|
|
import QtMultimedia 5.8
|
|
|
|
import QtQuick.Window 2.2
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import com.itsblue.speedclimbingstopwatch 1.0
|
|
|
|
|
|
|
|
|
|
|
|
Popup {
|
|
|
|
id: root
|
|
|
|
x: startButt.x
|
|
|
|
y: startButt.y
|
|
|
|
width: startButt.width
|
|
|
|
height: startButt.height
|
|
|
|
modal: true
|
|
|
|
|
|
|
|
enter: Transition {
|
|
|
|
NumberAnimation { properties: "scale"; from: 0; to: 1; duration: 300; easing.type: Easing.Linear }
|
|
|
|
}
|
|
|
|
|
|
|
|
exit: Transition {
|
|
|
|
NumberAnimation { properties: "scale"; from: 1; to: 0; duration: 300; easing.type: Easing.Linear }
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
radius: width * 0.5
|
2019-03-08 18:03:27 +01:00
|
|
|
color: appTheme.style.viewColor
|
|
|
|
border.color: appTheme.style.lineColor
|
2019-01-01 15:23:15 +01:00
|
|
|
border.width: 1
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: head_text
|
|
|
|
text: "error"
|
|
|
|
font.pixelSize: headlineUnderline.width * 0.1
|
2019-03-08 18:03:27 +01:00
|
|
|
color: enabled ? appTheme.style.textColor:appTheme.style.disabledTextColor
|
2019-01-01 15:23:15 +01:00
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
top: parent.top
|
|
|
|
topMargin: headlineUnderline.anchors.topMargin / 2 - height / 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: headlineUnderline
|
|
|
|
height: 1
|
|
|
|
width: parent.width
|
2019-03-08 18:03:27 +01:00
|
|
|
color: appTheme.style.lineColor
|
2019-01-01 15:23:15 +01:00
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
topMargin: parent.height * 0.15
|
|
|
|
rightMargin: parent.radius - Math.sqrt(Math.pow(parent.radius,2)-Math.pow(parent.radius-anchors.topMargin,2))
|
|
|
|
leftMargin: parent.radius - Math.sqrt(Math.pow(parent.radius,2)-Math.pow(parent.radius-anchors.topMargin,2))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: errorIcon
|
|
|
|
source: "qrc:/graphics/icons/error.png"
|
|
|
|
anchors.centerIn: parent
|
|
|
|
height: parent.height * 0.5
|
|
|
|
width: height
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|