TUI #1

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

View File

@ -10,12 +10,14 @@ fn main() {
.qt_module("Network")
.qml_module(QmlModule {
uri: "clide.module",
rust_files: &["src/colors.rs"],
qml_files: &["qml/main.qml",
rust_files: &["src/colors.rs", "src/filesystem.rs"],
qml_files: &[
"qml/main.qml",
"qml/ClideAboutWindow.qml",
"qml/ClideProjectView.qml",
"qml/ClideEditor.qml",
"qml/ClideMenuBar.qml"],
"qml/ClideMenuBar.qml",
],
..Default::default()
})
.build();

View File

@ -3,6 +3,7 @@
use cxx_qt_lib::QString;
pub mod colors;
pub mod filesystem;
fn main() {
use cxx_qt_lib::{QGuiApplication, QQmlApplicationEngine, QUrl};