KDStateMachineEditor  1.1.0
A framework for creating Qt State Machine metacode using a graphical user interface
scxmlimport/main.cpp

This examples shows how to import a KDSME::StateMachine by importing a SCXML document

/*
This file is part of the KDAB State Machine Editor Library.
Copyright (C) 2014-2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
All rights reserved.
Author: Kevin Funk <kevin.funk@kdab.com>
Licensees holding valid commercial KDAB State Machine Editor Library
licenses may use this file in accordance with the KDAB State Machine Editor
Library License Agreement provided with the Software.
This file may be distributed and/or modified under the terms of the
GNU Lesser General Public License version 2.1 as published by the
Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
Contact info@kdab.com if any conditions of this licensing are not
clear to you.
*/
#include "config-examples.h"
#include <scxmlimporter.h>
#include <state.h>
#include <statemachinescene.h>
#include <statemachineview.h>
#include <QApplication>
#include <QDebug>
#include <QFile>
#include <QScopedPointer>
using namespace KDSME;
int main(int argc, char** argv)
{
QApplication app(argc, argv);
const QString fileName = TEST_DATA_DIR "/scxml/microwave.scxml";
QFile file(fileName);
if (!file.exists()) {
qWarning() << "File does not exist:" << file.fileName();
return 1;
}
Q_ASSERT(file.open(QIODevice::ReadOnly));
ScxmlImporter parser(file.readAll());
QScopedPointer<StateMachine> machine(parser.import());
Q_ASSERT(machine);
view.scene()->setRootState(machine.data());
view.scene()->layout();
view.resize(800, 600);
view.show();
app.exec();
}

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
https://github.com/KDAB/KDStateMachineEditor