724c058de53f7876308a2bb9c2e6f7ce4013abb3
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativetextedit / data / http / cursorHttpTest.qml
1 import QtQuick 1.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     resources: [ 
5         Component { id:cursorFail; FailItem { objectName: "delegateFail" } },
6         Component { id:cursorWait; WaitItem { objectName: "delegateSlow" } },
7         Component { id:cursorNorm; NormItem { objectName: "delegateOkay" } },
8         Component { id:cursorErr; ErrItem { objectName: "delegateErrorA" } }
9     ] 
10     TextEdit {
11         cursorDelegate: cursorFail
12     }
13     TextEdit {
14         cursorDelegate: cursorWait
15     }
16     TextEdit {
17         cursorDelegate: cursorNorm
18     }
19     TextEdit {
20         cursorDelegate: cursorErr
21     }
22 }