1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
statemachineviewerwidget.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2014 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Kevin Funk <kevin.funk@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#ifndef STATEMACHINEVIEWERWIDGETNG_H
#define STATEMACHINEVIEWERWIDGETNG_H
#include <ui/uistatemanager.h>
#include <ui/tooluifactory.h>
#include "statemachineviewerinterface.h"
#include <QWidget>
namespace KDSME {
class State;
class StateMachine;
class StateMachineView;
class Transition;
}
namespace GammaRay {
class DeferredTreeView;
namespace Ui {
class StateMachineViewerWidget;
}
class StateMachineViewerWidget : public QWidget
{
Q_OBJECT
public:
explicit StateMachineViewerWidget(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
virtual ~StateMachineViewerWidget();
Q_INVOKABLE void saveTargetState(QSettings *settings) const;
Q_INVOKABLE void restoreTargetState(QSettings *settings);
KDSME::StateMachineView *stateMachineView() const;
DeferredTreeView *objectInspector() const;
private slots:
void showMessage(const QString &message);
void stateAdded(const GammaRay::StateId stateId, const GammaRay::StateId parentId,
const bool hasChildren, const QString &label, const GammaRay::StateType type,
const bool connectToInitial);
void stateConfigurationChanged(const GammaRay::StateMachineConfiguration &config);
void transitionAdded(const GammaRay::TransitionId transitionId,
const GammaRay::StateId sourceId,
const GammaRay::StateId targetId, const QString &label);
void statusChanged(const bool haveStateMachine, const bool running);
void transitionTriggered(GammaRay::TransitionId transitionId, const QString &label);
void stateModelReset();
void repopulateView();
void clearGraph();
void setShowLog(bool show);
void objectInspectorContextMenu(QPoint pos);
private:
/**
* Show context menu for index @p index (a object inspector model index)
* at global position @p globalPos.
*/
void showContextMenuForObject(const QModelIndex &index, const QPoint &globalPos);
void loadSettings();
void saveSettings();
QScopedPointer<Ui::StateMachineViewerWidget> m_ui;
UIStateManager m_stateManager;
KDSME::StateMachineView *m_stateMachineView;
StateMachineViewerInterface *m_interface;
QHash<StateId, KDSME::State *> m_idToStateMap;
QHash<TransitionId, KDSME::Transition *> m_idToTransitionMap;
KDSME::StateMachine *m_machine;
bool m_showLog;
};
class StateMachineViewerUiFactory : public QObject,
public StandardToolUiFactory<StateMachineViewerWidget>
{
Q_OBJECT
Q_INTERFACES(GammaRay::ToolUiFactory)
Q_PLUGIN_METADATA(IID "com.kdab.GammaRay.ToolUiFactory" FILE "gammaray_statemachineviewer.json")
};
}
#endif // STATEMACHINEVIEWERWIDGETNG_H
|