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-09-06 00:49:53 +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/. */
|
|
|
|
|
2013-02-08 20:34:48 +04:00
|
|
|
#ifndef mozilla_dom_HTMLOptGroupElement_h
|
|
|
|
#define mozilla_dom_HTMLOptGroupElement_h
|
2012-09-06 00:49:53 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-09-06 00:49:53 +04:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
|
2013-02-08 20:34:48 +04:00
|
|
|
namespace mozilla {
|
2014-03-18 08:48:19 +04:00
|
|
|
class EventChainPreVisitor;
|
2013-02-08 20:34:48 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2017-08-14 19:31:47 +03:00
|
|
|
class HTMLOptGroupElement final : public nsGenericHTMLElement {
|
2012-09-06 00:49:53 +04:00
|
|
|
public:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit HTMLOptGroupElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2012-09-06 00:49:53 +04:00
|
|
|
|
2018-03-22 00:39:04 +03:00
|
|
|
NS_IMPL_FROMNODE_HTML_WITH_TAG(HTMLOptGroupElement, optgroup)
|
2013-07-24 11:31:49 +04:00
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
// nsISupports
|
2018-02-12 23:44:40 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLOptGroupElement,
|
|
|
|
nsGenericHTMLElement)
|
2012-09-06 00:49:53 +04:00
|
|
|
|
|
|
|
// nsINode
|
2018-01-25 17:59:42 +03:00
|
|
|
virtual nsresult InsertChildBefore(nsIContent* aKid, nsIContent* aBeforeThis,
|
|
|
|
bool aNotify) override;
|
2018-01-15 19:18:38 +03:00
|
|
|
virtual void RemoveChildNode(nsIContent* aKid, bool aNotify) override;
|
2012-09-06 00:49:53 +04:00
|
|
|
|
|
|
|
// nsIContent
|
2018-04-05 20:42:41 +03:00
|
|
|
void GetEventTargetParent(EventChainPreVisitor& aVisitor) override;
|
2012-09-06 00:49:53 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2012-09-06 00:49:53 +04:00
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult AfterSetAttr(int32_t aNameSpaceID, nsAtom* aName,
|
2017-05-19 00:09:01 +03:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
2017-10-10 00:33:38 +03:00
|
|
|
nsIPrincipal* aSubjectPrincipal,
|
2017-05-19 00:09:01 +03:00
|
|
|
bool aNotify) override;
|
2012-09-06 00:49:53 +04:00
|
|
|
|
2013-02-08 20:34:48 +04:00
|
|
|
bool Disabled() const { return GetBoolAttr(nsGkAtoms::disabled); }
|
|
|
|
void SetDisabled(bool aValue, ErrorResult& aError) {
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::disabled, aValue, aError);
|
|
|
|
}
|
|
|
|
|
2017-07-18 00:33:12 +03:00
|
|
|
void GetLabel(nsAString& aValue) const {
|
|
|
|
GetHTMLAttr(nsGkAtoms::label, aValue);
|
|
|
|
}
|
2013-02-08 20:34:48 +04:00
|
|
|
void SetLabel(const nsAString& aLabel, ErrorResult& aError) {
|
|
|
|
SetHTMLAttr(nsGkAtoms::label, aLabel, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLOptGroupElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2012-09-06 00:49:53 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Get the select content element that contains this option
|
|
|
|
* @param aSelectElement the select element [OUT]
|
|
|
|
*/
|
2015-10-13 12:28:00 +03:00
|
|
|
Element* GetSelect();
|
2012-09-06 00:49:53 +04:00
|
|
|
};
|
|
|
|
|
2013-02-08 20:34:48 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_HTMLOptGroupElement_h */
|