nsIDOMEventListener.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:3k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0-Release/WINNT_5.2_Depend/mozilla/dom/public/idl/events/nsIDOMEventListener.idl
  3.  */
  4. #ifndef __gen_nsIDOMEventListener_h__
  5. #define __gen_nsIDOMEventListener_h__
  6. #ifndef __gen_domstubs_h__
  7. #include "domstubs.h"
  8. #endif
  9. /* For IDL files that don't want to include root IDL files. */
  10. #ifndef NS_NO_VTABLE
  11. #define NS_NO_VTABLE
  12. #endif
  13. /* starting interface:    nsIDOMEventListener */
  14. #define NS_IDOMEVENTLISTENER_IID_STR "df31c120-ded6-11d1-bd85-00805f8ae3f4"
  15. #define NS_IDOMEVENTLISTENER_IID 
  16.   {0xdf31c120, 0xded6, 0x11d1, 
  17.     { 0xbd, 0x85, 0x00, 0x80, 0x5f, 0x8a, 0xe3, 0xf4 }}
  18. class NS_NO_VTABLE nsIDOMEventListener : public nsISupports {
  19.  public: 
  20.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMEVENTLISTENER_IID)
  21.   /**
  22.  * The nsIDOMEventListener interface is a callback interface for
  23.  * listening to events in the Document Object Model.
  24.  *
  25.  * For more information on this interface please see 
  26.  * http://www.w3.org/TR/DOM-Level-2-Events/
  27.  *
  28.  * @status FROZEN
  29.  */
  30. /**
  31.    * This method is called whenever an event occurs of the type for which 
  32.    * the EventListener interface was registered.
  33.    *
  34.    * @param   evt The Event contains contextual information about the 
  35.    *              event. It also contains the stopPropagation and 
  36.    *              preventDefault methods which are used in determining the 
  37.    *              event's flow and default action.
  38.    */
  39.   /* void handleEvent (in nsIDOMEvent event); */
  40.   NS_IMETHOD HandleEvent(nsIDOMEvent *event) = 0;
  41. };
  42. /* Use this macro when declaring classes that implement this interface. */
  43. #define NS_DECL_NSIDOMEVENTLISTENER 
  44.   NS_IMETHOD HandleEvent(nsIDOMEvent *event); 
  45. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  46. #define NS_FORWARD_NSIDOMEVENTLISTENER(_to) 
  47.   NS_IMETHOD HandleEvent(nsIDOMEvent *event) { return _to HandleEvent(event); } 
  48. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  49. #define NS_FORWARD_SAFE_NSIDOMEVENTLISTENER(_to) 
  50.   NS_IMETHOD HandleEvent(nsIDOMEvent *event) { return !_to ? NS_ERROR_NULL_POINTER : _to->HandleEvent(event); } 
  51. #if 0
  52. /* Use the code below as a template for the implementation class for this interface. */
  53. /* Header file */
  54. class nsDOMEventListener : public nsIDOMEventListener
  55. {
  56. public:
  57.   NS_DECL_ISUPPORTS
  58.   NS_DECL_NSIDOMEVENTLISTENER
  59.   nsDOMEventListener();
  60. private:
  61.   ~nsDOMEventListener();
  62. protected:
  63.   /* additional members */
  64. };
  65. /* Implementation file */
  66. NS_IMPL_ISUPPORTS1(nsDOMEventListener, nsIDOMEventListener)
  67. nsDOMEventListener::nsDOMEventListener()
  68. {
  69.   /* member initializers and constructor code */
  70. }
  71. nsDOMEventListener::~nsDOMEventListener()
  72. {
  73.   /* destructor code */
  74. }
  75. /* void handleEvent (in nsIDOMEvent event); */
  76. NS_IMETHODIMP nsDOMEventListener::HandleEvent(nsIDOMEvent *event)
  77. {
  78.     return NS_ERROR_NOT_IMPLEMENTED;
  79. }
  80. /* End of implementation class template. */
  81. #endif
  82. #endif /* __gen_nsIDOMEventListener_h__ */