/usr/include/firefox/nsIDOMHTMLFontElement.h is in firefox-dev 11.0+build1-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/firefox-11.0+build1/build-tree/mozilla/dom/interfaces/html/nsIDOMHTMLFontElement.idl
*/
#ifndef __gen_nsIDOMHTMLFontElement_h__
#define __gen_nsIDOMHTMLFontElement_h__
#ifndef __gen_nsIDOMHTMLElement_h__
#include "nsIDOMHTMLElement.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: nsIDOMHTMLFontElement */
#define NS_IDOMHTMLFONTELEMENT_IID_STR "e044a106-3f5c-44d6-a49a-a0a0b8eb1b56"
#define NS_IDOMHTMLFONTELEMENT_IID \
{0xe044a106, 0x3f5c, 0x44d6, \
{ 0xa4, 0x9a, 0xa0, 0xa0, 0xb8, 0xeb, 0x1b, 0x56 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLFontElement : public nsIDOMHTMLElement {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLFONTELEMENT_IID)
/* attribute DOMString color; */
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) = 0;
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) = 0;
/* attribute DOMString face; */
NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace) = 0;
NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace) = 0;
/* attribute DOMString size; */
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) = 0;
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLFontElement, NS_IDOMHTMLFONTELEMENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHTMLFONTELEMENT \
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor); \
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor); \
NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace); \
NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace); \
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize); \
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHTMLFONTELEMENT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) { return _to GetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) { return _to SetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace) { return _to GetFace(aFace); } \
NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace) { return _to SetFace(aFace); } \
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) { return _to GetSize(aSize); } \
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) { return _to SetSize(aSize); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHTMLFONTELEMENT(_to) \
NS_SCRIPTABLE NS_IMETHOD GetColor(nsAString & aColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD SetColor(const nsAString & aColor) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetColor(aColor); } \
NS_SCRIPTABLE NS_IMETHOD GetFace(nsAString & aFace) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFace(aFace); } \
NS_SCRIPTABLE NS_IMETHOD SetFace(const nsAString & aFace) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFace(aFace); } \
NS_SCRIPTABLE NS_IMETHOD GetSize(nsAString & aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSize(aSize); } \
NS_SCRIPTABLE NS_IMETHOD SetSize(const nsAString & aSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSize(aSize); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHTMLFontElement : public nsIDOMHTMLFontElement
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHTMLFONTELEMENT
nsDOMHTMLFontElement();
private:
~nsDOMHTMLFontElement();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMHTMLFontElement, nsIDOMHTMLFontElement)
nsDOMHTMLFontElement::nsDOMHTMLFontElement()
{
/* member initializers and constructor code */
}
nsDOMHTMLFontElement::~nsDOMHTMLFontElement()
{
/* destructor code */
}
/* attribute DOMString color; */
NS_IMETHODIMP nsDOMHTMLFontElement::GetColor(nsAString & aColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLFontElement::SetColor(const nsAString & aColor)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString face; */
NS_IMETHODIMP nsDOMHTMLFontElement::GetFace(nsAString & aFace)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLFontElement::SetFace(const nsAString & aFace)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute DOMString size; */
NS_IMETHODIMP nsDOMHTMLFontElement::GetSize(nsAString & aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsDOMHTMLFontElement::SetSize(const nsAString & aSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHTMLFontElement_h__ */
|