2008-10-02 15:27:17 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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"
|
2008-10-06 16:49:24 +02:00
|
|
|
#include "htmlstyle.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
2008-10-02 15:27:17 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
2009-01-13 09:22:54 +01:00
|
|
|
struct HTMLCurrentStyle {
|
2008-10-06 16:47:25 +02:00
|
|
|
DispatchEx dispex;
|
2008-10-02 15:27:17 +02:00
|
|
|
const IHTMLCurrentStyleVtbl *lpIHTMLCurrentStyleVtbl;
|
|
|
|
|
|
|
|
LONG ref;
|
2008-10-06 16:49:00 +02:00
|
|
|
|
|
|
|
nsIDOMCSSStyleDeclaration *nsstyle;
|
2009-01-13 09:22:54 +01:00
|
|
|
};
|
2008-10-02 15:27:17 +02:00
|
|
|
|
|
|
|
#define HTMLCURSTYLE(x) ((IHTMLCurrentStyle*) &(x)->lpIHTMLCurrentStyleVtbl)
|
|
|
|
|
|
|
|
#define HTMLCURSTYLE_THIS(iface) DEFINE_THIS(HTMLCurrentStyle, IHTMLCurrentStyle, iface)
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_QueryInterface(IHTMLCurrentStyle *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
|
|
|
*ppv = HTMLCURSTYLE(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IHTMLCurrentStyle, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLCurrentStyle %p)\n", This, ppv);
|
|
|
|
*ppv = HTMLCURSTYLE(This);
|
2008-10-06 16:47:25 +02:00
|
|
|
}else if(dispex_query_interface(&This->dispex, riid, ppv)) {
|
|
|
|
return *ppv ? S_OK : E_NOINTERFACE;
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(*ppv) {
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("unsupported %s\n", debugstr_guid(riid));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLCurrentStyle_AddRef(IHTMLCurrentStyle *iface)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLCurrentStyle_Release(IHTMLCurrentStyle *iface)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
2008-10-06 16:49:00 +02:00
|
|
|
if(!ref) {
|
|
|
|
if(This->nsstyle)
|
|
|
|
nsIDOMCSSStyleDeclaration_Release(This->nsstyle);
|
2009-08-31 20:47:55 +02:00
|
|
|
release_dispex(&This->dispex);
|
2008-10-02 15:27:17 +02:00
|
|
|
heap_free(This);
|
2008-10-06 16:49:00 +02:00
|
|
|
}
|
2008-10-02 15:27:17 +02:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_GetTypeInfoCount(IHTMLCurrentStyle *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2008-11-21 10:51:43 +01:00
|
|
|
return IDispatchEx_GetTypeInfoCount(DISPATCHEX(&This->dispex), pctinfo);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_GetTypeInfo(IHTMLCurrentStyle *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2008-11-21 10:51:43 +01:00
|
|
|
return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_GetIDsOfNames(IHTMLCurrentStyle *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2008-11-21 10:51:43 +01:00
|
|
|
return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_Invoke(IHTMLCurrentStyle *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2008-11-21 10:51:43 +01:00
|
|
|
return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid,
|
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_position(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-17 10:41:45 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_POSITION, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_styleFloat(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_color(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-25 06:40:20 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_COLOR, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundColor(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-25 06:45:23 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BACKGROUND_COLOR, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_fontFamily(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-17 10:44:41 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_FONT_FAMILY, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_fontStyle(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:22:16 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_FONT_STYLE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_fontVariant(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:27:37 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_FONT_VARIANT, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_fontWeight(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-21 11:08:17 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_FONT_WEIGHT, p, ATTR_STR_TO_INT);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_fontSize(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-21 11:14:48 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_FONT_SIZE, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundImage(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:24:00 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BACKGROUND_IMAGE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundPositionX(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundPositionY(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundRepeat(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-25 05:57:40 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BACKGROUND_REPEAT, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderLeftColor(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 12:41:22 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_LEFT_COLOR, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderTopColor(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 12:44:29 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_TOP_COLOR, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderRightColor(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 12:46:39 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_RIGHT_COLOR, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderBottomColor(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 12:57:18 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_BOTTOM_COLOR, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderTopStyle(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:37:48 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_TOP_STYLE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderRightStyle(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:41:13 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_RIGHT_STYLE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderBottomStyle(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:43:10 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_BOTTOM_STYLE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderLeftStyle(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:45:29 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_LEFT_STYLE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderTopWidth(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-22 12:32:59 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_TOP_WIDTH, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderRightWidth(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-22 12:28:09 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_RIGHT_WIDTH, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderBottomWidth(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-22 12:30:14 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_BOTTOM_WIDTH, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderLeftWidth(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-21 13:03:49 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_LEFT_WIDTH, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_left(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-21 11:24:25 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_LEFT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_top(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-21 11:28:33 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_TOP, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_width(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-21 12:58:57 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_WIDTH, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_height(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-22 02:49:14 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_HEIGHT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_paddingLeft(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-22 02:51:12 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_LEFT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_paddingTop(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 13:05:54 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_TOP, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_paddingRight(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 13:13:12 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_RIGHT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_paddingBottom(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-14 13:15:31 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_BOTTOM, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textAlign(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 10:48:42 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_TEXT_ALIGN, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textDecoration(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 11:04:19 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_TEXT_DECORATION, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_display(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2008-10-06 16:49:24 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_DISPLAY, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_visibility(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-19 12:28:05 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_VISIBILITY, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_zIndex(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-22 09:50:09 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_Z_INDEX, p, ATTR_STR_TO_INT);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_letterSpacing(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-16 07:40:43 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_LETTER_SPACING, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_lineHeight(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-18 12:18:45 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_LINE_HEIGHT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textIndent(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-18 12:21:56 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_TEXT_INDENT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_verticalAlign(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-22 09:57:02 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_VERTICAL_ALIGN, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundAttachment(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_marginTop(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-16 07:46:16 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_TOP, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_marginRight(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-22 10:03:22 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_RIGHT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_marginBottom(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-16 07:48:43 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_BOTTOM, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_marginLeft(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-23 10:53:32 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_LEFT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_clear(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_listStyleType(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_listStylePosition(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_listStyleImage(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_clipTop(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_clipRight(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_clipBottom(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_clipLeft(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_overflow(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-25 07:02:24 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_pageBreakBefore(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_pageBreakAfter(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_cursor(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-02-20 11:05:21 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_CURSOR, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_tableLayout(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderCollapse(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_direction(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_behavior(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_getAttribute(IHTMLCurrentStyle *iface, BSTR strAttributeName,
|
|
|
|
LONG lFlags, VARIANT *AttributeValue)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%s %x %p)\n", This, debugstr_w(strAttributeName), lFlags, AttributeValue);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_unicodeBidi(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_right(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-16 07:52:36 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_RIGHT, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_bottom(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-09-16 07:56:16 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BOTTOM, p, 0);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_imeMode(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_rubyAlign(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_rubyPosition(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_rubyOverhang(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textAutospace(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_lineBreak(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_wordBreak(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textJustify(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textJustifyTrim(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textKashida(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_blockDirection(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_layoutGridChar(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_layoutGridLine(IHTMLCurrentStyle *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_layoutGridMode(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_layoutGridType(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderStyle(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-03-03 11:49:12 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_STYLE, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderColor(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-03-03 11:10:55 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_COLOR, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_borderWidth(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-25 07:10:39 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BORDER_WIDTH, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_padding(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_margin(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
2009-08-25 07:15:03 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_MARGIN, p);
|
2008-10-02 15:27:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_accelerator(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_overflowX(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_overflowY(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLCurrentStyle_get_textTransform(IHTMLCurrentStyle *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef HTMLCURSTYLE_THIS
|
|
|
|
|
|
|
|
static const IHTMLCurrentStyleVtbl HTMLCurrentStyleVtbl = {
|
|
|
|
HTMLCurrentStyle_QueryInterface,
|
|
|
|
HTMLCurrentStyle_AddRef,
|
|
|
|
HTMLCurrentStyle_Release,
|
|
|
|
HTMLCurrentStyle_GetTypeInfoCount,
|
|
|
|
HTMLCurrentStyle_GetTypeInfo,
|
|
|
|
HTMLCurrentStyle_GetIDsOfNames,
|
|
|
|
HTMLCurrentStyle_Invoke,
|
|
|
|
HTMLCurrentStyle_get_position,
|
|
|
|
HTMLCurrentStyle_get_styleFloat,
|
|
|
|
HTMLCurrentStyle_get_color,
|
|
|
|
HTMLCurrentStyle_get_backgroundColor,
|
|
|
|
HTMLCurrentStyle_get_fontFamily,
|
|
|
|
HTMLCurrentStyle_get_fontStyle,
|
|
|
|
HTMLCurrentStyle_get_fontVariant,
|
|
|
|
HTMLCurrentStyle_get_fontWeight,
|
|
|
|
HTMLCurrentStyle_get_fontSize,
|
|
|
|
HTMLCurrentStyle_get_backgroundImage,
|
|
|
|
HTMLCurrentStyle_get_backgroundPositionX,
|
|
|
|
HTMLCurrentStyle_get_backgroundPositionY,
|
|
|
|
HTMLCurrentStyle_get_backgroundRepeat,
|
|
|
|
HTMLCurrentStyle_get_borderLeftColor,
|
|
|
|
HTMLCurrentStyle_get_borderTopColor,
|
|
|
|
HTMLCurrentStyle_get_borderRightColor,
|
|
|
|
HTMLCurrentStyle_get_borderBottomColor,
|
|
|
|
HTMLCurrentStyle_get_borderTopStyle,
|
|
|
|
HTMLCurrentStyle_get_borderRightStyle,
|
|
|
|
HTMLCurrentStyle_get_borderBottomStyle,
|
|
|
|
HTMLCurrentStyle_get_borderLeftStyle,
|
|
|
|
HTMLCurrentStyle_get_borderTopWidth,
|
|
|
|
HTMLCurrentStyle_get_borderRightWidth,
|
|
|
|
HTMLCurrentStyle_get_borderBottomWidth,
|
|
|
|
HTMLCurrentStyle_get_borderLeftWidth,
|
|
|
|
HTMLCurrentStyle_get_left,
|
|
|
|
HTMLCurrentStyle_get_top,
|
|
|
|
HTMLCurrentStyle_get_width,
|
|
|
|
HTMLCurrentStyle_get_height,
|
|
|
|
HTMLCurrentStyle_get_paddingLeft,
|
|
|
|
HTMLCurrentStyle_get_paddingTop,
|
|
|
|
HTMLCurrentStyle_get_paddingRight,
|
|
|
|
HTMLCurrentStyle_get_paddingBottom,
|
|
|
|
HTMLCurrentStyle_get_textAlign,
|
|
|
|
HTMLCurrentStyle_get_textDecoration,
|
|
|
|
HTMLCurrentStyle_get_display,
|
|
|
|
HTMLCurrentStyle_get_visibility,
|
|
|
|
HTMLCurrentStyle_get_zIndex,
|
|
|
|
HTMLCurrentStyle_get_letterSpacing,
|
|
|
|
HTMLCurrentStyle_get_lineHeight,
|
|
|
|
HTMLCurrentStyle_get_textIndent,
|
|
|
|
HTMLCurrentStyle_get_verticalAlign,
|
|
|
|
HTMLCurrentStyle_get_backgroundAttachment,
|
|
|
|
HTMLCurrentStyle_get_marginTop,
|
|
|
|
HTMLCurrentStyle_get_marginRight,
|
|
|
|
HTMLCurrentStyle_get_marginBottom,
|
|
|
|
HTMLCurrentStyle_get_marginLeft,
|
|
|
|
HTMLCurrentStyle_get_clear,
|
|
|
|
HTMLCurrentStyle_get_listStyleType,
|
|
|
|
HTMLCurrentStyle_get_listStylePosition,
|
|
|
|
HTMLCurrentStyle_get_listStyleImage,
|
|
|
|
HTMLCurrentStyle_get_clipTop,
|
|
|
|
HTMLCurrentStyle_get_clipRight,
|
|
|
|
HTMLCurrentStyle_get_clipBottom,
|
|
|
|
HTMLCurrentStyle_get_clipLeft,
|
|
|
|
HTMLCurrentStyle_get_overflow,
|
|
|
|
HTMLCurrentStyle_get_pageBreakBefore,
|
|
|
|
HTMLCurrentStyle_get_pageBreakAfter,
|
|
|
|
HTMLCurrentStyle_get_cursor,
|
|
|
|
HTMLCurrentStyle_get_tableLayout,
|
|
|
|
HTMLCurrentStyle_get_borderCollapse,
|
|
|
|
HTMLCurrentStyle_get_direction,
|
|
|
|
HTMLCurrentStyle_get_behavior,
|
|
|
|
HTMLCurrentStyle_getAttribute,
|
|
|
|
HTMLCurrentStyle_get_unicodeBidi,
|
|
|
|
HTMLCurrentStyle_get_right,
|
|
|
|
HTMLCurrentStyle_get_bottom,
|
|
|
|
HTMLCurrentStyle_get_imeMode,
|
|
|
|
HTMLCurrentStyle_get_rubyAlign,
|
|
|
|
HTMLCurrentStyle_get_rubyPosition,
|
|
|
|
HTMLCurrentStyle_get_rubyOverhang,
|
|
|
|
HTMLCurrentStyle_get_textAutospace,
|
|
|
|
HTMLCurrentStyle_get_lineBreak,
|
|
|
|
HTMLCurrentStyle_get_wordBreak,
|
|
|
|
HTMLCurrentStyle_get_textJustify,
|
|
|
|
HTMLCurrentStyle_get_textJustifyTrim,
|
|
|
|
HTMLCurrentStyle_get_textKashida,
|
|
|
|
HTMLCurrentStyle_get_blockDirection,
|
|
|
|
HTMLCurrentStyle_get_layoutGridChar,
|
|
|
|
HTMLCurrentStyle_get_layoutGridLine,
|
|
|
|
HTMLCurrentStyle_get_layoutGridMode,
|
|
|
|
HTMLCurrentStyle_get_layoutGridType,
|
|
|
|
HTMLCurrentStyle_get_borderStyle,
|
|
|
|
HTMLCurrentStyle_get_borderColor,
|
|
|
|
HTMLCurrentStyle_get_borderWidth,
|
|
|
|
HTMLCurrentStyle_get_padding,
|
|
|
|
HTMLCurrentStyle_get_margin,
|
|
|
|
HTMLCurrentStyle_get_accelerator,
|
|
|
|
HTMLCurrentStyle_get_overflowX,
|
|
|
|
HTMLCurrentStyle_get_overflowY,
|
|
|
|
HTMLCurrentStyle_get_textTransform
|
|
|
|
};
|
|
|
|
|
2008-10-06 16:47:25 +02:00
|
|
|
static const tid_t HTMLCurrentStyle_iface_tids[] = {
|
|
|
|
IHTMLCurrentStyle_tid,
|
2009-03-05 10:08:51 +01:00
|
|
|
IHTMLCurrentStyle2_tid,
|
|
|
|
IHTMLCurrentStyle3_tid,
|
|
|
|
IHTMLCurrentStyle4_tid,
|
2008-10-06 16:47:25 +02:00
|
|
|
0
|
|
|
|
};
|
|
|
|
static dispex_static_data_t HTMLCurrentStyle_dispex = {
|
|
|
|
NULL,
|
|
|
|
DispHTMLCurrentStyle_tid,
|
|
|
|
NULL,
|
|
|
|
HTMLCurrentStyle_iface_tids
|
|
|
|
};
|
|
|
|
|
2008-10-06 16:49:00 +02:00
|
|
|
HRESULT HTMLCurrentStyle_Create(HTMLElement *elem, IHTMLCurrentStyle **p)
|
2008-10-02 15:27:17 +02:00
|
|
|
{
|
2008-10-06 16:49:00 +02:00
|
|
|
nsIDOMCSSStyleDeclaration *nsstyle;
|
|
|
|
nsIDOMDocumentView *nsdocview;
|
|
|
|
nsIDOMAbstractView *nsview;
|
|
|
|
nsIDOMViewCSS *nsviewcss;
|
|
|
|
nsAString nsempty_str;
|
2008-10-02 15:27:17 +02:00
|
|
|
HTMLCurrentStyle *ret;
|
2008-10-06 16:49:00 +02:00
|
|
|
nsresult nsres;
|
|
|
|
|
2009-10-21 21:27:42 +02:00
|
|
|
if(!elem->node.doc->nsdoc) {
|
2008-10-08 20:28:34 +02:00
|
|
|
WARN("NULL nsdoc\n");
|
|
|
|
return E_UNEXPECTED;
|
2008-10-06 16:49:00 +02:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:27:42 +02:00
|
|
|
nsres = nsIDOMHTMLDocument_QueryInterface(elem->node.doc->nsdoc, &IID_nsIDOMDocumentView, (void**)&nsdocview);
|
2008-10-06 16:49:00 +02:00
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("Could not get nsIDOMDocumentView: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIDOMDocumentView_GetDefaultView(nsdocview, &nsview);
|
|
|
|
nsIDOMDocumentView_Release(nsdocview);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetDefaultView failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIDOMAbstractView_QueryInterface(nsview, &IID_nsIDOMViewCSS, (void**)&nsviewcss);
|
|
|
|
nsIDOMAbstractView_Release(nsview);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("Could not get nsIDOMViewCSS: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_Init(&nsempty_str, NULL);
|
|
|
|
nsres = nsIDOMViewCSS_GetComputedStyle(nsviewcss, (nsIDOMElement*)elem->nselem, &nsempty_str, &nsstyle);
|
|
|
|
nsIDOMViewCSS_Release(nsviewcss);
|
|
|
|
nsAString_Finish(&nsempty_str);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetComputedStyle failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2008-10-02 15:27:17 +02:00
|
|
|
|
|
|
|
ret = heap_alloc_zero(sizeof(HTMLCurrentStyle));
|
2008-10-06 16:49:00 +02:00
|
|
|
if(!ret) {
|
|
|
|
nsIDOMCSSStyleDeclaration_Release(nsstyle);
|
2008-10-02 15:27:17 +02:00
|
|
|
return E_OUTOFMEMORY;
|
2008-10-06 16:49:00 +02:00
|
|
|
}
|
2008-10-02 15:27:17 +02:00
|
|
|
|
|
|
|
ret->lpIHTMLCurrentStyleVtbl = &HTMLCurrentStyleVtbl;
|
|
|
|
ret->ref = 1;
|
2008-10-06 16:49:00 +02:00
|
|
|
ret->nsstyle = nsstyle;
|
2008-10-02 15:27:17 +02:00
|
|
|
|
2008-10-06 16:47:25 +02:00
|
|
|
init_dispex(&ret->dispex, (IUnknown*)HTMLCURSTYLE(ret), &HTMLCurrentStyle_dispex);
|
|
|
|
|
2008-10-02 15:27:17 +02:00
|
|
|
*p = HTMLCURSTYLE(ret);
|
|
|
|
return S_OK;
|
|
|
|
}
|