| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Now it's possible to use easing curve types directly in qml as value
types, {easing.type: "OutBounce"; easing.amplitude: 3}, instead of the
former ugly string format, like "easeOutBounce(amplitude:3.0)".
Reviewed-by: akennedy
|
|
|
|
|
|
|
|
| |
As a value type QmlListProperty doesn't consume any memory in the object.
It also has a companion QmlListReference class that is part of the public
API for C++ developers to interact with that also manages memory issues
that existed with previous solutions (if the containing QObject was
destroyed it left a dangling pointer).
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
mkspecs/linux-g++-x11egl/qplatformdefs.h
src/declarative/qml/qmldom.h
src/declarative/util/qmlview.cpp
src/declarative/util/qmlview.h
tools/qdoc3/cppcodemarker.cpp
tools/qmldebugger/standalone/canvasframerate.cpp
tools/qmldebugger/standalone/engine.cpp
tools/qmldebugger/standalone/expressionquerywidget.cpp
tools/qmldebugger/standalone/expressionquerywidget.h
tools/qmldebugger/standalone/objectpropertiesview.cpp
tools/qmldebugger/standalone/objectpropertiesview.h
tools/qmldebugger/standalone/objecttree.cpp
tools/qmldebugger/standalone/qmldebugger.cpp
tools/qmldebugger/standalone/watchtable.cpp
tools/qmldebugger/standalone/watchtable.h
|
| |
| |
| |
| | |
Reviewed-by: Trust Me
|
| |
| |
| |
| |
| | |
This is needed to provide more control of rotation direction when
animating.
|
| |
| |
| |
| |
| | |
Don't allow manual control (starting, stopping, etc) of animations in a
Behavior or Transition.
|
| |
| |
| |
| |
| | |
We rely on this to know whether to autostart. Disallow easy access to
setTarget by making it private.
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
| |
has proven to be confusing in practice.
property/target and properties/targets will be functionally equivilant
(the only distinction being singular/plural). In a transition these
properties can be used for both 'matching' and explicit animation
based on whether a 'to' value is supplied.
The documentation, tests, examples and demos have been updated as well.
|
|
|
|
| |
This reverts commit d914555badcd4761864657e1e335e657b791453f.
|
| |
|
|
|
|
| |
Task-number: QT-2269
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- include headers from own directory with ""
- include headers from own project without private/
- sort includes from most specific to most generic
- make headers self-contained
- some whitespace unification
no attempt was made at making the qt includes consistent regarding the
use of module names and forwarding headers.
no attempt was made at sorting includes.
|
|
|
|
| |
It seems we're going to have to so a syncqt/configure in Qt modules.
|
|
|
|
| |
May help modularization (syncqt and configure are Qt-specific).
|
| |
|
|\
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | |
|
|/
|
|
| |
as it breaks reinstalling the module against existing Qt.
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Conflicts:
src/declarative/debugger/qmldebug.cpp
src/declarative/fx/qmlgraphicsimagebase_p.h
src/declarative/util/qmlanimation.h
src/declarative/util/qmlstate.h
src/declarative/util/qmltimer.cpp
|
| | |
|
| | |
|
|/ |
|
|
|
|
|
|
|
| |
Now you can assign the script you want to run to the property directly,
rather than assigning a string.
Task-number: QT-734
|
| |
|
| |
|
|
|
|
|
| |
RunScriptAction -> ScriptAction
ParentChangeAction -> ParentAction
|
|
|
|
|
| |
Make it useful as a non-transition; add the ability to select by target,
and set an explicit "to-value".
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This allows you to write ColorAnimation {} in a transition and all
colors that are changing will be handled by default.
|
|
|
|
|
| |
Fix up license headers and private warnings, as well as other general
cleanups.
|
|
|
|
|
| |
Make sure we can handle things like PropertyAnimation { property:
"anchors.leftMargin" }
|
| |
|
| |
|
|
|
|
|
| |
Greatly simplify the NumericAnimation and ColorAnimation classes.
Still need to optimize.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Each loop, we need to check whether the user has set a from value, and
if not get the current value.
|
|
|
|
|
|
|
|
| |
When the 'from' field is not set, it was not updated after running an
animation twice. Now the color and variant animations behave as
the numeric one, updating the 'from' value at the start of each run.
Reviewed-by: Michael Brasser
|
|
|
|
|
|
| |
The 'to' and 'from' attiributes in QmlVariantAnimationPrivate were
QmlNullableValue before, but we can query QVariant::isValid for the
same purpose.
|