2 * Header includes for ieframe.dll
4 * Copyright 2011 Jacek Caban for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define NONAMELESSUNION
38 #include "shdeprecated.h"
39 #include "docobjectservice.h"
41 #include "wine/unicode.h"
42 #include "wine/list.h"
44 typedef struct ConnectionPoint ConnectionPoint;
45 typedef struct DocHost DocHost;
48 IConnectionPointContainer IConnectionPointContainer_iface;
50 ConnectionPoint *wbe2;
55 } ConnectionPointContainer;
58 IHlinkFrame IHlinkFrame_iface;
59 ITargetFrame2 ITargetFrame2_iface;
60 ITargetFramePriv2 ITargetFramePriv2_iface;
66 struct _task_header_t;
68 typedef void (*task_proc_t)(DocHost*, struct _task_header_t*);
69 typedef void (*task_destr_t)(struct _task_header_t*);
71 typedef struct _task_header_t {
78 IShellBrowser IShellBrowser_iface;
79 IBrowserService IBrowserService_iface;
80 IDocObjectService IDocObjectService_iface;
88 IHTMLWindow2 IHTMLWindow2_iface;
93 INewWindowManager INewWindowManager_iface;
101 typedef struct _IDocHostContainerVtbl
103 ULONG (*addref)(DocHost*);
104 ULONG (*release)(DocHost*);
105 void (WINAPI* GetDocObjRect)(DocHost*,RECT*);
106 HRESULT (WINAPI* SetStatusText)(DocHost*,LPCWSTR);
107 void (WINAPI* SetURL)(DocHost*,LPCWSTR);
108 HRESULT (*exec)(DocHost*,const GUID*,DWORD,DWORD,VARIANT*,VARIANT*);
109 } IDocHostContainerVtbl;
112 IOleClientSite IOleClientSite_iface;
113 IOleInPlaceSiteEx IOleInPlaceSiteEx_iface;
114 IDocHostUIHandler2 IDocHostUIHandler2_iface;
115 IOleDocumentSite IOleDocumentSite_iface;
116 IOleControlSite IOleControlSite_iface;
117 IOleCommandTarget IOleCommandTarget_iface;
118 IDispatch IDispatch_iface;
119 IPropertyNotifySink IPropertyNotifySink_iface;
120 IServiceProvider IServiceProvider_iface;
122 /* Interfaces of InPlaceFrame object */
123 IOleInPlaceFrame IOleInPlaceFrame_iface;
127 IDispatch *client_disp;
128 IDocHostUIHandler *hostui;
129 IOleInPlaceFrame *frame;
132 IOleDocumentView *view;
133 IUnknown *doc_navigate;
135 const IDocHostContainerVtbl *container_vtbl;
140 struct list task_queue;
145 VARIANT_BOOL offline;
148 READYSTATE ready_state;
149 READYSTATE doc_state;
150 DWORD prop_notif_cookie;
153 ShellBrowser *browser_service;
154 IShellUIHelper2 *shell_ui_helper;
156 travellog_entry_t *travellog;
157 unsigned travellog_size;
158 unsigned travellog_length;
159 unsigned travellog_position;
161 ConnectionPointContainer cps;
162 IEHTMLWindow html_window;
163 NewWindowManager nwm;
167 IWebBrowser2 IWebBrowser2_iface;
168 IOleObject IOleObject_iface;
169 IOleInPlaceObject IOleInPlaceObject_iface;
170 IOleControl IOleControl_iface;
171 IPersistStorage IPersistStorage_iface;
172 IPersistMemory IPersistMemory_iface;
173 IPersistStreamInit IPersistStreamInit_iface;
174 IProvideClassInfo2 IProvideClassInfo2_iface;
175 IViewObject2 IViewObject2_iface;
176 IOleInPlaceActiveObject IOleInPlaceActiveObject_iface;
177 IOleCommandTarget IOleCommandTarget_iface;
178 IServiceProvider IServiceProvider_iface;
179 IDataObject IDataObject_iface;
180 HlinkFrame hlink_frame;
186 IOleClientSite *client;
187 IOleContainer *container;
188 IOleInPlaceSiteEx *inplace;
193 IOleInPlaceUIWindow *uiwindow;
196 OLEINPLACEFRAMEINFO frameinfo;
199 HWND shell_embedding_hwnd;
201 VARIANT_BOOL register_browser;
202 VARIANT_BOOL visible;
203 VARIANT_BOOL menu_bar;
204 VARIANT_BOOL address_bar;
205 VARIANT_BOOL status_bar;
206 VARIANT_BOOL tool_bar;
207 VARIANT_BOOL full_screen;
208 VARIANT_BOOL theater_mode;
218 InternetExplorer *ie;
221 struct InternetExplorer {
222 IWebBrowser2 IWebBrowser2_iface;
223 IServiceProvider IServiceProvider_iface;
224 HlinkFrame hlink_frame;
237 void WebBrowser_OleObject_Init(WebBrowser*) DECLSPEC_HIDDEN;
238 void WebBrowser_ViewObject_Init(WebBrowser*) DECLSPEC_HIDDEN;
239 void WebBrowser_Persist_Init(WebBrowser*) DECLSPEC_HIDDEN;
240 void WebBrowser_ClassInfo_Init(WebBrowser*) DECLSPEC_HIDDEN;
242 void WebBrowser_OleObject_Destroy(WebBrowser*) DECLSPEC_HIDDEN;
244 void DocHost_Init(DocHost*,IWebBrowser2*,const IDocHostContainerVtbl*) DECLSPEC_HIDDEN;
245 void DocHost_Release(DocHost*) DECLSPEC_HIDDEN;
246 void DocHost_ClientSite_Init(DocHost*) DECLSPEC_HIDDEN;
247 void DocHost_ClientSite_Release(DocHost*) DECLSPEC_HIDDEN;
248 void DocHost_Frame_Init(DocHost*) DECLSPEC_HIDDEN;
249 void release_dochost_client(DocHost*) DECLSPEC_HIDDEN;
251 void IEHTMLWindow_Init(DocHost*) DECLSPEC_HIDDEN;
252 void NewWindowManager_Init(DocHost*) DECLSPEC_HIDDEN;
254 void HlinkFrame_Init(HlinkFrame*,IUnknown*,DocHost*) DECLSPEC_HIDDEN;
255 BOOL HlinkFrame_QI(HlinkFrame*,REFIID,void**) DECLSPEC_HIDDEN;
257 HRESULT create_browser_service(DocHost*,ShellBrowser**) DECLSPEC_HIDDEN;
258 void detach_browser_service(ShellBrowser*) DECLSPEC_HIDDEN;
259 HRESULT create_shell_ui_helper(IShellUIHelper2**) DECLSPEC_HIDDEN;
261 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*) DECLSPEC_HIDDEN;
262 void ConnectionPointContainer_Destroy(ConnectionPointContainer*) DECLSPEC_HIDDEN;
264 void call_sink(ConnectionPoint*,DISPID,DISPPARAMS*) DECLSPEC_HIDDEN;
265 HRESULT navigate_url(DocHost*,LPCWSTR,const VARIANT*,const VARIANT*,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
266 HRESULT go_home(DocHost*) DECLSPEC_HIDDEN;
267 HRESULT go_back(DocHost*) DECLSPEC_HIDDEN;
268 HRESULT refresh_document(DocHost*) DECLSPEC_HIDDEN;
269 HRESULT get_location_url(DocHost*,BSTR*) DECLSPEC_HIDDEN;
270 HRESULT set_dochost_url(DocHost*,const WCHAR*) DECLSPEC_HIDDEN;
271 void handle_navigation_error(DocHost*,HRESULT,BSTR,IHTMLWindow2*) DECLSPEC_HIDDEN;
272 HRESULT dochost_object_available(DocHost*,IUnknown*) DECLSPEC_HIDDEN;
273 void set_doc_state(DocHost*,READYSTATE) DECLSPEC_HIDDEN;
274 void deactivate_document(DocHost*) DECLSPEC_HIDDEN;
275 void create_doc_view_hwnd(DocHost*) DECLSPEC_HIDDEN;
277 #define WM_DOCHOSTTASK (WM_USER+0x300)
278 void push_dochost_task(DocHost*,task_header_t*,task_proc_t,task_destr_t,BOOL) DECLSPEC_HIDDEN;
279 void abort_dochost_tasks(DocHost*,task_proc_t) DECLSPEC_HIDDEN;
280 LRESULT process_dochost_tasks(DocHost*) DECLSPEC_HIDDEN;
282 void InternetExplorer_WebBrowser_Init(InternetExplorer*) DECLSPEC_HIDDEN;
283 HRESULT update_ie_statustext(InternetExplorer*, LPCWSTR) DECLSPEC_HIDDEN;
284 void released_obj(void) DECLSPEC_HIDDEN;
286 void register_iewindow_class(void) DECLSPEC_HIDDEN;
287 void unregister_iewindow_class(void) DECLSPEC_HIDDEN;
291 XCLSID(WebBrowser_V1) \
295 #define XIID(iface) iface ## _tid,
296 #define XCLSID(class) class ## _tid,
303 HRESULT get_typeinfo(tid_t,ITypeInfo**) DECLSPEC_HIDDEN;
304 HRESULT register_class_object(BOOL) DECLSPEC_HIDDEN;
306 HRESULT WINAPI CUrlHistory_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
307 HRESULT WINAPI InternetExplorer_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
308 HRESULT WINAPI InternetShortcut_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
309 HRESULT WINAPI WebBrowser_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
310 HRESULT WINAPI WebBrowserV1_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
312 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
314 extern LONG module_ref DECLSPEC_HIDDEN;
315 extern HINSTANCE ieframe_instance DECLSPEC_HIDDEN;
317 static inline void lock_module(void) {
318 InterlockedIncrement(&module_ref);
321 static inline void unlock_module(void) {
322 InterlockedDecrement(&module_ref);
325 static inline void *heap_alloc(size_t len)
327 return HeapAlloc(GetProcessHeap(), 0, len);
330 static inline void *heap_alloc_zero(size_t len)
332 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
335 static inline void *heap_realloc(void *mem, size_t len)
337 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
340 static inline BOOL heap_free(void *mem)
342 return HeapFree(GetProcessHeap(), 0, mem);
345 static inline LPWSTR heap_strdupW(LPCWSTR str)
352 size = (strlenW(str)+1)*sizeof(WCHAR);
353 ret = heap_alloc(size);
355 memcpy(ret, str, size);
361 static inline LPWSTR co_strdupW(LPCWSTR str)
363 WCHAR *ret = CoTaskMemAlloc((strlenW(str) + 1)*sizeof(WCHAR));
369 static inline LPWSTR co_strdupAtoW(LPCSTR str)
373 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
374 ret = CoTaskMemAlloc(len*sizeof(WCHAR));
376 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
380 static inline LPSTR co_strdupWtoA(LPCWSTR str)
384 len = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, 0, 0);
385 ret = CoTaskMemAlloc(len);
387 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, len, 0, 0);