mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-07-27 01:15:10 -04:00
141 lines
3.6 KiB
QML
141 lines
3.6 KiB
QML
/*
|
|
* Copyright (C) 2025 Petr Mironychev
|
|
*
|
|
* This file is part of QodeAssist.
|
|
*
|
|
* QodeAssist is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* QodeAssist is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with QodeAssist. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import TaskFlow.Editor
|
|
|
|
FlowEditor {
|
|
id: root
|
|
|
|
width: 1200
|
|
height: 800
|
|
|
|
property SystemPalette sysPalette: SystemPalette {
|
|
colorGroup: SystemPalette.Active
|
|
}
|
|
palette {
|
|
window: sysPalette.window
|
|
windowText: sysPalette.windowText
|
|
base: sysPalette.base
|
|
alternateBase: sysPalette.alternateBase
|
|
text: sysPalette.text
|
|
button: sysPalette.button
|
|
buttonText: sysPalette.buttonText
|
|
highlight: sysPalette.highlight
|
|
highlightedText: sysPalette.highlightedText
|
|
light: sysPalette.light
|
|
mid: sysPalette.mid
|
|
dark: sysPalette.dark
|
|
shadow: sysPalette.shadow
|
|
brightText: sysPalette.brightText
|
|
}
|
|
|
|
// Background with grid pattern
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: palette.window
|
|
|
|
// Grid pattern using C++ implementation
|
|
GridBackground {
|
|
anchors.fill: parent
|
|
gridSize: 20
|
|
gridColor: palette.mid
|
|
opacity: 0.3
|
|
}
|
|
}
|
|
|
|
// Header panel
|
|
Rectangle {
|
|
id: headerPanel
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
height: 60
|
|
color: palette.base
|
|
border.color: palette.mid
|
|
border.width: 1
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.leftMargin: 20
|
|
spacing: 20
|
|
|
|
Text {
|
|
text: "Flow Editor"
|
|
color: palette.windowText
|
|
font.pixelSize: 18
|
|
font.bold: true
|
|
}
|
|
|
|
Rectangle {
|
|
width: 2
|
|
height: 30
|
|
color: palette.mid
|
|
}
|
|
|
|
Text {
|
|
text: "Flow:"
|
|
color: palette.text
|
|
font.pixelSize: 14
|
|
}
|
|
|
|
ComboBox {
|
|
id: flowComboBox
|
|
|
|
model: root.flowsModel
|
|
textRole: "flowId"
|
|
currentIndex: root.currentFlowIndex
|
|
|
|
onActivated: {
|
|
root.currentFlowIndex = currentIndex
|
|
}
|
|
}
|
|
|
|
Text {
|
|
text: "Available Tasks: " + root.availableTaskTypes.join(", ")
|
|
color: palette.text
|
|
font.pixelSize: 12
|
|
}
|
|
}
|
|
}
|
|
|
|
// Main flow area
|
|
ScrollView {
|
|
id: scrollView
|
|
anchors.top: headerPanel.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
|
|
contentWidth: flow.width
|
|
contentHeight: flow.height
|
|
|
|
Flow {
|
|
id: flow
|
|
|
|
// flow: root.currentFlow
|
|
|
|
width: Math.max(root.width, 0)
|
|
height: Math.min(root.height, 0)
|
|
}
|
|
}
|
|
}
|