/gecko_api/include/nsIDOMHTMLUListElement.h
C++ Header | 128 lines | 72 code | 28 blank | 28 comment | 0 complexity | 699afec00c494241d5283cf153b48161 MD5 | raw file
1/* 2 * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/tinderbox/XR-Trunk/Darwin_8.8.4_Depend/mozilla/dom/public/idl/html/nsIDOMHTMLUListElement.idl 3 */ 4 5#ifndef __gen_nsIDOMHTMLUListElement_h__ 6#define __gen_nsIDOMHTMLUListElement_h__ 7 8 9#ifndef __gen_nsIDOMHTMLElement_h__ 10#include "nsIDOMHTMLElement.h" 11#endif 12 13/* For IDL files that don't want to include root IDL files. */ 14#ifndef NS_NO_VTABLE 15#define NS_NO_VTABLE 16#endif 17 18/* starting interface: nsIDOMHTMLUListElement */ 19#define NS_IDOMHTMLULISTELEMENT_IID_STR "a6cf9099-15b3-11d2-932e-00805f8add32" 20 21#define NS_IDOMHTMLULISTELEMENT_IID \ 22 {0xa6cf9099, 0x15b3, 0x11d2, \ 23 { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }} 24 25/** 26 * The nsIDOMHTMLUListElement interface is the interface to a [X]HTML 27 * ul element. 28 * 29 * For more information on this interface please see 30 * http://www.w3.org/TR/DOM-Level-2-HTML/ 31 * 32 * @status FROZEN 33 */ 34class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMHTMLUListElement : public nsIDOMHTMLElement { 35 public: 36 37 NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLULISTELEMENT_IID) 38 39 /* attribute boolean compact; */ 40 NS_SCRIPTABLE NS_IMETHOD GetCompact(PRBool *aCompact) = 0; 41 NS_SCRIPTABLE NS_IMETHOD SetCompact(PRBool aCompact) = 0; 42 43 /* attribute DOMString type; */ 44 NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType) = 0; 45 NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType) = 0; 46 47}; 48 49 NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLUListElement, NS_IDOMHTMLULISTELEMENT_IID) 50 51/* Use this macro when declaring classes that implement this interface. */ 52#define NS_DECL_NSIDOMHTMLULISTELEMENT \ 53 NS_SCRIPTABLE NS_IMETHOD GetCompact(PRBool *aCompact); \ 54 NS_SCRIPTABLE NS_IMETHOD SetCompact(PRBool aCompact); \ 55 NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType); \ 56 NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType); 57 58/* Use this macro to declare functions that forward the behavior of this interface to another object. */ 59#define NS_FORWARD_NSIDOMHTMLULISTELEMENT(_to) \ 60 NS_SCRIPTABLE NS_IMETHOD GetCompact(PRBool *aCompact) { return _to GetCompact(aCompact); } \ 61 NS_SCRIPTABLE NS_IMETHOD SetCompact(PRBool aCompact) { return _to SetCompact(aCompact); } \ 62 NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType) { return _to GetType(aType); } \ 63 NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType) { return _to SetType(aType); } 64 65/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ 66#define NS_FORWARD_SAFE_NSIDOMHTMLULISTELEMENT(_to) \ 67 NS_SCRIPTABLE NS_IMETHOD GetCompact(PRBool *aCompact) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCompact(aCompact); } \ 68 NS_SCRIPTABLE NS_IMETHOD SetCompact(PRBool aCompact) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCompact(aCompact); } \ 69 NS_SCRIPTABLE NS_IMETHOD GetType(nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \ 70 NS_SCRIPTABLE NS_IMETHOD SetType(const nsAString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetType(aType); } 71 72#if 0 73/* Use the code below as a template for the implementation class for this interface. */ 74 75/* Header file */ 76class nsDOMHTMLUListElement : public nsIDOMHTMLUListElement 77{ 78public: 79 NS_DECL_ISUPPORTS 80 NS_DECL_NSIDOMHTMLULISTELEMENT 81 82 nsDOMHTMLUListElement(); 83 84private: 85 ~nsDOMHTMLUListElement(); 86 87protected: 88 /* additional members */ 89}; 90 91/* Implementation file */ 92NS_IMPL_ISUPPORTS1(nsDOMHTMLUListElement, nsIDOMHTMLUListElement) 93 94nsDOMHTMLUListElement::nsDOMHTMLUListElement() 95{ 96 /* member initializers and constructor code */ 97} 98 99nsDOMHTMLUListElement::~nsDOMHTMLUListElement() 100{ 101 /* destructor code */ 102} 103 104/* attribute boolean compact; */ 105NS_IMETHODIMP nsDOMHTMLUListElement::GetCompact(PRBool *aCompact) 106{ 107 return NS_ERROR_NOT_IMPLEMENTED; 108} 109NS_IMETHODIMP nsDOMHTMLUListElement::SetCompact(PRBool aCompact) 110{ 111 return NS_ERROR_NOT_IMPLEMENTED; 112} 113 114/* attribute DOMString type; */ 115NS_IMETHODIMP nsDOMHTMLUListElement::GetType(nsAString & aType) 116{ 117 return NS_ERROR_NOT_IMPLEMENTED; 118} 119NS_IMETHODIMP nsDOMHTMLUListElement::SetType(const nsAString & aType) 120{ 121 return NS_ERROR_NOT_IMPLEMENTED; 122} 123 124/* End of implementation class template. */ 125#endif 126 127 128#endif /* __gen_nsIDOMHTMLUListElement_h__ */