| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
(cherry picked from commit e0a102ee171ddcebb1104d98d8a4ff4993e91c1d)
|
|
|
|
|
|
|
|
| |
QDeclarativeVisualDataModel::stringValue() did not handle
QList<QObject*> model types.
Task-number: QTBUG-12005
(cherry picked from commit b6251d31652232a6ac3a5dff54ad4229542089b1)
|
|
|
|
|
|
|
|
|
|
|
|
| |
Always place PathView delegates centered on the path
The scale of the delegate was used to offset the item. This was a
bad way of making the item appear to be positioned correctly when
the default transform origin was the top-left. Now that transform origin
is center, it is obvious that it was a bad idea.
Task-number: QTBUG-12245
Reviewed-by: Michael Brasser
(cherry picked from commit 19473443dbeff4a57cd6ec6572ca29c2e70d672c)
|
|
|
|
|
| |
Replace the usages of Follows with Behaviors, update docs.
(cherry picked from commit b22a5e13003ff9f23b075284a1a1e0a6b0e46250)
|
|
|
|
| |
(cherry picked from commit 1ea53e6055a7c4e9677a5003725785ad503bb242)
|
|
|
|
| |
(cherry picked from commit d5d16b3d3304774df11f40df0206d90ed5f840de)
|
|
|
|
|
|
| |
Do not stop a spring animation if the to value got
changed while notifying the target property change.
(cherry picked from commit 3f2a4f34f6206e3a94915a8d50ddfe81e047b88b)
|
|
|
|
| |
(cherry picked from commit 31cd8c15c0fdb2f08c2652609a57413a715d1b13)
|
|
|
|
| |
(cherry picked from commit 2497d922f06404f6fd1c65c6c685fbce173303ae)
|
|
|
|
|
| |
Reviewed-by: Aaron Kennedy
(cherry picked from commit ae39a510f86fd13d6d41bc85d4f5c243eca45eab)
|
|
|
|
| |
(cherry picked from commit 896de79554060aadf4963d8285ef3f5d8740428b)
|
|
|
|
|
|
| |
Task: QTBUG-12201
Reviewed-by: Michael Brasser
(cherry picked from commit 8ed72a96bc5c3af283f8ca4460adae9d4b466479)
|
|
|
|
|
| |
Reviewed-by: Aaron Kennedy
(cherry picked from commit e55781212532e2abcdd1cef8548b146fb14f0713)
|
|
|
|
|
| |
Task-number: QTBUG-12167
(cherry picked from commit 9adc85fdfa0af2b6948408932188ee1b79247fa6)
|
|
|
|
|
|
|
| |
Happened when currentItem was on a section boundary.
Task-number: QTBUG-12089
(cherry picked from commit 181749ff7dcfbeb5eb64026e80353f27013af833)
|
|
|
|
| |
But its still a private class.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This may mean that the cursor is to the right of the width, so components should
cater for that with a margin if they are boxed / clipped.
TextInput used to try to account for right bearing (and left bearing incorrectly since
it added it on the right). This is removed. Potentially this means that for some fonts
the text repaints incorrectly on the left or right, but if that is the case Text and TextEdit
already had such a problem (undetected), and all will need fixing.
Task-number: QTBUG-11983
(cherry picked from commit 628159323c60c434a202b036ecbaf5e433c703e8)
|
|
|
|
|
| |
QTBUG-11954
(cherry picked from commit cec6d01d17e39af6e8a139156a3b51fd45558a50)
|
|
|
|
|
| |
Task-number: QTBUG-11936
(cherry picked from commit cabdb16f5ea6458dec9a2ec3b70a01e498b27dbc)
|
|
|
|
|
|
| |
Task-number: QTBUG-12115
Reviewed-by: Martin Jones
(cherry picked from commit 400b0d43830dfdcefb2f8bd91440ab6f4130ce0f)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The QDeclarativeSpringAnimation is a replacement for
QDeclarativeSpringFollow. The idea is to remove the Follows
quickly.
Follows used to have an inSync property. In order to provide
an alternative mechanism, the commit also fixes the
running property for animations which are controlled by a
behavior. Previously running would always return false and
never change. Now running does change and indicates that the
animation is running indeed.
(cherry picked from commit cb406a116bf2237c743ac05882fb06927c70359c)
|
|
|
|
|
|
| |
Task-number: QTBUG-12086
Reviewed-by: Michael Brasser
(cherry picked from commit 0fdf5122c72eb86d49cba2b69f80d3a9c5949da6)
|
|
|
|
| |
(cherry picked from commit e3bc34b40559e0cb88363039ee61300478e7c700)
|
|
|
|
| |
(cherry picked from commit c3ee63fd9a1428718ca2f2a32e81a3f977878fad)
|
|
|
|
|
|
|
| |
QDeclarativeImageProvider to provide pixmaps instead.
Task-number: QTBUG-11980
(cherry picked from commit 33b664eabe5d9621d71e5bf3bfcc46ea385a399c)
|
|
|
|
|
|
|
|
|
|
|
| |
synchronous loading of QImages. (QPixmaps can only be created in the
main thread so they will always be loaded synchronously).
This changes request() to requestImage() and adds requestPixmap()
for pixmap support.
Task-number: QTBUG-11989
(cherry picked from commit a258456bcb35ec4211751a702ea94a1881d82a07)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The QDeclarativePixmapCache was both slow, and very trickey to use correctly.
Many QML elements did not correctly cancel outstanding requests, which leads
to pixmaps leaking indefinately. Other elements, such as Text, were
subject to race conditions that meant they may never actually load all their
images.
QDeclarativePixmap is a single class than encapsulates the action of
fetching a pixmap, as well as the pixmap itself and the responsibility of
canceling outstanding requests. Rather than relying on Qt's pixmap cache
that doesn't cache all the information QML needs, QDeclarativePixmap
implements its own cache, that correctly degrades over time (unlike
QPixmapCache that can stop expiring items in some conditions).
Reviewed-by: Warwick Allison
(cherry picked from commit 09f07b98dfdaec2e48749768b967a48e588d3f7f)
|
|
|
|
|
| |
QTBUG-11933
(cherry picked from commit 76a1804b0fff9ffd092a551defe448d3e9d4346e)
|
|
|
|
|
| |
Task-number: QTBUG-11986
(cherry picked from commit 44d78dca77b8a5f4f0d1bb67e84c21a4c57345b6)
|
|
|
|
|
|
| |
Task-number: QTBUG-11932
Reviewed-by: Martin Jones
(cherry picked from commit 5500ffeeaee3412272f0f4af844fbc1d4d78a3bb)
|
|
|
|
|
|
| |
Task-number: QTBUG-11790
Reviewed-by: Martin Jones
(cherry picked from commit 37792d20eeef870a0d695fc15bc943f20275be9a)
|
|
|
|
|
|
|
|
| |
If the new currentIndex is in view, then there is no need to cancel
a flick that is in progress.
Task-number: QTBUG-11405
(cherry picked from commit c09f58965e772064ca952892f2e7969082f03855)
|
|
|
|
|
|
| |
Task-number: QTBUG-10297
Reviewed-by: Martin Jones
(cherry picked from commit 98bfc8b8db811eb902290dbe87660ce799a44c27)
|
|
|
|
|
|
|
| |
Warnings introduced by 312c028d44a80f5d6029eb166a0de731f8452525
and gcc 4.5.
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
|
| |
|
| |
|
|
|
|
|
| |
Those required by creator are still exported. Everything else is
no longer exported.
|
|
|
|
| |
Viewport can move before any mouse press.
|
|
|
|
|
|
|
| |
The new message currently enables resetting bindings, literal values and
signal handlers (onX: {...}) through the debugger.
Reviewed-by: Roberto Raggi
|
|
|
|
|
|
| |
and also renamed ListView.prevSection to ListView.previousSection
Task-number: QTBUG-11372
|
|\ |
|
| |
| |
| |
| | |
Task-number: QTBUG-11754
|
|/
|
|
|
|
|
| |
Text.style is the correct property, and this has never been available
in TextInput or TextEdit.
Task-number: QTBUG-11828
|
|
|
|
| |
Task-number: QTBUG-11827
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
implicit or not.
Task-number: QTBUG-11778
Reviewed-by: Martin Jones
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (46 commits)
Ensure Loader item change listener is removed when Loader is destroyed
Adapt all qmlviewer testcases to the code changes in the actual viewer.
Stop QMLLauncher from crashing on exit on Mac when quitting app via the
VisualDataModel hasModelChildren role shadowed user roles.
Allow positioning of ListView items width sub-pixel precision.
Examples clean up
Docs
Improve appearance when scaling
Tweak Qt Demo Behaviour
forget to rename the moc include when renaming deviceorientation_maemo.cpp
fix namespace macros
fix QML Viewer resize modes
forgot to cleanup the code a bit after adding Maemo5 support
Make the QML viewer usable on the N900
Test QTBUG-11222
Test ListElement type via type system, not string comparison.
Test only on X11, not only on Linux (which includes embedded).
Handle enums in method arguments in the same way as QtScript
Allow custom parsers to handle attached properties
Allow components to be created from .pragma library JS files
...
|
| |\ \ |
|
| |\ \ \ |
|