34 lines
591 B
QML
34 lines
591 B
QML
// SPDX-FileCopyrightText: 2026, Shaun Reed <shaunrd0@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: GNU General Public License v3.0 or later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtQuick.Dialogs
|
|
|
|
import clide.module 1.0
|
|
|
|
ApplicationWindow {
|
|
id: appWindow
|
|
|
|
height: 800
|
|
title: "CLIDE"
|
|
visible: true
|
|
width: 1200
|
|
|
|
required property string appContextPath
|
|
|
|
menuBar: ClideMenuBar { }
|
|
|
|
MessageDialog {
|
|
id: errorDialog
|
|
|
|
title: qsTr("Error")
|
|
}
|
|
ClideProjectView {
|
|
projectDir: appWindow.appContextPath
|
|
}
|
|
}
|
|
|