2012-09-05 13:49:53 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
2013-02-08 08:34:48 -08:00
|
|
|
#ifndef mozilla_dom_HTMLOptGroupElement_h
|
|
|
|
#define mozilla_dom_HTMLOptGroupElement_h
|
2012-09-05 13:49:53 -07:00
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-09-05 13:49:53 -07:00
|
|
|
#include "nsIDOMHTMLOptGroupElement.h"
|
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
|
2013-02-08 08:34:48 -08:00
|
|
|
namespace mozilla {
|
2014-03-17 21:48:19 -07:00
|
|
|
class EventChainPreVisitor;
|
2013-02-08 08:34:48 -08:00
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class HTMLOptGroupElement final : public nsGenericHTMLElement,
|
2015-03-27 11:52:19 -07:00
|
|
|
public nsIDOMHTMLOptGroupElement
|
2012-09-05 13:49:53 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 17:49:25 -07:00
|
|
|
explicit HTMLOptGroupElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2012-09-05 13:49:53 -07:00
|
|
|
|
2013-07-24 00:31:49 -07:00
|
|
|
NS_IMPL_FROMCONTENT_HTML_WITH_TAG(HTMLOptGroupElement, optgroup)
|
|
|
|
|
2012-09-05 13:49:53 -07:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMHTMLOptGroupElement
|
|
|
|
NS_DECL_NSIDOMHTMLOPTGROUPELEMENT
|
|
|
|
|
|
|
|
// nsINode
|
|
|
|
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;
|
2012-09-05 13:49:53 -07:00
|
|
|
|
|
|
|
// nsIContent
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult PreHandleEvent(EventChainPreVisitor& aVisitor) override;
|
2012-09-05 13:49:53 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual EventStates IntrinsicState() const override;
|
2012-09-05 13:49:53 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo* aNodeInfo, nsINode** aResult) const override;
|
2012-09-05 13:49:53 -07:00
|
|
|
|
|
|
|
virtual nsresult AfterSetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
2015-03-21 09:28:04 -07:00
|
|
|
const nsAttrValue* aValue, bool aNotify) override;
|
2012-09-05 13:49:53 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsIDOMNode* AsDOMNode() override { return this; }
|
2012-09-05 13:49:53 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool IsDisabled() const override {
|
2012-09-05 13:49:53 -07:00
|
|
|
return HasAttr(kNameSpaceID_None, nsGkAtoms::disabled);
|
|
|
|
}
|
2013-02-08 08:34:48 -08:00
|
|
|
|
|
|
|
bool Disabled() const
|
|
|
|
{
|
|
|
|
return GetBoolAttr(nsGkAtoms::disabled);
|
|
|
|
}
|
|
|
|
void SetDisabled(bool aValue, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::disabled, aValue, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The XPCOM GetLabel is OK for us
|
|
|
|
void SetLabel(const nsAString& aLabel, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::label, aLabel, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-07-08 14:23:16 -07:00
|
|
|
virtual ~HTMLOptGroupElement();
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-02-08 08:34:48 -08:00
|
|
|
|
2012-09-05 13:49:53 -07:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the select content element that contains this option
|
|
|
|
* @param aSelectElement the select element [OUT]
|
|
|
|
*/
|
|
|
|
nsIContent* GetSelect();
|
|
|
|
};
|
|
|
|
|
2013-02-08 08:34:48 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_HTMLOptGroupElement_h */
|