2010-09-08 13:40:39 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-09-08 13:40:39 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_imagelib_VectorImage_h_
|
|
|
|
#define mozilla_imagelib_VectorImage_h_
|
|
|
|
|
|
|
|
#include "Image.h"
|
|
|
|
#include "nsIStreamListener.h"
|
2013-06-23 05:03:39 -07:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2013-09-07 06:01:08 -07:00
|
|
|
class nsIRequest;
|
2013-10-22 04:38:08 -07:00
|
|
|
class gfxDrawable;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2011-11-08 19:14:41 -08:00
|
|
|
namespace layers {
|
|
|
|
class LayerManager;
|
|
|
|
class ImageContainer;
|
|
|
|
}
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2013-10-22 04:38:08 -07:00
|
|
|
struct SVGDrawingParameters;
|
|
|
|
class SVGDocumentWrapper;
|
|
|
|
class SVGRootRenderingObserver;
|
|
|
|
class SVGLoadEventListener;
|
|
|
|
class SVGParseCompleteListener;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2012-12-19 14:24:32 -08:00
|
|
|
class VectorImage : public ImageResource,
|
2010-09-08 13:40:39 -07:00
|
|
|
public nsIStreamListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
2012-10-19 13:27:11 -07:00
|
|
|
NS_DECL_IMGICONTAINER
|
2010-11-17 12:37:08 -08:00
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
// (no public constructor - use ImageFactory)
|
2010-09-08 13:40:39 -07:00
|
|
|
virtual ~VectorImage();
|
|
|
|
|
|
|
|
// Methods inherited from Image
|
2013-02-12 19:00:03 -08:00
|
|
|
nsresult Init(const char* aMimeType,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags);
|
2013-02-04 16:06:14 -08:00
|
|
|
virtual nsIntRect FrameRect(uint32_t aWhichFrame) MOZ_OVERRIDE;
|
2011-07-18 06:20:27 -07:00
|
|
|
|
2013-06-23 05:03:39 -07:00
|
|
|
virtual size_t HeapSizeOfSourceWithComputedFallback(mozilla::MallocSizeOf aMallocSizeOf) const;
|
|
|
|
virtual size_t HeapSizeOfDecodedWithComputedFallback(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2012-02-19 19:51:48 -08:00
|
|
|
virtual size_t NonHeapSizeOfDecoded() const;
|
|
|
|
virtual size_t OutOfProcessSizeOfDecoded() const;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
virtual nsresult OnImageDataAvailable(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
|
|
|
nsIInputStream* aInStr,
|
|
|
|
uint64_t aSourceOffset,
|
|
|
|
uint32_t aCount) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult OnImageDataComplete(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
2013-02-13 18:41:10 -08:00
|
|
|
nsresult aResult,
|
|
|
|
bool aLastPart) MOZ_OVERRIDE;
|
2012-12-17 14:05:18 -08:00
|
|
|
virtual nsresult OnNewSourceData() MOZ_OVERRIDE;
|
|
|
|
|
2013-09-04 03:39:30 -07:00
|
|
|
/**
|
|
|
|
* Callback for SVGRootRenderingObserver.
|
|
|
|
*
|
|
|
|
* This just sets a dirty flag that we check in VectorImage::RequestRefresh,
|
|
|
|
* which is called under the ticks of the refresh driver of any observing
|
|
|
|
* documents that we may have. Only then (after all animations in this image
|
|
|
|
* have been updated) do we send out "frame changed" notifications,
|
|
|
|
*/
|
|
|
|
void InvalidateObserversOnNextRefreshDriverTick();
|
2010-09-08 13:40:40 -07:00
|
|
|
|
2013-02-13 18:04:08 -08:00
|
|
|
// Callback for SVGParseCompleteListener.
|
|
|
|
void OnSVGDocumentParsed();
|
|
|
|
|
|
|
|
// Callbacks for SVGLoadEventListener.
|
|
|
|
void OnSVGDocumentLoaded();
|
|
|
|
void OnSVGDocumentError();
|
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
protected:
|
2013-09-28 11:28:42 -07:00
|
|
|
VectorImage(imgStatusTracker* aStatusTracker = nullptr,
|
|
|
|
ImageURL* aURI = nullptr);
|
2012-12-17 14:05:18 -08:00
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
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
|
|
|
|
2013-10-22 04:38:08 -07:00
|
|
|
void CreateDrawableAndShow(const SVGDrawingParameters& aParams);
|
|
|
|
void Show(gfxDrawable* aDrawable, const SVGDrawingParameters& aParams);
|
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
private:
|
2013-02-13 18:04:08 -08:00
|
|
|
void CancelAllListeners();
|
2013-11-20 17:21:50 -08:00
|
|
|
void SendInvalidationNotifications();
|
2013-02-13 18:04:08 -08:00
|
|
|
|
2010-09-08 13:40:39 -07:00
|
|
|
nsRefPtr<SVGDocumentWrapper> mSVGDocumentWrapper;
|
2010-09-08 13:40:40 -07:00
|
|
|
nsRefPtr<SVGRootRenderingObserver> mRenderingObserver;
|
2013-02-13 18:04:08 -08:00
|
|
|
nsRefPtr<SVGLoadEventListener> mLoadEventListener;
|
|
|
|
nsRefPtr<SVGParseCompleteListener> mParseCompleteListener;
|
2010-09-08 13:40:39 -07:00
|
|
|
|
2013-02-28 22:44:57 -08:00
|
|
|
bool mIsInitialized; // Have we been initalized?
|
|
|
|
bool mIsFullyLoaded; // Has the SVG document finished loading?
|
|
|
|
bool mIsDrawing; // Are we currently drawing?
|
|
|
|
bool mHaveAnimations; // Is our SVG content SMIL-animated?
|
2010-09-08 13:40:39 -07:00
|
|
|
// (Only set after mIsFullyLoaded.)
|
2013-09-04 03:39:30 -07:00
|
|
|
bool mHasPendingInvalidation; // Invalidate observers next refresh
|
|
|
|
// driver tick.
|
2012-12-17 14:05:18 -08:00
|
|
|
|
2013-09-28 11:28:44 -07:00
|
|
|
// Initializes imgStatusTracker and resets it on RasterImage destruction.
|
|
|
|
nsAutoPtr<imgStatusTrackerInit> mStatusTrackerInit;
|
|
|
|
|
2012-12-17 14:05:18 -08:00
|
|
|
friend class ImageFactory;
|
2010-09-08 13:40:39 -07:00
|
|
|
};
|
|
|
|
|
2012-10-19 13:27:11 -07:00
|
|
|
inline NS_IMETHODIMP VectorImage::GetAnimationMode(uint16_t *aAnimationMode) {
|
|
|
|
return GetAnimationModeInternal(aAnimationMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline NS_IMETHODIMP VectorImage::SetAnimationMode(uint16_t aAnimationMode) {
|
|
|
|
return SetAnimationModeInternal(aAnimationMode);
|
|
|
|
}
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-09-08 13:40:39 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_imagelib_VectorImage_h_
|