TUI #1

Merged
shaunrd0 merged 73 commits from ui into master 2026-01-25 20:57:37 +00:00
Showing only changes of commit 90c10d2a16 - Show all commits

View File

@ -16,6 +16,7 @@ SplitView {
// Customized handle to drag between the Navigation and the Editor. // Customized handle to drag between the Navigation and the Editor.
handle: Rectangle { handle: Rectangle {
id: verticalSplitHandle
border.color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter border.color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter
color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter color: SplitHandle.pressed ? RustColors.pressed : SplitHandle.hovered ? RustColors.hovered : RustColors.gutter
implicitWidth: 8 implicitWidth: 8
@ -31,10 +32,12 @@ SplitView {
Rectangle { Rectangle {
id: navigationView id: navigationView
color: RustColors.explorer_background
SplitView.fillHeight: true SplitView.fillHeight: true
SplitView.minimumWidth: 0
SplitView.preferredWidth: 200 SplitView.preferredWidth: 200
color: RustColors.explorer_background SplitView.maximumWidth: 250
StackLayout { StackLayout {
anchors.fill: parent anchors.fill: parent
@ -45,6 +48,7 @@ SplitView {
} }
} }
ClideEditor { ClideEditor {
SplitView.fillWidth: true
// Initialize using the Default trait in Rust QML singleton FileSystem. // Initialize using the Default trait in Rust QML singleton FileSystem.
filePath: root.selectedFilePath filePath: root.selectedFilePath
} }