mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 02:49:12 -04:00
105 lines
2.2 KiB
C++
105 lines
2.2 KiB
C++
// Copyright (C) 2025-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "FlowEditor.hpp"
|
|
|
|
namespace QodeAssist::TaskFlow {
|
|
|
|
FlowEditor::FlowEditor(QQuickItem *parent)
|
|
: QQuickItem(parent)
|
|
{}
|
|
|
|
void FlowEditor::initialize()
|
|
{
|
|
emit availableTaskTypesChanged();
|
|
emit availableFlowsChanged();
|
|
|
|
m_flowsModel = new FlowsModel(m_flowManager, this);
|
|
|
|
emit flowsModelChanged();
|
|
|
|
if (m_flowsModel->rowCount() > 0) {
|
|
setCurrentFlowIndex(0);
|
|
}
|
|
|
|
// setCurrentFlowId(m_flowManager->flows().begin().value()->flowId());
|
|
m_currentFlow = m_flowManager->getFlow();
|
|
emit currentFlowChanged();
|
|
}
|
|
|
|
QString FlowEditor::currentFlowId() const
|
|
{
|
|
return m_currentFlowId;
|
|
}
|
|
|
|
void FlowEditor::setCurrentFlowId(const QString &newCurrentFlowId)
|
|
{
|
|
if (m_currentFlowId == newCurrentFlowId)
|
|
return;
|
|
m_currentFlowId = newCurrentFlowId;
|
|
emit currentFlowIdChanged();
|
|
}
|
|
|
|
QStringList FlowEditor::availableTaskTypes() const
|
|
{
|
|
if (m_flowManager)
|
|
return m_flowManager->getAvailableTasksTypes();
|
|
else {
|
|
return {"No flow manager"};
|
|
}
|
|
}
|
|
|
|
QStringList FlowEditor::availableFlows() const
|
|
{
|
|
if (m_flowManager) {
|
|
auto flows = m_flowManager->getAvailableFlows();
|
|
return flows.size() > 0 ? flows : QStringList{"No flows"};
|
|
} else {
|
|
return {"No flow manager"};
|
|
}
|
|
}
|
|
|
|
void FlowEditor::setFlowManager(FlowManager *newFlowManager)
|
|
{
|
|
if (m_flowManager == newFlowManager)
|
|
return;
|
|
m_flowManager = newFlowManager;
|
|
|
|
initialize();
|
|
}
|
|
|
|
FlowsModel *FlowEditor::flowsModel() const
|
|
{
|
|
return m_flowsModel;
|
|
}
|
|
|
|
int FlowEditor::currentFlowIndex() const
|
|
{
|
|
return m_currentFlowIndex;
|
|
}
|
|
|
|
void FlowEditor::setCurrentFlowIndex(int newCurrentFlowIndex)
|
|
{
|
|
if (m_currentFlowIndex == newCurrentFlowIndex)
|
|
return;
|
|
m_currentFlowIndex = newCurrentFlowIndex;
|
|
emit currentFlowIndexChanged();
|
|
}
|
|
|
|
Flow *FlowEditor::getFlow(const QString &flowName)
|
|
{
|
|
return m_flowManager->getFlow(flowName);
|
|
}
|
|
|
|
Flow *FlowEditor::getCurrentFlow()
|
|
{
|
|
return m_flowManager->getFlow(m_currentFlowId);
|
|
}
|
|
|
|
Flow *FlowEditor::currentFlow() const
|
|
{
|
|
return m_currentFlow;
|
|
}
|
|
|
|
} // namespace QodeAssist::TaskFlow
|