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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
import QtQuick
import QtQuick.Controls.Fusion
import QtQuick.Layouts
import QtQuick.Dialogs
import QtMultimedia
ApplicationWindow {
id: window
width: 960
height: 720
visible: true
title: qsTr("xTq")
RelayConnection {
id: connection
onErrorOccurred: function(message) {
errorDialog.text = message
errorDialog.open()
}
onBeepRequested: {
beepSound.play()
}
onConnectedChanged: {
if (!connected) {
connectDialog.open()
}
}
onAboutToChangeBuffer: function(oldBuffer) {
// Save the current buffer's input before switching
connection.saveBufferInput(
oldBuffer,
inputText.text,
inputText.selectionStart,
inputText.selectionEnd
)
}
onBufferTextChanged: {
connection.populateBufferDocument(bufferText.textDocument)
scrollToBottom()
}
onCompletionResult: function(completion) {
inputText.text = completion
inputText.cursorPosition = inputText.text.length
}
onLogViewChanged: function(logText) {
logView.text = logText
logView.visible = true
bufferText.visible = false
logButton.checked = true
var vbar = bufferScroll.ScrollBar.vertical
vbar.position = 1.0 - vbar.size
}
}
SoundEffect {
id: beepSound
source: "qrc:/beep.wav"
volume: 0.5
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 6
spacing: 6
// Topic label
Label {
id: topicLabel
Layout.fillWidth: true
text: connection.topic
textFormat: Text.RichText
wrapMode: Text.Wrap
onLinkActivated: function(link) {
Qt.openUrlExternally(link)
}
visible: text.length > 0
padding: 4
background: Rectangle {
color: palette.base
border.color: palette.mid
border.width: 1
}
}
// Split view between buffer list and buffer display area
SplitView {
id: mainSplit
Layout.fillWidth: true
Layout.fillHeight: true
orientation: Qt.Horizontal
// Buffer list
Rectangle {
SplitView.preferredWidth: 200
SplitView.minimumWidth: 150
color: "transparent"
border.color: palette.mid
border.width: 1
ListView {
id: bufferList
anchors.fill: parent
anchors.margins: 1
clip: true
model: connection.bufferListModel
Connections {
target: connection.bufferListModel
function onBufferActivated() {
bufferList.currentIndex = connection.bufferListModel.getCurrentBufferIndex()
}
}
delegate: ItemDelegate {
width: bufferList.width
text: model.displayText
font.bold: model.isBold
highlighted: ListView.isCurrentItem
contentItem: Label {
text: parent.text
font: parent.font
color: model.highlightColor.valid ?
model.highlightColor : palette.text
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
}
onClicked: {
bufferList.currentIndex = index
connection.activateBuffer(model.bufferName)
}
}
ScrollBar.vertical: ScrollBar {}
}
}
// Buffer display area
ScrollView {
id: bufferScroll
SplitView.fillWidth: true
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
TextArea {
id: bufferText
textFormat: Text.RichText
readOnly: true
wrapMode: Text.Wrap
selectByMouse: true
onLinkActivated: function(link) {
Qt.openUrlExternally(link)
}
Connections {
target: connection
function onCurrentBufferChanged() {
connection.populateBufferDocument(bufferText.textDocument)
bufferText.visible = true
logView.visible = false
logButton.checked = false
scrollToBottom()
// Restore input for the new buffer
inputText.text = connection.getBufferInput()
inputText.cursorPosition = connection.getBufferInputStart()
inputText.select(connection.getBufferInputStart(), connection.getBufferInputEnd())
}
}
}
TextArea {
id: logView
visible: false
textFormat: Text.RichText
readOnly: true
wrapMode: Text.Wrap
selectByMouse: true
font.family: "monospace"
onLinkActivated: function(link) {
Qt.openUrlExternally(link)
}
}
}
}
// Status area
RowLayout {
Layout.fillWidth: true
spacing: 6
Label {
id: promptLabel
text: connection.prompt
}
Item {
Layout.fillWidth: true
}
ToolButton {
id: boldButton
text: "B"
font.bold: true
checkable: true
ToolTip.text: "Bold"
ToolTip.visible: hovered
onClicked: {
inputText.font.bold = checked
}
}
ToolButton {
id: italicButton
text: "I"
font.italic: true
checkable: true
ToolTip.text: "Italic"
ToolTip.visible: hovered
onClicked: {
inputText.font.italic = checked
}
}
ToolButton {
id: underlineButton
text: "U"
font.underline: true
checkable: true
ToolTip.text: "Underline"
ToolTip.visible: hovered
onClicked: {
inputText.font.underline = checked
}
}
Item {
Layout.fillWidth: true
}
Label {
id: statusLabel
text: connection.status
horizontalAlignment: Text.AlignRight
}
ToolButton {
id: logButton
text: "Log"
checkable: true
ToolTip.text: "View buffer log"
ToolTip.visible: hovered
onClicked: {
if (checked) {
connection.toggleBufferLog()
} else {
logView.visible = false
bufferText.visible = true
logView.text = ""
}
}
}
ToolButton {
text: "↓"
ToolTip.text: "Scroll to bottom"
ToolTip.visible: hovered
enabled: {
var vbar = bufferScroll.ScrollBar.vertical
return vbar.position + vbar.size < 1.0
}
onClicked: scrollToBottom()
}
}
// Input area
ScrollView {
Layout.fillWidth: true
Layout.preferredHeight: Math.min(inputText.contentHeight + 12, 120)
TextArea {
id: inputText
wrapMode: Text.Wrap
selectByMouse: true
textFormat: Text.RichText
Keys.onReturnPressed: function(event) {
if (event.modifiers & Qt.ShiftModifier) {
// Allow Shift+Enter for newline
return
}
event.accepted = true
if (text.length > 0) {
connection.sendInput(text)
text = ""
}
}
Keys.onUpPressed: {
var history = connection.getInputHistoryUp()
if (history.length > 0) {
text = history
}
}
Keys.onDownPressed: {
var history = connection.getInputHistoryDown()
if (history.length > 0) {
text = history
}
}
Keys.onTabPressed: {
connection.requestCompletion(text, cursorPosition)
}
}
}
}
// Keyboard shortcuts
Shortcut {
sequences: ["F5", "Alt+PgUp", "Ctrl+PgUp"]
onActivated: connection.activatePreviousBuffer()
}
Shortcut {
sequences: ["F6", "Alt+PgDown", "Ctrl+PgDown"]
onActivated: connection.activateNextBuffer()
}
Shortcut {
sequences: ["Ctrl+Tab", "Alt+Tab"]
onActivated: connection.activateLastBuffer()
}
Shortcut {
sequence: "Alt+A"
onActivated: connection.activateNextWithActivity()
}
Shortcut {
sequence: "Alt+!"
onActivated: connection.activateNextHighlighted()
}
Shortcut {
sequence: "Alt+H"
onActivated: connection.toggleUnimportant()
}
Shortcut {
sequence: "PgUp"
onActivated: {
var vbar = bufferScroll.ScrollBar.vertical
vbar.position = Math.max(0, vbar.position - vbar.size)
}
}
Shortcut {
sequence: "PgDown"
onActivated: {
var vbar = bufferScroll.ScrollBar.vertical
vbar.position = Math.min(1 - vbar.size, vbar.position + vbar.size)
}
}
// Helper function to scroll to bottom
function scrollToBottom() {
var vbar = bufferScroll.ScrollBar.vertical
vbar.position = 1.0 - vbar.size
}
// Connection dialog
Dialog {
id: connectDialog
title: "Connect to relay"
anchors.centerIn: parent
modal: true
closePolicy: Popup.NoAutoClose
onOpened: connectHost.forceActiveFocus()
onAccepted: {
connection.host = connectHost.text
connection.port = connectPort.text
connection.connectToRelay()
}
onRejected: Qt.quit()
GridLayout {
anchors.fill: parent
columns: 2
Label { text: "Host:" }
TextField {
id: connectHost
Layout.fillWidth: true
text: connection.host || "localhost"
focus: true
selectByMouse: true
onAccepted: connectDialog.accept()
}
Label { text: "Port:" }
TextField {
id: connectPort
Layout.fillWidth: true
text: connection.port || ""
selectByMouse: true
validator: IntValidator { bottom: 0; top: 65535 }
onAccepted: connectDialog.accept()
}
}
footer: DialogButtonBox {
Button {
text: qsTr("Connect")
DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole
highlighted: true
}
Button {
text: qsTr("Exit")
DialogButtonBox.buttonRole: DialogButtonBox.RejectRole
}
}
}
// Error dialog
MessageDialog {
id: errorDialog
title: "Error"
buttons: MessageDialog.Ok
}
Component.onCompleted: {
if (!connection.connected) {
connectDialog.open()
} else {
inputText.forceActiveFocus()
}
}
}
|