gecko-dev/dom/base/nsIContentSerializer.h

76 lines
2.6 KiB
C
Raw Normal View History

/* -*- 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/. */
2000-09-09 21:47:23 +00:00
#ifndef nsIContentSerializer_h
#define nsIContentSerializer_h
2000-09-09 21:47:23 +00:00
#include "nsISupports.h"
class nsIContent;
class nsIDocument;
class nsAString;
2000-09-09 21:47:23 +00:00
namespace mozilla {
namespace dom {
class Element;
} // namespace dom
} // namespace mozilla
2000-09-09 21:47:23 +00:00
#define NS_ICONTENTSERIALIZER_IID \
{ 0x18a66082, 0x793f, 0x47f4, \
{ 0xa1, 0xf0, 0xf0, 0xe4, 0x22, 0x9e, 0x52, 0x79 } }
2000-09-09 21:47:23 +00:00
class nsIContentSerializer : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTENTSERIALIZER_IID)
2000-09-09 21:47:23 +00:00
NS_IMETHOD Init(nsIDocument* aDoc, uint32_t flags,
uint32_t aWrapColumn, const char* aCharSet,
bool aIsCopying, bool aIsWholeDocument) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendText(nsIContent* aText, int32_t aStartOffset,
int32_t aEndOffset, nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendCDATASection(nsIContent* aCDATASection,
int32_t aStartOffset, int32_t aEndOffset,
nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendProcessingInstruction(nsIContent* aPI,
int32_t aStartOffset,
int32_t aEndOffset,
nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendComment(nsIContent* aComment, int32_t aStartOffset,
int32_t aEndOffset, nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendDoctype(nsIContent *aDoctype,
nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendElementStart(mozilla::dom::Element* aElement,
mozilla::dom::Element* aOriginalElement,
nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
NS_IMETHOD AppendElementEnd(mozilla::dom::Element* aElement,
nsAString& aStr) = 0;
NS_IMETHOD Flush(nsAString& aStr) = 0;
/**
* Append any items in the beginning of the document that won't be
* serialized by other methods. XML declaration is the most likely
* thing this method can produce.
*/
NS_IMETHOD AppendDocumentStart(nsIDocument *aDocument,
nsAString& aStr) = 0;
2000-09-09 21:47:23 +00:00
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIContentSerializer, NS_ICONTENTSERIALIZER_IID)
#define NS_CONTENTSERIALIZER_CONTRACTID_PREFIX \
"@mozilla.org/layout/contentserializer;1?mimetype="
2000-09-09 21:47:23 +00:00
#endif /* nsIContentSerializer_h */