mshtml: Added IHTMLOptionElement::get_value implementation.
[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(a6cf9092-15b3-11d2-932e-00805f8add32)
1082     /* FROZEN */
1083 ]
1084 interface nsIDOMHTMLOptionElement : nsIDOMHTMLElement
1085 {
1086     nsresult GetForm(nsIDOMHTMLFormElement **aForm);
1087     nsresult GetDefaultSelected(PRBool *aDefaultSelected);
1088     nsresult SetDefaultSelected(PRBool aDefaultSelected);
1089     nsresult GetText(nsAString *aText);
1090     nsresult GetIndex(PRInt32 *aIndex);
1091     nsresult GetDisabled(PRBool *aDisabled);
1092     nsresult SetDisabled(PRBool aDisabled);
1093     nsresult GetLabel(nsAString *aLabel);
1094     nsresult SetLabel(const nsAString *aLabel);
1095     nsresult GetSelected(PRBool *aSelected);
1096     nsresult SetSelected(PRBool aSelected);
1097     nsresult GetValue(nsAString *aValue);
1098     nsresult SetValue(const nsAString *aValue);
1099 }
1100
1101 [
1102     object,
1103     uuid(a6cf9090-15b3-11d2-932e-00805f8add32)
1104     /* FROZEN */
1105 ]
1106 interface nsIDOMHTMLSelectElement : nsIDOMHTMLElement
1107 {
1108     nsresult GetType(nsAString *aType);
1109     nsresult GetSelectedIndex(PRInt32 *aSelectedIndex);
1110     nsresult SetSelectedIndex(PRInt32 aSelectedIndex);
1111     nsresult GetValue(nsAString *aValue);
1112     nsresult SetValue(const nsAString *aValue);
1113     nsresult GetLength(PRUint32 *aLength);
1114     nsresult SetLength(PRUint32 aLength);
1115     nsresult GetForm(nsIDOMHTMLFormElement **aForm);
1116     nsresult GetOptions(nsIDOMHTMLOptionsCollection **aOptions);
1117     nsresult GetDisabled(PRBool *aDisabled);
1118     nsresult SetDisabled(PRBool aDisabled);
1119     nsresult GetMultiple(PRBool *aMultiple);
1120     nsresult SetMultiple(PRBool aMultiple);
1121     nsresult GetName(nsAString *aName);
1122     nsresult SetName(const nsAString *aName);
1123     nsresult GetSize(PRInt32 *aSize);
1124     nsresult SetSize(PRInt32 aSize);
1125     nsresult GetTabIndex(PRInt32 *aTabIndex);
1126     nsresult SetTabIndex(PRInt32 aTabIndex);
1127     nsresult Add(nsIDOMHTMLElement *element, nsIDOMHTMLElement *before);
1128     nsresult Remove(PRInt32 index);
1129     nsresult Blur();
1130     nsresult Focus();
1131 }
1132
1133 [
1134     object,
1135     uuid(a6cf9094-15b3-11d2-932e-00805f8add32)
1136     /* FROZEN */
1137 ]
1138 interface nsIDOMHTMLTextAreaElement : nsIDOMHTMLElement
1139 {
1140     nsresult GetDefaultValue(nsAString *aDefaultValue);
1141     nsresult SetDefaultValue(const nsAString *aDefaultValue);
1142     nsresult GetForm(nsIDOMHTMLFormElement **aForm);
1143     nsresult GetAccessKey(nsAString *aAccessKey);
1144     nsresult SetAccessKey(const nsAString *aAccessKey);
1145     nsresult GetCols(PRInt32 *aCols);
1146     nsresult SetCols(PRInt32 aCols);
1147     nsresult GetDisabled(PRBool *aDisabled);
1148     nsresult SetDisabled(PRBool aDisabled);
1149     nsresult GetName(nsAString *aName);
1150     nsresult SetName(const nsAString *aName);
1151     nsresult GetReadOnly(PRBool *aReadOnly);
1152     nsresult SetReadOnly(PRBool aReadOnly);
1153     nsresult GetRows(PRInt32 *aRows);
1154     nsresult SetRows(PRInt32 aRows);
1155     nsresult GetTabIndex(PRInt32 *aTabIndex);
1156     nsresult SetTabIndex(PRInt32 aTabIndex);
1157     nsresult GetType(nsAString *aType);
1158     nsresult GetValue(nsAString *aValue);
1159     nsresult SetValue(const nsAString *aValue);
1160     nsresult Blur();
1161     nsresult Focus();
1162     nsresult Select();
1163 }
1164
1165 [
1166     object,
1167     uuid(94928ab3-8b63-11d3-989d-001083010e9b)
1168     /* FROZEN */
1169 ]
1170 interface nsIURIContentListener : nsISupports
1171 {
1172     nsresult OnStartURIOpen(nsIURI *aURI, PRBool *_retval);
1173     nsresult DoContent(const char *aContentType, PRBool aIsContentPreferred, nsIRequest *aRequest,
1174         nsIStreamListener **aContentHandler, PRBool *_retval);
1175     nsresult IsPreferred(const char *aContentType, char **aDesiredContentType, PRBool *_retval);
1176     nsresult CanHandleContent(const char *aContentType, PRBool aIsContentPreferred,
1177         char **aDesiredContentType, PRBool *_retval);
1178     nsresult GetLoadCookie(nsISupports **aLoadCookie);
1179     nsresult SetLoadCookie(nsISupports *aLoadCookie);
1180     nsresult GetParentContentListener(nsIURIContentListener **aParentContentListener);
1181     nsresult SetParentContentListener(nsIURIContentListener *aParentContentListener);
1182 }
1183
1184 [
1185     object,
1186     uuid(44b78386-1dd2-11b2-9ad2-e4eee2ca1916)
1187     /* FROZEN */
1188 ]
1189 interface nsITooltipListener : nsISupports
1190 {
1191     nsresult OnShowTooltip(PRInt32 aXCoords, PRInt32 aYCoords, const PRUnichar *aTipText);
1192     nsresult OnHideTooltip();
1193 }
1194
1195 [
1196     object,
1197     uuid(69e5df00-7b8b-11d3-af61-00a024ffc08c)
1198     /* FROZEN */
1199 ]
1200 interface nsIWebBrowser : nsISupports
1201 {
1202     nsresult AddWebBrowserListener(nsIWeakReference *aListener, const nsIID *aIID);
1203     nsresult RemoveWebBrowserListener(nsIWeakReference *aListener, const nsIID *aIID);
1204     nsresult GetContainerWindow(nsIWebBrowserChrome **aContainerWindow);
1205     nsresult SetContainerWindow(nsIWebBrowserChrome *aContainerWindow);
1206     nsresult GetParentURIContentListener(nsIURIContentListener **aParentURIContentListener);
1207     nsresult SetParentURIContentListener(nsIURIContentListener *aParentURIContentListener);
1208     nsresult GetContentDOMWindow(nsIDOMWindow **aContentDOMWindow);
1209 }
1210
1211 cpp_quote("#define SETUP_IS_CHROME_WRAPPER 7");
1212
1213 [
1214     object,
1215     uuid(f15398a0-8018-11d3-af70-00a024ffc08c)
1216     /* FROZEN */
1217 ]
1218 interface nsIWebBrowserSetup : nsISupports
1219 {
1220     nsresult SetProperty(PRUint32 aId, PRUint32 aValue);
1221 }
1222
1223 typedef void* nativeWindow;
1224
1225 [
1226     object,
1227     uuid(046bc8a0-8015-11d3-af70-00a024ffc08c)
1228     /* NOT_FROZEN */
1229 ]
1230 interface nsIBaseWindow : nsISupports
1231 {
1232     nsresult InitWindow(nativeWindow parentNativeWindow, nsIWidget *parentWidget, PRInt32 x,
1233             PRInt32 y, PRInt32 cx, PRInt32 cy);
1234     nsresult Create();
1235     nsresult Destroy();
1236     nsresult SetPosition(PRInt32 x, PRInt32 y);
1237     nsresult GetPosition(PRInt32 *x, PRInt32 *y);
1238     nsresult SetSize(PRInt32 cx, PRInt32 cy, PRBool fRepaint);
1239     nsresult GetSize(PRInt32 *cx, PRInt32 *cy);
1240     nsresult SetPositionAndSize(PRInt32 x, PRInt32 y, PRInt32 cx, PRInt32 cy, PRBool fRepaint);
1241     nsresult GetPositionAndSize(PRInt32 *x, PRInt32 *y, PRInt32 *cx, PRInt32 *cy);
1242     nsresult Repaint(PRBool force);
1243     nsresult GetParentWidget(nsIWidget **aParentWidget); 
1244     nsresult SetParentWidget(nsIWidget *aParentWidget);
1245     nsresult GetParentNativeWindow(nativeWindow *aParentNativeWindow);
1246     nsresult SetParentNativeWindow(nativeWindow aParentNativeWindow);
1247     nsresult GetVisibility(PRBool *aVisibility);
1248     nsresult SetVisibility(PRBool aVisibility);
1249     nsresult GetEnabled(PRBool *aEnabled);
1250     nsresult SetEnabled(PRBool aEnabled);
1251     nsresult GetBlurSuppression(PRBool *aBlurSuppression);
1252     nsresult SetBlurSuppression(PRBool aBlurSuppression);
1253     nsresult GetMainWidget(nsIWidget **aMainWidget);
1254     nsresult SetFocus();
1255     nsresult GetTitle(PRUnichar **aTitle);
1256     nsresult SetTitle(const PRUnichar *aTitle);
1257 }
1258
1259 cpp_quote("#define LOAD_FLAGS_NONE 0");
1260
1261 [
1262     object,
1263     uuid(f5d9e7b0-d930-11d3-b057-00a024ffc08c)
1264     /* NOT_FROZEN */
1265 ]
1266 interface nsIWebNavigation : nsISupports
1267 {
1268     nsresult GetCanGoBack(PRBool *aCanGoBack);
1269     nsresult GetCanGoForward(PRBool *aCanGoForward);
1270     nsresult GoBack();
1271     nsresult GoForward();
1272     nsresult GotoIndex(PRInt32 index);
1273     nsresult LoadURI(const PRUnichar *aURI, PRUint32 aLoadFlags, nsIURI *aReferrer,
1274             nsIInputStream *aPostData, nsIInputStream *aHeaders);
1275     nsresult Reload(PRUint32 aReloadFlags);
1276     nsresult Stop(PRUint32 aStopFlags);
1277     nsresult GetDocument(nsIDOMDocument **aDocument);
1278     nsresult GetCurrentURI(nsIURI **aCurrentURI);
1279     nsresult GetReferringURI(nsIURI **aReferringURI);
1280     nsresult GetSessionHistory(nsISHistory **aSessionHistory);
1281     nsresult SetSessionHistory(nsISHistory *aSessionHistory);
1282 }
1283
1284 [
1285     object,
1286     uuid(f1094df6-ce0e-42c9-9847-2f663172c38d)
1287     /* NOT_FROZEN */
1288 ]
1289 interface nsIPrintSettings : nsISupports
1290 {
1291     typedef struct {} nsMargin;
1292
1293     nsresult SetPrintOptions(PRInt32 aType, PRBool aTurnOnOff);
1294     nsresult GetPrintOptions(PRInt32 aType, PRBool *_retval);
1295     nsresult GetPrintOptionsBits(PRInt32 *_retval);
1296     nsresult GetPageSizeInTwips(PRInt32 *aWidth, PRInt32 *aHeight);
1297     nsresult Clone(nsIPrintSettings **_retval);
1298     nsresult Assign(nsIPrintSettings *aPS);
1299     nsresult GetPrintSession(nsIPrintSession **aPrintSession);
1300     nsresult SetPrintSession(nsIPrintSession *aPrintSession);
1301     nsresult GetStartPageRange(PRInt32 *aStartPageRange);
1302     nsresult SetStartPageRange(PRInt32 aStartPageRange);
1303     nsresult GetEndPageRange(PRInt32 *aEndPageRange);
1304     nsresult SetEndPageRange(PRInt32 aEndPageRange);
1305     nsresult GetMarginTop(double *aMarginTop);
1306     nsresult SetMarginTop(double aMarginTop);
1307     nsresult GetMarginLeft(double *aMarginLeft);
1308     nsresult SetMarginLeft(double aMarginLeft);
1309     nsresult GetMarginBottom(double *aMarginBottom);
1310     nsresult SetMarginBottom(double aMarginBottom);
1311     nsresult GetMarginRight(double *aMarginRight);
1312     nsresult SetMarginRight(double aMarginRight);
1313     nsresult GetScaling(double *aScaling);
1314     nsresult SetScaling(double aScaling);
1315     nsresult GetPrintBGColors(PRBool *aPrintBGColors);
1316     nsresult SetPrintBGColors(PRBool aPrintBGColors);
1317     nsresult GetPrintBGImages(PRBool *aPrintBGImages);
1318     nsresult SetPrintBGImages(PRBool aPrintBGImages);
1319     nsresult GetPrintRange(PRInt16 *aPrintRange);
1320     nsresult SetPrintRange(PRInt16 aPrintRange);
1321     nsresult GetTitle(PRUnichar **aTitle);
1322     nsresult SetTitle(const PRUnichar *aTitle);
1323     nsresult GetDocURL(PRUnichar **aDocURL);
1324     nsresult SetDocURL(const PRUnichar *aDocURL);
1325     nsresult GetHeaderStrLeft(PRUnichar **aHeaderStrLeft);
1326     nsresult SetHeaderStrLeft(const PRUnichar *aHeaderStrLeft);
1327     nsresult GetHeaderStrCenter(PRUnichar **aHeaderStrCenter);
1328     nsresult SetHeaderStrCenter(const PRUnichar *aHeaderStrCenter);
1329     nsresult GetHeaderStrRight(PRUnichar **aHeaderStrRight);
1330     nsresult SetHeaderStrRight(const PRUnichar *aHeaderStrRight);
1331     nsresult GetFooterStrLeft(PRUnichar **aFooterStrLeft);
1332     nsresult SetFooterStrLeft(const PRUnichar *aFooterStrLeft);
1333     nsresult GetFooterStrCenter(PRUnichar **aFooterStrCenter);
1334     nsresult SetFooterStrCenter(const PRUnichar *aFooterStrCenter);
1335     nsresult GetFooterStrRight(PRUnichar **aFooterStrRight);
1336     nsresult SetFooterStrRight(const PRUnichar *aFooterStrRight);
1337     nsresult GetHowToEnableFrameUI(PRInt16 *aHowToEnableFrameUI);
1338     nsresult SetHowToEnableFrameUI(PRInt16 aHowToEnableFrameUI);
1339     nsresult GetIsCancelled(PRBool *aIsCancelled);
1340     nsresult SetIsCancelled(PRBool aIsCancelled);
1341     nsresult GetPrintFrameTypeUsage(PRInt16 *aPrintFrameTypeUsage);
1342     nsresult SetPrintFrameTypeUsage(PRInt16 aPrintFrameTypeUsage);
1343     nsresult GetPrintFrameType(PRInt16 *aPrintFrameType);
1344     nsresult SetPrintFrameType(PRInt16 aPrintFrameType);
1345     nsresult GetPrintSilent(PRBool *aPrintSilent);
1346     nsresult SetPrintSilent(PRBool aPrintSilent);
1347     nsresult GetShrinkToFit(PRBool *aShrinkToFit);
1348     nsresult SetShrinkToFit(PRBool aShrinkToFit);
1349     nsresult GetShowPrintProgress(PRBool *aShowPrintProgress);
1350     nsresult SetShowPrintProgress(PRBool aShowPrintProgress);
1351     nsresult GetPaperName(PRUnichar **aPaperName);
1352     nsresult SetPaperName(const PRUnichar *aPaperName);
1353     nsresult GetPaperSizeType(PRInt16 *aPaperSizeType);
1354     nsresult SetPaperSizeType(PRInt16 aPaperSizeType);
1355     nsresult GetPaperData(PRInt16 *aPaperData);
1356     nsresult SetPaperData(PRInt16 aPaperData);
1357     nsresult GetPaperWidth(double *aPaperWidth);
1358     nsresult SetPaperWidth(double aPaperWidth);
1359     nsresult GetPaperHeight(double *aPaperHeight);
1360     nsresult SetPaperHeight(double aPaperHeight);
1361     nsresult GetPaperSizeUnit(PRInt16 *aPaperSizeUnit);
1362     nsresult SetPaperSizeUnit(PRInt16 aPaperSizeUnit);
1363     nsresult GetPlexName(PRUnichar **aPlexName);
1364     nsresult SetPlexName(const PRUnichar *aPlexName);
1365     nsresult GetColorspace(PRUnichar **aColorspace);
1366     nsresult SetColorspace(const PRUnichar *aColorspace);
1367     nsresult GetResolutionName(PRUnichar **aResolutionName);
1368     nsresult SetResolutionName(const PRUnichar aResolutionName);
1369     nsresult GetDownloadFonts(PRBool *aDownloadFonts);
1370     nsresult SetDownloadFonts(PRBool aDownloadFonts);
1371     nsresult GetPrintReversed(PRBool *aPrintReversed);
1372     nsresult SetPrintReversed(PRBool aPrintReversed);
1373     nsresult GetPrintInColor(PRBool *aPrintInColor);
1374     nsresult SetPrintInColor(PRBool aPrintInColor);
1375     nsresult GetPaperSize(PRInt32 *aPaperSize);
1376     nsresult SetPaperSize(PRInt32 aPaperSize);
1377     nsresult GetOrientation(PRInt32 *aOrientation);
1378     nsresult SetOrientation(PRInt32 aOrientation);
1379     nsresult GetPrintCommand(PRUnichar **aPrintCommand);
1380     nsresult SetPrintCommand(const PRUnichar *aPrintCommand);
1381     nsresult GetNumCopies(PRInt32 *aNumCopies);
1382     nsresult SetNumCopies(PRInt32 aNumCopies);
1383     nsresult GetPrinterName(PRUnichar **aPrinterName);
1384     nsresult SetPrinterName(const PRUnichar *aPrinterName);
1385     nsresult GetPrintToFile(PRBool *aPrintToFile);
1386     nsresult SetPrintToFile(PRBool aPrintToFile);
1387     nsresult GetToFileName(PRUnichar **aToFileName);
1388     nsresult SetToFileName(const PRUnichar *aToFileName);
1389     nsresult GetPrintPageDelay(PRInt32 *aPrintPageDelay);
1390     nsresult SetPrintPageDelay(PRInt32 aPrintPageDelay);
1391     nsresult GetIsInitializedFromPrinter(PRBool *aIsInitializedFromPrinter);
1392     nsresult SetIsInitializedFromPrinter(PRBool aIsInitializedFromPrinter);
1393     nsresult GetIsInitializedFromPrefs(PRBool *aIsInitializedFromPrefs);
1394     nsresult SetIsInitializedFromPrefs(PRBool aIsInitializedFromPrefs);
1395     nsresult SetMarginInTwips(nsMargin *aMargin);
1396     nsresult GetMarginInTwips(nsMargin *aMargin);
1397 }
1398
1399 [
1400     object,
1401     uuid(9a7ca4b0-fbba-11d4-a869-00105a183419)
1402     /* FROZEN */
1403 ]
1404 interface nsIWebBrowserPrint : nsISupports
1405 {
1406     nsresult GetGlobalPrintSettings(nsIPrintSettings **aGlobalPrintSettings);
1407     nsresult GetCurrentPrintSettings(nsIPrintSettings **aCurrentPrintSettings);
1408     nsresult GetCurrentChildDOMWindow(nsIDOMWindow **aCurrentChildDOMWindow);
1409     nsresult GetDoingPrint(PRBool *aDoingPrint);
1410     nsresult GetDoingPrintPreview(PRBool *aDoingPrintPreview);
1411     nsresult GetIsFramesetDocument(PRBool *aIsFramesetDocument);
1412     nsresult GetIsFramesetFrameSelected(PRBool *aIsFramesetFrameSelected);
1413     nsresult GetIsIFrameSelected(PRBool *aIsIFrameSelected);
1414     nsresult GetIsRangeSelection(PRBool *aIsRangeSelection);
1415     nsresult GetPrintPreviewNumPages(PRInt32 *aPrintPreviewNumPages);
1416     nsresult Print(nsIPrintSettings *aThePrintSettings, nsIWebProgressListener *aWPListener);
1417     nsresult PrintPreview(nsIPrintSettings *aThePrintSettings, nsIDOMWindow *aChildDOMWin,
1418                           nsIWebProgressListener *aWPListener);
1419     nsresult PrintPreviewNavigate(PRInt16 aNavType, PRInt32 aPageNum);
1420     nsresult Cancel();
1421     nsresult EnumerateDocumentNames(PRUint32 *aCount, PRUnichar ***aResult);
1422     nsresult ExitPrintPreview();
1423 }
1424
1425 [
1426     object,
1427     uuid(919e792a-6490-40b8-bba5-f9e9ad5640c8)
1428     /* NOT_FROZEN */
1429 ]
1430 interface nsIScrollable : nsISupports
1431 {
1432     enum {
1433         ScrollOrientation_X = 1,
1434         ScrollOrientation_Y = 2
1435     };
1436
1437     enum {
1438         Scrollbar_Auto   = 1,
1439         Scrollbar_Never  = 2,
1440         Scrollbar_Always = 3
1441     };
1442
1443     nsresult GetCurScrollPos(PRInt32 scrollOrientation, PRInt32 *curPos);
1444     nsresult SetCurScrollPos(PRInt32 scrollOrientation, PRInt32 curPos);
1445     nsresult SetCurScrollPosEx(PRInt32 curHorizontalPos, PRInt32 curVerticalPos);
1446     nsresult GetScrollRange(PRInt32 scrollOrientation, PRInt32 *minPos, PRInt32 *maxPos);
1447     nsresult SetScrollRange(PRInt32 scrollOrientation, PRInt32 minPos, PRInt32 maxPos);
1448     nsresult SetScrollRangeEx(PRInt32 minHorizontalPos, PRInt32 maxHorizontalPos,
1449             PRInt32 minVerticalPos, PRInt32 maxVerticalPos);
1450     nsresult GetDefaultScrollbarPreferences(PRInt32 scrollOrientation, PRInt32 *scrollbarPref);
1451     nsresult SetDefaultScrollbarPreferences(PRInt32 scrollOrientation, PRInt32 scrollbarPref);
1452     nsresult GetScrollbarVisibility(PRBool *verticalVisible, PRBool *horizontalVisible);
1453 }
1454
1455 [
1456     object,
1457     uuid(c8c0a080-0868-11d3-915f-d9d889d48e3c)
1458     /* FROZEN */
1459 ]
1460 interface nsIFile : nsISupports
1461 {
1462     nsresult Append(const nsAString *node);
1463     nsresult AppendNative(const nsAString *node);
1464     nsresult Normalize();
1465     nsresult Create(PRUint32 type, PRUint32 permission);
1466     nsresult GetLeafName(nsAString *aLeafName);
1467     nsresult SetLeafName(const nsAString *aLeafName);
1468     nsresult GetNativeLeafName(nsAString *aLeafName);
1469     nsresult SetNativeLeafName(const nsAString *aLeafName);
1470     nsresult CopyTo(nsIFile *newParentDir, const nsAString *newName);
1471     nsresult CopyToNative(nsIFile *newParentDir, const nsAString *newName);
1472     nsresult CopyToFollowingLinks(nsIFile *newParentDir, const nsAString *newName);
1473     nsresult CopyToFollowingLinksNative(nsIFile *newParentDir, const nsAString *newName);
1474     nsresult MoveTo(nsIFile *newParentDir, const nsAString *newName);
1475     nsresult MoveToNative(nsIFile *newParentDir, const nsAString *newName);
1476     nsresult Remove(PRBool recursive);
1477     nsresult GetPermissions(PRUint32 *aPermissions);
1478     nsresult SetPermissions(PRUint32 pPermissions);
1479     nsresult GetPermissionsOfLink(PRUint32 *aPermissions);
1480     nsresult SetPermissionsOfLink(PRUint32 pPermissions);
1481     nsresult GetLastModifiedTime(PRInt64 *aLastModifiedTime);
1482     nsresult SetLastModifiedTime(PRInt64 aLastModifiedTime);
1483     nsresult GetFileSize(PRInt64 *aFileSize);
1484     nsresult SetFileSize(PRInt64 aFileSize);
1485     nsresult GetFileSizeOfLink(PRInt64 *aFileSizeOfLink);
1486     nsresult GetTarget(nsAString *aTarget);
1487     nsresult GetNativeTarget(nsACString *aNativeTarget);
1488     nsresult GetPath(nsAString *aPath);
1489     nsresult GetNativePath(nsACString *aNativePath);
1490     nsresult Exists(PRBool *_retval);
1491     nsresult IsWritable(PRBool *_retval);
1492     nsresult IsReadable(PRBool *_retval);
1493     nsresult IsExecutable(PRBool *_retval);
1494     nsresult IsHidden(PRBool *_retval);
1495     nsresult IsDirectory(PRBool *_retval);
1496     nsresult IsFile(PRBool *_retval);
1497     nsresult IsSymlink(PRBool *_retval);
1498     nsresult IsSpecial(PRBool *_retval);
1499     nsresult CreateUnique(PRUint32 type, PRUint32 permission);
1500     nsresult Clone(nsIFile **_retval);
1501     nsresult Equals(nsIFile *inFile, PRBool *_retval);
1502     nsresult Contains(nsIFile *inFile, PRBool recir, PRBool *_retval);
1503     nsresult GetParent(nsIFile **aParent);
1504     nsresult GetDirectoryEntries(nsISimpleEnumerator **aDirectoryEntries);
1505 }
1506
1507 [
1508     object,
1509     uuid(15fd6940-8ea7-11d3-93ad-00104ba0fd40)
1510     /* FROZEN */
1511 ]
1512 interface nsIProtocolHandler : nsISupports
1513 {
1514     nsresult GetScheme(nsACString *aScheme);
1515     nsresult GetDefaultPort(PRInt32 *aDefaultPort);
1516     nsresult GetProtocolFlags(PRUint32 *aProtocolFlags);
1517     nsresult NewURI(const nsACString *aSpec, const char *aOriginCharset,
1518                     nsIURI *aBaseURI, nsIURI **_retval);
1519     nsresult NewChannel(nsIURI *aURI, nsIChannel **_retval);
1520     nsresult AllowPort(PRInt32 port, const char *scheme, PRBool *_retval);
1521 }
1522
1523 [
1524     object,
1525     uuid(0e61f3b2-34d7-4c79-bfdc-4860bc7341b7)
1526     /* NOT_FROZEN */
1527 ]
1528 interface nsIExternalProtocolHandler : nsIProtocolHandler
1529 {
1530     nsresult ExternalAppExistsForScheme(const nsACString *scheme, PRBool *_retval);
1531 }
1532
1533 [
1534     object,
1535     uuid(bddeda3f-9020-4d12-8c70-984ee9f7935e)
1536     /* FROZEN */
1537 ]
1538 interface nsIIOService : nsISupports
1539 {
1540     nsresult GetProtocolHandler(const char *aScheme, nsIProtocolHandler **_retval);
1541     nsresult GetProtocolFlags(const char *aScheme, PRUint32 *_retval);
1542     nsresult NewURI(const nsACString *aSpec, const char *aOriginCharset, nsIURI *aBaseURI,
1543                     nsIURI **_retval);
1544     nsresult NewFileURI(nsIFile *aFile, nsIURI **_retval);
1545     nsresult NewChannelFromURI(nsIURI *aURI, nsIChannel **_retval);
1546     nsresult NewChannel(const nsACString *aSpec, const char *aOriginCharset, nsIURI *aBaseURI,
1547                         nsIChannel **_retval);
1548     nsresult GetOffline(PRBool *aOffline);
1549     nsresult SetOffline(PRBool aOffline);
1550     nsresult AllowPort(PRInt32 aPort, const char *aScheme, PRBool *_retval);
1551     nsresult ExtractScheme(const nsACString *urlString, nsACString * _retval);
1552 }
1553
1554 [
1555     object,
1556     uuid(9c5d3c58-1dd1-11b2-a1c9-f3699284657a)
1557     /* FROZEN */
1558 ]
1559 interface nsIWebBrowserFocus : nsISupports
1560 {
1561     nsresult Activate();
1562     nsresult Deactivate();
1563     nsresult SetFocusAtFirstElement();
1564     nsresult SetFocusAtLastElement();
1565     nsresult GetFocusedWindow(nsIDOMWindow **aFocusedWindow);
1566     nsresult SetFocusedWindow(nsIDOMWindow *aFocusedWindow);
1567     nsresult GetFocusedElement(nsIDOMElement **aFocusedElement);
1568     nsresult SetFocusedElement(nsIDOMElement *aFocusedElement);
1569 }
1570
1571 [
1572     object,
1573     uuid(ba434c60-9d52-11d3-afb0-00a024ffc08c)
1574     /* FROZEN */
1575 ]
1576 interface nsIWebBrowserChrome : nsISupports
1577 {
1578     nsresult SetStatus(PRUint32 statusType, const PRUnichar *status);
1579     nsresult GetWebBrowser(nsIWebBrowser **aWebBrowser);
1580     nsresult SetWebBrowser(nsIWebBrowser *aWebBrowser);
1581     nsresult GetChromeFlags(PRUint32 *aChromeFlags);
1582     nsresult SetChromeFlags(PRUint32 aChromeFlags);
1583     nsresult DestroyBrowserWindow();
1584     nsresult SizeBrowserTo(PRInt32 aCX, PRInt32 aCY);
1585     nsresult ShowAsModal();
1586     nsresult IsWindowModal(PRBool *_retval);
1587     nsresult ExitModalEventLoop(nsresult aStatus);
1588 }
1589
1590 [
1591     object,
1592     uuid(df31c120-ded6-11d1-bd85-00805f8ae3f4)
1593     /* FROZEN */
1594 ]
1595 interface nsIDOMEventListener : nsISupports
1596 {
1597     nsresult HandleEvent(nsIDOMEvent *event);
1598 }
1599
1600 [
1601     object,
1602     uuid(1c773b30-d1cf-11d2-bd95-00805f8ae3f4)
1603     /* FROZEN */
1604 ]
1605 interface nsIDOMEventTarget : nsISupports
1606 {
1607     nsresult AddEventListener(const nsAString *type, nsIDOMEventListener *listener, PRBool useCapture);
1608     nsresult RemoveEventListener(const nsAString *type, nsIDOMEventListener *listener, PRBool useCapture);
1609     nsresult DispatchEvent(nsIDOMEvent *evt, PRBool *_retval);
1610 }
1611
1612 [
1613     object,
1614     uuid(a66b7b80-ff46-bd97-0080-5f8ae38add32)
1615     /* FROZEN */
1616 ]
1617 interface nsIDOMEvent : nsISupports
1618 {
1619     nsresult GetType(nsAString *aType);
1620     nsresult GetTarget(nsIDOMEventTarget **aTarget);
1621     nsresult GetCurrentTarget(nsIDOMEventTarget **aCurrentTarget);
1622     nsresult GetEventPhase(PRUint16 *aEventPhase);
1623     nsresult GetBubbles(PRBool *aBubbles);
1624     nsresult GetCancelable(PRBool *aCancelable);
1625     nsresult GetTimeStamp(DOMTimeStamp *aTimeStamp);
1626     nsresult StopPropagation();
1627     nsresult PreventDefault();
1628     nsresult InitEvent(const nsAString *eventTypeArg, PRBool canBubbleArg, PRBool cancelableArg);
1629 }
1630
1631 cpp_quote("#define CONTEXT_NONE              0x00");
1632 cpp_quote("#define CONTEXT_LINK              0x01");
1633 cpp_quote("#define CONTEXT_IMAGE             0x02");
1634 cpp_quote("#define CONTEXT_DOCUMENT          0x04");
1635 cpp_quote("#define CONTEXT_TEXT              0x08");
1636 cpp_quote("#define CONTEXT_INPUT             0x10");
1637 cpp_quote("#define CONTEXT_BACKGROUND_IMAGE  0x20");
1638
1639 [
1640     object,
1641     uuid(3478b6b0-3875-11d4-94ef-0020183bf181)
1642     /* FROZEN */
1643 ]
1644 interface nsIContextMenuListener : nsISupports
1645 {
1646     nsresult OnShowContextMenu(PRUint32 aContextFlags, nsIDOMEvent *aEvent, nsIDOMNode *aNode);
1647 }
1648
1649 [
1650     object,
1651     uuid(a6cf90c3-15b3-11d2-932e-00805f8add32)
1652     /* FROZEN */
1653 ]
1654 interface nsIDOMUIEvent : nsIDOMEvent
1655 {
1656     nsresult GetView(nsIDOMAbstractView **aView);
1657     nsresult GetDetail(PRInt32 *aDetail);
1658     nsresult InitUIEvent(const nsAString *typeArg, PRBool canBubbleArg, PRBool cancelableArg,
1659             nsIDOMAbstractView *viewArg, PRInt32 detailArg);
1660 }
1661
1662 [
1663     object,
1664     uuid(ff751edc-8b02-aae7-0010-8301838a3123)
1665     /* FROZEN */
1666 ]
1667 interface nsIDOMMouseEvent : nsIDOMUIEvent
1668 {
1669     nsresult GetScreenX(PRInt32 *aScreenX);
1670     nsresult GetScreenY(PRInt32 *aScreenY);
1671     nsresult GetClientX(PRInt32 *aClientX);
1672     nsresult GetClientY(PRInt32 *aClientY);
1673     nsresult GetCtrlKey(PRBool *aCtrlKey);
1674     nsresult GetShiftKey(PRBool *aShiftKey);
1675     nsresult GetAltKey(PRBool *aAltKey);
1676     nsresult GetMetaKey(PRBool *aMetaKey);
1677     nsresult GetButton(PRUint16 *aButton);
1678     nsresult GetRelatedTarget(nsIDOMEventTarget * *aRelatedTarget);
1679     nsresult InitMouseEvent(const nsAString *typeArg, PRBool canBubbleArg, PRBool cancelableArg,
1680             nsIDOMAbstractView *viewArg, PRInt32 detailArg, PRInt32 screenXArg, PRInt32 screenYArg,
1681             PRInt32 clientXArg, PRInt32 clientYArg, PRBool ctrlKeyArg, PRBool altKeyArg,
1682             PRBool shiftKeyArg, PRBool metaKeyArg, PRUint16 buttonArg,
1683             nsIDOMEventTarget *relatedTargetArg);
1684 }
1685
1686 [
1687     object,
1688     uuid(028e0e6e-8b01-11d3-aae7-0010838a3123)
1689     /* NOT_FROZEN */
1690 ]
1691 interface nsIDOMKeyEvent : nsIDOMUIEvent
1692 {
1693     nsresult GetCharCode(PRUint32 *aCharCode);
1694     nsresult GetKeyCode(PRUint32 *aKeyCode);
1695     nsresult GetAltKey(PRBool *aAltKey);
1696     nsresult GetCtrlKey(PRBool *aCtrlKey);
1697     nsresult GetShiftKey(PRBool *aShiftKey);
1698     nsresult GetMetaKey(PRBool *aMetaKey);
1699     nsresult InitKeyEvent(const nsAString *typeArg, PRBool canBubbleArg,
1700             PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRBool ctrlKeyArg,
1701             PRBool altKeyArg, PRBool shiftKeyArg, PRBool metaKeyArg, PRUint32 keyCodeArg,
1702             PRUint32 charCodeArg);
1703 }
1704
1705 [
1706      object,
1707      uuid(3e5432cd-9568-4bd1-8cbe-d50aba110743)
1708      /* FROZEN */
1709 ]
1710 interface nsIEmbeddingSiteWindow : nsISupports
1711 {
1712     nsresult SetDimensions(PRUint32 flags, PRInt32 x, PRInt32 y, PRInt32 cx, PRInt32 cy);
1713     nsresult GetDimensions(PRUint32 flags, PRInt32 *x, PRInt32 *y, PRInt32 *cx, PRInt32 *cy);
1714     nsresult SetFocus();
1715     nsresult GetVisibility(PRBool *aVisibility);
1716     nsresult SetVisibility(PRBool aVisibility);
1717     nsresult GetTitle(PRUnichar **aTitle);
1718     nsresult SetTitle(const PRUnichar *aTitle);
1719     nsresult GetSiteWindow(void **aSiteWindow);
1720 }
1721
1722 [
1723      object,
1724      uuid(2417cbfe-65ad-48a6-b4b6-eb84db174392)
1725      /* FROZEN */
1726 ]
1727 interface nsIComponentRegistrar : nsISupports
1728 {
1729     nsresult AutoRegister(nsIFile *aSpec);
1730     nsresult AutoUnregister(nsIFile *aSpec);
1731     nsresult RegisterFactory(const nsCID *aClass, const char *aClassName,
1732             const char *aContractID, nsIFactory *aFactory);
1733     nsresult UnregisterFactory(const nsCID *aClass, nsIFactory *aFactory);
1734     nsresult RegisterFactoryLocation(const nsCID *aClass, const char *aClassName,
1735             const char *aContractID, nsIFile *aFile, const char *aLoaderStr,
1736             const char *aType);
1737     nsresult UnregisterFactoryLocation(const nsCID *aClass, nsIFile *aFile);
1738     nsresult IsCIDRegistered(const nsCID *aClass, PRBool *_retval);
1739     nsresult IsContractIDRegistered(const char *aContractID, PRBool *_retval);
1740     nsresult EnumerateCIDs(nsISimpleEnumerator **_retval);
1741     nsresult EnumerateContractIDs(nsISimpleEnumerator **_retval);
1742     nsresult CIDToContractID(const nsCID *aClass, char **_retval);
1743     nsresult ContractIDToCID(const char *aContractID, nsCID **_retval);
1744 }
1745
1746 [
1747     object,
1748     uuid(1630c61a-325e-49ca-8759-a31b16c47aa5)
1749     /* FROZEN */
1750 ]
1751 interface nsIPromptService : nsISupports
1752 {
1753     nsresult Alert(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1754             const PRUnichar *aText);
1755     nsresult AlertCheck(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1756             const PRUnichar *aText, const PRUnichar *aCheckMsg, PRBool *aCheckState);
1757     nsresult Confirm(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1758             const PRUnichar *aText, PRBool *_retval);
1759     nsresult ConfirmCheck(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1760             const PRUnichar *aText, const PRUnichar *aCheckMsg, PRBool *aCheckState,
1761             PRBool *_retval);
1762     nsresult ConfirmEx(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1763             const PRUnichar *aText, PRUint32 aButtonFlags, const PRUnichar *aButton0Title,
1764             const PRUnichar *aButton1Title, const PRUnichar *aButton2Title,
1765             const PRUnichar *aCheckMsg, PRBool *aCheckState, PRInt32 *_retval);
1766     nsresult Prompt(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1767             const PRUnichar *aText, PRUnichar **aValue, const PRUnichar *aCheckMsg,
1768             PRBool *aCheckState, PRBool *_retval);
1769     nsresult PromptUsernameAndPassword(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1770             const PRUnichar *aText, PRUnichar **aUsername, PRUnichar **aPassword,
1771             const PRUnichar *aCheckMsg, PRBool *aCheckState, PRBool *_retval);
1772     nsresult PromptPassword(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1773             const PRUnichar *aText, PRUnichar **aPassword, const PRUnichar *aCheckMsg,
1774             PRBool *aCheckState, PRBool *_retval);
1775     nsresult Select(nsIDOMWindow *aParent, const PRUnichar *aDialogTitle,
1776             const PRUnichar *aText, PRUint32 aCount, const PRUnichar **aSelectList,
1777             PRInt32 *aOutSelection, PRBool *_retval);
1778 }
1779
1780 [
1781     object,
1782     uuid(b128a1e6-44f3-4331-8fbe-5af360ff21ee)
1783     /* FROZEN */
1784 ]
1785 interface nsITooltipTextProvider : nsISupports
1786 {
1787     nsresult GetNodeText(nsIDOMNode *aNode, PRUnichar **aText, PRBool *_retval);
1788 }
1789
1790 [
1791     object,
1792     uuid(02b0625a-e7f3-11d2-9f5a-006008a6efe9)
1793     /* FROZEN */
1794 ]
1795 interface nsIProfile : nsISupports
1796 {
1797     nsresult GetProfileCount(PRInt32 *aProfileCount);
1798     nsresult GetProfileList(PRUint32 *length, PRUnichar ***profileNames);
1799     nsresult ProfileExists(const PRUnichar *profileName, PRBool *_retval);
1800     nsresult GetCurrentProfile(PRUnichar * *aCurrentProfile);
1801     nsresult SetCurrentProfile(const PRUnichar * aCurrentProfile);
1802     nsresult ShutDownCurrentProfile(PRUint32 shutDownType);
1803     nsresult CreateNewProfile(const PRUnichar *profileName,
1804             const PRUnichar *nativeProfileDir, const PRUnichar *langcode,
1805             PRBool useExistingDir);
1806     nsresult RenameProfile(const PRUnichar *oldName, const PRUnichar *newName);
1807     nsresult DeleteProfile(const PRUnichar *name, PRBool canDeleteFiles);
1808     nsresult CloneProfile(const PRUnichar *profileName);
1809 }
1810
1811 [
1812     object,
1813     uuid(30465632-a777-44cc-90f9-8145475ef999)
1814     /* FROZEN */
1815 ]
1816 interface nsIWindowCreator : nsISupports
1817 {
1818     nsresult CreateChromeWindow(nsIWebBrowserChrome *parent, PRUint32 chromeFlags,
1819                                    nsIWebBrowserChrome **_retval);
1820 }
1821
1822 [
1823     object,
1824     uuid(f673ec81-a4b0-11d6-964b-eb5a2bf216fc)
1825     /* NOT_FROZEN */
1826 ]
1827 interface nsIWindowCreator2 : nsIWindowCreator
1828 {
1829     nsresult CreateChromeWindow2(nsIWebBrowserChrome *parent, PRUint32 chromeFlags,
1830                                  PRUint32 contextFlags, nsIURI *uri, PRBool *cancel,
1831                                  nsIWebBrowserChrome **_retval);
1832 }
1833
1834 [
1835     object,
1836     uuid(002286a8-494b-43b3-8ddd-49e3fc50622b)
1837     /* FROZEN */
1838 ]
1839 interface nsIWindowWatcher : nsISupports
1840 {
1841     nsresult OpenWindow(nsIDOMWindow *aParent, const char *aUrl, const char *aName,
1842                         const char *aFeatures, nsISupports *aArguments, nsIDOMWindow **_retval);
1843     nsresult RegisterNotification(nsIObserver *aObserver);
1844     nsresult UnregisterNotification(nsIObserver *aObserver);
1845     nsresult GetWindowEnumerator(nsISimpleEnumerator **_retval);
1846     nsresult GetNewPrompter(nsIDOMWindow *aParent, nsIPrompt **_retval);
1847     nsresult GetNewAuthPrompter(nsIDOMWindow *aParent, nsIAuthPrompt **_retval);
1848     nsresult SetWindowCreator(nsIWindowCreator *creator);
1849     nsresult GetChromeForWindow(nsIDOMWindow *aWindow, nsIWebBrowserChrome **_retval);
1850     nsresult GetWindowByName(const PRUnichar *aTargetName, nsIDOMWindow *aCurrentWindow,
1851                              nsIDOMWindow **_retval);
1852     nsresult GetActiveWindow(nsIDOMWindow **aActiveWindow);
1853     nsresult SetActiveWindow(nsIDOMWindow *aActiveWindow);
1854 }
1855
1856 [
1857     object,
1858     uuid(d39fd2b4-3978-45d2-a4be-ba448171b61b)
1859     /* NOT_FROZEN */
1860 ]
1861 interface nsIEditingSession : nsISupports
1862 {
1863     nsresult GetEditorStatus(PRUint32 *aEditorStatus);
1864     nsresult MakeWindowEditable(nsIDOMWindow *window, const char *aEditorType,
1865                                 PRBool doAfterUriLoad);
1866     nsresult WindowIsEditable(nsIDOMWindow *window, PRBool *_retval);
1867     nsresult GetEditorForWindow(nsIDOMWindow *window, nsIEditor **_retval);
1868     nsresult SetupEditorOnWindow(nsIDOMWindow *window);
1869     nsresult TearDownEditorOnWindow(nsIDOMWindow *window);
1870     nsresult SetEditorOnControllers(nsIDOMWindow *aWindow, nsIEditor *aEditor);
1871 }
1872
1873 [
1874     object,
1875     uuid(83f892cf-7ed3-490e-967a-62640f3158e1)
1876     /* NOT_FROZEN */
1877 ]
1878 interface nsICommandParams : nsISupports
1879 {
1880     nsresult GetValueType(const char *name, PRInt16 *_retval);
1881     nsresult GetBooleanValue(const char *name, PRBool *_retval);
1882     nsresult GetLongValue(const char *name, PRInt32 *_retval);
1883     nsresult GetDoubleValue(const char *name, double *_retval);
1884     nsresult GetStringValue(const char *name, nsAString *_retval);
1885     nsresult GetCStringValue(const char *name, char **_retval);
1886     nsresult GetISupportsValue(const char *name, nsISupports **_retval);
1887     nsresult SetBooleanValue(const char *name, PRBool value);
1888     nsresult SetLongValue(const char *name, PRInt32 value);
1889     nsresult SetDoubleValue(const char *name, double value);
1890     nsresult SetStringValue(const char *name, const nsAString *value);
1891     nsresult SetCStringValue(const char *name, const char *value);
1892     nsresult SetISupportsValue(const char *name, nsISupports *value);
1893     nsresult RemoveValue(const char *name);
1894     nsresult HasMoreElements(PRBool *_retval);
1895     nsresult First();
1896     nsresult GetNext(char **_retval);
1897 }
1898
1899 [
1900     object,
1901     uuid(080d2001-f91e-11d4-a73c-f9242928207c)
1902     /* NOT_FROZEN */
1903 ]
1904 interface nsICommandManager : nsISupports
1905 {
1906     nsresult AddCommandObserver(nsIObserver *aCommandObserver, const char *aCommandToObserve);
1907     nsresult RemoveCommandObserver(nsIObserver *aCommandObserver, const char *aCommandObserved);
1908     nsresult IsCommandSupported(const char *aCommandName, nsIDOMWindow *aTargetWindow, PRBool *_retval);
1909     nsresult IsCommandEnabled(const char *aCommandName, nsIDOMWindow *aTargetWindow, PRBool *_retval);
1910     nsresult GetCommandState(const char *aCommandName, nsIDOMWindow *aTargetWindow,
1911             nsICommandParams *aCommandParams);
1912     nsresult DoCommand(const char *aCommandName, nsICommandParams *aCommandParams,
1913             nsIDOMWindow *aTargetWindow);
1914 }
1915
1916 [
1917     object,
1918     uuid(47b82b60-a36f-4167-8072-6f421151ed50)
1919     /* NOT_FROZEN */
1920 ]
1921 interface nsIControllerContext : nsISupports
1922 {
1923     nsresult Init(nsIControllerCommandTable *aCommandTable);
1924     nsresult SetCommandContext(nsISupports *aCommandContext);
1925 }
1926
1927 [
1928     object,
1929     uuid(d5b61b82-1da4-11d3-bf87-00105a1b0627)
1930     /* NOT_FROZEN */
1931 ]
1932 interface nsIController : nsISupports
1933 {
1934     nsresult IsCommandEnabled(const char *command, PRBool *_retval);
1935     nsresult SupportsCommand(const char *command, PRBool *_retval);
1936     nsresult DoCommand(const char *command);
1937     nsresult OnEvent(const char *eventName);
1938 }
1939
1940 [
1941     object,
1942     uuid(d650439a-ca29-410d-a906-b0557fb62fcd)
1943     /* NOT_FROZEN */
1944 ]
1945 interface nsIContentSerializer : nsISupports
1946 {
1947     nsresult Init(PRUint32 flags, PRUint32 aWrapColumn, const char* aCharSet, PRBool aIsCopying);
1948     nsresult AppendText(nsIDOMText *aText, PRInt32 aStartOffset, PRInt32 aEndOffset, nsAString *aStr);
1949     nsresult AppendCDATASection(nsIDOMCDATASection *aCDATASection, PRInt32 aStartOffset,
1950             PRInt32 aEndOffset, nsAString *aStr);
1951     nsresult AppendProcessingInstruction(nsIDOMProcessingInstruction* aPI, PRInt32 aStartOffset,
1952             PRInt32 aEndOffset, nsAString *aStr);
1953     nsresult AppendComment(nsIDOMComment *aComment, PRInt32 aStartOffset, PRInt32 aEndOffset,
1954             nsAString *aStr);
1955     nsresult AppendDoctype(nsIDOMDocumentType *aDoctype, nsAString *aStr);
1956     nsresult AppendElementStart(nsIDOMElement *aElement, PRBool aHasChildren, nsAString *aStr);
1957     nsresult AppendElementEnd(nsIDOMElement *aElement, nsAString *aStr);
1958     nsresult Flush(nsAString *aStr);
1959     nsresult AppendDocumentStart(nsIDOMDocument *aDocument, nsAString *aStr);
1960 }
1961
1962 [
1963     object,
1964     uuid(68b97c56-2289-48ac-a9e1-72c30fd3dba2)
1965 ]
1966 interface nsIScriptContainer : nsISupports
1967 {
1968     typedef void *JSObject;
1969
1970     nsresult GetContext(void **aContext);
1971     nsresult GetGlobalObject(void **aGlobalObject);
1972     nsresult CompileScript(const PRUnichar *aText, PRInt32 aTextLength, void *aScopeObject,
1973             nsIPrincipal *aPrincipal, const char *aURL, PRUint32 aLineNo, PRUint32 aVersion, void **_retval);
1974     nsresult ExecuteScript(void *aScriptObject, void *aScopeObject, nsAString *aRetVal, PRBool *aIsUndefined);
1975     nsresult CompileFunction(void *aTarget, const nsACString *aName, PRUint32 aArgCount,
1976             const char **aArgArray, const nsAString *aBody, const char *aURL, PRInt32 aLineNo,
1977             PRBool aShared, void* *_retval);
1978     nsresult CallFunction(nsISupports *aTarget, void *aScope, void *aHandler, nsIArray *argv,
1979             nsIVariant **_retval);
1980     nsresult BindEventHandler(nsISupports *aTarget, void *aScope, nsIAtom *aName, void *aHandler);
1981     nsresult HoldScriptObject(void *aObject);
1982     nsresult DropScriptObject(void *aObject);
1983 }
1984
1985 [
1986     object,
1987     uuid(D4882FFB-E927-408b-96BE-D4391B456FA9)
1988 ]
1989 interface nsIEditor  : nsISupports
1990 {
1991     typedef void *nsIPresShellPtr;
1992     typedef void *nsIContentPtr;
1993
1994     nsresult GetSelection([out] nsISelection *_retval);
1995     nsresult Init([in] nsIDOMDocument *doc, [in] nsIPresShellPtr shell, [in] nsIContentPtr aRoot, [in] nsISelectionController *aSelCon, [in] PRUint32 aFlags);
1996     nsresult SetAttributeOrEquivalent([in] nsIDOMElement *element, [in] const nsAString *sourceAttrName, [in] const nsAString *sourceAttrValue, [in] PRBool aSuppressTransaction);
1997     nsresult RemoveAttributeOrEquivalent([in] nsIDOMElement *element, [in] const nsAString *sourceAttrName, [in] PRBool aSuppressTransaction);
1998     nsresult PostCreate();
1999     nsresult PreDestroy();
2000     nsresult GetFlags([out] PRUint32 *_retval);
2001     nsresult SetFlags([in] PRUint32 val);
2002     nsresult GetContentsMIMEType([out] char **_retval);
2003     nsresult SetContentsMIMEType([in] const char *val);
2004     nsresult GetIsDocumentEditable([out] PRBool *_retval);
2005     nsresult GetDocument([out] nsIDOMDocument **_retval);
2006     nsresult GetRootElement([out] nsIDOMElement **_retval);
2007     nsresult GetSelectionController([out] nsISelectionController **_retval);
2008     nsresult DeleteSelection([in] PRInt16 action);
2009     nsresult GetDocumentIsEmpty([out] PRBool *_retval);
2010     nsresult GetDocumentModified([out] PRBool *_retval);
2011     nsresult GetDocumentCharacterSet([out] nsACString *_retval);
2012     nsresult SetDocumentCharacterSet([in] const nsACString *val);
2013     nsresult ResetModificationCount();
2014     nsresult GetModificationCount([out] PRInt32 *_retval);
2015     nsresult IncrementModificationCount([in] long aModCount);
2016     nsresult GetTransactionManager([out] nsITransactionManager **_retval);
2017     nsresult DoTransaction([in] nsITransaction *txn);
2018     nsresult EnableUndo([in] PRBool enable);
2019     nsresult Undo([in] PRUint32 count);
2020     nsresult CanUndo([out] PRBool *isEnabled, [out] PRBool *canUndo);
2021     nsresult Redo([in] PRUint32 count);
2022     nsresult CanRedo([out] PRBool *isEnabled, [out] PRBool *canRedo);
2023     nsresult BeginTransaction();
2024     nsresult EndTransaction();
2025     nsresult BeginPlaceHolderTransaction([in] nsIAtom *name);
2026     nsresult EndPlaceHolderTransaction();
2027     nsresult ShouldTxnSetSelection([out] PRBool *_retval);
2028     nsresult SetShouldTxnSetSelection([in] PRBool should);
2029     nsresult GetInlineSpellChecker([out] nsIInlineSpellChecker **_retval);
2030     nsresult Cut();
2031     nsresult CanCut([out] PRBool *_retval);
2032     nsresult Copy();
2033     nsresult CanCopy([out] PRBool *_retval);
2034     nsresult Paste([in] PRInt32 aSelectionType);
2035     nsresult CanPaste([in] PRInt32 aSelectionType, [out] PRBool *_retval);
2036     nsresult SelectAll();
2037     nsresult BeginningOfDocument();
2038     nsresult EndOfDocument();
2039     nsresult CanDrag([in] nsIDOMEvent *aEvent, [out] PRBool *_retval);
2040     nsresult DoDrag([in] nsIDOMEvent *aEvent);
2041     nsresult InsertFromDrop([in] nsIDOMEvent *aEvent);
2042     nsresult SetAttribute([in] nsIDOMElement *aElement, [in] const nsAString *attributestr, [in] const nsAString *attvalue);
2043     nsresult GetAttributeValue([in] nsIDOMElement *aElement, [in] const nsAString *attributestr, [out] nsAString *resultValue, PRBool *_retval);
2044     nsresult RemoveAttribute([in] nsIDOMElement *aElement, [in] const nsAString *aAttribute);
2045     nsresult CloneAttribute([in] const nsAString *aAttribute, [in] nsIDOMNode *aDestNode, [in] nsIDOMNode *aSourceNode);
2046     nsresult CloneAttributes([in] nsIDOMNode *destNode, [in] nsIDOMNode *sourceNode);
2047     nsresult CreateNode([in] const nsAString *tag, [in] nsIDOMNode parent, [in] PRInt32 position, [out] nsIDOMNode **_retval);
2048     nsresult InsertNode([in] nsIDOMNode *node, [in] nsIDOMNode *parent, [in] PRInt32 aPosition);
2049     nsresult SplitNode([in] nsIDOMNode *existingRightNode, [in] PRInt32 offset, [out] nsIDOMNode **newLeftNode);
2050     nsresult JoinNodes([in] nsIDOMNode *leftNode, [in] nsIDOMNode *rightNode, [in] nsIDOMNode *parent);
2051     nsresult DeleteNode([in] nsIDOMNode *child);
2052     nsresult MarkNodeDirty([in] nsIDOMNode *node);
2053     nsresult SwitchTextDirection();
2054     nsresult OutputToString([in] nsAString formatType, [in] PRUint32 flags, [out] nsAString *_retval);
2055     nsresult OutputToStream([in] nsIOutputStream *aStream, [in] nsAString *formatType, [in] nsACString *charsetOverride, [in] PRUint32 flags);
2056     nsresult AddEditorObserver([in] nsIEditorObserver *observer);
2057     nsresult RemoveEditorObserver([in] nsIEditorObserver *observer);
2058     nsresult AddEditActionListener([in] nsIEditActionListener *listener);
2059     nsresult RemoveEditActionListener([in] nsIEditActionListener *listener);
2060     nsresult AddDocumentStateListener([in] nsIDocumentStateListener *listener);
2061     nsresult RemoveDocumentStateListener([in] nsIDocumentStateListener *listener);
2062     nsresult DumpContentTree();
2063     nsresult DebugDumpContent();
2064     nsresult DebugUnitTests([out] PRInt32 *outNumTests, [out] PRInt32 *outNumTestsFailed);
2065 }
2066
2067 [
2068     object,
2069     uuid(afc36593-5787-4420-93d9-b2c0ccbf0cad)
2070 ]
2071 interface nsIHTMLEditor : nsISupports
2072 {
2073     nsresult AddDefaultProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2074     nsresult RemoveDefaultProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2075     nsresult RemoveAllDefaultProperties();
2076     nsresult SetCSSInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2077     nsresult SetInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue);
2078     nsresult GetInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue, [out] PRBool *aFirst, [out] PRBool *aAny, [out] PRBool *aAll);
2079     nsresult GetInlinePropertyWithAttrValue([in] nsIAtom *aProperty, [in] nsAString *aAttribute, [in] nsAString *aValue, [out] PRBool *aFirst, [out] PRBool *aAny, [out] PRBool *aAll, [out] nsAString *_retval);
2080     nsresult RemoveAllInlineProperties();
2081     nsresult RemoveInlineProperty([in] nsIAtom *aProperty, [in] nsAString *aAttribute);
2082     nsresult IncreaseFontSize();
2083     nsresult DecreaseFontSize();
2084     nsresult CanDrag([in] nsIDOMEvent *aEvent, [out] PRBool *_retval);
2085     nsresult DoDrag([in] nsIDOMEvent *aEvent);
2086     nsresult InsertFromDrop([in] nsIDOMEvent *aEvent);
2087     nsresult NodeIsBlock([in] nsIDOMNode *node, PRBool *_retval);
2088     nsresult InsertHTML([in] nsAString *aInputString);
2089     nsresult PasteNoFormatting([in] PRInt32 aSelectionType);
2090     nsresult RebuildDocumentFromSource([in] nsAString *aSourceString);
2091     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);
2092     nsresult InsertElementAtSelection([in] nsIDOMElement *aElement, [in] PRBool aDeleteSelection);
2093     nsresult SetDocumentTitle([in] nsAString *aTitle);
2094     nsresult UpdateBaseURL();
2095     nsresult SelectElement([in] nsIDOMElement *aElement);
2096     nsresult SetCaretAfterElement([in] nsIDOMElement *aElement);
2097     nsresult SetParagraphFormat([in] nsAString *aParagraphFormat);
2098     nsresult GetParagraphState([out] PRBool *aMixed, [out] nsAString *_retval);
2099     nsresult GetFontFaceState([out] PRBool *aMixed, [out] nsAString *_retval);
2100     nsresult GetFontColorState([out] PRBool *aMixed, [out] nsAString *_retval);
2101     nsresult GetBackgroundColorState([out] PRBool *aMixed, [out] nsAString *_retval);
2102     nsresult GetHighlightColorState([out] PRBool *aMixed, [out] nsAString *_retval);
2103     nsresult GetListState([out] PRBool *aMixed, [out] PRBool *aOL, [out] PRBool *aUL, [out] PRBool *aDL);
2104     nsresult GetListItemState([out] PRBool *aMixed, [out] PRBool *aLI, [out] PRBool *aDT, [out] PRBool *aDD);
2105     nsresult GetAlignment([out] PRBool *aMixed, [out] PRInt16 *aAlign);
2106     nsresult GetIndentState([out] PRBool *aCanIndent, [out] PRBool *aCanOutdent);
2107     nsresult MakeOrChangeList([in] nsAString *aListType, [in] PRBool entireList, [in] nsAString *aBulletType);
2108     nsresult RemoveList([in] nsAString *aListType);
2109     nsresult Indent([in] nsAString *aIndent);
2110     nsresult Align([in] nsAString *aAlign);
2111     nsresult GetElementOrParentByTagName([in] nsAString *aTagName, [in] nsIDOMNode *aNode, [out] nsIDOMElement **_retval);
2112     nsresult GetSelectedElement([in] nsAString *aTagName, [out] nsIDOMElement **_retval);
2113     nsresult GetHeadContentsAsHTML([out] nsAString *_retval);
2114     nsresult ReplaceHeadContentsWithHTML([in] nsAString *aSourceToInsert);
2115     nsresult CreateElementWithDefaults([in] nsAString *aTagName, [out] nsIDOMElement **_retval);
2116     nsresult InsertLinkAroundSelection([in] nsIDOMElement *aAnchorElement);
2117     nsresult SetBackgroundColor([in] nsAString *aColor);
2118     nsresult SetBodyAttribute([in] nsAString *aAttr, [in] nsAString *aValue);
2119     nsresult IgnoreSpuriousDragEvent([in] PRBool aIgnoreSpuriousDragEvent);
2120     nsresult GetLinkedObjects([out] nsISupportsArray **_retval);
2121     nsresult GetIsCSSEnabled([out] PRBool *_retval);
2122     nsresult SetIsCSSEnabled([in] PRBool prb);
2123     nsresult AddInsertionListener([in] nsIContentFilter *inFilter);
2124     nsresult RemoveInsertionListener([in] nsIContentFilter *inFilter);
2125     nsresult CreateAnonymousElement([in] nsAString *aTag, [in] nsIDOMNode *aParentNode, [in] nsAString *aAnonClass, [in] PRBool aIsCreatedHidden, [out] nsIDOMElement **_retval);
2126     nsresult GetSelectionContainer([out] nsIDOMElement **_retval);
2127     nsresult CheckSelectionStateForAnonymousButtons([in] nsISelection *aSelection);
2128     nsresult IsAnonymousElement([in] nsIDOMElement *aElement, [out] PRBool *_retval);
2129     nsresult GetReturnInParagraphCreatesNewParagraph([out] PRBool *_retval);
2130     nsresult SetReturnInParagraphCreatesNewParagraph([in] PRBool prb);
2131 }
2132
2133 /*
2134  * NOTE:
2135  * This is a private Wine interface that is implemented by our implementation
2136  * of nsIURI to store its owner.
2137  */
2138 [
2139     object,
2140     uuid(5088272e-900b-11da-c687-000fea57f21a)
2141     /* INTERNAL */
2142 ]
2143 interface nsIWineURI : nsIURI
2144 {
2145     typedef struct NSContainer NSContainer;
2146
2147     nsresult GetNSContainer(NSContainer **aNSContainer);
2148     nsresult SetNSContainer(NSContainer *aNSContainer);
2149     nsresult GetIsDocumentURI(PRBool *aIsDocumentURI);
2150     nsresult SetIsDocumentURI(PRBool aIsDocumentURI);
2151     nsresult GetWineURL(LPCWSTR *aURL);
2152     nsresult SetWineURL(LPCWSTR aURL);
2153 }