blob: 1de2f4f7a7bea26c4a152baace13d74cc893742c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import Qt 4.7
Rectangle {
resources: [
Component { id: cursorA
Item { id: cPage;
Behavior on x { NumberAnimation { } }
Behavior on y { NumberAnimation { } }
Behavior on height { NumberAnimation { duration: 200 } }
Rectangle { id: cRectangle; color: "black"; y: 1; width: 1; height: parent.height-2;
Rectangle { id:top; color: "black"; width: 3; height: 1; x: -1; y:0}
Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;}
opacity: 1
SequentialAnimation on opacity { running: cPage.parent.focus == true; loops: Animation.Infinite;
NumberAnimation { properties: "opacity"; to: 1; duration: 500; easing.type: "InQuad"}
NumberAnimation { properties: "opacity"; to: 0; duration: 500; easing.type: "OutQuad"}
}
}
width: 1;
}
}
]
width: 400
height: 200
color: "white"
TextInput { id: mainText
text: "Hello World"
cursorDelegate: cursorA
focus: true
font.pixelSize: 28
selectionColor: "lightsteelblue"
selectedTextColor: "deeppink"
color: "forestgreen"
anchors.centerIn: parent
}
}
|