35 lines
479 B
QML
35 lines
479 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtQuick.Dialogs
|
|
|
|
import "Menu"
|
|
import "ProjectView"
|
|
|
|
import clide.module 1.0
|
|
|
|
ApplicationWindow {
|
|
id: appWindow
|
|
|
|
height: 800
|
|
title: "CLIDE"
|
|
visible: true
|
|
width: 1200
|
|
|
|
menuBar: ClideMenuBar {
|
|
}
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: "#1e1f22"
|
|
}
|
|
MessageDialog {
|
|
id: errorDialog
|
|
|
|
title: qsTr("Error")
|
|
}
|
|
ClideProjectView {
|
|
}
|
|
}
|
|
|