1QImageConsumer(3qt) QImageConsumer(3qt)
2
3
4
6 QImageConsumer - Abstraction used by QImageDecoder
7
9 #include <qasyncimageio.h>
10
11 Public Members
12 virtual void end () = 0
13 virtual void changed ( const QRect & ) = 0
14 virtual void frameDone () = 0
15 virtual void frameDone ( const QPoint & offset, const QRect & rect ) =
16 0
17 virtual void setLooping ( int n ) = 0
18 virtual void setFramePeriod ( int milliseconds ) = 0
19 virtual void setSize ( int, int ) = 0
20
22 The QImageConsumer class is an abstraction used by QImageDecoder.
23
24 The QMovie class, or QLabel::setMovie(), are easy to use and for most
25 situations do what you want with regards animated images.
26
27 A QImageConsumer consumes information about changes to the QImage
28 maintained by a QImageDecoder. Think of the QImage as the model or
29 source of the image data, with the QImageConsumer as a view of that
30 data and the QImageDecoder being the controller that orchestrates the
31 relationship between the model and the view.
32
33 You'd use the QImageConsumer class, for example, if you were
34 implementing a web browser with your own image loaders.
35
36 See also QImageDecoder, Graphics Classes, Image Processing Classes, and
37 Multimedia Classes.
38
41 Called when the given area of the image has changed.
42
44 Called when all the data from all the frames has been decoded and
45 revealed as changed().
46
48 One of the two frameDone() functions will be called when a frame of an
49 animated image has ended and been revealed as changed().
50
51 When this function is called, the current image should be displayed.
52
53 The decoder will not make any further changes to the image until the
54 next call to QImageFormat::decode().
55
57 [pure virtual]
58 This is an overloaded member function, provided for convenience. It
59 behaves essentially like the above function.
60
61 One of the two frameDone() functions will be called when a frame of an
62 animated image has ended and been revealed as changed().
63
64 When this function is called, the area rect in the current image should
65 be moved by offset and displayed.
66
67 The decoder will not make any further changes to the image until the
68 next call to QImageFormat::decode().
69
71 Notes that the frame about to be decoded should not be displayed until
72 the given number of milliseconds after the time that this function is
73 called. Of course, the image may not have been decoded by then, in
74 which case the frame should not be displayed until it is complete. A
75 value of -1 (the assumed default) indicates that the image should be
76 displayed even while it is only partially loaded.
77
79 Called to indicate that the sequence of frames in the image should be
80 repeated n times, including the sequence during decoding.
81
82 0 = Forever
83
84 1 = Only display frames the first time through
85
86 2 = Repeat once after first pass through images
87
88 etc.
89
90 To make the QImageDecoder do this, just delete it and pass the
91 information to it again for decoding (setLooping() will be called
92 again, of course, but that can be ignored), or keep copies of the
93 changed areas at the ends of frames.
94
96 This function is called as soon as the size of the image has been
97 determined.
98
99
101 http://doc.trolltech.com/qimageconsumer.html
102 http://www.trolltech.com/faq/tech.html
103
105 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
106 license file included in the distribution for a complete license
107 statement.
108
110 Generated automatically from the source code.
111
113 If you find a bug in Qt, please report it as described in
114 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
115 help you. Thank you.
116
117 The definitive Qt documentation is provided in HTML format; it is
118 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
119 web browser. This man page is provided as a convenience for those users
120 who prefer man pages, although this format is not officially supported
121 by Trolltech.
122
123 If you find errors in this manual page, please report them to qt-
124 bugs@trolltech.com. Please include the name of the manual page
125 (qimageconsumer.3qt) and the Qt version (3.3.8).
126
127
128
129Trolltech AS 2 February 2007 QImageConsumer(3qt)