X-Git-Url: http://cgit.sxemacs.org/?p=harmattan%2Fcameraplus;a=blobdiff_plain;f=qml%2FImageSettingsPage.qml;h=0a97118a4589f625479dcc4903e8f5535a06f20a;hp=207687ada908500ecf2e650958e8a91507c0f20d;hb=141837d9a3476042178740eb54a05dcf830c2cbe;hpb=55a8ce2a32455904ea28a332a0c395f15b6e5406 diff --git a/qml/ImageSettingsPage.qml b/qml/ImageSettingsPage.qml index 207687a..0a97118 100644 --- a/qml/ImageSettingsPage.qml +++ b/qml/ImageSettingsPage.qml @@ -40,6 +40,7 @@ CameraPage { } Flickable { + id: flickable anchors.top: parent.top anchors.left: parent.left anchors.right: parent.right @@ -57,68 +58,6 @@ CameraPage { font.pixelSize: 36 text: qsTr("Image settings"); } -/* - SectionHeader { - text: qsTr("Capture mode"); - } - - ButtonRow { - anchors.horizontalCenter: parent.horizontalCenter - // TODO: - Button { text: qsTr("Normal"); } - Button { text: qsTr("Self timer"); } - Button { text: qsTr("Fast capture"); } - } -*/ -/* - SectionHeader { - text: qsTr("Self timer"); - } - - ButtonRow { - anchors.horizontalCenter: parent.horizontalCenter - // TODO: - Button { text: qsTr("2 seconds"); } - Button { text: qsTr("10 seconds"); } - } -*/ - SectionHeader { - text: qsTr("Light sensitivity"); - } - - ButtonRow { - anchors.horizontalCenter: parent.horizontalCenter - - Button { - text: qsTr("Automatic"); - checked: settings.imageIso == 0; - onClicked: settings.imageIso = 0; - } - - Button { - text: qsTr("ISO 100"); - checked: settings.imageIso == 100; - onClicked: settings.imageIso = 100; - } - - Button { - text: qsTr("ISO 200"); - checked: settings.imageIso == 200; - onClicked: settings.imageIso = 200; - } - - Button { - text: qsTr("ISO 400"); - checked: settings.imageIso == 400; - onClicked: settings.imageIso = 400; - } - - Button { - text: qsTr("ISO 800"); - checked: settings.imageIso == 800; - onClicked: settings.imageIso = 800; - } - } SectionHeader { text: qsTr("Aspect ratio");