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