blob: e92ba597dccf484db833e5376eeacc1850d5d42b (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
import Qt 4.6
Item {
id: titleBar
property string untaggedString: "Uploads from everyone"
property string taggedString: "Recent uploads tagged "
BorderImage { source: "images/titlebar.sci"; width: parent.width; height: parent.height + 14; y: -7 }
Item {
id: container
width: (parent.width * 2) - 55 ; height: parent.height
function accept() {
titleBar.state = ""
background.state = ""
rssModel.tags = editor.text
}
Text {
id: categoryText
anchors {
left: parent.left; right: tagButton.left; leftMargin: 10; rightMargin: 10
verticalCenter: parent.verticalCenter
}
elide: Text.ElideLeft
text: (rssModel.tags=="" ? untaggedString : taggedString + rssModel.tags)
font.bold: true; color: "White"; style: Text.Raised; styleColor: "Black"
}
Button {
id: tagButton; x: titleBar.width - 50; width: 45; height: 32; text: "..."
onClicked: if (titleBar.state == "Tags") container.accept(); else titleBar.state = "Tags"
anchors.verticalCenter: parent.verticalCenter
}
Item {
id: lineEdit
y: 4; height: parent.height - 9
anchors { left: tagButton.right; leftMargin: 5; right: parent.right; rightMargin: 5 }
BorderImage { source: "images/lineedit.sci"; anchors.fill: parent }
TextInput {
id: editor
anchors {
left: parent.left; right: parent.right; leftMargin: 10; rightMargin: 10
verticalCenter: parent.verticalCenter
}
cursorVisible: true; font.bold: true
color: "#151515"; selectionColor: "Green"
}
Keys.forwardTo: [ (returnKey), (editor)]
Item {
id: returnKey
Keys.onReturnPressed: container.accept()
Keys.onEscapePressed: titleBar.state = ""
}
}
}
states: State {
name: "Tags"
PropertyChanges { target: container; x: -tagButton.x + 5 }
PropertyChanges { target: tagButton; text: "OK" }
PropertyChanges { target: lineEdit; focus: true }
}
transitions: Transition {
NumberAnimation { properties: "x"; easing.type: "InOutQuad" }
}
}
|