| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml:
Labs (experimental) Gesture support.
|
| |
| |
| |
| | |
By popular demand.
|
| |
| |
| |
| | |
All Qt public headers must do it like that.
|
|/
|
|
|
| |
Always use private/. The WinSCW compiler doesn't search the current
directory, for whatever reason.
|
| |
|
| |
|
| |
|
|
|
|
| |
Task-number: QTBUG-9509
|
|
|
|
| |
Task-number: QTBUG-9553
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
Otherwise, simple things break, like having "image.qml" on a case-insensitive file system.
|
| |/
|/|
| |
| | |
Task-number: QTBUG-9499
|
|\ \ |
|
| |/
| |
| |
| |
| | |
Task-number:
Reviewed-by: Aaron Kennedy
|
|/
|
|
| |
Task-number: QTBUG-9559
|
|\
| |
| |
| |
| | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml:
Fixed: Declared properties cannot be assigned in declaration
|
| |
| |
| |
| | |
Task-number: QTBUG-7860
|
|\ \
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
|\ \ |
|
| | |
| | |
| | |
| | |
| | | |
Avoid double initialization of QPluginLoader and assert
that modules are imported with a stable uri
|
|/ /
| |
| |
| |
| |
| |
| | |
Paths were being added relatively even though they should be converted
to a canoncial form. Patch originally by tmikola
Reviewed-by: mae
|
|\ \ |
|
| | | |
|
| | | |
|
| |\ \ |
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| |/ |
|
| |
| |
| |
| |
| |
| | |
The fix makes it possible to specify an ABSOLUTE path as well, e.g.:
plugin mimehunt C:\sys\bin
|
| |
| |
| |
| |
| | |
This brings the "data" property inline with the "children" property.
Improves the declarative/creation/itemtree_qml test by 13%.
|
| | |
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
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
|
|
|
|
| |
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
|
| | |
|
|/ |
|