Details
-
Suggestion
-
Resolution: Fixed
-
P2: Important
-
None
-
361b60162 (dev), c0982b004 (dev), d1241024e (dev)
Description
Currently, qmltc-compiled classes can only be initialized with default values. We need a way to specify initial property values, so that they are available by the time Component.onCompleted is run.
Some ideas:
Candidate 1
A manual completion interface, e.g. an equivalent of QQmlComponent::beginCreate() + QQmlComponent::beginCreate()
Candidate 2
A constructor or static member function which takes callback to initialize properties before completion, for instance:
template<typename Fn> GeneratedTypeConstructor(QQmlEngine* engine, Fn &&initializer, QObject* parent = nullptr) : GeneratedTypeConstructor{parent} { initializer(*this); complete(engine); } // ... new GeneratedTypeConstructor(&engine, [&](GeneratedTypeConstructor &o) { /*set properties of o*/ }, parent);
A callback is suggested here instead of QVariantMap to support strong typing.
Attachments
Issue Links
- is required for
-
QTBUG-120698 qmltc: Enforce required properties
-
- Closed
-
- relates to
-
QTBUG-123476 qmltc fails to produce the required includes for types that only appear as the argument of a list type
-
- Closed
-
For Gerrit Dashboard: QTBUG-120700 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
546865,14 | qmltc: Allow setting initial values when creating a compiled type | dev | qt/qtdeclarative | Status: MERGED | +2 | 0 |
549794,3 | qmltc: Avoid overwriting initial properties | dev | qt/qtdeclarative | Status: MERGED | +2 | 0 |
549795,5 | qmltc: Support setting initial values for reference list properties | dev | qt/qtdeclarative | Status: MERGED | +2 | 0 |