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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
/*
* Copyright 2015 Canonical Ltd.
*
* This file is part of messaging-app.
*
* messaging-app is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* messaging-app is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.3
import Ubuntu.Components 1.3
import messagingapp.private 0.1
FocusScope {
id: pickerRoot
signal stickerSelected(string path)
Component.onCompleted: {
StickersHistoryModel.databasePath = dataLocation + "/stickers/stickers.sqlite"
StickersHistoryModel.limit = 10
}
property bool expanded: false
readonly property int packCount: stickerPacksModel.count
// FIXME: try to get something similar to the keyboard height
// FIXME: animate the displaying
height: expanded ? units.gu(30) : 0
opacity: expanded ? 1 : 0
visible: opacity > 0
Connections {
target: Qt.inputMethod
onVisibleChanged: {
if (Qt.inputMethod.visible && oskEnabled) {
pickerRoot.expanded = false
}
}
}
Behavior on height {
UbuntuNumberAnimation { }
}
Behavior on opacity {
UbuntuNumberAnimation { }
}
ListView {
id: setsList
model: stickerPacksModel
orientation: ListView.Horizontal
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
height: units.gu(6)
header: HistoryButton {
height: units.gu(6)
width: height
onTriggered: stickersGrid.model.packName = ""
selected: stickersGrid.model.packName === ""
}
delegate: StickerPackDelegate {
anchors.top: parent.top
anchors.bottom: parent.bottom
width: units.gu(6)
path: filePath
onTriggered: stickersGrid.model.packName = fileName
selected: stickersGrid.model.packName === fileName
}
}
Rectangle {
anchors.fill: stickersGrid
color: "#f5f5f5"
}
GridView {
id: stickersGrid
anchors.left: parent.left
anchors.right: parent.right
anchors.top: setsList.bottom
anchors.bottom: parent.bottom
clip: true
cellWidth: units.gu(10)
cellHeight: units.gu(10)
visible: stickersGrid.model.packName.length > 0
model: stickersModel
delegate: StickerDelegate {
stickerSource: filePath
width: stickersGrid.cellWidth
height: stickersGrid.cellHeight
onTriggered: {
StickersHistoryModel.add("%1/%2".arg(stickersGrid.model.packName).arg(fileName))
pickerRoot.stickerSelected(stickerSource)
}
}
}
GridView {
id: historyGrid
anchors.left: parent.left
anchors.right: parent.right
anchors.top: setsList.bottom
anchors.bottom: parent.bottom
clip: true
cellWidth: units.gu(10)
cellHeight: units.gu(10)
visible: stickersGrid.model.packName.length === 0
model: StickersHistoryModel
delegate: StickerDelegate {
stickerSource: "%1/stickers/%2".arg(dataLocation).arg(sticker)
width: stickersGrid.cellWidth
height: stickersGrid.cellHeight
onTriggered: {
StickersHistoryModel.add(sticker)
pickerRoot.stickerSelected(stickerSource)
}
}
}
}
|