branch | GCC_SURGE |
changeset 31 | 5daf16870df6 |
parent 30 | 5dc02b23752f |
27:93b982ccede2 | 31:5daf16870df6 |
---|---|
1 import Qt 4.7 |
|
2 |
|
3 Rectangle { |
|
4 Component { id: testableCursor |
|
5 //Doesn't blink |
|
6 Rectangle { |
|
7 color:"black" |
|
8 width:1 |
|
9 } |
|
10 } |
|
11 color: "green" |
|
12 width:400; |
|
13 height:40; |
|
14 TextEdit { |
|
15 focus: true; |
|
16 cursorDelegate: testableCursor |
|
17 text: "Jackdaws love my big sphinx of Quartz" |
|
18 } |
|
19 } |