blob: 3ce2c1a417f2d3f4f682c7a0b698f3798d3bc495 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
Item {
id: contactField
clip: true
height: 30
property var label: "Name"
property var icon: "pics/phone.png"
property var value: ""
onValueChanged: { fieldText.text=field.value }
RemoveButton {
id: removeButton
anchors.right: parent.right
anchors.top: parent.top
anchors.bottom: parent.bottom
expandedWidth: contactField.width
onConfirmed: { print('Clear field text'); fieldText.text='' }
}
FieldText {
id: fieldText
width: contactField.width-70
anchors.right: removeButton.left
anchors.rightMargin: 5
anchors.verticalCenter: parent.verticalCenter
label: contactField.label
text: contactField.value
onConfirmed: { contactField.value=fieldText.text }
}
Image {
anchors.right: fieldText.left
anchors.rightMargin: 5
anchors.verticalCenter: parent.verticalCenter
source: contactField.icon
}
states: [
State {
name: "editingText"
when: fieldText.state == 'editing'
SetProperty {
target: removeButton.anchors
property: "rightMargin"
value: -35
}
SetProperty {
target: fieldText
property: "width"
value: contactField.width
}
}
]
transitions: [
Transition {
fromState: ""
toState: "*"
reversible: true
NumericAnimation {
properties: "width,rightMargin"
duration: 200
}
}
]
}
|