nsIDOMHTMLMapElement.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/html/nsIDOMHTMLMapElement.idl
  3.  */
  4. #ifndef __gen_nsIDOMHTMLMapElement_h__
  5. #define __gen_nsIDOMHTMLMapElement_h__
  6. #ifndef __gen_nsIDOMHTMLElement_h__
  7. #include "nsIDOMHTMLElement.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:    nsIDOMHTMLMapElement */
  14. #define NS_IDOMHTMLMAPELEMENT_IID_STR "a6cf90af-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMHTMLMAPELEMENT_IID 
  16.   {0xa6cf90af, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. /**
  19.  * The nsIDOMHTMLMapElement interface is the interface to a [X]HTML
  20.  * map element.
  21.  *
  22.  * For more information on this interface please see
  23.  * http://www.w3.org/TR/DOM-Level-2-HTML/
  24.  *
  25.  * @status FROZEN
  26.  */
  27. class NS_NO_VTABLE nsIDOMHTMLMapElement : public nsIDOMHTMLElement {
  28.  public: 
  29.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLMAPELEMENT_IID)
  30.   /* readonly attribute nsIDOMHTMLCollection areas; */
  31.   NS_IMETHOD GetAreas(nsIDOMHTMLCollection * *aAreas) = 0;
  32.   /* attribute DOMString name; */
  33.   NS_IMETHOD GetName(nsAString & aName) = 0;
  34.   NS_IMETHOD SetName(const nsAString & aName) = 0;
  35. };
  36. /* Use this macro when declaring classes that implement this interface. */
  37. #define NS_DECL_NSIDOMHTMLMAPELEMENT 
  38.   NS_IMETHOD GetAreas(nsIDOMHTMLCollection * *aAreas); 
  39.   NS_IMETHOD GetName(nsAString & aName); 
  40.   NS_IMETHOD SetName(const nsAString & aName); 
  41. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  42. #define NS_FORWARD_NSIDOMHTMLMAPELEMENT(_to) 
  43.   NS_IMETHOD GetAreas(nsIDOMHTMLCollection * *aAreas) { return _to GetAreas(aAreas); } 
  44.   NS_IMETHOD GetName(nsAString & aName) { return _to GetName(aName); } 
  45.   NS_IMETHOD SetName(const nsAString & aName) { return _to SetName(aName); } 
  46. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  47. #define NS_FORWARD_SAFE_NSIDOMHTMLMAPELEMENT(_to) 
  48.   NS_IMETHOD GetAreas(nsIDOMHTMLCollection * *aAreas) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAreas(aAreas); } 
  49.   NS_IMETHOD GetName(nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } 
  50.   NS_IMETHOD SetName(const nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetName(aName); } 
  51. #if 0
  52. /* Use the code below as a template for the implementation class for this interface. */
  53. /* Header file */
  54. class nsDOMHTMLMapElement : public nsIDOMHTMLMapElement
  55. {
  56. public:
  57.   NS_DECL_ISUPPORTS
  58.   NS_DECL_NSIDOMHTMLMAPELEMENT
  59.   nsDOMHTMLMapElement();
  60. private:
  61.   ~nsDOMHTMLMapElement();
  62. protected:
  63.   /* additional members */
  64. };
  65. /* Implementation file */
  66. NS_IMPL_ISUPPORTS1(nsDOMHTMLMapElement, nsIDOMHTMLMapElement)
  67. nsDOMHTMLMapElement::nsDOMHTMLMapElement()
  68. {
  69.   /* member initializers and constructor code */
  70. }
  71. nsDOMHTMLMapElement::~nsDOMHTMLMapElement()
  72. {
  73.   /* destructor code */
  74. }
  75. /* readonly attribute nsIDOMHTMLCollection areas; */
  76. NS_IMETHODIMP nsDOMHTMLMapElement::GetAreas(nsIDOMHTMLCollection * *aAreas)
  77. {
  78.     return NS_ERROR_NOT_IMPLEMENTED;
  79. }
  80. /* attribute DOMString name; */
  81. NS_IMETHODIMP nsDOMHTMLMapElement::GetName(nsAString & aName)
  82. {
  83.     return NS_ERROR_NOT_IMPLEMENTED;
  84. }
  85. NS_IMETHODIMP nsDOMHTMLMapElement::SetName(const nsAString & aName)
  86. {
  87.     return NS_ERROR_NOT_IMPLEMENTED;
  88. }
  89. /* End of implementation class template. */
  90. #endif
  91. #endif /* __gen_nsIDOMHTMLMapElement_h__ */