summaryrefslogtreecommitdiffstats
path: root/examples/scxml/invoke/doc/src/invoke.qdoc
blob: b771c3da245175d5ac2d7cf32e327f6037168c06 (plain)
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

/*!
    \example invoke
    \title SCXML Invoke
    \ingroup examples-qtscxml

    \brief Invokes a compiled nested state machine.

    \image invoke.png

    \e{Invoke} demonstrates how to use the \c <invoke> element
    with generated nested state-machines, where the SCXML file is compiled to
    a C++ class. The \c <invoke> element is used to create an instance of an
    external service.

    \include examples-run.qdocinc

    \section1 Invoking the State Machine

    In \e statemachine.scxml, we specify a state machine with the name
    \e Directions of type \e http://www.w3.org/TR/scxml/ to invoke:

    \quotefromfile invoke/statemachine.scxml
    \skipto scxml
    \printuntil

    \section1 Compiling the State Machine
    We link against the Qt SCXML module by adding the following lines to the
    example's build files.

    \section2 \e invoke.pro when using qmake:

    \quotefromfile invoke/invoke.pro
    \skipto QT
    \printline scxml

    We then specify the state machine to compile:
    \skipto STATECHARTS
    \printline scxml

    \section2 \e CMakeLists.txt when using cmake:
    \quotefromfile invoke/CMakeLists.txt
    \skipto find_package
    \printline Scxml
    \skipto target_link_libraries
    \printuntil )

    We then specify the state machine to compile:
    \skipto qt6_add_statecharts
    \printuntil )

    The statechart directives \e STATECHARTS or \e qt6_add_statecharts invoke the Qt SCXML
    Compiler, \c qscxmlc, which is run automatically to generate \e statemachine.h and
    \e statemachine.cpp, which are then added appropriately as headers and sources for
    compilation.

    \section1 Instantiating the State Machine

    We instantiate the generated \c Directions class in the \e invoke.cpp
    file, as follows:

    \quotefromfile invoke/invoke.cpp
    \skipto statemachine.h
    \printuntil }
*/