shdocvw: Implement IEWinMain using a simple window frame.
[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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #ifndef __WINE_SHDOCVW_H
23 #define __WINE_SHDOCVW_H
24
25 #define COM_NO_WINDOWS_H
26 #define COBJMACROS
27
28 #include <stdarg.h>
29
30 #include "windef.h"
31 #include "winbase.h"
32 #include "wingdi.h"
33 #include "winuser.h"
34
35 #include "ole2.h"
36 #include "olectl.h"
37 #include "shlobj.h"
38 #include "exdisp.h"
39 #include "mshtmhst.h"
40 #include "hlink.h"
41
42 /**********************************************************************
43  * IClassFactory declaration for SHDOCVW.DLL
44  */
45 typedef struct
46 {
47     /* IUnknown fields */
48     const IClassFactoryVtbl *lpVtbl;
49     LONG ref;
50 } IClassFactoryImpl;
51
52 extern IClassFactoryImpl SHDOCVW_ClassFactory;
53
54 /**********************************************************************
55  * Shell Instance Objects
56  */
57 extern HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid, 
58     REFIID riid, LPVOID *ppvClassObj);
59
60 /**********************************************************************
61  * WebBrowser declaration for SHDOCVW.DLL
62  */
63
64 typedef struct ConnectionPoint ConnectionPoint;
65
66 typedef struct {
67     /* Interfaces available via WebBrowser object */
68
69     const IWebBrowser2Vtbl              *lpWebBrowser2Vtbl;
70     const IOleObjectVtbl                *lpOleObjectVtbl;
71     const IOleInPlaceObjectVtbl         *lpOleInPlaceObjectVtbl;
72     const IOleControlVtbl               *lpOleControlVtbl;
73     const IPersistStorageVtbl           *lpPersistStorageVtbl;
74     const IPersistStreamInitVtbl        *lpPersistStreamInitVtbl;
75     const IProvideClassInfo2Vtbl        *lpProvideClassInfoVtbl;
76     const IConnectionPointContainerVtbl *lpConnectionPointContainerVtbl;
77     const IViewObject2Vtbl              *lpViewObjectVtbl;
78     const IOleInPlaceActiveObjectVtbl   *lpOleInPlaceActiveObjectVtbl;
79     const IOleCommandTargetVtbl         *lpWBOleCommandTargetVtbl;
80     const IHlinkFrameVtbl               *lpHlinkFrameVtbl;
81
82     /* Interfaces available for embeded document */
83
84     const IOleClientSiteVtbl            *lpOleClientSiteVtbl;
85     const IOleInPlaceSiteVtbl           *lpOleInPlaceSiteVtbl;
86     const IDocHostUIHandler2Vtbl        *lpDocHostUIHandlerVtbl;
87     const IOleDocumentSiteVtbl          *lpOleDocumentSiteVtbl;
88     const IOleCommandTargetVtbl         *lpClOleCommandTargetVtbl;
89     const IDispatchVtbl                 *lpDispatchVtbl;
90     const IServiceProviderVtbl          *lpClServiceProviderVtbl;
91
92     /* Interfaces of InPlaceFrame object */
93
94     const IOleInPlaceFrameVtbl          *lpOleInPlaceFrameVtbl;
95
96     LONG ref;
97
98     IUnknown *document;
99
100     IOleClientSite *client;
101     IOleContainer *container;
102     IOleDocumentView *view;
103     IDocHostUIHandler *hostui;
104
105     LPOLESTR url;
106
107     /* window context */
108
109     HWND iphwnd;
110     HWND frame_hwnd;
111     IOleInPlaceFrame *frame;
112     IOleInPlaceUIWindow *uiwindow;
113     RECT pos_rect;
114     RECT clip_rect;
115     OLEINPLACEFRAMEINFO frameinfo;
116
117     HWND doc_view_hwnd;
118     HWND shell_embedding_hwnd;
119
120     /* Connection points */
121
122     ConnectionPoint *cp_wbe2;
123     ConnectionPoint *cp_wbe;
124     ConnectionPoint *cp_pns;
125 } WebBrowser;
126
127 #define WEBBROWSER(x)   ((IWebBrowser*)                 &(x)->lpWebBrowser2Vtbl)
128 #define WEBBROWSER2(x)  ((IWebBrowser2*)                &(x)->lpWebBrowser2Vtbl)
129 #define OLEOBJ(x)       ((IOleObject*)                  &(x)->lpOleObjectVtbl)
130 #define INPLACEOBJ(x)   ((IOleInPlaceObject*)           &(x)->lpOleInPlaceObjectVtbl)
131 #define CONTROL(x)      ((IOleControl*)                 &(x)->lpOleControlVtbl)
132 #define PERSTORAGE(x)   ((IPersistStorage*)             &(x)->lpPersistStorageVtbl)
133 #define PERSTRINIT(x)   ((IPersistStreamInit*)          &(x)->lpPersistStreamInitVtbl)
134 #define CLASSINFO(x)    ((IProvideClassInfo2*)          &(x)->lpProvideClassInfoVtbl)
135 #define CONPTCONT(x)    ((IConnectionPointContainer*)   &(x)->lpConnectionPointContainerVtbl)
136 #define VIEWOBJ(x)      ((IViewObject*)                 &(x)->lpViewObjectVtbl);
137 #define VIEWOBJ2(x)     ((IViewObject2*)                &(x)->lpViewObjectVtbl);
138 #define ACTIVEOBJ(x)    ((IOleInPlaceActiveObject*)     &(x)->lpOleInPlaceActiveObjectVtbl)
139 #define WBOLECMD(x)     ((IOleCommandTarget*)           &(x)->lpWBOleCommandTargetVtbl)
140 #define HLINKFRAME(x)   ((IHlinkFrame*)                 &(x)->lpHlinkFrameVtbl)
141
142 #define CLIENTSITE(x)   ((IOleClientSite*)              &(x)->lpOleClientSiteVtbl)
143 #define INPLACESITE(x)  ((IOleInPlaceSite*)             &(x)->lpOleInPlaceSiteVtbl)
144 #define DOCHOSTUI(x)    ((IDocHostUIHandler*)           &(x)->lpDocHostUIHandlerVtbl)
145 #define DOCHOSTUI2(x)   ((IDocHostUIHandler2*)          &(x)->lpDocHostUIHandlerVtbl)
146 #define DOCSITE(x)      ((IOleDocumentSite*)            &(x)->lpOleDocumentSiteVtbl)
147 #define CLOLECMD(x)     ((IOleCommandTarget*)           &(x)->lpClOleCommandTargetVtbl)
148 #define CLDISP(x)       ((IDispatch*)                   &(x)->lpDispatchVtbl)
149 #define CLSERVPROV(x)   ((IServiceProvider*)            &(x)->lpClServiceProviderVtbl)
150
151 #define INPLACEFRAME(x) ((IOleInPlaceFrame*)            &(x)->lpOleInPlaceFrameVtbl)
152
153 void WebBrowser_OleObject_Init(WebBrowser*);
154 void WebBrowser_ViewObject_Init(WebBrowser*);
155 void WebBrowser_Persist_Init(WebBrowser*);
156 void WebBrowser_ClassInfo_Init(WebBrowser*);
157 void WebBrowser_Events_Init(WebBrowser*);
158 void WebBrowser_HlinkFrame_Init(WebBrowser*);
159
160 void WebBrowser_ClientSite_Init(WebBrowser*);
161 void WebBrowser_DocHost_Init(WebBrowser*);
162
163 void WebBrowser_Frame_Init(WebBrowser*);
164
165 void WebBrowser_OleObject_Destroy(WebBrowser*);
166 void WebBrowser_Events_Destroy(WebBrowser*);
167 void WebBrowser_ClientSite_Destroy(WebBrowser*);
168
169 HRESULT WebBrowser_Create(IUnknown*,REFIID,void**);
170
171 void create_doc_view_hwnd(WebBrowser *This);
172 void deactivate_document(WebBrowser*);
173 void call_sink(ConnectionPoint*,DISPID,DISPPARAMS*);
174 HRESULT navigate_url(WebBrowser*,LPCWSTR,PBYTE,ULONG,LPWSTR);
175
176 #define WB_WM_NAVIGATE2 (WM_USER+100)
177
178 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
179
180 /**********************************************************************
181  * Dll lifetime tracking declaration for shdocvw.dll
182  */
183 extern LONG SHDOCVW_refCount;
184 static inline void SHDOCVW_LockModule(void) { InterlockedIncrement( &SHDOCVW_refCount ); }
185 static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_refCount ); }
186
187 extern HINSTANCE shdocvw_hinstance;
188 extern void register_iewindow_class(void);
189 extern void unregister_iewindow_class(void);
190 extern BOOL create_ie_window(LPCWSTR url);
191
192 #endif /* __WINE_SHDOCVW_H */