/usr/include/thunderbird/nsIIconURI.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIIconURI.idl
*/
#ifndef __gen_nsIIconURI_h__
#define __gen_nsIIconURI_h__
#ifndef __gen_nsIURL_h__
#include "nsIURL.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: nsIMozIconURI */
#define NS_IMOZICONURI_IID_STR "da53adda-cbe3-41bc-a57d-fdd7a0ff448b"
#define NS_IMOZICONURI_IID \
{0xda53adda, 0xcbe3, 0x41bc, \
{ 0xa5, 0x7d, 0xfd, 0xd7, 0xa0, 0xff, 0x44, 0x8b }}
class NS_NO_VTABLE nsIMozIconURI : public nsIURI {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMOZICONURI_IID)
/* attribute nsIURL iconURL; */
NS_IMETHOD GetIconURL(nsIURL * *aIconURL) = 0;
NS_IMETHOD SetIconURL(nsIURL *aIconURL) = 0;
/* attribute unsigned long imageSize; */
NS_IMETHOD GetImageSize(uint32_t *aImageSize) = 0;
NS_IMETHOD SetImageSize(uint32_t aImageSize) = 0;
/* readonly attribute ACString stockIcon; */
NS_IMETHOD GetStockIcon(nsACString & aStockIcon) = 0;
/* readonly attribute ACString iconSize; */
NS_IMETHOD GetIconSize(nsACString & aIconSize) = 0;
/* readonly attribute ACString iconState; */
NS_IMETHOD GetIconState(nsACString & aIconState) = 0;
/* attribute ACString contentType; */
NS_IMETHOD GetContentType(nsACString & aContentType) = 0;
NS_IMETHOD SetContentType(const nsACString & aContentType) = 0;
/* readonly attribute ACString fileExtension; */
NS_IMETHOD GetFileExtension(nsACString & aFileExtension) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMozIconURI, NS_IMOZICONURI_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMOZICONURI \
NS_IMETHOD GetIconURL(nsIURL * *aIconURL) override; \
NS_IMETHOD SetIconURL(nsIURL *aIconURL) override; \
NS_IMETHOD GetImageSize(uint32_t *aImageSize) override; \
NS_IMETHOD SetImageSize(uint32_t aImageSize) override; \
NS_IMETHOD GetStockIcon(nsACString & aStockIcon) override; \
NS_IMETHOD GetIconSize(nsACString & aIconSize) override; \
NS_IMETHOD GetIconState(nsACString & aIconState) override; \
NS_IMETHOD GetContentType(nsACString & aContentType) override; \
NS_IMETHOD SetContentType(const nsACString & aContentType) override; \
NS_IMETHOD GetFileExtension(nsACString & aFileExtension) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMOZICONURI(_to) \
NS_IMETHOD GetIconURL(nsIURL * *aIconURL) override { return _to GetIconURL(aIconURL); } \
NS_IMETHOD SetIconURL(nsIURL *aIconURL) override { return _to SetIconURL(aIconURL); } \
NS_IMETHOD GetImageSize(uint32_t *aImageSize) override { return _to GetImageSize(aImageSize); } \
NS_IMETHOD SetImageSize(uint32_t aImageSize) override { return _to SetImageSize(aImageSize); } \
NS_IMETHOD GetStockIcon(nsACString & aStockIcon) override { return _to GetStockIcon(aStockIcon); } \
NS_IMETHOD GetIconSize(nsACString & aIconSize) override { return _to GetIconSize(aIconSize); } \
NS_IMETHOD GetIconState(nsACString & aIconState) override { return _to GetIconState(aIconState); } \
NS_IMETHOD GetContentType(nsACString & aContentType) override { return _to GetContentType(aContentType); } \
NS_IMETHOD SetContentType(const nsACString & aContentType) override { return _to SetContentType(aContentType); } \
NS_IMETHOD GetFileExtension(nsACString & aFileExtension) override { return _to GetFileExtension(aFileExtension); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMOZICONURI(_to) \
NS_IMETHOD GetIconURL(nsIURL * *aIconURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIconURL(aIconURL); } \
NS_IMETHOD SetIconURL(nsIURL *aIconURL) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetIconURL(aIconURL); } \
NS_IMETHOD GetImageSize(uint32_t *aImageSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageSize(aImageSize); } \
NS_IMETHOD SetImageSize(uint32_t aImageSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetImageSize(aImageSize); } \
NS_IMETHOD GetStockIcon(nsACString & aStockIcon) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStockIcon(aStockIcon); } \
NS_IMETHOD GetIconSize(nsACString & aIconSize) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIconSize(aIconSize); } \
NS_IMETHOD GetIconState(nsACString & aIconState) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIconState(aIconState); } \
NS_IMETHOD GetContentType(nsACString & aContentType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetContentType(aContentType); } \
NS_IMETHOD SetContentType(const nsACString & aContentType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetContentType(aContentType); } \
NS_IMETHOD GetFileExtension(nsACString & aFileExtension) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFileExtension(aFileExtension); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMozIconURI : public nsIMozIconURI
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMOZICONURI
nsMozIconURI();
private:
~nsMozIconURI();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMozIconURI, nsIMozIconURI)
nsMozIconURI::nsMozIconURI()
{
/* member initializers and constructor code */
}
nsMozIconURI::~nsMozIconURI()
{
/* destructor code */
}
/* attribute nsIURL iconURL; */
NS_IMETHODIMP nsMozIconURI::GetIconURL(nsIURL * *aIconURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMozIconURI::SetIconURL(nsIURL *aIconURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long imageSize; */
NS_IMETHODIMP nsMozIconURI::GetImageSize(uint32_t *aImageSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMozIconURI::SetImageSize(uint32_t aImageSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString stockIcon; */
NS_IMETHODIMP nsMozIconURI::GetStockIcon(nsACString & aStockIcon)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString iconSize; */
NS_IMETHODIMP nsMozIconURI::GetIconSize(nsACString & aIconSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString iconState; */
NS_IMETHODIMP nsMozIconURI::GetIconState(nsACString & aIconState)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute ACString contentType; */
NS_IMETHODIMP nsMozIconURI::GetContentType(nsACString & aContentType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsMozIconURI::SetContentType(const nsACString & aContentType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute ACString fileExtension; */
NS_IMETHODIMP nsMozIconURI::GetFileExtension(nsACString & aFileExtension)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
// CID for nsMozIconURI, if implemented on this platform.
#define NS_MOZICONURI_CID \
{ \
0x43a88e0e, \
0x2d37, \
0x11d5, \
{ 0x99, 0x7, 0x0, 0x10, 0x83, 0x1, 0xe, 0x9b } \
}
#endif /* __gen_nsIIconURI_h__ */
|