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