Move video resolution settings to a separate component
authorMohammed Sameer <msameer@foolab.org>
Mon, 11 Feb 2013 23:50:23 +0000 (01:50 +0200)
committerMohammed Sameer <msameer@foolab.org>
Mon, 11 Feb 2013 23:50:23 +0000 (01:50 +0200)
qml/VideoResolutionSettings.qml [new file with mode: 0644]
qml/VideoSettingsDialog.qml
qml/qml.qrc

diff --git a/qml/VideoResolutionSettings.qml b/qml/VideoResolutionSettings.qml
new file mode 100644 (file)
index 0000000..ebd8c3b
--- /dev/null
@@ -0,0 +1,56 @@
+// -*- qml -*-
+
+/*!
+ * This file is part of CameraPlus.
+ *
+ * Copyright (C) 2012 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 1.1
+import com.nokia.meego 1.1
+import "VideoSettingsDialog.js" as Util
+
+Column {
+        spacing: 10
+
+        SectionHeader {
+                text: qsTr("Resolution");
+        }
+
+
+        ButtonRow {
+                width: parent.width
+
+                exclusive: false
+
+                Repeater {
+                        id: resolutions
+
+                        model: videoSettings.resolutions
+
+                        function name(name, res) {
+                                return name.charAt(0).toUpperCase() + name.slice(1) + " " + res;
+                        }
+
+                        delegate: Button {
+                                text: resolutions.name(resolutionName, resolution);
+                                checked: settings.videoResolution == resolutionName;
+                                onClicked: Util.setResolution(resolutionName);
+                        }
+                }
+        }
+}
index aa81bf5..de5683c 100644 (file)
@@ -23,7 +23,6 @@
 import QtQuick 1.1
 import com.nokia.meego 1.1
 import QtCamera 1.0
-import "VideoSettingsDialog.js" as Util
 
 Dialog {
         id: dialog
@@ -71,30 +70,8 @@ Dialog {
                                         text: qsTr("Video settings");
                                 }
 
-                                SectionHeader {
-                                        text: qsTr("Resolution");
-                                }
-
-                                ButtonRow {
+                                VideoResolutionSettings {
                                         width: parent.width
-
-                                        exclusive: false
-
-                                        Repeater {
-                                                id: resolutions
-
-                                                model: videoSettings.resolutions
-
-                                                function name(name, res) {
-                                                        return name.charAt(0).toUpperCase() + name.slice(1) + " " + res;
-                                                }
-
-                                                delegate: Button {
-                                                        text: resolutions.name(resolutionName, resolution);
-                                                        checked: settings.videoResolution == resolutionName;
-                                                        onClicked: Util.setResolution(resolutionName);
-                                                }
-                                        }
                                 }
 
                                 CameraSettings {
index 0b170c5..1456a0b 100644 (file)
@@ -42,5 +42,6 @@
        <file>ImageResolutionSettings.qml</file>
        <file>VideoSettingsDialog.qml</file>
        <file>VideoSettingsDialog.js</file>
+       <file>VideoResolutionSettings.qml</file>
     </qresource>
 </RCC>