2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +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/. */
|
2006-03-30 08:03:04 +00:00
|
|
|
|
|
|
|
/*
|
2006-03-31 08:41:49 +00:00
|
|
|
* Implementation of DOM Core's nsIDOMAttr node.
|
2006-03-30 08:03:04 +00:00
|
|
|
*/
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
#ifndef mozilla_dom_Attr_h
|
|
|
|
#define mozilla_dom_Attr_h
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-01-22 03:25:51 +00:00
|
|
|
#include "nsIAttribute.h"
|
1999-01-12 08:45:23 +00:00
|
|
|
#include "nsIDOMAttr.h"
|
|
|
|
#include "nsIDOMText.h"
|
|
|
|
#include "nsIDOMNodeList.h"
|
|
|
|
#include "nsString.h"
|
2000-06-23 00:21:32 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsINodeInfo.h"
|
2007-01-04 22:31:26 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2010-05-27 19:10:33 +00:00
|
|
|
#include "nsStubMutationObserver.h"
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
// Attribute helper class used to wrap up an attribute with a dom
|
2011-06-25 07:33:32 +00:00
|
|
|
// object that implements nsIDOMAttr and nsIDOMNode
|
2013-04-09 15:29:44 +00:00
|
|
|
class Attr : public nsIAttribute,
|
|
|
|
public nsIDOMAttr
|
1999-01-12 08:45:23 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-04-09 15:29:44 +00:00
|
|
|
Attr(nsDOMAttributeMap* aAttrMap,
|
|
|
|
already_AddRefed<nsINodeInfo> aNodeInfo,
|
|
|
|
const nsAString& aValue,
|
|
|
|
bool aNsAware);
|
|
|
|
virtual ~Attr() {}
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2005-12-03 07:42:40 +00:00
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 16:46:42 +00:00
|
|
|
// nsIDOMNode interface
|
2012-10-09 12:31:24 +00:00
|
|
|
NS_FORWARD_NSIDOMNODE_TO_NSINODE
|
2013-05-29 20:43:41 +00:00
|
|
|
virtual void GetTextContentInternal(nsAString& aTextContent) MOZ_OVERRIDE;
|
2012-10-09 12:31:24 +00:00
|
|
|
virtual void SetTextContentInternal(const nsAString& aTextContent,
|
2013-05-29 20:43:41 +00:00
|
|
|
ErrorResult& aError) MOZ_OVERRIDE;
|
|
|
|
virtual void GetNodeValueInternal(nsAString& aNodeValue) MOZ_OVERRIDE;
|
2012-10-09 12:31:24 +00:00
|
|
|
virtual void SetNodeValueInternal(const nsAString& aNodeValue,
|
2013-05-29 20:43:41 +00:00
|
|
|
ErrorResult& aError) MOZ_OVERRIDE;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 16:46:42 +00:00
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
// nsIDOMAttr interface
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 16:46:42 +00:00
|
|
|
NS_DECL_NSIDOMATTR
|
2004-01-24 00:46:17 +00:00
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
virtual nsresult PreHandleEvent(nsEventChainPreVisitor& aVisitor) MOZ_OVERRIDE;
|
2011-06-24 02:17:58 +00:00
|
|
|
|
2003-01-22 03:25:51 +00:00
|
|
|
// nsIAttribute interface
|
2013-05-29 20:43:41 +00:00
|
|
|
void SetMap(nsDOMAttributeMap *aMap) MOZ_OVERRIDE;
|
|
|
|
nsIContent *GetContent() const MOZ_OVERRIDE;
|
|
|
|
nsresult SetOwnerDocument(nsIDocument* aDocument) MOZ_OVERRIDE;
|
2005-06-06 08:51:40 +00:00
|
|
|
|
2006-01-25 20:49:56 +00:00
|
|
|
// nsINode interface
|
2013-05-29 20:43:41 +00:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const MOZ_OVERRIDE;
|
|
|
|
virtual uint32_t GetChildCount() const MOZ_OVERRIDE;
|
|
|
|
virtual nsIContent *GetChildAt(uint32_t aIndex) const MOZ_OVERRIDE;
|
|
|
|
virtual nsIContent * const * GetChildArray(uint32_t* aChildCount) const MOZ_OVERRIDE;
|
2012-10-06 07:19:46 +00:00
|
|
|
virtual int32_t IndexOf(const nsINode* aPossibleChild) const MOZ_OVERRIDE;
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual nsresult InsertChildAt(nsIContent* aKid, uint32_t aIndex,
|
2013-05-29 20:43:41 +00:00
|
|
|
bool aNotify) MOZ_OVERRIDE;
|
|
|
|
virtual void RemoveChildAt(uint32_t aIndex, bool aNotify) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult Clone(nsINodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
|
|
|
virtual already_AddRefed<nsIURI> GetBaseURI() const MOZ_OVERRIDE;
|
2006-09-05 10:22:54 +00:00
|
|
|
|
2005-08-19 23:40:42 +00:00
|
|
|
static void Initialize();
|
|
|
|
static void Shutdown();
|
|
|
|
|
2013-05-06 23:37:47 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_AMBIGUOUS(Attr,
|
|
|
|
nsIAttribute)
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2012-04-25 13:47:30 +00:00
|
|
|
virtual nsIDOMNode* AsDOMNode() { return this; }
|
2013-04-09 15:29:47 +00:00
|
|
|
|
|
|
|
// WebIDL
|
2013-04-25 16:29:54 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
2013-04-09 15:29:47 +00:00
|
|
|
|
|
|
|
// XPCOM GetName() is OK
|
|
|
|
// XPCOM GetValue() is OK
|
|
|
|
|
|
|
|
void SetValue(const nsAString& aValue, ErrorResult& aRv);
|
|
|
|
|
|
|
|
bool Specified() const;
|
|
|
|
|
|
|
|
// XPCOM GetNamespaceURI() is OK
|
|
|
|
// XPCOM GetPrefix() is OK
|
|
|
|
// XPCOM GetLocalName() is OK
|
|
|
|
|
|
|
|
Element* GetOwnerElement(ErrorResult& aRv);
|
|
|
|
|
2005-08-19 23:40:42 +00:00
|
|
|
protected:
|
2013-05-04 07:55:53 +00:00
|
|
|
virtual Element* GetNameSpaceElement()
|
2010-04-19 15:40:16 +00:00
|
|
|
{
|
2010-07-30 13:42:11 +00:00
|
|
|
return GetContentInternal();
|
2010-04-19 15:40:16 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool sInitialized;
|
1999-01-12 08:45:23 +00:00
|
|
|
|
|
|
|
private:
|
2009-12-28 14:35:06 +00:00
|
|
|
already_AddRefed<nsIAtom> GetNameAtom(nsIContent* aContent);
|
2013-05-04 07:55:53 +00:00
|
|
|
Element* GetContentInternal() const;
|
2012-04-03 07:25:39 +00:00
|
|
|
|
|
|
|
nsString mValue;
|
1999-01-12 08:45:23 +00:00
|
|
|
};
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
#endif /* mozilla_dom_Attr_h */
|