2 * Copyright 2005-2006 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #define NS_OK ((nsresult)0x00000000L)
31 #define NS_ERROR_FAILURE ((nsresult)0x80004005L)
32 #define NS_NOINTERFACE ((nsresult)0x80004002L)
33 #define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
34 #define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
35 #define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
36 #define NS_ERROR_UNKNOWN_PROTOCOL ((nsresult)0x804b0012L)
38 #define NS_FAILED(res) ((res) & 0x80000000)
39 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
43 #define NS_ELEMENT_NODE 1
44 #define NS_DOCUMENT_NODE 9
46 typedef struct BindStatusCallback BindStatusCallback;
47 typedef struct HTMLDOMNode HTMLDOMNode;
50 const IHTMLDocument2Vtbl *lpHTMLDocument2Vtbl;
51 const IHTMLDocument3Vtbl *lpHTMLDocument3Vtbl;
52 const IPersistMonikerVtbl *lpPersistMonikerVtbl;
53 const IPersistFileVtbl *lpPersistFileVtbl;
54 const IMonikerPropVtbl *lpMonikerPropVtbl;
55 const IOleObjectVtbl *lpOleObjectVtbl;
56 const IOleDocumentVtbl *lpOleDocumentVtbl;
57 const IOleDocumentViewVtbl *lpOleDocumentViewVtbl;
58 const IOleInPlaceActiveObjectVtbl *lpOleInPlaceActiveObjectVtbl;
59 const IViewObject2Vtbl *lpViewObject2Vtbl;
60 const IOleInPlaceObjectWindowlessVtbl *lpOleInPlaceObjectWindowlessVtbl;
61 const IServiceProviderVtbl *lpServiceProviderVtbl;
62 const IOleCommandTargetVtbl *lpOleCommandTargetVtbl;
63 const IOleControlVtbl *lpOleControlVtbl;
64 const IHlinkTargetVtbl *lpHlinkTargetVtbl;
68 NSContainer *nscontainer;
70 IOleClientSite *client;
71 IDocHostUIHandler *hostui;
72 IOleInPlaceSite *ipsite;
73 IOleInPlaceFrame *frame;
81 BOOL container_locked;
83 BindStatusCallback *status_callback;
89 const nsIWebBrowserChromeVtbl *lpWebBrowserChromeVtbl;
90 const nsIContextMenuListenerVtbl *lpContextMenuListenerVtbl;
91 const nsIURIContentListenerVtbl *lpURIContentListenerVtbl;
92 const nsIEmbeddingSiteWindowVtbl *lpEmbeddingSiteWindowVtbl;
93 const nsIInterfaceRequestorVtbl *lpInterfaceRequestorVtbl;
95 nsIWebBrowser *webbrowser;
96 nsIWebNavigation *navigation;
97 nsIBaseWindow *window;
98 nsIWebBrowserStream *stream;
99 nsIWebBrowserFocus *focus;
108 BOOL load_call; /* hack */
112 const IHTMLDOMNodeVtbl *lpHTMLDOMNodeVtbl;
114 void (*destructor)(IUnknown*);
133 const IHTMLElementVtbl *lpHTMLElementVtbl;
135 void (*destructor)(IUnknown*);
137 nsIDOMHTMLElement *nselem;
143 #define HTMLDOC(x) ((IHTMLDocument2*) &(x)->lpHTMLDocument2Vtbl)
144 #define HTMLDOC3(x) ((IHTMLDocument3*) &(x)->lpHTMLDocument3Vtbl)
145 #define PERSIST(x) ((IPersist*) &(x)->lpPersistFileVtbl)
146 #define PERSISTMON(x) ((IPersistMoniker*) &(x)->lpPersistMonikerVtbl)
147 #define PERSISTFILE(x) ((IPersistFile*) &(x)->lpPersistFileVtbl)
148 #define MONPROP(x) ((IMonikerProp*) &(x)->lpMonikerPropVtbl)
149 #define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
150 #define OLEDOC(x) ((IOleDocument*) &(x)->lpOleDocumentVtbl)
151 #define DOCVIEW(x) ((IOleDocumentView*) &(x)->lpOleDocumentViewVtbl)
152 #define OLEWIN(x) ((IOleWindow*) &(x)->lpOleInPlaceActiveObjectVtbl)
153 #define ACTOBJ(x) ((IOleInPlaceActiveObject*) &(x)->lpOleInPlaceActiveObjectVtbl)
154 #define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObject2Vtbl)
155 #define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObject2Vtbl)
156 #define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
157 #define INPLACEWIN(x) ((IOleInPlaceObjectWindowless*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
158 #define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
159 #define CMDTARGET(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
160 #define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
161 #define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
162 #define HLNKTARGET(x) ((IHlinkTarget*) &(x)->lpHlinkTargetVtbl)
164 #define NSWBCHROME(x) ((nsIWebBrowserChrome*) &(x)->lpWebBrowserChromeVtbl)
165 #define NSCML(x) ((nsIContextMenuListener*) &(x)->lpContextMenuListenerVtbl)
166 #define NSURICL(x) ((nsIURIContentListener*) &(x)->lpURIContentListenerVtbl)
167 #define NSEMBWNDS(x) ((nsIEmbeddingSiteWindow*) &(x)->lpEmbeddingSiteWindowVtbl)
168 #define NSIFACEREQ(x) ((nsIInterfaceRequestor*) &(x)->lpInterfaceRequestorVtbl)
170 #define HTMLELEM(x) ((IHTMLElement*) &(x)->lpHTMLElementVtbl)
171 #define HTMLDOMNODE(x) ((IHTMLDOMNode*) &(x)->lpHTMLDOMNodeVtbl)
173 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
175 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
177 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*);
178 void HTMLDocument_Persist_Init(HTMLDocument*);
179 void HTMLDocument_OleObj_Init(HTMLDocument*);
180 void HTMLDocument_View_Init(HTMLDocument*);
181 void HTMLDocument_Window_Init(HTMLDocument*);
182 void HTMLDocument_Service_Init(HTMLDocument*);
183 void HTMLDocument_Hlink_Init(HTMLDocument*);
185 NSContainer *NSContainer_Create(HTMLDocument*,NSContainer*);
186 void NSContainer_Release(NSContainer*);
188 void HTMLDocument_LockContainer(HTMLDocument*,BOOL);
189 void HTMLDocument_ShowContextMenu(HTMLDocument*,DWORD,POINT*);
191 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
193 void close_gecko(void);
194 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*);
195 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*);
197 void hlink_frame_navigate(HTMLDocument*,IHlinkFrame*,LPCWSTR,nsIInputStream*,DWORD);
199 nsIURI *get_nsIURI(LPCWSTR);
201 void nsACString_Init(nsACString*,const char*);
202 PRUint32 nsACString_GetData(const nsACString*,const char**,PRBool*);
203 void nsACString_Finish(nsACString*);
205 void nsAString_Init(nsAString*,const PRUnichar*);
206 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**,PRBool*);
207 void nsAString_Finish(nsAString*);
209 nsIInputStream *create_nsstream(const char*,PRInt32);
211 IHlink *Hlink_Create(void);
213 void HTMLElement_Create(HTMLDOMNode*);
214 void HTMLBodyElement_Create(HTMLElement*);
215 void HTMLInputElement_Create(HTMLElement*);
216 void HTMLSelectElement_Create(HTMLElement*);
217 void HTMLTextAreaElement_Create(HTMLElement*);
219 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**);
220 HRESULT HTMLElement_QI(HTMLElement*,REFIID,void**);
222 HTMLDOMNode *get_node(HTMLDocument*,nsIDOMNode*);
223 void release_nodes(HTMLDocument*);
225 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
226 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
227 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
228 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
229 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
231 extern LONG module_ref;
232 #define LOCK_MODULE() InterlockedIncrement(&module_ref)
233 #define UNLOCK_MODULE() InterlockedDecrement(&module_ref)
235 extern HINSTANCE hInst;