/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIDOMNSUIEvent.idl */ #ifndef __gen_nsIDOMNSUIEvent_h__ #define __gen_nsIDOMNSUIEvent_h__ #ifndef __gen_domstubs_h__ #include "domstubs.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: nsIDOMNSUIEvent */ #define NS_IDOMNSUIEVENT_IID_STR "a6cf90c4-15b3-11d2-932e-00805f8add32" #define NS_IDOMNSUIEVENT_IID \ {0xa6cf90c4, 0x15b3, 0x11d2, \ { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }} class NS_NO_VTABLE nsIDOMNSUIEvent : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMNSUIEVENT_IID) enum { SCROLL_PAGE_UP = -32768 }; enum { SCROLL_PAGE_DOWN = 32768 }; /* boolean getPreventDefault (); */ NS_IMETHOD GetPreventDefault(PRBool *_retval) = 0; /* readonly attribute long layerX; */ NS_IMETHOD GetLayerX(PRInt32 *aLayerX) = 0; /* readonly attribute long layerY; */ NS_IMETHOD GetLayerY(PRInt32 *aLayerY) = 0; /* readonly attribute long pageX; */ NS_IMETHOD GetPageX(PRInt32 *aPageX) = 0; /* readonly attribute long pageY; */ NS_IMETHOD GetPageY(PRInt32 *aPageY) = 0; /* readonly attribute unsigned long which; */ NS_IMETHOD GetWhich(PRUint32 *aWhich) = 0; /* readonly attribute nsIDOMNode rangeParent; */ NS_IMETHOD GetRangeParent(nsIDOMNode * *aRangeParent) = 0; /* readonly attribute long rangeOffset; */ NS_IMETHOD GetRangeOffset(PRInt32 *aRangeOffset) = 0; /* attribute boolean cancelBubble; */ NS_IMETHOD GetCancelBubble(PRBool *aCancelBubble) = 0; NS_IMETHOD SetCancelBubble(PRBool aCancelBubble) = 0; /* readonly attribute boolean isChar; */ NS_IMETHOD GetIsChar(PRBool *aIsChar) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIDOMNSUIEVENT \ NS_IMETHOD GetPreventDefault(PRBool *_retval); \ NS_IMETHOD GetLayerX(PRInt32 *aLayerX); \ NS_IMETHOD GetLayerY(PRInt32 *aLayerY); \ NS_IMETHOD GetPageX(PRInt32 *aPageX); \ NS_IMETHOD GetPageY(PRInt32 *aPageY); \ NS_IMETHOD GetWhich(PRUint32 *aWhich); \ NS_IMETHOD GetRangeParent(nsIDOMNode * *aRangeParent); \ NS_IMETHOD GetRangeOffset(PRInt32 *aRangeOffset); \ NS_IMETHOD GetCancelBubble(PRBool *aCancelBubble); \ NS_IMETHOD SetCancelBubble(PRBool aCancelBubble); \ NS_IMETHOD GetIsChar(PRBool *aIsChar); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIDOMNSUIEVENT(_to) \ NS_IMETHOD GetPreventDefault(PRBool *_retval) { return _to GetPreventDefault(_retval); } \ NS_IMETHOD GetLayerX(PRInt32 *aLayerX) { return _to GetLayerX(aLayerX); } \ NS_IMETHOD GetLayerY(PRInt32 *aLayerY) { return _to GetLayerY(aLayerY); } \ NS_IMETHOD GetPageX(PRInt32 *aPageX) { return _to GetPageX(aPageX); } \ NS_IMETHOD GetPageY(PRInt32 *aPageY) { return _to GetPageY(aPageY); } \ NS_IMETHOD GetWhich(PRUint32 *aWhich) { return _to GetWhich(aWhich); } \ NS_IMETHOD GetRangeParent(nsIDOMNode * *aRangeParent) { return _to GetRangeParent(aRangeParent); } \ NS_IMETHOD GetRangeOffset(PRInt32 *aRangeOffset) { return _to GetRangeOffset(aRangeOffset); } \ NS_IMETHOD GetCancelBubble(PRBool *aCancelBubble) { return _to GetCancelBubble(aCancelBubble); } \ NS_IMETHOD SetCancelBubble(PRBool aCancelBubble) { return _to SetCancelBubble(aCancelBubble); } \ NS_IMETHOD GetIsChar(PRBool *aIsChar) { return _to GetIsChar(aIsChar); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIDOMNSUIEVENT(_to) \ NS_IMETHOD GetPreventDefault(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPreventDefault(_retval); } \ NS_IMETHOD GetLayerX(PRInt32 *aLayerX) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLayerX(aLayerX); } \ NS_IMETHOD GetLayerY(PRInt32 *aLayerY) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLayerY(aLayerY); } \ NS_IMETHOD GetPageX(PRInt32 *aPageX) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPageX(aPageX); } \ NS_IMETHOD GetPageY(PRInt32 *aPageY) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPageY(aPageY); } \ NS_IMETHOD GetWhich(PRUint32 *aWhich) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWhich(aWhich); } \ NS_IMETHOD GetRangeParent(nsIDOMNode * *aRangeParent) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRangeParent(aRangeParent); } \ NS_IMETHOD GetRangeOffset(PRInt32 *aRangeOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRangeOffset(aRangeOffset); } \ NS_IMETHOD GetCancelBubble(PRBool *aCancelBubble) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCancelBubble(aCancelBubble); } \ NS_IMETHOD SetCancelBubble(PRBool aCancelBubble) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCancelBubble(aCancelBubble); } \ NS_IMETHOD GetIsChar(PRBool *aIsChar) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsChar(aIsChar); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsDOMNSUIEvent : public nsIDOMNSUIEvent { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOMNSUIEVENT nsDOMNSUIEvent(); virtual ~nsDOMNSUIEvent(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsDOMNSUIEvent, nsIDOMNSUIEvent) nsDOMNSUIEvent::nsDOMNSUIEvent() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsDOMNSUIEvent::~nsDOMNSUIEvent() { /* destructor code */ } /* boolean getPreventDefault (); */ NS_IMETHODIMP nsDOMNSUIEvent::GetPreventDefault(PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long layerX; */ NS_IMETHODIMP nsDOMNSUIEvent::GetLayerX(PRInt32 *aLayerX) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long layerY; */ NS_IMETHODIMP nsDOMNSUIEvent::GetLayerY(PRInt32 *aLayerY) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long pageX; */ NS_IMETHODIMP nsDOMNSUIEvent::GetPageX(PRInt32 *aPageX) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long pageY; */ NS_IMETHODIMP nsDOMNSUIEvent::GetPageY(PRInt32 *aPageY) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute unsigned long which; */ NS_IMETHODIMP nsDOMNSUIEvent::GetWhich(PRUint32 *aWhich) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNode rangeParent; */ NS_IMETHODIMP nsDOMNSUIEvent::GetRangeParent(nsIDOMNode * *aRangeParent) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long rangeOffset; */ NS_IMETHODIMP nsDOMNSUIEvent::GetRangeOffset(PRInt32 *aRangeOffset) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean cancelBubble; */ NS_IMETHODIMP nsDOMNSUIEvent::GetCancelBubble(PRBool *aCancelBubble) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDOMNSUIEvent::SetCancelBubble(PRBool aCancelBubble) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute boolean isChar; */ NS_IMETHODIMP nsDOMNSUIEvent::GetIsChar(PRBool *aIsChar) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIDOMNSUIEvent_h__ */ .