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

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquicktextinput/data/cursorTestInline.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 QtQuick 2.0
 
2
 
 
3
Rectangle { width: 300; height: 300; color: "white"
 
4
    property string contextualProperty: "Hello"
 
5
    TextInput {
 
6
        text: "Hello world!"
 
7
        id: textInputObject
 
8
        objectName: "textInputObject"
 
9
        cursorDelegate: Item {
 
10
            id:cursorInstance
 
11
            objectName: "cursorInstance"
 
12
            property string localProperty: contextualProperty
 
13
        }
 
14
    }
 
15
}