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