Add missing capability.cpp
[harmattan/cameraplus] / qml / VideoTorchButton.qml
index 786e94b..0f05773 100644 (file)
@@ -3,7 +3,7 @@
 /*!
  * This file is part of CameraPlus.
  *
- * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
+ * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-import QtQuick 1.1
-import com.nokia.meego 1.1
+import QtQuick 2.0
 import QtCamera 1.0
 
-Button {
-        id: button
-        width: 56
-        height: 56
-        opacity: 0.5
+CameraToolIcon {
+    id: button
+    property Camera camera: null
 
-        iconSource: torch.on ? "image://theme/icon-m-camera-torch-on" : "image://theme/icon-m-camera-torch-off"
-        onClicked: torch.on = !torch.on
-        VideoTorch {
-                id: torch
-                camera: cam
-        }
+    iconSource: settings.videoTorchOn ? cameraTheme.cameraTorchOnIconId : cameraTheme.cameraTorchOffIconId
+    onClicked: settings.videoTorchOn = !settings.videoTorchOn
+
+    Binding {
+        target: camera ? camera.videoTorch : null
+        property: "on"
+        value: settings.videoTorchOn
+        when: camera != null
+    }
 }