~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/qml/qqmllanguage/data/dynamicProperties.qml

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import Test 1.0
 
2
import QtQuick 2.0
 
3
QtObject {
 
4
    default property int intProperty : 10
 
5
    property bool boolProperty: false
 
6
    property double doubleProperty: -10.1
 
7
    property real realProperty: -19.9
 
8
    property string stringProperty: "Hello World!"
 
9
    property color colorProperty: "red"
 
10
    property url urlProperty: "main.qml"
 
11
    property date dateProperty: "1945-09-02"
 
12
    property variant varProperty: "Hello World!"
 
13
}