exdisp.idl: Added missing DWebBrowserEvents2 methods.
[wine] / include / exdisp.idl
1 /*
2  * Defines the COM interfaces and APIs related to the IE Web browser
3  *
4  * Copyright (C) 2001 John R. Sheets (for CodeWeavers)
5  * Copyright (C) 2003 Alexandre Julliard
6  * Copyright (C) 2004 Jacek Caban
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 import "ocidl.idl";
24 import "docobj.idl";
25
26 #include <olectl.h>
27 #include <exdispid.h>
28
29 cpp_quote("#ifdef WINE_NO_UNICODE_MACROS")
30 cpp_quote("#undef FindText")
31 cpp_quote("#endif")
32
33 /*****************************************************************************
34  * SHDocVw library
35  */
36 [
37     uuid(EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B),
38     version(1.1),
39     helpstring("Microsoft Internet Controls")
40 ]
41 library SHDocVw
42 {
43
44 importlib("stdole2.tlb");
45
46
47 /*****************************************************************************
48  * IWebBrowser interface
49  */
50 [
51     object,
52     oleautomation,
53     uuid(eab22ac1-30c1-11cf-a7eb-0000c05bae0b),
54     hidden,
55     dual
56 ]
57 interface IWebBrowser : IDispatch
58 {
59     typedef enum BrowserNavConstants
60     {
61         navOpenInNewWindow   = 0x1,
62         navNoHistory         = 0x2,
63         navNoReadFromCache   = 0x4,
64         navNoWriteToCache    = 0x8,
65         navAllowAutosearch   = 0x10,
66         navBrowserBar        = 0x20,
67         navHyperlink         = 0x40,
68         navEnforceRestricted = 0x80
69     } BrowserNavConstants;
70
71     typedef enum RefreshConstants
72     {
73         REFRESH_NORMAL     = 0,
74         REFRESH_IFEXPIRED  = 1,
75         REFRESH_COMPLETELY = 3
76     } RefreshConstants;
77
78     [id(100)] HRESULT GoBack();
79     [id(101)] HRESULT GoForward();
80     [id(102)] HRESULT GoHome();
81     [id(103)] HRESULT GoSearch();
82
83     [id(104)]
84     HRESULT Navigate(
85         [in] BSTR URL,
86         [in, optional] VARIANT *Flags,
87         [in, optional] VARIANT *TargetFrameName,
88         [in, optional] VARIANT *PostData,
89         [in, optional] VARIANT *Headers);
90
91     [id(DISPID_REFRESH)] HRESULT Refresh();
92     [id(105)] HRESULT Refresh2([in, optional] VARIANT *Level);
93     [id(106)] HRESULT Stop();
94     [id(200), propget] HRESULT Application([out, retval] IDispatch** ppDisp);
95     [id(201), propget] HRESULT Parent([out, retval] IDispatch** ppDisp);
96     [id(202), propget] HRESULT Container([out, retval] IDispatch** ppDisp);
97     [id(203), propget] HRESULT Document([out, retval] IDispatch** ppDisp);
98     [id(204), propget] HRESULT TopLevelContainer([out, retval] VARIANT_BOOL* pBool);
99     [id(205), propget] HRESULT Type([out, retval] BSTR* Type);
100     [id(206), propget] HRESULT Left([out, retval] long *pl);
101     [id(206), propput] HRESULT Left([in] long Left);
102     [id(207), propget] HRESULT Top([out, retval] long *pl);
103     [id(207), propput] HRESULT Top([in] long Top);
104     [id(208), propget] HRESULT Width([out, retval] long *pl);
105     [id(208), propput] HRESULT Width([in] long Width);
106     [id(209), propget] HRESULT Height([out, retval] long *pl);
107     [id(209), propput] HRESULT Height([in] long Height);
108     [id(210), propget] HRESULT LocationName([out, retval] BSTR *LocationName);
109     [id(211), propget] HRESULT LocationURL([out, retval] BSTR *LocationURL);
110     [id(212), propget] HRESULT Busy([out, retval] VARIANT_BOOL *pBool);
111 }
112
113 /*****************************************************************************
114  * DWebBrowserEvents dispinterface
115  */
116 [
117     uuid(eab22ac2-30c1-11CF-a7eb-0000C05bae0b),
118     hidden
119 ]
120 dispinterface DWebBrowserEvents
121 {
122     properties:
123     methods:
124     [id(DISPID_BEFORENAVIGATE)]
125     void BeforeNavigate(
126         [in] BSTR URL,
127         long Flags,
128         BSTR TargetFrameName,
129         VARIANT *PostData,
130         BSTR Headers,
131         [in, out] VARIANT_BOOL *Cancel);
132
133     [id(DISPID_NAVIGATECOMPLETE)]
134     void NavigateComplete([in] BSTR URL);
135
136     [id(DISPID_STATUSTEXTCHANGE)]
137     void StatusTextChange([in] BSTR Text);
138
139     [id(DISPID_PROGRESSCHANGE)]
140     void ProgressChange([in] long Progress, [in] long ProgressMax);
141
142     [id(DISPID_DOWNLOADCOMPLETE)]
143     void DownloadComplete();
144
145     [id(DISPID_COMMANDSTATECHANGE)]
146     void CommandStateChange([in] long Command, [in]VARIANT_BOOL Enable);
147
148     [id(DISPID_DOWNLOADBEGIN)]
149     void DownloadBegin();
150
151     [id(DISPID_NEWWINDOW)]
152     void NewWindow(
153         [in] BSTR URL,
154         [in] long Flags,
155         [in] BSTR TargetFrameName,
156         [in] VARIANT *PostData,
157         [in] BSTR Headers,
158         [in,out] VARIANT_BOOL *Processed);
159
160     [id(DISPID_TITLECHANGE)]
161     void TitleChange([in] BSTR Text);
162
163     [id(DISPID_FRAMEBEFORENAVIGATE)]
164     void FrameBeforeNavigate(
165         [in] BSTR URL,
166         long Flags,
167         BSTR TargetFrameName,
168         VARIANT *PostData,
169         BSTR Headers,
170         [in, out]VARIANT_BOOL *Cancel);
171
172     [id(DISPID_FRAMENAVIGATECOMPLETE)]
173     void FrameNavigateComplete([in] BSTR URL);
174
175     [id(DISPID_FRAMENEWWINDOW)]
176     void FrameNewWindow(
177         [in] BSTR URL,
178         [in] long Flags,
179         [in] BSTR TargetFrameName,
180         [in] VARIANT *PostData,
181         [in] BSTR Headers,
182         [in,out] VARIANT_BOOL *Processed);
183
184     [id(DISPID_QUIT)]
185     void Quit([in, out] VARIANT_BOOL *Cancel);
186
187     [id(DISPID_WINDOWMOVE)]
188     void WindowMove();
189
190     [id(DISPID_WINDOWRESIZE)]
191     void WindowResize();
192
193     [id(DISPID_WINDOWACTIVATE)]
194     void WindowActivate();
195
196     [id(DISPID_PROPERTYCHANGE)]
197     void PropertyChange([in] BSTR Property);
198 }
199
200 typedef
201 [
202     uuid(34a226e0-df30-11cf-89a9-00a0c9054129)
203 ]
204 enum CommandStateChangeConstants {
205     CSC_UPDATECOMMANDS  = -1,
206     CSC_NAVIGATEFORWARD = 1,
207     CSC_NAVIGATEBACK    = 2
208 } CommandStateChangeConstants;
209
210 /*****************************************************************************
211  * IWebBrowserApp interface
212  */
213 [
214     object,
215     oleautomation,
216     uuid(0002df05-0000-0000-c000-000000000046),
217     hidden,
218     dual
219 ]
220 interface IWebBrowserApp : IWebBrowser
221 {
222     [id(300)] HRESULT Quit();
223     [id(301)] HRESULT ClientToWindow([in,out] int* pcx, [in,out] int* pcy);
224     [id(302)] HRESULT PutProperty([in] BSTR Property, [in] VARIANT vtValue);
225     [id(303)] HRESULT GetProperty([in] BSTR Property, [out, retval] VARIANT *pvtValue);
226     [id(0), propget] HRESULT Name([out, retval] BSTR* Name);
227     [id(DISPID_HWND), propget] HRESULT HWND([out, retval] long *pHWND);
228     [id(400), propget] HRESULT FullName([out, retval] BSTR* FullName);
229     [id(401), propget] HRESULT Path([out, retval] BSTR* Path);
230     [id(402), propget] HRESULT Visible([out, retval] VARIANT_BOOL* pBool);
231     [id(402), propput] HRESULT Visible([in] VARIANT_BOOL Value);
232     [id(403), propget] HRESULT StatusBar([out, retval] VARIANT_BOOL* pBool);
233     [id(403), propput] HRESULT StatusBar([in] VARIANT_BOOL Value);
234     [id(404), propget] HRESULT StatusText([out, retval] BSTR *StatusText);
235     [id(404), propput] HRESULT StatusText([in] BSTR StatusText);
236     [id(405), propget] HRESULT ToolBar([out, retval] int * Value);
237     [id(405), propput] HRESULT ToolBar([in] int Value);
238     [id(406), propget] HRESULT MenuBar([out, retval] VARIANT_BOOL *Value);
239     [id(406), propput] HRESULT MenuBar([in] VARIANT_BOOL Value);
240     [id(407), propget] HRESULT FullScreen([out, retval] VARIANT_BOOL *pbFullScreen);
241     [id(407), propput] HRESULT FullScreen([in] VARIANT_BOOL bFullScreen);
242 }
243
244 /*****************************************************************************
245  * IWebBrowser2 interface
246  */
247 [
248     object,
249     oleautomation,
250     uuid(d30c1661-cdaf-11d0-8a3e-00c04fc9e26e),
251     hidden,
252     dual
253 ]
254 interface IWebBrowser2 : IWebBrowserApp
255 {
256     [id(500)] HRESULT Navigate2(
257         [in] VARIANT *URL,
258         [in, optional] VARIANT *Flags,
259         [in, optional] VARIANT *TargetFrameName,
260         [in, optional] VARIANT *PostData,
261         [in, optional] VARIANT *Headers);
262
263     [id(501)] HRESULT QueryStatusWB(
264         [in] OLECMDID cmdID,
265         [out, retval] OLECMDF *pcmdf);
266
267     [id(502)] HRESULT ExecWB(
268         [in] OLECMDID cmdID,
269         [in] OLECMDEXECOPT cmdexecopt,
270         [in, optional] VARIANT *pvaIn,
271         [out, in, optional] VARIANT *pvaOut);
272
273     [id(503)] HRESULT ShowBrowserBar(
274         [in] VARIANT *pvaClsid,
275         [in, optional] VARIANT *pvarShow,
276         [in, optional] VARIANT *pvarSize);
277
278     [id(DISPID_READYSTATE), propget, bindable]
279     HRESULT ReadyState([out, retval] READYSTATE *plReadyState);
280
281     [id(550), propget] HRESULT Offline([out, retval] VARIANT_BOOL *pbOffline);
282     [id(550), propput] HRESULT Offline([in] VARIANT_BOOL bOffline);
283     [id(551), propget] HRESULT Silent([out, retval] VARIANT_BOOL *pbSilent);
284     [id(551), propput] HRESULT Silent([in] VARIANT_BOOL bSilent);
285     [id(552), propget] HRESULT RegisterAsBrowser([out, retval] VARIANT_BOOL *pbRegister);
286     [id(552), propput] HRESULT RegisterAsBrowser([in] VARIANT_BOOL bRegister);
287     [id(553), propget] HRESULT RegisterAsDropTarget([out, retval] VARIANT_BOOL *pbRegister);
288     [id(553), propput] HRESULT RegisterAsDropTarget([in] VARIANT_BOOL bRegister);
289     [id(554), propget] HRESULT TheaterMode([out, retval] VARIANT_BOOL *pbRegister);
290     [id(554), propput] HRESULT TheaterMode([in] VARIANT_BOOL bRegister);
291     [id(555), propget] HRESULT AddressBar([out, retval] VARIANT_BOOL *Value);
292     [id(555), propput] HRESULT AddressBar([in] VARIANT_BOOL Value);
293     [id(556), propget] HRESULT Resizable([out, retval] VARIANT_BOOL *Value);
294     [id(556), propput] HRESULT Resizable([in] VARIANT_BOOL Value);
295 }
296
297 typedef
298 [
299     uuid(65507be0-91a8-11d3-a845-009027220e6d)
300 ]
301 enum SecureLockIconConstants {
302     secureLockIconUnsecure          = 0,
303     secureLockIconMixed             = 1,
304     secureLockIconSecureUnknownBits = 2,
305     secureLockIconSecure40Bit       = 3,
306     secureLockIconSecure56Bit       = 4,
307     secureLockIconSecureFortezza    = 5,
308     secureLockIconSecure128Bit      = 6
309 } SecureLockIconConstants;
310
311 /*****************************************************************************
312  * DWebBrowserEvents2 dispinterface
313  */
314 [
315     uuid(34a715a0-6587-11d0-924a-0020afc7ac4d),
316     hidden
317 ]
318 dispinterface DWebBrowserEvents2
319 {
320     properties:
321     methods:
322     [id(DISPID_STATUSTEXTCHANGE)]
323     void StatusTextChange([in] BSTR Text);
324
325     [id(DISPID_PROGRESSCHANGE)]
326     void ProgressChange([in] long Progress, [in] long ProgressMax);
327
328     [id(DISPID_COMMANDSTATECHANGE)]
329     void CommandStateChange([in] long Command, [in] VARIANT_BOOL Enable);
330
331     [id(DISPID_DOWNLOADBEGIN)]
332     void DownloadBegin();
333
334     [id(DISPID_DOWNLOADCOMPLETE)]
335     void DownloadComplete();
336
337     [id(DISPID_TITLECHANGE)]
338     void TitleChange([in] BSTR Text);
339
340     [id(DISPID_PROPERTYCHANGE)]
341     void PropertyChange([in] BSTR szProperty);
342
343     [id(DISPID_BEFORENAVIGATE2)]
344     void BeforeNavigate2(
345         [in] IDispatch *pDisp,
346         [in] VARIANT *URL,
347         [in] VARIANT *Flags,
348         [in] VARIANT *TargetFrameName,
349         [in] VARIANT *PostData,
350         [in] VARIANT *Headers,
351         [in, out] VARIANT_BOOL *Cancel);
352
353     [id(DISPID_NEWWINDOW2)]
354     void NewWindow2([in, out] IDispatch **ppDisp, [in, out] VARIANT_BOOL *Cancel);
355
356     [id(DISPID_NAVIGATECOMPLETE2)]
357     void NavigateComplete2([in] IDispatch *pDisp, [in] VARIANT *URL);
358
359     [id(DISPID_DOCUMENTCOMPLETE)]
360     void DocumentComplete([in] IDispatch *pDisp, [in] VARIANT *URL);
361
362     [id(DISPID_ONQUIT)]
363     void OnQuit();
364
365     [id(DISPID_ONVISIBLE)]
366     void OnVisible([in] VARIANT_BOOL Visible);
367
368     [id(DISPID_ONTOOLBAR)]
369     void OnToolBar([in] VARIANT_BOOL ToolBar);
370
371     [id(DISPID_ONMENUBAR)]
372     void OnMenuBar([in] VARIANT_BOOL MenuBar);
373
374     [id(DISPID_ONSTATUSBAR)]
375     void OnStatusBar([in] VARIANT_BOOL StatusBar);
376
377     [id(DISPID_ONFULLSCREEN)]
378     void OnFullScreen([in] VARIANT_BOOL FullScreen);
379
380     [id(DISPID_ONTHEATERMODE)]
381     void OnTheaterMode([in] VARIANT_BOOL TheaterMode);
382
383     [id(DISPID_WINDOWSETRESIZABLE)]
384     void WindowSetResizable([in] VARIANT_BOOL Resizable);
385
386     [id(DISPID_WINDOWSETLEFT)]
387     void WindowSetLeft([in] long Left);
388
389     [id(DISPID_WINDOWSETTOP)]
390     void WindowSetTop([in] long Top);
391
392     [id(DISPID_WINDOWSETWIDTH)]
393     void WindowSetWidth([in] long Width);
394
395     [id(DISPID_WINDOWSETHEIGHT)]
396     void WindowSetHeight([in] long Height);
397
398     [id(DISPID_WINDOWCLOSING)]
399     void WindowClosing(
400             [in] VARIANT_BOOL IsChildWindow,
401             [in, out] VARIANT_BOOL *Cancel);
402
403     [id(DISPID_CLIENTTOHOSTWINDOW)]
404     void ClientToHostWindow(
405             [in, out] long *CX,
406             [in, out] long *CY);
407
408     [id(DISPID_SETSECURELOCKICON)]
409     void SetSecureLockIcon([in] long SecureLockIcon);
410
411     [id(DISPID_FILEDOWNLOAD)]
412     void FileDownload([in, out] VARIANT_BOOL* Cancel);
413
414     [id(DISPID_NAVIGATEERROR)]
415     void NavigateError(
416             [in] IDispatch *pDisp,
417             [in] VARIANT *URL,
418             [in] VARIANT *Frame,
419             [in] VARIANT *StatusCode,
420             [in, out] VARIANT_BOOL *Cancel);
421
422     [id(DISPID_PRINTTEMPLATEINSTANTIATION)]
423     void PrintTemplateInstantiation([in] IDispatch *pDisp);
424
425     [id(DISPID_PRINTTEMPLATETEARDOWN)]
426     void PrintTemplateTeardown([in] IDispatch *pDisp);
427
428     [id(DISPID_UPDATEPAGESTATUS)]
429     void UpdatePageStatus(
430             [in] IDispatch *pDisp,
431             [in] VARIANT *nPage,
432             [in] VARIANT *fDone);
433
434     [id(DISPID_PRIVACYIMPACTEDSTATECHANGE)]
435     void PrivacyImpactedStateChange([in] VARIANT_BOOL bImpacted);
436
437     [id(DISPID_NEWWINDOW3)]
438     void NewWindow3(
439             [in, out] IDispatch **ppDisp,
440             [in, out] VARIANT_BOOL *Cancel,
441             [in] DWORD dwFlags,
442             [in] BSTR bstrUrlContext,
443             [in] BSTR bstrUrl);
444
445     [id(DISPID_SETPHISHINGFILTERSTATUS)]
446     void SetPhishingFilterStatus([in] long PhishingFilterStatus);
447
448     [id(DISPID_WINDOWSTATECHANGED)]
449     void WindowStateChanged(
450             [in] DWORD dwWindowStateFlags,
451             [in] DWORD dwValidFlagsMask);
452
453     [id(DISPID_NEWPROCESS)]
454     void NewProcess(
455             [in] long lCauseFlag,
456             [in] IDispatch *pWB2,
457             [in, out] VARIANT_BOOL *Cancel);
458
459     [id(DISPID_THIRDPARTYURLBLOCKED)]
460     void ThirdPartyUrlBlocked(
461             [in] VARIANT *URL,
462             [in] DWORD dwCount);
463
464     [id(DISPID_REDIRECTXDOMAINBLOCKED)]
465     void RedirectXDomainBlocked(
466             [in] IDispatch *pDisp,
467             [in] VARIANT *StartURL,
468             [in] VARIANT *RedirectURL,
469             [in] VARIANT *Frame,
470             [in] VARIANT *StatusCode);
471 }
472
473 [
474     uuid(eab22ac3-30c1-11cf-a7eb-0000c05bae0b),
475     control
476 ]
477 coclass WebBrowser_V1
478 {
479     interface IWebBrowser2;
480     [default] interface IWebBrowser;
481     [source] dispinterface DWebBrowserEvents2;
482     [default, source] dispinterface DWebBrowserEvents;
483 }
484
485 [
486     uuid(8856f961-340a-11d0-a96b-00c04fd705a2),
487     control
488 ]
489 coclass WebBrowser
490 {
491     [default] interface IWebBrowser2;
492     interface IWebBrowser;
493     [default, source] dispinterface DWebBrowserEvents2;
494     [source] dispinterface DWebBrowserEvents;
495 }
496
497 [
498     uuid(0002df01-0000-0000-c000-000000000046)
499 ]
500 coclass InternetExplorer
501 {
502     [default] interface IWebBrowser2;
503               interface IWebBrowserApp;
504     [default, source] dispinterface DWebBrowserEvents2;
505     [source]          dispinterface DWebBrowserEvents;
506 }
507
508 [
509     uuid(C08AFD90-F2A1-11D1-8455-00A0C91F3880),
510     hidden
511 ]
512 coclass ShellBrowserWindow
513 {
514     [default] interface IWebBrowser2;
515     interface IWebBrowserApp;
516     [default, source] dispinterface DWebBrowserEvents2;
517     [source] dispinterface DWebBrowserEvents;
518 }
519
520 typedef
521 [
522     uuid(f41e6981-28e5-11d0-82b4-00a0c90c29c5)
523 ]
524 enum ShellWindowTypeConstants {
525     SWC_EXPLORER = 0,
526     SWC_BROWSER  = 1,
527     SWC_3RDPARTY = 2,
528     SWC_CALLBACK = 4
529 } ShellWindowTypeConstants;
530
531 typedef
532 [
533     uuid(7716a370-38Ca-11d0-a48B-00a0c90a8f39)
534 ]
535 enum ShellWindowFindWindowOptions {
536     SWFO_NEEDDISPATCH   = 1,
537     SWFO_INCLUDEPENDING = 2,
538     SWFO_COOKIEPASSED   = 4
539 } ShellWindowFindWindowOptions;
540
541 [
542     uuid(FE4106E0-399A-11D0-A48C-00A0C90A8F39)
543 ]
544 dispinterface DShellWindowsEvents {
545     properties:
546     methods:
547     [id(DISPID_WINDOWREGISTERED)]
548     void WindowRegistered([in] long lCookie);
549
550     [id(DISPID_WINDOWREVOKED)]
551     void WindowRevoked([in] long lCookie);
552 }
553
554 [
555     object,
556     oleautomation,
557     uuid(85cb6900-4d95-11cf-960c-0080c7f4ee85),
558     dual
559 ]
560 interface IShellWindows : IDispatch
561 {
562     [propget] HRESULT Count([out, retval] long *Count);
563
564     [id(0)] HRESULT Item(
565             [in, optional] VARIANT index,
566             [out, retval] IDispatch **Folder);
567
568     [id(-4)] HRESULT _NewEnum([out, retval] IUnknown **ppunk);
569
570     [hidden] HRESULT Register(
571             [in] IDispatch *pid,
572             [in] long hWnd,
573             [in] int swClass,
574             [out] long *plCookie);
575
576     [hidden] HRESULT RegisterPending(
577             [in] long lThreadId,
578             [in] VARIANT *pvarloc,
579             [in] VARIANT *pvarlocRoot,
580             [in] int swClass,
581             [out] long *plCookie);
582
583     [hidden] HRESULT Revoke([in] long lCookie);
584     [hidden] HRESULT OnNavigate([in] long lCookie, [in] VARIANT *pvarLoc);
585     [hidden] HRESULT OnActivated([in] long lCookie, [in] VARIANT_BOOL fActive);
586     [hidden] HRESULT FindWindowSW(
587             [in] VARIANT *pvarLoc,
588             [in] VARIANT *pvarLocRoot,
589             [in] int swClass,
590             [out] long *phwnd,
591             [in] int swfwOptions,
592             [out, retval] IDispatch **ppdispOut);
593
594     [hidden] HRESULT OnCreated([in] long lCookie, [in] IUnknown *punk);
595     [hidden] HRESULT ProcessAttachDetach([in] VARIANT_BOOL fAttach);
596 }
597
598 [
599     uuid(9ba05972-f6a8-11cf-a442-00a0c90a8f39)
600 ]
601 coclass ShellWindows
602 {
603     [default] interface IShellWindows;
604     [default, source] dispinterface DShellWindowsEvents;
605 }
606
607 [
608     odl,
609     uuid(729fe2f8-1ea8-11d1-8f85-00C04fc2fbe1),
610     dual,
611     oleautomation
612 ]
613 interface IShellUIHelper : IDispatch {
614     [id(1), hidden] HRESULT ResetFirstBootMode();
615     [id(2), hidden] HRESULT ResetSafeMode();
616     [id(3), hidden] HRESULT RefreshOfflineDesktop();
617
618     [id(4)] HRESULT AddFavorite(
619             [in] BSTR URL,
620             [in, optional] VARIANT* Title);
621
622     [id(5)] HRESULT AddChannel([in] BSTR URL);
623
624     [id(6)] HRESULT AddDesktopComponent(
625             [in] BSTR URL,
626             [in] BSTR Type,
627             [in, optional] VARIANT *Left,
628             [in, optional] VARIANT *Top,
629             [in, optional] VARIANT *Width,
630             [in, optional] VARIANT *Height);
631
632     [id(7)] HRESULT IsSubscribed(
633             [in] BSTR URL,
634             [out, retval] VARIANT_BOOL *pBool);
635
636     [id(8)] HRESULT NavigateAndFind(
637             [in] BSTR URL,
638             [in] BSTR strQuery,
639             [in] VARIANT *varTargetFrame);
640
641     [id(9)] HRESULT ImportExportFavorites(
642             [in] VARIANT_BOOL fImport,
643             [in] BSTR strImpExpPath);
644
645     [id(10)] HRESULT AutoCompleteSaveForm([in, optional] VARIANT *Form);
646
647     [id(11)] HRESULT AutoScan(
648             [in] BSTR strSearch,
649             [in] BSTR strFailureUrl,
650             [in, optional] VARIANT *pvarTargetFrame);
651
652     [id(12), hidden] HRESULT AutoCompleteAttach([in, optional] VARIANT *Reserved);
653
654     [id(13)] HRESULT ShowBrowserUI(
655             [in] BSTR bstrName,
656             [in] VARIANT *pvarIn,
657             [out, retval] VARIANT *pvarOut);
658 }
659
660 [
661     uuid(64ab4bb7-111e-11d1-8f79-00c04fc2fbe1)
662 ]
663 coclass ShellUIHelper {
664     [default] interface IShellUIHelper;
665 }
666
667 [
668     uuid(55136806-b2de-11d1-b9f2-00a0c98bc547)
669 ]
670 dispinterface DShellNameSpaceEvents {
671     properties:
672     methods:
673     [id(1)] void FavoritesSelectionChange(
674             [in] long cItems,
675             [in] long hItem,
676             [in] BSTR strName,
677             [in] BSTR strUrl,
678             [in] long cVisits,
679             [in] BSTR strDate,
680             [in] long fAvailableOffline);
681
682     [id(2)] void SelectionChange();
683     [id(3)] void DoubleClick();
684     [id(4)] void Initialized();
685 }
686
687 [
688     odl,
689     uuid(55136804-b2de-11d1-b9f2-00a0c98bc547),
690     hidden,
691     dual,
692     oleautomation
693 ]
694 interface IShellFavoritesNameSpace : IDispatch {
695     [id(1)] HRESULT MoveSelectionUp();
696     [id(2)] HRESULT MoveSelectionDown();
697     [id(3)] HRESULT ResetSort();
698     [id(4)] HRESULT NewFolder();
699     [id(5)] HRESULT Synchronize();
700     [id(6)] HRESULT Import();
701     [id(7)] HRESULT Export();
702     [id(8)] HRESULT InvokeContextMenuCommand([in] BSTR strCommand);
703     [id(9)] HRESULT MoveSelectionTo();
704     [id(10), propget] HRESULT SubscriptionsEnabled([out, retval] VARIANT_BOOL *pBool);
705     [id(11)] HRESULT CreateSubscriptionForSelection([out, retval] VARIANT_BOOL *pBool);
706     [id(12)] HRESULT DeleteSubscriptionForSelection([out, retval] VARIANT_BOOL *pBool);
707     [id(13)] HRESULT SetRoot([in] BSTR bstrFullPath);
708 }
709
710 [
711     odl,
712     uuid(e572d3c9-37be-4ae2-825d-d521763e3108),
713     hidden,
714     dual,
715     oleautomation
716 ]
717 interface IShellNameSpace : IShellFavoritesNameSpace {
718     [id(14), propget] HRESULT EnumOptions([out, retval] long* pgrfEnumFlags);
719     [id(14), propput] HRESULT EnumOptions([in] long pgrfEnumFlags);
720
721     [id(15), propget] HRESULT SelectedItem([out, retval] IDispatch **pItem);
722     [id(15), propput] HRESULT SelectedItem([in] IDispatch *pItem);
723
724     [id(16), propget] HRESULT Root([out, retval] VARIANT *pvar);
725     [id(16), propput] HRESULT Root([in] VARIANT pvar);
726
727     [id(17), propget] HRESULT Depth([out, retval] int *piDepth);
728     [id(17), propput] HRESULT Depth([in] int piDepth);
729
730     [id(18), propget] HRESULT Mode([out, retval] unsigned int *puMode);
731     [id(18), propput] HRESULT Mode([in] unsigned int puMode);
732
733     [id(19), propget] HRESULT Flags([out, retval] unsigned long *pdwFlags);
734     [id(19), propput] HRESULT Flags([in] unsigned long pdwFlags);
735
736     [id(20), propput] HRESULT TVFlags([in] unsigned long dwFlags);
737     [id(20), propget] HRESULT TVFlags([out, retval] unsigned long *dwFlags);
738
739     [id(21), propget] HRESULT Columns([out, retval] BSTR *bstrColumns);
740     [id(21), propput] HRESULT Columns([in] BSTR bstrColumns);
741
742     [id(22), propget] HRESULT CountViewTypes([out, retval] int *piTypes);
743
744     [id(23)] HRESULT SetViewType([in] int iType);
745     [id(24)] HRESULT SelectedItems([out, retval] IDispatch **ppid);
746     [id(25)] HRESULT Expand([in] VARIANT var,  int iDepth);
747     [id(26)] HRESULT UnselectAll();
748 }
749
750 [
751     uuid(55136805-b2de-11d1-b9f2-00a0c98bc547)
752 ]
753 coclass ShellNameSpace {
754     [default] interface IShellNameSpace;
755     [default, source] dispinterface DShellNameSpaceEvents;
756 }
757
758 [
759     uuid(2f2f1f96-2bc1-4b1c-be28-ea3774f4676a)
760 ]
761 coclass ShellShellNameSpace {
762     [default] interface IShellNameSpace;
763     [default, source] dispinterface DShellNameSpaceEvents;
764 }
765
766 [
767     odl,
768     uuid(f3470f24-15fd-11d2-bb2e-00805ff7efca),
769     hidden,
770     dual,
771     oleautomation
772 ]
773 interface IScriptErrorList : IDispatch {
774     [id(10)] HRESULT advanceError();
775     [id(11)] HRESULT retreatError();
776     [id(12)] HRESULT canAdvanceError([out, retval] long *pfCanAdvance);
777     [id(13)] HRESULT canRetreatError([out, retval] long *pfCanRetreat);
778     [id(14)] HRESULT getErrorLine([out, retval] long *plLine);
779     [id(15)] HRESULT getErrorChar([out, retval] long *plChar);
780     [id(16)] HRESULT getErrorCode([out, retval] long *plCode);
781     [id(17)] HRESULT getErrorMsg([out, retval] BSTR *pstr);
782     [id(18)] HRESULT getErrorUrl([out, retval] BSTR *pstr);
783     [id(23)] HRESULT getAlwaysShowLockState([out, retval] long *pfAlwaysShowLocked);
784     [id(19)] HRESULT getDetailsPaneOpen([out, retval] long *pfDetailsPaneOpen);
785     [id(20)] HRESULT setDetailsPaneOpen(long fDetailsPaneOpen);
786     [id(21)] HRESULT getPerErrorDisplay([out, retval] long *pfPerErrorDisplay);
787     [id(22)] HRESULT setPerErrorDisplay(long fPerErrorDisplay);
788 }
789
790 [
791     uuid(efd01300-160f-11d2-bb2e-00805ff7efca),
792     hidden
793 ]
794 coclass CScriptErrorList {
795     [default] interface IScriptErrorList;
796 }
797
798 [
799     odl,
800     uuid(ba9239a4-3dd5-11d2-bf8b-00c04fb93661),
801     hidden,
802     dual,
803     oleautomation
804 ]
805 interface ISearch : IDispatch {
806     [propget] HRESULT Title([out, retval] BSTR *pbstrTitle);
807     [propget] HRESULT Id([out, retval] BSTR *pbstrId);
808     [propget] HRESULT URL([out, retval] BSTR *pbstrUrl);
809 }
810
811 [
812     odl,
813     uuid(47c922a2-3dd5-11d2-bf8b-00c04fb93661),
814     hidden,
815     dual,
816     oleautomation
817 ]
818 interface ISearches : IDispatch {
819     [propget] HRESULT Count([out, retval] long *plCount);
820     [propget] HRESULT Default([out, retval] BSTR *pbstrDefault);
821
822     HRESULT Item(
823             [in, optional] VARIANT index,
824             [out, retval] ISearch **ppid);
825
826     [id(-4)] HRESULT _NewEnum([out, retval] IUnknown **ppunk);
827 }
828
829 [
830     odl,
831     uuid(72423e8f-8011-11d2-be79-00a0c9a83da1),
832     hidden,
833     dual,
834     oleautomation
835 ]
836 interface ISearchAssistantOC : IDispatch {
837     [id(1)] HRESULT AddNextMenuItem([in] BSTR bstrText, [in] long idItem);
838     [id(2)] HRESULT SetDefaultSearchUrl([in] BSTR bstrUrl);
839     [id(3)] HRESULT NavigateToDefaultSearch();
840
841     [id(4)] HRESULT IsRestricted(
842             [in] BSTR bstrGuid,
843             [out, retval] VARIANT_BOOL *pVal);
844
845     [id(5), propget] HRESULT ShellFeaturesEnabled([out, retval] VARIANT_BOOL *pVal);
846     [id(6), propget] HRESULT SearchAssistantDefault([out, retval] VARIANT_BOOL *pVal);
847     [id(7), propget] HRESULT Searches([out, retval] ISearches **ppid);
848     [id(8), propget] HRESULT InWebFolder([out, retval] VARIANT_BOOL *pVal);
849
850     [id(9)] HRESULT PutProperty(
851             [in] VARIANT_BOOL bPerLocale,
852             [in] BSTR bstrName,
853             [in] BSTR bstrValue);
854
855     [id(10)] HRESULT GetProperty(
856             [in] VARIANT_BOOL bPerLocale,
857             [in] BSTR bstrName,
858             [out, retval] BSTR *pbstrValue);
859
860     [id(11), propput] HRESULT EventHandled([in] VARIANT_BOOL rhs);
861     [id(12)] HRESULT ResetNextMenu();
862     [id(13)] HRESULT FindOnWeb();
863     [id(14)] HRESULT FindFilesOrFolders();
864     [id(15)] HRESULT FindComputer();
865     [id(16)] HRESULT FindPrinter();
866     [id(17)] HRESULT FindPeople();
867
868     [id(18)] HRESULT GetSearchAssistantURL(
869             [in] VARIANT_BOOL bSubstitute,
870             [in] VARIANT_BOOL bCustomize,
871             [out, retval] BSTR *pbstrValue);
872
873     [id(19)] HRESULT NotifySearchSettingsChanged();
874
875     [id(20), propput] HRESULT ASProvider([in] BSTR pProvider);
876     [id(20), propget] HRESULT ASProvider([out, retval] BSTR *pProvider);
877
878     [id(21), propput] HRESULT ASSetting([in] int pSetting);
879     [id(21), propget] HRESULT ASSetting([out, retval] int *pSetting);
880
881     [id(22)] HRESULT NETDetectNextNavigate();
882     [id(23)] HRESULT PutFindText([in] BSTR FindText);
883     [id(24), propget] HRESULT Version([out, retval] int *pVersion);
884
885     [id(25)] HRESULT EncodeString(
886             [in] BSTR bstrValue,
887             [in] BSTR bstrCharSet,
888             [in] VARIANT_BOOL bUseUTF8,
889             [out, retval] BSTR* pbstrResult);
890 }
891
892 [
893     odl,
894     uuid(72423e8f-8011-11d2-be79-00a0c9a83da2),
895     hidden,
896     dual,
897     oleautomation
898 ]
899 interface ISearchAssistantOC2 : ISearchAssistantOC {
900     [id(26), propget] HRESULT ShowFindPrinter([out, retval] VARIANT_BOOL *pbShowFindPrinter);
901 }
902
903 [
904     odl,
905     uuid(72423e8f-8011-11d2-be79-00a0c9a83da3),
906     hidden,
907     dual,
908     oleautomation
909 ]
910 interface ISearchAssistantOC3 : ISearchAssistantOC2 {
911     [id(27), propget] HRESULT SearchCompanionAvailable([out, retval] VARIANT_BOOL *pbAvailable);
912
913     [id(28), propput] HRESULT UseSearchCompanion([in] VARIANT_BOOL pbUseSC);
914     [id(28), propget] HRESULT UseSearchCompanion([out, retval] VARIANT_BOOL *pbUseSC);
915 }
916
917 [
918     uuid(1611fdda-445b-11d2-85de-00C04fa35c89),
919     hidden
920 ]
921 dispinterface _SearchAssistantEvents {
922     properties:
923     methods:
924     [id(1)] void OnNextMenuSelect([in] long idItem);
925     [id(2)] void OnNewSearch();
926 }
927
928 [
929     uuid(b45ff030-4447-11d2-85de-00C04fa35c89),
930     hidden
931 ]
932 coclass SearchAssistantOC {
933     [default] interface ISearchAssistantOC3;
934     [default, source] dispinterface _SearchAssistantEvents;
935 }
936
937 [
938     uuid(2e71fd0f-aab1-42c0-9146-6d2c4edcf07d),
939     hidden
940 ]
941 coclass ShellSearchAssistantOC {
942     [default] interface ISearchAssistantOC3;
943     [default, source] dispinterface _SearchAssistantEvents;
944 }
945
946 } /* library */