2008-10-15 13:40:28 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +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/. */
|
2008-10-15 13:40:28 +04:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
#ifndef nsTextNode_h
|
|
|
|
#define nsTextNode_h
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
/*
|
|
|
|
* Implementation of DOM Core's nsIDOMText node.
|
|
|
|
*/
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-02-22 18:56:29 +04:00
|
|
|
#include "mozilla/dom/Text.h"
|
2008-10-15 13:40:28 +04:00
|
|
|
#include "nsIDOMText.h"
|
2013-01-04 21:02:14 +04:00
|
|
|
#include "nsDebug.h"
|
2011-08-11 17:29:50 +04:00
|
|
|
|
2013-04-04 16:01:08 +04:00
|
|
|
class nsNodeInfoManager;
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
/**
|
|
|
|
* Class used to implement DOM text nodes
|
|
|
|
*/
|
2013-02-22 18:56:29 +04:00
|
|
|
class nsTextNode : public mozilla::dom::Text,
|
2008-10-15 13:40:28 +04:00
|
|
|
public nsIDOMText
|
|
|
|
{
|
2013-04-04 16:01:08 +04:00
|
|
|
private:
|
|
|
|
void Init()
|
2013-01-04 21:02:14 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mNodeInfo->NodeType() == nsIDOMNode::TEXT_NODE,
|
|
|
|
"Bad NodeType in aNodeInfo");
|
2013-01-04 21:02:14 +04:00
|
|
|
}
|
|
|
|
|
2013-04-04 16:01:08 +04:00
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit nsTextNode(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-04-04 16:01:08 +04:00
|
|
|
: mozilla::dom::Text(aNodeInfo)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit nsTextNode(nsNodeInfoManager* aNodeInfoManager)
|
2013-04-04 16:01:08 +04:00
|
|
|
: mozilla::dom::Text(aNodeInfoManager->GetTextNodeInfo())
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMNode
|
2012-10-09 16:31:24 +04:00
|
|
|
NS_FORWARD_NSIDOMNODE_TO_NSINODE
|
2008-10-15 13:40:28 +04:00
|
|
|
|
|
|
|
// nsIDOMCharacterData
|
|
|
|
NS_FORWARD_NSIDOMCHARACTERDATA(nsGenericDOMDataNode::)
|
2013-07-17 18:09:04 +04:00
|
|
|
using nsGenericDOMDataNode::SetData; // Prevent hiding overloaded virtual function.
|
2008-10-15 13:40:28 +04:00
|
|
|
|
|
|
|
// nsIDOMText
|
|
|
|
NS_FORWARD_NSIDOMTEXT(nsGenericDOMDataNode::)
|
|
|
|
|
2011-06-14 11:56:48 +04:00
|
|
|
// nsINode
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const override;
|
2011-06-14 11:56:48 +04:00
|
|
|
|
2014-06-20 06:01:40 +04:00
|
|
|
virtual nsGenericDOMDataNode* CloneDataNode(mozilla::dom::NodeInfo *aNodeInfo,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aCloneText) const override;
|
2011-06-14 11:56:48 +04:00
|
|
|
|
2012-11-21 14:13:57 +04:00
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aCompileEventHandlers) override;
|
2012-11-21 14:13:57 +04:00
|
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aNullParent = true) override;
|
2012-11-21 14:13:57 +04:00
|
|
|
|
2014-01-04 19:02:17 +04:00
|
|
|
nsresult AppendTextForNormalize(const char16_t* aBuffer, uint32_t aLength,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aNotify, nsIContent* aNextSibling);
|
2011-08-16 04:55:20 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIDOMNode* AsDOMNode() override { return this; }
|
2012-04-25 17:47:30 +04:00
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
|
|
|
virtual void DumpContent(FILE* out, int32_t aIndent, bool aDumpAll) const override;
|
2008-10-15 13:40:28 +04:00
|
|
|
#endif
|
2013-01-04 21:02:14 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~nsTextNode();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2008-10-15 13:40:28 +04:00
|
|
|
};
|
2013-01-04 21:02:14 +04:00
|
|
|
|
|
|
|
#endif // nsTextNode_h
|