2004-11-23 16:51:57 +03: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-11-23 16:51:57 +03:00
|
|
|
|
|
|
|
#ifndef NSSVGGFRAME_H
|
|
|
|
#define NSSVGGFRAME_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 "nsSVGContainerFrame.h"
|
2004-11-23 16:51:57 +03:00
|
|
|
|
2006-06-01 19:31:15 +04:00
|
|
|
typedef nsSVGDisplayContainerFrame nsSVGGFrameBase;
|
2004-11-23 16:51:57 +03:00
|
|
|
|
2007-02-05 23:04:17 +03:00
|
|
|
class nsSVGGFrame : public nsSVGGFrameBase
|
2004-11-23 16:51:57 +03:00
|
|
|
{
|
2007-07-25 13:16:02 +04:00
|
|
|
friend nsIFrame*
|
2009-01-19 21:31:34 +03:00
|
|
|
NS_NewSVGGFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2007-07-25 13:16:02 +04:00
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsSVGGFrame(nsStyleContext* aContext) :
|
2008-10-17 23:41:35 +04:00
|
|
|
nsSVGGFrameBase(aContext) {}
|
2004-12-24 19:26:10 +03:00
|
|
|
|
2007-07-25 13:16:02 +04:00
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2009-01-19 21:31:34 +03:00
|
|
|
#ifdef DEBUG
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2009-01-19 21:31:34 +03:00
|
|
|
#endif
|
|
|
|
|
2005-04-01 23:56:08 +04:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 03:06:41 +03:00
|
|
|
* @see nsGkAtoms::svgGFrame
|
2005-04-01 23:56:08 +04:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2005-04-01 23:56:08 +04:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override
|
2005-04-01 23:56:08 +04:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGG"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-21 18:49:20 +03:00
|
|
|
// nsIFrame interface:
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 12:36:33 +04:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2006-03-21 18:49:20 +03:00
|
|
|
|
2004-11-23 16:51:57 +03:00
|
|
|
// nsISVGChildFrame interface:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void NotifySVGChanged(uint32_t aFlags) override;
|
2004-12-24 19:26:10 +03:00
|
|
|
|
2006-06-01 19:31:15 +04:00
|
|
|
// nsSVGContainerFrame methods:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual gfxMatrix GetCanvasTM() override;
|
2004-12-24 19:26:10 +03:00
|
|
|
|
2011-09-26 01:04:32 +04:00
|
|
|
nsAutoPtr<gfxMatrix> mCanvasTM;
|
2004-11-23 16:51:57 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|