summaryrefslogtreecommitdiffstats
path: root/util/qt3d/assetviewer/qml/Widgets/ZoomControls.qml
diff options
context:
space:
mode:
Diffstat (limited to 'util/qt3d/assetviewer/qml/Widgets/ZoomControls.qml')
-rw-r--r--util/qt3d/assetviewer/qml/Widgets/ZoomControls.qml41
1 files changed, 0 insertions, 41 deletions
diff --git a/util/qt3d/assetviewer/qml/Widgets/ZoomControls.qml b/util/qt3d/assetviewer/qml/Widgets/ZoomControls.qml
deleted file mode 100644
index 7ad01ce0..00000000
--- a/util/qt3d/assetviewer/qml/Widgets/ZoomControls.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 1.0
-import Qt3D 1.0
-import AssetViewer 1.0
-
-Rectangle {
- radius: 4
- border.width: 1
- border.color: "#191919"
- width: 16 + 2
- height: 16 + 2 + 16 + 2
- color: "#999999"
-
- signal zoomIn()
- signal zoomOut()
-
- Image {
- id: imgIn
- source: "images/zoomin.png"
- x: 2
- y: 2
- MouseArea {
- anchors.fill: parent
- onClicked: {
- zoomIn()
- }
- }
- }
-
- Image {
- id: imgOut
- source: "images/zoomout.png"
- x: 2
- y: 20
- MouseArea {
- anchors.fill: parent
- onClicked: {
- zoomOut()
- }
- }
- }
-}