/* -*- 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/. */ #ifndef mozilla_dom_HTMLLinkElement_h #define mozilla_dom_HTMLLinkElement_h #include "mozilla/Attributes.h" #include "mozilla/dom/Link.h" #include "ImportManager.h" #include "nsGenericHTMLElement.h" #include "nsIDOMHTMLLinkElement.h" #include "nsStyleLinkElement.h" namespace mozilla { class EventChainPostVisitor; class EventChainPreVisitor; namespace dom { class HTMLLinkElement MOZ_FINAL : public nsGenericHTMLElement, public nsIDOMHTMLLinkElement, public nsStyleLinkElement, public Link { public: explicit HTMLLinkElement(already_AddRefed& aNodeInfo); // nsISupports NS_DECL_ISUPPORTS_INHERITED // CC NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(HTMLLinkElement, nsGenericHTMLElement) // nsIDOMHTMLLinkElement NS_DECL_NSIDOMHTMLLINKELEMENT // DOM memory reporter participant NS_DECL_SIZEOF_EXCLUDING_THIS void LinkAdded(); void LinkRemoved(); void UpdateImport(); // nsIDOMEventTarget virtual nsresult PreHandleEvent(EventChainPreVisitor& aVisitor) MOZ_OVERRIDE; virtual nsresult PostHandleEvent( EventChainPostVisitor& aVisitor) MOZ_OVERRIDE; // nsINode virtual nsresult Clone(mozilla::dom::NodeInfo* aNodeInfo, nsINode** aResult) const MOZ_OVERRIDE; virtual JSObject* WrapNode(JSContext* aCx) MOZ_OVERRIDE; // nsIContent virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent, nsIContent* aBindingParent, bool aCompileEventHandlers) MOZ_OVERRIDE; virtual void UnbindFromTree(bool aDeep = true, bool aNullParent = true) MOZ_OVERRIDE; nsresult SetAttr(int32_t aNameSpaceID, nsIAtom* aName, const nsAString& aValue, bool aNotify) { return SetAttr(aNameSpaceID, aName, nullptr, aValue, aNotify); } virtual nsresult SetAttr(int32_t aNameSpaceID, nsIAtom* aName, nsIAtom* aPrefix, const nsAString& aValue, bool aNotify) MOZ_OVERRIDE; virtual nsresult UnsetAttr(int32_t aNameSpaceID, nsIAtom* aAttribute, bool aNotify) MOZ_OVERRIDE; virtual bool IsLink(nsIURI** aURI) const MOZ_OVERRIDE; virtual already_AddRefed GetHrefURI() const MOZ_OVERRIDE; // Element virtual bool ParseAttribute(int32_t aNamespaceID, nsIAtom* aAttribute, const nsAString& aValue, nsAttrValue& aResult) MOZ_OVERRIDE; virtual void GetLinkTarget(nsAString& aTarget) MOZ_OVERRIDE; virtual EventStates IntrinsicState() const MOZ_OVERRIDE; void CreateAndDispatchEvent(nsIDocument* aDoc, const nsAString& aEventName); // WebIDL bool Disabled(); void SetDisabled(bool aDisabled); // XPCOM GetHref is fine. void SetHref(const nsAString& aHref, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::href, aHref, aRv); } void GetCrossOrigin(nsAString& aResult) { // Null for both missing and invalid defaults is ok, since we // always parse to an enum value, so we don't need an invalid // default, and we _want_ the missing default to be null. GetEnumAttr(nsGkAtoms::crossorigin, nullptr, aResult); } void SetCrossOrigin(const nsAString& aCrossOrigin, ErrorResult& aError) { SetOrRemoveNullableStringAttr(nsGkAtoms::crossorigin, aCrossOrigin, aError); } // XPCOM GetRel is fine. void SetRel(const nsAString& aRel, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::rel, aRel, aRv); } nsDOMTokenList* RelList(); // XPCOM GetMedia is fine. void SetMedia(const nsAString& aMedia, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::media, aMedia, aRv); } // XPCOM GetHreflang is fine. void SetHreflang(const nsAString& aHreflang, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::hreflang, aHreflang, aRv); } nsDOMSettableTokenList* Sizes() { return GetTokenList(nsGkAtoms::sizes); } // XPCOM GetType is fine. void SetType(const nsAString& aType, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::type, aType, aRv); } // XPCOM GetCharset is fine. void SetCharset(const nsAString& aCharset, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::charset, aCharset, aRv); } // XPCOM GetRev is fine. void SetRev(const nsAString& aRev, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::rev, aRev, aRv); } // XPCOM GetTarget is fine. void SetTarget(const nsAString& aTarget, ErrorResult& aRv) { SetHTMLAttr(nsGkAtoms::target, aTarget, aRv); } already_AddRefed GetImport(); already_AddRefed GetImportLoader() { return nsRefPtr(mImportLoader).forget(); } protected: virtual ~HTMLLinkElement(); // nsStyleLinkElement virtual already_AddRefed GetStyleSheetURL(bool* aIsInline) MOZ_OVERRIDE; virtual void GetStyleSheetInfo(nsAString& aTitle, nsAString& aType, nsAString& aMedia, bool* aIsScoped, bool* aIsAlternate) MOZ_OVERRIDE; virtual CORSMode GetCORSMode() const; protected: // nsGenericHTMLElement virtual void GetItemValueText(nsAString& text) MOZ_OVERRIDE; virtual void SetItemValueText(const nsAString& text) MOZ_OVERRIDE; nsRefPtr mRelList; private: nsRefPtr mImportLoader; }; } // namespace dom } // namespace mozilla #endif // mozilla_dom_HTMLLinkElement_h