TUI #1

Merged
shaunrd0 merged 73 commits from ui into master 2026-01-25 20:57:37 +00:00
2 changed files with 8 additions and 14 deletions
Showing only changes of commit a6d2fb9e31 - Show all commits

View File

@ -4,6 +4,7 @@ import QtQuick.Controls
MenuBar { MenuBar {
background: Rectangle { background: Rectangle {
color: "#3c3f41" color: "#3c3f41"
border.color: "#575757"
} }
Action { Action {

View File

@ -58,9 +58,10 @@ ApplicationWindow {
anchors.fill: parent anchors.fill: parent
// Shows the help text. // Shows the help text.
Text { TextArea {
color: "white" readOnly: true
text: qsTr("File system view placeholder") placeholderText: qsTr("File system view placeholder")
placeholderTextColor: "white"
wrapMode: TextArea.Wrap wrapMode: TextArea.Wrap
} }
@ -137,23 +138,15 @@ ApplicationWindow {
TextArea { TextArea {
id: areaConsole id: areaConsole
bottomPadding: 0
leftPadding: 6
persistentSelection: true
placeholderText: qsTr("Placeholder for bash terminal.") placeholderText: qsTr("Placeholder for bash terminal.")
placeholderTextColor: "gray" placeholderTextColor: "white"
height: 100
readOnly: true readOnly: true
rightPadding: 6
selectByMouse: true
// selectedTextColor: control.palette.highlightedText
// selectionColor: control.palette.highlight
textFormat: Qt.AutoText
topPadding: 6
wrapMode: TextArea.Wrap wrapMode: TextArea.Wrap
background: Rectangle { background: Rectangle {
color: "#2b2b2b" color: "#2b2b2b"
implicitHeight: 20 implicitHeight: 100
// border.color: control.enabled ? "#21be2b" : "transparent" // border.color: control.enabled ? "#21be2b" : "transparent"
} }
} }