2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef LAYOUT_SVG_SVGGFRAME_H_
|
|
|
|
#define LAYOUT_SVG_SVGGFRAME_H_
|
2004-11-23 16:51:57 +03:00
|
|
|
|
2013-05-29 23:37:49 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2020-07-09 04:33:33 +03:00
|
|
|
#include "mozilla/SVGContainerFrame.h"
|
2009-04-29 08:31:34 +04:00
|
|
|
#include "gfxMatrix.h"
|
2004-11-23 16:51:57 +03:00
|
|
|
|
2019-04-16 10:24:49 +03:00
|
|
|
namespace mozilla {
|
|
|
|
class PresShell;
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-06-27 08:39:42 +03:00
|
|
|
nsIFrame* NS_NewSVGGFrame(mozilla::PresShell* aPresShell,
|
|
|
|
mozilla::ComputedStyle* aStyle);
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2020-07-09 04:33:33 +03:00
|
|
|
class SVGGFrame : public SVGDisplayContainerFrame {
|
2020-06-27 08:39:42 +03:00
|
|
|
friend nsIFrame* ::NS_NewSVGGFrame(mozilla::PresShell* aPresShell,
|
|
|
|
mozilla::ComputedStyle* aStyle);
|
|
|
|
explicit SVGGFrame(ComputedStyle* aStyle, nsPresContext* aPresContext)
|
|
|
|
: SVGGFrame(aStyle, aPresContext, kClassID) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-05-26 13:11:11 +03:00
|
|
|
protected:
|
2020-06-27 08:39:42 +03:00
|
|
|
SVGGFrame(ComputedStyle* aStyle, nsPresContext* aPresContext,
|
|
|
|
nsIFrame::ClassID aID)
|
2020-07-09 04:33:33 +03:00
|
|
|
: SVGDisplayContainerFrame(aStyle, aPresContext, aID) {}
|
2004-12-24 19:26:10 +03:00
|
|
|
|
2007-07-25 13:16:02 +04:00
|
|
|
public:
|
2020-06-27 08:39:42 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(SVGGFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
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
|
|
|
|
|
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(u"SVGG"_ns, 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, nsAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2004-11-23 16:51:57 +03:00
|
|
|
};
|
|
|
|
|
2020-06-27 08:39:42 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // LAYOUT_SVG_SVGGFRAME_H_
|