clide/qml/main.qml

36 lines
542 B
QML
Raw Normal View History

2025-03-29 08:01:13 -04:00
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
2026-01-25 20:57:36 +00:00
import QtQuick.Dialogs
2025-03-29 08:01:13 -04:00
2026-01-25 20:57:36 +00:00
import clide.module 1.0
2025-03-29 08:01:13 -04:00
ApplicationWindow {
2026-01-25 20:57:36 +00:00
id: appWindow
2025-03-29 08:01:13 -04:00
height: 800
title: "CLIDE"
visible: true
width: 1200
2026-01-31 04:25:14 +00:00
required property string appContextPath
2025-03-29 08:01:13 -04:00
menuBar: ClideMenuBar {
}
Rectangle {
anchors.fill: parent
2026-01-25 20:57:36 +00:00
color: RustColors.gutter
}
MessageDialog {
id: errorDialog
title: qsTr("Error")
}
ClideProjectView {
2026-01-31 04:25:14 +00:00
projectDir: appWindow.appContextPath
2025-03-29 08:01:13 -04:00
}
}
2026-01-25 20:57:36 +00:00