|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/accessible/public/nsIAccessibleImage.idl
*/
#ifndef __gen_nsIAccessibleImage_h__
#define __gen_nsIAccessibleImage_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: nsIAccessibleImage */
#define NS_IACCESSIBLEIMAGE_IID_STR "09086623-0f09-4310-ac56-c2cda7c29648"
#define NS_IACCESSIBLEIMAGE_IID \
{0x09086623, 0x0f09, 0x4310, \
{ 0xac, 0x56, 0xc2, 0xcd, 0xa7, 0xc2, 0x96, 0x48 }}
class NS_NO_VTABLE nsIAccessibleImage : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IACCESSIBLEIMAGE_IID)
/* void getImagePosition (in unsigned long coordType, out long x, out long y); */
NS_IMETHOD GetImagePosition(uint32_t coordType, int32_t *x, int32_t *y) = 0;
/* void getImageSize (out long width, out long height); */
NS_IMETHOD GetImageSize(int32_t *width, int32_t *height) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIAccessibleImage, NS_IACCESSIBLEIMAGE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIACCESSIBLEIMAGE \
NS_IMETHOD GetImagePosition(uint32_t coordType, int32_t *x, int32_t *y); \
NS_IMETHOD GetImageSize(int32_t *width, int32_t *height);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIACCESSIBLEIMAGE(_to) \
NS_IMETHOD GetImagePosition(uint32_t coordType, int32_t *x, int32_t *y) { return _to GetImagePosition(coordType, x, y); } \
NS_IMETHOD GetImageSize(int32_t *width, int32_t *height) { return _to GetImageSize(width, height); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIACCESSIBLEIMAGE(_to) \
NS_IMETHOD GetImagePosition(uint32_t coordType, int32_t *x, int32_t *y) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImagePosition(coordType, x, y); } \
NS_IMETHOD GetImageSize(int32_t *width, int32_t *height) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageSize(width, height); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsAccessibleImage : public nsIAccessibleImage
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIACCESSIBLEIMAGE
nsAccessibleImage();
private:
~nsAccessibleImage();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsAccessibleImage, nsIAccessibleImage)
nsAccessibleImage::nsAccessibleImage()
{
/* member initializers and constructor code */
}
nsAccessibleImage::~nsAccessibleImage()
{
/* destructor code */
}
/* void getImagePosition (in unsigned long coordType, out long x, out long y); */
NS_IMETHODIMP nsAccessibleImage::GetImagePosition(uint32_t coordType, int32_t *x, int32_t *y)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getImageSize (out long width, out long height); */
NS_IMETHODIMP nsAccessibleImage::GetImageSize(int32_t *width, int32_t *height)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIAccessibleImage_h__ */