Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIPlaintextEditor.idl
*/
#ifndef __gen_nsIPlaintextEditor_h__
#define __gen_nsIPlaintextEditor_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIPlaintextEditor */
#define NS_IPLAINTEXTEDITOR_IID_STR "b74fb158-1265-4102-91eb-edd0136b49f8"
#define NS_IPLAINTEXTEDITOR_IID \
{0xb74fb158, 0x1265, 0x4102, \
{ 0x91, 0xeb, 0xed, 0xd0, 0x13, 0x6b, 0x49, 0xf8 }}
class NS_NO_VTABLE nsIPlaintextEditor : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPLAINTEXTEDITOR_IID)
enum {
eEditorPlaintextMask = 1,
eEditorSingleLineMask = 2,
eEditorPasswordMask = 4,
eEditorReadonlyMask = 8,
eEditorDisabledMask = 16,
eEditorFilterInputMask = 32,
eEditorMailMask = 64,
eEditorEnableWrapHackMask = 128,
eEditorWidgetMask = 256,
eEditorNoCSSMask = 512,
eEditorAllowInteraction = 1024,
eEditorDontEchoPassword = 2048,
eEditorRightToLeft = 4096,
eEditorLeftToRight = 8192,
eEditorSkipSpellCheck = 16384,
eNewlinesPasteIntact = 0,
eNewlinesPasteToFirst = 1,
eNewlinesReplaceWithSpaces = 2,
eNewlinesStrip = 3,
eNewlinesReplaceWithCommas = 4,
eNewlinesStripSurroundingWhitespace = 5
};
/* readonly attribute long textLength; */
NS_IMETHOD GetTextLength(int32_t *aTextLength) = 0;
/* attribute long maxTextLength; */
NS_IMETHOD GetMaxTextLength(int32_t *aMaxTextLength) = 0;
NS_IMETHOD SetMaxTextLength(int32_t aMaxTextLength) = 0;
/* attribute long wrapWidth; */
NS_IMETHOD GetWrapWidth(int32_t *aWrapWidth) = 0;
NS_IMETHOD SetWrapWidth(int32_t aWrapWidth) = 0;
/* void setWrapColumn (in long aWrapColumn); */
NS_IMETHOD SetWrapColumn(int32_t aWrapColumn) = 0;
/* attribute long newlineHandling; */
NS_IMETHOD GetNewlineHandling(int32_t *aNewlineHandling) = 0;
NS_IMETHOD SetNewlineHandling(int32_t aNewlineHandling) = 0;
/* void insertText (in DOMString aStringToInsert); */
NS_IMETHOD InsertText(const nsAString & aStringToInsert) = 0;
/* void insertLineBreak (); */
NS_IMETHOD InsertLineBreak(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPlaintextEditor, NS_IPLAINTEXTEDITOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPLAINTEXTEDITOR \
NS_IMETHOD GetTextLength(int32_t *aTextLength) override; \
NS_IMETHOD GetMaxTextLength(int32_t *aMaxTextLength) override; \
NS_IMETHOD SetMaxTextLength(int32_t aMaxTextLength) override; \
NS_IMETHOD GetWrapWidth(int32_t *aWrapWidth) override; \
NS_IMETHOD SetWrapWidth(int32_t aWrapWidth) override; \
NS_IMETHOD SetWrapColumn(int32_t aWrapColumn) override; \
NS_IMETHOD GetNewlineHandling(int32_t *aNewlineHandling) override; \
NS_IMETHOD SetNewlineHandling(int32_t aNewlineHandling) override; \
NS_IMETHOD InsertText(const nsAString & aStringToInsert) override; \
NS_IMETHOD InsertLineBreak(void) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIPLAINTEXTEDITOR \
NS_METHOD GetTextLength(int32_t *aTextLength); \
NS_METHOD GetMaxTextLength(int32_t *aMaxTextLength); \
NS_METHOD SetMaxTextLength(int32_t aMaxTextLength); \
NS_METHOD GetWrapWidth(int32_t *aWrapWidth); \
NS_METHOD SetWrapWidth(int32_t aWrapWidth); \
NS_METHOD SetWrapColumn(int32_t aWrapColumn); \
NS_METHOD GetNewlineHandling(int32_t *aNewlineHandling); \
NS_METHOD SetNewlineHandling(int32_t aNewlineHandling); \
NS_METHOD InsertText(const nsAString & aStringToInsert); \
NS_METHOD InsertLineBreak(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPLAINTEXTEDITOR(_to) \
NS_IMETHOD GetTextLength(int32_t *aTextLength) override { return _to GetTextLength(aTextLength); } \
NS_IMETHOD GetMaxTextLength(int32_t *aMaxTextLength) override { return _to GetMaxTextLength(aMaxTextLength); } \
NS_IMETHOD SetMaxTextLength(int32_t aMaxTextLength) override { return _to SetMaxTextLength(aMaxTextLength); } \
NS_IMETHOD GetWrapWidth(int32_t *aWrapWidth) override { return _to GetWrapWidth(aWrapWidth); } \
NS_IMETHOD SetWrapWidth(int32_t aWrapWidth) override { return _to SetWrapWidth(aWrapWidth); } \
NS_IMETHOD SetWrapColumn(int32_t aWrapColumn) override { return _to SetWrapColumn(aWrapColumn); } \
NS_IMETHOD GetNewlineHandling(int32_t *aNewlineHandling) override { return _to GetNewlineHandling(aNewlineHandling); } \
NS_IMETHOD SetNewlineHandling(int32_t aNewlineHandling) override { return _to SetNewlineHandling(aNewlineHandling); } \
NS_IMETHOD InsertText(const nsAString & aStringToInsert) override { return _to InsertText(aStringToInsert); } \
NS_IMETHOD InsertLineBreak(void) override { return _to InsertLineBreak(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPLAINTEXTEDITOR(_to) \
NS_IMETHOD GetTextLength(int32_t *aTextLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTextLength(aTextLength); } \
NS_IMETHOD GetMaxTextLength(int32_t *aMaxTextLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMaxTextLength(aMaxTextLength); } \
NS_IMETHOD SetMaxTextLength(int32_t aMaxTextLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMaxTextLength(aMaxTextLength); } \
NS_IMETHOD GetWrapWidth(int32_t *aWrapWidth) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWrapWidth(aWrapWidth); } \
NS_IMETHOD SetWrapWidth(int32_t aWrapWidth) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWrapWidth(aWrapWidth); } \
NS_IMETHOD SetWrapColumn(int32_t aWrapColumn) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWrapColumn(aWrapColumn); } \
NS_IMETHOD GetNewlineHandling(int32_t *aNewlineHandling) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewlineHandling(aNewlineHandling); } \
NS_IMETHOD SetNewlineHandling(int32_t aNewlineHandling) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetNewlineHandling(aNewlineHandling); } \
NS_IMETHOD InsertText(const nsAString & aStringToInsert) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InsertText(aStringToInsert); } \
NS_IMETHOD InsertLineBreak(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InsertLineBreak(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPlaintextEditor : public nsIPlaintextEditor
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPLAINTEXTEDITOR
nsPlaintextEditor();
private:
~nsPlaintextEditor();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPlaintextEditor, nsIPlaintextEditor)
nsPlaintextEditor::nsPlaintextEditor()
{
/* member initializers and constructor code */
}
nsPlaintextEditor::~nsPlaintextEditor()
{
/* destructor code */
}
/* readonly attribute long textLength; */
NS_IMETHODIMP nsPlaintextEditor::GetTextLength(int32_t *aTextLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long maxTextLength; */
NS_IMETHODIMP nsPlaintextEditor::GetMaxTextLength(int32_t *aMaxTextLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPlaintextEditor::SetMaxTextLength(int32_t aMaxTextLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long wrapWidth; */
NS_IMETHODIMP nsPlaintextEditor::GetWrapWidth(int32_t *aWrapWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPlaintextEditor::SetWrapWidth(int32_t aWrapWidth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setWrapColumn (in long aWrapColumn); */
NS_IMETHODIMP nsPlaintextEditor::SetWrapColumn(int32_t aWrapColumn)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long newlineHandling; */
NS_IMETHODIMP nsPlaintextEditor::GetNewlineHandling(int32_t *aNewlineHandling)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPlaintextEditor::SetNewlineHandling(int32_t aNewlineHandling)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void insertText (in DOMString aStringToInsert); */
NS_IMETHODIMP nsPlaintextEditor::InsertText(const nsAString & aStringToInsert)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void insertLineBreak (); */
NS_IMETHODIMP nsPlaintextEditor::InsertLineBreak()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPlaintextEditor_h__ */