Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / assignBasicTypes.2.qml
1 import Qt.test 1.0
2
3 MyTypeObject {
4     flagProperty: if(1) "FlagVal1 | FlagVal3"
5     enumProperty: if(1) "EnumVal2"
6     stringProperty: if(1) "Hello World!"
7     uintProperty: if(1) 10
8     intProperty: if(1) -19
9     realProperty: if(1) 23.2
10     doubleProperty: if(1) -19.75
11     floatProperty: if(1) 8.5
12     colorProperty: if(1) "red"
13     dateProperty: if(1) "1982-11-25"
14     timeProperty: if(1) "11:11:32" 
15     dateTimeProperty: if(1) "2009-05-12T13:22:01"
16     pointProperty: if(1) "99,13"
17     pointFProperty: if(1) "-10.1,12.3"
18     sizeProperty: if(1) "99x13"
19     sizeFProperty: if(1) "0.1x0.2"
20     rectProperty: if(1) "9,7,100x200"
21     rectFProperty: if(1) "1000.1,-10.9,400x90.99"
22     boolProperty: if(1) true
23     variantProperty: if(1) "Hello World!"
24     vectorProperty: if(1) "10,1,2.2"
25     urlProperty: if(1) "main.qml"
26 }