// Copyright (C) 2016 Ford Motor Company // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QQMLFINALSTATE_H #define QQMLFINALSTATE_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qstatemachineqmlglobals_p.h" #include "childrenprivate_p.h" #include "statemachine_p.h" #include #include #include #include QT_BEGIN_NAMESPACE class Q_STATEMACHINEQML_EXPORT FinalState : public QFinalState { Q_OBJECT Q_PROPERTY(QQmlListProperty children READ children NOTIFY childrenChanged BINDABLE bindableChildren) Q_CLASSINFO("DefaultProperty", "children") QML_ELEMENT QML_ADDED_IN_VERSION(1, 0) public: explicit FinalState(QState *parent = 0); QQmlListProperty children(); QBindable> bindableChildren() const; Q_SIGNALS: void childrenChanged(); private: // See the childrenActualCalculation for the mutable explanation mutable ChildrenPrivate m_children; friend ChildrenPrivate; void childrenContentChanged(); QQmlListProperty childrenActualCalculation() const; Q_OBJECT_COMPUTED_PROPERTY(FinalState, QQmlListProperty, m_childrenComputedProperty, &FinalState::childrenActualCalculation); }; QT_END_NAMESPACE #endif