2008-07-13 04:30:48 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2008-07-13 04:30:48 -07:00
|
|
|
|
2013-01-05 22:25:54 -08:00
|
|
|
#ifndef mozilla_dom_SVGSwitchElement_h
|
|
|
|
#define mozilla_dom_SVGSwitchElement_h
|
2009-05-07 12:37:33 -07:00
|
|
|
|
2013-02-08 11:55:08 -08:00
|
|
|
#include "mozilla/dom/SVGGraphicsElement.h"
|
2008-07-13 04:30:48 -07:00
|
|
|
|
2013-11-14 18:48:52 -08:00
|
|
|
class nsSVGSwitchFrame;
|
|
|
|
|
2013-01-05 22:25:54 -08:00
|
|
|
nsresult NS_NewSVGSwitchElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2008-07-13 04:30:48 -07:00
|
|
|
|
2013-01-05 22:25:54 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef SVGGraphicsElement SVGSwitchElementBase;
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class SVGSwitchElement final : public SVGSwitchElementBase
|
2008-07-13 04:30:48 -07:00
|
|
|
{
|
|
|
|
friend class nsSVGSwitchFrame;
|
|
|
|
protected:
|
2013-01-05 22:25:54 -08:00
|
|
|
friend nsresult (::NS_NewSVGSwitchElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGSwitchElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2014-07-08 14:23:16 -07:00
|
|
|
~SVGSwitchElement();
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2008-07-13 04:30:48 -07:00
|
|
|
|
|
|
|
public:
|
2009-05-07 12:37:33 -07:00
|
|
|
nsIContent * GetActiveChild() const
|
2008-07-13 04:30:48 -07:00
|
|
|
{ return mActiveChild; }
|
2012-03-11 17:23:35 -07:00
|
|
|
void MaybeInvalidate();
|
2013-01-05 22:25:54 -08:00
|
|
|
|
2008-07-13 04:30:48 -07:00
|
|
|
// interfaces:
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-01-05 22:25:54 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(SVGSwitchElement,
|
|
|
|
SVGSwitchElementBase)
|
2008-07-13 04:30:48 -07:00
|
|
|
// nsINode
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual nsresult InsertChildAt(nsIContent* aKid, uint32_t aIndex,
|
2015-03-21 09:28:04 -07:00
|
|
|
bool aNotify) override;
|
|
|
|
virtual void RemoveChildAt(uint32_t aIndex, bool aNotify) override;
|
2008-07-13 04:30:48 -07:00
|
|
|
|
|
|
|
// nsIContent
|
2015-03-21 09:28:04 -07:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
|
2008-07-13 04:30:48 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2008-07-13 04:30:48 -07:00
|
|
|
private:
|
2009-05-07 12:37:33 -07:00
|
|
|
void UpdateActiveChild()
|
|
|
|
{ mActiveChild = FindActiveChild(); }
|
|
|
|
nsIContent* FindActiveChild() const;
|
2008-07-13 04:30:48 -07:00
|
|
|
|
|
|
|
// only this child will be displayed
|
|
|
|
nsCOMPtr<nsIContent> mActiveChild;
|
|
|
|
};
|
2009-05-07 12:37:33 -07:00
|
|
|
|
2013-01-05 22:25:54 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGSwitchElement_h
|