summaryrefslogtreecommitdiffstats
path: root/src/declarative/util
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Bea Lam2010-07-063-475/+731
|\ | | | | | | | | Conflicts: doc/src/declarative/extending.qdoc
| * Export QDeclarativePixmapMartin Jones2010-07-061-1/+1
| | | | | | | | But its still a private class.
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-07-0516-21/+21
| |\
| | * <br/> shouldn't trigger a new format range in QDeclarativeStyledText.Michael Brasser2010-07-051-1/+3
| | |
| | * Optimize QDeclarativeStyledText.Michael Brasser2010-07-051-2/+0
| | | | | | | | | | | | | | | Don't set the base font, as this is an expensive operation. The base font will automatically be merged in by the text engine.
| * | Make declarative pixmap cache easier to useAaron Kennedy2010-07-052-472/+728
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | doc improvementsBea Lam2010-07-063-26/+27
| |/ |/|
* | fix doc linksBea Lam2010-07-022-2/+2
| |
* | Remove a few more unnecessary exports.Martin Jones2010-07-011-3/+3
| |
* | Don't export declarative private classesMartin Jones2010-07-0112-13/+13
|/ | | | | Those required by creator are still exported. Everything else is no longer exported.
* Docs - add more links to relevant examplesBea Lam2010-06-305-3/+7
| | | | Task-number: QTBUG-11754
* Plug QdeclarativePixmapCache canceled request leak.Martin Jones2010-06-301-27/+29
| | | | Task-number: QTBUG-11827
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-06-251-0/+3
|\
| * Allow custom parsers to handle attached propertiesAaron Kennedy2010-06-251-0/+3
| | | | | | | | QTBUG-11283
* | Test ListElement type via type system, not string comparison.Warwick Allison2010-06-252-3/+10
|/ | | | | Task-number: QTBUG-11222 Reviewed-by: Aaron Kennedy
* Prevent value source animations from being registered to start twice.Michael Brasser2010-06-241-0/+2
| | | | | If the animation had an explicit "running: true", the animation would be registered with the engine twice, which prevented a proper start.
* Ensure sourcesize is in pixmap cache key.Warwick Allison2010-06-241-0/+6
| | | | Task-number: QTBUG-11645
* Merge remote branch 'origin/4.7' into qml-4.7Rohan McGovern2010-06-221-1/+1
|\ | | | | | | | | Conflicts: examples/declarative/modelviews/webview/transparent.qml
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-06-211-1/+1
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (26 commits) Fix incorrect usage of _HB_OPEN_Free_Device() in CaretValue cleanup Fix null HB_Device** dereference on exit in Harfbuzz GPOS code Doc: Relicensed the documentation under the GNU FDL version 1.3. doc: Added more DITA output to the XML generator Designer: Prevent QButtonGroup from being added for Q3ButtonGroup. Fix for a leak in the mac style. Doc: Fixing bugs to style and script doc: Added more DITA output to the XML generator Make sure that <br/> is seen as a valid tag in Qt::mightBeRichText() Fix compiler warnings in QtGui (text,painting). Allow Unix to generate unique UUIDs if /dev/urandom exists. Allow GNU Free Documentation license header. Add missing license header. Updated Harfbuzz from git+ssh://git.freedesktop.org/git/harfbuzz to ab9a897b688e991a8405cf938dea9d6a2f1ac072 Fix example compile and runtime warnings, webkit examples not built. qgl_cl_p.h is no longer existent Updated Harfbuzz from git+ssh://git.freedesktop.org/git/harfbuzz to 5699175f55acbdfa4ac95ab6c727ebd4a201f3a2 Doc: Fixed documentation errors. doc: Added more DITA output to the XML generator doc: Fixed type of Package::name ...
| | * doc: Fixed type of Package::nameThorbjørn Lindeijer2010-06-181-1/+1
| | | | | | | | | | | | Reviewed-by: Alan Alpert
* | | Allow QT_TR_NOOP (as a no-op) in ListModel values.Warwick Allison2010-06-221-4/+9
|/ / | | | | | | Task-number: QTBUG-11403
* | Doc fixesBea Lam2010-06-181-17/+7
| |
* | XmlListModel: Don't lock while doing the slow bit.Martin Jones2010-06-171-30/+41
|/
* Minor doc fixesBea Lam2010-06-111-1/+1
|
* Doc improvements, including snippet fixes, linking to examples, makingBea Lam2010-06-112-23/+40
| | | | docs more consistent
* Remove 'XXX Experimental' from VisualItemModel/VisualDataModel andBea Lam2010-06-101-6/+0
| | | | Package
* Document attached propertiesBea Lam2010-06-101-1/+6
|
* Doc improvements: move some example code to snippets, add screenshots,Bea Lam2010-06-097-138/+71
| | | | other minor doc fixes
* Move some example code into snippets/ and add other doc fixesBea Lam2010-06-094-31/+45
|
* Fix drawing flicker on Qml Viewer startupJoona Petrell2010-06-092-4/+17
| | | | | Task-number: QTBUG-10251 and QTBUG-11156 Reviewed-by: Martin Jones
* Ensure state operations assigned to the default state are triggeredMichael Brasser2010-06-074-3/+12
| | | | | | when returning to that state. Task-number: QTBUG-11228
* Move QListModelInterface into util.Michael Brasser2010-06-043-2/+198
| | | | Get rid of src/declarative/3rdparty.
* Add more Q_AUTOTEST_EXPORTsAaron Kennedy2010-06-033-46/+49
|
* Add Q_AUTOTEST_EXPORTAaron Kennedy2010-06-031-1/+1
|
* Add some Q_AUTOTEST_EXPORTsAaron Kennedy2010-06-034-7/+7
|
* Doc fixes and improvements - fix some example code, link toBea Lam2010-06-025-25/+56
| | | | examples from class docs and improve assorted docs
* Documentation.Michael Brasser2010-06-011-1/+16
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-05-312-0/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: (21 commits) Doc: Fixed an off-by-one error in an example. Fix QT_NO_TEXTHTMLPARSER Fix QT_NO_DOM Fix QT_NO_TEXTSTREAM compilation errors. Fix QT_NO_VALIDATOR compilation. Doc: Removed a misleading sentence about a class constructor. Doc: correcting docs in QDrag::exec Doc: Adding note about QDrag::exec() Revert behavior of QTextLayout::boundingRect() when line width is set Fix unreasonably large width of QTextLayout::boundingRect() Doc: replacing old image Fix compilation with stricts compilers. Fix QT_NO_DIRMODEL build error in QtDeclarative. Revert "Added native key support to QSharedMemory API." Revert "Improved documentation for QSharedMemory's key/setKey functions." Fix a simple mistake in QXmlStreamReader::atEnd() docs. Improved documentation for QSharedMemory's key/setKey functions. Added native key support to QSharedMemory API. Make test work with shadow builds again. Doc: Corrected the documentation about the compression threshold. ...
| * Fix QT_NO_TEXTSTREAM compilation errors.Tasuku Suzuki2010-05-312-0/+4
| | | | | | | | | | Merge-request: 647 Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
* | Rename QDeclarativeDebugTiming -> QDeclarativeDebugTraceAaron Kennedy2010-05-271-9/+9
|/
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-05-271-10/+23
|\
| * Add more examples of XPath expressions to XmlRole.Bea Lam2010-05-261-10/+23
| | | | | | | | Task-number: QTBUG-10852
* | Improve QML framerate debuggingAaron Kennedy2010-05-271-47/+51
|/
* Replace QTime with QElapsedTimerAaron Kennedy2010-05-261-2/+2
|
* DocAaron Kennedy2010-05-251-2/+2
|
* Move copies of toLocalFileOrQrc() to QDeclarativeEnginePrivateBea Lam2010-05-242-20/+4
|
* docWarwick Allison2010-05-211-2/+2
|
* Also show file/line numbers on XML query errors.Warwick Allison2010-05-212-1/+20
| | | | | | Task-number: QTBUG-10797 Reviewed-by: Bea Lam
* Print warnings for xml query syntax errorsBea Lam2010-05-211-7/+10
| | | | Task-number: QTBUG-10797
* Clean upBea Lam2010-05-211-47/+37
|