Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    Solved Implementing a custom data model for SCXML

    General and Desktop
    scxml data model
    1
    2
    787
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Phrogz
      Phrogz last edited by Phrogz

      I'm using Qt with an SCXML state machine. I want to use the native Qt SCXML interpreter via QScxmlStateMachine. However, Qt only supports Null, EcmaScript, and C++ data models for SCXML. My state machine has a custom data model.

      I would like to subclass QScxmlDataModel to support my state machine. I can see how implementing the setup(), hasScxmlProperty(), setScxmlProperty(), and scxmlProperty() functions would allow setting/getting values from the data model. However, I don't see how to make it so that expressions and other model-specific items—such as with <transition cond="..."> or <script>...</script>—will properly be evaluated in my custom data model.

      How can I make a custom data model that knows how to do more than just get/set properties?

      1 Reply Last reply Reply Quote 0
      • Phrogz
        Phrogz last edited by

        Answered on StackOverflow. The key is that there are many functions hidden from the documentation that need to be overridden, like evaluateToString().

        1 Reply Last reply Reply Quote 1
        • First post
          Last post