Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeqt / data / tint.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property color test1: Qt.tint("red", "blue");
5     property color test2: Qt.tint(Qt.rgba(1, 0, 0), Qt.rgba(0, 0, 0, 0));
6     property color test3: Qt.tint("red", Qt.rgba(0, 0, 1, 0.5));
7     property color test4: Qt.tint("red", Qt.rgba(0, 0, 1, 0.5), 10);
8     property color test5: Qt.tint("red")
9 }