Unity Scopes API
|
Helper class for creating and populating QVariant containers. More...
#include <unity/scopes/qt/QVariantBuilder.h>
Public Member Functions | |
void | add_tuple (std::initializer_list< QPair< QString, QVariant >> const &tuple) |
Adds a tuple of key-value pairs to an array. More... | |
void | add_tuple (QVector< QPair< QString, QVariant >> const &tuple) |
Adds a tuple of key-value pairs to an array. More... | |
QVariant | end () |
Retrieves a completed variant. More... | |
Copy and assignment | |
Copy and assignment operators (move and non-move versions) have the usual value semantics. | |
QVariantBuilder (QVariantBuilder const &other) | |
QVariantBuilder (QVariantBuilder &&other) | |
QVariantBuilder & | operator= (QVariantBuilder const &other) |
QVariantBuilder & | operator= (QVariantBuilder &&other) |
Helper class for creating and populating QVariant containers.
The main purpose of this class is to ease creation of variant containers needed for QPreviewWidget instances or any other classes that require non-trivial variant definitions.
For example, the value of the "rating" key of the following JSON template
can be created with QVariantBuilder as follows:
void QVariantBuilder::add_tuple | ( | std::initializer_list< QPair< QString, QVariant >> const & | tuple | ) |
Adds a tuple of key-value pairs to an array.
It can be used multiple times to create an array of tuples, for example:
can be created with:
void QVariantBuilder::add_tuple | ( | QVector< QPair< QString, QVariant >> const & | tuple | ) |
Adds a tuple of key-value pairs to an array.
This is an overloaded version of add_tuple that accepts QVector
instead of std::initializer_list
.
QVariant QVariantBuilder::end | ( | ) |
Retrieves a completed variant.
Returns the completed variant and resets this builder, so the builder can be re-used.
unity::LogicException | if the builder does not hold a variant. |