| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
The symbian SDK has a Time class defined which means that the compiler
complains about the name already being used.
Lets just disable the compile as this is not worth disturbing the example over.
|
|
|
|
|
| |
the capability CAP_GENERAL_DLL is apparently an alias, so replace it with the
extended version
|
| |
|
|
|
|
|
| |
Inline all the code that is used from QtCore as we should not assume QtCore
is present for a static library linked into random 3rd party applications.
|
| |
|
| |
|
|
|
|
| |
Reviewed-by: Trust Me
|
|\
| |
| |
| |
| | |
Conflicts:
tests/auto/declarative/qdeclarativedom/data/importlib/sublib/qmldir
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml:
Correctly construct boolean JSValue's
Update QmlChanges for SmoothedAnimation
WorkerScript was receiving events after deletion and trying to process
Make qmlpixmapcache thread shutdown cleaner
Make visual tests run on windows
Fixes PathView compile warnings
Finished file rename of qdeclarative easefollow to smoothedanimation
Change and rename qml EaseFollow to SmoothedAnimation
Fix parenting after 6f88388db4e8e202780d789e66664ff824691948.
Fix viewer resizing on reload and File->open
Don't emit onPositionChanged before onPressed
|
| | |
| | |
| | |
| | | |
Task-number: QTBUG-9205
|
| | | |
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | | |
these events.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
QDeclarativeSmoothedAnimation inherits from QDeclarativeNumberAnimation,
as a consequence SmoothedAnimation can be used inside Behaviors and
as PropertySourceValues, like any other animation. The old EaseFollow
properties changed to comply with the other declarative animations
('source' changed to 'to'), so now 'to' changes are not automatically
'followed' anymore.
You can achieve the following behavior by putting a SmoothedAnimation
inside a Behavior of a property that is bound to another, as the
following example:
If you want to follow an hypothetical rect1, you should do now:
Rectangle {
color: "green"
width: 60; height: 60;
x: rect1.x - 5; y: rect1.y - 5;
Behavior on x { SmoothedAnimation { velocity: 200 } }
Behavior on y { SmoothedAnimation { velocity: 200 } }
}
SmoothedAnimation also supports animating multiple target(s)/property(ies)
in the transition case. When a QDeclarativeSmoothedAnimation is restarted,
it will match the QDeclarativeProperty which were being animated and
transfer the corresponding track velocity to the new starting animations.
QSmoothedAnimation is an uncontrolled animation, duration == -1.
The duration is set as -1 to avoid consecutive animation state changes
stop()/start(). This is particularly useful when using QSmoothAnimation
to 'follow' another property, which is also being animated (change the
'to' property every tick).
Reviewed-by: Michael Brasser
|
| | | | |
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Change to Thiago's method:
QThread::quit() is *not* thread-safe, so we mustn't call it from
outside the QThread that the QThread holds. Unlike other QObjects,
this method and some others must not be called from the thread they
have affinity to.
So add a hack to call it in the auxiliary thread. Do that by
connecting a dummy QObject's destroyed() signal to the quit() slot in
a DirectConnection, then move the object to the thread. When we call
deleteLater(), this will cause the thread's event loop to delete the
object, which in turn calls quit() in the actual thread.
Reviewed-by: Thiago Macieira
|
| | |
| | |
| | |
| | | |
Task-number: QTBUG-9325
|
| | |
| | |
| | |
| | | |
Task-number: QTBUG-9383
|
| |\ \
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (136 commits)
Make QDeclarativeListProperty a class
Fix qdeclarativedom::loadDynamicProperty test
Correctly parent repeater items.
Make sure cursor delegate is parented.
Allow just one dimension to be set, the other scaled accordingly
Simplify import path.
Removed unneeded code.
Update autotest a little
Improve QML compiler statistics
Use error enum not numbers
Pass test.
doc
test error code too
QDeclarativeItem::setParentItem should not modify the QObject parent
Doc
Ensure currentIndex is updated when PathView items are removed/moved
Visual test fixes.
Doc
Relayout items when Flow size changes.
Make sure the image reader thread is shutdown properly
...
|
| | |
| | |
| | |
| | | |
Apparently structs are not socially acceptable.
|
| | |\
| | | |
| | | |
| | | |
| | | | |
Conflicts:
tests/auto/declarative/qdeclarativedom/tst_qdeclarativedom.cpp
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
setParentItem no longer sets QObject parent.
|
| | | |
| | | |
| | | |
| | | | |
Task-number: QTBUG-8984
|
| | | |
| | | |
| | | |
| | | | |
Reviewed-by: mae
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
variant property was removed, and data property was altered, without
updating this autotest. However the remaining failure for date appears
to be genuine
|
| | |/ |
|
| | | |
|
| | |
| | |
| | |
| | | |
(easier to doc)
|
| | | |
|
| | |\ |
|
| | | |\ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
QTBUG-5768
|
| | | |\ \
| | | | |/ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
QTBUG-7998
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
QTBUG-9273
|
| | | |/ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Also add Flow tests.
Task-number: QTBUG-9421
|
| | | |\ |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Prevents deadlock on shutdown for very shortlived runs,
e.g. autotests
|
| | | |\ \ |
|
| | | |\ \ \ |
|
| | | |\ \ \ \ |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Task-number: QTBUG-9459 QTBUG-9458
|