| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
Code degeneration lead to three bugs:
1. progress bar worked only the first time
2. restart was broken
3. highscore model was not persistent
Reviewed-by: Trust me
|
|
|
|
|
|
|
| |
Examples get the BSD license, while all other .qml files get the
LGPL/tech-preview license.
Reviewed-by: Trust Me
|
|
|
|
| |
QDeclarativeComponent)
|
|\
| |
| |
| |
| | |
Conflicts:
examples/declarative/dynamic/qml/itemCreation.js
|
| | |
|
|/
|
|
|
|
|
|
|
| |
For graphical objects (the common case) a common mistake is to not
parent a dynamically created item. Since you almost always want to add a
parent, and it's hard for a beginner to diagnose this problem, a parent
is now a required argument and dealt with by the createObject function.
Task-number: QTBUG-10110
|
|
|
|
|
|
|
| |
The Component status enum covers all of these properties already and
removing these also makes the API consistent with Image and Loader.
Note this change only affects the QML Component API; the methods are
still available for QDeclarativeComponent.
|
| |
|
|\ |
|
| | |
|
|/
|
|
|
|
|
|
|
| |
Also updated examples to still work, and the dynamic example now uses
exceptions a little, to demonstrate that it can be done. Exceptions are
also now filled out with the QML error data.
Task-number: QT-2801
Reviewed-by: Aaron Kennedy
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Inline blocks/includes have been replaced with an import syntax:
import "foo.js" as Foo
this gives better separation between QML and code. Imported script blocks
also have a mandatory qualifier, which leads to better optimization
potential.
|
| |
|
|
|
|
| |
Task-number: QT-2846
|
|
|
|
| |
Simply copy the demo directories, instead of writing a stub .pro file.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Where you would have written
x: NumberAnimation {}
y: Behavior {}
you now must write
NumberAnimation on x {}
Behavior on y {}
This change also makes the parser more strict with respect to multiple
assignments to a single property - they're no longer allowed. For example
this
x: 10
x: 11
is now an error.
|
|
|
|
|
| |
Avoid having 2 'states' that have 'when' conditions that can be 'true'
at the same time.
|
| |
|
| |
|
| |
|
|
|