user32: Use the stored color and mask bitmaps instead of the raw bits in GetIconInfo.
[wine] / dlls / shdocvw / shdocvw.h
1 /*
2  * Header includes for shdocvw.dll
3  *
4  * Copyright 2001 John R. Sheets (for CodeWeavers)
5  * Copyright 2005-2006 Jacek Caban for CodeWeavers
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #ifndef __WINE_SHDOCVW_H
23 #define __WINE_SHDOCVW_H
24
25 #define COBJMACROS
26
27 #include <stdarg.h>
28
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
33
34 #include "ole2.h"
35 #include "olectl.h"
36 #include "shlobj.h"
37 #include "exdisp.h"
38 #include "mshtmhst.h"
39 #include "hlink.h"
40
41 #include "wine/unicode.h"
42
43 /**********************************************************************
44  * Shell Instance Objects
45  */
46 extern HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid, 
47     REFIID riid, LPVOID *ppvClassObj);
48
49 /**********************************************************************
50  * WebBrowser declaration for SHDOCVW.DLL
51  */
52
53 typedef struct ConnectionPoint ConnectionPoint;
54 typedef struct DocHost DocHost;
55
56 typedef struct {
57     const IConnectionPointContainerVtbl *lpConnectionPointContainerVtbl;
58
59     ConnectionPoint *wbe2;
60     ConnectionPoint *wbe;
61     ConnectionPoint *pns;
62
63     IUnknown *impl;
64 } ConnectionPointContainer;
65
66 struct _task_header_t;
67
68 typedef void (*task_proc_t)(DocHost*, struct _task_header_t*);
69
70 typedef struct _task_header_t {
71     task_proc_t proc;
72 } task_header_t;
73
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 IPropertyNotifySinkVtbl *lpIPropertyNotifySinkVtbl;
82     const IServiceProviderVtbl    *lpServiceProviderVtbl;
83
84     /* Interfaces of InPlaceFrame object */
85     const IOleInPlaceFrameVtbl          *lpOleInPlaceFrameVtbl;
86
87     IDispatch *disp;
88
89     IDispatch *client_disp;
90     IDocHostUIHandler *hostui;
91     IOleInPlaceFrame *frame;
92
93     IUnknown *document;
94     IOleDocumentView *view;
95     IUnknown *doc_navigate;
96
97     HWND hwnd;
98     HWND frame_hwnd;
99
100     LPOLESTR url;
101
102     VARIANT_BOOL silent;
103     VARIANT_BOOL offline;
104     VARIANT_BOOL busy;
105
106     READYSTATE ready_state;
107     READYSTATE doc_state;
108     DWORD prop_notif_cookie;
109     BOOL is_prop_notif;
110
111     ConnectionPointContainer cps;
112 };
113
114 struct WebBrowser {
115     /* Interfaces available via WebBrowser object */
116
117     const IWebBrowser2Vtbl              *lpWebBrowser2Vtbl;
118     const IOleObjectVtbl                *lpOleObjectVtbl;
119     const IOleInPlaceObjectVtbl         *lpOleInPlaceObjectVtbl;
120     const IOleControlVtbl               *lpOleControlVtbl;
121     const IPersistStorageVtbl           *lpPersistStorageVtbl;
122     const IPersistMemoryVtbl            *lpPersistMemoryVtbl;
123     const IPersistStreamInitVtbl        *lpPersistStreamInitVtbl;
124     const IProvideClassInfo2Vtbl        *lpProvideClassInfoVtbl;
125     const IViewObject2Vtbl              *lpViewObjectVtbl;
126     const IOleInPlaceActiveObjectVtbl   *lpOleInPlaceActiveObjectVtbl;
127     const IOleCommandTargetVtbl         *lpOleCommandTargetVtbl;
128     const IHlinkFrameVtbl               *lpHlinkFrameVtbl;
129     const IServiceProviderVtbl          *lpServiceProviderVtbl;
130     const IDataObjectVtbl               *lpDataObjectVtbl;
131
132     LONG ref;
133
134     INT version;
135
136     IOleClientSite *client;
137     IOleContainer *container;
138     IOleInPlaceSite *inplace;
139
140     /* window context */
141
142     HWND frame_hwnd;
143     IOleInPlaceUIWindow *uiwindow;
144     RECT pos_rect;
145     RECT clip_rect;
146     OLEINPLACEFRAMEINFO frameinfo;
147     SIZEL extent;
148
149     HWND shell_embedding_hwnd;
150
151     VARIANT_BOOL register_browser;
152     VARIANT_BOOL visible;
153     VARIANT_BOOL menu_bar;
154     VARIANT_BOOL address_bar;
155     VARIANT_BOOL status_bar;
156     VARIANT_BOOL tool_bar;
157     VARIANT_BOOL full_screen;
158     VARIANT_BOOL theater_mode;
159
160     DocHost doc_host;
161 };
162
163 struct InternetExplorer {
164     const IWebBrowser2Vtbl *lpWebBrowser2Vtbl;
165
166     LONG ref;
167
168     HWND frame_hwnd;
169
170     DocHost doc_host;
171 };
172
173 #define WEBBROWSER(x)   ((IWebBrowser*)                 &(x)->lpWebBrowser2Vtbl)
174 #define WEBBROWSER2(x)  ((IWebBrowser2*)                &(x)->lpWebBrowser2Vtbl)
175 #define OLEOBJ(x)       ((IOleObject*)                  &(x)->lpOleObjectVtbl)
176 #define INPLACEOBJ(x)   ((IOleInPlaceObject*)           &(x)->lpOleInPlaceObjectVtbl)
177 #define CONTROL(x)      ((IOleControl*)                 &(x)->lpOleControlVtbl)
178 #define PERSTORAGE(x)   ((IPersistStorage*)             &(x)->lpPersistStorageVtbl)
179 #define PERMEMORY(x)    ((IPersistMemory*)              &(x)->lpPersistMemoryVtbl)
180 #define PERSTRINIT(x)   ((IPersistStreamInit*)          &(x)->lpPersistStreamInitVtbl)
181 #define CLASSINFO(x)    ((IProvideClassInfo2*)          &(x)->lpProvideClassInfoVtbl)
182 #define CONPTCONT(x)    ((IConnectionPointContainer*)   &(x)->lpConnectionPointContainerVtbl)
183 #define VIEWOBJ(x)      ((IViewObject*)                 &(x)->lpViewObjectVtbl);
184 #define VIEWOBJ2(x)     ((IViewObject2*)                &(x)->lpViewObjectVtbl);
185 #define ACTIVEOBJ(x)    ((IOleInPlaceActiveObject*)     &(x)->lpOleInPlaceActiveObjectVtbl)
186 #define OLECMD(x)       ((IOleCommandTarget*)           &(x)->lpOleCommandTargetVtbl)
187 #define HLINKFRAME(x)   ((IHlinkFrame*)                 &(x)->lpHlinkFrameVtbl)
188 #define DATAOBJECT(x)   ((IDataObject*)                 &(x)->lpDataObjectVtbl)
189
190 #define CLIENTSITE(x)   ((IOleClientSite*)              &(x)->lpOleClientSiteVtbl)
191 #define INPLACESITE(x)  ((IOleInPlaceSite*)             &(x)->lpOleInPlaceSiteVtbl)
192 #define DOCHOSTUI(x)    ((IDocHostUIHandler*)           &(x)->lpDocHostUIHandlerVtbl)
193 #define DOCHOSTUI2(x)   ((IDocHostUIHandler2*)          &(x)->lpDocHostUIHandlerVtbl)
194 #define DOCSITE(x)      ((IOleDocumentSite*)            &(x)->lpOleDocumentSiteVtbl)
195 #define CLDISP(x)       ((IDispatch*)                   &(x)->lpDispatchVtbl)
196 #define PROPNOTIF(x)    ((IPropertyNotifySink*)         &(x)->lpIPropertyNotifySinkVtbl)
197 #define SERVPROV(x)     ((IServiceProvider*)            &(x)->lpServiceProviderVtbl)
198
199 #define INPLACEFRAME(x) ((IOleInPlaceFrame*)            &(x)->lpOleInPlaceFrameVtbl)
200
201 void WebBrowser_OleObject_Init(WebBrowser*);
202 void WebBrowser_ViewObject_Init(WebBrowser*);
203 void WebBrowser_DataObject_Init(WebBrowser*);
204 void WebBrowser_Persist_Init(WebBrowser*);
205 void WebBrowser_ClassInfo_Init(WebBrowser*);
206 void WebBrowser_HlinkFrame_Init(WebBrowser*);
207
208 void WebBrowser_OleObject_Destroy(WebBrowser*);
209
210 void DocHost_Init(DocHost*,IDispatch*);
211 void DocHost_ClientSite_Init(DocHost*);
212 void DocHost_Frame_Init(DocHost*);
213 void release_dochost_client(DocHost*);
214
215 void DocHost_Release(DocHost*);
216 void DocHost_ClientSite_Release(DocHost*);
217
218 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*);
219 void ConnectionPointContainer_Destroy(ConnectionPointContainer*);
220
221 HRESULT WebBrowserV1_Create(IUnknown*,REFIID,void**);
222 HRESULT WebBrowserV2_Create(IUnknown*,REFIID,void**);
223
224 void create_doc_view_hwnd(DocHost*);
225 void deactivate_document(DocHost*);
226 HRESULT dochost_object_available(DocHost*,IUnknown*);
227 void call_sink(ConnectionPoint*,DISPID,DISPPARAMS*);
228 HRESULT navigate_url(DocHost*,LPCWSTR,const VARIANT*,const VARIANT*,VARIANT*,VARIANT*);
229 HRESULT go_home(DocHost*);
230 void set_doc_state(DocHost*,READYSTATE);
231
232 #define WM_DOCHOSTTASK (WM_USER+0x300)
233 void push_dochost_task(DocHost*,task_header_t*,task_proc_t,BOOL);
234 LRESULT  process_dochost_task(DocHost*,LPARAM);
235
236 HRESULT InternetExplorer_Create(IUnknown*,REFIID,void**);
237 void InternetExplorer_WebBrowser_Init(InternetExplorer*);
238
239 HRESULT CUrlHistory_Create(IUnknown*,REFIID,void**);
240
241 HRESULT InternetShortcut_Create(IUnknown*,REFIID,void**);
242
243 HRESULT TaskbarList_Create(IUnknown*,REFIID,void**);
244
245 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
246
247 /**********************************************************************
248  * Dll lifetime tracking declaration for shdocvw.dll
249  */
250 extern LONG SHDOCVW_refCount;
251 static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
252 static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
253
254 extern HINSTANCE shdocvw_hinstance;
255 extern void register_iewindow_class(void);
256 extern void unregister_iewindow_class(void);
257
258 HRESULT register_class_object(BOOL);
259 HRESULT get_typeinfo(ITypeInfo**);
260 DWORD register_iexplore(BOOL);
261
262 const char *debugstr_variant(const VARIANT*);
263
264 /* memory allocation functions */
265
266 static inline void *heap_alloc(size_t len)
267 {
268     return HeapAlloc(GetProcessHeap(), 0, len);
269 }
270
271 static inline void *heap_alloc_zero(size_t len)
272 {
273     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
274 }
275
276 static inline void *heap_realloc(void *mem, size_t len)
277 {
278     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
279 }
280
281 static inline BOOL heap_free(void *mem)
282 {
283     return HeapFree(GetProcessHeap(), 0, mem);
284 }
285
286 static inline LPWSTR heap_strdupW(LPCWSTR str)
287 {
288     LPWSTR ret = NULL;
289
290     if(str) {
291         DWORD size;
292
293         size = (strlenW(str)+1)*sizeof(WCHAR);
294         ret = heap_alloc(size);
295         memcpy(ret, str, size);
296     }
297
298     return ret;
299 }
300
301 static inline LPWSTR co_strdupW(LPCWSTR str)
302 {
303     WCHAR *ret = CoTaskMemAlloc((strlenW(str) + 1)*sizeof(WCHAR));
304     if (ret)
305         lstrcpyW(ret, str);
306     return ret;
307 }
308
309 static inline LPWSTR co_strdupAtoW(LPCSTR str)
310 {
311     INT len;
312     WCHAR *ret;
313     len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
314     ret = CoTaskMemAlloc(len*sizeof(WCHAR));
315     if (ret)
316         MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
317     return ret;
318 }
319
320 static inline LPSTR co_strdupWtoA(LPCWSTR str)
321 {
322     INT len;
323     CHAR *ret;
324     len = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, 0, 0);
325     ret = CoTaskMemAlloc(len);
326     if (ret)
327         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, len, 0, 0);
328     return ret;
329 }
330
331 #endif /* __WINE_SHDOCVW_H */