Release 1.5.29.
[wine] / dlls / ieframe / ieframe.h
1 /*
2  * Header includes for ieframe.dll
3  *
4  * Copyright 2011 Jacek Caban for CodeWeavers
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24 #define NONAMELESSUNION
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "winuser.h"
30
31 #include "ole2.h"
32 #include "olectl.h"
33 #include "shlobj.h"
34 #include "mshtmhst.h"
35 #include "exdisp.h"
36 #include "hlink.h"
37 #include "htiface.h"
38 #include "shdeprecated.h"
39 #include "docobjectservice.h"
40
41 #include "wine/unicode.h"
42 #include "wine/list.h"
43
44 typedef struct ConnectionPoint ConnectionPoint;
45 typedef struct DocHost DocHost;
46
47 typedef struct {
48     IConnectionPointContainer IConnectionPointContainer_iface;
49
50     ConnectionPoint *wbe2;
51     ConnectionPoint *wbe;
52     ConnectionPoint *pns;
53
54     IUnknown *impl;
55 } ConnectionPointContainer;
56
57 typedef struct {
58     IHlinkFrame    IHlinkFrame_iface;
59     ITargetFrame2  ITargetFrame2_iface;
60     ITargetFramePriv2 ITargetFramePriv2_iface;
61
62     IUnknown *outer;
63     DocHost *doc_host;
64 } HlinkFrame;
65
66 struct _task_header_t;
67
68 typedef void (*task_proc_t)(DocHost*, struct _task_header_t*);
69 typedef void (*task_destr_t)(struct _task_header_t*);
70
71 typedef struct _task_header_t {
72     struct list entry;
73     task_proc_t proc;
74     task_destr_t destr;
75 } task_header_t;
76
77 typedef struct {
78     IShellBrowser IShellBrowser_iface;
79     IBrowserService IBrowserService_iface;
80     IDocObjectService IDocObjectService_iface;
81
82     LONG ref;
83
84     DocHost *doc_host;
85 }  ShellBrowser;
86
87 typedef struct {
88     IHTMLWindow2 IHTMLWindow2_iface;
89     DocHost *doc_host;
90 } IEHTMLWindow;
91
92 typedef struct {
93     INewWindowManager INewWindowManager_iface;
94     DocHost *doc_host;
95 } NewWindowManager;
96
97 typedef struct {
98     WCHAR *url;
99     IStream *stream;
100 } travellog_entry_t;
101
102 typedef struct _IDocHostContainerVtbl
103 {
104     ULONG (*addref)(DocHost*);
105     ULONG (*release)(DocHost*);
106     void (WINAPI* GetDocObjRect)(DocHost*,RECT*);
107     HRESULT (WINAPI* SetStatusText)(DocHost*,LPCWSTR);
108     void (WINAPI* SetURL)(DocHost*,LPCWSTR);
109     HRESULT (*exec)(DocHost*,const GUID*,DWORD,DWORD,VARIANT*,VARIANT*);
110 } IDocHostContainerVtbl;
111
112 struct DocHost {
113     IOleClientSite      IOleClientSite_iface;
114     IOleInPlaceSiteEx   IOleInPlaceSiteEx_iface;
115     IDocHostUIHandler2  IDocHostUIHandler2_iface;
116     IOleDocumentSite    IOleDocumentSite_iface;
117     IOleControlSite     IOleControlSite_iface;
118     IOleCommandTarget   IOleCommandTarget_iface;
119     IDispatch           IDispatch_iface;
120     IPropertyNotifySink IPropertyNotifySink_iface;
121     IServiceProvider    IServiceProvider_iface;
122
123     /* Interfaces of InPlaceFrame object */
124     IOleInPlaceFrame  IOleInPlaceFrame_iface;
125
126     IWebBrowser2 *wb;
127
128     IDispatch *client_disp;
129     IDocHostUIHandler *hostui;
130     IOleInPlaceFrame *frame;
131
132     IUnknown *document;
133     IOleDocumentView *view;
134     IUnknown *doc_navigate;
135
136     const IDocHostContainerVtbl *container_vtbl;
137
138     HWND hwnd;
139     HWND frame_hwnd;
140
141     struct list task_queue;
142
143     LPOLESTR url;
144
145     VARIANT_BOOL silent;
146     VARIANT_BOOL offline;
147     VARIANT_BOOL busy;
148
149     READYSTATE ready_state;
150     READYSTATE doc_state;
151     DWORD prop_notif_cookie;
152     BOOL is_prop_notif;
153
154     ShellBrowser *browser_service;
155     IShellUIHelper2 *shell_ui_helper;
156
157     struct {
158         travellog_entry_t *log;
159         unsigned size;
160         unsigned length;
161         unsigned position;
162         int loading_pos;
163     } travellog;
164
165     ConnectionPointContainer cps;
166     IEHTMLWindow html_window;
167     NewWindowManager nwm;
168 };
169
170 struct WebBrowser {
171     IWebBrowser2             IWebBrowser2_iface;
172     IOleObject               IOleObject_iface;
173     IOleInPlaceObject        IOleInPlaceObject_iface;
174     IOleControl              IOleControl_iface;
175     IPersistStorage          IPersistStorage_iface;
176     IPersistMemory           IPersistMemory_iface;
177     IPersistStreamInit       IPersistStreamInit_iface;
178     IProvideClassInfo2       IProvideClassInfo2_iface;
179     IViewObject2             IViewObject2_iface;
180     IOleInPlaceActiveObject  IOleInPlaceActiveObject_iface;
181     IOleCommandTarget        IOleCommandTarget_iface;
182     IServiceProvider         IServiceProvider_iface;
183     IDataObject              IDataObject_iface;
184     HlinkFrame hlink_frame;
185
186     LONG ref;
187
188     INT version;
189
190     IOleClientSite *client;
191     IOleContainer *container;
192     IOleInPlaceSiteEx *inplace;
193
194     /* window context */
195
196     HWND frame_hwnd;
197     IOleInPlaceUIWindow *uiwindow;
198     RECT pos_rect;
199     RECT clip_rect;
200     OLEINPLACEFRAMEINFO frameinfo;
201     SIZEL extent;
202
203     HWND shell_embedding_hwnd;
204
205     VARIANT_BOOL register_browser;
206     VARIANT_BOOL visible;
207     VARIANT_BOOL menu_bar;
208     VARIANT_BOOL address_bar;
209     VARIANT_BOOL status_bar;
210     VARIANT_BOOL tool_bar;
211     VARIANT_BOOL full_screen;
212     VARIANT_BOOL theater_mode;
213
214     DocHost doc_host;
215 };
216
217 typedef struct {
218     DocHost doc_host;
219
220     LONG ref;
221
222     InternetExplorer *ie;
223 } IEDocHost;
224
225 struct InternetExplorer {
226     IWebBrowser2 IWebBrowser2_iface;
227     IServiceProvider IServiceProvider_iface;
228     HlinkFrame hlink_frame;
229
230     LONG ref;
231
232     HWND frame_hwnd;
233     HWND status_hwnd;
234     HMENU menu;
235     BOOL nohome;
236
237     struct list entry;
238     IEDocHost *doc_host;
239 };
240
241 void WebBrowser_OleObject_Init(WebBrowser*) DECLSPEC_HIDDEN;
242 void WebBrowser_ViewObject_Init(WebBrowser*) DECLSPEC_HIDDEN;
243 void WebBrowser_Persist_Init(WebBrowser*) DECLSPEC_HIDDEN;
244 void WebBrowser_ClassInfo_Init(WebBrowser*) DECLSPEC_HIDDEN;
245
246 void WebBrowser_OleObject_Destroy(WebBrowser*) DECLSPEC_HIDDEN;
247
248 void DocHost_Init(DocHost*,IWebBrowser2*,const IDocHostContainerVtbl*) DECLSPEC_HIDDEN;
249 void DocHost_Release(DocHost*) DECLSPEC_HIDDEN;
250 void DocHost_ClientSite_Init(DocHost*) DECLSPEC_HIDDEN;
251 void DocHost_ClientSite_Release(DocHost*) DECLSPEC_HIDDEN;
252 void DocHost_Frame_Init(DocHost*) DECLSPEC_HIDDEN;
253 void release_dochost_client(DocHost*) DECLSPEC_HIDDEN;
254
255 void IEHTMLWindow_Init(DocHost*) DECLSPEC_HIDDEN;
256 void NewWindowManager_Init(DocHost*) DECLSPEC_HIDDEN;
257
258 void HlinkFrame_Init(HlinkFrame*,IUnknown*,DocHost*) DECLSPEC_HIDDEN;
259 BOOL HlinkFrame_QI(HlinkFrame*,REFIID,void**) DECLSPEC_HIDDEN;
260
261 HRESULT create_browser_service(DocHost*,ShellBrowser**) DECLSPEC_HIDDEN;
262 void detach_browser_service(ShellBrowser*) DECLSPEC_HIDDEN;
263 HRESULT create_shell_ui_helper(IShellUIHelper2**) DECLSPEC_HIDDEN;
264
265 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*) DECLSPEC_HIDDEN;
266 void ConnectionPointContainer_Destroy(ConnectionPointContainer*) DECLSPEC_HIDDEN;
267
268 void call_sink(ConnectionPoint*,DISPID,DISPPARAMS*) DECLSPEC_HIDDEN;
269 HRESULT navigate_url(DocHost*,LPCWSTR,const VARIANT*,const VARIANT*,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
270 HRESULT go_home(DocHost*) DECLSPEC_HIDDEN;
271 HRESULT go_back(DocHost*) DECLSPEC_HIDDEN;
272 HRESULT go_forward(DocHost*) DECLSPEC_HIDDEN;
273 HRESULT refresh_document(DocHost*) DECLSPEC_HIDDEN;
274 HRESULT get_location_url(DocHost*,BSTR*) DECLSPEC_HIDDEN;
275 HRESULT set_dochost_url(DocHost*,const WCHAR*) DECLSPEC_HIDDEN;
276 void handle_navigation_error(DocHost*,HRESULT,BSTR,IHTMLWindow2*) DECLSPEC_HIDDEN;
277 HRESULT dochost_object_available(DocHost*,IUnknown*) DECLSPEC_HIDDEN;
278 void set_doc_state(DocHost*,READYSTATE) DECLSPEC_HIDDEN;
279 void deactivate_document(DocHost*) DECLSPEC_HIDDEN;
280 void create_doc_view_hwnd(DocHost*) DECLSPEC_HIDDEN;
281
282 #define WM_DOCHOSTTASK (WM_USER+0x300)
283 void push_dochost_task(DocHost*,task_header_t*,task_proc_t,task_destr_t,BOOL) DECLSPEC_HIDDEN;
284 void abort_dochost_tasks(DocHost*,task_proc_t) DECLSPEC_HIDDEN;
285 LRESULT process_dochost_tasks(DocHost*) DECLSPEC_HIDDEN;
286
287 void InternetExplorer_WebBrowser_Init(InternetExplorer*) DECLSPEC_HIDDEN;
288 HRESULT update_ie_statustext(InternetExplorer*, LPCWSTR) DECLSPEC_HIDDEN;
289 void released_obj(void) DECLSPEC_HIDDEN;
290
291 void register_iewindow_class(void) DECLSPEC_HIDDEN;
292 void unregister_iewindow_class(void) DECLSPEC_HIDDEN;
293
294 #define TID_LIST \
295     XCLSID(WebBrowser) \
296     XCLSID(WebBrowser_V1) \
297     XIID(IWebBrowser2)
298
299 typedef enum {
300 #define XIID(iface) iface ## _tid,
301 #define XCLSID(class) class ## _tid,
302 TID_LIST
303 #undef XIID
304 #undef XCLSID
305     LAST_tid
306 } tid_t;
307
308 HRESULT get_typeinfo(tid_t,ITypeInfo**) DECLSPEC_HIDDEN;
309 HRESULT register_class_object(BOOL) DECLSPEC_HIDDEN;
310
311 HRESULT WINAPI CUrlHistory_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
312 HRESULT WINAPI InternetExplorer_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
313 HRESULT WINAPI InternetShortcut_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
314 HRESULT WINAPI WebBrowser_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
315 HRESULT WINAPI WebBrowserV1_Create(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
316
317 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
318
319 extern LONG module_ref DECLSPEC_HIDDEN;
320 extern HINSTANCE ieframe_instance DECLSPEC_HIDDEN;
321
322 static inline void lock_module(void) {
323     InterlockedIncrement(&module_ref);
324 }
325
326 static inline void unlock_module(void) {
327     InterlockedDecrement(&module_ref);
328 }
329
330 static inline void *heap_alloc(size_t len)
331 {
332     return HeapAlloc(GetProcessHeap(), 0, len);
333 }
334
335 static inline void *heap_alloc_zero(size_t len)
336 {
337     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
338 }
339
340 static inline void *heap_realloc(void *mem, size_t len)
341 {
342     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
343 }
344
345 static inline BOOL heap_free(void *mem)
346 {
347     return HeapFree(GetProcessHeap(), 0, mem);
348 }
349
350 static inline LPWSTR heap_strdupW(LPCWSTR str)
351 {
352     LPWSTR ret = NULL;
353
354     if(str) {
355         DWORD size;
356
357         size = (strlenW(str)+1)*sizeof(WCHAR);
358         ret = heap_alloc(size);
359         if(ret)
360             memcpy(ret, str, size);
361     }
362
363     return ret;
364 }
365
366 static inline LPWSTR co_strdupW(LPCWSTR str)
367 {
368     WCHAR *ret = CoTaskMemAlloc((strlenW(str) + 1)*sizeof(WCHAR));
369     if (ret)
370         lstrcpyW(ret, str);
371     return ret;
372 }
373
374 static inline LPWSTR co_strdupAtoW(LPCSTR str)
375 {
376     INT len;
377     WCHAR *ret;
378     len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
379     ret = CoTaskMemAlloc(len*sizeof(WCHAR));
380     if (ret)
381         MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
382     return ret;
383 }
384
385 static inline LPSTR co_strdupWtoA(LPCWSTR str)
386 {
387     INT len;
388     CHAR *ret;
389     len = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, 0, 0);
390     ret = CoTaskMemAlloc(len);
391     if (ret)
392         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, len, 0, 0);
393     return ret;
394 }