summaryrefslogtreecommitdiffstats
path: root/basicsuite/Camera/CameraControlButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Camera/CameraControlButton.qml')
-rw-r--r--basicsuite/Camera/CameraControlButton.qml54
1 files changed, 54 insertions, 0 deletions
diff --git a/basicsuite/Camera/CameraControlButton.qml b/basicsuite/Camera/CameraControlButton.qml
new file mode 100644
index 0000000..dc82435
--- /dev/null
+++ b/basicsuite/Camera/CameraControlButton.qml
@@ -0,0 +1,54 @@
+import QtQuick 2.0
+
+MouseArea {
+ id: buttonRoot
+ property alias title: titleTxt.text
+ property alias subtitle: valueTxt.text
+ property bool toggled: false
+
+ width: 78 * root.contentScale
+ height: 78 * root.contentScale
+ opacity: pressed ? 0.3 : 1.0
+ rotation: root.contentRotation
+ Behavior on rotation { NumberAnimation { } }
+
+ Rectangle {
+ anchors.fill: parent
+ color: toggled ? "#8898c66c" : "#77333333"
+ radius: 5 * root.contentScale
+ }
+
+ Column {
+ id: expModeControls
+ spacing: 2 * root.contentScale
+ anchors.centerIn: parent
+
+ Text {
+ id: titleTxt
+ anchors.horizontalCenter: expModeControls.horizontalCenter
+ font.pixelSize: 22 * root.contentScale
+ font.letterSpacing: -1
+ color: "white"
+ font.bold: true
+ }
+
+ Text {
+ id: valueTxt
+ anchors.horizontalCenter: expModeControls.horizontalCenter
+ height: 22 * root.contentScale
+ verticalAlignment: Text.AlignVCenter
+ color: "white"
+
+ Connections {
+ target: root
+ onContentScaleChanged: valueTxt.font.pixelSize = Math.round(18 * root.contentScale)
+ }
+
+ onTextChanged: font.pixelSize = Math.round(18 * root.contentScale)
+ onPaintedWidthChanged: {
+ if (paintedWidth > buttonRoot.width - (8 * root.contentScale))
+ font.pixelSize -= Math.round(2 * root.contentScale);
+ }
+ }
+ }
+}