Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmllanguage / data / assignBasicTypes.qml
1 import Test 1.0
2 MyTypeObject {
3     flagProperty: "FlagVal1 | FlagVal3"
4     enumProperty: "EnumVal2"
5     stringProperty: "Hello World!"
6     uintProperty: 10
7     intProperty: -19
8     realProperty: 23.2
9     doubleProperty: -19.7
10     floatProperty: 8.5
11     colorProperty: "red"
12     dateProperty: "1982-11-25"
13     timeProperty: "11:11:32" 
14     dateTimeProperty: "2009-05-12T13:22:01"
15     pointProperty: "99,13"
16     pointFProperty: "-10.1,12.3"
17     sizeProperty: "99x13"
18     sizeFProperty: "0.1x0.2"
19     rectProperty: "9,7,100x200"
20     rectFProperty: "1000.1,-10.9,400x90.99"
21     boolProperty: true
22     variantProperty: "Hello World!"
23     vectorProperty: "10,1,2.2"
24     vector4Property: "10,1,2.2,2.3"
25     urlProperty: "main.qml?with%3cencoded%3edata"
26
27     objectProperty: MyTypeObject { intProperty: 8 }
28 }