-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.qml
250 lines (202 loc) · 6.47 KB
/
main.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
import Qt.labs.settings 1.0
import QtQuick 2.6
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.1
import GitScope 1.0
ApplicationWindow {
id: window
visible: true
width: 1024
height: 768
title: "GitScope"
property int listItemHeight: 50
property Item mainView: null
StateGroup {
id: viewMode
state: appSettings.viewMode
states: [
State {
name: "compact"
},
State {
name: "table"
}
]
onStateChanged: {
var currentCommitIndex = 0;
if (mainView) {
currentCommitIndex = mainView.currentCommitIndex;
mainView.visible = false;
}
if (state == "compact")
mainView = compactView
else if (state == "table")
mainView = tableView
else
console.error("Switched to an unknown view mode!");
mainView.currentCommitIndex = currentCommitIndex;
mainView.visible = true;
mainView.focus = true;
}
Component.onCompleted: {
if (!state)
state = "compact";
}
}
SystemPalette { id: palette }
menuBar: MenuBar {
Menu {
title: "Window"
ExclusiveGroup { id: viewGroup }
Menu {
title: "Views"
MenuItem {
text: "Compact"
checkable: true
checked: viewMode.state == "compact"
exclusiveGroup: viewGroup
onTriggered: {
viewMode.state = "compact";
}
}
MenuItem {
text: "Table"
checkable: true
checked: viewMode.state == "table"
exclusiveGroup: viewGroup
onTriggered: {
viewMode.state = "table";
}
}
}
}
}
statusBar: StatusBar {
id: statusBar
property string statusString: ""
function update() {
switch(gitManager.status) {
case GitManager.Uninitialized:
statusString = "<font color='#ff0000'><b>Uninitialized</b></font>";
break;
case GitManager.Dirty:
statusString = "<font color='#ff0000'><b>Dirty</b></font>";
break;
case GitManager.Clean:
statusString = "<font color='#008000'><b>Clean</b></font>";
break;
}
statusInitialized.visible = !gitManager.errorCode;
statusUninitialized.visible = gitManager.errorCode;
}
Rectangle {
id: statusInitialized
anchors.fill: parent
anchors.leftMargin: 2
anchors.rightMargin: 2
color: "transparent"
Row {
anchors.left: parent.left
spacing: 20
Label {
text: "<b>Commits: </b>" + mainView.commitCount + "/" + (mainView.commitCount - mainView.currentCommitIndex)
}
Label {
text: "<b>Branch: </b>" + gitManager.branch
}
}
Label {
anchors.right: parent.right
text: "<b>Status: </b>" + statusBar.statusString
}
}
Rectangle {
id: statusUninitialized
anchors.fill: parent
anchors.leftMargin: 2
anchors.rightMargin: 2
color: "transparent"
Label {
anchors.left: parent.left
text: "<font color='red'><b>Error: </b></font>" + gitManager.errorMessage + " <font color='red'>(" + gitManager.errorCode + ")</font>"
}
Label {
anchors.right: parent.right
text: "<b>Status: </b>" + statusBar.statusString
}
}
}
Settings {
id: appSettings
property alias x: window.x
property alias y: window.y
property alias width: window.width
property alias height: window.height
property alias repositoryPath: gitManager.repositoryPath
property alias topPanelState: topPanel.state
property alias viewMode: viewMode.state
}
GitManager {
id: gitManager
property bool isReload: false
property string previousRepositoryPath: ""
onRepositoryPathChanged: {
isReload = (previousRepositoryPath == repositoryPath);
previousRepositoryPath = repositoryPath;
}
onInitialized: {
if (!isReload && mainView) {
mainView.reset();
if (!errorCode)
mainView.update();
}
statusBar.update();
repositoryInputBar.notify(!errorCode);
}
Component.onCompleted: {
// WORKAROUND: Set path here to make possible to catch the first initialized() signal
repositoryPath = appSettings.repositoryPath;
repositoryInputBar.repositoryPath = repositoryPath;
}
}
Rectangle {
anchors.fill: parent
anchors.leftMargin: 5
anchors.rightMargin: 5
color: palette.window
SliderPanel {
id: topPanel
orientation: Qt.Horizontal
pos: parent.y
width: parent.width
height: 55
anchors.horizontalCenter: parent.horizontalCenter
RepositoryInputBar {
id: repositoryInputBar
anchors.fill: parent
onLoad: {
gitManager.repositoryPath = repositoryPath;
mainView.focus = true;
}
}
}
Item {
anchors.top: topPanel.bottom
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
CompactLayout {
id: compactView
anchors.fill: parent
visible: false
commitModel: gitManager.commitModel
}
TableLayout {
id: tableView
anchors.fill: parent
visible: false
commitModel: gitManager.commitModel
}
}
}
}