summaryrefslogtreecommitdiffstats
path: root/basicsuite/Camera/CaptureControl.qml
diff options
context:
space:
mode:
authoraavit <eirik.aavitsland@digia.com>2013-10-08 16:55:15 +0200
committerEirik Aavitsland <eirik.aavitsland@digia.com>2013-10-09 11:33:52 +0300
commitbcc6a8fe80f2f31605afaae63e1b05051c0deb5f (patch)
tree408bb294cb2fb813f2b86fcf0ae90e0f9d1c3d88 /basicsuite/Camera/CaptureControl.qml
parentecd752748fd0385d6b22712663c0e1d1c87921af (diff)
Moved Media Player and Camera from experimental to basicsuite
Change-Id: I8fd2335614062e1ca09f385ad6c0ae0dd19d694c Reviewed-by: Pasi Petäjäjärvi <pasi.petajajarvi@digia.com>
Diffstat (limited to 'basicsuite/Camera/CaptureControl.qml')
-rw-r--r--basicsuite/Camera/CaptureControl.qml40
1 files changed, 40 insertions, 0 deletions
diff --git a/basicsuite/Camera/CaptureControl.qml b/basicsuite/Camera/CaptureControl.qml
new file mode 100644
index 0000000..b8180f9
--- /dev/null
+++ b/basicsuite/Camera/CaptureControl.qml
@@ -0,0 +1,40 @@
+import QtQuick 2.0
+import QtMultimedia 5.0
+
+Rectangle {
+ id: controlRoot
+
+ signal clicked
+
+ property bool videoMode: camera.captureMode === Camera.CaptureVideo
+
+ width: 180 * root.contentScale
+ height: width
+ radius: width / 2
+ color: mouser.pressed ? (controlRoot.videoMode ? "#77fa334f" : "#7798c66c") : "#77333333"
+ visible: enabled
+
+ Rectangle {
+ id: center
+ anchors.centerIn: parent
+ width: parent.width * 0.45
+ height: width
+ radius: width / 2
+ opacity: mouser.pressed ? 0.7 : 1
+ color: controlRoot.videoMode ? "#fa334f" : "#98c66c"
+ }
+
+ Rectangle {
+ anchors.centerIn: parent
+ color: "white"
+ visible: camera.videoRecorder.recorderStatus === CameraRecorder.RecordingStatus
+ width: center.width * 0.3
+ height: width
+ }
+
+ MouseArea {
+ id: mouser
+ anchors.fill: parent
+ onClicked: controlRoot.clicked()
+ }
+}