Fixed VideoPlayerPage.qml failure to set cameraConfig
[harmattan/cameraplus] / qml / VideoSceneButton.qml
index fea4a0a..2ab0bc8 100644 (file)
@@ -1,52 +1,53 @@
 // -*- qml -*-
-import QtQuick 1.1
-import com.nokia.meego 1.1
-import QtCamera 1.0
-
-Selector {
-        id: button
-
-        property int value: settings.videoSceneMode
 
-        iconSource: sceneIcon(scene.value);
-
-        title: qsTr("Scene mode");
-
-        function sceneIcon(val) {
-                var x = row.children.length;
-                var i = 0;
-                for (i = 0; i < x; i++) {
-                        if (row.children[i].value == val) {
-                                return row.children[i].normalIcon;
-                        }
-                }
-        }
-
-        widget: Row {
-                id: row
-                height: button.checked ? 64 : 0
-                width: button.checked ? (children.length * height) +  (children.length - 1) * spacing : 0
-                spacing: 10
-
-                Behavior on width {
-                        // TODO: seems animation is not working
-                        PropertyAnimation { duration: 250; }
-                }
-
-                CheckButton {
-                        normalIcon: "image://theme/icon-m-camera-scene-auto"
-                        checkedIcon: "image://theme/icon-m-camera-scene-auto-selected"
-                        savedValue: settings.videoSceneMode
-                        onClicked: settings.videoSceneMode = value;
-                        value: Scene.Auto
-                }
-
-                CheckButton {
-                        normalIcon: "image://theme/icon-m-camera-video-night"
-                        checkedIcon: "image://theme/icon-m-camera-video-night-selected"
-                        savedValue: settings.videoSceneMode
-                        onClicked: settings.videoSceneMode = value;
-                        value: Scene.Night
-                }
+/*!
+ * This file is part of CameraPlus.
+ *
+ * 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
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+import QtQuick 2.0
+import QtCamera 1.0
+import "data.js" as Data
+
+CameraToolIcon {
+    id: button
+
+    iconSource: "image://theme/" + Data.vsmIcon(settings.videoSceneMode)
+
+    property list<Item> items: [
+        CameraLabel {
+            height: parent ? parent.height : 0
+            text: qsTr("Scene")
+            verticalAlignment: Text.AlignVCenter
+        },
+        CheckButton {
+            normalIcon: "image://theme/" + Data.vsmIcon(value)
+            checkedIcon: "image://theme/" + Data.vsmSelectedIcon(value)
+            savedValue: settings.videoSceneMode
+            onClicked: settings.videoSceneMode = value
+            value: Scene.Auto
+        },
+        CheckButton {
+            normalIcon: "image://theme/" + Data.vsmIcon(value)
+            checkedIcon: "image://theme/" + Data.vsmSelectedIcon(value)
+            savedValue: settings.videoSceneMode
+            onClicked: settings.videoSceneMode = value
+            value: Scene.Night
         }
+    ]
 }