2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org>
4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public License
18 along with this library; see the file COPYING.LIB. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
26 #include "CachedResource.h"
27 #include "ImageObserver.h"
31 #include <wtf/Vector.h>
38 class CachedImage
: public CachedResource
, public ImageObserver
{
42 CachedImage(const String
& url
);
44 virtual ~CachedImage();
46 virtual void load(DocLoader
* docLoader
);
50 bool canRender(float multiplier
) const { return !errorOccurred() && !imageSize(multiplier
).isEmpty(); }
52 // These are only used for SVGImage right now
53 void setImageContainerSize(const IntSize
&);
54 bool usesImageContainerSize() const;
55 bool imageHasRelativeWidth() const;
56 bool imageHasRelativeHeight() const;
58 // Both of these methods take a zoom multiplier that can be used to increase the natural size of the image by the
60 IntSize
imageSize(float multiplier
) const; // returns the size of the complete image.
61 IntRect
imageRect(float multiplier
) const; // The size of the currently decoded portion of the image.
63 virtual void addClient(CachedResourceClient
*);
65 virtual void allClientsRemoved();
66 virtual void destroyDecodedData();
68 virtual void data(PassRefPtr
<SharedBuffer
> data
, bool allDataReceived
);
71 virtual bool schedule() const { return true; }
75 virtual bool isImage() const { return true; }
79 bool stillNeedsLoad() const { return !m_errorOccurred
&& m_status
== Unknown
&& m_loading
== false; }
83 virtual void decodedSizeChanged(const Image
* image
, int delta
);
84 virtual void didDraw(const Image
*);
86 virtual bool shouldPauseAnimation(const Image
*);
87 virtual void animationAdvanced(const Image
*);
88 virtual void changedInRect(const Image
*, const IntRect
&);
90 virtual bool shouldDecodeFrame(const Image
* image
, const IntSize
& frameSize
);
94 size_t maximumDecodedImageSize();
95 // If not null, changeRect is the changed part of the image.
96 void notifyObservers(const IntRect
* changeRect
= 0);
97 void decodedDataDeletionTimerFired(Timer
<CachedImage
>*);
99 RefPtr
<Image
> m_image
;
100 Timer
<CachedImage
> m_decodedDataDeletionTimer
;
103 unsigned animatedImageSize();
104 void stopAnimatedImage();
107 bool checkOutOfMemory();