| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
| |
This ensures that if the component has already been completed, itemChange()
is called. This is required to modify QDeclarativePositions in the visual
editor, while keeping a legal state. Without this patch notifications are
missing and the Positioner keeps track of already deleted children.
This resulted in a crash.
Reviewed-by: Thomas Hartmann
(cherry picked from commit 1f8bb573f06234a3d13fb57de5eb644824d5024f)
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Fixed regression in QPixmap::size() for null pixmaps.
Make test less sensitive to platform specifics
Doc: Further QML improvements.
Doc: Minor improvements to QML-related documentation.
The test livelock of QTimer is now expected to work
Make sure mapSelectionFromSource does not return a selection with invalid ranges.
QEventDispatcherUnix: do not process too many timer if other events need to be processed first
Doc: Continued work on the QML documentation.
Doc: More work on the QML documentation.
Doc: More work on the declarative API documentation.
Doc: Some editing and tidying up.
Doc: Added a missing file.
Doc: Fixed text in license headers.
|
| |\ |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This time the implementation of clear is correct
Reviewed-by: Marco Bubke
|
| |/
|/|
| |
| |
| |
| |
| |
| | |
This patch makes the handling of properties like
children and data easier in Bauhaus.
Especially in the case of property alias
Reviewed-by: Aaron Kennedy
|
|/
|
|
| |
Task-number: QTBUG-13543
|
| |
|
|
|
|
|
|
|
| |
We did this when handling the mouse events ourselves, but if e.g. a
mousearea stole the mouse, we didn't reset the pressed flag.
Task-number: QTBUG-12343
|
|
|
|
| |
Task-number: QTBUG-13095
|
|
|
|
| |
Task-number: QTBUG-13176
|
|
|
|
|
|
|
|
|
|
|
| |
We had a very low minimum velocity flick threshold, but upon deciding
to flick we increased that velocity considerably. This resulted in
a slow dragging movement generating a fast flick.
Now we just have a higher minimum flick velocity threshold, and the
correct velocity is used.
Task-number: QTBUG-13078
Reviewed-by: Michael Brasser
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml:
Add missing auto test files.
Fix game could not be restarted
Handle QGraphicsWidgets in Flickable
More positioners with QGraphicsWidgets fixes.
Make positioners work with QGraphicsWidgets also
emit countChanged where appropriate in Repeater
|
| |
| |
| |
| |
| | |
Task-number: QTBUG-12830
Reviewed-by: Michael Brasser
|
|/
|
|
| |
...and a set of functional group pages.
|
|
|
|
|
|
|
|
| |
Clip the content position to the beginning rather than the end, if
both apply.
Task-number: QTBUG-12573
Reviewed-by: Michael Brasser
|
|
|
|
|
|
|
|
|
|
| |
When the mouse is pressed the flick is stopped, but this may be a
continuation of a previous flick, in which case we don't want to
emit movementEnded since this can cause stutters in animations triggered
by movementEnded, for example.
Task-number: QTBUG-12492
Reviewed-by: Warwick Allison
|
|
|
|
|
|
|
|
| |
This allows dragging a MouseArea that contains a clickable MouseArea,
for example.
Task-number: QTBUG-12323
Reviewed-by: Michael Brasser
|
| |
|
| |
|
|
|
|
| |
Viewport can move before any mouse press.
|
|
|
|
|
|
|
|
| |
So that dynamically created items can be parented to the contentItem
and be flicked with the rest of the content.
Task-number: QTBUG-11674
Reviewed-by: Aaron Kennedy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The flickable element filters all events of its children and store the
press event to replay it if there is a release or if the scrolling
didn't happen. The issue was that the event and the item stored to
"replay" the press event might not be the item that is interessted by
the event. Let say you have a translucent overlay on top of an other
item. Previously all events will be send to the overlay and not to the
item underneath. This happen beause QGraphicsView propagate events from
top to bottom (stacking order) so the overlay will be the first child
filtered by the flickable. So we need to repropagate the event through
the normal process to the event delivery mechanism of QGraphicsView
will work properly. Also we need to unset the mouse grabber since after
the first press it might be set to a wrong item. We also need to replay
the release by ourself on the new mouse grabber but only if we need to
send again the press.
Reviewed-by:Yann Bodson
|
|
|
|
| |
Task-number: QTBUG-11390
|
|
|
|
| |
docs more consistent
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
subdirectories to make it easier to locate examples for certain
features (e.g. animation) and to distinguish between different types
of examples (e.g. very basic examples vs complex demo-like examples).
|
|
|
|
|
|
|
| |
- flicking and moving properties will not be removed
- onMovement* and onFlick* signals are back in
Reviewed-by: Martin Jones
|
|
|
|
|
|
|
|
|
|
| |
- Split moving into movingHorizontally anf movingVertically
- Split flicking into flickingHorizontally and flickingVertically
- Rename flickDirection to flickableDirection
- onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed
Task-number: QTBUG-10572
Reviewed-by: Martin Jones
|
|\ |
|
| |
| |
| |
| | |
Task-number: QTBUG-10386
|
|\ \
| |/ |
|
| | |
|
|/ |
|
|
|
|
| |
Task-number: QTBUG-9993
|
|
|
|
|
|
| |
size.
Task-number: QTBUG-9901
|
| |
|
|
|
|
|
|
|
|
|
|
| |
We used to avoid doing fixup in a direction we were not flicking. This
was pointless, and caused bugs when the view transitioned from flickable
to not flickable, e.g. by content size change.
Fixup following content size is also no longer animated. This can be
acheived using a behavoir, for example.
Task-number: QTBUG-9961
|
|
|
|
| |
Task-number: QTBUG-9804
|
|
|
|
|
| |
Always use private/. The WinSCW compiler doesn't search the current
directory, for whatever reason.
|
|
|
|
| |
Task-number: QTBUG-9499
|
| |
|
|
|
|
|
|
| |
Replacing QDeclarativeItem* members by QGraphicsObject*. Build fix too.
Reviewed-by:akennedy
|
|
|
|
|
| |
So that they handle model changes involving multiple insertion
and deletion without entering the event loop.
|
|
|
|
| |
Also some minor perf improvements by avoiding signal/slot connection
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (72 commits)
Doc: Enabled the context menu in the spreadsheet demo.
Updated URLs.
Doc: Applied suggestion for an improvement to the foreach documentation.
Doc: Added a note about the lack of standard file copy/paste on X11.
Doc: Fixed the row number for a widget in two parts of the tutorial.
Doc: Fixed typos.
Reduce compiling time of QScriptValue autotest suite on Windows.
Optimize QScriptValue autotest generator.
Set database write behavior to synchronous=OFF and increase page cache.
doc: Fixed some qdoc errors.
Setting ImhHiddenText for NoEcho line edits is not 100% correct, but still way better than fully visible text.
Allow building documentation without all of Qt
Added a documentation for the new enum value in gesture api.
Remove the OBJECTS_DIR variable assignment from some projets in Qt.
Fix compile
qmake/MinGw: Link statically for Qt Creator to be able to detect it.
Enable two fast path for blend_tiled_rgb565
Avoid QString reallocation for smallcaps fonts in Itemizer::generate()
Make QLabel::text a reloadable property
remove non wifi interfaces from being handled.
...
|
| |
| |
| |
| |
| | |
class/struct mixups, unused variables.
Reviewed-by: Thomas Hartmann <thartman@trolltech.com>
|