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

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/nsIDOMUIEvent.idl
  3.  */
  4. #ifndef __gen_nsIDOMUIEvent_h__
  5. #define __gen_nsIDOMUIEvent_h__
  6. #ifndef __gen_nsIDOMEvent_h__
  7. #include "nsIDOMEvent.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:    nsIDOMUIEvent */
  14. #define NS_IDOMUIEVENT_IID_STR "a6cf90c3-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMUIEVENT_IID 
  16.   {0xa6cf90c3, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. /**
  19.  * The nsIDOMUIEvent interface is the datatype for all UI events in the
  20.  * Document Object Model.
  21.  *
  22.  * For more information on this interface please see
  23.  * http://www.w3.org/TR/DOM-Level-2-Events/
  24.  *
  25.  * @status FROZEN
  26.  */
  27. class NS_NO_VTABLE nsIDOMUIEvent : public nsIDOMEvent {
  28.  public: 
  29.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMUIEVENT_IID)
  30.   /* readonly attribute nsIDOMAbstractView view; */
  31.   NS_IMETHOD GetView(nsIDOMAbstractView * *aView) = 0;
  32.   /* readonly attribute long detail; */
  33.   NS_IMETHOD GetDetail(PRInt32 *aDetail) = 0;
  34.   /* void initUIEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIDOMAbstractView viewArg, in long detailArg); */
  35.   NS_IMETHOD InitUIEvent(const nsAString & typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRInt32 detailArg) = 0;
  36. };
  37. /* Use this macro when declaring classes that implement this interface. */
  38. #define NS_DECL_NSIDOMUIEVENT 
  39.   NS_IMETHOD GetView(nsIDOMAbstractView * *aView); 
  40.   NS_IMETHOD GetDetail(PRInt32 *aDetail); 
  41.   NS_IMETHOD InitUIEvent(const nsAString & typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRInt32 detailArg); 
  42. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  43. #define NS_FORWARD_NSIDOMUIEVENT(_to) 
  44.   NS_IMETHOD GetView(nsIDOMAbstractView * *aView) { return _to GetView(aView); } 
  45.   NS_IMETHOD GetDetail(PRInt32 *aDetail) { return _to GetDetail(aDetail); } 
  46.   NS_IMETHOD InitUIEvent(const nsAString & typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRInt32 detailArg) { return _to InitUIEvent(typeArg, canBubbleArg, cancelableArg, viewArg, detailArg); } 
  47. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  48. #define NS_FORWARD_SAFE_NSIDOMUIEVENT(_to) 
  49.   NS_IMETHOD GetView(nsIDOMAbstractView * *aView) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetView(aView); } 
  50.   NS_IMETHOD GetDetail(PRInt32 *aDetail) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDetail(aDetail); } 
  51.   NS_IMETHOD InitUIEvent(const nsAString & typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRInt32 detailArg) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitUIEvent(typeArg, canBubbleArg, cancelableArg, viewArg, detailArg); } 
  52. #if 0
  53. /* Use the code below as a template for the implementation class for this interface. */
  54. /* Header file */
  55. class nsDOMUIEvent : public nsIDOMUIEvent
  56. {
  57. public:
  58.   NS_DECL_ISUPPORTS
  59.   NS_DECL_NSIDOMUIEVENT
  60.   nsDOMUIEvent();
  61. private:
  62.   ~nsDOMUIEvent();
  63. protected:
  64.   /* additional members */
  65. };
  66. /* Implementation file */
  67. NS_IMPL_ISUPPORTS1(nsDOMUIEvent, nsIDOMUIEvent)
  68. nsDOMUIEvent::nsDOMUIEvent()
  69. {
  70.   /* member initializers and constructor code */
  71. }
  72. nsDOMUIEvent::~nsDOMUIEvent()
  73. {
  74.   /* destructor code */
  75. }
  76. /* readonly attribute nsIDOMAbstractView view; */
  77. NS_IMETHODIMP nsDOMUIEvent::GetView(nsIDOMAbstractView * *aView)
  78. {
  79.     return NS_ERROR_NOT_IMPLEMENTED;
  80. }
  81. /* readonly attribute long detail; */
  82. NS_IMETHODIMP nsDOMUIEvent::GetDetail(PRInt32 *aDetail)
  83. {
  84.     return NS_ERROR_NOT_IMPLEMENTED;
  85. }
  86. /* void initUIEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIDOMAbstractView viewArg, in long detailArg); */
  87. NS_IMETHODIMP nsDOMUIEvent::InitUIEvent(const nsAString & typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRInt32 detailArg)
  88. {
  89.     return NS_ERROR_NOT_IMPLEMENTED;
  90. }
  91. /* End of implementation class template. */
  92. #endif
  93. #endif /* __gen_nsIDOMUIEvent_h__ */