summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix input methods for TextInput elements with key handlersJoona Petrell2010-07-131-0/+1
| | | | | | Task-number: QTBUG-10297 Reviewed-by: Martin Jones (cherry picked from commit 98bfc8b8db811eb902290dbe87660ce799a44c27)
* Designer: Fix compiler warnings.Friedemann Kleint2010-07-021-0/+1
| | | | | | | Warnings introduced by 312c028d44a80f5d6029eb166a0de731f8452525 and gcc 4.5. Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
* docs - quote code with snippets, other improvementsBea Lam2010-07-012-1/+7
|
* Remove a few more unnecessary exports.Martin Jones2010-07-012-2/+2
|
* Don't export declarative private classesMartin Jones2010-07-0121-37/+37
| | | | | Those required by creator are still exported. Everything else is no longer exported.
* Don't access uninitialized value.Martin Jones2010-06-301-10/+9
| | | | Viewport can move before any mouse press.
* Add ListView.nextSection attached propertyMartin Jones2010-06-302-5/+41
| | | | | | and also renamed ListView.prevSection to ListView.previousSection Task-number: QTBUG-11372
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-307-4/+12
|\
| * Docs - add more links to relevant examplesBea Lam2010-06-307-4/+12
| | | | | | | | Task-number: QTBUG-11754
* | Remove the old font.outline documentationMartin Jones2010-06-303-18/+2
|/ | | | | | | Text.style is the correct property, and this has never been available in TextInput or TextEdit. Task-number: QTBUG-11828
* Remove an unnecessary connect() in TextInputMartin Jones2010-06-291-3/+1
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-291-2/+2
|\
| * Fix flow layout not taking into account whether it's width and height are ↵Joona Petrell2010-06-291-2/+2
| | | | | | | | | | | | | | implicit or not. Task-number: QTBUG-11778 Reviewed-by: Martin Jones
* | Ensure micro focus is updated in TextEdit and TextInputMartin Jones2010-06-293-5/+7
|/ | | | Task-number: QTBUG-11552
* Ensure Loader item change listener is removed when Loader is destroyedMartin Jones2010-06-291-1/+9
| | | | Task-number: QTBUG-11771
* VisualDataModel hasModelChildren role shadowed user roles.Martin Jones2010-06-281-1/+1
| | | | Task-number: BAUHAUS-773
* Allow positioning of ListView items width sub-pixel precision.Martin Jones2010-06-281-7/+10
| | | | | | | Which makes having delegates with integer sizes more important, but allows proper animation of delegate size. Task-number: QTBUG-11738
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-281-0/+5
|\
| * DocsBea Lam2010-06-281-0/+5
| |
* | Restore neutral movement state if a view is manually positioned.Martin Jones2010-06-245-6/+46
|/ | | | | | | Make sure the previous movement state is cancelled if contentX or contentY are set directly. Task-number: QTBUG-11650
* Expose the Flickable's internal contentItemMartin Jones2010-06-245-41/+60
| | | | | | | | 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
* doc: note that calling methods before component completion may have no effectMartin Jones2010-06-233-0/+36
| | | | So use Component.onCompleted:
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-06-231-0/+1
|\
| * Use Pen with Qt::MiterJoin when drawing Rectangles with gradientsBea Lam2010-06-231-0/+1
| | | | | | | | Task-number: QTBUG-11624
* | Fix and better test Text / TextEdit alignments.Warwick Allison2010-06-235-56/+122
|/ | | | | | Various clipping and refresh bugs. Task-number: QTBUG-11492
* Ensure the view is correctly positioned at component complete.Martin Jones2010-06-232-0/+17
| | | | | | If a currentIndex has been specified, ensure the view starts at the correct position immediately, rather than scrolling to it after startup.
* Merge remote branch 'origin/4.7' into qml-4.7Rohan McGovern2010-06-221-3/+0
|\ | | | | | | | | Conflicts: examples/declarative/modelviews/webview/transparent.qml
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-06-221-3/+0
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Compiler warnings (unused variables). Compiler warnings. Fix crash with large ClientCutMessage Fix crash at exit and out of bounds write fix issue wrt posted events on Windows CE
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-06-211-3/+0
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Compiler warnings (unused variables). Compiler warnings. Fix crash with large ClientCutMessage Fix crash at exit and out of bounds write fix issue wrt posted events on Windows CE
| | | * Compiler warnings (unused variables).Bjørn Erik Nilsen2010-06-211-3/+0
| | | |
* | | | Handle TextInput inputMethodEvent() properlyMartin Jones2010-06-222-2/+18
|/ / / | | | | | | | | | | | | Follow the pattern of other text input classes and QML key handling classes.
* | | Rename example image fileBea Lam2010-06-221-1/+1
|/ /
* | ListView doc improvements and examples clean upBea Lam2010-06-181-12/+25
| |
* | Doc fixesBea Lam2010-06-181-6/+6
| |
* | Fix event forwarding in QDeclarativeFlickable.Alexis Menard2010-06-171-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-173-1/+16
|\ \
| * | BorderImage is not updated when border values changeYann Bodson2010-06-173-1/+16
| | | | | | | | | | | | | | | Task-number: QTBUG-11509 Reviewed-by: Michael Brasser
* | | doc: improve Repeater model docs.Martin Jones2010-06-171-10/+3
|/ /
* | Properly update childrenRect for position changes and shrinking.Michael Brasser2010-06-171-4/+5
|/ | | | Task-number: QTBUG-11465
* doc: add note that items with width or height of 0 are not positioned.Martin Jones2010-06-171-0/+8
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-06-163-1/+22
|\
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-06-161-0/+1
| |\
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-06-161-1/+5
| | |\
| | * | Stopping a flick resulted in the next click being consumed.Martin Jones2010-06-161-0/+1
| | | | | | | | | | | | | | | | Task-number: QTBUG-11390
| * | | Move knowledge of QGraphicsObject out of qml engineAaron Kennedy2010-06-161-0/+16
| | |/ | |/|
| * | Document section.delegateBea Lam2010-06-161-1/+5
| |/
* | Write TextInput.positionToRectangle docs.Alan Alpert2010-06-162-4/+10
| | | | | | | | | | | | Also renamed the argument to be more accurate. Task-number: QTBUG-11168
* | Fix autoScroll implementationAlan Alpert2010-06-162-35/+54
|/ | | | | | | | | | | The scrolling should not be calculated inside the paint event, this leads to some incorrect behaviour. It is now calculated separately when needed. Patch actually written by Alexis, and I reviewed it. Task-number: QTBUG-11127 Reviewed-by: Alexis Ménard
* Remove duplicated code.Michael Brasser2010-06-152-14/+2
|
* Fix bug with childrenRect resizing on startup.Michael Brasser2010-06-152-19/+16
| | | | | | This also optimizes the implementation. Task-number: QTBUG-11383