| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| |\
| | |
| | |
| | | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | |
| | |
| | |
| | | |
Reviewed-by: Aaron Kennedy
|
| |/
|/| |
|
| | |
|
| |
| |
| |
| | |
Behaviour -> Behavior
|
| |
| |
| |
| |
| | |
Behaviour was renamed Behavior. Was Australian spelling, now
US spelling.
|
| |
| |
| |
| |
| |
| | |
By using QContiguousCache, and upper limit on cache size is assured.
Also caching is set to occur in the background when possible.
This should reduce any impact on animation performance.
|
|\ \
| |/
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | |
|
| | |
|
| |\
| | |
| | |
| | | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | |
| | |
| | |
| | | |
Reviewed-by: Kai Koehne
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
QWidget deletes its children in its own constructor so we have
to cleanup before explicitly
Reviewed-by: Aaron Kennedy
|
| | |
| | |
| | |
| | | |
UiScriptBinding.
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
This is necessary so that notify signals on properties defined in an extension object operate correctly.
|
| |
| |
| |
| | |
However, they still don't honour the presence of an id property.
|
| | |
|
| | |
|
| |
| |
| |
| | |
This reverts commit 6d28410756ab29277807d2026b4cbd8e1c707714.
|
| |\
| | |
| | |
| | | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
When creating a file dialog, you need to show its parent prior to
invoking that dialog.
|
| | |\
| | | |
| | | |
| | | | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | | |\
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Conflicts:
doc/src/qnamespace.qdoc
src/gui/painting/qdrawutil.cpp
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Removed calls to the widget getters because we have the members directly
in the private class.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The problem was that we used QRect::isEmpty() on the item's bounding
rect intersected with the exposed region's bounding rect as a criteria
for whether the item should be drawn or not. This does not work as
expected with partial updates, where the boundingRect() of the exposed
region easily can cover the entire viewport area.
The item should *only* be drawn if its bounding rect intersects with
the exposed region (and not the exposed region's bounding rect).
Auto-test included.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Needed for remote debugging.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Since QTransform::type() now uses a switch based on m_dirty, we can't
treat m_dirty as a bit mask anymore.
Reviewed-by: Ariya
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously the 300 msec hide timer was restarted every time hideText()
was called.
Reviewed-by: Thorbjorn Lindeijer
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Similar to what was done in f86dcade8716a0aee841ba05740887598633de17,
we shouldn't multiply by the redirectionMatrix in replayClipOperations()
as the clip info matrices already contain the redirectionMatrix.
Reviewed-by: bnilsen
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Even though the standard mandates a maximum of 2 connections, most
new browsers support atleast 6 connections. So we are also bumping the
limit.
Task-number: 251144
Reviewed-by: Markus Goetz
Reviewed-by: Peter Hartmann
|
| | | | |
| | | | |
| | | | |
| | | | | |
removed qstrdup and used QByteArray to its full extent
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
After change f0a4a37a5182660580fd361110d3fd51463221d8 the clip info
stack already contains the redirection offset, so we don't need to apply
it again.
Reviewed-by: bnilsen
|
| | | | |
| | | | |
| | | | |
| | | | | |
Make sure we match the logic in qglobal.h.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
You can now write x: Behavior { NumericAnimation { duration: 500 } },
rather than having to specify the target and property for the animation
explicitly. Also other minor fixes.
|