summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/lighter.qml
blob: 34f6b2737c8833a9da3b46ea2670cb3c99758158 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.0

QtObject {
    property variant test1: Qt.lighter(Qt.rgba(1, 0.8, 0.3))
    property variant test2: Qt.lighter()
    property variant test3: Qt.lighter(Qt.rgba(1, 0.8, 0.3), 1.8)
    property variant test4: Qt.lighter("red");
    property variant test5: Qt.lighter("perfectred"); // Non-existent color
    property variant test6: Qt.lighter(10);
    property variant test7: Qt.lighter(Qt.rgba(1, 0.8, 0.3), 1.8, 5)
}