QScxmlCompiler¶
The
QScxmlCompiler
class is a compiler for SCXML files. More…
Synopsis¶
Functions¶
Detailed Description¶
Parses an SCXML file and dynamically instantiates a state machine for a successfully parsed SCXML file. If parsing fails, the new state machine cannot start. All errors are returned by
parseErrors()
.To load an SCXML file,
fromFile
orfromData
should be used. UsingQScxmlCompiler
directly is only needed when the compiler needs to use a customLoader
.
- class PySide2.QtScxml.QScxmlCompiler(xmlReader)¶
- param xmlReader:
Creates a new SCXML compiler for the specified
reader
.
- PySide2.QtScxml.QScxmlCompiler.compile()¶
- Return type:
Parses an SCXML file and creates a new state machine from it.
If parsing is successful, the returned state machine can be initialized and started. If parsing fails,
parseErrors()
can be used to retrieve a list of errors.
- PySide2.QtScxml.QScxmlCompiler.errors()¶
- Return type:
Returns the list of parse errors.
- PySide2.QtScxml.QScxmlCompiler.fileName()¶
- Return type:
str
Returns the file name associated with the current input.
See also
- PySide2.QtScxml.QScxmlCompiler.loader()¶
- Return type:
Returns the loader that is currently used to resolve and load URIs for the SCXML compiler.
See also
- PySide2.QtScxml.QScxmlCompiler.setFileName(fileName)¶
- Parameters:
fileName – str
Sets the file name for the current input to
fileName
.The file name is used for error reporting and for resolving relative path URIs.
See also
- PySide2.QtScxml.QScxmlCompiler.setLoader(newLoader)¶
- Parameters:
newLoader –
PySide2.QtScxml.QScxmlCompiler.Loader
Sets
newLoader
to be used for resolving and loading URIs for the SCXML compiler.See also
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.