wintrust: Add a helper function to initialize chain creation parameters.
[wine] / dlls / mshtml / nsiface.idl
1 /*
2  * Copyright 2005-2007 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 /* 
20  * NOTE:
21  * This file is not an usual idl file. Interfaces in this file are XPCOM interfaces
22  * (NOT MSCOM!), but we generate the header file with WIDL compatibile with XPCOM,
23  * useable in C code.
24  */
25
26 cpp_quote("#define GECKO_VERSION \"0.1.0\"");
27 cpp_quote("#define GECKO_VERSION_STRING \"Wine Gecko \" GECKO_VERSION");
28
29 import "wtypes.idl";
30
31 typedef HRESULT nsresult;
32 typedef ULONG nsrefcnt;
33
34 typedef IID nsID;
35 typedef IID nsIID;
36 typedef nsIID nsCID;
37 typedef REFIID nsIIDRef;
38 typedef nsIIDRef nsCIDRef;
39
40 typedef void** nsQIResult;
41 typedef WCHAR PRUnichar;
42 typedef ULONG PRUint32;
43 typedef LONG PRInt32;
44 typedef WORD PRUint16;
45 typedef INT16 PRInt16;
46 typedef BYTE PRUint8;
47 typedef BOOL PRBool;
48 typedef LARGE_INTEGER PRInt64;
49 typedef ULARGE_INTEGER PRUint64;
50 typedef PRUint64 DOMTimeStamp;
51 typedef PRUint32 nsLoadFlags;
52
53 typedef struct {
54     void *v;
55     void *d1;
56     PRUint32 d2;
57     void *d3;
58 } nsCStringContainer;
59
60 typedef struct {
61     void *v;
62     void *d1;
63     PRUint32 d2;
64     void *d3;
65 } nsStringContainer;
66
67 typedef nsCStringContainer nsACString;
68 typedef nsStringContainer nsAString;
69
70 interface nsIWebBrowserChrome;
71 interface nsILoadGroup;
72 interface nsIDOMNode;
73 interface nsIDOMDocument;
74 interface nsIDOMEvent;
75 interface nsIEditor;
76 interface nsISelectionController;
77 interface nsITransactionManager;
78 interface nsITransaction;
79 interface nsIInlineSpellChecker;
80 interface nsIOutputStream;
81 interface nsIEditorObserver;
82 interface nsIEditActionListener;
83 interface nsIDocumentStateListener;
84
85 interface IMoniker;
86
87 [
88     object,
89     uuid(00000000-0000-0000-c000-000000000046)
90 ]
91 interface nsISupports
92 {
93     nsresult QueryInterface(nsIIDRef riid, nsQIResult result);
94     nsrefcnt AddRef();
95     nsrefcnt Release();
96 }
97
98 /* Currently we don't need a full declaration of these interfaces */
99 typedef nsISupports nsISHistory;
100 typedef nsISupports nsIWidget;
101 typedef nsISupports nsIDOMAbstractView;
102 typedef nsISupports nsIHttpHeaderVisitor;
103 typedef nsISupports nsIDOMBarProp;
104 typedef nsISupports nsIDOMWindowCollection;
105 typedef nsISupports nsIPrompt;
106 typedef nsISupports nsIAuthPrompt;
107 typedef nsISupports nsIDOMNamedNodeMap;
108 typedef nsISupports nsIDOMAttr;
109 typedef nsISupports nsIDOMDocumentType;
110 typedef nsISupports nsIDOMDOMImplementation;
111 typedef nsISupports nsIDOMCDATASection;
112 typedef nsISupports nsIDOMProcessingInstruction;
113 typedef nsISupports nsIDOMEntityReference;
114 typedef nsISupports nsIDOMHTMLFormElement;
115 typedef nsISupports nsIDOMHTMLOptionsCollection;
116 typedef nsISupports nsIDOMHTMLCollection;
117 typedef nsISupports nsIWebProgressListener;
118 typedef nsISupports nsIDOMCSSValue;
119 typedef nsISupports nsIDOMCSSRule;
120 typedef nsISupports nsIPrintSession;
121 typedef nsISupports nsIControllerCommandTable;
122 typedef nsISupports nsIPrincipal;
123 typedef nsISupports nsIAtom;
124 typedef nsISupports nsISupportsArray;
125 typedef nsISupports nsIContentFilter;
126 typedef nsISupports nsIDOMStyleSheet;
127
128 [
129     object,
130     uuid(8bb35ed9-e332-462d-9155-4a002ab5c958)
131     /* FROZEN */
132 ]
133 interface nsIServiceManager : nsISupports
134 {
135     nsresult GetService(nsCIDRef aClass, nsIIDRef aIID, void **result);
136     nsresult GetServiceByContractID(const char *aContractID, nsIIDRef aIID, void **result);
137     nsresult IsServiceInstantiated(nsCIDRef aClass, nsIIDRef aIID, BOOL *_retval);
138     nsresult IsServiceInstantiatedByContractID(const char *aContractID, nsIIDRef aIID, BOOL *_retval);
139 }
140
141 [
142     object,
143     uuid(00000001-0000-0000-c000-000000000046)
144     /* FROZEN */
145 ]
146 interface nsIFactory : nsISupports
147 {
148     nsresult CreateInstance(nsISupports *aOuter, const nsIID *iid, void **result);
149     nsresult LockFactory(PRBool lock);
150 }
151
152 [
153     object,
154     uuid(db242e01-e4d9-11d2-9dde-000064657374)
155     /* FROZEN */
156 ]
157 interface nsIObserver : nsISupports
158 {
159     nsresult Observe(nsISupports *aSubject, const char *aTopic, const PRUnichar *aData);
160 }
161
162 [
163     object,
164     uuid(a88e5a60-205a-4bb1-94e1-2628daf51eae)
165     /* FROZEN */
166 ]
167 interface nsIComponentManager : nsISupports
168 {
169     nsresult GetClassObject(nsCIDRef aClass, nsIIDRef aIID, nsQIResult result);
170     nsresult GetClassObjectByContractID(const char *aContractID, nsIIDRef aIID, nsQIResult result);
171     nsresult CreateInstance(nsCIDRef aClass, nsISupports *aDelegate, nsIIDRef aIID,
172             nsQIResult result);
173     nsresult CreateInstanceByContractID(const char *aContractID, nsISupports *aDelegate,
174             nsIIDRef aIID, nsQIResult result);
175 }
176
177 [
178     object,
179     uuid(59e7e77a-38e4-11d4-8cf5-0060b0fc14a3)
180     /* FROZEN */
181 ]
182 interface nsIMemory : nsISupports
183 {
184     void *Alloc(/*size_t*/ int size);
185     void *Realloc(void *_ptr, /*size_t*/ int newSize);
186     void Free(void *_ptr);
187     nsresult HeapMinimize(PRBool immediate);
188     nsresult IsLowMemory(PRBool *_retval);
189 }
190
191 [
192     object,
193     uuid(9188bc85-f92e-11d2-81ef-0060083a0bcf)
194     /* FROZEN */
195 ]
196 interface nsIWeakReference : nsISupports
197 {
198     nsresult QueryReferent(const nsIID *riid, void **result);
199 }
200
201 [
202     object,
203     uuid(9188bc86-f92e-11d2-81ef-0060083a0bcf)
204     /* FROZEN */
205 ]
206 interface nsISupportsWeakReference : nsISupports
207 {
208     nsresult GetWeakReference(nsIWeakReference **_retval);
209 }
210
211 [
212     object,
213     uuid(033a1470-8b2a-11d3-af88-00a024ffc08c)
214     /* FROZEN */
215 ]
216 interface nsIInterfaceRequestor : nsISupports
217 {
218     nsresult GetInterface(const nsIID *riid, void **result);
219 }
220
221 [
222     object,
223     uuid(d1899240-f9d2-11d2-bdd6-000064657374)
224     /* FROZEN */
225 ]
226 interface nsISimpleEnumerator : nsISupports
227 {
228     nsresult HasMoreElements(PRBool *_retval);
229     nsresult GetNext(nsISupports **_retval);
230 }
231
232 [
233     object,
234     uuid(114744d9-c369-456e-b55a-52fe52880d2d)
235     /* NOT_FROZEN */
236 ]
237 interface nsIArray : nsISupports
238 {
239     nsresult GetLength(PRUint32 *aLength);
240     nsresult QueryElementAt(PRUint32 index, const nsIID *uuid, void **result);
241     nsresult IndexOf(PRUint32 startIndex, nsISupports *element, PRUint32 *_retval);
242     nsresult Enumerate(nsISimpleEnumerator **_retval);
243 }
244
245 [
246     object,
247     uuid(af059da0-c85b-40ec-af07-ae4bfdc192cc)
248     /* NOT_FROZEN */
249 ]
250 interface nsIMutableArray : nsIArray
251 {
252     nsresult AppendElement(nsISupports *element, PRBool weak);
253     nsresult RemoveElementAt(PRUint32 index);
254     nsresult InsertElementAt(nsISupports *element, PRUint32 index, PRBool weak);
255     nsresult Clear();
256 }
257
258 [
259     object,
260     uuid(4d12e540-83d7-11d5-90ed-0010a4e73d9a)
261     /* NOT_FROZEN */
262 ]
263 interface nsIVariant : nsISupports
264 {
265     enum nsDataType {
266         TYPE_INT8,
267         TYPE_INT16,
268         TYPE_INT32,
269         TYPE_INT64,
270         TYPE_UINT8,
271         TYPE_UINT16,
272         TYPE_UINT32,
273         TYPE_UINT64,
274         TYPE_FLOAT,
275         TYPE_DOUBLE,
276         TYPE_BOOL,
277         TYPE_CHAR,
278         TYPE_WCHAR,
279         TYPE_VOID,
280         TYPE_ID,
281         TYPE_DOMSTRING,
282         TYPE_CHAR_STR,
283         TYPE_WCHAR_STR,
284         TYPE_INTERFACE,
285         TYPE_INTERFACE_IS,
286         TYPE_ARRAY,
287         TYPE_STRING_SIZE_IS,
288         TYPE_WSTRING_SIZE_IS,
289         TYPE_UTF8STRING,
290         TYPE_CSTRING,
291         TYPE_ASTRING,
292         TYPE_AMPTY_ARRAY,
293         TYPE_EMPTY
294     };
295
296     nsresult GetDataType(PRUint16 *aDataType);
297     nsresult GetAsInt8(PRUint8 *_retval);
298     nsresult GetAsInt16(PRInt16 *_retval);
299     nsresult GetAsInt32(PRInt32 *_retval);
300     nsresult GetAsInt64(PRInt64 *_retval);
301     nsresult GetAsUint8(PRUint8 *_retval);
302     nsresult GetAsUint16(PRUint16 *_retval);
303     nsresult GetAsUint32(PRUint32 *_retval);
304     nsresult GetAsUint64(PRUint64 *_retval);
305     nsresult GetAsFloat(float *_retval);
306     nsresult GetAsDouble(double *_retval);
307     nsresult GetAsBool(PRBool *_retval);
308     nsresult GetAsChar(char *_retval);
309     nsresult GetAsWChar(PRUnichar *_retval);
310     nsresult GetAsID(nsID *retval);
311     nsresult GetAsAString(nsAString *_retval);
312     nsresult GetAsDOMString(nsAString *_retval);
313     nsresult GetAsACString(nsACString *_retval);
314     nsresult GetAsAUTF8String(nsACString *_retval);
315     nsresult GetAsString(char **_retval);
316     nsresult GetAsWString(PRUnichar **_retval);
317     nsresult GetAsISupports(nsISupports **_retval);
318     nsresult GetAsInterface(nsIID * *iid, void **iface);
319     nsresult GetAsArray(PRUint16 *type, nsIID *iid, PRUint32 *count, void **ptr);
320     nsresult GetAsStringWithSize(PRUint32 *size, char **str);
321     nsresult GetAsWStringWithSize(PRUint32 *size, PRUnichar **str);
322 }
323
324 [
325     object,
326     uuid(5586a590-8c82-11d5-90f3-0010a4e73d9a)
327     /* NOT_FROZEN */
328 ]
329 interface nsIWritableVariant : nsIVariant
330 {
331     nsresult GetWritable(PRBool *aWritable);
332     nsresult SetWritable(PRBool aWritable);
333     nsresult SetAsInt8(PRUint8 aValue);
334     nsresult SetAsInt16(PRInt16 aValue);
335     nsresult SetAsInt32(PRInt32 aValue);
336     nsresult SetAsInt64(PRInt64 aValue);
337     nsresult SetAsUint8(PRUint8 aValue);
338     nsresult SetAsUint16(PRUint16 aValue);
339     nsresult SetAsUint32(PRUint32 aValue);
340     nsresult SetAsUint64(PRUint64 aValue);
341     nsresult SetAsFloat(float aValue);
342     nsresult SetAsDouble(double aValue);
343     nsresult SetAsBool(PRBool aValue);
344     nsresult SetAsChar(char aValue);
345     nsresult SetAsWChar(PRUnichar aValue);
346     nsresult SetAsID(const nsID *aValue);
347     nsresult SetAsAString(const nsAString *aValue);
348     nsresult SetAsDOMString(const nsAString *aValue);
349     nsresult SetAsACString(const nsACString *aValue);
350     nsresult SetAsAUTF8String(const nsACString *aValue);
351     nsresult SetAsString(const char *aValue);
352     nsresult SetAsWString(const PRUnichar *aValue);
353     nsresult SetAsISupports(nsISupports *aValue);
354     nsresult SetAsInterface(const nsIID *iid, void *iface);
355     nsresult SetAsArray(PRUint16 type, const nsIID *iid, PRUint32 count, void *ptr);
356     nsresult SetAsStringWithSize(PRUint32 size, const char *str);
357     nsresult SetAsWStringWithSize(PRUint32 size, const PRUnichar *str);
358     nsresult SetAsVoid();
359     nsresult SetAsEmpty();
360     nsresult SetAsEmptyArray();
361     nsresult SetFromVariant(nsIVariant *aValue);
362 }
363
364 [
365     object,
366     uuid(fa9c7f6c-61b3-11d4-9877-00c04fa0cf4a)
367     /* FROZEN */
368 ]
369 interface nsIInputStream : nsISupports
370 {
371     nsresult Close();
372     nsresult Available(PRUint32 *_retval);
373     nsresult Read(char *aBuf, PRUint32 aCount, PRUint32 *_retval);
374     nsresult ReadSegments(nsresult (*aWriter)(nsIInputStream *aInStream, 
375             void *aClosure, const char *aFromSegment, PRUint32 aToOffset,
376             PRUint32 aCount, PRUint32 *aWriteCount),
377             void *aClosure, PRUint32 aCount, PRUint32 *_retval);
378     nsresult IsNonBlocking(PRBool *_retval);
379 }
380
381 [
382     object,
383     uuid(450cd2d4-f0fd-424d-b365-b1251f80fd53)
384     /* NOT_FROZEN */
385 ]
386 interface nsIStringInputStream : nsIInputStream
387 {
388     nsresult SetData(const char *data, PRInt32 dataLen);
389     nsresult AdoptData(char *data, PRInt32 dataLen);
390     nsresult ShareData(const char *data, PRInt32 dataLen);
391 }
392
393 [
394     object,
395     uuid(07a22cc0-0ce5-11d3-9331-00104ba0fd40)
396     /* FROZEN */
397 ]
398 interface nsIURI : nsISupports
399 {
400     nsresult GetSpec(nsACString *aSpec);
401     nsresult SetSpec(const nsACString *aSpec);
402     nsresult GetPrePath(nsACString *aPrePath);
403     nsresult GetScheme(nsACString *aScheme);
404     nsresult SetScheme(const nsACString *aScheme);
405     nsresult GetUserPass(nsACString *aUserPass);
406     nsresult SetUserPass(const nsACString *aUserPass);
407     nsresult GetUsername(nsACString *aUsername);
408     nsresult SetUsername(const nsACString *aUsername);
409     nsresult GetPassword(nsACString *aPassword);
410     nsresult SetPassword(const nsACString *aPassword);
411     nsresult GetHostPort(nsACString *aHostPort);
412     nsresult SetHostPort(const nsACString *aHostPort);
413     nsresult GetHost(nsACString *aHost);
414     nsresult SetHost(const nsACString *aHost);
415     nsresult GetPort(PRInt32 *aPort);
416     nsresult SetPort(PRInt32 aPort);
417     nsresult GetPath(nsACString *aPath);
418     nsresult SetPath(const nsACString *aPath);
419     nsresult Equals(nsIURI *other, PRBool *_retval);
420     nsresult SchemeIs(const char *scheme, PRBool *_retval);
421     nsresult Clone(nsIURI **_retval);
422     nsresult Resolve(const nsACString *relativePath, nsACString *_retval);
423     nsresult GetAsciiSpec(nsACString *aAsciiSpec);
424     nsresult GetAsciiHost(nsACString *aAsciiHost);
425     nsresult GetOriginCharset(nsACString *aOriginCharset);
426 }
427
428 [
429     object,
430     uuid(ef6bfbd2-fd46-48d8-96b7-9f8f0fd387fe)
431     /* FROZEN */
432 ]
433 interface nsIRequest : nsISupports
434 {
435     nsresult GetName(nsACString *aName);
436     nsresult IsPending(PRBool *_retval);
437     nsresult GetStatus(nsresult *aStatus);
438     nsresult Cancel(nsresult aStatus);
439     nsresult Suspend();
440     nsresult Resume();
441     nsresult GetLoadGroup(nsILoadGroup **aLoadGroup);
442     nsresult SetLoadGroup(nsILoadGroup *aLoadGroup);
443     nsresult GetLoadFlags(nsLoadFlags *aLoadFlags);
444     nsresult SetLoadFlags(nsLoadFlags aLoadFlags);
445 }
446
447 [
448     object,
449     uuid(fd91e2e0-1481-11d3-9333-00104ba0fd40)
450     /* FROZEN */
451 ]
452 interface nsIRequestObserver : nsISupports
453 {
454     nsresult OnStartRequest(nsIRequest *aRequest, nsISupports *aContext);
455     nsresult OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode);
456 }
457
458 [
459     object,
460     uuid(1a637020-1482-11d3-9333-00104ba0fd40)
461     /* FROZEN */
462
463 interface nsIStreamListener : nsIRequestObserver
464 {
465     nsresult OnDataAvailable(nsIRequest *aRequest, nsISupports *aContext,
466                              nsIInputStream *aInputStream, PRUint32 aOffset, PRUint32 aCount);
467 }
468
469 [
470     object,
471     uuid(3de0a31c-feaf-400f-9f1e-4ef71f8b20cc)
472     /* FROZEN */
473 ]
474 interface nsILoadGroup : nsIRequest
475 {
476     nsresult GetGroupObserver(nsIRequestObserver **aGroupObserver);
477     nsresult SetGroupObserver(nsIRequestObserver *aGroupObserver);
478     nsresult GetDefaultLoadRequest(nsIRequest **aDefaultLoadRequest);
479     nsresult SetDefaultLoadRequest(nsIRequest *aDefaultLoadRequest);
480     nsresult AddRequest(nsIRequest *aRequest, nsISupports *aContext);
481     nsresult RemoveRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatus);
482     nsresult GetRequests(nsISimpleEnumerator **aRequests);
483     nsresult GetActiveCount(PRUint32 *aActiveCount);
484     nsresult GetNotificationCallbacks(nsIInterfaceRequestor **aNotificationCallbacks);
485     nsresult SetNotificationCallbacks(nsIInterfaceRequestor *aNotificationCallbacks);
486 }
487
488 [
489     object,
490     uuid(c63a055a-a676-4e71-bf3c-6cfa11082018)
491     /* FROZEN */
492 ]
493 interface nsIChannel : nsIRequest
494 {
495     nsresult GetOriginalURI(nsIURI **aOriginalURI);
496     nsresult SetOriginalURI(nsIURI *aOriginalURI);
497     nsresult GetURI(nsIURI **aURI);
498     nsresult GetOwner(nsISupports **aOwner);
499     nsresult SetOwner(nsISupports *aOwner);
500     nsresult GetNotificationCallbacks(nsIInterfaceRequestor **aNotificationCallbacks);
501     nsresult SetNotificationCallbacks(nsIInterfaceRequestor *aNotificationCallbacks);
502     nsresult GetSecurityInfo(nsISupports **aSecurityInfo);
503     nsresult GetContentType(nsACString *aContentType);
504     nsresult SetContentType(const nsACString *aContentType);
505     nsresult GetContentCharset(nsACString *aContentCharset);
506     nsresult SetContentCharset(const nsACString *aContentCharset);
507     nsresult GetContentLength(PRInt32 *aContentLength);
508     nsresult SetContentLength(PRInt32 aContentLength);
509     nsresult Open(nsIInputStream **_retval);
510     nsresult AsyncOpen(nsIStreamListener *aListener, nsISupports *aContext);
511 }
512
513 [
514     object,
515     uuid(9277fe09-f0cc-4cd9-bbce-581dd94b0260)
516     /* FROZEN */
517 ]
518 interface nsIHttpChannel : nsIChannel
519 {
520     nsresult GetRequestMethod(nsACString *aRequestMethod);
521     nsresult SetRequestMethod(const nsACString *aRequestMethod);
522     nsresult GetReferrer(nsIURI **aReferrer);
523     nsresult SetReferrer(nsIURI *aReferrer);
524     nsresult GetRequestHeader(const nsACString *aHeader, nsACString *_retval);
525     nsresult SetRequestHeader(const nsACString *aHeader, const nsACString *aValue, PRBool aMerge);
526     nsresult VisitRequestHeaders(nsIHttpHeaderVisitor *aVisitor);
527     nsresult GetAllowPipelining(PRBool *aAllowPipelining);
528     nsresult SetAllowPipelining(PRBool aAllowPipelining);
529     nsresult GetRedirectionLimit(PRUint32 *aRedirectionLimit);
530     nsresult SetRedirectionLimit(PRUint32 aRedirectionLimit);
531     nsresult GetResponseStatus(PRUint32 *aResponseStatus);
532     nsresult GetResponseStatusText(nsACString *aResponseStatusText);
533     nsresult GetRequestSucceeded(PRBool *aRequestSucceeded);
534     nsresult GetResponseHeader(const nsACString *header, nsACString *_retval);
535     nsresult SetResponseHeader(const nsACString *header, const nsACString *value, PRBool merge);
536     nsresult VisitResponseHeaders(nsIHttpHeaderVisitor *aVisitor);
537     nsresult IsNoStoreResponse(PRBool *_retval);
538     nsresult IsNoCacheResponse(PRBool *_retval);
539 }
540
541 [
542     object,
543     uuid(ddf633d8-e9a4-439d-ad88-de636fd9bb75)
544     /* FROZEN */
545 ]
546 interface nsIUploadChannel : nsISupports
547 {
548     nsresult SetUploadStream(nsIInputStream *aStream, const nsACString *aContentType,
549                              PRInt32 aContentLength);
550     nsresult GetUploadStream(nsIInputStream **aUploadStream);
551 }
552
553 [
554     object,
555     uuid(a6cf90be-15b3-11d2-932e-00805f8add32)
556     /* FROZEN */
557 ]
558 interface nsIDOMCSSStyleDeclaration : nsISupports
559 {
560     nsresult GetCssText(nsAString *aCssText);
561     nsresult SetCssText(const nsAString *aCssText);
562     nsresult GetPropertyValue(const nsAString *propertyName, nsAString *_retval);
563     nsresult GetPropertyCSSValue(const nsAString *propertyName, nsIDOMCSSValue **_retval);
564     nsresult RemoveProperty(const nsAString *propertyName, nsAString *_retval);
565     nsresult GetPropertyPriority(const nsAString *propertyName, nsAString *_retval);
566     nsresult SetProperty(const nsAString *propertyName, const nsAString *value,
567                          const nsAString *priority);
568     nsresult GetLength(PRUint32 *aLength);
569     nsresult Item(PRUint32 index, nsAString *_retval);
570     nsresult GetParentRule(nsIDOMCSSRule **aParentRule);
571 }
572
573 [
574     object,
575     uuid(a6cf9081-15b3-11d2-932e-00805f8add32)
576     /* FROZEN */
577 ]
578 interface nsIDOMStyleSheetList : nsISupports
579 {
580     nsresult GetLength(PRUint32 *aLength);
581     nsresult Item(PRUint32 index, nsIDOMStyleSheet **_retval);
582 }
583
584 [
585     object,
586     uuid(a6cf907d-15b3-11d2-932e-00805f8add32)
587     /* FROZEN */
588 ]
589 interface nsIDOMNodeList : nsISupports
590 {
591     nsresult Item(PRUint32 index, nsIDOMNode **_retval);
592     nsresult GetLength(PRUint32 *aLength);
593 }
594
595 [
596     object,
597     uuid(a6cf907c-15b3-11d2-932e-00805f8add32)
598     /* FROZEN */
599 ]
600 interface nsIDOMNode : nsISupports
601 {
602     enum NSNODETYPE {
603         ELEMENT_NODE = 1,
604         ATTRIBUTE_NODE = 2,
605         TEXT_NODE = 3,
606         CDATA_SELECTION_NODE = 4,
607         ENTITY_REFERENCE_NODE = 5,
608         ENTITY_NODE = 6,
609         PROCESSING_INSTRUCTION_NODE = 7,
610         COMMENT_NODE = 8,
611         DOCUMENT_NODE = 9,
612         DOCUMENT_TYPE_NODE = 10,
613         DOCUMENT_FRAGMENT_NODE = 11,
614         NOTATION_NODE = 12
615     };
616
617     nsresult GetNodeName(nsAString *aNodeName);
618     nsresult GetNodeValue(nsAString *aNodeValue);
619     nsresult SetNodeValue(const nsAString *aNodeValue);
620     nsresult GetNodeType(PRUint16 *aNodeType);
621     nsresult GetParentNode(nsIDOMNode **aParentNode);
622     nsresult GetChildNodes(nsIDOMNodeList **aChildNodes);
623     nsresult GetFirstChild(nsIDOMNode **aFirstChild);
624     nsresult GetLastChild(nsIDOMNode **aLastChild);
625     nsresult GetPreviousSibling(nsIDOMNode **aPreviousSibling);
626     nsresult GetNextSibling(nsIDOMNode **aNextSibling);
627     nsresult GetAttributes(nsIDOMNamedNodeMap **aAttributes);
628     nsresult GetOwnerDocument(nsIDOMDocument **aOwnerDocument);
629     nsresult InsertBefore(nsIDOMNode *newChild, nsIDOMNode *refChild, nsIDOMNode **_retval);
630     nsresult ReplaceChild(nsIDOMNode *newChild, nsIDOMNode *oldChild, nsIDOMNode **_retval);
631     nsresult RemoveChild(nsIDOMNode *oldChild, nsIDOMNode **_retval);
632     nsresult AppendChild(nsIDOMNode *newChild, nsIDOMNode **_retval);
633     nsresult HasChildNodes(PRBool *_retval);
634     nsresult CloneNode(PRBool deep, nsIDOMNode **_retval);
635     nsresult Normalize();
636     nsresult IsSupported(const nsAString *feature, const nsAString *version, PRBool *_retval);
637     nsresult GetNamespaceURI(nsAString *aNamespaceURI);
638     nsresult GetPrefix(nsAString *aPrefix);
639     nsresult SetPrefix(const nsAString *aPrefix);
640     nsresult GetLocalName(nsAString *aLocalName);
641     nsresult HasAttributes(PRBool *_retval);
642 }
643
644 [
645     object,
646     uuid(a6cf9078-15b3-11d2-932e-00805f8add32)
647     /* FROZEN */
648 ]
649 interface nsIDOMElement : nsIDOMNode
650 {
651     nsresult GetTagName(nsAString *aTagName);
652     nsresult GetAttribute(const nsAString *name, nsAString *_retval);
653     nsresult SetAttribute(const nsAString *name, const nsAString *value);
654     nsresult RemoveAttribute(const nsAString *name);
655     nsresult GetAttributeNode(const nsAString *name, nsIDOMAttr **_retval);
656     nsresult SetAttributeNode(nsIDOMAttr *newAttr, nsIDOMAttr **_retval);
657     nsresult RemoveAttributeNode(nsIDOMAttr *oldAttr, nsIDOMAttr **_retval);
658     nsresult GetElementsByTagName(const nsAString *name, nsIDOMNodeList **_retval);
659     nsresult GetAttributeNS(const nsAString *namespaceURI, const nsAString *localName,
660                             nsAString *_retval);
661     nsresult SetAttributeNS(const nsAString *namespaceURI, const nsAString *qualifiedName,
662                             const nsAString *value);
663     nsresult RemoveAttributeNS(const nsAString *namespaceURI, const nsAString *localName);
664     nsresult GetAttributeNodeNS(const nsAString *namespaceURI, const nsAString *localName,
665                                 nsIDOMAttr **_retval);
666     nsresult SetAttributeNodeNS(nsIDOMAttr *newAttr, nsIDOMAttr **_retval);
667     nsresult GetElementsByTagNameNS(const nsAString *namespaceURI, const nsAString *localName,
668                                     nsIDOMNodeList **_retval);
669     nsresult HasAttribute(const nsAString *name, PRBool *_retval);
670     nsresult HasAttributeNS(const nsAString *namespaceURI, const nsAString *localName,
671                             PRBool *_retval);
672 }
673
674 [
675     object,
676     uuid(99715845-95fc-4a56-aa53-214b65c26e22)
677     /* FROZEN */
678 ]
679 interface nsIDOMElementCSSInlineStyle : nsISupports
680 {
681     nsresult GetStyle(nsIDOMCSSStyleDeclaration **aStyle);
682 }
683
684 cpp_quote("#undef GetClassName");
685
686 [
687     object,
688     uuid(a6cf9085-15b3-11d2-932e-00805f8add32)
689     /* FROZEN */
690 ]
691 interface nsIDOMHTMLElement : nsIDOMElement
692 {
693     nsresult GetId(nsAString *aId);
694     nsresult SetId(const nsAString *aId);
695     nsresult GetTitle(nsAString *aTitle);
696     nsresult SetTitle(const nsAString *aTitle);
697     nsresult GetLang(nsAString *aLang);
698     nsresult SetLang(const nsAString *aLang);
699     nsresult GetDir(nsAString *aDir);
700     nsresult SetDir(const nsAString *aDir);
701     nsresult GetClassName(nsAString *aClassName);
702     nsresult SetClassName(const nsAString *aClassName);
703 }
704
705 [
706     object,
707     uuid(da83b2ec-8264-4410-8496-ada3acd2ae42)
708     /* NOT_FROZEN */
709 ]
710 interface nsIDOMNSHTMLElement : nsISupports
711 {
712     nsresult GetOffsetTop(PRInt32 *aOffsetTop);
713     nsresult GetOffsetLeft(PRInt32 *aOffsetLeft);
714     nsresult GetOffsetWidth(PRInt32 *aOffsetWidth);
715     nsresult GetOffsetHeight(PRInt32 *aOffsetHeight);
716     nsresult GetOffsetParent(nsIDOMElement **aOffsetParent);
717     nsresult GetInnerHTML(nsAString *aInnerHTML);
718     nsresult SetInnerHTML(const nsAString *aInnerHTML);
719     nsresult GetScrollTop(PRInt32 *aScrollTop);
720     nsresult SetScrollTop(PRInt32 aScrollTop);
721     nsresult GetScrollLeft(PRInt32 *aScrollLeft);
722     nsresult SetScrollLeft(PRInt32 aScrollLeft);
723     nsresult GetScrollHeight(PRInt32 *aScrollHeight);
724     nsresult GetScrollWidth(PRInt32 *aScrollWidth);
725     nsresult GetClientHeight(PRInt32 *aClientHeight);
726     nsresult GetClientWidth(PRInt32 *aClientWidth);
727     nsresult GetTabIndex(PRInt32 *aTabIndex);
728     nsresult SetTabIndex(PRInt32 aTabIndex);
729     nsresult blur();
730     nsresult focus();
731     nsresult ScrollIntoView(PRBool top);
732 }
733
734 [
735     object,
736     uuid(a6cf9072-15b3-11d2-932e-00805f8add32)
737     /* FROZEN */
738 ]
739 interface nsIDOMCharacterData : nsIDOMNode
740 {
741     nsresult GetData(nsAString *aData);
742     nsresult SetData(const nsAString *aData);
743     nsresult GetLength(PRUint32 *aLength);
744     nsresult SubstringData(PRUint32 offset, PRUint32 count, nsAString *_retval);
745     nsresult AppendData(const nsAString *arg);
746     nsresult InsertData(PRUint32 offset, const nsAString *arg);
747     nsresult DeleteData(PRUint32 offset, PRUint32 count);
748     nsresult ReplaceData(PRUint32 offset, PRUint32 count, const nsAString *arg);
749 }
750
751 [
752     object,
753     uuid(a6cf9082-15b3-11d2-932e-00805f8add32)
754     /* FROZEN */
755 ]
756 interface nsIDOMText : nsIDOMCharacterData
757 {
758     nsresult SplitText(PRUint32 offset, nsIDOMText **_retval);
759 }
760
761 [
762     object,
763     uuid(a6cf9073-15b3-11d2-932e-00805f8add32)
764     /* FROZEN */
765 ]
766 interface nsIDOMComment : nsIDOMCharacterData
767 {
768 }
769
770 [
771     object,
772     uuid(a6cf9076-15b3-11d2-932e-00805f8add32)
773     /* FROZEN */
774 ]
775 interface nsIDOMDocumentFragment : nsIDOMNode
776 {
777 }
778
779 [
780     object,
781     uuid(a6cf9075-15b3-11d2-932e-00805f8add32)
782     /* FROZEN */
783 ]
784 interface nsIDOMDocument : nsIDOMNode
785 {
786     nsresult GetDoctype(nsIDOMDocumentType **aDoctype);
787     nsresult GetImplementation(nsIDOMDOMImplementation **aImplementation);
788     nsresult GetDocumentElement(nsIDOMElement **aDocumentElement);
789     nsresult CreateElement(const nsAString *tagName, nsIDOMElement **_retval);
790     nsresult CreateDocumentFragment(nsIDOMDocumentFragment **_retval);
791     nsresult CreateTextNode(const nsAString *data, nsIDOMText **_retval);
792     nsresult CreateComment(const nsAString *data, nsIDOMComment **_retval);
793     nsresult CreateCDATASection(const nsAString *data, nsIDOMCDATASection **_retval);
794     nsresult CreateProcessingInstruction(const nsAString *target, const nsAString *data,
795                                          nsIDOMProcessingInstruction **_retval);
796     nsresult CreateAttribute(const nsAString *name, nsIDOMAttr **_retval);
797     nsresult CreateEntityReference(const nsAString *name, nsIDOMEntityReference **_retval);
798     nsresult GetElementsByTagName(const nsAString *tagname, nsIDOMNodeList **_retval);
799     nsresult ImportNode(nsIDOMNode *importedNode, PRBool deep, nsIDOMNode **_retval);
800     nsresult CreateElementNS(const nsAString *namespaceURI, const nsAString *qualifiedName,
801                              nsIDOMElement **_retval);
802     nsresult CreateAttributeNS(const nsAString *namespaceURI, const nsAString *qualifiedName,
803                                nsIDOMAttr **_retval);
804     nsresult GetElementsByTagNameNS(const nsAString *namespaceURI, const nsAString *localName,
805                                     nsIDOMNodeList **_retval);
806     nsresult GetElementById(const nsAString *elementId, nsIDOMElement **_retval);
807 }
808
809 [
810     object,
811     uuid(a6cf9084-15b3-11d2-932e-00805f8add32)
812     /* FROZEN */
813 ]
814 interface nsIDOMHTMLDocument : nsIDOMDocument
815 {
816     nsresult GetTitle(nsAString *aTitle);
817     nsresult SetTitle(const nsAString *aTitle);
818     nsresult GetReferrer(nsAString *aReferrer);
819     nsresult GetDomain(nsAString *aDomain);
820     nsresult GetURL(nsAString *aURL);
821     nsresult GetBody(nsIDOMHTMLElement **aBody);
822     nsresult SetBody(nsIDOMHTMLElement *aBody);
823     nsresult GetImages(nsIDOMHTMLCollection **aImages);
824     nsresult GetApplets(nsIDOMHTMLCollection **aApplets);
825     nsresult GetLinks(nsIDOMHTMLCollection **aLinks);
826     nsresult GetForms(nsIDOMHTMLCollection **aForms);
827     nsresult GetAnchors(nsIDOMHTMLCollection **aAnchors);
828     nsresult GetCookie(nsAString *aCookie);
829     nsresult SetCookie(const nsAString *aCookie);
830     nsresult Open();
831     nsresult Close();
832     nsresult Write(const nsAString *text);
833     nsresult Writeln(const nsAString *text);
834     nsresult GetElementsByName(const nsAString *elementName, nsIDOMNodeList **_retval);
835 }
836
837 [
838     object,
839     uuid(79beb289-3644-4b54-9432-9fb993945629)
840     /* NOT_FROZEN */
841 ]
842 interface nsIDOMNSHTMLDocument : nsISupports
843 {
844     nsresult GetWidth(PRInt32 *aWidth);
845     nsresult GetHeight(PRInt32 *aHeight);
846     nsresult GetAlinkColor(nsAString *aAlinkColor);
847     nsresult SetAlinkColor(const nsAString *aAlinkColor);
848     nsresult GetLinkColor(nsAString *aLinkColor);
849     nsresult SetLinkColor(const nsAString *aLinkColor);
850     nsresult GetVlinkColor(nsAString *aVlinkColor);
851     nsresult SetVlinkColor(const nsAString *aVlinkColor);
852     nsresult GetBgColor(nsAString *aBgColor);
853     nsresult SetBgColor(const nsAString *aBgColor);
854     nsresult GetFgColor(nsAString *aFgColor);
855     nsresult SetFgColor(const nsAString *aFgColor);
856     nsresult GetDomain(nsAString *aDomain);
857     nsresult SetDomain(const nsAString *aDomain);
858     nsresult GetEmbeds(nsIDOMHTMLCollection **aEmbeds);
859     nsresult GetSelection(nsAString *_retval);
860     nsresult Open(nsIDOMDocument **_retval);
861     nsresult Write();
862     nsresult Writeln();
863     nsresult Clear();
864     nsresult CaptureEvents(PRInt32 eventFlags);
865     nsresult ReleaseEvents(PRInt32 eventFlags);
866     nsresult RouteEvent(nsIDOMEvent *evt);
867     nsresult GetCompatMode(nsAString *aCompatMode);
868     nsresult GetPlugins(nsIDOMHTMLCollection **aPlugins);
869     nsresult GetDesignMode(nsAString *aDesignMode);
870     nsresult SetDesignMode(const nsAString *aDesignMode);
871     nsresult ExecCommand(const nsAString *commandID, PRBool doShowUI, const nsAString *value, PRBool *_retval);
872     nsresult ExecCommandShowHelp(const nsAString *commandID, PRBool *_retval);
873     nsresult QueryCommandEnabled(const nsAString *commandID, PRBool *_retval);
874     nsresult QueryCommandIndeterm(const nsAString *commandID, PRBool *_retval);
875     nsresult QueryCommandState(const nsAString *commandID, PRBool *_retval);
876     nsresult QueryCommandSupported(const nsAString *commandID, PRBool *_retval);
877     nsresult QueryCommandText(const nsAString *commandID, nsAString *_retval);
878     nsresult QueryCommandValue(const nsAString *commandID, nsAString *_retval);
879 }
880
881 [
882     object,
883     uuid(3d9f4973-dd2e-48f5-b5f7-2634e09eadd9)
884     /* FROZEN */
885 ]
886 interface nsIDOMDocumentStyle : nsISupports
887 {
888     nsresult GetStyleSheets(nsIDOMStyleSheetList **aStyleSheets);
889 }
890
891 [
892     object,
893     uuid(a6cf90ce-15b3-11d2-932e-00805f8add32)
894     /* FROZEN */
895 ]
896 interface nsIDOMRange : nsISupports
897 {
898     enum {
899         NS_START_TO_START,
900         NS_START_TO_END,
901         NS_END_TO_END,
902         NS_END_TO_START
903     };
904
905     nsresult GetStartContainer(nsIDOMNode **aStartContainer);
906     nsresult GetStartOffset(PRInt32 *aStartOffset);
907     nsresult GetEndContainer(nsIDOMNode **aEndContainer);
908     nsresult GetEndOffset(PRInt32 *aEndOffset);
909     nsresult GetCollapsed(PRBool *aCollapsed);
910     nsresult GetCommonAncestorContainer(nsIDOMNode **aCommonAncestorContainer);
911     nsresult SetStart(nsIDOMNode *refNode, PRInt32 offset);
912     nsresult SetEnd(nsIDOMNode *refNode, PRInt32 offset);
913     nsresult SetStartBefore(nsIDOMNode *refNode);
914     nsresult SetStartAfter(nsIDOMNode *refNode);
915     nsresult SetEndBefore(nsIDOMNode *refNode);
916     nsresult SetEndAfter(nsIDOMNode *refNode);
917     nsresult Collapse(PRBool toStart);
918     nsresult SelectNode(nsIDOMNode *refNode);
919     nsresult SelectNodeContents(nsIDOMNode *refNode);
920     nsresult CompareBoundaryPoints(PRUint16 how, nsIDOMRange *sourceRange, PRInt16 *_retval);
921     nsresult DeleteContents();
922     nsresult ExtractContents(nsIDOMDocumentFragment **_retval);
923     nsresult CloneContents(nsIDOMDocumentFragment **_retval);
924     nsresult InsertNode(nsIDOMNode *newNode);
925     nsresult SurroundContents(nsIDOMNode *newParent);
926     nsresult CloneRange(nsIDOMRange **_retval);
927     nsresult ToString(nsAString *_retval);
928     nsresult Detach();
929 }
930
931 [
932     object,
933     uuid(a6cf90f2-15b3-11d2-932e-00805f8add32)
934 ]
935 interface nsIDOMNSRange : nsISupports
936 {
937     nsresult CreateContextualFragment([in] const nsAString *fragment, [out] nsIDOMDocumentFragment **_retval);
938     nsresult IsPointInRange([in] nsIDOMNode *parent, [in] PRInt32 offset, [out] PRBool *_retval);
939     nsresult ComparePoint([in] nsIDOMNode *parent, [in] PRInt32 offset, [out] PRInt16 *_retval);
940     nsresult IntersectsNode([in] nsIDOMNode *n, [out] PRBool *_retval);
941     nsresult CompareNode([in] nsIDOMNode *n, [out] PRUint16 *_retval);
942     nsresult nSDetach();
943 }
944
945
946 [
947     object,
948     uuid(7b9badc6-c9bc-447a-8670-dbd195aed24b)
949     /* FROZEN */
950 ]
951 interface nsIDOMDocumentRange : nsISupports
952 {
953     nsresult CreateRange(nsIDOMRange **_retval);
954 }
955
956 [
957     object,
958     uuid(b2c7ed59-8634-4352-9e37-5484c8b6e4e1)
959     /* FROZEN */
960 ]
961 interface nsISelection : nsISupports
962 {
963     nsresult GetAnchorNode(nsIDOMNode **aAnchorNode);
964     nsresult GetAnchorOffset(PRInt32 *aAnchorOffset);
965     nsresult GetFocusNode(nsIDOMNode **aFocusNode);
966     nsresult GetFocusOffset(PRInt32 *aFocusOffset);
967     nsresult GetIsCollapsed(PRBool *aIsCollapsed);
968     nsresult GetRangeCount(PRInt32 *aRangeCount);
969     nsresult GetRangeAt(PRInt32 index, nsIDOMRange **_retval);
970     nsresult Collapse(nsIDOMNode *parentNode, PRInt32 offset);
971     nsresult Extend(nsIDOMNode *parentNode, PRInt32 offset);
972     nsresult CollapseToStart();
973     nsresult CollapseToEnd();
974     nsresult ContainsNode(nsIDOMNode *node, PRBool entirelyContained, PRBool *_retval);
975     nsresult SelectAllChildren(nsIDOMNode *parentNode);
976     nsresult AddRange(nsIDOMRange *range);
977     nsresult RemoveRange(nsIDOMRange *range);
978     nsresult RemoveAllRanges();
979     nsresult DeleteFromDocument();
980     nsresult SelectionLanguageChange(PRBool langRTL);
981     nsresult ToString(PRUnichar **_retval);
982 }
983
984 [
985     object,
986     uuid(a6cf906b-15b3-11d2-932e-00805f8add32)
987     /* FROZEN */
988 ]
989 interface nsIDOMWindow : nsISupports
990 {
991     nsresult GetDocument(nsIDOMDocument **aDocument);
992     nsresult GetParent(nsIDOMWindow **aParent);
993     nsresult GetTop(nsIDOMWindow **aTop);
994     nsresult GetScrollbars(nsIDOMBarProp **aScrollbars);
995     nsresult GetFrames(nsIDOMWindowCollection **aFrames);
996     nsresult GetName(nsAString *aName);
997     nsresult SetName(const nsAString *aName);
998     nsresult GetTextZoom(float *aTextZoom);
999     nsresult SetTextZoom(float aTextZoom);
1000     nsresult GetScrollX(PRInt32 *aScrollX);
1001     nsresult GetScrollY(PRInt32 *aScrollY);
1002     nsresult ScrollTo(PRInt32 xScroll, PRInt32 yScroll);
1003     nsresult ScrollBy(PRInt32 xScrollDif, PRInt32 yScrollDif);
1004     nsresult GetSelection(nsISelection **_retval);
1005     nsresult ScrollByLines(PRInt32 numLines);
1006     nsresult ScrollByPages(PRInt32 numPages);
1007     nsresult SizeToContent();
1008 }
1009
1010 [
1011     object,
1012     uuid(a6cf908e-15b3-11d2-932e-00805f8add32)
1013     /* FROZEN */
1014 ]
1015 interface nsIDOMHTMLBodyElement : nsIDOMHTMLElement
1016 {
1017     nsresult GetALink(nsAString *aALink);
1018     nsresult SetALink(const nsAString *aALink);
1019     nsresult GetBackground(nsAString *aBackground);
1020     nsresult SetBackground(const nsAString *aBackground);
1021     nsresult GetBgColor(nsAString *aBgColor);
1022     nsresult SetBgColor(const nsAString *aBgColor);
1023     nsresult GetLink(nsAString *aLink);
1024     nsresult SetLink(const nsAString *aLink);
1025     nsresult GetText(nsAString *aText);
1026     nsresult SetText(const nsAString *aText);
1027     nsresult GetVLink(nsAString *aVLink);
1028     nsresult SetVLink(const nsAString *aVLink);
1029 }
1030
1031 [
1032     object,
1033     uuid(a6cf9093-15b3-11d2-932e-00805f8add32)
1034     /* FROZEN */
1035 ]
1036 interface nsIDOMHTMLInputElement : nsIDOMHTMLElement
1037 {
1038     nsresult GetDefaultValue(nsAString *aDefaultValue);
1039     nsresult SetDefaultValue(const nsAString *aDefaultValue);
1040     nsresult GetDefaultChecked(PRBool *aDefaultChecked);
1041     nsresult SetDefaultChecked(PRBool aDefaultChecked);
1042     nsresult GetForm(nsIDOMHTMLFormElement **aForm);
1043     nsresult GetAccept(nsAString *aAccept);
1044     nsresult SetAccept(const nsAString *aAccept);
1045     nsresult GetAccessKey(nsAString *aAccessKey);
1046     nsresult SetAccessKey(const nsAString *aAccessKey);
1047     nsresult GetAlign(nsAString *aAlign);
1048     nsresult SetAlign(const nsAString *aAlign);
1049     nsresult GetAlt(nsAString *aAlt);
1050     nsresult SetAlt(const nsAString *aAlt);
1051     nsresult GetChecked(PRBool *aChecked);
1052     nsresult SetChecked(PRBool aChecked);
1053     nsresult GetDisabled(PRBool *aDisabled);
1054     nsresult SetDisabled(PRBool aDisabled);
1055     nsresult GetMaxLength(PRInt32 *aMaxLength);
1056     nsresult SetMaxLength(PRInt32 aMaxLength);
1057     nsresult GetName(nsAString *aName);
1058     nsresult SetName(const nsAString *aName);
1059     nsresult GetReadOnly(PRBool *aReadOnly);
1060     nsresult SetReadOnly(PRBool aReadOnly);
1061     nsresult GetSize(PRUint32 *aSize);
1062     nsresult SetSize(PRUint32 aSize);
1063     nsresult GetSrc(nsAString *aSrc);
1064     nsresult SetSrc(const nsAString *aSrc);
1065     nsresult GetTabIndex(PRInt32 *aTabIndex);
1066     nsresult SetTabIndex(PRInt32 aTabIndex);
1067     nsresult GetType(nsAString *aType);
1068     nsresult SetType(const nsAString *aType);
1069     nsresult GetUseMap(nsAString *aUseMap);
1070     nsresult SetUseMap(const nsAString *aUseMap);
1071     nsresult GetValue(nsAString *aValue);
1072     nsresult SetValue(const nsAString *aValue);
1073     nsresult Blur();
1074     nsresult Focus();
1075     nsresult Select();
1076     nsresult Click();
1077 }
1078
1079 [
1080     object,
1081     uuid(a6cf9090-15b3-11d2-932e-00805f8add32)
1082     /* FROZEN */
1083 ]
1084 interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement
1085 {
1086     nsresult GetType(nsAString *aType);
1087     nsresult GetSelectedIndex(PRInt32 *aSelectedIndex);
1088     nsresult SetSelectedIndex(PRInt32 aSelectedIndex);
1089     nsresult GetValue(nsAString *aValue);
1090     nsresult SetValue(const nsAString *aValue);
1091     nsresult GetLength(PRUint32 *aLength);
1092     nsresult SetLength(PRUint32 aLength);
1093     nsresult GetForm(nsIDOMHTMLFormElement **aForm);
1094     nsresult GetOptions(nsIDOMHTMLOptionsCollection **aOptions);
1095     nsresult GetDisabled(PRBool *aDisabled);
1096     nsresult SetDisabled(PRBool aDisabled);
1097     nsresult GetMultiple(PRBool *aMultiple);
1098     nsresult SetMultiple(PRBool aMultiple);
1099     nsresult GetName(nsAString *aName);
1100     nsresult SetName(const nsAString *aName);
1101     nsresult GetSize(PRInt32 *aSize);
1102     nsresult SetSize(PRInt32 aSize);
1103     nsresult GetTabIndex(PRInt32 *aTabIndex);
1104     nsresult SetTabIndex(PRInt32 aTabIndex);
1105     nsresult Add(nsIDOMHTMLElement *element, nsIDOMHTMLElement *before);
1106     nsresult Remove(PRInt32 index);
1107     nsresult Blur();
1108     nsresult Focus();
1109 }
1110
1111 [
1112     object,
1113     uuid(a6cf9094-15b3-11d2-932e-00805f8add32)
1114     /* FROZEN */
1115 ]
1116 interface nsIDOMHTMLTextAreaElement : nsIDOMHTMLElement
1117 {
1118     nsresult GetDefaultValue(nsAString *aDefaultValue);
1119     nsresult SetDefaultValue(const nsAString *aDefaultValue);
1120     nsresult GetForm(nsIDOMHTMLFormElement **aForm);
1121     nsresult GetAccessKey(nsAString *aAccessKey);
1122     nsresult SetAccessKey(const nsAString *aAccessKey);
1123     nsresult GetCols(PRInt32 *aCols);
1124     nsresult SetCols(PRInt32 aCols);
1125     nsresult GetDisabled(PRBool *aDisabled);
1126     nsresult SetDisabled(PRBool aDisabled);
1127     nsresult GetName(nsAString *aName);
1128     nsresult SetName(const nsAString *aName);
1129     nsresult GetReadOnly(PRBool *aReadOnly);
1130     nsresult SetReadOnly(PRBool aReadOnly);
1131     nsresult GetRows(PRInt32 *aRows);
1132     nsresult SetRows(PRInt32 aRows);
1133     nsresult GetTabIndex(PRInt32 *aTabIndex);
1134     nsresult SetTabIndex(PRInt32 aTabIndex);
1135     nsresult GetType(nsAString *aType);
1136     nsresult GetValue(nsAString *aValue);
1137     nsresult SetValue(const nsAString *aValue);
1138     nsresult Blur();
1139     nsresult Focus();
1140     nsresult Select();
1141 }
1142
1143 [
1144     object,
1145     uuid(94928ab3-8b63-11d3-989d-001083010e9b)
1146     /* FROZEN */
1147 ]
1148 interface nsIURIContentListener : nsISupports
1149 {
1150     nsresult OnStartURIOpen(nsIURI *aURI, PRBool *_retval);
1151     nsresult DoContent(const char *aContentType, PRBool aIsContentPreferred, nsIRequest *aRequest,
1152         nsIStreamListener **aContentHandler, PRBool *_retval);
1153     nsresult IsPreferred(const char *aContentType, char **aDesiredContentType, PRBool *_retval);
1154     nsresult CanHandleContent(const char *aContentType, PRBool aIsContentPreferred,
1155         char **aDesiredContentType, PRBool *_retval);
1156     nsresult GetLoadCookie(nsISupports **aLoadCookie);
1157     nsresult SetLoadCookie(nsISupports *aLoadCookie);
1158     nsresult GetParentContentListener(nsIURIContentListener **aParentContentListener);
1159     nsresult SetParentContentListener(nsIURIContentListener *aParentContentListener);
1160 }
1161
1162 [
1163     object,
1164     uuid(44b78386-1dd2-11b2-9ad2-e4eee2ca1916)
1165     /* FROZEN */
1166 ]
1167 interface nsITooltipListener : nsISupports
1168 {
1169     nsresult OnShowTooltip(PRInt32 aXCoords, PRInt32 aYCoords, const PRUnichar *aTipText);
1170     nsresult OnHideTooltip();
1171 }
1172
1173 [
1174     object,
1175     uuid(69e5df00-7b8b-11d3-af61-00a024ffc08c)
1176     /* FROZEN */
1177 ]
1178 interface nsIWebBrowser : nsISupports
1179 {
1180     nsresult AddWebBrowserListener(nsIWeakReference *aListener, const nsIID *aIID);
1181     nsresult RemoveWebBrowserListener(nsIWeakReference *aListener, const nsIID *aIID);
1182     nsresult GetContainerWindow(nsIWebBrowserChrome **aContainerWindow);
1183     nsresult SetContainerWindow(nsIWebBrowserChrome *aContainerWindow);
1184     nsresult GetParentURIContentListener(nsIURIContentListener **aParentURIContentListener);
1185     nsresult SetParentURIContentListener(nsIURIContentListener *aParentURIContentListener);
1186     nsresult GetContentDOMWindow(nsIDOMWindow **aContentDOMWindow);
1187 }
1188
1189 cpp_quote("#define SETUP_IS_CHROME_WRAPPER 7");
1190
1191 [
1192     object,
1193     uuid(f15398a0-8018-11d3-af70-00a024ffc08c)
1194     /* FROZEN */
1195 ]
1196 interface nsIWebBrowserSetup : nsISupports
1197 {
1198     nsresult SetProperty(PRUint32 aId, PRUint32 aValue);
1199 }
1200
1201 typedef void* nativeWindow;
1202
1203 [
1204     object,
1205     uuid(046bc8a0-8015-11d3-af70-00a024ffc08c)
1206     /* NOT_FROZEN */
1207 ]
1208 interface nsIBaseWindow : nsISupports
1209 {
1210     nsresult InitWindow(nativeWindow parentNativeWindow, nsIWidget *parentWidget, PRInt32 x,
1211             PRInt32 y, PRInt32 cx, PRInt32 cy);
1212     nsresult Create();
1213     nsresult Destroy();
1214     nsresult SetPosition(PRInt32 x, PRInt32 y);
1215     nsresult GetPosition(PRInt32 *x, PRInt32 *y);
1216     nsresult SetSize(PRInt32 cx, PRInt32 cy, PRBool fRepaint);
1217     nsresult GetSize(PRInt32 *cx, PRInt32 *cy);
1218     nsresult SetPositionAndSize(PRInt32 x, PRInt32 y, PRInt32 cx, PRInt32 cy, PRBool fRepaint);
1219     nsresult GetPositionAndSize(PRInt32 *x, PRInt32 *y, PRInt32 *cx, PRInt32 *cy);
1220     nsresult Repaint(PRBool force);
1221     nsresult GetParentWidget(nsIWidget **aParentWidget); 
1222     nsresult SetParentWidget(nsIWidget *aParentWidget);
1223     nsresult GetParentNativeWindow(nativeWindow *aParentNativeWindow);
1224     nsresult SetParentNativeWindow(nativeWindow aParentNativeWindow);
1225     nsresult GetVisibility(PRBool *aVisibility);
1226     nsresult SetVisibility(PRBool aVisibility);
1227     nsresult GetEnabled(PRBool *aEnabled);
1228     nsresult SetEnabled(PRBool aEnabled);
1229     nsresult GetBlurSuppression(PRBool *aBlurSuppression);
1230     nsresult SetBlurSuppression(PRBool aBlurSuppression);
1231     nsresult GetMainWidget(nsIWidget **aMainWidget);
1232     nsresult SetFocus();
1233     nsresult GetTitle(PRUnichar **aTitle);
1234     nsresult SetTitle(const PRUnichar *aTitle);
1235 }
1236
1237 cpp_quote("#define LOAD_FLAGS_NONE 0");
1238
1239 [
1240     object,
1241     uuid(f5d9e7b0-d930-11d3-b057-00a024ffc08c)
1242     /* NOT_FROZEN */
1243 ]
1244 interface nsIWebNavigation : nsISupports
1245 {
1246     nsresult GetCanGoBack(PRBool *aCanGoBack);
1247     nsresult GetCanGoForward(PRBool *aCanGoForward);
1248     nsresult GoBack();
1249     nsresult GoForward();
1250     nsresult GotoIndex(PRInt32 index);
1251     nsresult LoadURI(const PRUnichar *aURI, PRUint32 aLoadFlags, nsIURI *aReferrer,
1252             nsIInputStream *aPostData, nsIInputStream *aHeaders);
1253     nsresult Reload(PRUint32 aReloadFlags);
1254     nsresult Stop(PRUint32 aStopFlags);
1255     nsresult GetDocument(nsIDOMDocument **aDocument);
1256     nsresult GetCurrentURI(nsIURI **aCurrentURI);
1257     nsresult GetReferringURI(nsIURI **aReferringURI);
1258     nsresult GetSessionHistory(nsISHistory **aSessionHistory);
1259     nsresult SetSessionHistory(nsISHistory *aSessionHistory);
1260 }
1261
1262 [
1263     object,
1264     uuid(f1094df6-ce0e-42c9-9847-2f663172c38d)
1265     /* NOT_FROZEN */
1266 ]
1267 interface nsIPrintSettings : nsISupports
1268 {
1269     typedef struct {} nsMargin;
1270
1271     nsresult SetPrintOptions(PRInt32 aType, PRBool aTurnOnOff);
1272     nsresult GetPrintOptions(PRInt32 aType, PRBool *_retval);
1273     nsresult GetPrintOptionsBits(PRInt32 *_retval);
1274     nsresult GetPageSizeInTwips(PRInt32 *aWidth, PRInt32 *aHeight);
1275     nsresult Clone(nsIPrintSettings **_retval);
1276     nsresult Assign(nsIPrintSettings *aPS);
1277     nsresult GetPrintSession(nsIPrintSession **aPrintSession);
1278     nsresult SetPrintSession(nsIPrintSession *aPrintSession);
1279     nsresult GetStartPageRange(PRInt32 *aStartPageRange);
1280     nsresult SetStartPageRange(PRInt32 aStartPageRange);
1281     nsresult GetEndPageRange(PRInt32 *aEndPageRange);
1282     nsresult SetEndPageRange(PRInt32 aEndPageRange);
1283     nsresult GetMarginTop(double *aMarginTop);
1284     nsresult SetMarginTop(double aMarginTop);
1285     nsresult GetMarginLeft(double *aMarginLeft);
1286     nsresult SetMarginLeft(double aMarginLeft);
1287     nsresult GetMarginBottom(double *aMarginBottom);
1288     nsresult SetMarginBottom(double aMarginBottom);
1289     nsresult GetMarginRight(double *aMarginRight);
1290     nsresult SetMarginRight(double aMarginRight);
1291     nsresult GetScaling(double *aScaling);
1292     nsresult SetScaling(double aScaling);
1293     nsresult GetPrintBGColors(PRBool *aPrintBGColors);
1294     nsresult SetPrintBGColors(PRBool aPrintBGColors);
1295     nsresult GetPrintBGImages(PRBool *aPrintBGImages);
1296     nsresult SetPrintBGImages(PRBool aPrintBGImages);
1297     nsresult GetPrintRange(PRInt16 *aPrintRange);
1298     nsresult SetPrintRange(PRInt16 aPrintRange);
1299     nsresult GetTitle(PRUnichar **aTitle);
1300     nsresult SetTitle(const PRUnichar *aTitle);
1301     nsresult GetDocURL(PRUnichar **aDocURL);
1302     nsresult SetDocURL(const PRUnichar *aDocURL);
1303     nsresult GetHeaderStrLeft(PRUnichar **aHeaderStrLeft);
1304     nsresult SetHeaderStrLeft(const PRUnichar *aHeaderStrLeft);
1305     nsresult GetHeaderStrCenter(PRUnichar **aHeaderStrCenter);
1306     nsresult SetHeaderStrCenter(const PRUnichar *aHeaderStrCenter);
1307     nsresult GetHeaderStrRight(PRUnichar **aHeaderStrRight);
1308     nsresult SetHeaderStrRight(const PRUnichar *aHeaderStrRight);
1309     nsresult GetFooterStrLeft(PRUnichar **aFooterStrLeft);
1310     nsresult SetFooterStrLeft(const PRUnichar *aFooterStrLeft);
1311     nsresult GetFooterStrCenter(PRUnichar **aFooterStrCenter);
1312     nsresult SetFooterStrCenter(const PRUnichar *aFooterStrCenter);
1313     nsresult GetFooterStrRight(PRUnichar **aFooterStrRight);
1314     nsresult SetFooterStrRight(const PRUnichar *aFooterStrRight);
1315     nsresult GetHowToEnableFrameUI(PRInt16 *aHowToEnableFrameUI);
1316     nsresult SetHowToEnableFrameUI(PRInt16 aHowToEnableFrameUI);
1317     nsresult GetIsCancelled(PRBool *aIsCancelled);
1318     nsresult SetIsCancelled(PRBool aIsCancelled);
1319     nsresult GetPrintFrameTypeUsage(PRInt16 *aPrintFrameTypeUsage);
1320     nsresult SetPrintFrameTypeUsage(PRInt16 aPrintFrameTypeUsage);
1321     nsresult GetPrintFrameType(PRInt16 *aPrintFrameType);
1322     nsresult SetPrintFrameType(PRInt16 aPrintFrameType);
1323     nsresult GetPrintSilent(PRBool *aPrintSilent);
1324     nsresult SetPrintSilent(PRBool aPrintSilent);
1325     nsresult GetShrinkToFit(PRBool *aShrinkToFit);
1326     nsresult SetShrinkToFit(PRBool aShrinkToFit);
1327     nsresult GetShowPrintProgress(PRBool *aShowPrintProgress);
1328     nsresult SetShowPrintProgress(PRBool aShowPrintProgress);
1329     nsresult GetPaperName(PRUnichar **aPaperName);
1330     nsresult SetPaperName(const PRUnichar *aPaperName);
1331     nsresult GetPaperSizeType(PRInt16 *aPaperSizeType);
1332     nsresult SetPaperSizeType(PRInt16 aPaperSizeType);
1333     nsresult GetPaperData(PRInt16 *aPaperData);
1334     nsresult SetPaperData(PRInt16 aPaperData);
1335     nsresult GetPaperWidth(double *aPaperWidth);
1336     nsresult SetPaperWidth(double aPaperWidth);
1337     nsresult GetPaperHeight(double *aPaperHeight);
1338     nsresult SetPaperHeight(double aPaperHeight);
1339     nsresult GetPaperSizeUnit(PRInt16 *aPaperSizeUnit);
1340     nsresult SetPaperSizeUnit(PRInt16 aPaperSizeUnit);
1341     nsresult GetPlexName(PRUnichar **aPlexName);
1342     nsresult SetPlexName(const PRUnichar *aPlexName);
1343     nsresult GetColorspace(PRUnichar **aColorspace);
1344     nsresult SetColorspace(const PRUnichar *aColorspace);
1345     nsresult GetResolutionName(PRUnichar **aResolutionName);
1346     nsresult SetResolutionName(const PRUnichar aResolutionName);
1347     nsresult GetDownloadFonts(PRBool *aDownloadFonts);
1348     nsresult SetDownloadFonts(PRBool aDownloadFonts);
1349     nsresult GetPrintReversed(PRBool *aPrintReversed);
1350     nsresult SetPrintReversed(PRBool aPrintReversed);
1351     nsresult GetPrintInColor(PRBool *aPrintInColor);
1352     nsresult SetPrintInColor(PRBool aPrintInColor);
1353     nsresult GetPaperSize(PRInt32 *aPaperSize);
1354     nsresult SetPaperSize(PRInt32 aPaperSize);
1355     nsresult GetOrientation(PRInt32 *aOrientation);
1356     nsresult SetOrientation(PRInt32 aOrientation);
1357     nsresult GetPrintCommand(PRUnichar **aPrintCommand);
1358     nsresult SetPrintCommand(const PRUnichar *aPrintCommand);
1359     nsresult GetNumCopies(PRInt32 *aNumCopies);
1360     nsresult SetNumCopies(PRInt32 aNumCopies);
1361     nsresult GetPrinterName(PRUnichar **aPrinterName);
1362     nsresult SetPrinterName(const PRUnichar *aPrinterName);
1363     nsresult GetPrintToFile(PRBool *aPrintToFile);
1364     nsresult SetPrintToFile(PRBool aPrintToFile);
1365     nsresult GetToFileName(PRUnichar **aToFileName);
1366     nsresult SetToFileName(const PRUnichar *aToFileName);
1367     nsresult GetPrintPageDelay(PRInt32 *aPrintPageDelay);
1368     nsresult SetPrintPageDelay(PRInt32 aPrintPageDelay);
1369     nsresult GetIsInitializedFromPrinter(PRBool *aIsInitializedFromPrinter);
1370     nsresult SetIsInitializedFromPrinter(PRBool aIsInitializedFromPrinter);
1371     nsresult GetIsInitializedFromPrefs(PRBool *aIsInitializedFromPrefs);
1372     nsresult SetIsInitializedFromPrefs(PRBool aIsInitializedFromPrefs);
1373     nsresult SetMarginInTwips(nsMargin *aMargin);
1374     nsresult GetMarginInTwips(nsMargin *aMargin);
1375 }
1376
1377 [
1378     object,
1379     uuid(9a7ca4b0-fbba-11d4-a869-00105a183419)
1380     /* FROZEN */
1381 ]
1382 interface nsIWebBrowserPrint : nsISupports
1383 {
1384     nsresult GetGlobalPrintSettings(nsIPrintSettings **aGlobalPrintSettings);
1385     nsresult GetCurrentPrintSettings(nsIPrintSettings **aCurrentPrintSettings);
1386     nsresult GetCurrentChildDOMWindow(nsIDOMWindow **aCurrentChildDOMWindow);
1387     nsresult GetDoingPrint(PRBool *aDoingPrint);
1388     nsresult GetDoingPrintPreview(PRBool *aDoingPrintPreview);
1389     nsresult GetIsFramesetDocument(PRBool *aIsFramesetDocument);
1390     nsresult GetIsFramesetFrameSelected(PRBool *aIsFramesetFrameSelected);
1391     nsresult GetIsIFrameSelected(PRBool *aIsIFrameSelected);
1392     nsresult GetIsRangeSelection(PRBool *aIsRangeSelection);
1393     nsresult GetPrintPreviewNumPages(PRInt32 *aPrintPreviewNumPages);
1394     nsresult Print(nsIPrintSettings *aThePrintSettings, nsIWebProgressListener *aWPListener);
1395     nsresult PrintPreview(nsIPrintSettings *aThePrintSettings, nsIDOMWindow *aChildDOMWin,
1396                           nsIWebProgressListener *aWPListener);
1397     nsresult PrintPreviewNavigate(PRInt16 aNavType, PRInt32 aPageNum);
1398     nsresult Cancel();
1399     nsresult EnumerateDocumentNames(PRUint32 *aCount, PRUnichar ***aResult);
1400     nsresult ExitPrintPreview();
1401 }
1402
1403 [
1404     object,
1405     uuid(919e792a-6490-40b8-bba5-f9e9ad5640c8)
1406     /* NOT_FROZEN */
1407 ]
1408 interface nsIScrollable : nsISupports
1409 {
1410     enum {
1411         ScrollOrientation_X = 1,
1412         ScrollOrientation_Y = 2
1413     };
1414
1415     enum {
1416         Scrollbar_Auto   = 1,
1417         Scrollbar_Never  = 2,
1418         Scrollbar_Always = 3
1419     };
1420
1421     nsresult GetCurScrollPos(PRInt32 scrollOrientation, PRInt32 *curPos);
1422     nsresult SetCurScrollPos(PRInt32 scrollOrientation, PRInt32 curPos);
1423     nsresult SetCurScrollPosEx(PRInt32 curHorizontalPos, PRInt32 curVerticalPos);
1424     nsresult GetScrollRange(PRInt32 scrollOrientation, PRInt32 *minPos, PRInt32 *maxPos);
1425     nsresult SetScrollRange(PRInt32 scrollOrientation, PRInt32 minPos, PRInt32 maxPos);
1426     nsresult SetScrollRangeEx(PRInt32 minHorizontalPos, PRInt32 maxHorizontalPos,
1427             PRInt32 minVerticalPos, PRInt32 maxVerticalPos);
1428     nsresult GetDefaultScrollbarPreferences(PRInt32 scrollOrientation, PRInt32 *scrollbarPref);
1429     nsresult SetDefaultScrollbarPreferences(PRInt32 scrollOrientation, PRInt32 scrollbarPref);
1430     nsresult GetScrollbarVisibility(PRBool *verticalVisible, PRBool *horizontalVisible);
1431 }
1432
1433 [
1434     object,
1435     uuid(c8c0a080-0868-11d3-915f-d9d889d48e3c)
1436     /* FROZEN */
1437 ]
1438 interface nsIFile : nsISupports
1439 {
1440     nsresult Append(const nsAString *node);
1441     nsresult AppendNative(const nsAString *node);
1442     nsresult Normalize();
1443     nsresult Create(PRUint32 type, PRUint32 permission);
1444     nsresult GetLeafName(nsAString *aLeafName);
1445     nsresult SetLeafName(const nsAString *aLeafName);
1446     nsresult GetNativeLeafName(nsAString *aLeafName);
1447     nsresult SetNativeLeafName(const nsAString *aLeafName);
1448     nsresult CopyTo(nsIFile *newParentDir, const nsAString *newName);
1449     nsresult CopyToNative(nsIFile *newParentDir, const nsAString *newName);
1450     nsresult CopyToFollowingLinks(nsIFile *newParentDir, const nsAString *newName);
1451     nsresult CopyToFollowingLinksNative(nsIFile *newParentDir, const nsAString *newName);
1452     nsresult MoveTo(nsIFile *newParentDir, const nsAString *newName);
1453     nsresult MoveToNative(nsIFile *newParentDir, const nsAString *newName);
1454     nsresult Remove(PRBool recursive);
1455     nsresult GetPermissions(PRUint32 *aPermissions);
1456     nsresult SetPermissions(PRUint32 pPermissions);
1457     nsresult GetPermissionsOfLink(PRUint32 *aPermissions);
1458     nsresult SetPermissionsOfLink(PRUint32 pPermissions);
1459     nsresult GetLastModifiedTime(PRInt64 *aLastModifiedTime);
1460     nsresult SetLastModifiedTime(PRInt64 aLastModifiedTime);
1461     nsresult GetFileSize(PRInt64 *aFileSize);
1462     nsresult SetFileSize(PRInt64 aFileSize);
1463     nsresult GetFileSizeOfLink(PRInt64 *aFileSizeOfLink);
1464     nsresult GetTarget(nsAString *aTarget);
1465     nsresult GetNativeTarget(nsACString *aNativeTarget);
1466     nsresult GetPath(nsAString *aPath);
1467     nsresult GetNativePath(nsACString *aNativePath);
1468     nsresult Exists(PRBool *_retval);
1469     nsresult IsWritable(PRBool *_retval);
1470     nsresult IsReadable(PRBool *_retval);
1471     nsresult IsExecutable(PRBool *_retval);
1472     nsresult IsHidden(PRBool *_retval);
1473     nsresult IsDirectory(PRBool *_retval);
1474     nsresult IsFile(PRBool *_retval);
1475     nsresult IsSymlink(PRBool *_retval);
1476     nsresult IsSpecial(PRBool *_retval);
1477     nsresult CreateUnique(PRUint32 type, PRUint32 permission);
1478     nsresult Clone(nsIFile **_retval);
1479     nsresult Equals(nsIFile *inFile, PRBool *_retval);
1480     nsresult Contains(nsIFile *inFile, PRBool recir, PRBool *_retval);
1481     nsresult GetParent(nsIFile **aParent);
1482     nsresult GetDirectoryEntries(nsISimpleEnumerator **aDirectoryEntries);
1483 }
1484
1485 [
1486     object,
1487     uuid(15fd6940-8ea7-11d3-93ad-00104ba0fd40)
1488     /* FROZEN */
1489 ]
1490 interface nsIProtocolHandler : nsISupports
1491 {
1492     nsresult GetScheme(nsACString *aScheme);
1493     nsresult GetDefaultPort(PRInt32 *aDefaultPort);
1494     nsresult GetProtocolFlags(PRUint32 *aProtocolFlags);
1495     nsresult NewURI(const nsACString *aSpec, const char *aOriginCharset,
1496                     nsIURI *aBaseURI, nsIURI **_retval);
1497     nsresult NewChannel(nsIURI *aURI, nsIChannel **_retval);
1498     nsresult AllowPort(PRInt32 port, const char *scheme, PRBool *_retval);
1499 }
1500
1501 [
1502     object,
1503     uuid(0e61f3b2-34d7-4c79-bfdc-4860bc7341b7)
1504     /* NOT_FROZEN */
1505 ]
1506 interface nsIExternalProtocolHandler : nsIProtocolHandler
1507 {
1508     nsresult ExternalAppExistsForScheme(const nsACString *scheme, PRBool *_retval);
1509 }
1510
1511 [
1512     object,
1513     uuid(bddeda3f-9020-4d12-8c70-984ee9f7935e)
1514     /* FROZEN */
1515 ]
1516 interface nsIIOService : nsISupports
1517 {
1518     nsresult GetProtocolHandler(const char *aScheme, nsIProtocolHandler **_retval);
1519     nsresult GetProtocolFlags(const char *aScheme, PRUint32 *_retval);
1520     nsresult NewURI(const nsACString *aSpec, const char *aOriginCharset, nsIURI *aBaseURI,
1521                     nsIURI **_retval);
1522     nsresult NewFileURI(nsIFile *aFile, nsIURI **_retval);
1523     nsresult NewChannelFromURI(nsIURI *aURI, nsIChannel **_retval);
1524     nsresult NewChannel(const nsACString *aSpec, const char *aOriginCharset, nsIURI *aBaseURI,
1525                         nsIChannel **_retval);
1526     nsresult GetOffline(PRBool *aOffline);
1527     nsresult SetOffline(PRBool aOffline);
1528     nsresult AllowPort(PRInt32 aPort, const char *aScheme, PRBool *_retval);
1529     nsresult ExtractScheme(const nsACString *urlString, nsACString * _retval);
1530 }
1531
1532 [
1533     object,
1534     uuid(9c5d3c58-1dd1-11b2-a1c9-f3699284657a)
1535     /* FROZEN */
1536 ]
1537 interface nsIWebBrowserFocus : nsISupports
1538 {
1539     nsresult Activate();
1540     nsresult Deactivate();
1541     nsresult SetFocusAtFirstElement();
1542     nsresult SetFocusAtLastElement();
1543     nsresult GetFocusedWindow(nsIDOMWindow **aFocusedWindow);
1544     nsresult SetFocusedWindow(nsIDOMWindow *aFocusedWindow);
1545     nsresult GetFocusedElement(nsIDOMElement **aFocusedElement);
1546     nsresult SetFocusedElement(nsIDOMElement *aFocusedElement);
1547 }
1548
1549 [
1550     object,
1551     uuid(ba434c60-9d52-11d3-afb0-00a024ffc08c)
1552     /* FROZEN */
1553 ]
1554 interface nsIWebBrowserChrome : nsISupports
1555 {
1556     nsresult SetStatus(PRUint32 statusType, const PRUnichar *status);
1557     nsresult GetWebBrowser(nsIWebBrowser **aWebBrowser);
1558     nsresult SetWebBrowser(nsIWebBrowser *aWebBrowser);
1559     nsresult GetChromeFlags(PRUint32 *aChromeFlags);
1560     nsresult SetChromeFlags(PRUint32 aChromeFlags);
1561     nsresult DestroyBrowserWindow();
1562     nsresult SizeBrowserTo(PRInt32 aCX, PRInt32 aCY);
1563     nsresult ShowAsModal();
1564     nsresult IsWindowModal(PRBool *_retval);
1565     nsresult ExitModalEventLoop(nsresult aStatus);
1566 }
1567
1568 [
1569     object,
1570     uuid(df31c120-ded6-11d1-bd85-00805f8ae3f4)
1571     /* FROZEN */
1572 ]
1573 interface nsIDOMEventListener : nsISupports
1574 {
1575     nsresult HandleEvent(nsIDOMEvent *event);
1576 }
1577
1578 [
1579     object,
1580     uuid(1c773b30-d1cf-11d2-bd95-00805f8ae3f4)
1581     /* FROZEN */
1582 ]
1583 interface nsIDOMEventTarget : nsISupports
1584 {
1585     nsresult AddEventListener(const nsAString *type, nsIDOMEventListener *listener, PRBool useCapture);
1586     nsresult RemoveEventListener(const nsAString *type, nsIDOMEventListener *listener, PRBool useCapture);
1587     nsresult DispatchEvent(nsIDOMEvent *evt, PRBool *_retval);
1588 }
1589
1590 [
1591     object,
1592     uuid(a66b7b80-ff46-bd97-0080-5f8ae38add32)
1593     /* FROZEN */
1594 ]
1595 interface nsIDOMEvent : nsISupports
1596 {
1597     nsresult GetType(nsAString *aType);
1598     nsresult GetTarget(nsIDOMEventTarget **aTarget);
1599     nsresult GetCurrentTarget(nsIDOMEventTarget **aCurrentTarget);
1600     nsresult GetEventPhase(PRUint16 *aEventPhase);
1601     nsresult GetBubbles(PRBool *aBubbles);
1602     nsresult GetCancelable(PRBool *aCancelable);
1603     nsresult GetTimeStamp(DOMTimeStamp *aTimeStamp);
1604     nsresult StopPropagation();
1605     nsresult PreventDefault();
1606     nsresult InitEvent(const nsAString *eventTypeArg, PRBool canBubbleArg, PRBool cancelableArg);
1607 }
1608
1609 cpp_quote("#define CONTEXT_NONE              0x00");
1610 cpp_quote("#define CONTEXT_LINK              0x01");
1611 cpp_quote("#define CONTEXT_IMAGE             0x02");
1612 cpp_quote("#define CONTEXT_DOCUMENT          0x04");
1613 cpp_quote("#define CONTEXT_TEXT              0x08");
1614 cpp_quote("#define CONTEXT_INPUT             0x10");
1615 cpp_quote("#define CONTEXT_BACKGROUND_IMAGE  0x20");
1616
1617 [
1618     object,
1619     uuid(3478b6b0-3875-11d4-94ef-0020183bf181)
1620     /* FROZEN */
1621 ]
1622 interface nsIContextMenuListener : nsISupports
1623 {
1624     nsresult OnShowContextMenu(PRUint32 aContextFlags, nsIDOMEvent *aEvent, nsIDOMNode *aNode);
1625 }
1626
1627 [
1628     object,
1629     uuid(a6cf90c3-15b3-11d2-932e-00805f8add32)
1630     /* FROZEN */
1631 ]
1632 interface nsIDOMUIEvent : nsIDOMEvent
1633 {
1634     nsresult GetView(nsIDOMAbstractView **aView);
1635     nsresult GetDetail(PRInt32 *aDetail);
1636     nsresult InitUIEvent(const nsAString *typeArg, PRBool canBubbleArg, PRBool cancelableArg,
1637             nsIDOMAbstractView *viewArg, PRInt32 detailArg);
1638 }
1639
1640 [
1641     object,
1642     uuid(ff751edc-8b02-aae7-0010-8301838a3123)
1643     /* FROZEN */
1644 ]
1645 interface nsIDOMMouseEvent : nsIDOMUIEvent
1646 {
1647     nsresult GetScreenX(PRInt32 *aScreenX);
1648     nsresult GetScreenY(PRInt32 *aScreenY);
1649     nsresult GetClientX(PRInt32 *aClientX);
1650     nsresult GetClientY(PRInt32 *aClientY);
1651     nsresult GetCtrlKey(PRBool *aCtrlKey);
1652     nsresult GetShiftKey(PRBool *aShiftKey);
1653     nsresult GetAltKey(PRBool *aAltKey);
1654     nsresult GetMetaKey(PRBool *aMetaKey);
1655     nsresult GetButton(PRUint16 *aButton);
1656     nsresult GetRelatedTarget(nsIDOMEventTarget * *aRelatedTarget);
1657     nsresult InitMouseEvent(const nsAString *typeArg, PRBool canBubbleArg, PRBool cancelableArg,
1658             nsIDOMAbstractView *viewArg, PRInt32 detailArg, PRInt32 screenXArg, PRInt32 screenYArg,
1659             PRInt32 clientXArg, PRInt32 clientYArg, PRBool ctrlKeyArg, PRBool altKeyArg,
1660             PRBool shiftKeyArg, PRBool metaKeyArg, PRUint16 buttonArg,
1661             nsIDOMEventTarget *relatedTargetArg);
1662 }
1663
1664 [
1665     object,
1666     uuid(028e0e6e-8b01-11d3-aae7-0010838a3123)
1667     /* NOT_FROZEN */
1668 ]
1669 interface nsIDOMKeyEvent : nsIDOMUIEvent
1670 {
1671     nsresult GetCharCode(PRUint32 *aCharCode);
1672     nsresult GetKeyCode(PRUint32 *aKeyCode);
1673     nsresult GetAltKey(PRBool *aAltKey);
1674     nsresult GetCtrlKey(PRBool *aCtrlKey);
1675     nsresult GetShiftKey(PRBool *aShiftKey);
1676     nsresult GetMetaKey(PRBool *aMetaKey);
1677     nsresult InitKeyEvent(const nsAString *typeArg, PRBool canBubbleArg,
1678             PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRBool ctrlKeyArg,
1679             PRBool altKeyArg, PRBool shiftKeyArg, PRBool metaKeyArg, PRUint32 keyCodeArg,
1680             PRUint32 charCodeArg);
1681 }
1682
1683 [
1684      object,
1685      uuid(3e5432cd-9568-4bd1-8cbe-d50aba110743)
1686      /* FROZEN */
1687 ]
1688 interface nsIEmbeddingSiteWindow : nsISupports
1689 {
1690     nsresult SetDimensions(PRUint32 flags, PRInt32 x, PRInt32 y, PRInt32 cx, PRInt32 cy);
1691     nsresult GetDimensions(PRUint32 flags, PRInt32 *x, PRInt32 *y, PRInt32 *cx, PRInt32 *cy);
1692     nsresult SetFocus();
1693     nsresult GetVisibility(PRBool *aVisibility);
1694     nsresult SetVisibility(PRBool aVisibility);
1695     nsresult GetTitle(PRUnichar **aTitle);
1696     nsresult SetTitle(const PRUnichar *aTitle);
1697     nsresult GetSiteWindow(void **aSiteWindow);
1698 }
1699
1700 [
1701      object,
1702      uuid(2417cbfe-65ad-48a6-b4b6-eb84db174392)
1703      /* FROZEN */
1704 ]
1705 interface nsIComponentRegistrar : nsISupports
1706 {
1707     nsresult AutoRegister(nsIFile *aSpec);
1708     nsresult AutoUnregister(nsIFile *aSpec);
1709     nsresult RegisterFactory(const nsCID *aClass, const char *aClassName,
1710             const char *aContractID, nsIFactory *aFactory);
1711     nsresult UnregisterFactory(const nsCID *aClass, nsIFactory *aFactory);
1712     nsresult RegisterFactoryLocation(const nsCID *aClass, const char *aClassName,
1713             const char *aContractID, nsIFile *aFile, const char *aLoaderStr,
1714             const char *aType);
1715     nsresult UnregisterFactoryLocation(const nsCID *aClass, nsIFile *aFile);
1716     nsresult IsCIDRegistered(const nsCID *aClass, PRBool *_retval);
1717     nsresult IsContractIDRegistered(const char *aContractID, PRBool *_retval);
1718     nsresult EnumerateCIDs(nsISimpleEnumerator **_retval);
1719     nsresult EnumerateContractIDs(nsISimpleEnumerator **_retval);
1720     nsresult CIDToContractID(const nsCID *aClass, char **_retval);
1721     nsresult ContractIDToCID(const char *aContractID, nsCID **_retval);
1722 }
1723
1724 [
1725     object,
1726     uuid(1630c61a-325e-49ca-8759-a31b16c47aa5)
1727     /* FROZEN */
1728 ]
1729 interface nsIPromptService : nsISupports
1730 {
1731     nsresult Alert(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1732             const PRUnichar *aText);
1733     nsresult AlertCheck(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1734             const PRUnichar *aText, const PRUnichar *aCheckMsg, PRBool *aCheckState);
1735     nsresult Confirm(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1736             const PRUnichar *aText, PRBool *_retval);
1737     nsresult ConfirmCheck(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1738             const PRUnichar *aText, const PRUnichar *aCheckMsg, PRBool *aCheckState,
1739             PRBool *_retval);
1740     nsresult ConfirmEx(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1741             const PRUnichar *aText, PRUint32 aButtonFlags, const PRUnichar *aButton0Title,
1742             const PRUnichar *aButton1Title, const PRUnichar *aButton2Title,
1743             const PRUnichar *aCheckMsg, PRBool *aCheckState, PRInt32 *_retval);
1744     nsresult Prompt(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1745             const PRUnichar *aText, PRUnichar **aValue, const PRUnichar *aCheckMsg,
1746             PRBool *aCheckState, PRBool *_retval);
1747     nsresult PromptUsernameAndPassword(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1748             const PRUnichar *aText, PRUnichar **aUsername, PRUnichar **aPassword,
1749             const PRUnichar *aCheckMsg, PRBool *aCheckState, PRBool *_retval);
1750     nsresult PromptPassword(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1751             const PRUnichar *aText, PRUnichar **aPassword, const PRUnichar *aCheckMsg,
1752             PRBool *aCheckState, PRBool *_retval);
1753     nsresult Select(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1754             const PRUnichar *aText, PRUint32 aCount, const PRUnichar **aSelectList,
1755             PRInt32 *aOutSelection, PRBool *_retval);
1756 }
1757
1758 [
1759     object,
1760     uuid(b128a1e6-44f3-4331-8fbe-5af360ff21ee)
1761     /* FROZEN */
1762 ]
1763 interface nsITooltipTextProvider : nsISupports
1764 {
1765     nsresult GetNodeText(nsIDOMNode *aNode, PRUnichar **aText, PRBool *_retval);
1766 }
1767
1768 [
1769     object,
1770     uuid(02b0625a-e7f3-11d2-9f5a-006008a6efe9)
1771     /* FROZEN */
1772 ]
1773 interface nsIProfile : nsISupports
1774 {
1775     nsresult GetProfileCount(PRInt32 *aProfileCount);
1776     nsresult GetProfileList(PRUint32 *length, PRUnichar ***profileNames);
1777     nsresult ProfileExists(const PRUnichar *profileName, PRBool *_retval);
1778     nsresult GetCurrentProfile(PRUnichar * *aCurrentProfile);
1779     nsresult SetCurrentProfile(const PRUnichar * aCurrentProfile);
1780     nsresult ShutDownCurrentProfile(PRUint32 shutDownType);
1781     nsresult CreateNewProfile(const PRUnichar *profileName,
1782             const PRUnichar *nativeProfileDir, const PRUnichar *langcode,
1783             PRBool useExistingDir);
1784     nsresult RenameProfile(const PRUnichar *oldName, const PRUnichar *newName);
1785     nsresult DeleteProfile(const PRUnichar *name, PRBool canDeleteFiles);
1786     nsresult CloneProfile(const PRUnichar *profileName);
1787 }
1788
1789 [
1790     object,
1791     uuid(30465632-a777-44cc-90f9-8145475ef999)
1792     /* FROZEN */
1793 ]
1794 interface nsIWindowCreator : nsISupports
1795 {
1796     nsresult CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags,
1797                                    nsIWebBrowserChrome **_retval);
1798 }
1799
1800 [
1801     object,
1802     uuid(f673ec81-a4b0-11d6-964b-eb5a2bf216fc)
1803     /* NOT_FROZEN */
1804 ]
1805 interface nsIWindowCreator2 : nsIWindowCreator
1806 {
1807     nsresult CreateChromeWindow2(nsIWebBrowserChrome *parent, PRUint32 chromeFlags,
1808                                  PRUint32 contextFlags, nsIURI *uri, PRBool *cancel,
1809                                  nsIWebBrowserChrome **_retval);
1810 }
1811
1812 [
1813     object,
1814     uuid(002286a8-494b-43b3-8ddd-49e3fc50622b)
1815     /* FROZEN */
1816 ]
1817 interface nsIWindowWatcher : nsISupports
1818 {
1819     nsresult OpenWindow(nsIDOMWindow *aParent, const char *aUrl, const char *aName,
1820                         const char *aFeatures, nsISupports *aArguments, nsIDOMWindow **_retval);
1821     nsresult RegisterNotification(nsIObserver *aObserver);
1822     nsresult UnregisterNotification(nsIObserver *aObserver);
1823     nsresult GetWindowEnumerator(nsISimpleEnumerator **_retval);
1824     nsresult GetNewPrompter(nsIDOMWindow *aParent, nsIPrompt **_retval);
1825     nsresult GetNewAuthPrompter(nsIDOMWindow *aParent, nsIAuthPrompt **_retval);
1826     nsresult SetWindowCreator(nsIWindowCreator *creator);
1827     nsresult GetChromeForWindow(nsIDOMWindow *aWindow, nsIWebBrowserChrome **_retval);
1828     nsresult GetWindowByName(const PRUnichar *aTargetName, nsIDOMWindow *aCurrentWindow,
1829                              nsIDOMWindow **_retval);
1830     nsresult GetActiveWindow(nsIDOMWindow **aActiveWindow);
1831     nsresult SetActiveWindow(nsIDOMWindow *aActiveWindow);
1832 }
1833
1834 [
1835     object,
1836     uuid(d39fd2b4-3978-45d2-a4be-ba448171b61b)
1837     /* NOT_FROZEN */
1838 ]
1839 interface nsIEditingSession : nsISupports
1840 {
1841     nsresult GetEditorStatus(PRUint32 *aEditorStatus);
1842     nsresult MakeWindowEditable(nsIDOMWindow *window, const char *aEditorType,
1843                                 PRBool doAfterUriLoad);
1844     nsresult WindowIsEditable(nsIDOMWindow *window, PRBool *_retval);
1845     nsresult GetEditorForWindow(nsIDOMWindow *window, nsIEditor **_retval);
1846     nsresult SetupEditorOnWindow(nsIDOMWindow *window);
1847     nsresult TearDownEditorOnWindow(nsIDOMWindow *window);
1848     nsresult SetEditorOnControllers(nsIDOMWindow *aWindow, nsIEditor *aEditor);
1849 }
1850
1851 [
1852     object,
1853     uuid(83f892cf-7ed3-490e-967a-62640f3158e1)
1854     /* NOT_FROZEN */
1855 ]
1856 interface nsICommandParams : nsISupports
1857 {
1858     nsresult GetValueType(const char *name, PRInt16 *_retval);
1859     nsresult GetBooleanValue(const char *name, PRBool *_retval);
1860     nsresult GetLongValue(const char *name, PRInt32 *_retval);
1861     nsresult GetDoubleValue(const char *name, double *_retval);
1862     nsresult GetStringValue(const char *name, nsAString *_retval);
1863     nsresult GetCStringValue(const char *name, char **_retval);
1864     nsresult GetISupportsValue(const char *name, nsISupports **_retval);
1865     nsresult SetBooleanValue(const char *name, PRBool value);
1866     nsresult SetLongValue(const char *name, PRInt32 value);
1867     nsresult SetDoubleValue(const char *name, double value);
1868     nsresult SetStringValue(const char *name, const nsAString *value);
1869     nsresult SetCStringValue(const char *name, const char *value);
1870     nsresult SetISupportsValue(const char *name, nsISupports *value);
1871     nsresult RemoveValue(const char *name);
1872     nsresult HasMoreElements(PRBool *_retval);
1873     nsresult First();
1874     nsresult GetNext(char **_retval);
1875 }
1876
1877 [
1878     object,
1879     uuid(080d2001-f91e-11d4-a73c-f9242928207c)
1880     /* NOT_FROZEN */
1881 ]
1882 interface nsICommandManager : nsISupports
1883 {
1884     nsresult AddCommandObserver(nsIObserver *aCommandObserver, const char *aCommandToObserve);
1885     nsresult RemoveCommandObserver(nsIObserver *aCommandObserver, const char *aCommandObserved);
1886     nsresult IsCommandSupported(const char *aCommandName, nsIDOMWindow *aTargetWindow, PRBool *_retval);
1887     nsresult IsCommandEnabled(const char *aCommandName, nsIDOMWindow *aTargetWindow, PRBool *_retval);
1888     nsresult GetCommandState(const char *aCommandName, nsIDOMWindow *aTargetWindow,
1889             nsICommandParams *aCommandParams);
1890     nsresult DoCommand(const char *aCommandName, nsICommandParams *aCommandParams,
1891             nsIDOMWindow *aTargetWindow);
1892 }
1893
1894 [
1895     object,
1896     uuid(47b82b60-a36f-4167-8072-6f421151ed50)
1897     /* NOT_FROZEN */
1898 ]
1899 interface nsIControllerContext : nsISupports
1900 {
1901     nsresult Init(nsIControllerCommandTable *aCommandTable);
1902     nsresult SetCommandContext(nsISupports *aCommandContext);
1903 }
1904
1905 [
1906     object,
1907     uuid(d5b61b82-1da4-11d3-bf87-00105a1b0627)
1908     /* NOT_FROZEN */
1909 ]
1910 interface nsIController : nsISupports
1911 {
1912     nsresult IsCommandEnabled(const char *command, PRBool *_retval);
1913     nsresult SupportsCommand(const char *command, PRBool *_retval);
1914     nsresult DoCommand(const char *command);
1915     nsresult OnEvent(const char *eventName);
1916 }
1917
1918 [
1919     object,
1920     uuid(d650439a-ca29-410d-a906-b0557fb62fcd)
1921     /* NOT_FROZEN */
1922 ]
1923 interface nsIContentSerializer : nsISupports
1924 {
1925     nsresult Init(PRUint32 flags, PRUint32 aWrapColumn, const char* aCharSet, PRBool aIsCopying);
1926     nsresult AppendText(nsIDOMText *aText, PRInt32 aStartOffset, PRInt32 aEndOffset, nsAString *aStr);
1927     nsresult AppendCDATASection(nsIDOMCDATASection *aCDATASection, PRInt32 aStartOffset,
1928             PRInt32 aEndOffset, nsAString *aStr);
1929     nsresult AppendProcessingInstruction(nsIDOMProcessingInstruction* aPI, PRInt32 aStartOffset,
1930             PRInt32 aEndOffset, nsAString *aStr);
1931     nsresult AppendComment(nsIDOMComment *aComment, PRInt32 aStartOffset, PRInt32 aEndOffset,
1932             nsAString *aStr);
1933     nsresult AppendDoctype(nsIDOMDocumentType *aDoctype, nsAString *aStr);
1934     nsresult AppendElementStart(nsIDOMElement *aElement, PRBool aHasChildren, nsAString *aStr);
1935     nsresult AppendElementEnd(nsIDOMElement *aElement, nsAString *aStr);
1936     nsresult Flush(nsAString *aStr);
1937     nsresult AppendDocumentStart(nsIDOMDocument *aDocument, nsAString *aStr);
1938 }
1939
1940 [
1941     object,
1942     uuid(68b97c56-2289-48ac-a9e1-72c30fd3dba2)
1943 ]
1944 interface nsIScriptContainer : nsISupports
1945 {
1946     typedef void *JSObject;
1947
1948     nsresult GetContext(void **aContext);
1949     nsresult GetGlobalObject(void **aGlobalObject);
1950     nsresult CompileScript(const PRUnichar *aText, PRInt32 aTextLength, void *aScopeObject,
1951             nsIPrincipal *aPrincipal, const char *aURL, PRUint32 aLineNo, PRUint32 aVersion, void **_retval);
1952     nsresult ExecuteScript(void *aScriptObject, void *aScopeObject, nsAString *aRetVal, PRBool *aIsUndefined);
1953     nsresult CompileFunction(void *aTarget, const nsACString *aName, PRUint32 aArgCount,
1954             const char **aArgArray, const nsAString *aBody, const char *aURL, PRInt32 aLineNo,
1955             PRBool aShared, void* *_retval);
1956     nsresult CallFunction(nsISupports *aTarget, void *aScope, void *aHandler, nsIArray *argv,
1957             nsIVariant **_retval);
1958     nsresult BindEventHandler(nsISupports *aTarget, void *aScope, nsIAtom *aName, void *aHandler);
1959     nsresult HoldScriptObject(void *aObject);
1960     nsresult DropScriptObject(void *aObject);
1961 }
1962
1963 [
1964     object,
1965     uuid(D4882FFB-E927-408b-96BE-D4391B456FA9)
1966 ]
1967 interface nsIEditor  : nsISupports
1968 {
1969     typedef void *nsIPresShellPtr;
1970     typedef void *nsIContentPtr;
1971
1972     nsresult GetSelection([out] nsISelection *_retval);
1973     nsresult Init([in] nsIDOMDocument *doc, [in] nsIPresShellPtr shell, [in] nsIContentPtr aRoot, [in] nsISelectionController *aSelCon, [in] PRUint32 aFlags);
1974     nsresult SetAttributeOrEquivalent([in] nsIDOMElement *element, [in] const nsAString *sourceAttrName, [in] const nsAString *sourceAttrValue, [in] PRBool aSuppressTransaction);
1975     nsresult RemoveAttributeOrEquivalent([in] nsIDOMElement *element, [in] const nsAString *sourceAttrName, [in] PRBool aSuppressTransaction);
1976     nsresult PostCreate();
1977     nsresult PreDestroy();
1978     nsresult GetFlags([out] PRUint32 *_retval);
1979     nsresult SetFlags([in] PRUint32 val);
1980     nsresult GetContentsMIMEType([out] char **_retval);
1981     nsresult SetContentsMIMEType([in] const char *val);
1982     nsresult GetIsDocumentEditable([out] PRBool *_retval);
1983     nsresult GetDocument([out] nsIDOMDocument **_retval);
1984     nsresult GetRootElement([out] nsIDOMElement **_retval);
1985     nsresult GetSelectionController([out] nsISelectionController **_retval);
1986     nsresult DeleteSelection([in] PRInt16 action);
1987     nsresult GetDocumentIsEmpty([out] PRBool *_retval);
1988     nsresult GetDocumentModified([out] PRBool *_retval);
1989     nsresult GetDocumentCharacterSet([out] nsACString *_retval);
1990     nsresult SetDocumentCharacterSet([in] const nsACString *val);
1991     nsresult ResetModificationCount();
1992     nsresult GetModificationCount([out] PRInt32 *_retval);
1993     nsresult IncrementModificationCount([in] long aModCount);
1994     nsresult GetTransactionManager([out] nsITransactionManager **_retval);
1995     nsresult DoTransaction([in] nsITransaction *txn);
1996     nsresult EnableUndo([in] PRBool enable);
1997     nsresult Undo([in] PRUint32 count);
1998     nsresult CanUndo([out] PRBool *isEnabled, [out] PRBool *canUndo);
1999     nsresult Redo([in] PRUint32 count);
2000     nsresult CanRedo([out] PRBool *isEnabled, [out] PRBool *canRedo);
2001     nsresult BeginTransaction();
2002     nsresult EndTransaction();
2003     nsresult BeginPlaceHolderTransaction([in] nsIAtom *name);
2004     nsresult EndPlaceHolderTransaction();
2005     nsresult ShouldTxnSetSelection([out] PRBool *_retval);
2006     nsresult SetShouldTxnSetSelection([in] PRBool should);
2007     nsresult GetInlineSpellChecker([out] nsIInlineSpellChecker **_retval);
2008     nsresult Cut();
2009     nsresult CanCut([out] PRBool *_retval);
2010     nsresult Copy();
2011     nsresult CanCopy([out] PRBool *_retval);
2012     nsresult Paste([in] PRInt32 aSelectionType);
2013     nsresult CanPaste([in] PRInt32 aSelectionType, [out] PRBool *_retval);
2014     nsresult SelectAll();
2015     nsresult BeginningOfDocument();
2016     nsresult EndOfDocument();
2017     nsresult CanDrag([in] nsIDOMEvent *aEvent, [out] PRBool *_retval);
2018     nsresult DoDrag([in] nsIDOMEvent *aEvent);
2019     nsresult InsertFromDrop([in] nsIDOMEvent *aEvent);
2020     nsresult SetAttribute([in] nsIDOMElement *aElement, [in] const nsAString *attributestr, [in] const nsAString *attvalue);
2021     nsresult GetAttributeValue([in] nsIDOMElement *aElement, [in] const nsAString *attributestr, [out] nsAString *resultValue, PRBool *_retval);
2022     nsresult RemoveAttribute([in] nsIDOMElement *aElement, [in] const nsAString *aAttribute);
2023     nsresult CloneAttribute([in] const nsAString *aAttribute, [in] nsIDOMNode *aDestNode, [in] nsIDOMNode *aSourceNode);
2024     nsresult CloneAttributes([in] nsIDOMNode *destNode, [in] nsIDOMNode *sourceNode);
2025     nsresult CreateNode([in] const nsAString *tag, [in] nsIDOMNode parent, [in] PRInt32 position, [out] nsIDOMNode **_retval);
2026     nsresult InsertNode([in] nsIDOMNode *node, [in] nsIDOMNode *parent, [in] PRInt32 aPosition);
2027     nsresult SplitNode([in] nsIDOMNode *existingRightNode, [in] PRInt32 offset, [out] nsIDOMNode **newLeftNode);
2028     nsresult JoinNodes([in] nsIDOMNode *leftNode, [in] nsIDOMNode *rightNode, [in] nsIDOMNode *parent);
2029     nsresult DeleteNode([in] nsIDOMNode *child);
2030     nsresult MarkNodeDirty([in] nsIDOMNode *node);
2031     nsresult SwitchTextDirection();
2032     nsresult OutputToString([in] nsAString formatType, [in] PRUint32 flags, [out] nsAString *_retval);
2033     nsresult OutputToStream([in] nsIOutputStream *aStream, [in] nsAString *formatType, [in] nsACString *charsetOverride, [in] PRUint32 flags);
2034     nsresult AddEditorObserver([in] nsIEditorObserver *observer);
2035     nsresult RemoveEditorObserver([in] nsIEditorObserver *observer);
2036     nsresult AddEditActionListener([in] nsIEditActionListener *listener);
2037     nsresult RemoveEditActionListener([in] nsIEditActionListener *listener);
2038     nsresult AddDocumentStateListener([in] nsIDocumentStateListener *listener);
2039     nsresult RemoveDocumentStateListener([in] nsIDocumentStateListener *listener);
2040     nsresult DumpContentTree();
2041     nsresult DebugDumpContent();
2042     nsresult DebugUnitTests([out] PRInt32 *outNumTests, [out] PRInt32 *outNumTestsFailed);
2043 }
2044
2045 [
2046     object,
2047     uuid(afc36593-5787-4420-93d9-b2c0ccbf0cad)
2048 ]
2049 interface nsIHTMLEditor : nsISupports
2050 {
2051     nsresult AddDefaultProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2052     nsresult RemoveDefaultProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2053     nsresult RemoveAllDefaultProperties();
2054     nsresult SetCSSInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2055     nsresult SetInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2056     nsresult GetInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue, [out] PRBool *aFirst, [out] PRBool *aAny, [out] PRBool *aAll);
2057     nsresult GetInlinePropertyWithAttrValue([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue, [out] PRBool *aFirst, [out] PRBool *aAny, [out] PRBool *aAll, [out] nsAString *_retval);
2058     nsresult RemoveAllInlineProperties();
2059     nsresult RemoveInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute);
2060     nsresult IncreaseFontSize();
2061     nsresult DecreaseFontSize();
2062     nsresult CanDrag([in] nsIDOMEvent *aEvent, [out] PRBool *_retval);
2063     nsresult DoDrag([in] nsIDOMEvent *aEvent);
2064     nsresult InsertFromDrop([in] nsIDOMEvent *aEvent);
2065     nsresult NodeIsBlock([in] nsIDOMNode *node, PRBool *_retval);
2066     nsresult InsertHTML([in] nsAString *aInputString);
2067     nsresult PasteNoFormatting([in] PRInt32 aSelectionType);
2068     nsresult RebuildDocumentFromSource([in] nsAString *aSourceString);
2069     nsresult InsertHTMLWithContext([in] nsAString *aInputString, [in] nsAString *aContextStr, [in] nsAString *aInfoStr, [in] nsAString *aFlavor, [in] nsIDOMDocument *aSourceDoc, [in] nsIDOMNode *aDestinationNode, [in] PRInt32 aDestinationOffset, [in] PRBool aDeleteSelection);
2070     nsresult InsertElementAtSelection([in] nsIDOMElement *aElement, [in] PRBool aDeleteSelection);
2071     nsresult SetDocumentTitle([in] nsAString *aTitle);
2072     nsresult UpdateBaseURL();
2073     nsresult SelectElement([in] nsIDOMElement *aElement);
2074     nsresult SetCaretAfterElement([in] nsIDOMElement *aElement);
2075     nsresult SetParagraphFormat([in] nsAString *aParagraphFormat);
2076     nsresult GetParagraphState([out] PRBool *aMixed, [out] nsAString *_retval);
2077     nsresult GetFontFaceState([out] PRBool *aMixed, [out] nsAString *_retval);
2078     nsresult GetFontColorState([out] PRBool *aMixed, [out] nsAString *_retval);
2079     nsresult GetBackgroundColorState([out] PRBool *aMixed, [out] nsAString *_retval);
2080     nsresult GetHighlightColorState([out] PRBool *aMixed, [out] nsAString *_retval);
2081     nsresult GetListState([out] PRBool *aMixed, [out] PRBool *aOL, [out] PRBool *aUL, [out] PRBool *aDL);
2082     nsresult GetListItemState([out] PRBool *aMixed, [out] PRBool *aLI, [out] PRBool *aDT, [out] PRBool *aDD);
2083     nsresult GetAlignment([out] PRBool *aMixed, [out] PRInt16 *aAlign);
2084     nsresult GetIndentState([out] PRBool *aCanIndent, [out] PRBool *aCanOutdent);
2085     nsresult MakeOrChangeList([in] nsAString *aListType, [in] PRBool entireList, [in] nsAString *aBulletType);
2086     nsresult RemoveList([in] nsAString *aListType);
2087     nsresult Indent([in] nsAString *aIndent);
2088     nsresult Align([in] nsAString *aAlign);
2089     nsresult GetElementOrParentByTagName([in] nsAString *aTagName, [in] nsIDOMNode *aNode, [out] nsIDOMElement **_retval);
2090     nsresult GetSelectedElement([in] nsAString *aTagName, [out] nsIDOMElement **_retval);
2091     nsresult GetHeadContentsAsHTML([out] nsAString *_retval);
2092     nsresult ReplaceHeadContentsWithHTML([in] nsAString *aSourceToInsert);
2093     nsresult CreateElementWithDefaults([in] nsAString *aTagName, [out] nsIDOMElement **_retval);
2094     nsresult InsertLinkAroundSelection([in] nsIDOMElement *aAnchorElement);
2095     nsresult SetBackgroundColor([in] nsAString *aColor);
2096     nsresult SetBodyAttribute([in] nsAString *aAttr, [in] nsAString *aValue);
2097     nsresult IgnoreSpuriousDragEvent([in] PRBool aIgnoreSpuriousDragEvent);
2098     nsresult GetLinkedObjects([out] nsISupportsArray **_retval);
2099     nsresult GetIsCSSEnabled([out] PRBool *_retval);
2100     nsresult SetIsCSSEnabled([in] PRBool prb);
2101     nsresult AddInsertionListener([in] nsIContentFilter *inFilter);
2102     nsresult RemoveInsertionListener([in] nsIContentFilter *inFilter);
2103     nsresult CreateAnonymousElement([in] nsAString *aTag, [in] nsIDOMNode *aParentNode, [in] nsAString *aAnonClass, [in] PRBool aIsCreatedHidden, [out] nsIDOMElement **_retval);
2104     nsresult GetSelectionContainer([out] nsIDOMElement **_retval);
2105     nsresult CheckSelectionStateForAnonymousButtons([in] nsISelection *aSelection);
2106     nsresult IsAnonymousElement([in] nsIDOMElement *aElement, [out] PRBool *_retval);
2107     nsresult GetReturnInParagraphCreatesNewParagraph([out] PRBool *_retval);
2108     nsresult SetReturnInParagraphCreatesNewParagraph([in] PRBool prb);
2109 }
2110
2111 /*
2112  * NOTE:
2113  * This is a private Wine interface that is implemented by our implementation
2114  * of nsIURI to store its owner.
2115  */
2116 [
2117     object,
2118     uuid(5088272e-900b-11da-c687-000fea57f21a)
2119     /* INTERNAL */
2120 ]
2121 interface nsIWineURI : nsIURI
2122 {
2123     typedef struct NSContainer NSContainer;
2124
2125     nsresult GetNSContainer(NSContainer **aNSContainer);
2126     nsresult SetNSContainer(NSContainer *aNSContainer);
2127     nsresult GetIsDocumentURI(PRBool *aIsDocumentURI);
2128     nsresult SetIsDocumentURI(PRBool aIsDocumentURI);
2129     nsresult GetWineURL(LPCWSTR *aURL);
2130     nsresult SetWineURL(LPCWSTR aURL);
2131 }