Changeset 437 for trunk/BAL/WKAL/Skeletons/Graphics/SVGImage.t
- Timestamp:
- 08/15/08 13:25:16 (5 months ago)
- Files:
-
- trunk/BAL/WKAL/Skeletons/Graphics/SVGImage.t (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BAL/WKAL/Skeletons/Graphics/SVGImage.t
r323 r437 54 54 class SVGImage : public WKALBase, public Image { 55 55 public: 56 56 57 /** 57 * SVGImage constructor 58 * @param[in] : image observer 59 * @code 60 * SVGImage *i = new SVGImage(io); 61 * @endcode 58 * create SVG Image 62 59 */ 63 SVGImage(ImageObserver*);60 static PassRefPtr<SVGImage> create(ImageObserver* observer) 64 61 65 62 /** … … 126 123 virtual bool dataChanged(bool allDataReceived); 127 124 125 126 /** 127 * destroyDecodedData 128 */ 129 virtual void destroyDecodedData(bool incremental = false) ; 130 131 132 /** 133 * get decodedSize 134 */ 135 virtual unsigned decodedSize() const ; 136 128 137 /** 129 138 * get frame at index … … 135 144 */ 136 145 virtual NativeImagePtr frameAtIndex(size_t) ; 137 138 private: 146 139 147 /** 140 * draw 148 * draw 141 149 */ 142 150 virtual void draw(GraphicsContext*, const FloatRect& fromRect, const FloatRect& toRect, CompositeOperator); 151 152 /** 153 * get nativeImageForCurrentFrame 154 */ 155 virtual NativeImagePtr nativeImageForCurrentFrame(); 156 157 158 159 privat 143 160 144 161 /** … … 158 175 #endif // ENABLE(SVG) 159 176 160 #endif 161 162 163 164 177 #end
