Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeqt / data / rgba.qml
1 import QtQuick 1.0
2
3 QtObject {
4     property color test1: Qt.rgba(1, 0, 0, 0.8);
5     property color test2: Qt.rgba(1, 0.5, 0.3);
6     property color test3: Qt.rgba(1, 1);
7     property color test4: Qt.rgba(1, 1, 1, 1, 1);
8     property color test5: Qt.rgba(1.2, 1.3, 1.4, 1.5);
9     property color test6: Qt.rgba(-0.1, -0.2, -0.3, -0.4);
10 }