comctl32: A couple fixes for tab icon offsets.
[wine] / dlls / mshtml / mshtml_private.h
1 /*
2  * Copyright 2005-2006 Jacek Caban for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include "docobj.h"
20 #include "mshtml.h"
21 #include "mshtmhst.h"
22 #include "hlink.h"
23
24 #ifdef INIT_GUID
25 #include "initguid.h"
26 #endif
27
28 #include "nsiface.h"
29
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)
37
38 #define NS_FAILED(res) ((res) & 0x80000000)
39 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
40
41 #define NSAPI WINAPI
42
43 #define NS_ELEMENT_NODE   1
44 #define NS_DOCUMENT_NODE  9
45
46 typedef struct BindStatusCallback BindStatusCallback;
47 typedef struct HTMLDOMNode HTMLDOMNode;
48
49 typedef struct {
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;
65
66     LONG ref;
67
68     NSContainer *nscontainer;
69
70     IOleClientSite *client;
71     IDocHostUIHandler *hostui;
72     IOleInPlaceSite *ipsite;
73     IOleInPlaceFrame *frame;
74
75     HWND hwnd;
76
77     BOOL in_place_active;
78     BOOL ui_active;
79     BOOL window_active;
80     BOOL has_key_path;
81     BOOL container_locked;
82
83     BindStatusCallback *status_callback;
84
85     HTMLDOMNode *nodes;
86 } HTMLDocument;
87
88 struct NSContainer {
89     const nsIWebBrowserChromeVtbl     *lpWebBrowserChromeVtbl;
90     const nsIContextMenuListenerVtbl  *lpContextMenuListenerVtbl;
91     const nsIURIContentListenerVtbl   *lpURIContentListenerVtbl;
92     const nsIEmbeddingSiteWindowVtbl  *lpEmbeddingSiteWindowVtbl;
93     const nsIInterfaceRequestorVtbl   *lpInterfaceRequestorVtbl;
94
95     nsIWebBrowser *webbrowser;
96     nsIWebNavigation *navigation;
97     nsIBaseWindow *window;
98     nsIWebBrowserStream *stream;
99     nsIWebBrowserFocus *focus;
100
101     LONG ref;
102
103     NSContainer *parent;
104     HTMLDocument *doc;
105
106     HWND hwnd;
107
108     BOOL load_call; /* hack */
109 };
110
111 struct HTMLDOMNode {
112     const IHTMLDOMNodeVtbl *lpHTMLDOMNodeVtbl;
113
114     void (*destructor)(IUnknown*);
115
116     enum {
117         NT_UNKNOWN,
118         NT_HTMLELEM
119     } node_type;
120
121     union {
122         IUnknown *unk;
123         IHTMLElement *elem;
124     } impl;
125
126     nsIDOMNode *nsnode;
127     HTMLDocument *doc;
128
129     HTMLDOMNode *next;
130 };
131
132 typedef struct {
133     const IHTMLElementVtbl *lpHTMLElementVtbl;
134
135     void (*destructor)(IUnknown*);
136
137     nsIDOMHTMLElement *nselem;
138     HTMLDOMNode *node;
139
140     IUnknown *impl;
141 } HTMLElement;
142
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)
163
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)
169
170 #define HTMLELEM(x)      ((IHTMLElement*)                 &(x)->lpHTMLElementVtbl)
171 #define HTMLDOMNODE(x)   ((IHTMLDOMNode*)                 &(x)->lpHTMLDOMNodeVtbl)
172
173 #define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
174
175 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
176
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*);
184
185 NSContainer *NSContainer_Create(HTMLDocument*,NSContainer*);
186 void NSContainer_Release(NSContainer*);
187
188 void HTMLDocument_LockContainer(HTMLDocument*,BOOL);
189 void HTMLDocument_ShowContextMenu(HTMLDocument*,DWORD,POINT*);
190
191 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
192
193 void close_gecko(void);
194 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*);
195 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*);
196
197 void hlink_frame_navigate(HTMLDocument*,IHlinkFrame*,LPCWSTR,nsIInputStream*,DWORD);
198
199 nsIURI *get_nsIURI(LPCWSTR);
200
201 void nsACString_Init(nsACString*,const char*);
202 PRUint32 nsACString_GetData(const nsACString*,const char**,PRBool*);
203 void nsACString_Finish(nsACString*);
204
205 void nsAString_Init(nsAString*,const PRUnichar*);
206 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**,PRBool*);
207 void nsAString_Finish(nsAString*);
208
209 nsIInputStream *create_nsstream(const char*,PRInt32);
210
211 IHlink *Hlink_Create(void);
212
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*);
218
219 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**);
220 HRESULT HTMLElement_QI(HTMLElement*,REFIID,void**);
221
222 HTMLDOMNode *get_node(HTMLDocument*,nsIDOMNode*);
223 void release_nodes(HTMLDocument*);
224
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);
230
231 extern LONG module_ref;
232 #define LOCK_MODULE()   InterlockedIncrement(&module_ref)
233 #define UNLOCK_MODULE() InterlockedDecrement(&module_ref)
234
235 extern HINSTANCE hInst;