MainWindow.qml
11.2 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
import QtQuick
import QtQuick.Controls.Basic
import QtQuick.Layouts
import "components"
import "." as App
Rectangle {
id: root
color: App.Theme.bgCanvas
RowLayout {
anchors.fill: parent
spacing: 0
// ===== 主内容区 =====
ColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
spacing: 0
// Tab Bar
Rectangle {
Layout.fillWidth: true
implicitHeight: 48
color: App.Theme.bgCanvas
Row {
anchors.left: parent.left
anchors.leftMargin: App.Theme.space5
anchors.bottom: parent.bottom
spacing: App.Theme.space2
Repeater {
model: ["图片生成", "款式设计", "历史记录"]
delegate: Rectangle {
width: tabText.implicitWidth + App.Theme.space5 * 2
height: 40
color: "transparent"
property bool isActive: index === appState.currentTab
Text {
id: tabText
anchors.centerIn: parent
text: modelData
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontBase
font.weight: parent.isActive ? Font.DemiBold : Font.Normal
color: parent.isActive
? App.Theme.accent
: (mouseArea.containsMouse
? App.Theme.textPrimary
: App.Theme.textSecondary)
}
// 激活态下划线
Rectangle {
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: App.Theme.space4
anchors.rightMargin: App.Theme.space4
height: 2
radius: 1
color: App.Theme.accent
visible: parent.isActive
}
MouseArea {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: appState.setTab(index)
}
}
}
}
// 底部分隔线
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
height: 1
color: App.Theme.divider
}
}
// Tab Content
StackLayout {
Layout.fillWidth: true
Layout.fillHeight: true
currentIndex: appState.currentTab
ImageGenTab {}
// 款式设计 — 占位
Item {
Text {
anchors.centerIn: parent
text: "款式设计 tab 内容\n(QML PoC 暂未实现)"
color: App.Theme.textTertiary
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontLg
horizontalAlignment: Text.AlignHCenter
}
}
HistoryTab {}
}
}
// ===== 任务队列 sidebar =====
Rectangle {
Layout.preferredWidth: 200
Layout.fillHeight: true
color: App.Theme.bgSurface
// 左侧分隔线
Rectangle {
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottom
width: 1
color: App.Theme.divider
}
ColumnLayout {
anchors.fill: parent
spacing: 0
// Sidebar header(与主区 tab bar 等高 48px)
Rectangle {
Layout.fillWidth: true
implicitHeight: 48
color: App.Theme.bgSurface
RowLayout {
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: App.Theme.space4
anchors.rightMargin: App.Theme.space4
anchors.verticalCenter: parent.verticalCenter
spacing: App.Theme.space2
Label {
text: "任务队列"
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontBase
font.weight: Font.DemiBold
color: App.Theme.textPrimary
}
Item { Layout.fillWidth: true }
Label {
visible: taskQueue.runningCount + taskQueue.pendingCount > 0
text: taskQueue.runningCount + taskQueue.pendingCount + " 进行中"
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontXs
color: App.Theme.textSecondary
}
}
// 底部分隔线
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
height: 1
color: App.Theme.divider
}
}
// 列表
ListView {
id: taskList
Layout.fillWidth: true
Layout.fillHeight: true
Layout.margins: App.Theme.space2
spacing: 6
clip: true
model: taskQueue.model
// 空状态占位
Label {
anchors.centerIn: parent
text: "暂无任务"
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontSm
color: App.Theme.textTertiary
visible: taskList.count === 0
}
delegate: Rectangle {
required property string taskId
required property string prompt
required property string status
required property real progress
required property string statusText
required property string elapsed
width: ListView.view.width
height: 56
radius: App.Theme.radiusSm
color: itemMouse.containsMouse ? App.Theme.bgHover : "transparent"
border.width: 1
border.color: App.Theme.divider
ColumnLayout {
anchors.fill: parent
anchors.margins: App.Theme.space2
spacing: 2
// 第一行: prompt 摘要(最多约 14 字)
Text {
text: prompt.length > 14 ? prompt.substring(0, 14) + "…" : prompt
color: App.Theme.textPrimary
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontXs
Layout.fillWidth: true
elide: Text.ElideRight
}
// 第二行: 状态彩色 + elapsed
RowLayout {
Layout.fillWidth: true
spacing: 4
Text {
text: statusText
color: status === "completed" ? App.Theme.success
: status === "failed" ? App.Theme.danger
: status === "running" ? App.Theme.accent
: App.Theme.warning // pending
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontXs
Layout.fillWidth: true
elide: Text.ElideRight
}
Text {
visible: elapsed.length > 0
text: elapsed
color: App.Theme.textTertiary
font.family: App.Theme.fontFamily
font.pointSize: App.Theme.fontXs
}
}
// 第三行: running 时显示细进度条
Rectangle {
visible: status === "running"
Layout.fillWidth: true
Layout.preferredHeight: 2
color: App.Theme.bgSubtle
radius: 1
Rectangle {
width: parent.width * Math.max(0.05, Math.min(progress, 1.0))
height: parent.height
color: App.Theme.accent
radius: 1
}
}
}
MouseArea {
id: itemMouse
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked: function(mouse) {
if (mouse.button === Qt.RightButton
&& (status === "pending" || status === "running")) {
taskQueue.cancelTask(taskId)
}
}
}
}
}
}
}
}
}