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
|
|
|
|
|
|
|
|
|
|
menuBar: ClideMenuBar {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
anchors.fill: parent
|
2026-01-25 20:57:36 +00:00
|
|
|
color: RustColors.gutter
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MessageDialog {
|
|
|
|
|
id: errorDialog
|
|
|
|
|
|
|
|
|
|
title: qsTr("Error")
|
|
|
|
|
}
|
|
|
|
|
ClideProjectView {
|
2025-03-29 08:01:13 -04:00
|
|
|
}
|
|
|
|
|
}
|
2026-01-25 20:57:36 +00:00
|
|
|
|