|
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/21571/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/dom/interfaces/svg/nsIDOMSVGZoomEvent.idl
*/
#ifndef __gen_nsIDOMSVGZoomEvent_h__
#define __gen_nsIDOMSVGZoomEvent_h__
#ifndef __gen_nsIDOMUIEvent_h__
#include "nsIDOMUIEvent.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMSVGRect; /* forward declaration */
class nsIDOMSVGPoint; /* forward declaration */
/* starting interface: nsIDOMSVGZoomEvent */
#define NS_IDOMSVGZOOMEVENT_IID_STR "77a0b46e-54cf-4e6e-a962-a2f52389da34"
#define NS_IDOMSVGZOOMEVENT_IID \
{0x77a0b46e, 0x54cf, 0x4e6e, \
{ 0xa9, 0x62, 0xa2, 0xf5, 0x23, 0x89, 0xda, 0x34 }}
class NS_NO_VTABLE nsIDOMSVGZoomEvent : public nsIDOMUIEvent {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMSVGZOOMEVENT_IID)
/* readonly attribute nsIDOMSVGRect zoomRectScreen; */
NS_IMETHOD GetZoomRectScreen(nsIDOMSVGRect * *aZoomRectScreen) = 0;
/* readonly attribute float previousScale; */
NS_IMETHOD GetPreviousScale(float *aPreviousScale) = 0;
/* readonly attribute nsIDOMSVGPoint previousTranslate; */
NS_IMETHOD GetPreviousTranslate(nsIDOMSVGPoint * *aPreviousTranslate) = 0;
/* readonly attribute float newScale; */
NS_IMETHOD GetNewScale(float *aNewScale) = 0;
/* readonly attribute nsIDOMSVGPoint newTranslate; */
NS_IMETHOD GetNewTranslate(nsIDOMSVGPoint * *aNewTranslate) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMSVGZoomEvent, NS_IDOMSVGZOOMEVENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMSVGZOOMEVENT \
NS_IMETHOD GetZoomRectScreen(nsIDOMSVGRect * *aZoomRectScreen); \
NS_IMETHOD GetPreviousScale(float *aPreviousScale); \
NS_IMETHOD GetPreviousTranslate(nsIDOMSVGPoint * *aPreviousTranslate); \
NS_IMETHOD GetNewScale(float *aNewScale); \
NS_IMETHOD GetNewTranslate(nsIDOMSVGPoint * *aNewTranslate);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMSVGZOOMEVENT(_to) \
NS_IMETHOD GetZoomRectScreen(nsIDOMSVGRect * *aZoomRectScreen) { return _to GetZoomRectScreen(aZoomRectScreen); } \
NS_IMETHOD GetPreviousScale(float *aPreviousScale) { return _to GetPreviousScale(aPreviousScale); } \
NS_IMETHOD GetPreviousTranslate(nsIDOMSVGPoint * *aPreviousTranslate) { return _to GetPreviousTranslate(aPreviousTranslate); } \
NS_IMETHOD GetNewScale(float *aNewScale) { return _to GetNewScale(aNewScale); } \
NS_IMETHOD GetNewTranslate(nsIDOMSVGPoint * *aNewTranslate) { return _to GetNewTranslate(aNewTranslate); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMSVGZOOMEVENT(_to) \
NS_IMETHOD GetZoomRectScreen(nsIDOMSVGRect * *aZoomRectScreen) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetZoomRectScreen(aZoomRectScreen); } \
NS_IMETHOD GetPreviousScale(float *aPreviousScale) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPreviousScale(aPreviousScale); } \
NS_IMETHOD GetPreviousTranslate(nsIDOMSVGPoint * *aPreviousTranslate) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPreviousTranslate(aPreviousTranslate); } \
NS_IMETHOD GetNewScale(float *aNewScale) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewScale(aNewScale); } \
NS_IMETHOD GetNewTranslate(nsIDOMSVGPoint * *aNewTranslate) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewTranslate(aNewTranslate); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMSVGZoomEvent : public nsIDOMSVGZoomEvent
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMSVGZOOMEVENT
nsDOMSVGZoomEvent();
private:
~nsDOMSVGZoomEvent();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMSVGZoomEvent, nsIDOMSVGZoomEvent)
nsDOMSVGZoomEvent::nsDOMSVGZoomEvent()
{
/* member initializers and constructor code */
}
nsDOMSVGZoomEvent::~nsDOMSVGZoomEvent()
{
/* destructor code */
}
/* readonly attribute nsIDOMSVGRect zoomRectScreen; */
NS_IMETHODIMP nsDOMSVGZoomEvent::GetZoomRectScreen(nsIDOMSVGRect * *aZoomRectScreen)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float previousScale; */
NS_IMETHODIMP nsDOMSVGZoomEvent::GetPreviousScale(float *aPreviousScale)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMSVGPoint previousTranslate; */
NS_IMETHODIMP nsDOMSVGZoomEvent::GetPreviousTranslate(nsIDOMSVGPoint * *aPreviousTranslate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute float newScale; */
NS_IMETHODIMP nsDOMSVGZoomEvent::GetNewScale(float *aNewScale)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMSVGPoint newTranslate; */
NS_IMETHODIMP nsDOMSVGZoomEvent::GetNewTranslate(nsIDOMSVGPoint * *aNewTranslate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMSVGZoomEvent_h__ */