summaryrefslogtreecommitdiffstats
path: root/basicsuite/Camera/ZoomControl.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Camera/ZoomControl.qml')
-rw-r--r--basicsuite/Camera/ZoomControl.qml40
1 files changed, 0 insertions, 40 deletions
diff --git a/basicsuite/Camera/ZoomControl.qml b/basicsuite/Camera/ZoomControl.qml
deleted file mode 100644
index 493defe..0000000
--- a/basicsuite/Camera/ZoomControl.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-import QtQuick 2.0
-
-Column {
- width: 400 * root.contentScale
- spacing: 20 * root.contentScale
- visible: maximumZoom > 1
-
- property alias maximumZoom: zoomSlider.maximum
- property alias requestedZoom: zoomSlider.value
- property real actualZoom: 1
-
- Rectangle {
- anchors.horizontalCenter: zoomSlider.horizontalCenter
- width: zoomText.width + 10 * root.contentScale
- height: zoomText.height + 10 * root.contentScale
- color: "#77333333"
- radius: 5 * root.contentScale
- rotation: root.contentRotation
- Behavior on rotation { NumberAnimation { } }
-
- Text {
- id: zoomText
- anchors.centerIn: parent
- font.pixelSize: Math.round(24 * root.contentScale)
- color: "white"
- font.bold: true
- text: (Math.round(actualZoom * 100) / 100) + "x"
- }
- }
-
- Slider {
- id: zoomSlider
- width: parent.width
- rotation: root.contentRotation === -90 ? 180 : (root.contentRotation === 90 ? 0 : root.contentRotation)
-
- minimum: 1
- maximum: 1
- value: 1
- }
-}