2 * Copyright 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/debug.h"
30 #include "mshtml_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
37 const IHTMLInputElementVtbl
*lpHTMLInputElementVtbl
;
38 const IHTMLInputTextElementVtbl
*lpHTMLInputTextElementVtbl
;
40 nsIDOMHTMLInputElement
*nsinput
;
43 #define HTMLINPUT(x) ((IHTMLInputElement*) &(x)->lpHTMLInputElementVtbl)
44 #define HTMLINPUTTEXT(x) ((IHTMLInputTextElement*) &(x)->lpHTMLInputTextElementVtbl)
46 #define HTMLINPUT_THIS(iface) DEFINE_THIS(HTMLInputElement, HTMLInputElement, iface)
48 static HRESULT WINAPI
HTMLInputElement_QueryInterface(IHTMLInputElement
*iface
,
49 REFIID riid
, void **ppv
)
51 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
53 return IHTMLDOMNode_QueryInterface(HTMLDOMNODE(&This
->element
.node
), riid
, ppv
);
56 static ULONG WINAPI
HTMLInputElement_AddRef(IHTMLInputElement
*iface
)
58 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
60 return IHTMLDOMNode_AddRef(HTMLDOMNODE(&This
->element
.node
));
63 static ULONG WINAPI
HTMLInputElement_Release(IHTMLInputElement
*iface
)
65 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
67 return IHTMLDOMNode_Release(HTMLDOMNODE(&This
->element
.node
));
70 static HRESULT WINAPI
HTMLInputElement_GetTypeInfoCount(IHTMLInputElement
*iface
, UINT
*pctinfo
)
72 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
74 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This
->element
.node
.dispex
), pctinfo
);
77 static HRESULT WINAPI
HTMLInputElement_GetTypeInfo(IHTMLInputElement
*iface
, UINT iTInfo
,
78 LCID lcid
, ITypeInfo
**ppTInfo
)
80 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
82 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This
->element
.node
.dispex
), iTInfo
, lcid
, ppTInfo
);
85 static HRESULT WINAPI
HTMLInputElement_GetIDsOfNames(IHTMLInputElement
*iface
, REFIID riid
,
86 LPOLESTR
*rgszNames
, UINT cNames
,
87 LCID lcid
, DISPID
*rgDispId
)
89 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
91 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This
->element
.node
.dispex
), riid
, rgszNames
,
92 cNames
, lcid
, rgDispId
);
95 static HRESULT WINAPI
HTMLInputElement_Invoke(IHTMLInputElement
*iface
, DISPID dispIdMember
,
96 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
97 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
99 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
101 return IDispatchEx_Invoke(DISPATCHEX(&This
->element
.node
.dispex
), dispIdMember
, riid
, lcid
, wFlags
,
102 pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
105 static HRESULT WINAPI
HTMLInputElement_put_type(IHTMLInputElement
*iface
, BSTR v
)
107 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
108 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
112 static HRESULT WINAPI
HTMLInputElement_get_type(IHTMLInputElement
*iface
, BSTR
*p
)
114 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
116 const PRUnichar
*type
;
119 TRACE("(%p)->(%p)\n", This
, p
);
121 nsAString_Init(&type_str
, NULL
);
122 nsres
= nsIDOMHTMLInputElement_GetType(This
->nsinput
, &type_str
);
124 if(NS_SUCCEEDED(nsres
)) {
125 nsAString_GetData(&type_str
, &type
);
126 *p
= SysAllocString(type
);
128 ERR("GetType failed: %08x\n", nsres
);
131 nsAString_Finish(&type_str
);
133 TRACE("type=%s\n", debugstr_w(*p
));
137 static HRESULT WINAPI
HTMLInputElement_put_value(IHTMLInputElement
*iface
, BSTR v
)
139 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
143 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
145 nsAString_Init(&val_str
, v
);
146 nsres
= nsIDOMHTMLInputElement_SetValue(This
->nsinput
, &val_str
);
147 nsAString_Finish(&val_str
);
149 ERR("SetValue failed: %08x\n", nsres
);
154 static HRESULT WINAPI
HTMLInputElement_get_value(IHTMLInputElement
*iface
, BSTR
*p
)
156 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
158 const PRUnichar
*value
= NULL
;
161 TRACE("(%p)->(%p)\n", This
, p
);
163 nsAString_Init(&value_str
, NULL
);
165 nsres
= nsIDOMHTMLInputElement_GetValue(This
->nsinput
, &value_str
);
166 if(NS_SUCCEEDED(nsres
)) {
167 nsAString_GetData(&value_str
, &value
);
168 *p
= SysAllocString(value
);
170 ERR("GetValue failed: %08x\n", nsres
);
173 nsAString_Finish(&value_str
);
175 TRACE("value=%s\n", debugstr_w(*p
));
179 static HRESULT WINAPI
HTMLInputElement_put_name(IHTMLInputElement
*iface
, BSTR v
)
181 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
182 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
186 static HRESULT WINAPI
HTMLInputElement_get_name(IHTMLInputElement
*iface
, BSTR
*p
)
188 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
190 const PRUnichar
*name
;
193 TRACE("(%p)->(%p)\n", This
, p
);
195 nsAString_Init(&name_str
, NULL
);
197 nsres
= nsIDOMHTMLInputElement_GetName(This
->nsinput
, &name_str
);
198 if(NS_SUCCEEDED(nsres
)) {
199 nsAString_GetData(&name_str
, &name
);
200 *p
= SysAllocString(name
);
202 ERR("GetName failed: %08x\n", nsres
);
206 nsAString_Finish(&name_str
);
208 TRACE("name=%s\n", debugstr_w(*p
));
212 static HRESULT WINAPI
HTMLInputElement_put_status(IHTMLInputElement
*iface
, VARIANT_BOOL v
)
214 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
215 FIXME("(%p)->(%x)\n", This
, v
);
219 static HRESULT WINAPI
HTMLInputElement_get_status(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
221 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
222 FIXME("(%p)->(%p)\n", This
, p
);
226 static HRESULT WINAPI
HTMLInputElement_put_disabled(IHTMLInputElement
*iface
, VARIANT_BOOL v
)
228 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
231 TRACE("(%p)->(%x)\n", This
, v
);
233 nsres
= nsIDOMHTMLInputElement_SetDisabled(This
->nsinput
, v
!= VARIANT_FALSE
);
235 ERR("SetDisabled failed: %08x\n", nsres
);
240 static HRESULT WINAPI
HTMLInputElement_get_disabled(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
242 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
243 PRBool disabled
= FALSE
;
245 TRACE("(%p)->(%p)\n", This
, p
);
247 nsIDOMHTMLInputElement_GetDisabled(This
->nsinput
, &disabled
);
249 *p
= disabled
? VARIANT_TRUE
: VARIANT_FALSE
;
253 static HRESULT WINAPI
HTMLInputElement_get_form(IHTMLInputElement
*iface
, IHTMLFormElement
**p
)
255 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
256 FIXME("(%p)->(%p)\n", This
, p
);
260 static HRESULT WINAPI
HTMLInputElement_put_size(IHTMLInputElement
*iface
, long v
)
262 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
263 FIXME("(%p)->(%ld)\n", This
, v
);
267 static HRESULT WINAPI
HTMLInputElement_get_size(IHTMLInputElement
*iface
, long *p
)
269 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
270 FIXME("(%p)->(%p)\n", This
, p
);
274 static HRESULT WINAPI
HTMLInputElement_put_maxLength(IHTMLInputElement
*iface
, long v
)
276 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
277 FIXME("(%p)->(%ld)\n", This
, v
);
281 static HRESULT WINAPI
HTMLInputElement_get_maxLength(IHTMLInputElement
*iface
, long *p
)
283 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
284 FIXME("(%p)->(%p)\n", This
, p
);
288 static HRESULT WINAPI
HTMLInputElement_select(IHTMLInputElement
*iface
)
290 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
291 FIXME("(%p)\n", This
);
295 static HRESULT WINAPI
HTMLInputElement_put_onchange(IHTMLInputElement
*iface
, VARIANT v
)
297 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
298 FIXME("(%p)->()\n", This
);
302 static HRESULT WINAPI
HTMLInputElement_get_onchange(IHTMLInputElement
*iface
, VARIANT
*p
)
304 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
305 FIXME("(%p)->(%p)\n", This
, p
);
309 static HRESULT WINAPI
HTMLInputElement_put_onselect(IHTMLInputElement
*iface
, VARIANT v
)
311 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
312 FIXME("(%p)->()\n", This
);
316 static HRESULT WINAPI
HTMLInputElement_get_onselect(IHTMLInputElement
*iface
, VARIANT
*p
)
318 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
319 FIXME("(%p)->(%p)\n", This
, p
);
323 static HRESULT WINAPI
HTMLInputElement_put_defaultValue(IHTMLInputElement
*iface
, BSTR v
)
325 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
326 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
330 static HRESULT WINAPI
HTMLInputElement_get_defaultValue(IHTMLInputElement
*iface
, BSTR
*p
)
332 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
333 FIXME("(%p)->(%p)\n", This
, p
);
337 static HRESULT WINAPI
HTMLInputElement_put_readOnly(IHTMLInputElement
*iface
, VARIANT_BOOL v
)
339 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
340 FIXME("(%p)->(%x)\n", This
, v
);
344 static HRESULT WINAPI
HTMLInputElement_get_readOnly(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
346 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
347 FIXME("(%p)->(%p)\n", This
, p
);
351 static HRESULT WINAPI
HTMLInputElement_createTextRange(IHTMLInputElement
*iface
, IHTMLTxtRange
**range
)
353 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
354 FIXME("(%p)->(%p)\n", This
, range
);
358 static HRESULT WINAPI
HTMLInputElement_put_indeterminate(IHTMLInputElement
*iface
, VARIANT_BOOL v
)
360 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
361 FIXME("(%p)->(%x)\n", This
, v
);
365 static HRESULT WINAPI
HTMLInputElement_get_indeterminate(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
367 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
368 FIXME("(%p)->(%p)\n", This
, p
);
372 static HRESULT WINAPI
HTMLInputElement_put_defaultChecked(IHTMLInputElement
*iface
, VARIANT_BOOL v
)
374 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
375 FIXME("(%p)->(%x)\n", This
, v
);
379 static HRESULT WINAPI
HTMLInputElement_get_defaultChecked(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
381 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
382 FIXME("(%p)->(%p)\n", This
, p
);
386 static HRESULT WINAPI
HTMLInputElement_put_checked(IHTMLInputElement
*iface
, VARIANT_BOOL v
)
388 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
389 FIXME("(%p)->(%x)\n", This
, v
);
393 static HRESULT WINAPI
HTMLInputElement_get_checked(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
395 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
399 TRACE("(%p)->(%p)\n", This
, p
);
401 nsres
= nsIDOMHTMLInputElement_GetChecked(This
->nsinput
, &checked
);
402 if(NS_FAILED(nsres
)) {
403 ERR("GetChecked failed: %08x\n", nsres
);
407 *p
= checked
? VARIANT_TRUE
: VARIANT_FALSE
;
408 TRACE("checked=%x\n", *p
);
412 static HRESULT WINAPI
HTMLInputElement_put_border(IHTMLInputElement
*iface
, VARIANT v
)
414 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
415 FIXME("(%p)->()\n", This
);
419 static HRESULT WINAPI
HTMLInputElement_get_border(IHTMLInputElement
*iface
, VARIANT
*p
)
421 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
422 FIXME("(%p)->(%p)\n", This
, p
);
426 static HRESULT WINAPI
HTMLInputElement_put_vspace(IHTMLInputElement
*iface
, long v
)
428 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
429 FIXME("(%p)->(%ld)\n", This
, v
);
433 static HRESULT WINAPI
HTMLInputElement_get_vspace(IHTMLInputElement
*iface
, long *p
)
435 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
436 FIXME("(%p)->(%p)\n", This
, p
);
440 static HRESULT WINAPI
HTMLInputElement_put_hspace(IHTMLInputElement
*iface
, long v
)
442 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
443 FIXME("(%p)->(%ld)\n", This
, v
);
447 static HRESULT WINAPI
HTMLInputElement_get_hspace(IHTMLInputElement
*iface
, long *p
)
449 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
450 FIXME("(%p)->(%p)\n", This
, p
);
454 static HRESULT WINAPI
HTMLInputElement_put_alt(IHTMLInputElement
*iface
, BSTR v
)
456 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
457 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
461 static HRESULT WINAPI
HTMLInputElement_get_alt(IHTMLInputElement
*iface
, BSTR
*p
)
463 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
464 FIXME("(%p)->(%p)\n", This
, p
);
468 static HRESULT WINAPI
HTMLInputElement_put_src(IHTMLInputElement
*iface
, BSTR v
)
470 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
471 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
475 static HRESULT WINAPI
HTMLInputElement_get_src(IHTMLInputElement
*iface
, BSTR
*p
)
477 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
478 FIXME("(%p)->(%p)\n", This
, p
);
482 static HRESULT WINAPI
HTMLInputElement_put_lowsrc(IHTMLInputElement
*iface
, BSTR v
)
484 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
485 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
489 static HRESULT WINAPI
HTMLInputElement_get_lowsrc(IHTMLInputElement
*iface
, BSTR
*p
)
491 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
492 FIXME("(%p)->(%p)\n", This
, p
);
496 static HRESULT WINAPI
HTMLInputElement_put_vrml(IHTMLInputElement
*iface
, BSTR v
)
498 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
499 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
503 static HRESULT WINAPI
HTMLInputElement_get_vrml(IHTMLInputElement
*iface
, BSTR
*p
)
505 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
506 FIXME("(%p)->(%p)\n", This
, p
);
510 static HRESULT WINAPI
HTMLInputElement_put_dynsrc(IHTMLInputElement
*iface
, BSTR v
)
512 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
513 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
517 static HRESULT WINAPI
HTMLInputElement_get_dynsrc(IHTMLInputElement
*iface
, BSTR
*p
)
519 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
520 FIXME("(%p)->(%p)\n", This
, p
);
524 static HRESULT WINAPI
HTMLInputElement_get_readyState(IHTMLInputElement
*iface
, BSTR
*p
)
526 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
527 FIXME("(%p)->(%p)\n", This
, p
);
531 static HRESULT WINAPI
HTMLInputElement_get_complete(IHTMLInputElement
*iface
, VARIANT_BOOL
*p
)
533 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
534 FIXME("(%p)->(%p)\n", This
, p
);
538 static HRESULT WINAPI
HTMLInputElement_put_loop(IHTMLInputElement
*iface
, VARIANT v
)
540 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
541 FIXME("(%p)->()\n", This
);
545 static HRESULT WINAPI
HTMLInputElement_get_loop(IHTMLInputElement
*iface
, VARIANT
*p
)
547 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
548 FIXME("(%p)->(%p)\n", This
, p
);
552 static HRESULT WINAPI
HTMLInputElement_put_align(IHTMLInputElement
*iface
, BSTR v
)
554 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
555 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
559 static HRESULT WINAPI
HTMLInputElement_get_align(IHTMLInputElement
*iface
, BSTR
*p
)
561 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
562 FIXME("(%p)->(%p)\n", This
, p
);
566 static HRESULT WINAPI
HTMLInputElement_put_onload(IHTMLInputElement
*iface
, VARIANT v
)
568 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
569 FIXME("(%p)->()\n", This
);
573 static HRESULT WINAPI
HTMLInputElement_get_onload(IHTMLInputElement
*iface
, VARIANT
*p
)
575 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
576 FIXME("(%p)->(%p)\n", This
, p
);
580 static HRESULT WINAPI
HTMLInputElement_put_onerror(IHTMLInputElement
*iface
, VARIANT v
)
582 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
583 FIXME("(%p)->()\n", This
);
587 static HRESULT WINAPI
HTMLInputElement_get_onerror(IHTMLInputElement
*iface
, VARIANT
*p
)
589 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
590 FIXME("(%p)->(%p)\n", This
, p
);
594 static HRESULT WINAPI
HTMLInputElement_put_onabort(IHTMLInputElement
*iface
, VARIANT v
)
596 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
597 FIXME("(%p)->()\n", This
);
601 static HRESULT WINAPI
HTMLInputElement_get_onabort(IHTMLInputElement
*iface
, VARIANT
*p
)
603 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
604 FIXME("(%p)->(%p)\n", This
, p
);
608 static HRESULT WINAPI
HTMLInputElement_put_width(IHTMLInputElement
*iface
, long v
)
610 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
611 FIXME("(%p)->(%ld)\n", This
, v
);
615 static HRESULT WINAPI
HTMLInputElement_get_width(IHTMLInputElement
*iface
, long *p
)
617 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
618 FIXME("(%p)->(%p)\n", This
, p
);
622 static HRESULT WINAPI
HTMLInputElement_put_height(IHTMLInputElement
*iface
, long v
)
624 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
625 FIXME("(%p)->(%ld)\n", This
, v
);
629 static HRESULT WINAPI
HTMLInputElement_get_height(IHTMLInputElement
*iface
, long *p
)
631 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
632 FIXME("(%p)->(%p)\n", This
, p
);
636 static HRESULT WINAPI
HTMLInputElement_put_start(IHTMLInputElement
*iface
, BSTR v
)
638 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
639 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
643 static HRESULT WINAPI
HTMLInputElement_get_start(IHTMLInputElement
*iface
, BSTR
*p
)
645 HTMLInputElement
*This
= HTMLINPUT_THIS(iface
);
646 FIXME("(%p)->(%p)\n", This
, p
);
650 #undef HTMLINPUT_THIS
652 static const IHTMLInputElementVtbl HTMLInputElementVtbl
= {
653 HTMLInputElement_QueryInterface
,
654 HTMLInputElement_AddRef
,
655 HTMLInputElement_Release
,
656 HTMLInputElement_GetTypeInfoCount
,
657 HTMLInputElement_GetTypeInfo
,
658 HTMLInputElement_GetIDsOfNames
,
659 HTMLInputElement_Invoke
,
660 HTMLInputElement_put_type
,
661 HTMLInputElement_get_type
,
662 HTMLInputElement_put_value
,
663 HTMLInputElement_get_value
,
664 HTMLInputElement_put_name
,
665 HTMLInputElement_get_name
,
666 HTMLInputElement_put_status
,
667 HTMLInputElement_get_status
,
668 HTMLInputElement_put_disabled
,
669 HTMLInputElement_get_disabled
,
670 HTMLInputElement_get_form
,
671 HTMLInputElement_put_size
,
672 HTMLInputElement_get_size
,
673 HTMLInputElement_put_maxLength
,
674 HTMLInputElement_get_maxLength
,
675 HTMLInputElement_select
,
676 HTMLInputElement_put_onchange
,
677 HTMLInputElement_get_onchange
,
678 HTMLInputElement_put_onselect
,
679 HTMLInputElement_get_onselect
,
680 HTMLInputElement_put_defaultValue
,
681 HTMLInputElement_get_defaultValue
,
682 HTMLInputElement_put_readOnly
,
683 HTMLInputElement_get_readOnly
,
684 HTMLInputElement_createTextRange
,
685 HTMLInputElement_put_indeterminate
,
686 HTMLInputElement_get_indeterminate
,
687 HTMLInputElement_put_defaultChecked
,
688 HTMLInputElement_get_defaultChecked
,
689 HTMLInputElement_put_checked
,
690 HTMLInputElement_get_checked
,
691 HTMLInputElement_put_border
,
692 HTMLInputElement_get_border
,
693 HTMLInputElement_put_vspace
,
694 HTMLInputElement_get_vspace
,
695 HTMLInputElement_put_hspace
,
696 HTMLInputElement_get_hspace
,
697 HTMLInputElement_put_alt
,
698 HTMLInputElement_get_alt
,
699 HTMLInputElement_put_src
,
700 HTMLInputElement_get_src
,
701 HTMLInputElement_put_lowsrc
,
702 HTMLInputElement_get_lowsrc
,
703 HTMLInputElement_put_vrml
,
704 HTMLInputElement_get_vrml
,
705 HTMLInputElement_put_dynsrc
,
706 HTMLInputElement_get_dynsrc
,
707 HTMLInputElement_get_readyState
,
708 HTMLInputElement_get_complete
,
709 HTMLInputElement_put_loop
,
710 HTMLInputElement_get_loop
,
711 HTMLInputElement_put_align
,
712 HTMLInputElement_get_align
,
713 HTMLInputElement_put_onload
,
714 HTMLInputElement_get_onload
,
715 HTMLInputElement_put_onerror
,
716 HTMLInputElement_get_onerror
,
717 HTMLInputElement_put_onabort
,
718 HTMLInputElement_get_onabort
,
719 HTMLInputElement_put_width
,
720 HTMLInputElement_get_width
,
721 HTMLInputElement_put_height
,
722 HTMLInputElement_get_height
,
723 HTMLInputElement_put_start
,
724 HTMLInputElement_get_start
727 #define HTMLINPUTTEXT_THIS(iface) DEFINE_THIS(HTMLInputElement, HTMLInputTextElement, iface)
729 static HRESULT WINAPI
HTMLInputTextElement_QueryInterface(IHTMLInputTextElement
*iface
,
730 REFIID riid
, void **ppv
)
732 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
734 return IHTMLDOMNode_QueryInterface(HTMLDOMNODE(&This
->element
.node
), riid
, ppv
);
737 static ULONG WINAPI
HTMLInputTextElement_AddRef(IHTMLInputTextElement
*iface
)
739 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
741 return IHTMLDOMNode_AddRef(HTMLDOMNODE(&This
->element
.node
));
744 static ULONG WINAPI
HTMLInputTextElement_Release(IHTMLInputTextElement
*iface
)
746 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
748 return IHTMLDOMNode_Release(HTMLDOMNODE(&This
->element
.node
));
751 static HRESULT WINAPI
HTMLInputTextElement_GetTypeInfoCount(IHTMLInputTextElement
*iface
, UINT
*pctinfo
)
753 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
754 return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This
->element
.node
.dispex
), pctinfo
);
757 static HRESULT WINAPI
HTMLInputTextElement_GetTypeInfo(IHTMLInputTextElement
*iface
, UINT iTInfo
,
758 LCID lcid
, ITypeInfo
**ppTInfo
)
760 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
761 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This
->element
.node
.dispex
), iTInfo
, lcid
, ppTInfo
);
764 static HRESULT WINAPI
HTMLInputTextElement_GetIDsOfNames(IHTMLInputTextElement
*iface
, REFIID riid
,
765 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
767 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
768 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This
->element
.node
.dispex
), riid
, rgszNames
, cNames
, lcid
, rgDispId
);
771 static HRESULT WINAPI
HTMLInputTextElement_Invoke(IHTMLInputTextElement
*iface
, DISPID dispIdMember
,
772 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
773 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
775 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
776 return IDispatchEx_Invoke(DISPATCHEX(&This
->element
.node
.dispex
), dispIdMember
, riid
, lcid
, wFlags
, pDispParams
,
777 pVarResult
, pExcepInfo
, puArgErr
);
780 static HRESULT WINAPI
HTMLInputTextElement_get_type(IHTMLInputTextElement
*iface
, BSTR
*p
)
782 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
784 TRACE("(%p)->(%p)\n", This
, p
);
786 return IHTMLInputElement_get_type(HTMLINPUT(This
), p
);
789 static HRESULT WINAPI
HTMLInputTextElement_put_value(IHTMLInputTextElement
*iface
, BSTR v
)
791 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
793 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
795 return IHTMLInputElement_put_value(HTMLINPUT(This
), v
);
798 static HRESULT WINAPI
HTMLInputTextElement_get_value(IHTMLInputTextElement
*iface
, BSTR
*p
)
800 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
802 TRACE("(%p)->(%p)\n", This
, p
);
804 return IHTMLInputTextElement_get_value(HTMLINPUT(This
), p
);
807 static HRESULT WINAPI
HTMLInputTextElement_put_name(IHTMLInputTextElement
*iface
, BSTR v
)
809 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
811 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
813 return IHTMLInputElement_put_name(HTMLINPUT(This
), v
);
816 static HRESULT WINAPI
HTMLInputTextElement_get_name(IHTMLInputTextElement
*iface
, BSTR
*p
)
818 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
820 TRACE("(%p)->(%p)\n", This
, p
);
822 return IHTMLInputElement_get_name(HTMLINPUT(This
), p
);
825 static HRESULT WINAPI
HTMLInputTextElement_put_status(IHTMLInputTextElement
*iface
, VARIANT v
)
827 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
828 FIXME("(%p)->(v)\n", This
);
832 static HRESULT WINAPI
HTMLInputTextElement_get_status(IHTMLInputTextElement
*iface
, VARIANT
*p
)
834 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
835 TRACE("(%p)->(v)\n", This
);
839 static HRESULT WINAPI
HTMLInputTextElement_put_disabled(IHTMLInputTextElement
*iface
, VARIANT_BOOL v
)
841 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
843 TRACE("(%p)->(%x)\n", This
, v
);
845 return IHTMLInputElement_put_disabled(HTMLINPUT(This
), v
);
848 static HRESULT WINAPI
HTMLInputTextElement_get_disabled(IHTMLInputTextElement
*iface
, VARIANT_BOOL
*p
)
850 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
852 TRACE("(%p)->(%p)\n", This
, p
);
854 return IHTMLInputElement_get_disabled(HTMLINPUT(This
), p
);
857 static HRESULT WINAPI
HTMLInputTextElement_get_form(IHTMLInputTextElement
*iface
, IHTMLFormElement
**p
)
859 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
861 TRACE("(%p)->(%p)\n", This
, p
);
863 return IHTMLInputElement_get_form(HTMLINPUT(This
), p
);
866 static HRESULT WINAPI
HTMLInputTextElement_put_defaultValue(IHTMLInputTextElement
*iface
, BSTR v
)
868 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
870 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
872 return IHTMLInputElement_put_defaultValue(HTMLINPUT(This
), v
);
875 static HRESULT WINAPI
HTMLInputTextElement_get_defaultValue(IHTMLInputTextElement
*iface
, BSTR
*p
)
877 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
879 TRACE("(%p)->(%p)\n", This
, p
);
881 return IHTMLInputElement_get_defaultValue(HTMLINPUT(This
), p
);
884 static HRESULT WINAPI
HTMLInputTextElement_put_size(IHTMLInputTextElement
*iface
, long v
)
886 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
888 TRACE("(%p)->(%ld)\n", This
, v
);
890 return IHTMLInputElement_put_size(HTMLINPUT(This
), v
);
893 static HRESULT WINAPI
HTMLInputTextElement_get_size(IHTMLInputTextElement
*iface
, long *p
)
895 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
897 TRACE("(%p)->(%p)\n", This
, p
);
899 return IHTMLInputElement_get_size(HTMLINPUT(This
), p
);
902 static HRESULT WINAPI
HTMLInputTextElement_put_maxLength(IHTMLInputTextElement
*iface
, long v
)
904 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
906 TRACE("(%p)->(%ld)\n", This
, v
);
908 return IHTMLInputElement_put_maxLength(HTMLINPUT(This
), v
);
911 static HRESULT WINAPI
HTMLInputTextElement_get_maxLength(IHTMLInputTextElement
*iface
, long *p
)
913 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
915 TRACE("(%p)->(%p)\n", This
, p
);
917 return IHTMLInputElement_get_maxLength(HTMLINPUT(This
), p
);
920 static HRESULT WINAPI
HTMLInputTextElement_select(IHTMLInputTextElement
*iface
)
922 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
924 TRACE("(%p)\n", This
);
926 return IHTMLInputElement_select(HTMLINPUT(This
));
929 static HRESULT WINAPI
HTMLInputTextElement_put_onchange(IHTMLInputTextElement
*iface
, VARIANT v
)
931 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
933 TRACE("(%p)->()\n", This
);
935 return IHTMLInputElement_put_onchange(HTMLINPUT(This
), v
);
938 static HRESULT WINAPI
HTMLInputTextElement_get_onchange(IHTMLInputTextElement
*iface
, VARIANT
*p
)
940 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
942 TRACE("(%p)->(%p)\n", This
, p
);
944 return IHTMLInputElement_get_onchange(HTMLINPUT(This
), p
);
947 static HRESULT WINAPI
HTMLInputTextElement_put_onselect(IHTMLInputTextElement
*iface
, VARIANT v
)
949 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
951 TRACE("(%p)->()\n", This
);
953 return IHTMLInputElement_put_onselect(HTMLINPUT(This
), v
);
956 static HRESULT WINAPI
HTMLInputTextElement_get_onselect(IHTMLInputTextElement
*iface
, VARIANT
*p
)
958 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
960 TRACE("(%p)->(%p)\n", This
, p
);
962 return IHTMLInputElement_get_onselect(HTMLINPUT(This
), p
);
965 static HRESULT WINAPI
HTMLInputTextElement_put_readOnly(IHTMLInputTextElement
*iface
, VARIANT_BOOL v
)
967 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
969 TRACE("(%p)->(%x)\n", This
, v
);
971 return IHTMLInputElement_put_readOnly(HTMLINPUT(This
), v
);
974 static HRESULT WINAPI
HTMLInputTextElement_get_readOnly(IHTMLInputTextElement
*iface
, VARIANT_BOOL
*p
)
976 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
978 TRACE("(%p)->(%p)\n", This
, p
);
980 return IHTMLInputElement_get_readOnly(HTMLINPUT(This
), p
);
983 static HRESULT WINAPI
HTMLInputTextElement_createTextRange(IHTMLInputTextElement
*iface
, IHTMLTxtRange
**range
)
985 HTMLInputElement
*This
= HTMLINPUTTEXT_THIS(iface
);
987 TRACE("(%p)->(%p)\n", This
, range
);
989 return IHTMLInputElement_createTextRange(HTMLINPUT(This
), range
);
992 #undef HTMLINPUT_THIS
994 static const IHTMLInputTextElementVtbl HTMLInputTextElementVtbl
= {
995 HTMLInputTextElement_QueryInterface
,
996 HTMLInputTextElement_AddRef
,
997 HTMLInputTextElement_Release
,
998 HTMLInputTextElement_GetTypeInfoCount
,
999 HTMLInputTextElement_GetTypeInfo
,
1000 HTMLInputTextElement_GetIDsOfNames
,
1001 HTMLInputTextElement_Invoke
,
1002 HTMLInputTextElement_get_type
,
1003 HTMLInputTextElement_put_value
,
1004 HTMLInputTextElement_get_value
,
1005 HTMLInputTextElement_put_name
,
1006 HTMLInputTextElement_get_name
,
1007 HTMLInputTextElement_put_status
,
1008 HTMLInputTextElement_get_status
,
1009 HTMLInputTextElement_put_disabled
,
1010 HTMLInputTextElement_get_disabled
,
1011 HTMLInputTextElement_get_form
,
1012 HTMLInputTextElement_put_defaultValue
,
1013 HTMLInputTextElement_get_defaultValue
,
1014 HTMLInputTextElement_put_size
,
1015 HTMLInputTextElement_get_size
,
1016 HTMLInputTextElement_put_maxLength
,
1017 HTMLInputTextElement_get_maxLength
,
1018 HTMLInputTextElement_select
,
1019 HTMLInputTextElement_put_onchange
,
1020 HTMLInputTextElement_get_onchange
,
1021 HTMLInputTextElement_put_onselect
,
1022 HTMLInputTextElement_get_onselect
,
1023 HTMLInputTextElement_put_readOnly
,
1024 HTMLInputTextElement_get_readOnly
,
1025 HTMLInputTextElement_createTextRange
1028 #define HTMLINPUT_NODE_THIS(iface) DEFINE_THIS2(HTMLInputElement, element.node, iface)
1030 static HRESULT
HTMLInputElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
1032 HTMLInputElement
*This
= HTMLINPUT_NODE_THIS(iface
);
1036 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
1037 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
1038 *ppv
= HTMLINPUT(This
);
1039 }else if(IsEqualGUID(&IID_IDispatch
, riid
)) {
1040 TRACE("(%p)->(IID_IDispatch %p)\n", This
, ppv
);
1041 *ppv
= HTMLINPUT(This
);
1042 }else if(IsEqualGUID(&IID_IHTMLInputElement
, riid
)) {
1043 TRACE("(%p)->(IID_IHTMLInputElement %p)\n", This
, ppv
);
1044 *ppv
= HTMLINPUT(This
);
1045 }else if(IsEqualGUID(&IID_IHTMLInputTextElement
, riid
)) {
1046 TRACE("(%p)->(IID_IHTMLInputTextElement %p)\n", This
, ppv
);
1047 *ppv
= HTMLINPUT(This
);
1051 IUnknown_AddRef((IUnknown
*)*ppv
);
1055 return HTMLElement_QI(&This
->element
.node
, riid
, ppv
);
1058 static void HTMLInputElement_destructor(HTMLDOMNode
*iface
)
1060 HTMLInputElement
*This
= HTMLINPUT_NODE_THIS(iface
);
1062 nsIDOMHTMLInputElement_Release(This
->nsinput
);
1064 HTMLElement_destructor(&This
->element
.node
);
1067 static HRESULT
HTMLInputElementImpl_put_disabled(HTMLDOMNode
*iface
, VARIANT_BOOL v
)
1069 HTMLInputElement
*This
= HTMLINPUT_NODE_THIS(iface
);
1070 return IHTMLInputElement_put_disabled(HTMLINPUT(This
), v
);
1073 static HRESULT
HTMLInputElementImpl_get_disabled(HTMLDOMNode
*iface
, VARIANT_BOOL
*p
)
1075 HTMLInputElement
*This
= HTMLINPUT_NODE_THIS(iface
);
1076 return IHTMLInputElement_get_disabled(HTMLINPUT(This
), p
);
1079 #undef HTMLINPUT_NODE_THIS
1081 static const NodeImplVtbl HTMLInputElementImplVtbl
= {
1082 HTMLInputElement_QI
,
1083 HTMLInputElement_destructor
,
1084 HTMLInputElementImpl_put_disabled
,
1085 HTMLInputElementImpl_get_disabled
,
1088 static const tid_t HTMLInputElement_iface_tids
[] = {
1093 IHTMLInputElement_tid
,
1096 static dispex_static_data_t HTMLInputElement_dispex
= {
1098 DispHTMLInputElement_tid
,
1100 HTMLInputElement_iface_tids
1103 HTMLElement
*HTMLInputElement_Create(nsIDOMHTMLElement
*nselem
)
1105 HTMLInputElement
*ret
= heap_alloc_zero(sizeof(HTMLInputElement
));
1108 ret
->lpHTMLInputElementVtbl
= &HTMLInputElementVtbl
;
1109 ret
->element
.node
.vtbl
= &HTMLInputElementImplVtbl
;
1111 init_dispex(&ret
->element
.node
.dispex
, (IUnknown
*)HTMLINPUT(ret
), &HTMLInputElement_dispex
);
1112 HTMLElement_Init(&ret
->element
);
1114 nsres
= nsIDOMHTMLElement_QueryInterface(nselem
, &IID_nsIDOMHTMLInputElement
,
1115 (void**)&ret
->nsinput
);
1116 if(NS_FAILED(nsres
))
1117 ERR("Could not get nsIDOMHTMLInputElement interface: %08x\n", nsres
);
1119 return &ret
->element
;