aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarko Niemelä <marko.a.niemela@nokia.com>2012-01-26 14:26:58 +0200
committerMarko Niemelä <marko.a.niemela@nokia.com>2012-01-26 14:26:58 +0200
commit20bb350f4ae61bab04c58b93b397af6941950afc (patch)
tree6fb5085faaa817d71c7b219f0808bc15dfcb75a8 /tests
parent4c6e0e37a16d6061be0540b700147f7ef76c8173 (diff)
More intuitive test UI controls for LevelAdjust effect
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/testbed/LevelSlider.qml201
-rw-r--r--tests/manual/testbed/TestLevelAdjust.qml97
-rwxr-xr-xtests/manual/testbed/images/slider_handle_black.pngbin0 -> 390 bytes
-rwxr-xr-xtests/manual/testbed/images/slider_handle_gray.pngbin0 -> 401 bytes
-rwxr-xr-xtests/manual/testbed/images/slider_handle_white.pngbin0 -> 373 bytes
5 files changed, 258 insertions, 40 deletions
diff --git a/tests/manual/testbed/LevelSlider.qml b/tests/manual/testbed/LevelSlider.qml
new file mode 100644
index 0000000..a0b9779
--- /dev/null
+++ b/tests/manual/testbed/LevelSlider.qml
@@ -0,0 +1,201 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Graphical Effects module.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
+** the names of its contributors may be used to endorse or promote
+** products derived from this software without specific prior written
+** permission.
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.0
+
+Item {
+ id: slider
+
+ width: parent.width
+ height: 30
+
+ property real midPointValue: 0.5
+ property real blackPointValue: 0.0
+ property real whitePointValue: 1.0
+ property real maximum: 1
+ property real minimum: 0
+ property real gamma: Math.min(10.0, Math.max(0.1, 1/(Math.log(0.5) / Math.log(midPointValue))))
+ property string caption: ""
+ property bool integer: false
+ property bool showMidPoint: true
+
+ Text {
+ id: captionText
+ width: 110
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 13
+ horizontalAlignment: Text.AlignRight
+ text: slider.caption + ':'
+ font.family: "Arial"
+ font.pixelSize: 11
+ color: "#B3B3B3"
+ }
+
+ Item {
+ id: track
+ height: parent.height
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.left: parent.left
+ anchors.leftMargin: parent.width / 2 - 30
+ anchors.right: parent.right
+ anchors.rightMargin: 10
+
+ BorderImage {
+ id: trackImage
+ source: "images/slider_track.png"
+ anchors.left: parent.left
+ anchors.right: parent.right
+ border.right: 2
+ width: parent.width
+ }
+
+ BorderImage {
+ id: trackFilled
+ anchors.left: blackpointHandle.x < whitePointHandle.x ? blackpointHandle.right : whitePointHandle.right
+ anchors.right: blackpointHandle.x < whitePointHandle.x ? whitePointHandle.left : blackpointHandle.left
+ anchors.margins: -10
+ source: "images/slider_track_filled.png"
+ border.left: 3
+ border.right: 3
+ }
+
+ Image {
+ id: blackpointHandle;
+ smooth: true
+ source: blackpointMouseArea.pressed ? "images/slider_handle_pressed.png" : "images/slider_handle_black.png"
+ x: trackImage.x - width/2 + 5
+ width: 20
+ onXChanged: {
+ blackPointValue = minimum + maximum * ((x + 5) / (track.width - 10))
+ midpointHandle.x = blackpointHandle.x + ((whitePointHandle.x - blackpointHandle.x) * midPointValue)
+ }
+ }
+
+ Image {
+ id: midpointHandle;
+ smooth: true
+ source: midpointMouseArea.pressed ? "images/slider_handle_pressed.png" : "images/slider_handle_gray.png"
+ x: blackpointHandle.x + ((whitePointHandle.x - blackpointHandle.x) * 0.5)
+ visible: showMidPoint
+ width: 20
+ onXChanged: {
+ if (midpointMouseArea.pressed) {
+ midPointValue = (x - Math.min(whitePointHandle.x, blackpointHandle.x)) / Math.abs(whitePointHandle.x - blackpointHandle.x)
+ }
+ }
+ }
+
+ Image {
+ id: whitePointHandle;
+ smooth: true
+ source: whitepointMouseArea.pressed ? "images/slider_handle_pressed.png" : "images/slider_handle_white.png"
+ x: trackImage.x + trackImage.width - width/2 - 5
+ width: 20
+ onXChanged: {
+ whitePointValue = minimum + maximum * ((x + 5) / (track.width - 10))
+ midpointHandle.x = blackpointHandle.x + ((whitePointHandle.x - blackpointHandle.x) * midPointValue)
+ }
+ }
+
+ MouseArea {
+ id: blackpointMouseArea
+ anchors.fill: blackpointHandle
+ anchors.margins: -5
+ drag.target: blackpointHandle
+ drag.axis: Drag.XAxis
+ drag.minimumX: -5
+ drag.maximumX: trackImage.width - blackpointHandle.width + 5
+ }
+
+ MouseArea {
+ id: whitepointMouseArea
+ anchors.fill: whitePointHandle
+ anchors.margins: -5
+ drag.target: whitePointHandle
+ drag.axis: Drag.XAxis
+ drag.minimumX: -5
+ drag.maximumX: trackImage.width - whitePointHandle.width + 5
+ }
+
+ MouseArea {
+ id: midpointMouseArea
+ anchors.fill: midpointHandle
+ anchors.margins: -5
+ drag.target: midpointHandle
+ drag.axis: Drag.XAxis
+ drag.minimumX: Math.min(blackpointHandle.x, whitePointHandle.x)
+ drag.maximumX: Math.max(whitePointHandle.x, blackpointHandle.x)
+ }
+ }
+
+ Text {
+ id: blackPointValueCaption
+ anchors.bottom: track.bottom
+ anchors.left: track.left
+ text: slider.blackPointValue.toFixed(1)
+ font.family: "Arial"
+ font.pixelSize: 11
+ color: "#999999"
+ }
+
+ Text {
+ id: midPointValueCaption
+ anchors.bottom: track.bottom
+ anchors.left: track.left
+ anchors.right: track.right
+ horizontalAlignment: Text.AlignHCenter
+ width: track.width
+ text: slider.gamma.toFixed(1)
+ font.family: "Arial"
+ font.pixelSize: 11
+ color: "#999999"
+ visible: showMidPoint
+ }
+
+ Text {
+ id: whitePointValueCaption
+ anchors.bottom: track.bottom
+ anchors.right: track.right
+ text: slider.whitePointValue.toFixed(1)
+ font.family: "Arial"
+ font.pixelSize: 11
+ color: "#999999"
+ }
+}
diff --git a/tests/manual/testbed/TestLevelAdjust.qml b/tests/manual/testbed/TestLevelAdjust.qml
index 6223481..337253e 100644
--- a/tests/manual/testbed/TestLevelAdjust.qml
+++ b/tests/manual/testbed/TestLevelAdjust.qml
@@ -53,63 +53,80 @@ TestCaseTemplate {
visible: enabledCheckBox.selected
cached: cachedCheckBox.selected
source: imageSource
- minimumInput: colorPicker1.color
- maximumInput: colorPicker2.color
- minimumOutput: colorPicker3.color
- maximumOutput: colorPicker4.color
- gamma: Qt.vector3d(gammaR.value, gammaG.value, gammaB.value)
+
+ minimumInput: Qt.rgba(redInput.blackPointValue + valueInput.blackPointValue * (redInput.whitePointValue - redInput.blackPointValue), greenInput.blackPointValue + valueInput.blackPointValue * (greenInput.whitePointValue - greenInput.blackPointValue), blueInput.blackPointValue + valueInput.blackPointValue * (blueInput.whitePointValue - blueInput.blackPointValue), alphaInput.blackPointValue)
+ maximumInput: Qt.rgba(redInput.whitePointValue - (1.0 - valueInput.whitePointValue) * (redInput.whitePointValue - redInput.blackPointValue), greenInput.whitePointValue - (1.0 - valueInput.whitePointValue) * (greenInput.whitePointValue - greenInput.blackPointValue), blueInput.whitePointValue - (1.0 - valueInput.whitePointValue) * (blueInput.whitePointValue - blueInput.blackPointValue), alphaInput.whitePointValue)
+ minimumOutput: Qt.rgba(redOutput.blackPointValue + valueOutput.blackPointValue * (redOutput.whitePointValue - redOutput.blackPointValue), greenOutput.blackPointValue + valueOutput.blackPointValue * (greenOutput.whitePointValue - greenOutput.blackPointValue), blueOutput.blackPointValue + valueOutput.blackPointValue * (blueOutput.whitePointValue - blueOutput.blackPointValue), alphaOutput.blackPointValue)
+ maximumOutput: Qt.rgba(redOutput.whitePointValue - (1.0 - valueOutput.whitePointValue) * (redOutput.whitePointValue - redOutput.blackPointValue), greenOutput.whitePointValue - (1.0 - valueOutput.whitePointValue) * (greenOutput.whitePointValue - greenOutput.blackPointValue), blueOutput.whitePointValue - (1.0 - valueOutput.whitePointValue) * (blueOutput.whitePointValue - blueOutput.blackPointValue), alphaOutput.whitePointValue)
+
+ gamma: Qt.vector3d((redInput.gamma * valueInput.gamma), (greenInput.gamma * valueInput.gamma), (blueInput.gamma * valueInput.gamma))
}
bgColor: bgColorPicker.color
controls: [
Control {
- caption: "minimumInput"
- RgbaColorPicker {
- id: colorPicker1
- rValue: 0.0
- gValue: 0.0
- bValue: 0.0
- aValue: 0.0
+ caption: "RGB"
+ LevelSlider {
+ id: valueInput
+ caption: "Input"
+ }
+ LevelSlider {
+ id: valueOutput
+ showMidPoint: false
+ caption: "Output"
}
},
Control {
- caption: "maximumInput"
- RgbaColorPicker {
- id: colorPicker2
+ caption: "Red"
+ __hide: true
+ LevelSlider {
+ id: redInput
+ caption: "Input"
+ }
+ LevelSlider {
+ id: redOutput
+ showMidPoint: false
+ caption: "Output"
}
},
Control {
- caption: "minimumOutput"
- RgbaColorPicker {
- id: colorPicker3
- rValue: 0.0
- gValue: 0.0
- bValue: 0.0
- aValue: 0.0
+ caption: "Green"
+ __hide: true
+ LevelSlider {
+ id: greenInput
+ caption: "Input"
+ }
+ LevelSlider {
+ id: greenOutput
+ showMidPoint: false
+ caption: "Output"
}
},
Control {
- caption: "maximumOutput"
- RgbaColorPicker {
- id: colorPicker4
+ caption: "Blue"
+ __hide: true
+ LevelSlider {
+ id: blueInput
+ caption: "Input"
+ }
+ LevelSlider {
+ id: blueOutput
+ showMidPoint: false
+ caption: "Output"
}
},
Control {
- caption: "gamma"
- Slider {
- id: gammaR
- maximum: 10
- caption: "R"
- }
- Slider {
- id: gammaG
- maximum: 10
- caption: "G"
- }
- Slider {
- id: gammaB
- maximum: 10
- caption: "B"
+ caption: "Alpha"
+ __hide: true
+ LevelSlider {
+ id: alphaInput
+ showMidPoint: false
+ caption: "Input"
+ }
+ LevelSlider {
+ id: alphaOutput
+ showMidPoint: false
+ caption: "Output"
}
},
Control {
diff --git a/tests/manual/testbed/images/slider_handle_black.png b/tests/manual/testbed/images/slider_handle_black.png
new file mode 100755
index 0000000..43bbeb8
--- /dev/null
+++ b/tests/manual/testbed/images/slider_handle_black.png
Binary files differ
diff --git a/tests/manual/testbed/images/slider_handle_gray.png b/tests/manual/testbed/images/slider_handle_gray.png
new file mode 100755
index 0000000..1b07aad
--- /dev/null
+++ b/tests/manual/testbed/images/slider_handle_gray.png
Binary files differ
diff --git a/tests/manual/testbed/images/slider_handle_white.png b/tests/manual/testbed/images/slider_handle_white.png
new file mode 100755
index 0000000..4f4f551
--- /dev/null
+++ b/tests/manual/testbed/images/slider_handle_white.png
Binary files differ