450 lines
14 KiB
C
450 lines
14 KiB
C
/*
|
|
* Copyright 2009 Alistair Leslie-Hughes
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define COBJMACROS
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winuser.h"
|
|
#include "ole2.h"
|
|
|
|
#include "mshtml_private.h"
|
|
#include "htmlstyle.h"
|
|
|
|
#include "wine/debug.h"
|
|
#include "wine/unicode.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
#define HTMLSTYLE3_THIS(iface) DEFINE_THIS(HTMLStyle, HTMLStyle3, iface)
|
|
|
|
static HRESULT WINAPI HTMLStyle3_QueryInterface(IHTMLStyle3 *iface, REFIID riid, void **ppv)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
|
|
return IHTMLStyle_QueryInterface(HTMLSTYLE(This), riid, ppv);
|
|
}
|
|
|
|
static ULONG WINAPI HTMLStyle3_AddRef(IHTMLStyle3 *iface)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
|
|
return IHTMLStyle_AddRef(HTMLSTYLE(This));
|
|
}
|
|
|
|
static ULONG WINAPI HTMLStyle3_Release(IHTMLStyle3 *iface)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
|
|
return IHTMLStyle_Release(HTMLSTYLE(This));
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_GetTypeInfoCount(IHTMLStyle3 *iface, UINT *pctinfo)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->dispex), pctinfo);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_GetTypeInfo(IHTMLStyle3 *iface, UINT iTInfo,
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_GetIDsOfNames(IHTMLStyle3 *iface, REFIID riid,
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
LCID lcid, DISPID *rgDispId)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_Invoke(IHTMLStyle3 *iface, DISPID dispIdMember,
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_layoutFlow(IHTMLStyle3 *iface, BSTR v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_layoutFlow(IHTMLStyle3 *iface, BSTR *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_zoom(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_zoom(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_wordWrap(IHTMLStyle3 *iface, BSTR v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_WORD_WRAP, v, 0);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_wordWrap(IHTMLStyle3 *iface, BSTR *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_WORD_WRAP, p);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_textUnderlinePosition(IHTMLStyle3 *iface, BSTR v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_textUnderlinePosition(IHTMLStyle3 *iface, BSTR *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarBaseColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarBaseColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarFaceColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarFaceColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbar3dLightColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbar3dLightColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarShadowColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarShadowColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarHighlightColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarHighlightColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarDarkShadowColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarDarkShadowColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarArrowColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarArrowColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarTrackColor(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarTrackColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_writingMode(IHTMLStyle3 *iface, BSTR v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_writingMode(IHTMLStyle3 *iface, BSTR *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_textAlignLast(IHTMLStyle3 *iface, BSTR v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_textAlignLast(IHTMLStyle3 *iface, BSTR *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_textKashidaSpace(IHTMLStyle3 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_textKashidaSpace(IHTMLStyle3 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE3_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const IHTMLStyle3Vtbl HTMLStyle3Vtbl = {
|
|
HTMLStyle3_QueryInterface,
|
|
HTMLStyle3_AddRef,
|
|
HTMLStyle3_Release,
|
|
HTMLStyle3_GetTypeInfoCount,
|
|
HTMLStyle3_GetTypeInfo,
|
|
HTMLStyle3_GetIDsOfNames,
|
|
HTMLStyle3_Invoke,
|
|
HTMLStyle3_put_layoutFlow,
|
|
HTMLStyle3_get_layoutFlow,
|
|
HTMLStyle3_put_zoom,
|
|
HTMLStyle3_get_zoom,
|
|
HTMLStyle3_put_wordWrap,
|
|
HTMLStyle3_get_wordWrap,
|
|
HTMLStyle3_put_textUnderlinePosition,
|
|
HTMLStyle3_get_textUnderlinePosition,
|
|
HTMLStyle3_put_scrollbarBaseColor,
|
|
HTMLStyle3_get_scrollbarBaseColor,
|
|
HTMLStyle3_put_scrollbarFaceColor,
|
|
HTMLStyle3_get_scrollbarFaceColor,
|
|
HTMLStyle3_put_scrollbar3dLightColor,
|
|
HTMLStyle3_get_scrollbar3dLightColor,
|
|
HTMLStyle3_put_scrollbarShadowColor,
|
|
HTMLStyle3_get_scrollbarShadowColor,
|
|
HTMLStyle3_put_scrollbarHighlightColor,
|
|
HTMLStyle3_get_scrollbarHighlightColor,
|
|
HTMLStyle3_put_scrollbarDarkShadowColor,
|
|
HTMLStyle3_get_scrollbarDarkShadowColor,
|
|
HTMLStyle3_put_scrollbarArrowColor,
|
|
HTMLStyle3_get_scrollbarArrowColor,
|
|
HTMLStyle3_put_scrollbarTrackColor,
|
|
HTMLStyle3_get_scrollbarTrackColor,
|
|
HTMLStyle3_put_writingMode,
|
|
HTMLStyle3_get_writingMode,
|
|
HTMLStyle3_put_textAlignLast,
|
|
HTMLStyle3_get_textAlignLast,
|
|
HTMLStyle3_put_textKashidaSpace,
|
|
HTMLStyle3_get_textKashidaSpace
|
|
};
|
|
|
|
/*
|
|
* IHTMLStyle4 Interface
|
|
*/
|
|
#define HTMLSTYLE4_THIS(iface) DEFINE_THIS(HTMLStyle, HTMLStyle4, iface)
|
|
|
|
static HRESULT WINAPI HTMLStyle4_QueryInterface(IHTMLStyle4 *iface, REFIID riid, void **ppv)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
|
|
return IHTMLStyle_QueryInterface(HTMLSTYLE(This), riid, ppv);
|
|
}
|
|
|
|
static ULONG WINAPI HTMLStyle4_AddRef(IHTMLStyle4 *iface)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
|
|
return IHTMLStyle_AddRef(HTMLSTYLE(This));
|
|
}
|
|
|
|
static ULONG WINAPI HTMLStyle4_Release(IHTMLStyle4 *iface)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
|
|
return IHTMLStyle_Release(HTMLSTYLE(This));
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_GetTypeInfoCount(IHTMLStyle4 *iface, UINT *pctinfo)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->dispex), pctinfo);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_GetTypeInfo(IHTMLStyle4 *iface, UINT iTInfo,
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_GetIDsOfNames(IHTMLStyle4 *iface, REFIID riid,
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
LCID lcid, DISPID *rgDispId)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_Invoke(IHTMLStyle4 *iface, DISPID dispIdMember,
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid,
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_put_textOverflow(IHTMLStyle4 *iface, BSTR v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_get_textOverflow(IHTMLStyle4 *iface, BSTR *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_put_minHeight(IHTMLStyle4 *iface, VARIANT v)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MIN_HEIGHT, &v, 0);
|
|
}
|
|
|
|
static HRESULT WINAPI HTMLStyle4_get_minHeight(IHTMLStyle4 *iface, VARIANT *p)
|
|
{
|
|
HTMLStyle *This = HTMLSTYLE4_THIS(iface);
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MIN_HEIGHT, p, 0);
|
|
}
|
|
|
|
static const IHTMLStyle4Vtbl HTMLStyle4Vtbl = {
|
|
HTMLStyle4_QueryInterface,
|
|
HTMLStyle4_AddRef,
|
|
HTMLStyle4_Release,
|
|
HTMLStyle4_GetTypeInfoCount,
|
|
HTMLStyle4_GetTypeInfo,
|
|
HTMLStyle4_GetIDsOfNames,
|
|
HTMLStyle4_Invoke,
|
|
HTMLStyle4_put_textOverflow,
|
|
HTMLStyle4_get_textOverflow,
|
|
HTMLStyle4_put_minHeight,
|
|
HTMLStyle4_get_minHeight
|
|
};
|
|
|
|
void HTMLStyle3_Init(HTMLStyle *This)
|
|
{
|
|
This->lpHTMLStyle3Vtbl = &HTMLStyle3Vtbl;
|
|
This->lpHTMLStyle4Vtbl = &HTMLStyle4Vtbl;
|
|
}
|