msi: Read the disk prompt source list property from the user-unmanaged context.
[wine.git] / dlls / shdocvw / shdocvw.h
blobaf647a1add19fa1408a6618419ab896ec7fd80ac
1 /*
2 * Header includes for shdocvw.dll
4 * Copyright 2001 John R. Sheets (for CodeWeavers)
5 * Copyright 2005-2006 Jacek Caban for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #ifndef __WINE_SHDOCVW_H
23 #define __WINE_SHDOCVW_H
25 #define COBJMACROS
27 #include <stdarg.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
34 #include "ole2.h"
35 #include "olectl.h"
36 #include "shlobj.h"
37 #include "exdisp.h"
38 #include "mshtmhst.h"
39 #include "hlink.h"
41 #include "wine/unicode.h"
43 /**********************************************************************
44 * Shell Instance Objects
46 extern HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid,
47 REFIID riid, LPVOID *ppvClassObj);
49 /**********************************************************************
50 * WebBrowser declaration for SHDOCVW.DLL
53 typedef struct ConnectionPoint ConnectionPoint;
54 typedef struct DocHost DocHost;
56 typedef struct {
57 const IConnectionPointContainerVtbl *lpConnectionPointContainerVtbl;
59 ConnectionPoint *wbe2;
60 ConnectionPoint *wbe;
61 ConnectionPoint *pns;
63 IUnknown *impl;
64 } ConnectionPointContainer;
66 struct _task_header_t;
68 typedef void (*task_proc_t)(DocHost*, struct _task_header_t*);
70 typedef struct _task_header_t {
71 task_proc_t proc;
72 } task_header_t;
74 struct DocHost {
75 const IOleClientSiteVtbl *lpOleClientSiteVtbl;
76 const IOleInPlaceSiteVtbl *lpOleInPlaceSiteVtbl;
77 const IDocHostUIHandler2Vtbl *lpDocHostUIHandlerVtbl;
78 const IOleDocumentSiteVtbl *lpOleDocumentSiteVtbl;
79 const IOleCommandTargetVtbl *lpOleCommandTargetVtbl;
80 const IDispatchVtbl *lpDispatchVtbl;
81 const IServiceProviderVtbl *lpServiceProviderVtbl;
83 /* Interfaces of InPlaceFrame object */
84 const IOleInPlaceFrameVtbl *lpOleInPlaceFrameVtbl;
86 IDispatch *disp;
88 IDispatch *client_disp;
89 IDocHostUIHandler *hostui;
90 IOleInPlaceFrame *frame;
92 IUnknown *document;
93 IOleDocumentView *view;
95 HWND hwnd;
96 HWND frame_hwnd;
98 LPOLESTR url;
100 VARIANT_BOOL silent;
101 VARIANT_BOOL offline;
103 ConnectionPointContainer cps;
106 struct WebBrowser {
107 /* Interfaces available via WebBrowser object */
109 const IWebBrowser2Vtbl *lpWebBrowser2Vtbl;
110 const IOleObjectVtbl *lpOleObjectVtbl;
111 const IOleInPlaceObjectVtbl *lpOleInPlaceObjectVtbl;
112 const IOleControlVtbl *lpOleControlVtbl;
113 const IPersistStorageVtbl *lpPersistStorageVtbl;
114 const IPersistMemoryVtbl *lpPersistMemoryVtbl;
115 const IPersistStreamInitVtbl *lpPersistStreamInitVtbl;
116 const IProvideClassInfo2Vtbl *lpProvideClassInfoVtbl;
117 const IViewObject2Vtbl *lpViewObjectVtbl;
118 const IOleInPlaceActiveObjectVtbl *lpOleInPlaceActiveObjectVtbl;
119 const IOleCommandTargetVtbl *lpOleCommandTargetVtbl;
120 const IHlinkFrameVtbl *lpHlinkFrameVtbl;
122 LONG ref;
124 INT version;
126 IOleClientSite *client;
127 IOleContainer *container;
128 IOleInPlaceSite *inplace;
130 /* window context */
132 HWND frame_hwnd;
133 IOleInPlaceUIWindow *uiwindow;
134 RECT pos_rect;
135 RECT clip_rect;
136 OLEINPLACEFRAMEINFO frameinfo;
137 SIZEL extent;
139 HWND shell_embedding_hwnd;
141 VARIANT_BOOL visible;
142 VARIANT_BOOL menu_bar;
143 VARIANT_BOOL address_bar;
144 VARIANT_BOOL status_bar;
145 VARIANT_BOOL tool_bar;
146 VARIANT_BOOL full_screen;
147 VARIANT_BOOL theater_mode;
149 DocHost doc_host;
152 struct InternetExplorer {
153 const IWebBrowser2Vtbl *lpWebBrowser2Vtbl;
155 LONG ref;
157 HWND frame_hwnd;
159 DocHost doc_host;
162 #define WEBBROWSER(x) ((IWebBrowser*) &(x)->lpWebBrowser2Vtbl)
163 #define WEBBROWSER2(x) ((IWebBrowser2*) &(x)->lpWebBrowser2Vtbl)
164 #define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
165 #define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectVtbl)
166 #define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
167 #define PERSTORAGE(x) ((IPersistStorage*) &(x)->lpPersistStorageVtbl)
168 #define PERMEMORY(x) ((IPersistMemory*) &(x)->lpPersistMemoryVtbl)
169 #define PERSTRINIT(x) ((IPersistStreamInit*) &(x)->lpPersistStreamInitVtbl)
170 #define CLASSINFO(x) ((IProvideClassInfo2*) &(x)->lpProvideClassInfoVtbl)
171 #define CONPTCONT(x) ((IConnectionPointContainer*) &(x)->lpConnectionPointContainerVtbl)
172 #define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObjectVtbl);
173 #define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObjectVtbl);
174 #define ACTIVEOBJ(x) ((IOleInPlaceActiveObject*) &(x)->lpOleInPlaceActiveObjectVtbl)
175 #define OLECMD(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
176 #define HLINKFRAME(x) ((IHlinkFrame*) &(x)->lpHlinkFrameVtbl)
178 #define CLIENTSITE(x) ((IOleClientSite*) &(x)->lpOleClientSiteVtbl)
179 #define INPLACESITE(x) ((IOleInPlaceSite*) &(x)->lpOleInPlaceSiteVtbl)
180 #define DOCHOSTUI(x) ((IDocHostUIHandler*) &(x)->lpDocHostUIHandlerVtbl)
181 #define DOCHOSTUI2(x) ((IDocHostUIHandler2*) &(x)->lpDocHostUIHandlerVtbl)
182 #define DOCSITE(x) ((IOleDocumentSite*) &(x)->lpOleDocumentSiteVtbl)
183 #define CLDISP(x) ((IDispatch*) &(x)->lpDispatchVtbl)
184 #define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
186 #define INPLACEFRAME(x) ((IOleInPlaceFrame*) &(x)->lpOleInPlaceFrameVtbl)
188 void WebBrowser_OleObject_Init(WebBrowser*);
189 void WebBrowser_ViewObject_Init(WebBrowser*);
190 void WebBrowser_Persist_Init(WebBrowser*);
191 void WebBrowser_ClassInfo_Init(WebBrowser*);
192 void WebBrowser_HlinkFrame_Init(WebBrowser*);
194 void WebBrowser_OleObject_Destroy(WebBrowser*);
196 void DocHost_Init(DocHost*,IDispatch*);
197 void DocHost_ClientSite_Init(DocHost*);
198 void DocHost_Frame_Init(DocHost*);
200 void DocHost_Release(DocHost*);
201 void DocHost_ClientSite_Release(DocHost*);
203 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*);
204 void ConnectionPointContainer_Destroy(ConnectionPointContainer*);
206 HRESULT WebBrowserV1_Create(IUnknown*,REFIID,void**);
207 HRESULT WebBrowserV2_Create(IUnknown*,REFIID,void**);
209 void create_doc_view_hwnd(DocHost*);
210 void deactivate_document(DocHost*);
211 void object_available(DocHost*);
212 void call_sink(ConnectionPoint*,DISPID,DISPPARAMS*);
213 HRESULT navigate_url(DocHost*,LPCWSTR,const VARIANT*,const VARIANT*,VARIANT*,VARIANT*);
214 HRESULT go_home(DocHost*);
216 #define WM_DOCHOSTTASK (WM_USER+0x300)
217 void push_dochost_task(DocHost*,task_header_t*,task_proc_t,BOOL);
218 LRESULT process_dochost_task(DocHost*,LPARAM);
220 HRESULT InternetExplorer_Create(IUnknown*,REFIID,void**);
221 void InternetExplorer_WebBrowser_Init(InternetExplorer*);
223 HRESULT CUrlHistory_Create(IUnknown*,REFIID,void**);
225 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
227 /**********************************************************************
228 * Dll lifetime tracking declaration for shdocvw.dll
230 extern LONG SHDOCVW_refCount;
231 static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
232 static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
234 extern HINSTANCE shdocvw_hinstance;
235 extern void register_iewindow_class(void);
236 extern void unregister_iewindow_class(void);
238 HRESULT register_class_object(BOOL);
239 HRESULT get_typeinfo(ITypeInfo**);
240 DWORD register_iexplore(BOOL);
242 /* memory allocation functions */
244 static inline void *heap_alloc(size_t len)
246 return HeapAlloc(GetProcessHeap(), 0, len);
249 static inline void *heap_realloc(void *mem, size_t len)
251 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
254 static inline BOOL heap_free(void *mem)
256 return HeapFree(GetProcessHeap(), 0, mem);
259 static inline LPWSTR heap_strdupW(LPCWSTR str)
261 LPWSTR ret = NULL;
263 if(str) {
264 DWORD size;
266 size = (strlenW(str)+1)*sizeof(WCHAR);
267 ret = heap_alloc(size);
268 memcpy(ret, str, size);
271 return ret;
274 #endif /* __WINE_SHDOCVW_H */