-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.qml
228 lines (206 loc) · 7.27 KB
/
interface.qml
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// Copyright (C) 2014 Chaserhkj
// This file is licensed under the MIT license
// For more details, see COPYRIGHT
import QtQuick 2.3
import QtQuick.Window 2.2
import QtQuick.Controls 1.2
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.1
ApplicationWindow {
id: window
title: "PyCloudEmoji"
width: 600
minimumWidth: 200
height: 500
minimumHeight: 200
signal cateClicked(int row)
signal emojiActivated(int row)
signal addRepoRequested(url file)
signal delRepoRequested(int row)
signal aboutToClose()
property string copyright:{
"PyCloudEmoji - A cloud solution to your favorite emoticons on Desktop.\n" +
"Copyright (C) 2014 Chaserhkj\n" +
"\n" +
"Permission is hereby granted, free of charge, to any person obtaining a copy\n" +
"of this software and associated documentation files (the \"Software\"), to deal\n" +
"in the Software without restriction, including without limitation the rights\n" +
"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n" +
"copies of the Software, and to permit persons to whom the Software is\n" +
"furnished to do so, subject to the following conditions:\n" +
"\n" +
"The above copyright notice and this permission notice shall be included in\n" +
"all copies or substantial portions of the Software.\n" +
"\n" +
"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n" +
"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n" +
"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n" +
"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n" +
"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n" +
"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" +
"THE SOFTWARE.\n"
}
onClosing: aboutToClose()
MessageDialog {
id: box
title: "<title>"
text: "<text>"
icon: StandardIcon.Information
modality: Qt.WindowModal
standardButtons: StandardButton.Ok
}
function warning(text) {
box.title = "Warning"
box.text = text
box.icon = StandardIcon.Warning
box.open()
}
function info(text) {
box.title = "Information"
box.text = text
box.icon = StandardIcon.Information
box.open()
}
function minimize() {
window.visibility = Window.Minimized
}
function deselectEmoji() {
var emojisView = tabView.getTab(0).item.emojisView
emojisView.selection.clear()
}
Component {
id: emojisTab
RowLayout {
id: rowLayout
property alias emojisView: emojis
anchors.topMargin: 10
anchors.leftMargin: 10
anchors.rightMargin: 10
anchors.bottomMargin: 10
spacing: 10
anchors.fill: parent
TableView {
id: cate
anchors.top: parent.top
anchors.bottom: parent.bottom
Layout.fillWidth: true
Layout.preferredWidth: parent.width /4
TableViewColumn {role: "name"; title: "Category"}
model: cateModel
onClicked: window.cateClicked(row)
}
TableView {
id: emojis
anchors.top: parent.top
anchors.bottom: parent.bottom
Layout.fillWidth: true
Layout.preferredWidth: parent.width /4 *3
TableViewColumn {role: "name"; title: "Description"; width:100}
TableViewColumn {role: "content"; title: "Emoticon"}
model: emojisModel
onActivated: window.emojiActivated(row)
}
}
}
Component {
id: reposTab
ColumnLayout {
id: columnLayout
anchors.fill: parent
anchors.topMargin: 10
anchors.leftMargin: 10
anchors.rightMargin: 10
anchors.bottomMargin: 10
RowLayout {
id: btnRowLayout
Layout.fillHeight: true
Layout.fillWidth: true
Layout.preferredHeight: 30
Layout.alignment: Qt.AlignHCenter
spacing: 50
Button {
id: addBtn
Layout.fillWidth: true
Layout.maximumWidth: 100
text: "Add"
onClicked: addRepo.open()
}
Button {
id: delBtn
Layout.fillWidth: true
Layout.maximumWidth: 100
text: "Delete"
onClicked: {
if (repos.selected == -1) {
window.warning("No repo selected to delete.")
} else {
confirmDelete.open()
}
}
}
}
TableView {
id: repos
property int selected: -1
onClicked: selected = row
Layout.fillWidth: true
Layout.fillHeight: true
Layout.preferredHeight: parent.height - btnRowLayout.height
anchors.bottom: parent.bottom
TableViewColumn {role: "name"; title: "Repo Name"; width:100}
TableViewColumn {role: "content"; title: "File Path"}
FileDialog {
id: addRepo
title: "Please choose a repo file to add."
nameFilters: ["JSON repo file (*.json)", "XML repo file (*.xml)", "All files (*.*)"]
modality: Qt.WindowModal
selectExisting: true
onAccepted: window.addRepoRequested(fileUrl)
}
MessageDialog {
id: confirmDelete
title: "Confirm of deletion"
text: "Are you sure to delete this repo from the list?\nThe actual file will not be deleted."
icon: StandardIcon.Question
modality: Qt.WindowModal
standardButtons: StandardButton.Yes | StandardButton.No
onYes: window.delRepoRequested(repos.selected)
}
model: reposModel
}
}
}
Component {
id: aboutTab
TextArea {
id: about
readOnly: true
text: window.copyright
anchors.fill: parent
anchors.topMargin: 20
anchors.bottomMargin: 20
anchors.leftMargin: 20
anchors.rightMargin: 20
}
}
TabView {
id: tabView
anchors.fill: parent
anchors.topMargin: 10
anchors.leftMargin: 10
anchors.rightMargin: 10
anchors.bottomMargin: 10
Tab {
title: "Emojis"
sourceComponent: emojisTab
}
Tab {
title: "Repos"
sourceComponent: reposTab
}
Tab {
title: "About"
sourceComponent: aboutTab
}
}
}