/gecko_api/include/nsIDOMDocumentStyle.h

http://firefox-mac-pdf.googlecode.com/ · C Header · 100 lines · 48 code · 26 blank · 26 comment · 0 complexity · fa4dfebaa86743085f3cb43d359612d0 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/stylesheets/nsIDOMDocumentStyle.idl
  3. */
  4. #ifndef __gen_nsIDOMDocumentStyle_h__
  5. #define __gen_nsIDOMDocumentStyle_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: nsIDOMDocumentStyle */
  14. #define NS_IDOMDOCUMENTSTYLE_IID_STR "3d9f4973-dd2e-48f5-b5f7-2634e09eadd9"
  15. #define NS_IDOMDOCUMENTSTYLE_IID \
  16. {0x3d9f4973, 0xdd2e, 0x48f5, \
  17. { 0xb5, 0xf7, 0x26, 0x34, 0xe0, 0x9e, 0xad, 0xd9 }}
  18. /**
  19. * The nsIDOMDocumentStyle interface is an interface to a document
  20. * object that supports style sheets in the Document Object Model.
  21. *
  22. * For more information on this interface please see
  23. * http://www.w3.org/TR/DOM-Level-2-Style
  24. *
  25. * @status FROZEN
  26. */
  27. class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMDocumentStyle : public nsISupports {
  28. public:
  29. NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMDOCUMENTSTYLE_IID)
  30. /* readonly attribute nsIDOMStyleSheetList styleSheets; */
  31. NS_SCRIPTABLE NS_IMETHOD GetStyleSheets(nsIDOMStyleSheetList * *aStyleSheets) = 0;
  32. };
  33. NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMDocumentStyle, NS_IDOMDOCUMENTSTYLE_IID)
  34. /* Use this macro when declaring classes that implement this interface. */
  35. #define NS_DECL_NSIDOMDOCUMENTSTYLE \
  36. NS_SCRIPTABLE NS_IMETHOD GetStyleSheets(nsIDOMStyleSheetList * *aStyleSheets);
  37. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  38. #define NS_FORWARD_NSIDOMDOCUMENTSTYLE(_to) \
  39. NS_SCRIPTABLE NS_IMETHOD GetStyleSheets(nsIDOMStyleSheetList * *aStyleSheets) { return _to GetStyleSheets(aStyleSheets); }
  40. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  41. #define NS_FORWARD_SAFE_NSIDOMDOCUMENTSTYLE(_to) \
  42. NS_SCRIPTABLE NS_IMETHOD GetStyleSheets(nsIDOMStyleSheetList * *aStyleSheets) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStyleSheets(aStyleSheets); }
  43. #if 0
  44. /* Use the code below as a template for the implementation class for this interface. */
  45. /* Header file */
  46. class nsDOMDocumentStyle : public nsIDOMDocumentStyle
  47. {
  48. public:
  49. NS_DECL_ISUPPORTS
  50. NS_DECL_NSIDOMDOCUMENTSTYLE
  51. nsDOMDocumentStyle();
  52. private:
  53. ~nsDOMDocumentStyle();
  54. protected:
  55. /* additional members */
  56. };
  57. /* Implementation file */
  58. NS_IMPL_ISUPPORTS1(nsDOMDocumentStyle, nsIDOMDocumentStyle)
  59. nsDOMDocumentStyle::nsDOMDocumentStyle()
  60. {
  61. /* member initializers and constructor code */
  62. }
  63. nsDOMDocumentStyle::~nsDOMDocumentStyle()
  64. {
  65. /* destructor code */
  66. }
  67. /* readonly attribute nsIDOMStyleSheetList styleSheets; */
  68. NS_IMETHODIMP nsDOMDocumentStyle::GetStyleSheets(nsIDOMStyleSheetList * *aStyleSheets)
  69. {
  70. return NS_ERROR_NOT_IMPLEMENTED;
  71. }
  72. /* End of implementation class template. */
  73. #endif
  74. #endif /* __gen_nsIDOMDocumentStyle_h__ */