summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeborderimage.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers to release version.Jason McDonald2010-10-181-13/+13
|
* Merge branch '4.7' into qmldocsDavid Boddie2010-09-011-6/+0
|\ | | | | | | | | | | Conflicts: src/declarative/graphicsitems/qdeclarativetext.cpp src/declarative/graphicsitems/qdeclarativetextedit.cpp
| * Remove pointless \internal docs (that contain no information)Aaron Kennedy2010-08-271-6/+0
| |
* | Doc: More work on the QML documentation.David Boddie2010-08-271-7/+14
| |
* | Doc: Started to improve QML reference documentation.David Boddie2010-08-231-16/+92
|/
* qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-0/+1
| | | | ...and a set of functional group pages.
* fixes, improvements for various docs and example codeBea Lam2010-07-161-0/+2
|
* Make declarative pixmap cache easier to useAaron Kennedy2010-07-051-65/+35
| | | | | | | | | | | | | | | | | 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
* BorderImage is not updated when border values changeYann Bodson2010-06-171-0/+5
| | | | | Task-number: QTBUG-11509 Reviewed-by: Michael Brasser
* Minor doc fixesBea Lam2010-06-111-1/+1
|
* Move copies of toLocalFileOrQrc() to QDeclarativeEnginePrivateBea Lam2010-05-241-12/+2
|
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-2/+2
| | | | | | 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).
* docWarwick Allison2010-05-051-7/+7
| | | | Task-number: QTBUG-10386
* Improve border image documentation.Yann Bodson2010-04-281-11/+23
|
* Documentation fixes.Yann Bodson2010-04-191-5/+5
|
* Doc: in QML use "real" and "enumeration", not "qreal" and "enum"Martin Jones2010-04-161-1/+1
|
* Use qmlInfo for image loading errors, not qWarning().Warwick Allison2010-04-151-6/+20
| | | | Task-number: QTBUG-9908
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Control of image rendered size (esp. SVG).Warwick Allison2010-03-261-10/+13
| | | | | | | Add Translate transform. Image::sourceWidth and Image::sourceHeight read/write properties. Task-number: QTBUG-8984
* Build Fix and port to new width and height propertiesAlexis Menard2010-03-251-1/+1
| | | | Reviewed-by:Martin Jones
* URL redirects for border image.Warwick Allison2010-03-101-1/+15
| | | | Task-number: QTBUG-7515
* Add an "asynchonous" property to Image.Martin Jones2010-02-241-14/+46
| | | | | Allows loading/decoding local images in an asynchronous thread (already the case for network images).
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+408
QDeclarativeXXX.