2015-05-03 19:32:37 +00: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-12-21 14:06:50 +00: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/. */
|
|
|
|
#ifndef HTMLBodyElement_h___
|
|
|
|
#define HTMLBodyElement_h___
|
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-12-21 14:06:50 +00:00
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsIDOMHTMLBodyElement.h"
|
|
|
|
#include "nsIStyleRule.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-10-08 15:51:15 +00:00
|
|
|
class OnBeforeUnloadEventHandlerNonNull;
|
2012-12-21 14:06:50 +00:00
|
|
|
class HTMLBodyElement;
|
|
|
|
|
|
|
|
class BodyRule: public nsIStyleRule
|
|
|
|
{
|
2014-06-25 02:09:15 +00:00
|
|
|
virtual ~BodyRule();
|
|
|
|
|
2012-12-21 14:06:50 +00:00
|
|
|
public:
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit BodyRule(HTMLBodyElement* aPart);
|
2012-12-21 14:06:50 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIStyleRule interface
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData) override;
|
2012-12-21 14:06:50 +00:00
|
|
|
#ifdef DEBUG
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
2012-12-21 14:06:50 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
HTMLBodyElement* mPart; // not ref-counted, cleared by content
|
|
|
|
};
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class HTMLBodyElement final : public nsGenericHTMLElement,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsIDOMHTMLBodyElement
|
2012-12-21 14:06:50 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Element::GetText;
|
|
|
|
using Element::SetText;
|
|
|
|
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit HTMLBodyElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2012-12-21 14:07:28 +00:00
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
2012-12-21 14:06:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMHTMLBodyElement
|
|
|
|
NS_DECL_NSIDOMHTMLBODYELEMENT
|
|
|
|
|
|
|
|
// Event listener stuff; we need to declare only the ones we need to
|
|
|
|
// forward to window that don't come from nsIDOMHTMLBodyElement.
|
|
|
|
#define EVENT(name_, id_, type_, struct_) /* nothing; handled by the shim */
|
2012-12-21 14:07:28 +00:00
|
|
|
#define WINDOW_EVENT_HELPER(name_, type_) \
|
|
|
|
type_* GetOn##name_(); \
|
2013-09-17 11:01:28 +00:00
|
|
|
void SetOn##name_(type_* handler);
|
2012-12-21 14:07:28 +00:00
|
|
|
#define WINDOW_EVENT(name_, id_, type_, struct_) \
|
|
|
|
WINDOW_EVENT_HELPER(name_, EventHandlerNonNull)
|
|
|
|
#define BEFOREUNLOAD_EVENT(name_, id_, type_, struct_) \
|
2013-10-08 15:51:15 +00:00
|
|
|
WINDOW_EVENT_HELPER(name_, OnBeforeUnloadEventHandlerNonNull)
|
2014-04-01 11:42:12 +00:00
|
|
|
#include "mozilla/EventNameList.h" // IWYU pragma: keep
|
2012-12-21 14:07:28 +00:00
|
|
|
#undef BEFOREUNLOAD_EVENT
|
|
|
|
#undef WINDOW_EVENT
|
|
|
|
#undef WINDOW_EVENT_HELPER
|
2012-12-21 14:06:50 +00:00
|
|
|
#undef EVENT
|
|
|
|
|
2015-02-13 01:27:39 +00:00
|
|
|
void GetText(DOMString& aText)
|
2012-12-21 14:07:28 +00:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::text, aText);
|
|
|
|
}
|
|
|
|
void SetText(const nsAString& aText, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::text, aText, aError);
|
|
|
|
}
|
2015-02-13 01:27:39 +00:00
|
|
|
void GetLink(DOMString& aLink)
|
2012-12-21 14:07:28 +00:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::link, aLink);
|
|
|
|
}
|
|
|
|
void SetLink(const nsAString& aLink, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::link, aLink, aError);
|
|
|
|
}
|
2015-02-13 01:27:39 +00:00
|
|
|
void GetVLink(DOMString& aVLink)
|
2012-12-21 14:07:28 +00:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::vlink, aVLink);
|
|
|
|
}
|
|
|
|
void SetVLink(const nsAString& aVLink, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::vlink, aVLink, aError);
|
|
|
|
}
|
2015-02-13 01:27:39 +00:00
|
|
|
void GetALink(DOMString& aALink)
|
2012-12-21 14:07:28 +00:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::alink, aALink);
|
|
|
|
}
|
|
|
|
void SetALink(const nsAString& aALink, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::alink, aALink, aError);
|
|
|
|
}
|
2015-02-13 01:27:39 +00:00
|
|
|
void GetBgColor(DOMString& aBgColor)
|
2012-12-21 14:07:28 +00:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::bgcolor, aBgColor);
|
|
|
|
}
|
|
|
|
void SetBgColor(const nsAString& aBgColor, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::bgcolor, aBgColor, aError);
|
|
|
|
}
|
2015-02-13 01:27:39 +00:00
|
|
|
void GetBackground(DOMString& aBackground)
|
2012-12-21 14:07:28 +00:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::background, aBackground);
|
|
|
|
}
|
|
|
|
void SetBackground(const nsAString& aBackground, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::background, aBackground, aError);
|
|
|
|
}
|
|
|
|
|
2012-12-21 14:06:50 +00:00
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsAttrValue& aResult) override;
|
2012-12-21 14:06:50 +00:00
|
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aNullParent = true) override;
|
|
|
|
virtual nsMapRuleToAttributesFunc GetAttributeMappingFunction() const override;
|
|
|
|
NS_IMETHOD WalkContentStyleRules(nsRuleWalker* aRuleWalker) override;
|
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
|
|
|
|
virtual already_AddRefed<nsIEditor> GetAssociatedEditor() override;
|
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-01-02 20:24:07 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsEventAttributeName(nsIAtom* aName) override;
|
2013-01-02 20:24:07 +00:00
|
|
|
|
2012-12-21 14:06:50 +00:00
|
|
|
protected:
|
2014-07-08 21:23:16 +00:00
|
|
|
virtual ~HTMLBodyElement();
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-21 14:07:28 +00:00
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<BodyRule> mContentStyleRule;
|
2013-11-19 19:21:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void MapAttributesIntoRule(const nsMappedAttributes* aAttributes,
|
|
|
|
nsRuleData* aData);
|
2012-12-21 14:06:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* HTMLBodyElement_h___ */
|