Bug 327764 - make svg patterns live. r+sr=sicking

This commit is contained in:
tor%cs.brown.edu 2006-07-19 15:31:40 +00:00
Родитель 475b12a24c
Коммит 131e7f2291
2 изменённых файлов: 78 добавлений и 1 удалений

Просмотреть файл

@ -51,6 +51,7 @@
#include "nsSVGAnimatedPreserveAspectRatio.h"
#include "nsSVGPreserveAspectRatio.h"
#include "nsSVGPatternElement.h"
#include "nsIFrame.h"
//--------------------- Patterns ------------------------
@ -77,6 +78,7 @@ NS_INTERFACE_MAP_BEGIN(nsSVGPatternElement)
NS_INTERFACE_MAP_ENTRY(nsIDOMSVGFitToViewBox)
NS_INTERFACE_MAP_ENTRY(nsIDOMSVGURIReference)
NS_INTERFACE_MAP_ENTRY(nsIDOMSVGPatternElement)
NS_INTERFACE_MAP_ENTRY(nsIMutationObserver)
NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(SVGPatternElement)
NS_INTERFACE_MAP_END_INHERITING(nsSVGPatternElementBase)
@ -86,6 +88,7 @@ NS_INTERFACE_MAP_END_INHERITING(nsSVGPatternElementBase)
nsSVGPatternElement::nsSVGPatternElement(nsINodeInfo* aNodeInfo)
: nsSVGPatternElementBase(aNodeInfo)
{
AddMutationObserver(this);
}
nsresult
@ -292,3 +295,70 @@ nsSVGPatternElement::GetLengthInfo()
return LengthAttributesInfo(mLengthAttributes, sLengthInfo,
NS_ARRAY_LENGTH(sLengthInfo));
}
//----------------------------------------------------------------------
// nsIMutationObserver methods
void
nsSVGPatternElement::PushUpdate()
{
nsIFrame *frame = GetPrimaryFrame();
if (frame) {
nsISVGValue *value = nsnull;
CallQueryInterface(frame, &value);
if (value) {
value->BeginBatchUpdate();
value->EndBatchUpdate();
}
}
}
void
nsSVGPatternElement::CharacterDataChanged(nsIDocument *aDocument,
nsIContent *aContent,
PRBool aAppend)
{
PushUpdate();
}
void
nsSVGPatternElement::AttributeChanged(nsIDocument *aDocument,
nsIContent *aContent,
PRInt32 aNameSpaceID,
nsIAtom *aAttribute,
PRInt32 aModType)
{
PushUpdate();
}
void
nsSVGPatternElement::ContentAppended(nsIDocument *aDocument,
nsIContent *aContainer,
PRInt32 aNewIndexInContainer)
{
PushUpdate();
}
void
nsSVGPatternElement::ContentInserted(nsIDocument *aDocument,
nsIContent *aContainer,
nsIContent *aChild,
PRInt32 aIndexInContainer)
{
PushUpdate();
}
void
nsSVGPatternElement::ContentRemoved(nsIDocument *aDocument,
nsIContent *aContainer,
nsIContent *aChild,
PRInt32 aIndexInContainer)
{
PushUpdate();
}
void
nsSVGPatternElement::NodeWillBeDestroyed(const nsINode *aNode)
{
}

Просмотреть файл

@ -44,6 +44,7 @@
#include "nsIDOMSVGFitToViewBox.h"
#include "nsIDOMSVGPatternElement.h"
#include "nsSVGLength2.h"
#include "nsIMutationObserver.h"
//--------------------- Patterns ------------------------
@ -52,7 +53,8 @@ typedef nsSVGStylableElement nsSVGPatternElementBase;
class nsSVGPatternElement : public nsSVGPatternElementBase,
public nsIDOMSVGURIReference,
public nsIDOMSVGFitToViewBox,
public nsIDOMSVGPatternElement
public nsIDOMSVGPatternElement,
public nsIMutationObserver
{
friend class nsSVGPatternFrame;
@ -75,6 +77,9 @@ public:
// FitToViewbox
NS_DECL_NSIDOMSVGFITTOVIEWBOX
// Mutation Observer
NS_DECL_NSIMUTATIONOBSERVER
NS_FORWARD_NSIDOMNODE_NO_CLONENODE(nsSVGElement::)
NS_FORWARD_NSIDOMELEMENT(nsSVGElement::)
NS_FORWARD_NSIDOMSVGELEMENT(nsSVGElement::)
@ -84,6 +89,8 @@ public:
protected:
void PushUpdate();
virtual LengthAttributesInfo GetLengthInfo();
// nsIDOMSVGPatternElement values