mshtml: Moved content_window to HTMLFrameBase.
[wine] / dlls / mshtml / htmlframebase.c
1 /*
2  * Copyright 2008 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <stdarg.h>
20
21 #define COBJMACROS
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "ole2.h"
27
28 #include "mshtml_private.h"
29
30 #include "wine/debug.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
33
34 #define HTMLFRAMEBASE_THIS(iface) DEFINE_THIS(HTMLFrameBase, IHTMLFrameBase, iface)
35
36 static HRESULT WINAPI HTMLFrameBase_QueryInterface(IHTMLFrameBase *iface, REFIID riid, void **ppv)
37 {
38     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
39
40     return IHTMLDOMNode_QueryInterface(HTMLDOMNODE(&This->element.node), riid, ppv);
41 }
42
43 static ULONG WINAPI HTMLFrameBase_AddRef(IHTMLFrameBase *iface)
44 {
45     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
46
47     return IHTMLDOMNode_AddRef(HTMLDOMNODE(&This->element.node));
48 }
49
50 static ULONG WINAPI HTMLFrameBase_Release(IHTMLFrameBase *iface)
51 {
52     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
53
54     return IHTMLDOMNode_Release(HTMLDOMNODE(&This->element.node));
55 }
56
57 static HRESULT WINAPI HTMLFrameBase_GetTypeInfoCount(IHTMLFrameBase *iface, UINT *pctinfo)
58 {
59     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
60
61     return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->element.node.dispex), pctinfo);
62 }
63
64 static HRESULT WINAPI HTMLFrameBase_GetTypeInfo(IHTMLFrameBase *iface, UINT iTInfo,
65         LCID lcid, ITypeInfo **ppTInfo)
66 {
67     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
68
69     return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->element.node.dispex), iTInfo, lcid, ppTInfo);
70 }
71
72 static HRESULT WINAPI HTMLFrameBase_GetIDsOfNames(IHTMLFrameBase *iface, REFIID riid,
73         LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
74 {
75     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
76
77     return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->element.node.dispex), riid, rgszNames,
78             cNames, lcid, rgDispId);
79 }
80
81 static HRESULT WINAPI HTMLFrameBase_Invoke(IHTMLFrameBase *iface, DISPID dispIdMember,
82         REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
83         VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
84 {
85     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
86
87     return IDispatchEx_Invoke(DISPATCHEX(&This->element.node.dispex), dispIdMember, riid, lcid,
88             wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
89 }
90
91 static HRESULT WINAPI HTMLFrameBase_put_src(IHTMLFrameBase *iface, BSTR v)
92 {
93     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
94     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
95     return E_NOTIMPL;
96 }
97
98 static HRESULT WINAPI HTMLFrameBase_get_src(IHTMLFrameBase *iface, BSTR *p)
99 {
100     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
101     FIXME("(%p)->(%p)\n", This, p);
102     return E_NOTIMPL;
103 }
104
105 static HRESULT WINAPI HTMLFrameBase_put_name(IHTMLFrameBase *iface, BSTR v)
106 {
107     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
108     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
109     return E_NOTIMPL;
110 }
111
112 static HRESULT WINAPI HTMLFrameBase_get_name(IHTMLFrameBase *iface, BSTR *p)
113 {
114     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
115     FIXME("(%p)->(%p)\n", This, p);
116     return E_NOTIMPL;
117 }
118
119 static HRESULT WINAPI HTMLFrameBase_put_border(IHTMLFrameBase *iface, VARIANT v)
120 {
121     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
122     FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
123     return E_NOTIMPL;
124 }
125
126 static HRESULT WINAPI HTMLFrameBase_get_border(IHTMLFrameBase *iface, VARIANT *p)
127 {
128     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
129     FIXME("(%p)->(%p)\n", This, p);
130     return E_NOTIMPL;
131 }
132
133 static HRESULT WINAPI HTMLFrameBase_put_frameBorder(IHTMLFrameBase *iface, BSTR v)
134 {
135     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
136     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
137     return E_NOTIMPL;
138 }
139
140 static HRESULT WINAPI HTMLFrameBase_get_frameBorder(IHTMLFrameBase *iface, BSTR *p)
141 {
142     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
143     FIXME("(%p)->(%p)\n", This, p);
144     return E_NOTIMPL;
145 }
146
147 static HRESULT WINAPI HTMLFrameBase_put_frameSpacing(IHTMLFrameBase *iface, VARIANT v)
148 {
149     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
150     FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
151     return E_NOTIMPL;
152 }
153
154 static HRESULT WINAPI HTMLFrameBase_get_frameSpacing(IHTMLFrameBase *iface, VARIANT *p)
155 {
156     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
157     FIXME("(%p)->(%p)\n", This, p);
158     return E_NOTIMPL;
159 }
160
161 static HRESULT WINAPI HTMLFrameBase_put_marginWidth(IHTMLFrameBase *iface, VARIANT v)
162 {
163     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
164     FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
165     return E_NOTIMPL;
166 }
167
168 static HRESULT WINAPI HTMLFrameBase_get_marginWidth(IHTMLFrameBase *iface, VARIANT *p)
169 {
170     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
171     FIXME("(%p)->(%p)\n", This, p);
172     return E_NOTIMPL;
173 }
174
175 static HRESULT WINAPI HTMLFrameBase_put_marginHeight(IHTMLFrameBase *iface, VARIANT v)
176 {
177     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
178     FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
179     return E_NOTIMPL;
180 }
181
182 static HRESULT WINAPI HTMLFrameBase_get_marginHeight(IHTMLFrameBase *iface, VARIANT *p)
183 {
184     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
185     FIXME("(%p)->(%p)\n", This, p);
186     return E_NOTIMPL;
187 }
188
189 static HRESULT WINAPI HTMLFrameBase_put_noResize(IHTMLFrameBase *iface, VARIANT_BOOL v)
190 {
191     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
192     FIXME("(%p)->(%x)\n", This, v);
193     return E_NOTIMPL;
194 }
195
196 static HRESULT WINAPI HTMLFrameBase_get_noResize(IHTMLFrameBase *iface, VARIANT_BOOL *p)
197 {
198     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
199     FIXME("(%p)->(%p)\n", This, p);
200     return E_NOTIMPL;
201 }
202
203 static HRESULT WINAPI HTMLFrameBase_put_scrolling(IHTMLFrameBase *iface, BSTR v)
204 {
205     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
206     FIXME("(%p)->(%s)\n", This, debugstr_w(v));
207     return E_NOTIMPL;
208 }
209
210 static HRESULT WINAPI HTMLFrameBase_get_scrolling(IHTMLFrameBase *iface, BSTR *p)
211 {
212     HTMLFrameBase *This = HTMLFRAMEBASE_THIS(iface);
213     FIXME("(%p)->(%p)\n", This, p);
214     return E_NOTIMPL;
215 }
216
217 static const IHTMLFrameBaseVtbl HTMLFrameBaseVtbl = {
218     HTMLFrameBase_QueryInterface,
219     HTMLFrameBase_AddRef,
220     HTMLFrameBase_Release,
221     HTMLFrameBase_GetTypeInfoCount,
222     HTMLFrameBase_GetTypeInfo,
223     HTMLFrameBase_GetIDsOfNames,
224     HTMLFrameBase_Invoke,
225     HTMLFrameBase_put_src,
226     HTMLFrameBase_get_src,
227     HTMLFrameBase_put_name,
228     HTMLFrameBase_get_name,
229     HTMLFrameBase_put_border,
230     HTMLFrameBase_get_border,
231     HTMLFrameBase_put_frameBorder,
232     HTMLFrameBase_get_frameBorder,
233     HTMLFrameBase_put_frameSpacing,
234     HTMLFrameBase_get_frameSpacing,
235     HTMLFrameBase_put_marginWidth,
236     HTMLFrameBase_get_marginWidth,
237     HTMLFrameBase_put_marginHeight,
238     HTMLFrameBase_get_marginHeight,
239     HTMLFrameBase_put_noResize,
240     HTMLFrameBase_get_noResize,
241     HTMLFrameBase_put_scrolling,
242     HTMLFrameBase_get_scrolling
243 };
244
245 HRESULT HTMLFrameBase_QI(HTMLFrameBase *This, REFIID riid, void **ppv)
246 {
247     if(IsEqualGUID(&IID_IHTMLFrameBase, riid)) {
248         TRACE("(%p)->(IID_IHTMLFrameBase %p)\n", This, ppv);
249         *ppv = HTMLFRAMEBASE(This);
250     }else {
251         return HTMLElement_QI(&This->element.node, riid, ppv);
252     }
253
254     IUnknown_AddRef((IUnknown*)*ppv);
255     return S_OK;
256 }
257
258 void HTMLFrameBase_destructor(HTMLFrameBase *This)
259 {
260     if(This->content_window)
261         IHTMLWindow2_Release(HTMLWINDOW2(This->content_window));
262
263     HTMLElement_destructor(&This->element.node);
264 }
265
266 void HTMLFrameBase_Init(HTMLFrameBase *This, HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem,
267         HTMLWindow *content_window, dispex_static_data_t *dispex_data)
268 {
269     This->lpIHTMLFrameBaseVtbl = &HTMLFrameBaseVtbl;
270
271     HTMLElement_Init(&This->element, doc, nselem, dispex_data);
272
273     if(content_window)
274         IHTMLWindow2_AddRef(HTMLWINDOW2(content_window));
275     This->content_window = content_window;
276 }