aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlvaluetypes/data/color_read.qml
blob: 73d2b921a7ecbdf8abcba3f84e15b8d3499f8863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Test 1.0

MyTypeObject {
    property real v_r: color.r
    property real v_g: color.g
    property real v_b: color.b
    property real v_a: color.a
    property real hsv_h: color.hsvHue
    property real hsv_s: color.hsvSaturation
    property real hsv_v: color.hsvValue
    property real hsl_h: color.hslHue
    property real hsl_s: color.hslSaturation
    property real hsl_l: color.hslLightness
    property variant copy: color
}