summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems
Commit message (Collapse)AuthorAgeFilesLines
* Fix scrolling backwards when pathItemCount != model.countAlan Alpert2010-02-121-2/+7
| | | | | | | | | Also fixes -Scrolling backwards when model.count != 0 mod pathItemCount -A minor typo in a comment Task-number: QTBUG-6865 Reviewed-by: Martin Jones
* Fix warningsAaron Kennedy2010-02-121-3/+0
|
* Adds inputMethodHint property to TextEdit and TextInput.Joona Petrell2010-02-122-0/+3
| | | | Reviewed-by: Martin Jones
* Decouple Loader from QmlGraphicsItemJoona Petrell2010-02-123-38/+118
| | | | | Task-number: QT-2823 Reviewed-by: Aaron Kennedy
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlAlan Alpert2010-02-102-9/+16
|\
| * Make sure item release isn't deferred indefinatelyMartin Jones2010-02-102-9/+16
| |
* | Attempt to clairify highlight range docsAlan Alpert2010-02-101-0/+10
|/
* Revert "Replace QList<>* support with QmlListProperty"Martin Jones2010-02-105-11/+11
| | | | This reverts commit d914555badcd4761864657e1e335e657b791453f.
* Replace QList<>* support with QmlListPropertyAaron Kennedy2010-02-095-11/+11
|
* Support the other validatorsAlan Alpert2010-02-082-0/+23
| | | | | | | Note that a resolution will be required for QTBUG-8025 before the QRegExpValidator is useful. Task-number: QTBUG-7068
* The virtual keyboard is now working for TextEdit and TextInput components.Alexis Menard2010-02-083-0/+51
| | | | | | | | | In order to show the virtual keyboard we need to send RequestSoftwareInputPanel. I also fixed TextInput regarding the inputQuery implementation. Task-number:QTBUG-7602 Reviewed-by:akennedy
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-082-14/+14
|\
| * Make transformOrigin Center by defaultYann Bodson2010-02-082-14/+14
| | | | | | | | Task-number: QTBUG-7430
* | Fix viewport size update.Martin Jones2010-02-081-2/+4
|/
* clip if tile mode is 'PreserveAspectCrop' and 'clip' property is true.Yann Bodson2010-02-081-3/+9
|
* Fix item removal.Martin Jones2010-02-081-7/+7
|
* Make atBeginning/viewArea calculations account for min extent.Martin Jones2010-02-081-6/+6
|
* Pass symbols::prefix (Action -> QmlAction)Warwick Allison2010-02-051-4/+4
|
* Fix ListView tests.Martin Jones2010-02-051-4/+6
|
* Test SizeItemToLoader to SizeLoaderToItem resizeMode change.Martin Jones2010-02-041-0/+6
| | | | Task-number: QT-2376
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Michael Brasser2010-02-0415-154/+239
|\ | | | | | | into kinetic-declarativeui
| * Document margins propertyAlan Alpert2010-02-031-0/+2
| |
| * Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2010-02-0313-151/+219
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * update Image.paintedWidth and Image.paintedHeight when the source changesYann Bodson2010-02-032-0/+5
| | |
| | * Remove debug.Martin Jones2010-02-031-4/+0
| | |
| | * Add a PathView.onPath property to help deal with unrequested items.Martin Jones2010-02-032-15/+66
| | |
| | * Avoid crash on shutdown if model is destroyed before view.Martin Jones2010-02-032-6/+10
| | |
| | * Compile.Martin Jones2010-02-031-4/+4
| | |
| | * Fix compile on visual, changed NaN checks to use qIsNaN instead of isnan.Joona Petrell2010-02-031-4/+3
| | |
| | * Ensure unrequested items are placed outside the visible area.Martin Jones2010-02-032-9/+18
| | |
| | * Fix Loader crash when Loader.item causes a new item to be loadedMartin Jones2010-02-031-2/+8
| | | | | | | | | | | | Task-number: QT-2338
| | * Handle wheel events in Flickable.Martin Jones2010-02-023-2/+31
| | |
| | * Fix insertion and deletion of multiple items in GridView.Martin Jones2010-02-024-114/+72
| | |
| | * Fix QList<QObject*> as a model. Add docs and example.Martin Jones2010-02-011-2/+3
| | |
| | * Tests for NaN values in the property x, y, widht and height setters ofMarco Bubke2010-02-011-0/+8
| | | | | | | | | | | | | | | | | | | | | QGraphicsItem and QmlGraphicsItem Task-number: BAUHAUS-268 Reviewed-by: Thomas Hartmann
| | * Add transformOriginChanged signal to QmlGraphicsItemMarco Bubke2010-02-012-1/+3
| | | | | | | | | | | | | | | | | | | | | This is needed that Bauhaus is reflecting the changes in QmlGraphicsItem. Task-number: BAUHAUS-125 Reviewed-by: Kai Koehne
| * | Focus focusScope from focusing for focusOnPressAlan Alpert2010-02-032-3/+18
| |/ | | | | | | Task-number: QTBUG-6739
* | Fix elision and multilength strings when resizing a Text element.Michael Brasser2010-02-041-1/+10
|/ | | | | | They were incorrectly wrapping when the width changed. Task-number: QTBUG-7477
* Add paintedWidth and paintedHeight properties to QmlGraphicsImage.Yann Bodson2010-01-293-2/+59
|
* Speed up QmlGraphicsItem::setParentItem.Bjørn Erik Nilsen2010-01-271-1/+5
| | | | | | | | We avoid unnecessary QVariant constructions / notifications / virtual function calls by calling the QGraphicsItemPrivate::setParentItemHelper directly. Reviewed-by: Aaron Kennedy
* Fix crash when removing multiple items.Martin Jones2010-01-272-65/+75
| | | | | | | Also fix bugs in multiple item insertion and removal. Avoid scrolling to current item on item insertion and removal. Task-number: QTBUG-7471
* Ignore mouse events when !interactive.Martin Jones2010-01-271-0/+7
|
* Don't react to mouse when !interactive. Allow fixup delay to be adjusted.Martin Jones2010-01-272-14/+25
|
* Speed up QmlGraphicsItem construction.Bjørn Erik Nilsen2010-01-211-4/+6
| | | | | | | | | It's much faster to just initalize the flags in the constructor of QmlGraphicsItemPrivate than doing a full blown QGraphicsItem::setFlags. We can perfectly do this because QmlGraphicsItem does not listen to any itemChange events related to those flags. Reviewed-by: Aaron Kennedy
* CrashAaron Kennedy2010-01-201-1/+1
|
* Make QmlGraphicsAnchors a NOCREATE type.Michael Brasser2010-01-191-1/+1
| | | | Prevents the creation benchmark from qFataling.
* Try again to make it compile on Symbian.Martin Jones2010-01-191-11/+23
|
* Doc.Martin Jones2010-01-181-1/+3
|
* Compile on Symbian.Martin Jones2010-01-181-11/+11
|
* Fix clipping without text cache.Martin Jones2010-01-151-0/+9
|