QAlgorithm
|
Go to the source code of this file.
Macros | |
#define | QA_IN "algin_" |
Prefix for input properties. More... | |
#define | QA_OUT "algout_" |
Prefix for output properties. More... | |
#define | QA_PAR "par_" |
Prefix for parameters. More... | |
#define | QA_INPUT(Type, Name) |
Defines an input property for the algorithm. More... | |
#define | QA_INPUT_LIST(Type, Name) |
Defines a list of input properties for the algorithm. More... | |
#define | QA_INPUT_VEC(Type, Name) |
Defines a vector of input properties for the algorithm. More... | |
#define | QA_OUTPUT(Type, Name) |
Defines an output property for the algorithm. More... | |
#define | QA_PARAMETER(Type, Name, Default) |
Defines a parameter of the algorithm. More... | |
#define | QA_CTOR_INHERIT |
Make a subclass inherit QAlgorithm's default constructor. More... | |
#define | QA_IMPL_CREATE(ClassName) |
Define the create static method in a subclass. More... | |
Convenience macros that improves usability.
Definition in file qa_macros.h.
#define QA_CTOR_INHERIT |
Make a subclass inherit QAlgorithm's default constructor.
This macro is to be used in each direct subclass of QAlgoritm to make it inherit the default constructor and the QAlgorithm::setup method.
This is useful if no further customization is needed, and mandatory is no other constructor is defined.
Definition at line 245 of file qa_macros.h.
#define QA_IMPL_CREATE | ( | ClassName | ) |
Define the create static method in a subclass.
This macro is meant to be used in a subclass of QAlgorithm, but it's not mandatory. It defines a predefined create static method, that allocates a new instance of that subclass and returns a QSharedPointer to it. It also allows to directly pass the parameters and the inputs on creation, saving several lines of code.
The create method is a wrapper around a set of operations:
Note: this macro cannot be used in abstract subclass.
[in] | ClassName | Name of the subclass which inherit from QAlgorithm. |
Definition at line 273 of file qa_macros.h.
#define QA_IN "algin_" |
Prefix for input properties.
Definition at line 29 of file qa_macros.h.
Referenced by QAlgorithm::getInput(), operator<<(), QAlgorithm::propagateExecution(), and QAlgorithm::setParameters().
#define QA_INPUT | ( | Type, | |
Name | |||
) |
Defines an input property for the algorithm.
The purpose of this macro is to be used in subclasses of the QAlgorithm class and allows to easily define an input to the algorithm. This macro registers a property of type Type called QA_IN<Name> in the Qt's MetaObject System (calling Q_PROPERTY). It automatically defines a member attribute for the subclass called m_QA_IN<Name> using the keyword MEMBER of Q_PROPERTY.
QA_INPUT generates setter and getter methods for the given property; the name convention used is:
[in] | Type | Type of the property; must be registered in the Qt's MetaObject System. |
[in] | Name | Name of the property. |
Definition at line 64 of file qa_macros.h.
#define QA_INPUT_LIST | ( | Type, | |
Name | |||
) |
Defines a list of input properties for the algorithm.
The purpose of this macro is to be used in subclasses of the QAlgorithm class and allows to easily define an input to the algorithm. This macro registers a property of type Type called QA_IN<Name> in the Qt's MetaObject System (calling Q_PROPERTY). It automatically defines two member attributes using the keyword MEMBER of Q_PROPERTY:
QA_INPUT_LIST generates setter and getter methods for the given property; the name convention used is:
[in] | Type | Type of a single property of the list; must be registered in the Qt's MetaObject System. |
[in] | Name | Name of the property list. |
Definition at line 108 of file qa_macros.h.
#define QA_INPUT_VEC | ( | Type, | |
Name | |||
) |
Defines a vector of input properties for the algorithm.
The purpose of this macro is the same of QA_INPUT_LIST, but instead of appending to a QList, uses a QVector. Its intent is to be used whenever memory contiguity is of concern.
[in] | Type | Type of a single property of the vector; must be registered in the Qt's MetaObject System. |
[in] | Name | Name of the property list. |
Definition at line 142 of file qa_macros.h.
#define QA_OUT "algout_" |
Prefix for output properties.
Definition at line 34 of file qa_macros.h.
Referenced by QAlgorithm::getInput(), and operator<<().
#define QA_OUTPUT | ( | Type, | |
Name | |||
) |
Defines an output property for the algorithm.
The purpose of this macro is to be used in subclasses of the QAlgorithm class and allows to easily define an output to the algorithm. This macro registers a property of type Type called QA_OUT<Name> in the Qt's MetaObject System (calling Q_PROPERTY). It automatically defines a member attribute for the subclass called m_QA_OUT<Name> using the keyword MEMBER of Q_PROPERTY.
QA_OUTPUT generates setter and getter methods for the given property; the name convention used is the same as in QA_INPUT.
[in] | Type | Type of the property; must be registered in the Qt's MetaObject System. |
[in] | Name | Name of the property. |
Definition at line 181 of file qa_macros.h.
#define QA_PAR "par_" |
Prefix for parameters.
Definition at line 39 of file qa_macros.h.
Referenced by QAlgorithm::getInput(), operator<<(), and QAlgorithm::setParameters().
#define QA_PARAMETER | ( | Type, | |
Name, | |||
Default | |||
) |
Defines a parameter of the algorithm.
The purpose of this macro is to be used in subclasses of the QAlgorithm class and allows to easily define a parameter to the algorithm. This macro registers a property of type Type called QA_PAR<Name> in the Qt's MetaObject System (calling Q_PROPERTY). It automatically defines a member attribute for the subclass called QA_PAR<Name>.
QA_PARAMETER generates setter and getter methods for the given property; the name convention used is:
[in] | Type | Type of the property; must be registered in the Qt's MetaObject System. |
[in] | Name | Name of the property. |
[in] | Default | Value of type Type to be used as default for the parameter. |
Definition at line 221 of file qa_macros.h.