mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-15 05:22:53 +08:00
347 lines
11 KiB
QML
347 lines
11 KiB
QML
/*
|
|
* Copyright (c) 2020-2021 Alex Spataru <https://github.com/alex-spataru>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
import SerialStudio 1.0
|
|
import Qt.labs.settings 1.0
|
|
|
|
import "../Widgets" as Widgets
|
|
|
|
Control {
|
|
id: root
|
|
Component.onCompleted: Cpp_IO_Console.setTextDocument(textArea.textDocument)
|
|
background: Rectangle {
|
|
color: app.windowBackgroundColor
|
|
}
|
|
|
|
//
|
|
// Enable/disable text rendering when visibility changes
|
|
//
|
|
onVisibleChanged: Cpp_IO_Console.enableRender = visible
|
|
|
|
//
|
|
// Console text color
|
|
//
|
|
property alias text: textArea.text
|
|
readonly property color consoleColor: "#8ecd9d"
|
|
|
|
//
|
|
// Hacks to allow context menu to work
|
|
//
|
|
property int curPos
|
|
property int selectEnd
|
|
property int selectStart
|
|
|
|
//
|
|
// Function to send through serial port data
|
|
//
|
|
function sendData() {
|
|
Cpp_IO_Console.send(send.text)
|
|
send.clear()
|
|
}
|
|
|
|
//
|
|
// Save settings
|
|
//
|
|
Settings {
|
|
property alias echo: echoCheck.checked
|
|
property alias hex: hexCheckbox.checked
|
|
property alias timestamp: timestampCheck.checked
|
|
property alias autoscroll: autoscrollCheck.checked
|
|
property alias lineEnding: lineEndingCombo.currentIndex
|
|
property alias displayMode: displayModeCombo.currentIndex
|
|
}
|
|
|
|
//
|
|
// Shortcut to copy selection of console
|
|
//
|
|
Shortcut {
|
|
sequence: StandardKey.Copy
|
|
onActivated: textArea.copy()
|
|
}
|
|
|
|
//
|
|
// Right-click context menu
|
|
//
|
|
Menu {
|
|
id: contextMenu
|
|
|
|
MenuItem {
|
|
text: qsTr("Copy")
|
|
opacity: enabled ? 1 : 0.5
|
|
onTriggered: textArea.copy()
|
|
enabled: textArea.selectedText
|
|
}
|
|
|
|
MenuItem {
|
|
text: qsTr("Clear")
|
|
opacity: enabled ? 1 : 0.5
|
|
enabled: textArea.length > 0
|
|
onTriggered: Cpp_IO_Console.clear()
|
|
}
|
|
|
|
MenuItem {
|
|
opacity: enabled ? 1 : 0.5
|
|
text: qsTr("Save as") + "..."
|
|
onTriggered: Cpp_IO_Console.save()
|
|
enabled: Cpp_IO_Console.saveAvailable
|
|
}
|
|
}
|
|
|
|
//
|
|
// Controls
|
|
//
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: app.spacing
|
|
anchors.margins: app.spacing * 1.5
|
|
|
|
//
|
|
// Console display
|
|
//
|
|
Rectangle {
|
|
border.width: 1
|
|
color: "#121218"
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
border.color: palette.midlight
|
|
|
|
Flickable {
|
|
id: flick
|
|
clip: true
|
|
anchors.fill: parent
|
|
anchors.margins: app.spacing
|
|
contentWidth: textArea.paintedWidth
|
|
contentHeight: textArea.paintedHeight
|
|
boundsMovement: Flickable.StopAtBounds
|
|
boundsBehavior: Flickable.DragOverBounds
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
policy: ScrollBar.AsNeeded
|
|
}
|
|
|
|
function ensureVisible(x, y, w, h)
|
|
{
|
|
if (contentX >= x)
|
|
contentX = x;
|
|
else if (contentX + width <= x + w)
|
|
contentX = x + w - width;
|
|
if (contentY >= y)
|
|
contentY = y;
|
|
else if (contentY + height <= y + h)
|
|
contentY = y + h - height;
|
|
}
|
|
|
|
TextEdit {
|
|
id: textArea
|
|
readOnly: true
|
|
font.pixelSize: 12
|
|
selectByMouse: true
|
|
selectByKeyboard: true
|
|
color: root.consoleColor
|
|
persistentSelection: true
|
|
wrapMode: TextEdit.NoWrap
|
|
font.family: app.monoFont
|
|
width: parent.contentWidth
|
|
textFormat: TextEdit.PlainText
|
|
selectionColor: palette.highlight
|
|
selectedTextColor: palette.highlightedText
|
|
|
|
onTextChanged: {
|
|
if (Cpp_IO_Console.autoscroll)
|
|
flick.ensureVisible(0, textArea.contentHeight, 1, 14)
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
acceptedButtons: Qt.RightButton
|
|
|
|
onClicked: {
|
|
root.selectStart = textArea.selectionStart;
|
|
root.selectEnd = textArea.selectionEnd;
|
|
root.curPos = textArea.cursorPosition;
|
|
contextMenu.popup()
|
|
textArea.cursorPosition = root.curPos;
|
|
textArea.select(root.selectStart, root.selectEnd);
|
|
}
|
|
|
|
onPressAndHold: {
|
|
if (mouse.source === Qt.MouseEventNotSynthesized) {
|
|
root.selectStart = textArea.selectionStart;
|
|
root.selectEnd = textArea.selectionEnd;
|
|
root.curPos = textArea.cursorPosition;
|
|
contextMenu.popup();
|
|
textArea.cursorPosition = root.curPos;
|
|
textArea.select(root.selectStart, root.selectEnd);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// Data-write controls
|
|
//
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
|
|
TextField {
|
|
id: send
|
|
height: 24
|
|
font.pixelSize: 12
|
|
Layout.fillWidth: true
|
|
palette.base: "#121218"
|
|
color: root.consoleColor
|
|
font.family: app.monoFont
|
|
opacity: enabled ? 1 : 0.5
|
|
enabled: Cpp_IO_Manager.readWrite
|
|
placeholderText: qsTr("Send data to device") + "..."
|
|
|
|
validator: RegExpValidator {
|
|
regExp: hexCheckbox.checked ? /^[a-fA-F0-9]+$/ : /[\s\S]*/
|
|
}
|
|
|
|
Keys.onReturnPressed: root.sendData()
|
|
|
|
Keys.onUpPressed: {
|
|
Cpp_IO_Console.historyUp()
|
|
send.text = Cpp_IO_Console.currentHistoryString
|
|
}
|
|
|
|
Keys.onDownPressed: {
|
|
Cpp_IO_Console.historyDown()
|
|
send.text = Cpp_IO_Console.currentHistoryString
|
|
}
|
|
|
|
Behavior on opacity {NumberAnimation{}}
|
|
}
|
|
|
|
CheckBox {
|
|
id: hexCheckbox
|
|
text: "Hex"
|
|
opacity: enabled ? 1 : 0.5
|
|
enabled: Cpp_IO_Manager.readWrite
|
|
checked: Cpp_IO_Console.dataMode === 1
|
|
onCheckedChanged: {
|
|
if (checked)
|
|
Cpp_IO_Console.dataMode = 1
|
|
else
|
|
Cpp_IO_Console.dataMode = 0
|
|
}
|
|
}
|
|
|
|
CheckBox {
|
|
id: echoCheck
|
|
text: qsTr("Echo")
|
|
Layout.alignment: Qt.AlignVCenter
|
|
checked: Cpp_IO_Console.echo
|
|
onCheckedChanged: {
|
|
if (Cpp_IO_Console.echo != checked)
|
|
Cpp_IO_Console.echo = checked
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// Terminal output options
|
|
//
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
|
|
CheckBox {
|
|
id: autoscrollCheck
|
|
text: qsTr("Autoscroll")
|
|
Layout.alignment: Qt.AlignVCenter
|
|
checked: Cpp_IO_Console.autoscroll
|
|
onCheckedChanged: {
|
|
if (Cpp_IO_Console.autoscroll != checked)
|
|
Cpp_IO_Console.autoscroll = checked
|
|
}
|
|
}
|
|
|
|
CheckBox {
|
|
id: timestampCheck
|
|
text: qsTr("Show timestamp")
|
|
Layout.alignment: Qt.AlignVCenter
|
|
checked: Cpp_IO_Console.showTimestamp
|
|
onCheckedChanged: {
|
|
if (Cpp_IO_Console.showTimestamp != checked)
|
|
Cpp_IO_Console.showTimestamp = checked
|
|
}
|
|
}
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
ComboBox {
|
|
id: lineEndingCombo
|
|
Layout.alignment: Qt.AlignVCenter
|
|
model: Cpp_IO_Console.lineEndings()
|
|
currentIndex: Cpp_IO_Console.lineEnding
|
|
onCurrentIndexChanged: {
|
|
if (currentIndex != Cpp_IO_Console.lineEnding)
|
|
Cpp_IO_Console.lineEnding = currentIndex
|
|
}
|
|
}
|
|
|
|
ComboBox {
|
|
id: displayModeCombo
|
|
Layout.alignment: Qt.AlignVCenter
|
|
model: Cpp_IO_Console.displayModes()
|
|
currentIndex: Cpp_IO_Console.displayMode
|
|
onCurrentIndexChanged: {
|
|
if (currentIndex != Cpp_IO_Console.displayMode)
|
|
Cpp_IO_Console.displayMode = currentIndex
|
|
}
|
|
}
|
|
|
|
Button {
|
|
height: 24
|
|
Layout.maximumWidth: 32
|
|
icon.color: palette.text
|
|
opacity: enabled ? 1 : 0.5
|
|
onClicked: Cpp_IO_Console.save()
|
|
icon.source: "qrc:/icons/save.svg"
|
|
enabled: Cpp_IO_Console.saveAvailable
|
|
Behavior on opacity {NumberAnimation{}}
|
|
}
|
|
|
|
Button {
|
|
height: 24
|
|
Layout.maximumWidth: 32
|
|
icon.color: palette.text
|
|
opacity: enabled ? 1 : 0.5
|
|
enabled: textArea.length > 0
|
|
onClicked: Cpp_IO_Console.clear()
|
|
icon.source: "qrc:/icons/delete.svg"
|
|
Behavior on opacity {NumberAnimation{}}
|
|
}
|
|
}
|
|
}
|
|
}
|