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-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/. */
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
#ifndef mozilla_dom_ProcessingInstruction_h
|
|
|
|
#define mozilla_dom_ProcessingInstruction_h
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2002-09-04 10:57:25 +04:00
|
|
|
#include "nsIDOMProcessingInstruction.h"
|
|
|
|
#include "nsGenericDOMDataNode.h"
|
|
|
|
#include "nsAString.h"
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
class ProcessingInstruction : public nsGenericDOMDataNode,
|
|
|
|
public nsIDOMProcessingInstruction
|
2002-09-04 10:57:25 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-06-20 06:01:40 +04:00
|
|
|
ProcessingInstruction(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2013-01-09 00:45:06 +04:00
|
|
|
const nsAString& aData);
|
2002-09-04 10:57:25 +04:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMNode
|
2012-10-09 16:31:24 +04:00
|
|
|
NS_FORWARD_NSIDOMNODE_TO_NSINODE
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2011-09-20 09:08:00 +04:00
|
|
|
// nsIDOMCharacterData
|
|
|
|
NS_FORWARD_NSIDOMCHARACTERDATA(nsGenericDOMDataNode::)
|
2013-07-17 18:09:04 +04:00
|
|
|
using nsGenericDOMDataNode::SetData; // Prevent hiding overloaded virtual function.
|
2011-09-20 09:08:00 +04:00
|
|
|
|
2002-09-04 10:57:25 +04:00
|
|
|
// nsIDOMProcessingInstruction
|
|
|
|
NS_DECL_NSIDOMPROCESSINGINSTRUCTION
|
|
|
|
|
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;
|
2002-09-04 10:57:25 +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;
|
2002-09-04 10:57:25 +04:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIDOMNode* AsDOMNode() override { return this; }
|
2013-01-09 00:45:06 +04:00
|
|
|
|
|
|
|
// WebIDL API
|
|
|
|
void GetTarget(nsString& aTarget)
|
|
|
|
{
|
|
|
|
aTarget = NodeName();
|
|
|
|
}
|
2002-09-04 10:57:25 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~ProcessingInstruction();
|
|
|
|
|
2006-03-17 17:38:57 +03:00
|
|
|
/**
|
|
|
|
* This will parse the content of the PI, to extract the value of the pseudo
|
|
|
|
* attribute with the name specified in aName. See
|
|
|
|
* http://www.w3.org/TR/xml-stylesheet/#NT-StyleSheetPI for the specification
|
|
|
|
* which is used to parse the content of the PI.
|
|
|
|
*
|
|
|
|
* @param aName the name of the attribute to get the value for
|
|
|
|
* @param aValue [out] the value for the attribute with name specified in
|
|
|
|
* aAttribute. Empty if the attribute isn't present.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetAttrValue(nsIAtom *aName, nsAString& aValue);
|
2013-01-09 00:45:06 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2002-09-04 10:57:25 +04:00
|
|
|
};
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-04-04 16:01:11 +04:00
|
|
|
/**
|
|
|
|
* aNodeInfoManager must not be null.
|
|
|
|
*/
|
|
|
|
already_AddRefed<mozilla::dom::ProcessingInstruction>
|
|
|
|
NS_NewXMLProcessingInstruction(nsNodeInfoManager *aNodeInfoManager,
|
|
|
|
const nsAString& aTarget,
|
|
|
|
const nsAString& aData);
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
#endif // mozilla_dom_ProcessingInstruction_h
|