Clarify dynamic scoping
This commit is contained in:
parent
70ec009edd
commit
a561a3fff8
|
@ -86,7 +86,7 @@ Use `Layout.preferredWidth` and `Layout.preferredHeight` attached properties to
|
||||||
|
|
||||||
Follow [Qt's recommendations](https://doc.qt.io/qt-5/qtqml-documents-scope.html) if appropriate
|
Follow [Qt's recommendations](https://doc.qt.io/qt-5/qtqml-documents-scope.html) if appropriate
|
||||||
|
|
||||||
- Consider dynamic scoping. Component `id`s are not accessible outside the component's scope. If required, the component can expose the instance through properties binding. E.g. `readonly property ComponentType exposedComponent: privateInstanceId`
|
- Avoid dynamic scoping in out-of-line components, see more: https://doc.qt.io/qt-5/qtqml-documents-scope.html#component-instance-hierarchy
|
||||||
- Example
|
- Example
|
||||||
|
|
||||||
```qml
|
```qml
|
||||||
|
@ -101,6 +101,8 @@ Follow [Qt's recommendations](https://doc.qt.io/qt-5/qtqml-documents-scope.html)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Component `id`s are not accessible outside the component's scope. If required, the component can expose the instance through properties binding. E.g. `readonly property ComponentType exposedComponent: privateInstanceId`
|
||||||
|
|
||||||
- If in doubt, explicitly use an instance variable to access properties
|
- If in doubt, explicitly use an instance variable to access properties
|
||||||
- If the scope is clear and there is no ambiguity, use the property directly for readability
|
- If the scope is clear and there is no ambiguity, use the property directly for readability
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue