summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeimage.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove pointless \internal docs (that contain no information)Aaron Kennedy2010-08-271-13/+0
|
* typoYann Bodson2010-08-251-1/+1
|
* qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-0/+2
| | | | ...and a set of functional group pages.
* Doc error fixes.Martin Jones2010-07-191-1/+1
|
* improvements to docs and examplesBea Lam2010-07-141-33/+26
|
* Remove Image::pixmap property. QML applications should useBea Lam2010-07-081-10/+0
| | | | | | QDeclarativeImageProvider to provide pixmaps instead. Task-number: QTBUG-11980
* docsBea Lam2010-07-071-12/+14
|
* Make declarative pixmap cache easier to useAaron Kennedy2010-07-051-2/+2
| | | | | | | | | | | | | | | | | 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
* DocsBea Lam2010-06-281-0/+5
|
* Minor doc fixesBea Lam2010-06-111-1/+1
|
* Doc improvements, including snippet fixes, linking to examples, makingBea Lam2010-06-111-0/+2
| | | | docs more consistent
* Doc fixes and improvements - fix some example code, link toBea Lam2010-06-021-5/+0
| | | | examples from class docs and improve assorted docs
* Doc improvementsBea Lam2010-05-191-12/+23
|
* Doc fixBea Lam2010-05-161-0/+1
|
* Improve Image docs. Move all fillMode image examples to fillModeBea Lam2010-05-121-84/+109
| | | | property docs and remove the animated gif.
* docWarwick Allison2010-05-051-10/+10
| | | | Task-number: QTBUG-10386
* Remove obsolete doc groupings.Michael Brasser2010-05-041-2/+0
|
* Doc: some simple examples of sourceSize usage.Martin Jones2010-04-291-0/+26
| | | | Task-number: QTBUG-10252
* Doc: overview for ImageMartin Jones2010-04-281-1/+21
|
* Doc fixesBea Lam2010-04-281-1/+1
|
* Documentation fixes.Yann Bodson2010-04-191-3/+6
|
* QDeclarativeImage should stretch in one direction when tiling in the other.Yann Bodson2010-04-191-5/+20
| | | | | Task-number: QTBUG-6716 Reviewed-by: Michael Brasser
* Doc: in QML use "real" and "enumeration", not "qreal" and "enum"Martin Jones2010-04-161-1/+1
|
* Image with PreserveAspect enabled with either width or height defined should ↵Joona Petrell2010-04-141-0/+6
| | | | | | | implicitly update the undefined axis to follow the aspect ratio Task-number: Reviewed-by: Martin Jones
* 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.
* docWarwick Allison2010-03-311-0/+4
|
* sourceWidth/sourceHeight -> sourceSizeWarwick Allison2010-03-261-11/+10
|
* Control of image rendered size (esp. SVG).Warwick Allison2010-03-261-0/+26
| | | | | | | Add Translate transform. Image::sourceWidth and Image::sourceHeight read/write properties. Task-number: QTBUG-8984
* Move pixmapChanged signal to QDeclarativeImageYann Bodson2010-03-091-1/+1
| | | | Task-number: QTBUG-6334
* Optimize Rectangle, Image, and Text creation.Michael Brasser2010-03-081-2/+7
|
* Expand documention of status property with examplesAlan Alpert2010-03-011-0/+10
| | | | Task-number: QTBUG-8542
* update painted geometry on pixmapChanged rather than sourceChangedYann Bodson2010-02-261-9/+3
|
* Add an "asynchonous" property to Image.Martin Jones2010-02-241-0/+15
| | | | | 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/+368
QDeclarativeXXX.