diff -r 000000000000 -r 6474c204b198 content/html/document/src/ImageDocument.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/content/html/document/src/ImageDocument.h Wed Dec 31 06:09:35 2014 +0100
@@ -0,0 +1,135 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* 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/. */
+#ifndef mozilla_dom_ImageDocument_h
+#define mozilla_dom_ImageDocument_h
+
+#include "mozilla/Attributes.h"
+#include "imgINotificationObserver.h"
+#include "MediaDocument.h"
+#include "nsIDOMEventListener.h"
+#include "nsIImageDocument.h"
+
+namespace mozilla {
+namespace dom {
+
+class ImageDocument MOZ_FINAL : public MediaDocument,
+ public nsIImageDocument,
+ public imgINotificationObserver,
+ public nsIDOMEventListener
+{
+public:
+ ImageDocument();
+ virtual ~ImageDocument();
+
+ NS_DECL_ISUPPORTS_INHERITED
+
+ virtual nsresult Init() MOZ_OVERRIDE;
+
+ virtual nsresult StartDocumentLoad(const char* aCommand,
+ nsIChannel* aChannel,
+ nsILoadGroup* aLoadGroup,
+ nsISupports* aContainer,
+ nsIStreamListener** aDocListener,
+ bool aReset = true,
+ nsIContentSink* aSink = nullptr) MOZ_OVERRIDE;
+
+ virtual void SetScriptGlobalObject(nsIScriptGlobalObject* aScriptGlobalObject) MOZ_OVERRIDE;
+ virtual void Destroy() MOZ_OVERRIDE;
+ virtual void OnPageShow(bool aPersisted,
+ EventTarget* aDispatchStartTarget) MOZ_OVERRIDE;
+
+ NS_DECL_NSIIMAGEDOCUMENT
+ NS_DECL_IMGINOTIFICATIONOBSERVER
+
+ // nsIDOMEventListener
+ NS_IMETHOD HandleEvent(nsIDOMEvent* aEvent) MOZ_OVERRIDE;
+
+ NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ImageDocument, MediaDocument)
+
+ friend class ImageListener;
+
+ void DefaultCheckOverflowing() { CheckOverflowing(mResizeImageByDefault); }
+
+ // WebIDL API
+ virtual JSObject* WrapNode(JSContext* aCx)
+ MOZ_OVERRIDE;
+
+ bool ImageResizingEnabled() const
+ {
+ return true;
+ }
+ bool ImageIsOverflowing() const
+ {
+ return mImageIsOverflowing;
+ }
+ bool ImageIsResized() const
+ {
+ return mImageIsResized;
+ }
+ already_AddRefed GetImageRequest(ErrorResult& aRv);
+ void ShrinkToFit();
+ void RestoreImage();
+ void RestoreImageTo(int32_t aX, int32_t aY)
+ {
+ ScrollImageTo(aX, aY, true);
+ }
+ void ToggleImageSize();
+
+protected:
+ virtual nsresult CreateSyntheticDocument();
+
+ nsresult CheckOverflowing(bool changeState);
+
+ void UpdateTitleAndCharset();
+
+ void ScrollImageTo(int32_t aX, int32_t aY, bool restoreImage);
+
+ float GetRatio() {
+ return std::min(mVisibleWidth / mImageWidth,
+ mVisibleHeight / mImageHeight);
+ }
+
+ void ResetZoomLevel();
+ float GetZoomLevel();
+
+ void UpdateSizeFromLayout();
+
+ enum eModeClasses {
+ eNone,
+ eShrinkToFit,
+ eOverflowing
+ };
+ void SetModeClass(eModeClasses mode);
+
+ nsresult OnStartContainer(imgIRequest* aRequest, imgIContainer* aImage);
+ nsresult OnStopRequest(imgIRequest *aRequest, nsresult aStatus);
+
+ nsCOMPtr mImageContent;
+
+ float mVisibleWidth;
+ float mVisibleHeight;
+ int32_t mImageWidth;
+ int32_t mImageHeight;
+
+ bool mResizeImageByDefault;
+ bool mClickResizingEnabled;
+ bool mImageIsOverflowing;
+ // mImageIsResized is true if the image is currently resized
+ bool mImageIsResized;
+ // mShouldResize is true if the image should be resized when it doesn't fit
+ // mImageIsResized cannot be true when this is false, but mImageIsResized
+ // can be false when this is true
+ bool mShouldResize;
+ bool mFirstResize;
+ // mObservingImageLoader is true while the observer is set.
+ bool mObservingImageLoader;
+
+ float mOriginalZoomLevel;
+};
+
+} // namespace dom
+} // namespace mozilla
+
+#endif /* mozilla_dom_ImageDocument_h */