domstubs.idl 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is mozilla.org code.
  16. *
  17. * The Initial Developer of the Original Code is
  18. * Netscape Communications Corporation.
  19. * Portions created by the Initial Developer are Copyright (C) 2000
  20. * the Initial Developer. All Rights Reserved.
  21. *
  22. * Contributor(s):
  23. * Vidur Apparao <[email protected]> (original author)
  24. * Johnny Stenback <[email protected]>
  25. *
  26. * Alternatively, the contents of this file may be used under the terms of
  27. * either of the GNU General Public License Version 2 or later (the "GPL"),
  28. * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29. * in which case the provisions of the GPL or the LGPL are applicable instead
  30. * of those above. If you wish to allow use of your version of this file only
  31. * under the terms of either the GPL or the LGPL, and not to allow others to
  32. * use your version of this file under the terms of the MPL, indicate your
  33. * decision by deleting the provisions above and replace them with the notice
  34. * and other provisions required by the GPL or the LGPL. If you do not delete
  35. * the provisions above, a recipient may use your version of this file under
  36. * the terms of any one of the MPL, the GPL or the LGPL.
  37. *
  38. * ***** END LICENSE BLOCK ***** */
  39. #include "nsISupports.idl"
  40. typedef unsigned long long DOMTimeStamp;
  41. // Core
  42. interface nsIDOMAttr;
  43. interface nsIDOMCDATASection;
  44. interface nsIDOMCharacterData;
  45. interface nsIDOMComment;
  46. interface nsIDOMDOMImplementation;
  47. interface nsIDOMDocument;
  48. interface nsIDOMDocumentFragment;
  49. interface nsIDOMDocumentType;
  50. interface nsIDOMElement;
  51. interface nsIDOMEntity;
  52. interface nsIDOMEntityReference;
  53. interface nsIDOMNSDocument;
  54. interface nsIDOMNamedNodeMap;
  55. interface nsIDOMNode;
  56. interface nsIDOMNodeList;
  57. interface nsIDOMNotation;
  58. interface nsIDOMProcessingInstruction;
  59. interface nsIDOMText;
  60. interface nsIDOMDOMStringList;
  61. interface nsIDOMNameList;
  62. // Needed for raises() in our IDL
  63. interface DOMException;
  64. interface RangeException;
  65. // Style Sheets
  66. interface nsIDOMStyleSheetList;
  67. interface nsIDOMLinkStyle;
  68. interface nsIDOMStyleSheet;
  69. interface nsIDOMMediaList;
  70. // Views
  71. interface nsIDOMAbstractView;
  72. interface nsIDOMDocumentView;
  73. // Base
  74. interface nsIDOMWindow;
  75. interface nsIDOMWindowInternal;
  76. interface nsIDOMWindowCollection;
  77. interface nsIDOMPlugin;
  78. interface nsIDOMPluginArray;
  79. interface nsIDOMMimeType;
  80. interface nsIDOMMimeTypeArray;
  81. interface nsIDOMBarProp;
  82. interface nsIDOMNavigator;
  83. interface nsIDOMScreen;
  84. interface nsIDOMHistory;
  85. // Events
  86. interface nsIDOMEvent;
  87. interface nsIDOMEventTarget;
  88. interface nsIDOMEventListener;
  89. interface nsIDOMEventGroup;
  90. // HTML
  91. interface nsIDOMHTMLElement;
  92. interface nsIDOMHTMLFormElement;
  93. interface nsIDOMHTMLCollection;
  94. // CSS
  95. interface nsIDOMCSSValue;
  96. interface nsIDOMCSSValueList;
  97. interface nsIDOMCSSPrimitiveValue;
  98. interface nsIDOMCSSRule;
  99. interface nsIDOMCSSRuleList;
  100. interface nsIDOMCSSStyleSheet;
  101. interface nsIDOMCSSStyleDeclaration;
  102. interface nsIDOMCounter;
  103. interface nsIDOMRect;
  104. interface nsIDOMRGBColor;
  105. interface nsIDOMCSSStyleRule;
  106. interface nsIDOMCSSStyleRuleCollection;
  107. interface nsIDOMHTMLTableCaptionElement;
  108. interface nsIDOMHTMLTableSectionElement;
  109. // Range
  110. interface nsIDOMRange;
  111. // Crypto
  112. interface nsIDOMCRMFObject;
  113. interface nsIDOMCrypto;
  114. interface nsIDOMPkcs11;