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