| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (31 commits)
Fix compilation with Sun CC: no semi-colon after Q_ENUM.
Remove the "Insert unicode control character" menu entry on X11.
adds a timeout option to QThreadPool::waitForDone();
Remove leading whitespace from Qt header macros.
Rename the xxxMsecsSinceEpoch functions to xxxMSecsSinceEpoch.
Add QDateTime members that operate on 64-bit milliseconds.
Fix compilation on WinCE and MinGW by memsetting the OVERLAPPED struct.
qdoc: Added <div> elements to some html output for class references.
Fix compile error on mingw.
MONILITY-645
Do not override alternate background color in Plastique
Fix QComboBox ignoring foreground role in some styles
Fix compilation on HP-UXi: _SC_MONOTONIC_CLOCK isn't defined
Fix compilation with Sun CC:
Ensure that we return QPair<long,long> in all cases.
Update PLATFORM(SPARC64) to CPU(SPARC64)
jui files are no c++ ...
scan some more file types by default
Support EtchDisabledText with spin box on Windows style
QNAM HTTP: Fix invoking a method when being destructed right now
...
|
| |
| |
| |
| |
| |
| |
| | |
Error was:
"graphicsitems/qdeclarativepathview_p.h", line 80: Error: "}" expected instead of ";"
Reviewed-by: Olivier Goffart
|
|\ \ |
|
| | | |
|
| | | |
|
| |\ \ |
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This fixes the original commit, 56aa9370dbafa8ee4, for QTBUG-9383.
We need to emit a positionChanged signal to update the mouseX(Y)
for the mouse area.
Reviewed-by: Martin Jones
|
| |/ |
|
| |
| |
| |
| |
| | |
This brings the "data" property inline with the "children" property.
Improves the declarative/creation/itemtree_qml test by 13%.
|
|/ |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
Task-number: QTBUG-9383
|
| |
|
|
|
|
| |
setParentItem no longer sets QObject parent.
|
|\ |
|
| |
| |
| |
| | |
QTBUG-5768
|
|/ |
|
|
|
|
|
|
| |
Also add Flow tests.
Task-number: QTBUG-9421
|
| |
|
|\ |
|
| |
| |
| |
| | |
Task-number: QT-319
|
| | |
|
|/
|
|
| |
Task-number: QTBUG-9396
|
|
|
|
| |
Remove Translate.z since Qt cannot sensibly support it yet.
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| | |
It's done by QGraphicsItemPrivate::addChild and removeChild.
Reviewed-by:akennedy
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
and ListView delegates.
|
| | |
|
| | |
|
|/
|
|
|
|
|
| |
Add Translate transform.
Image::sourceWidth and Image::sourceHeight read/write properties.
Task-number: QTBUG-8984
|
| |
|
| |
|
|\
| |
| |
| |
| | |
Conflicts:
src/declarative/graphicsitems/qdeclarativeitem.cpp
|
| |\
| | |
| | |
| | |
| | |
| | | |
Conflicts:
demos/declarative/minehunt/minehunt.cpp
src/declarative/qml/qdeclarativecompiler.cpp
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
For properties that are as important as "parent", QML cannot afford the
overhead of a signal/slot connection.
|
| | |
| | |
| | |
| | |
| | |
| | | |
views.
Task-number: QT-319
|
| | |
| | |
| | |
| | |
| | |
| | | |
Also fix a connect in QDeclarativeItem.
Reviewed-by:TrustMe
|
| | |
| | |
| | |
| | | |
Reviewed-by:Martin Jones
|
| | |
| | |
| | |
| | |
| | |
| | | |
Replacing QDeclarativeItem* members by QGraphicsObject*. Build fix too.
Reviewed-by:akennedy
|
| | |
| | |
| | |
| | | |
Reviewed-by:Martin Jones
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit remove the children property from QDeclarativeItem because
it's now in QGraphicsObject. This commit also get rid of width and height
properties to use the one in QGraphicsObject.
Task-number:QT-2757
Reviewed-by:akennedy
|