2004-10-07 20:59:53 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2004-10-07 20:59:53 +00:00
|
|
|
|
|
|
|
#ifndef __NS_SVGGENERICCONTAINERFRAME_H__
|
|
|
|
#define __NS_SVGGENERICCONTAINERFRAME_H__
|
|
|
|
|
2009-04-29 04:31:34 +00:00
|
|
|
#include "gfxMatrix.h"
|
2012-03-20 12:15:55 +00:00
|
|
|
#include "nsFrame.h"
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
#include "nsQueryFrame.h"
|
|
|
|
#include "nsSVGContainerFrame.h"
|
|
|
|
|
|
|
|
class nsIAtom;
|
|
|
|
class nsIFrame;
|
|
|
|
class nsIPresShell;
|
|
|
|
class nsStyleContext;
|
2004-10-07 20:59:53 +00:00
|
|
|
|
2006-06-01 15:31:15 +00:00
|
|
|
typedef nsSVGDisplayContainerFrame nsSVGGenericContainerFrameBase;
|
2004-10-07 20:59:53 +00:00
|
|
|
|
2006-06-01 15:31:15 +00:00
|
|
|
class nsSVGGenericContainerFrame : public nsSVGGenericContainerFrameBase
|
2004-10-07 20:59:53 +00:00
|
|
|
{
|
2005-11-11 02:36:29 +00:00
|
|
|
friend nsIFrame*
|
2009-01-19 18:31:34 +00:00
|
|
|
NS_NewSVGGenericContainerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2004-10-07 20:59:53 +00:00
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsSVGGenericContainerFrame(nsStyleContext* aContext) : nsSVGGenericContainerFrameBase(aContext) {}
|
2004-10-07 20:59:53 +00:00
|
|
|
|
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2004-10-07 20:59:53 +00:00
|
|
|
// nsIFrame:
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD AttributeChanged(int32_t aNameSpaceID,
|
2004-10-07 20:59:53 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aModType);
|
2005-04-01 19:56:08 +00:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 00:06:41 +00:00
|
|
|
* @see nsGkAtoms::svgGenericContainerFrame
|
2005-04-01 19:56:08 +00:00
|
|
|
*/
|
|
|
|
virtual nsIAtom* GetType() const;
|
2004-10-07 20:59:53 +00:00
|
|
|
|
2005-04-01 19:56:08 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGGenericContainer"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
2004-10-07 20:59:53 +00:00
|
|
|
|
2006-06-01 15:31:15 +00:00
|
|
|
// nsSVGContainerFrame methods:
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual gfxMatrix GetCanvasTM(uint32_t aFor);
|
2004-10-07 20:59:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __NS_SVGGENERICCONTAINERFRAME_H__
|