2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-12-23 04:54:20 +00: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/. */
|
|
|
|
|
2013-10-22 11:37:57 +00:00
|
|
|
#ifndef MOZILLA_CONTENT_SVGPRESERVEASPECTRATIO_H_
|
|
|
|
#define MOZILLA_CONTENT_SVGPRESERVEASPECTRATIO_H_
|
2012-12-23 04:54:20 +00:00
|
|
|
|
2013-10-22 11:37:57 +00:00
|
|
|
#include "mozilla/HashFunctions.h" // for HashGeneric
|
2013-01-29 00:33:17 +00:00
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2013-08-23 05:17:11 +00:00
|
|
|
#include "nsSVGElement.h"
|
2012-12-23 04:54:20 +00:00
|
|
|
|
2013-01-05 17:28:00 +00:00
|
|
|
namespace mozilla {
|
2012-12-23 04:54:21 +00:00
|
|
|
// Alignment Types
|
2015-01-21 13:35:19 +00:00
|
|
|
enum SVGAlign : uint8_t {
|
2013-01-05 17:28:00 +00:00
|
|
|
SVG_PRESERVEASPECTRATIO_UNKNOWN = 0,
|
|
|
|
SVG_PRESERVEASPECTRATIO_NONE = 1,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMINYMIN = 2,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMINYMID = 5,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMIDYMID = 6,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMAXYMID = 7,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMINYMAX = 8,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9,
|
|
|
|
SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10
|
|
|
|
};
|
2012-12-23 04:54:21 +00:00
|
|
|
|
2013-01-10 14:37:30 +00:00
|
|
|
// These constants represent the range of valid enum values for the <align>
|
|
|
|
// parameter. They exclude the sentinel _UNKNOWN value.
|
|
|
|
const uint16_t SVG_ALIGN_MIN_VALID = SVG_PRESERVEASPECTRATIO_NONE;
|
|
|
|
const uint16_t SVG_ALIGN_MAX_VALID = SVG_PRESERVEASPECTRATIO_XMAXYMAX;
|
|
|
|
|
2012-12-23 04:54:21 +00:00
|
|
|
// Meet-or-slice Types
|
2015-01-21 13:35:19 +00:00
|
|
|
enum SVGMeetOrSlice : uint8_t {
|
2013-01-05 17:28:00 +00:00
|
|
|
SVG_MEETORSLICE_UNKNOWN = 0,
|
|
|
|
SVG_MEETORSLICE_MEET = 1,
|
|
|
|
SVG_MEETORSLICE_SLICE = 2
|
|
|
|
};
|
2012-12-23 04:54:21 +00:00
|
|
|
|
2013-01-10 14:37:30 +00:00
|
|
|
// These constants represent the range of valid enum values for the
|
|
|
|
// <meetOrSlice> parameter. They exclude the sentinel _UNKNOWN value.
|
|
|
|
const uint16_t SVG_MEETORSLICE_MIN_VALID = SVG_MEETORSLICE_MEET;
|
|
|
|
const uint16_t SVG_MEETORSLICE_MAX_VALID = SVG_MEETORSLICE_SLICE;
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
class SVGAnimatedPreserveAspectRatio;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class SVGPreserveAspectRatio final
|
2012-12-23 04:54:20 +00:00
|
|
|
{
|
|
|
|
friend class SVGAnimatedPreserveAspectRatio;
|
|
|
|
public:
|
2013-01-05 17:28:00 +00:00
|
|
|
SVGPreserveAspectRatio(SVGAlign aAlign, SVGMeetOrSlice aMeetOrSlice,
|
|
|
|
bool aDefer = false)
|
|
|
|
: mAlign(aAlign)
|
|
|
|
, mMeetOrSlice(aMeetOrSlice)
|
2012-12-23 04:54:20 +00:00
|
|
|
, mDefer(aDefer)
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool operator==(const SVGPreserveAspectRatio& aOther) const;
|
|
|
|
|
|
|
|
explicit SVGPreserveAspectRatio()
|
2013-01-05 17:28:00 +00:00
|
|
|
: mAlign(SVG_PRESERVEASPECTRATIO_UNKNOWN)
|
|
|
|
, mMeetOrSlice(SVG_MEETORSLICE_UNKNOWN)
|
2012-12-23 04:54:20 +00:00
|
|
|
, mDefer(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsresult SetAlign(uint16_t aAlign) {
|
2013-01-10 14:37:30 +00:00
|
|
|
if (aAlign < SVG_ALIGN_MIN_VALID || aAlign > SVG_ALIGN_MAX_VALID)
|
2012-12-23 04:54:20 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
mAlign = static_cast<uint8_t>(aAlign);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-01-05 17:28:00 +00:00
|
|
|
SVGAlign GetAlign() const {
|
|
|
|
return static_cast<SVGAlign>(mAlign);
|
2012-12-23 04:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult SetMeetOrSlice(uint16_t aMeetOrSlice) {
|
2013-01-10 14:37:30 +00:00
|
|
|
if (aMeetOrSlice < SVG_MEETORSLICE_MIN_VALID ||
|
|
|
|
aMeetOrSlice > SVG_MEETORSLICE_MAX_VALID)
|
2012-12-23 04:54:20 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
mMeetOrSlice = static_cast<uint8_t>(aMeetOrSlice);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-01-05 17:28:00 +00:00
|
|
|
SVGMeetOrSlice GetMeetOrSlice() const {
|
|
|
|
return static_cast<SVGMeetOrSlice>(mMeetOrSlice);
|
2012-12-23 04:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetDefer(bool aDefer) {
|
|
|
|
mDefer = aDefer;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetDefer() const {
|
|
|
|
return mDefer;
|
|
|
|
}
|
|
|
|
|
2013-10-22 11:37:57 +00:00
|
|
|
uint32_t Hash() const {
|
|
|
|
return HashGeneric(mAlign, mMeetOrSlice, mDefer);
|
|
|
|
}
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
private:
|
2013-01-05 17:28:00 +00:00
|
|
|
// We can't use enum types here because some compilers fail to pack them.
|
2012-12-23 04:54:20 +00:00
|
|
|
uint8_t mAlign;
|
|
|
|
uint8_t mMeetOrSlice;
|
|
|
|
bool mDefer;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class DOMSVGPreserveAspectRatio final : public nsISupports,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsWrapperCache
|
2012-12-23 04:54:20 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMSVGPreserveAspectRatio)
|
|
|
|
|
|
|
|
DOMSVGPreserveAspectRatio(SVGAnimatedPreserveAspectRatio* aVal,
|
|
|
|
nsSVGElement *aSVGElement,
|
|
|
|
bool aIsBaseValue)
|
|
|
|
: mVal(aVal), mSVGElement(aSVGElement), mIsBaseValue(aIsBaseValue)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
nsSVGElement* GetParentObject() const { return mSVGElement; }
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-23 04:54:20 +00:00
|
|
|
|
|
|
|
uint16_t Align();
|
|
|
|
void SetAlign(uint16_t aAlign, ErrorResult& rv);
|
|
|
|
uint16_t MeetOrSlice();
|
|
|
|
void SetMeetOrSlice(uint16_t aMeetOrSlice, ErrorResult& rv);
|
|
|
|
|
|
|
|
protected:
|
2014-06-24 16:36:45 +00:00
|
|
|
~DOMSVGPreserveAspectRatio();
|
|
|
|
|
2012-12-23 04:54:20 +00:00
|
|
|
SVGAnimatedPreserveAspectRatio* mVal; // kept alive because it belongs to mSVGElement
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsSVGElement> mSVGElement;
|
2012-12-23 04:54:20 +00:00
|
|
|
const bool mIsBaseValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace dom
|
|
|
|
} //namespace mozilla
|
2013-10-22 11:37:57 +00:00
|
|
|
|
|
|
|
#endif // MOZILLA_CONTENT_SVGPRESERVEASPECTRATIO_H_
|