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

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/nsIDOMHTMLOListElement.idl
  3.  */
  4. #ifndef __gen_nsIDOMHTMLOListElement_h__
  5. #define __gen_nsIDOMHTMLOListElement_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:    nsIDOMHTMLOListElement */
  14. #define NS_IDOMHTMLOLISTELEMENT_IID_STR "a6cf909a-15b3-11d2-932e-00805f8add32"
  15. #define NS_IDOMHTMLOLISTELEMENT_IID 
  16.   {0xa6cf909a, 0x15b3, 0x11d2, 
  17.     { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
  18. /**
  19.  * The nsIDOMHTMLOListElement interface is the interface to a [X]HTML
  20.  * ol 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 nsIDOMHTMLOListElement : public nsIDOMHTMLElement {
  28.  public: 
  29.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLOLISTELEMENT_IID)
  30.   /* attribute boolean compact; */
  31.   NS_IMETHOD GetCompact(PRBool *aCompact) = 0;
  32.   NS_IMETHOD SetCompact(PRBool aCompact) = 0;
  33.   /* attribute long start; */
  34.   NS_IMETHOD GetStart(PRInt32 *aStart) = 0;
  35.   NS_IMETHOD SetStart(PRInt32 aStart) = 0;
  36.   /* attribute DOMString type; */
  37.   NS_IMETHOD GetType(nsAString & aType) = 0;
  38.   NS_IMETHOD SetType(const nsAString & aType) = 0;
  39. };
  40. /* Use this macro when declaring classes that implement this interface. */
  41. #define NS_DECL_NSIDOMHTMLOLISTELEMENT 
  42.   NS_IMETHOD GetCompact(PRBool *aCompact); 
  43.   NS_IMETHOD SetCompact(PRBool aCompact); 
  44.   NS_IMETHOD GetStart(PRInt32 *aStart); 
  45.   NS_IMETHOD SetStart(PRInt32 aStart); 
  46.   NS_IMETHOD GetType(nsAString & aType); 
  47.   NS_IMETHOD SetType(const nsAString & aType); 
  48. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  49. #define NS_FORWARD_NSIDOMHTMLOLISTELEMENT(_to) 
  50.   NS_IMETHOD GetCompact(PRBool *aCompact) { return _to GetCompact(aCompact); } 
  51.   NS_IMETHOD SetCompact(PRBool aCompact) { return _to SetCompact(aCompact); } 
  52.   NS_IMETHOD GetStart(PRInt32 *aStart) { return _to GetStart(aStart); } 
  53.   NS_IMETHOD SetStart(PRInt32 aStart) { return _to SetStart(aStart); } 
  54.   NS_IMETHOD GetType(nsAString & aType) { return _to GetType(aType); } 
  55.   NS_IMETHOD SetType(const nsAString & aType) { return _to SetType(aType); } 
  56. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  57. #define NS_FORWARD_SAFE_NSIDOMHTMLOLISTELEMENT(_to) 
  58.   NS_IMETHOD GetCompact(PRBool *aCompact) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCompact(aCompact); } 
  59.   NS_IMETHOD SetCompact(PRBool aCompact) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCompact(aCompact); } 
  60.   NS_IMETHOD GetStart(PRInt32 *aStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStart(aStart); } 
  61.   NS_IMETHOD SetStart(PRInt32 aStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStart(aStart); } 
  62.   NS_IMETHOD GetType(nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } 
  63.   NS_IMETHOD SetType(const nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } 
  64. #if 0
  65. /* Use the code below as a template for the implementation class for this interface. */
  66. /* Header file */
  67. class nsDOMHTMLOListElement : public nsIDOMHTMLOListElement
  68. {
  69. public:
  70.   NS_DECL_ISUPPORTS
  71.   NS_DECL_NSIDOMHTMLOLISTELEMENT
  72.   nsDOMHTMLOListElement();
  73. private:
  74.   ~nsDOMHTMLOListElement();
  75. protected:
  76.   /* additional members */
  77. };
  78. /* Implementation file */
  79. NS_IMPL_ISUPPORTS1(nsDOMHTMLOListElement, nsIDOMHTMLOListElement)
  80. nsDOMHTMLOListElement::nsDOMHTMLOListElement()
  81. {
  82.   /* member initializers and constructor code */
  83. }
  84. nsDOMHTMLOListElement::~nsDOMHTMLOListElement()
  85. {
  86.   /* destructor code */
  87. }
  88. /* attribute boolean compact; */
  89. NS_IMETHODIMP nsDOMHTMLOListElement::GetCompact(PRBool *aCompact)
  90. {
  91.     return NS_ERROR_NOT_IMPLEMENTED;
  92. }
  93. NS_IMETHODIMP nsDOMHTMLOListElement::SetCompact(PRBool aCompact)
  94. {
  95.     return NS_ERROR_NOT_IMPLEMENTED;
  96. }
  97. /* attribute long start; */
  98. NS_IMETHODIMP nsDOMHTMLOListElement::GetStart(PRInt32 *aStart)
  99. {
  100.     return NS_ERROR_NOT_IMPLEMENTED;
  101. }
  102. NS_IMETHODIMP nsDOMHTMLOListElement::SetStart(PRInt32 aStart)
  103. {
  104.     return NS_ERROR_NOT_IMPLEMENTED;
  105. }
  106. /* attribute DOMString type; */
  107. NS_IMETHODIMP nsDOMHTMLOListElement::GetType(nsAString & aType)
  108. {
  109.     return NS_ERROR_NOT_IMPLEMENTED;
  110. }
  111. NS_IMETHODIMP nsDOMHTMLOListElement::SetType(const nsAString & aType)
  112. {
  113.     return NS_ERROR_NOT_IMPLEMENTED;
  114. }
  115. /* End of implementation class template. */
  116. #endif
  117. #endif /* __gen_nsIDOMHTMLOListElement_h__ */