2011-09-25 21:04:31 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
2012-05-21 11:12:37 +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/. */
|
2011-09-25 21:04:31 +00:00
|
|
|
|
|
|
|
#ifndef MOZILLA_DOMSVGTRANSFORMLIST_H__
|
|
|
|
#define MOZILLA_DOMSVGTRANSFORMLIST_H__
|
|
|
|
|
2013-04-14 22:56:34 +00:00
|
|
|
#include "mozilla/dom/SVGAnimatedTransformList.h"
|
2011-09-25 21:04:31 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2012-01-26 09:57:21 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "SVGTransformList.h"
|
2012-06-19 02:30:09 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-09-05 20:49:53 +00:00
|
|
|
#include "mozilla/ErrorResult.h"
|
2011-09-25 21:04:31 +00:00
|
|
|
|
|
|
|
class nsSVGElement;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2013-01-11 20:30:21 +00:00
|
|
|
namespace dom {
|
|
|
|
class SVGMatrix;
|
2013-04-02 19:17:41 +00:00
|
|
|
class SVGTransform;
|
2013-01-11 20:30:21 +00:00
|
|
|
}
|
|
|
|
|
2011-09-25 21:04:31 +00:00
|
|
|
/**
|
|
|
|
* Class DOMSVGTransformList
|
|
|
|
*
|
|
|
|
* This class is used to create the DOM tearoff objects that wrap internal
|
|
|
|
* SVGTransformList objects.
|
|
|
|
*
|
2013-04-14 22:56:34 +00:00
|
|
|
* See the architecture comment in SVGAnimatedTransformList.h.
|
2011-09-25 21:04:31 +00:00
|
|
|
*/
|
2013-12-22 17:56:39 +00:00
|
|
|
class DOMSVGTransformList MOZ_FINAL : public nsISupports,
|
|
|
|
public nsWrapperCache
|
2011-09-25 21:04:31 +00:00
|
|
|
{
|
2013-12-24 22:09:22 +00:00
|
|
|
friend class AutoChangeTransformListNotifier;
|
2013-04-02 19:17:41 +00:00
|
|
|
friend class dom::SVGTransform;
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2014-06-24 16:36:45 +00:00
|
|
|
~DOMSVGTransformList() {
|
|
|
|
// Our mAList's weak ref to us must be nulled out when we die. If GC has
|
|
|
|
// unlinked us using the cycle collector code, then that has already
|
|
|
|
// happened, and mAList is null.
|
|
|
|
if (mAList) {
|
|
|
|
( IsAnimValList() ? mAList->mAnimVal : mAList->mBaseVal ) = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-25 21:04:31 +00:00
|
|
|
public:
|
2013-12-22 17:56:39 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(DOMSVGTransformList)
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2013-04-14 22:56:34 +00:00
|
|
|
DOMSVGTransformList(dom::SVGAnimatedTransformList *aAList,
|
2011-09-25 21:04:31 +00:00
|
|
|
const SVGTransformList &aInternalList)
|
|
|
|
: mAList(aAList)
|
|
|
|
{
|
|
|
|
// aInternalList must be passed in explicitly because we can't use
|
|
|
|
// InternalList() here. (Because it depends on IsAnimValList, which depends
|
|
|
|
// on this object having been assigned to aAList's mBaseVal or mAnimVal,
|
|
|
|
// which hasn't happend yet.)
|
|
|
|
|
|
|
|
InternalListLengthWillChange(aInternalList.Length()); // Sync mItems
|
|
|
|
}
|
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext *cx) MOZ_OVERRIDE;
|
2011-08-22 09:14:13 +00:00
|
|
|
|
|
|
|
nsISupports* GetParentObject()
|
|
|
|
{
|
|
|
|
return static_cast<nsIContent*>(Element());
|
|
|
|
}
|
|
|
|
|
2011-09-25 21:04:31 +00:00
|
|
|
/**
|
|
|
|
* This will normally be the same as InternalList().Length(), except if we've
|
|
|
|
* hit OOM in which case our length will be zero.
|
|
|
|
*/
|
2012-09-05 14:52:57 +00:00
|
|
|
uint32_t LengthNoFlush() const {
|
2011-09-25 21:04:31 +00:00
|
|
|
NS_ABORT_IF_FALSE(mItems.IsEmpty() ||
|
2011-11-26 10:22:15 +00:00
|
|
|
mItems.Length() == InternalList().Length(),
|
2011-09-25 21:04:31 +00:00
|
|
|
"DOM wrapper's list length is out of sync");
|
|
|
|
return mItems.Length();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Called to notify us to synchronize our length and detach excess items.
|
2012-08-22 15:56:38 +00:00
|
|
|
void InternalListLengthWillChange(uint32_t aNewLength);
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2013-12-24 22:09:22 +00:00
|
|
|
/**
|
|
|
|
* Returns true if our attribute is animating (in which case our animVal is
|
|
|
|
* not simply a mirror of our baseVal).
|
|
|
|
*/
|
|
|
|
bool IsAnimating() const {
|
|
|
|
return mAList->IsAnimating();
|
|
|
|
}
|
|
|
|
|
2012-09-05 20:49:53 +00:00
|
|
|
uint32_t NumberOfItems() const
|
|
|
|
{
|
|
|
|
if (IsAnimValList()) {
|
|
|
|
Element()->FlushAnimations();
|
|
|
|
}
|
|
|
|
return LengthNoFlush();
|
|
|
|
}
|
|
|
|
void Clear(ErrorResult& error);
|
2013-04-02 19:17:41 +00:00
|
|
|
already_AddRefed<dom::SVGTransform> Initialize(dom::SVGTransform& newItem,
|
|
|
|
ErrorResult& error);
|
2013-07-12 10:25:25 +00:00
|
|
|
already_AddRefed<dom::SVGTransform> GetItem(uint32_t index,
|
|
|
|
ErrorResult& error);
|
|
|
|
already_AddRefed<dom::SVGTransform> IndexedGetter(uint32_t index, bool& found,
|
|
|
|
ErrorResult& error);
|
2013-04-02 19:17:41 +00:00
|
|
|
already_AddRefed<dom::SVGTransform> InsertItemBefore(dom::SVGTransform& newItem,
|
|
|
|
uint32_t index,
|
|
|
|
ErrorResult& error);
|
|
|
|
already_AddRefed<dom::SVGTransform> ReplaceItem(dom::SVGTransform& newItem,
|
|
|
|
uint32_t index,
|
|
|
|
ErrorResult& error);
|
|
|
|
already_AddRefed<dom::SVGTransform> RemoveItem(uint32_t index,
|
|
|
|
ErrorResult& error);
|
|
|
|
already_AddRefed<dom::SVGTransform> AppendItem(dom::SVGTransform& newItem,
|
|
|
|
ErrorResult& error)
|
2012-09-05 20:49:53 +00:00
|
|
|
{
|
|
|
|
return InsertItemBefore(newItem, LengthNoFlush(), error);
|
|
|
|
}
|
2013-04-02 19:17:41 +00:00
|
|
|
already_AddRefed<dom::SVGTransform> CreateSVGTransformFromMatrix(dom::SVGMatrix& matrix);
|
|
|
|
already_AddRefed<dom::SVGTransform> Consolidate(ErrorResult& error);
|
2012-09-05 20:49:53 +00:00
|
|
|
uint32_t Length() const
|
|
|
|
{
|
|
|
|
return NumberOfItems();
|
|
|
|
}
|
|
|
|
|
2011-09-25 21:04:31 +00:00
|
|
|
private:
|
|
|
|
|
2011-11-26 10:22:15 +00:00
|
|
|
nsSVGElement* Element() const {
|
2011-09-25 21:04:31 +00:00
|
|
|
return mAList->mElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Used to determine if this list is the baseVal or animVal list.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsAnimValList() const {
|
2011-09-25 21:04:31 +00:00
|
|
|
NS_ABORT_IF_FALSE(this == mAList->mBaseVal || this == mAList->mAnimVal,
|
|
|
|
"Calling IsAnimValList() too early?!");
|
|
|
|
return this == mAList->mAnimVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a reference to this object's corresponding internal SVGTransformList.
|
|
|
|
*
|
|
|
|
* To simplify the code we just have this one method for obtaining both
|
|
|
|
* baseVal and animVal internal lists. This means that animVal lists don't
|
|
|
|
* get const protection, but our setter methods guard against changing
|
|
|
|
* animVal lists.
|
|
|
|
*/
|
2011-11-26 10:22:15 +00:00
|
|
|
SVGTransformList& InternalList() const;
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2013-07-12 10:25:25 +00:00
|
|
|
/// Returns the SVGTransform at aIndex, creating it if necessary.
|
|
|
|
already_AddRefed<dom::SVGTransform> GetItemAt(uint32_t aIndex);
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void MaybeInsertNullInAnimValListAt(uint32_t aIndex);
|
|
|
|
void MaybeRemoveItemFromAnimValListAt(uint32_t aIndex);
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2013-04-02 19:17:41 +00:00
|
|
|
// Weak refs to our SVGTransform items. The items are friends and take care
|
2011-09-25 21:04:31 +00:00
|
|
|
// of clearing our pointer to them when they die.
|
2013-04-02 19:17:41 +00:00
|
|
|
FallibleTArray<dom::SVGTransform*> mItems;
|
2011-09-25 21:04:31 +00:00
|
|
|
|
2013-04-14 22:56:34 +00:00
|
|
|
nsRefPtr<dom::SVGAnimatedTransformList> mAList;
|
2011-09-25 21:04:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // MOZILLA_DOMSVGTRANSFORMLIST_H__
|