Move video resolution settings to a separate component
[harmattan/cameraplus] / qml / VideoResolutionSettings.qml
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);
+                        }
+                }
+        }
+}