3 Commits

Author SHA1 Message Date
shaunrd0 52ceda5b06 Reorganize files. 2026-02-08 15:29:34 -05:00
shaunrd0 a37fd74d32 Fix spacing. 2026-02-08 15:25:21 -05:00
shaunrd0 6ed4ca11f4 Fix width for file tree selection. 2026-02-08 15:21:06 -05:00
9 changed files with 17 additions and 12 deletions
+11 -11
View File
@@ -2,21 +2,21 @@ use cxx_qt_build::{CxxQtBuilder, QmlModule};
fn main() { fn main() {
CxxQtBuilder::new_qml_module(QmlModule::new("clide.module").qml_files(&[ CxxQtBuilder::new_qml_module(QmlModule::new("clide.module").qml_files(&[
"qml/main.qml",
"qml/ClideAboutWindow.qml",
"qml/ClideTreeView.qml",
"qml/ClideApplicationView.qml", "qml/ClideApplicationView.qml",
"qml/ClideExplorerView.qml",
"qml/ClideEditor.qml",
"qml/ClideEditorView.qml", "qml/ClideEditorView.qml",
"qml/ClideMenuBar.qml", "qml/ClideExplorerView.qml",
"qml/ClideLogger.qml", "qml/ClideTreeView.qml",
"qml/Components/ClideScrollBar.qml", "qml/Components/ClideAboutWindow.qml",
"qml/Components/ClideHandle.qml",
"qml/Components/ClideMenu.qml",
"qml/Components/ClideMenuItem.qml",
"qml/Components/ClideBreadCrumbs.qml", "qml/Components/ClideBreadCrumbs.qml",
"qml/Components/ClideEditor.qml",
"qml/Components/ClideHandle.qml",
"qml/Components/ClideLogger.qml",
"qml/Components/ClideMenu.qml",
"qml/Components/ClideMenuBar.qml",
"qml/Components/ClideMenuItem.qml",
"qml/Components/ClideScrollBar.qml",
"qml/Logger/Logger.qml", "qml/Logger/Logger.qml",
"qml/main.qml",
])) ]))
// Link Qt's Network library // Link Qt's Network library
// - Qt Core is always linked // - Qt Core is always linked
+1
View File
@@ -23,6 +23,7 @@ Rectangle {
SplitView { SplitView {
anchors.fill: parent anchors.fill: parent
orientation: Qt.Vertical orientation: Qt.Vertical
spacing: 3
// Customized handle to drag between the Editor and the Console. // Customized handle to drag between the Editor and the Console.
handle: ClideHandle { handle: ClideHandle {
+1 -1
View File
@@ -51,7 +51,7 @@ TreeView {
background: Rectangle { background: Rectangle {
color: current ? RustColors.explorer_folder_open : "transparent" color: current ? RustColors.explorer_folder_open : "transparent"
radius: 20 radius: 20
width: root.width - 15 width: root.width
} }
// Item name. // Item name.
contentItem: Text { contentItem: Text {
+4
View File
@@ -3,3 +3,7 @@ ClideHandle ClideHandle.qml
ClideMenu ClideMenu.qml ClideMenu ClideMenu.qml
ClideMenuItem ClideMenuItem.qml ClideMenuItem ClideMenuItem.qml
ClideBreadCrumbs ClideBreadCrumbs.qml ClideBreadCrumbs ClideBreadCrumbs.qml
ClideAboutWindow ClideAboutWindow.qml
ClideEditor ClideEditor.qml
ClideLogger ClideLogger.qml
ClideMenuBar ClideMenuBar.qml
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 350 KiB