2010-09-08 13:40:39 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* the Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Daniel Holbert <dholbert@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef mozilla_imagelib_VectorImage_h_
|
|
|
|
#define mozilla_imagelib_VectorImage_h_
|
|
|
|
|
|
|
|
#include "Image.h"
|
|
|
|
#include "nsIStreamListener.h"
|
2010-09-08 13:40:39 -07:00
|
|
|
#include "nsWeakReference.h"
|
|
|
|
|
|
|
|
class imgIDecoderObserver;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2011-11-08 19:14:41 -08:00
|
|
|
namespace layers {
|
|
|
|
class LayerManager;
|
|
|
|
class ImageContainer;
|
|
|
|
}
|
2010-09-08 13:40:39 -07:00
|
|
|
namespace imagelib {
|
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
class SVGDocumentWrapper;
|
2010-09-08 13:40:40 -07:00
|
|
|
class SVGRootRenderingObserver;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
class VectorImage : public Image,
|
|
|
|
public nsIStreamListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
|
|
|
|
2010-11-17 12:39:23 -08:00
|
|
|
// BEGIN NS_DECL_IMGICONTAINER (minus GetAnimationMode/SetAnimationMode)
|
2010-11-17 12:37:08 -08:00
|
|
|
// ** Don't edit this chunk except to mirror changes in imgIContainer.idl **
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetWidth(PRInt32 *aWidth);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetHeight(PRInt32 *aHeight);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetType(PRUint16 *aType);
|
2010-12-07 10:40:28 -08:00
|
|
|
NS_IMETHOD_(PRUint16) GetType(void);
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetAnimated(bool *aAnimated);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD GetCurrentFrameIsOpaque(bool *aCurrentFrameIsOpaque);
|
2010-11-17 12:37:08 -08:00
|
|
|
NS_IMETHOD GetFrame(PRUint32 aWhichFrame, PRUint32 aFlags, gfxASurface **_retval NS_OUTPARAM);
|
2011-11-08 19:14:41 -08:00
|
|
|
NS_IMETHOD GetImageContainer(mozilla::layers::LayerManager* aManager, mozilla::layers::ImageContainer **_retval NS_OUTPARAM) { *_retval = NULL; return NS_OK; }
|
2010-11-17 12:37:08 -08:00
|
|
|
NS_IMETHOD CopyFrame(PRUint32 aWhichFrame, PRUint32 aFlags, gfxImageSurface **_retval NS_OUTPARAM);
|
|
|
|
NS_IMETHOD ExtractFrame(PRUint32 aWhichFrame, const nsIntRect & aRect, PRUint32 aFlags, imgIContainer **_retval NS_OUTPARAM);
|
|
|
|
NS_IMETHOD Draw(gfxContext *aContext, gfxPattern::GraphicsFilter aFilter, const gfxMatrix & aUserSpaceToImageSpace, const gfxRect & aFill, const nsIntRect & aSubimage, const nsIntSize & aViewportSize, PRUint32 aFlags);
|
|
|
|
NS_IMETHOD_(nsIFrame *) GetRootLayoutFrame(void);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD RequestDecode(void);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD LockImage(void);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD UnlockImage(void);
|
|
|
|
NS_SCRIPTABLE NS_IMETHOD ResetAnimation(void);
|
|
|
|
// END NS_DECL_IMGICONTAINER
|
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
VectorImage(imgStatusTracker* aStatusTracker = nsnull);
|
|
|
|
virtual ~VectorImage();
|
|
|
|
|
|
|
|
// Methods inherited from Image
|
|
|
|
nsresult Init(imgIDecoderObserver* aObserver,
|
|
|
|
const char* aMimeType,
|
2010-09-12 08:22:26 -07:00
|
|
|
const char* aURIString,
|
2010-09-08 13:40:39 -07:00
|
|
|
PRUint32 aFlags);
|
|
|
|
void GetCurrentFrameRect(nsIntRect& aRect);
|
2011-07-18 06:20:27 -07:00
|
|
|
|
|
|
|
virtual PRUint32 GetDecodedHeapSize();
|
|
|
|
virtual PRUint32 GetDecodedNonheapSize();
|
|
|
|
virtual PRUint32 GetDecodedOutOfProcessSize();
|
|
|
|
virtual PRUint32 GetSourceHeapSize();
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2010-09-08 13:40:40 -07:00
|
|
|
// Callback for SVGRootRenderingObserver
|
|
|
|
void InvalidateObserver();
|
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
protected:
|
|
|
|
virtual nsresult StartAnimation();
|
|
|
|
virtual nsresult StopAnimation();
|
2011-08-05 06:57:16 -07:00
|
|
|
virtual bool ShouldAnimate();
|
2010-09-08 13:40:39 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsWeakPtr mObserver; //! imgIDecoderObserver
|
|
|
|
nsRefPtr<SVGDocumentWrapper> mSVGDocumentWrapper;
|
2010-09-08 13:40:40 -07:00
|
|
|
nsRefPtr<SVGRootRenderingObserver> mRenderingObserver;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
|
|
|
nsIntRect mRestrictedRegion; // If we were created by
|
|
|
|
// ExtractFrame, this is the region
|
|
|
|
// that we're restricted to using.
|
|
|
|
// Otherwise, this is ignored.
|
|
|
|
|
|
|
|
nsIntSize mLastRenderedSize; // The viewport-size that we've
|
|
|
|
// most recently passed to
|
|
|
|
// mSVGDocumentWrapper as its
|
|
|
|
// viewport-bounds.
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsInitialized:1; // Have we been initalized?
|
|
|
|
bool mIsFullyLoaded:1; // Has OnStopRequest been called?
|
|
|
|
bool mIsDrawing:1; // Are we currently drawing?
|
|
|
|
bool mHaveAnimations:1; // Is our SVG content SMIL-animated?
|
2010-09-08 13:40:39 -07:00
|
|
|
// (Only set after mIsFullyLoaded.)
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHaveRestrictedRegion:1; // Are we a restricted-region clone
|
2010-09-08 13:40:39 -07:00
|
|
|
// created via ExtractFrame?
|
2010-09-08 13:40:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace imagelib
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_imagelib_VectorImage_h_
|