37 const QList<QString>& proxies,
39 const QMap<QString, QString>& statechartGroupConfigurations,
42 this->definitionFilePath = groupDefinitionFilePath;
43 this->groupPath = groupPath;
45 this->description = description;
46 this->packageName = packageName;
47 this->proxies = proxies;
48 this->generateContext = generateContext;
49 this->statechartGroupConfigurations = statechartGroupConfigurations;
50 this->writable = writable;
68 return definitionFilePath;
80 return std::filesystem::path(groupPath.toUtf8().data());
86 return std::filesystem::path(definitionFilePath.toUtf8().data());
95 const QMap<QString, QString>&
98 return statechartGroupConfigurations;
110 return generateContext;
116 this->generateContext = generateContext;
128 this->rootNode = rootNode;
134 return rootNode->findNodeByStateName(name);
137 QVector<StateTreeNodePtr>
140 QVector<StateTreeNodePtr> result = rootNode->getAllSubNodesRecursively();
141 result.push_front(rootNode);
145 QVector<statechartmodel::StatePtr>
148 return rootNode->getAllStatesRecursively(localOnly);
167 this->description = description;
173 this->proxies = proxies;
179 this->statechartGroupConfigurations = statechartGroupConfigurations;