Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIEditorStyleSheets.idl
*/
#ifndef __gen_nsIEditorStyleSheets_h__
#define __gen_nsIEditorStyleSheets_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
namespace mozilla {
class CSSStyleSheet;
} // namespace mozilla
/* starting interface: nsIEditorStyleSheets */
#define NS_IEDITORSTYLESHEETS_IID_STR "4805e682-49b9-11d3-9ce4-ed60bd6cb5bc"
#define NS_IEDITORSTYLESHEETS_IID \
{0x4805e682, 0x49b9, 0x11d3, \
{ 0x9c, 0xe4, 0xed, 0x60, 0xbd, 0x6c, 0xb5, 0xbc }}
class NS_NO_VTABLE nsIEditorStyleSheets : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IEDITORSTYLESHEETS_IID)
/* void replaceStyleSheet (in AString aURL); */
NS_IMETHOD ReplaceStyleSheet(const nsAString & aURL) = 0;
/* void addStyleSheet (in AString aURL); */
NS_IMETHOD AddStyleSheet(const nsAString & aURL) = 0;
/* void replaceOverrideStyleSheet (in AString aURL); */
NS_IMETHOD ReplaceOverrideStyleSheet(const nsAString & aURL) = 0;
/* void addOverrideStyleSheet (in AString aURL); */
NS_IMETHOD AddOverrideStyleSheet(const nsAString & aURL) = 0;
/* void removeStyleSheet (in AString aURL); */
NS_IMETHOD RemoveStyleSheet(const nsAString & aURL) = 0;
/* void removeOverrideStyleSheet (in AString aURL); */
NS_IMETHOD RemoveOverrideStyleSheet(const nsAString & aURL) = 0;
/* void enableStyleSheet (in AString aURL, in boolean aEnable); */
NS_IMETHOD EnableStyleSheet(const nsAString & aURL, bool aEnable) = 0;
/* [noscript] CSSStyleSheet getStyleSheetForURL (in AString aURL); */
NS_IMETHOD GetStyleSheetForURL(const nsAString & aURL, mozilla::CSSStyleSheet **_retval) = 0;
/* [noscript] AString getURLForStyleSheet (in CSSStyleSheet aStyleSheet); */
NS_IMETHOD GetURLForStyleSheet(mozilla::CSSStyleSheet *aStyleSheet, nsAString & _retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIEditorStyleSheets, NS_IEDITORSTYLESHEETS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIEDITORSTYLESHEETS \
NS_IMETHOD ReplaceStyleSheet(const nsAString & aURL) override; \
NS_IMETHOD AddStyleSheet(const nsAString & aURL) override; \
NS_IMETHOD ReplaceOverrideStyleSheet(const nsAString & aURL) override; \
NS_IMETHOD AddOverrideStyleSheet(const nsAString & aURL) override; \
NS_IMETHOD RemoveStyleSheet(const nsAString & aURL) override; \
NS_IMETHOD RemoveOverrideStyleSheet(const nsAString & aURL) override; \
NS_IMETHOD EnableStyleSheet(const nsAString & aURL, bool aEnable) override; \
NS_IMETHOD GetStyleSheetForURL(const nsAString & aURL, mozilla::CSSStyleSheet **_retval) override; \
NS_IMETHOD GetURLForStyleSheet(mozilla::CSSStyleSheet *aStyleSheet, nsAString & _retval) 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_NSIEDITORSTYLESHEETS \
NS_METHOD ReplaceStyleSheet(const nsAString & aURL); \
NS_METHOD AddStyleSheet(const nsAString & aURL); \
NS_METHOD ReplaceOverrideStyleSheet(const nsAString & aURL); \
NS_METHOD AddOverrideStyleSheet(const nsAString & aURL); \
NS_METHOD RemoveStyleSheet(const nsAString & aURL); \
NS_METHOD RemoveOverrideStyleSheet(const nsAString & aURL); \
NS_METHOD EnableStyleSheet(const nsAString & aURL, bool aEnable); \
NS_METHOD GetStyleSheetForURL(const nsAString & aURL, mozilla::CSSStyleSheet **_retval); \
NS_METHOD GetURLForStyleSheet(mozilla::CSSStyleSheet *aStyleSheet, nsAString & _retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIEDITORSTYLESHEETS(_to) \
NS_IMETHOD ReplaceStyleSheet(const nsAString & aURL) override { return _to ReplaceStyleSheet(aURL); } \
NS_IMETHOD AddStyleSheet(const nsAString & aURL) override { return _to AddStyleSheet(aURL); } \
NS_IMETHOD ReplaceOverrideStyleSheet(const nsAString & aURL) override { return _to ReplaceOverrideStyleSheet(aURL); } \
NS_IMETHOD AddOverrideStyleSheet(const nsAString & aURL) override { return _to AddOverrideStyleSheet(aURL); } \
NS_IMETHOD RemoveStyleSheet(const nsAString & aURL) override { return _to RemoveStyleSheet(aURL); } \
NS_IMETHOD RemoveOverrideStyleSheet(const nsAString & aURL) override { return _to RemoveOverrideStyleSheet(aURL); } \
NS_IMETHOD EnableStyleSheet(const nsAString & aURL, bool aEnable) override { return _to EnableStyleSheet(aURL, aEnable); } \
NS_IMETHOD GetStyleSheetForURL(const nsAString & aURL, mozilla::CSSStyleSheet **_retval) override { return _to GetStyleSheetForURL(aURL, _retval); } \
NS_IMETHOD GetURLForStyleSheet(mozilla::CSSStyleSheet *aStyleSheet, nsAString & _retval) override { return _to GetURLForStyleSheet(aStyleSheet, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIEDITORSTYLESHEETS(_to) \
NS_IMETHOD ReplaceStyleSheet(const nsAString & aURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ReplaceStyleSheet(aURL); } \
NS_IMETHOD AddStyleSheet(const nsAString & aURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddStyleSheet(aURL); } \
NS_IMETHOD ReplaceOverrideStyleSheet(const nsAString & aURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ReplaceOverrideStyleSheet(aURL); } \
NS_IMETHOD AddOverrideStyleSheet(const nsAString & aURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddOverrideStyleSheet(aURL); } \
NS_IMETHOD RemoveStyleSheet(const nsAString & aURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveStyleSheet(aURL); } \
NS_IMETHOD RemoveOverrideStyleSheet(const nsAString & aURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveOverrideStyleSheet(aURL); } \
NS_IMETHOD EnableStyleSheet(const nsAString & aURL, bool aEnable) override { return !_to ? NS_ERROR_NULL_POINTER : _to->EnableStyleSheet(aURL, aEnable); } \
NS_IMETHOD GetStyleSheetForURL(const nsAString & aURL, mozilla::CSSStyleSheet **_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStyleSheetForURL(aURL, _retval); } \
NS_IMETHOD GetURLForStyleSheet(mozilla::CSSStyleSheet *aStyleSheet, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetURLForStyleSheet(aStyleSheet, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsEditorStyleSheets : public nsIEditorStyleSheets
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIEDITORSTYLESHEETS
nsEditorStyleSheets();
private:
~nsEditorStyleSheets();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsEditorStyleSheets, nsIEditorStyleSheets)
nsEditorStyleSheets::nsEditorStyleSheets()
{
/* member initializers and constructor code */
}
nsEditorStyleSheets::~nsEditorStyleSheets()
{
/* destructor code */
}
/* void replaceStyleSheet (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::ReplaceStyleSheet(const nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addStyleSheet (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::AddStyleSheet(const nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void replaceOverrideStyleSheet (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::ReplaceOverrideStyleSheet(const nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addOverrideStyleSheet (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::AddOverrideStyleSheet(const nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeStyleSheet (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::RemoveStyleSheet(const nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeOverrideStyleSheet (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::RemoveOverrideStyleSheet(const nsAString & aURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void enableStyleSheet (in AString aURL, in boolean aEnable); */
NS_IMETHODIMP nsEditorStyleSheets::EnableStyleSheet(const nsAString & aURL, bool aEnable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] CSSStyleSheet getStyleSheetForURL (in AString aURL); */
NS_IMETHODIMP nsEditorStyleSheets::GetStyleSheetForURL(const nsAString & aURL, mozilla::CSSStyleSheet **_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] AString getURLForStyleSheet (in CSSStyleSheet aStyleSheet); */
NS_IMETHODIMP nsEditorStyleSheets::GetURLForStyleSheet(mozilla::CSSStyleSheet *aStyleSheet, nsAString & _retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIEditorStyleSheets_h__ */