2006-11-17 13:04:06 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2006 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>
|
2012-07-25 14:46:54 +02:00
|
|
|
#include <assert.h>
|
2008-11-05 12:06:45 +01:00
|
|
|
#include <math.h>
|
2006-11-17 13:04:06 +01:00
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
2008-10-07 21:45:21 +02:00
|
|
|
#include "mshtmdid.h"
|
2006-11-17 13:04:06 +01:00
|
|
|
|
2008-10-06 16:47:58 +02:00
|
|
|
#include "mshtml_private.h"
|
|
|
|
#include "htmlstyle.h"
|
|
|
|
|
2006-11-17 13:04:06 +01:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
2008-06-18 00:12:26 +02:00
|
|
|
static const WCHAR attrBackground[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d',0};
|
2014-08-18 17:31:01 +02:00
|
|
|
static const WCHAR attrBackgroundAttachment[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','a','t','t','a','c','h','m','e','n','t',0};
|
2006-11-17 13:06:30 +01:00
|
|
|
static const WCHAR attrBackgroundColor[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','c','o','l','o','r',0};
|
2008-04-28 11:57:06 +02:00
|
|
|
static const WCHAR attrBackgroundImage[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','i','m','a','g','e',0};
|
2011-02-25 14:11:16 +01:00
|
|
|
static const WCHAR attrBackgroundPosition[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','p','o','s','i','t','i','o','n',0};
|
2009-03-05 10:24:24 +01:00
|
|
|
static const WCHAR attrBackgroundPositionX[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','p','o','s','i','t','i','o','n','-','x',0};
|
2009-03-05 10:26:36 +01:00
|
|
|
static const WCHAR attrBackgroundPositionY[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','p','o','s','i','t','i','o','n','-','y',0};
|
2009-02-25 05:50:33 +01:00
|
|
|
static const WCHAR attrBackgroundRepeat[] =
|
|
|
|
{'b','a','c','k','g','r','o','u','n','d','-','r','e','p','e','a','t',0};
|
2008-10-06 16:50:03 +02:00
|
|
|
static const WCHAR attrBorder[] =
|
|
|
|
{'b','o','r','d','e','r',0};
|
2009-12-01 21:04:38 +01:00
|
|
|
static const WCHAR attrBorderBottom[] =
|
|
|
|
{'b','o','r','d','e','r','-','b','o','t','t','o','m',0};
|
2009-09-14 12:57:18 +02:00
|
|
|
static const WCHAR attrBorderBottomColor[] =
|
|
|
|
{'b','o','r','d','e','r','-','b','o','t','t','o','m','-','c','o','l','o','r',0};
|
2009-01-13 08:38:32 +01:00
|
|
|
static const WCHAR attrBorderBottomStyle[] =
|
|
|
|
{'b','o','r','d','e','r','-','b','o','t','t','o','m','-','s','t','y','l','e',0};
|
2009-03-05 10:41:39 +01:00
|
|
|
static const WCHAR attrBorderBottomWidth[] =
|
|
|
|
{'b','o','r','d','e','r','-','b','o','t','t','o','m','-','w','i','d','t','h',0};
|
2009-03-03 11:04:49 +01:00
|
|
|
static const WCHAR attrBorderColor[] =
|
|
|
|
{'b','o','r','d','e','r','-','c','o','l','o','r',0};
|
2007-12-10 20:11:58 +01:00
|
|
|
static const WCHAR attrBorderLeft[] =
|
|
|
|
{'b','o','r','d','e','r','-','l','e','f','t',0};
|
2009-09-14 12:41:22 +02:00
|
|
|
static const WCHAR attrBorderLeftColor[] =
|
|
|
|
{'b','o','r','d','e','r','-','l','e','f','t','-','c','o','l','o','r',0};
|
2009-01-13 08:30:17 +01:00
|
|
|
static const WCHAR attrBorderLeftStyle[] =
|
|
|
|
{'b','o','r','d','e','r','-','l','e','f','t','-','s','t','y','l','e',0};
|
2009-03-05 10:44:38 +01:00
|
|
|
static const WCHAR attrBorderLeftWidth[] =
|
|
|
|
{'b','o','r','d','e','r','-','l','e','f','t','-','w','i','d','t','h',0};
|
2009-12-01 21:04:38 +01:00
|
|
|
static const WCHAR attrBorderRight[] =
|
|
|
|
{'b','o','r','d','e','r','-','r','i','g','h','t',0};
|
2009-09-14 12:46:39 +02:00
|
|
|
static const WCHAR attrBorderRightColor[] =
|
|
|
|
{'b','o','r','d','e','r','-','r','i','g','h','t','-','c','o','l','o','r',0};
|
2009-01-13 08:39:23 +01:00
|
|
|
static const WCHAR attrBorderRightStyle[] =
|
|
|
|
{'b','o','r','d','e','r','-','r','i','g','h','t','-','s','t','y','l','e',0};
|
2009-03-05 10:35:50 +01:00
|
|
|
static const WCHAR attrBorderRightWidth[] =
|
|
|
|
{'b','o','r','d','e','r','-','r','i','g','h','t','-','w','i','d','t','h',0};
|
2009-12-01 21:04:38 +01:00
|
|
|
static const WCHAR attrBorderTop[] =
|
|
|
|
{'b','o','r','d','e','r','-','t','o','p',0};
|
2009-09-14 12:44:29 +02:00
|
|
|
static const WCHAR attrBorderTopColor[] =
|
|
|
|
{'b','o','r','d','e','r','-','t','o','p','-','c','o','l','o','r',0};
|
2009-03-02 11:58:55 +01:00
|
|
|
static const WCHAR attrBorderStyle[] =
|
|
|
|
{'b','o','r','d','e','r','-','s','t','y','l','e',0};
|
2009-01-13 08:40:01 +01:00
|
|
|
static const WCHAR attrBorderTopStyle[] =
|
|
|
|
{'b','o','r','d','e','r','-','t','o','p','-','s','t','y','l','e',0};
|
2009-03-05 10:32:41 +01:00
|
|
|
static const WCHAR attrBorderTopWidth[] =
|
|
|
|
{'b','o','r','d','e','r','-','t','o','p','-','w','i','d','t','h',0};
|
2008-10-10 12:00:53 +02:00
|
|
|
static const WCHAR attrBorderWidth[] =
|
|
|
|
{'b','o','r','d','e','r','-','w','i','d','t','h',0};
|
2009-09-16 07:56:16 +02:00
|
|
|
static const WCHAR attrBottom[] =
|
|
|
|
{'b','o','t','t','o','m',0};
|
2013-11-07 17:01:31 +01:00
|
|
|
/* FIXME: Use unprefixed version (requires Gecko changes). */
|
|
|
|
static const WCHAR attrBoxSizing[] =
|
|
|
|
{'-','m','o','z','-','b','o','x','-','s','i','z','i','n','g',0};
|
2012-10-23 13:41:13 +02:00
|
|
|
static const WCHAR attrClear[] =
|
|
|
|
{'c','l','e','a','r',0};
|
2011-07-15 15:38:08 +02:00
|
|
|
static const WCHAR attrClip[] =
|
|
|
|
{'c','l','i','p',0};
|
2007-09-19 12:41:46 +02:00
|
|
|
static const WCHAR attrColor[] =
|
|
|
|
{'c','o','l','o','r',0};
|
2008-10-06 16:50:46 +02:00
|
|
|
static const WCHAR attrCursor[] =
|
|
|
|
{'c','u','r','s','o','r',0};
|
2011-07-22 11:40:17 +02:00
|
|
|
static const WCHAR attrDirection[] =
|
|
|
|
{'d','i','r','e','c','t','i','o','n',0};
|
2007-10-13 04:00:02 +02:00
|
|
|
static const WCHAR attrDisplay[] =
|
|
|
|
{'d','i','s','p','l','a','y',0};
|
2008-10-07 21:45:46 +02:00
|
|
|
static const WCHAR attrFilter[] =
|
|
|
|
{'f','i','l','e','t','e','r',0};
|
2014-12-15 19:13:13 +01:00
|
|
|
static const WCHAR attrFloat[] =
|
|
|
|
{'f','l','o','a','t',0};
|
2006-11-17 13:05:48 +01:00
|
|
|
static const WCHAR attrFontFamily[] =
|
|
|
|
{'f','o','n','t','-','f','a','m','i','l','y',0};
|
2006-11-17 13:07:12 +01:00
|
|
|
static const WCHAR attrFontSize[] =
|
|
|
|
{'f','o','n','t','-','s','i','z','e',0};
|
2007-09-19 12:41:46 +02:00
|
|
|
static const WCHAR attrFontStyle[] =
|
|
|
|
{'f','o','n','t','-','s','t','y','l','e',0};
|
2008-12-11 12:37:18 +01:00
|
|
|
static const WCHAR attrFontVariant[] =
|
|
|
|
{'f','o','n','t','-','v','a','r','i','a','n','t',0};
|
2007-09-19 12:41:46 +02:00
|
|
|
static const WCHAR attrFontWeight[] =
|
|
|
|
{'f','o','n','t','-','w','e','i','g','h','t',0};
|
2008-10-06 16:51:34 +02:00
|
|
|
static const WCHAR attrHeight[] =
|
|
|
|
{'h','e','i','g','h','t',0};
|
2008-10-06 16:50:28 +02:00
|
|
|
static const WCHAR attrLeft[] =
|
|
|
|
{'l','e','f','t',0};
|
2009-08-25 08:17:56 +02:00
|
|
|
static const WCHAR attrLetterSpacing[] =
|
|
|
|
{'l','e','t','t','e','r','-','s','p','a','c','i','n','g',0};
|
2009-09-18 12:18:45 +02:00
|
|
|
static const WCHAR attrLineHeight[] =
|
|
|
|
{'l','i','n','e','-','h','e','i','g','h','t',0};
|
2014-08-20 15:35:43 +02:00
|
|
|
static const WCHAR attrListStyle[] =
|
|
|
|
{'l','i','s','t','-','s','t','y','l','e',0};
|
2014-03-24 13:47:56 +01:00
|
|
|
static const WCHAR attrListStyleType[] =
|
|
|
|
{'l','i','s','t','-','s','t','y','l','e','-','t','y','p','e',0};
|
2014-08-10 15:14:37 +02:00
|
|
|
static const WCHAR attrListStylePosition[] =
|
|
|
|
{'l','i','s','t','-','s','t','y','l','e','-','p','o','s','i','t','i','o','n',0};
|
2008-09-11 01:46:32 +02:00
|
|
|
static const WCHAR attrMargin[] =
|
|
|
|
{'m','a','r','g','i','n',0};
|
2009-09-16 07:48:43 +02:00
|
|
|
static const WCHAR attrMarginBottom[] =
|
|
|
|
{'m','a','r','g','i','n','-','b','o','t','t','o','m',0};
|
2007-12-10 20:11:58 +01:00
|
|
|
static const WCHAR attrMarginLeft[] =
|
|
|
|
{'m','a','r','g','i','n','-','l','e','f','t',0};
|
|
|
|
static const WCHAR attrMarginRight[] =
|
|
|
|
{'m','a','r','g','i','n','-','r','i','g','h','t',0};
|
2009-09-16 07:46:16 +02:00
|
|
|
static const WCHAR attrMarginTop[] =
|
|
|
|
{'m','a','r','g','i','n','-','t','o','p',0};
|
2014-11-04 18:36:10 +01:00
|
|
|
static const WCHAR attrMaxHeight[] =
|
|
|
|
{'m','a','x','-','h','e','i','g','h','t',0};
|
2014-11-04 18:32:42 +01:00
|
|
|
static const WCHAR attrMaxWidth[] =
|
|
|
|
{'m','a','x','-','w','i','d','t','h',0};
|
2009-02-17 10:29:58 +01:00
|
|
|
static const WCHAR attrMinHeight[] =
|
|
|
|
{'m','i','n','-','h','e','i','g','h','t',0};
|
2014-09-02 04:20:01 +02:00
|
|
|
static const WCHAR attrMinWidth[] =
|
|
|
|
{'m','i','n','-','w','i','d','t','h',0};
|
2013-09-30 16:05:34 +02:00
|
|
|
static const WCHAR attrOutline[] =
|
|
|
|
{'o','u','t','l','i','n','e',0};
|
2008-11-25 11:04:11 +01:00
|
|
|
static const WCHAR attrOverflow[] =
|
|
|
|
{'o','v','e','r','f','l','o','w',0};
|
2012-04-17 12:41:27 +02:00
|
|
|
static const WCHAR attrOverflowX[] =
|
|
|
|
{'o','v','e','r','f','l','o','w','-','x',0};
|
2012-04-17 12:41:40 +02:00
|
|
|
static const WCHAR attrOverflowY[] =
|
|
|
|
{'o','v','e','r','f','l','o','w','-','y',0};
|
2010-11-29 00:18:48 +01:00
|
|
|
static const WCHAR attrPadding[] =
|
|
|
|
{'p','a','d','d','i','n','g',0};
|
2009-09-14 13:15:31 +02:00
|
|
|
static const WCHAR attrPaddingBottom[] =
|
|
|
|
{'p','a','d','d','i','n','g','-','b','o','t','t','o','m',0};
|
2007-12-10 20:11:58 +01:00
|
|
|
static const WCHAR attrPaddingLeft[] =
|
|
|
|
{'p','a','d','d','i','n','g','-','l','e','f','t',0};
|
2009-09-14 13:13:12 +02:00
|
|
|
static const WCHAR attrPaddingRight[] =
|
|
|
|
{'p','a','d','d','i','n','g','-','r','i','g','h','t',0};
|
2009-09-14 13:05:54 +02:00
|
|
|
static const WCHAR attrPaddingTop[] =
|
|
|
|
{'p','a','d','d','i','n','g','-','t','o','p',0};
|
2011-07-18 13:39:37 +02:00
|
|
|
static const WCHAR attrPageBreakAfter[] =
|
|
|
|
{'p','a','g','e','-','b','r','e','a','k','-','a','f','t','e','r',0};
|
2011-07-21 12:26:37 +02:00
|
|
|
static const WCHAR attrPageBreakBefore[] =
|
|
|
|
{'p','a','g','e','-','b','r','e','a','k','-','b','e','f','o','r','e',0};
|
2008-10-06 16:52:06 +02:00
|
|
|
static const WCHAR attrPosition[] =
|
|
|
|
{'p','o','s','i','t','i','o','n',0};
|
2009-09-16 07:52:36 +02:00
|
|
|
static const WCHAR attrRight[] =
|
|
|
|
{'r','i','g','h','t',0};
|
2014-08-18 17:30:46 +02:00
|
|
|
static const WCHAR attrTableLayout[] =
|
|
|
|
{'t','a','b','l','e','-','l','a','y','o','u','t',0};
|
2008-10-07 21:45:31 +02:00
|
|
|
static const WCHAR attrTextAlign[] =
|
|
|
|
{'t','e','x','t','-','a','l','i','g','n',0};
|
2007-09-19 12:42:10 +02:00
|
|
|
static const WCHAR attrTextDecoration[] =
|
|
|
|
{'t','e','x','t','-','d','e','c','o','r','a','t','i','o','n',0};
|
2009-09-18 12:21:56 +02:00
|
|
|
static const WCHAR attrTextIndent[] =
|
|
|
|
{'t','e','x','t','-','i','n','d','e','n','t',0};
|
2014-07-31 06:22:25 +02:00
|
|
|
static const WCHAR attrTextTransform[] =
|
|
|
|
{'t','e','x','t','-','t','r','a','n','s','f','o','r','m',0};
|
2008-10-06 16:51:04 +02:00
|
|
|
static const WCHAR attrTop[] =
|
|
|
|
{'t','o','p',0};
|
2008-10-06 16:51:21 +02:00
|
|
|
static const WCHAR attrVerticalAlign[] =
|
|
|
|
{'v','e','r','t','i','c','a','l','-','a','l','i','g','n',0};
|
2007-10-13 04:00:02 +02:00
|
|
|
static const WCHAR attrVisibility[] =
|
|
|
|
{'v','i','s','i','b','i','l','i','t','y',0};
|
2013-08-28 17:51:08 +02:00
|
|
|
static const WCHAR attrWhiteSpace[] =
|
|
|
|
{'w','h','i','t','e','-','s','p','a','c','e',0};
|
2008-06-30 21:39:52 +02:00
|
|
|
static const WCHAR attrWidth[] =
|
|
|
|
{'w','i','d','t','h',0};
|
2009-08-21 12:55:29 +02:00
|
|
|
static const WCHAR attrWordSpacing[] =
|
|
|
|
{'w','o','r','d','-','s','p','a','c','i','n','g',0};
|
2009-08-02 00:09:49 +02:00
|
|
|
static const WCHAR attrWordWrap[] =
|
|
|
|
{'w','o','r','d','-','w','r','a','p',0};
|
2008-10-07 21:45:05 +02:00
|
|
|
static const WCHAR attrZIndex[] =
|
|
|
|
{'z','-','i','n','d','e','x',0};
|
2007-09-19 12:42:10 +02:00
|
|
|
|
2013-01-07 14:32:56 +01:00
|
|
|
|
|
|
|
static const WCHAR pxW[] = {'p','x',0};
|
|
|
|
|
2012-04-16 13:48:55 +02:00
|
|
|
typedef struct {
|
2008-10-07 21:45:21 +02:00
|
|
|
const WCHAR *name;
|
|
|
|
DISPID dispid;
|
2012-04-16 13:48:55 +02:00
|
|
|
} style_tbl_entry_t;
|
|
|
|
|
|
|
|
static const style_tbl_entry_t style_tbl[] = {
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrBackground, DISPID_IHTMLSTYLE_BACKGROUND},
|
2014-08-18 17:31:01 +02:00
|
|
|
{attrBackgroundAttachment, DISPID_IHTMLSTYLE_BACKGROUNDATTACHMENT},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrBackgroundColor, DISPID_IHTMLSTYLE_BACKGROUNDCOLOR},
|
|
|
|
{attrBackgroundImage, DISPID_IHTMLSTYLE_BACKGROUNDIMAGE},
|
2011-02-25 14:11:16 +01:00
|
|
|
{attrBackgroundPosition, DISPID_IHTMLSTYLE_BACKGROUNDPOSITION},
|
2009-03-05 10:24:24 +01:00
|
|
|
{attrBackgroundPositionX, DISPID_IHTMLSTYLE_BACKGROUNDPOSITIONX},
|
2009-03-05 10:26:36 +01:00
|
|
|
{attrBackgroundPositionY, DISPID_IHTMLSTYLE_BACKGROUNDPOSITIONY},
|
2009-02-25 05:50:33 +01:00
|
|
|
{attrBackgroundRepeat, DISPID_IHTMLSTYLE_BACKGROUNDREPEAT},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrBorder, DISPID_IHTMLSTYLE_BORDER},
|
2009-12-01 21:04:38 +01:00
|
|
|
{attrBorderBottom, DISPID_IHTMLSTYLE_BORDERBOTTOM},
|
2009-09-14 12:57:18 +02:00
|
|
|
{attrBorderBottomColor, DISPID_IHTMLSTYLE_BORDERBOTTOMCOLOR},
|
2009-01-13 08:38:32 +01:00
|
|
|
{attrBorderBottomStyle, DISPID_IHTMLSTYLE_BORDERBOTTOMSTYLE},
|
2009-03-05 10:41:39 +01:00
|
|
|
{attrBorderBottomWidth, DISPID_IHTMLSTYLE_BORDERBOTTOMWIDTH},
|
2009-03-03 11:04:49 +01:00
|
|
|
{attrBorderColor, DISPID_IHTMLSTYLE_BORDERCOLOR},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrBorderLeft, DISPID_IHTMLSTYLE_BORDERLEFT},
|
2009-09-14 12:41:22 +02:00
|
|
|
{attrBorderLeftColor, DISPID_IHTMLSTYLE_BORDERLEFTCOLOR},
|
2009-01-13 08:30:17 +01:00
|
|
|
{attrBorderLeftStyle, DISPID_IHTMLSTYLE_BORDERLEFTSTYLE},
|
2009-03-05 10:44:38 +01:00
|
|
|
{attrBorderLeftWidth, DISPID_IHTMLSTYLE_BORDERLEFTWIDTH},
|
2009-12-01 21:04:38 +01:00
|
|
|
{attrBorderRight, DISPID_IHTMLSTYLE_BORDERRIGHT},
|
2009-09-14 12:46:39 +02:00
|
|
|
{attrBorderRightColor, DISPID_IHTMLSTYLE_BORDERRIGHTCOLOR},
|
2009-01-13 08:39:23 +01:00
|
|
|
{attrBorderRightStyle, DISPID_IHTMLSTYLE_BORDERRIGHTSTYLE},
|
2009-03-05 10:35:50 +01:00
|
|
|
{attrBorderRightWidth, DISPID_IHTMLSTYLE_BORDERRIGHTWIDTH},
|
2009-03-02 11:58:55 +01:00
|
|
|
{attrBorderStyle, DISPID_IHTMLSTYLE_BORDERSTYLE},
|
2009-12-01 21:04:38 +01:00
|
|
|
{attrBorderTop, DISPID_IHTMLSTYLE_BORDERTOP},
|
2009-09-14 12:44:29 +02:00
|
|
|
{attrBorderTopColor, DISPID_IHTMLSTYLE_BORDERTOPCOLOR},
|
2009-01-13 08:40:01 +01:00
|
|
|
{attrBorderTopStyle, DISPID_IHTMLSTYLE_BORDERTOPSTYLE},
|
2009-03-05 10:32:41 +01:00
|
|
|
{attrBorderTopWidth, DISPID_IHTMLSTYLE_BORDERTOPWIDTH},
|
2008-10-10 12:00:53 +02:00
|
|
|
{attrBorderWidth, DISPID_IHTMLSTYLE_BORDERWIDTH},
|
2009-09-16 07:56:16 +02:00
|
|
|
{attrBottom, DISPID_IHTMLSTYLE2_BOTTOM},
|
2013-11-07 17:01:31 +01:00
|
|
|
{attrBoxSizing, DISPID_IHTMLSTYLE6_BOXSIZING},
|
2012-10-23 13:41:13 +02:00
|
|
|
{attrClear, DISPID_IHTMLSTYLE_CLEAR},
|
2011-07-15 15:38:08 +02:00
|
|
|
{attrClip, DISPID_IHTMLSTYLE_CLIP},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrColor, DISPID_IHTMLSTYLE_COLOR},
|
|
|
|
{attrCursor, DISPID_IHTMLSTYLE_CURSOR},
|
2011-07-22 11:40:17 +02:00
|
|
|
{attrDirection, DISPID_IHTMLSTYLE2_DIRECTION},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrDisplay, DISPID_IHTMLSTYLE_DISPLAY},
|
2008-10-07 21:45:46 +02:00
|
|
|
{attrFilter, DISPID_IHTMLSTYLE_FILTER},
|
2014-12-15 19:13:13 +01:00
|
|
|
{attrFloat, DISPID_IHTMLSTYLE_STYLEFLOAT},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrFontFamily, DISPID_IHTMLSTYLE_FONTFAMILY},
|
|
|
|
{attrFontSize, DISPID_IHTMLSTYLE_FONTSIZE},
|
|
|
|
{attrFontStyle, DISPID_IHTMLSTYLE_FONTSTYLE},
|
2008-12-11 12:37:18 +01:00
|
|
|
{attrFontVariant, DISPID_IHTMLSTYLE_FONTVARIANT},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrFontWeight, DISPID_IHTMLSTYLE_FONTWEIGHT},
|
|
|
|
{attrHeight, DISPID_IHTMLSTYLE_HEIGHT},
|
|
|
|
{attrLeft, DISPID_IHTMLSTYLE_LEFT},
|
2009-08-25 08:17:56 +02:00
|
|
|
{attrLetterSpacing, DISPID_IHTMLSTYLE_LETTERSPACING},
|
2009-09-18 12:18:45 +02:00
|
|
|
{attrLineHeight, DISPID_IHTMLSTYLE_LINEHEIGHT},
|
2014-08-20 15:35:43 +02:00
|
|
|
{attrListStyle, DISPID_IHTMLSTYLE_LISTSTYLE},
|
2014-08-10 15:14:37 +02:00
|
|
|
{attrListStylePosition, DISPID_IHTMLSTYLE_LISTSTYLEPOSITION},
|
2014-03-24 13:47:56 +01:00
|
|
|
{attrListStyleType, DISPID_IHTMLSTYLE_LISTSTYLETYPE},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrMargin, DISPID_IHTMLSTYLE_MARGIN},
|
2009-09-16 07:48:43 +02:00
|
|
|
{attrMarginBottom, DISPID_IHTMLSTYLE_MARGINBOTTOM},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrMarginLeft, DISPID_IHTMLSTYLE_MARGINLEFT},
|
|
|
|
{attrMarginRight, DISPID_IHTMLSTYLE_MARGINRIGHT},
|
2009-09-16 07:46:16 +02:00
|
|
|
{attrMarginTop, DISPID_IHTMLSTYLE_MARGINTOP},
|
2014-11-04 18:36:10 +01:00
|
|
|
{attrMaxHeight, DISPID_IHTMLSTYLE5_MAXHEIGHT},
|
2014-11-04 18:32:42 +01:00
|
|
|
{attrMaxWidth, DISPID_IHTMLSTYLE5_MAXWIDTH},
|
2009-02-17 10:29:58 +01:00
|
|
|
{attrMinHeight, DISPID_IHTMLSTYLE4_MINHEIGHT},
|
2014-09-02 04:20:01 +02:00
|
|
|
{attrMinWidth, DISPID_IHTMLSTYLE5_MINWIDTH},
|
2013-09-30 16:05:34 +02:00
|
|
|
{attrOutline, DISPID_IHTMLSTYLE6_OUTLINE},
|
2008-11-25 11:04:11 +01:00
|
|
|
{attrOverflow, DISPID_IHTMLSTYLE_OVERFLOW},
|
2012-04-17 12:41:27 +02:00
|
|
|
{attrOverflowX, DISPID_IHTMLSTYLE2_OVERFLOWX},
|
2012-04-17 12:41:40 +02:00
|
|
|
{attrOverflowY, DISPID_IHTMLSTYLE2_OVERFLOWY},
|
2010-11-29 00:18:48 +01:00
|
|
|
{attrPadding, DISPID_IHTMLSTYLE_PADDING},
|
2009-09-14 13:15:31 +02:00
|
|
|
{attrPaddingBottom, DISPID_IHTMLSTYLE_PADDINGBOTTOM},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrPaddingLeft, DISPID_IHTMLSTYLE_PADDINGLEFT},
|
2009-09-14 13:13:12 +02:00
|
|
|
{attrPaddingRight, DISPID_IHTMLSTYLE_PADDINGRIGHT},
|
2009-09-14 13:05:54 +02:00
|
|
|
{attrPaddingTop, DISPID_IHTMLSTYLE_PADDINGTOP},
|
2011-07-18 13:39:37 +02:00
|
|
|
{attrPageBreakAfter, DISPID_IHTMLSTYLE_PAGEBREAKAFTER},
|
2011-07-21 12:26:37 +02:00
|
|
|
{attrPageBreakBefore, DISPID_IHTMLSTYLE_PAGEBREAKBEFORE},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrPosition, DISPID_IHTMLSTYLE2_POSITION},
|
2009-09-16 07:52:36 +02:00
|
|
|
{attrRight, DISPID_IHTMLSTYLE2_RIGHT},
|
2014-08-18 17:30:46 +02:00
|
|
|
{attrTableLayout, DISPID_IHTMLSTYLE2_TABLELAYOUT},
|
2008-10-07 21:45:31 +02:00
|
|
|
{attrTextAlign, DISPID_IHTMLSTYLE_TEXTALIGN},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrTextDecoration, DISPID_IHTMLSTYLE_TEXTDECORATION},
|
2009-09-18 12:21:56 +02:00
|
|
|
{attrTextIndent, DISPID_IHTMLSTYLE_TEXTINDENT},
|
2014-07-31 06:22:25 +02:00
|
|
|
{attrTextTransform, DISPID_IHTMLSTYLE_TEXTTRANSFORM},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrTop, DISPID_IHTMLSTYLE_TOP},
|
|
|
|
{attrVerticalAlign, DISPID_IHTMLSTYLE_VERTICALALIGN},
|
|
|
|
{attrVisibility, DISPID_IHTMLSTYLE_VISIBILITY},
|
2013-08-28 17:51:08 +02:00
|
|
|
{attrWhiteSpace, DISPID_IHTMLSTYLE_WHITESPACE},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrWidth, DISPID_IHTMLSTYLE_WIDTH},
|
2009-08-21 12:55:29 +02:00
|
|
|
{attrWordSpacing, DISPID_IHTMLSTYLE_WORDSPACING},
|
2009-08-02 00:09:49 +02:00
|
|
|
{attrWordWrap, DISPID_IHTMLSTYLE3_WORDWRAP},
|
2008-10-07 21:45:21 +02:00
|
|
|
{attrZIndex, DISPID_IHTMLSTYLE_ZINDEX}
|
2008-10-06 16:48:25 +02:00
|
|
|
};
|
|
|
|
|
2014-12-15 19:13:13 +01:00
|
|
|
C_ASSERT(sizeof(style_tbl)/sizeof(*style_tbl) == STYLEID_MAX_VALUE);
|
|
|
|
|
2007-09-19 12:42:10 +02:00
|
|
|
static const WCHAR valLineThrough[] =
|
|
|
|
{'l','i','n','e','-','t','h','r','o','u','g','h',0};
|
|
|
|
static const WCHAR valUnderline[] =
|
|
|
|
{'u','n','d','e','r','l','i','n','e',0};
|
2008-12-11 12:16:28 +01:00
|
|
|
static const WCHAR szNormal[] =
|
|
|
|
{'n','o','r','m','a','l',0};
|
2009-03-01 06:53:52 +01:00
|
|
|
static const WCHAR styleNone[] =
|
|
|
|
{'n','o','n','e',0};
|
2009-03-01 09:57:37 +01:00
|
|
|
static const WCHAR valOverline[] =
|
|
|
|
{'o','v','e','r','l','i','n','e',0};
|
2009-03-01 10:06:29 +01:00
|
|
|
static const WCHAR valBlink[] =
|
|
|
|
{'b','l','i','n','k',0};
|
2006-11-17 13:05:48 +01:00
|
|
|
|
2007-12-10 20:11:58 +01:00
|
|
|
static const WCHAR px_formatW[] = {'%','d','p','x',0};
|
|
|
|
static const WCHAR emptyW[] = {0};
|
|
|
|
|
2012-04-16 13:48:55 +02:00
|
|
|
static const style_tbl_entry_t *lookup_style_tbl(const WCHAR *name)
|
|
|
|
{
|
|
|
|
int c, i, min = 0, max = sizeof(style_tbl)/sizeof(*style_tbl)-1;
|
|
|
|
|
|
|
|
while(min <= max) {
|
|
|
|
i = (min+max)/2;
|
|
|
|
|
|
|
|
c = strcmpW(style_tbl[i].name, name);
|
|
|
|
if(!c)
|
|
|
|
return style_tbl+i;
|
|
|
|
|
|
|
|
if(c > 0)
|
|
|
|
max = i-1;
|
|
|
|
else
|
|
|
|
min = i+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-04-24 15:20:03 +02:00
|
|
|
static inline compat_mode_t get_style_compat_mode(HTMLStyle *style)
|
|
|
|
{
|
|
|
|
return style->elem && style->elem->node.doc ? style->elem->node.doc->document_mode : COMPAT_MODE_QUIRKS;
|
|
|
|
}
|
|
|
|
|
2007-12-10 20:12:40 +01:00
|
|
|
static LPWSTR fix_px_value(LPCWSTR val)
|
|
|
|
{
|
|
|
|
LPCWSTR ptr = val;
|
|
|
|
|
|
|
|
while(*ptr) {
|
|
|
|
while(*ptr && isspaceW(*ptr))
|
|
|
|
ptr++;
|
|
|
|
if(!*ptr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
while(*ptr && isdigitW(*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
if(!*ptr || isspaceW(*ptr)) {
|
|
|
|
LPWSTR ret, p;
|
|
|
|
int len = strlenW(val)+1;
|
|
|
|
|
|
|
|
ret = heap_alloc((len+2)*sizeof(WCHAR));
|
|
|
|
memcpy(ret, val, (ptr-val)*sizeof(WCHAR));
|
|
|
|
p = ret + (ptr-val);
|
|
|
|
*p++ = 'p';
|
|
|
|
*p++ = 'x';
|
|
|
|
strcpyW(p, ptr);
|
|
|
|
|
|
|
|
TRACE("fixed %s -> %s\n", debugstr_w(val), debugstr_w(ret));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(*ptr && !isspaceW(*ptr))
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-06-18 00:11:52 +02:00
|
|
|
static LPWSTR fix_url_value(LPCWSTR val)
|
|
|
|
{
|
|
|
|
WCHAR *ret, *ptr;
|
|
|
|
|
|
|
|
static const WCHAR urlW[] = {'u','r','l','('};
|
|
|
|
|
|
|
|
if(strncmpW(val, urlW, sizeof(urlW)/sizeof(WCHAR)) || !strchrW(val, '\\'))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret = heap_strdupW(val);
|
|
|
|
|
|
|
|
for(ptr = ret; *ptr; ptr++) {
|
|
|
|
if(*ptr == '\\')
|
|
|
|
*ptr = '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-03-22 11:26:12 +01:00
|
|
|
static HRESULT set_nsstyle_attr(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, const WCHAR *value, DWORD flags)
|
2006-11-17 13:05:48 +01:00
|
|
|
{
|
|
|
|
nsAString str_name, str_value, str_empty;
|
2007-12-10 20:12:40 +01:00
|
|
|
LPWSTR val = NULL;
|
2006-11-17 13:05:48 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
2012-12-06 14:24:14 +01:00
|
|
|
if(value) {
|
|
|
|
if(flags & ATTR_FIX_PX)
|
|
|
|
val = fix_px_value(value);
|
2015-11-10 20:31:29 +01:00
|
|
|
else if(flags & ATTR_FIX_URL)
|
2012-12-06 14:24:14 +01:00
|
|
|
val = fix_url_value(value);
|
|
|
|
}
|
2007-12-10 20:12:40 +01:00
|
|
|
|
2010-01-28 23:55:06 +01:00
|
|
|
nsAString_InitDepend(&str_name, style_tbl[sid].name);
|
|
|
|
nsAString_InitDepend(&str_value, val ? val : value);
|
2011-02-25 14:11:26 +01:00
|
|
|
nsAString_InitDepend(&str_empty, emptyW);
|
2006-11-17 13:05:48 +01:00
|
|
|
|
2008-10-06 16:52:06 +02:00
|
|
|
nsres = nsIDOMCSSStyleDeclaration_SetProperty(nsstyle, &str_name, &str_value, &str_empty);
|
2006-11-17 13:05:48 +01:00
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("SetProperty failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
nsAString_Finish(&str_name);
|
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
nsAString_Finish(&str_empty);
|
2011-02-25 14:11:26 +01:00
|
|
|
heap_free(val);
|
2006-11-17 13:05:48 +01:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-02-25 14:11:39 +01:00
|
|
|
static HRESULT var_to_styleval(const VARIANT *v, WCHAR *buf, DWORD flags, const WCHAR **ret)
|
2008-10-13 21:51:18 +02:00
|
|
|
{
|
2011-02-25 14:11:39 +01:00
|
|
|
switch(V_VT(v)) {
|
2008-10-13 21:51:18 +02:00
|
|
|
case VT_NULL:
|
2011-02-25 14:11:39 +01:00
|
|
|
*ret = emptyW;
|
|
|
|
return S_OK;
|
2008-10-13 21:51:18 +02:00
|
|
|
|
|
|
|
case VT_BSTR:
|
2011-02-25 14:11:39 +01:00
|
|
|
*ret = V_BSTR(v);
|
|
|
|
return S_OK;
|
2008-10-13 21:51:18 +02:00
|
|
|
|
2009-09-10 11:58:43 +02:00
|
|
|
case VT_BSTR|VT_BYREF:
|
2011-02-25 14:11:39 +01:00
|
|
|
*ret = *V_BSTRREF(v);
|
|
|
|
return S_OK;
|
2009-09-10 11:58:43 +02:00
|
|
|
|
2009-02-17 10:36:28 +01:00
|
|
|
case VT_I4: {
|
2011-02-25 14:11:39 +01:00
|
|
|
static const WCHAR formatW[] = {'%','d',0};
|
|
|
|
static const WCHAR hex_formatW[] = {'#','%','0','6','x',0};
|
2009-02-17 10:36:28 +01:00
|
|
|
|
2011-01-27 06:07:45 +01:00
|
|
|
if(flags & ATTR_HEX_INT)
|
2011-02-25 14:11:39 +01:00
|
|
|
wsprintfW(buf, hex_formatW, V_I4(v));
|
|
|
|
else if(flags & ATTR_FIX_PX)
|
|
|
|
wsprintfW(buf, px_formatW, V_I4(v));
|
2011-01-27 06:07:45 +01:00
|
|
|
else
|
2011-02-25 14:11:39 +01:00
|
|
|
wsprintfW(buf, formatW, V_I4(v));
|
|
|
|
|
|
|
|
*ret = buf;
|
|
|
|
return S_OK;
|
2009-02-17 10:36:28 +01:00
|
|
|
}
|
2008-10-13 21:51:18 +02:00
|
|
|
default:
|
2012-03-28 14:25:54 +02:00
|
|
|
FIXME("not implemented for %s\n", debugstr_variant(v));
|
2008-10-13 21:51:18 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
|
|
|
|
}
|
2011-02-25 14:11:39 +01:00
|
|
|
}
|
2008-10-13 21:51:18 +02:00
|
|
|
|
2016-03-22 11:26:12 +01:00
|
|
|
static HRESULT set_nsstyle_attr_var(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, VARIANT *value, DWORD flags)
|
2011-02-25 14:11:39 +01:00
|
|
|
{
|
|
|
|
const WCHAR *val;
|
|
|
|
WCHAR buf[14];
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = var_to_styleval(value, buf, flags, &val);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
return set_nsstyle_attr(nsstyle, sid, val, flags);
|
2008-10-13 21:51:18 +02:00
|
|
|
}
|
|
|
|
|
2008-10-06 16:52:06 +02:00
|
|
|
static inline HRESULT set_style_attr(HTMLStyle *This, styleid_t sid, LPCWSTR value, DWORD flags)
|
|
|
|
{
|
|
|
|
return set_nsstyle_attr(This->nsstyle, sid, value, flags);
|
|
|
|
}
|
|
|
|
|
2008-10-06 16:49:24 +02:00
|
|
|
static HRESULT get_nsstyle_attr_nsval(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, nsAString *value)
|
2007-06-10 11:55:25 +02:00
|
|
|
{
|
2007-09-19 12:42:10 +02:00
|
|
|
nsAString str_name;
|
2007-06-10 11:55:25 +02:00
|
|
|
nsresult nsres;
|
|
|
|
|
2010-01-28 23:55:06 +01:00
|
|
|
nsAString_InitDepend(&str_name, style_tbl[sid].name);
|
2008-10-06 16:49:24 +02:00
|
|
|
nsres = nsIDOMCSSStyleDeclaration_GetPropertyValue(nsstyle, &str_name, value);
|
2016-10-06 17:04:02 +02:00
|
|
|
nsAString_Finish(&str_name);
|
2007-09-19 12:42:10 +02:00
|
|
|
if(NS_FAILED(nsres)) {
|
2007-06-10 11:55:25 +02:00
|
|
|
ERR("SetProperty failed: %08x\n", nsres);
|
2007-09-19 12:42:10 +02:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2016-09-13 20:54:20 +02:00
|
|
|
return S_OK;
|
2007-09-19 12:42:10 +02:00
|
|
|
}
|
|
|
|
|
2011-07-15 15:37:40 +02:00
|
|
|
static HRESULT nsstyle_to_bstr(const WCHAR *val, DWORD flags, BSTR *p)
|
|
|
|
{
|
|
|
|
BSTR ret;
|
2011-07-15 15:38:08 +02:00
|
|
|
DWORD len;
|
2011-07-15 15:37:40 +02:00
|
|
|
|
|
|
|
if(!*val) {
|
2013-09-30 16:05:34 +02:00
|
|
|
*p = (flags & ATTR_NO_NULL) ? SysAllocStringLen(NULL, 0) : NULL;
|
2011-07-15 15:37:40 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = SysAllocString(val);
|
|
|
|
if(!ret)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2011-07-15 15:38:08 +02:00
|
|
|
len = SysStringLen(ret);
|
|
|
|
|
|
|
|
if(flags & ATTR_REMOVE_COMMA) {
|
|
|
|
DWORD new_len = len;
|
|
|
|
WCHAR *ptr, *ptr2;
|
|
|
|
|
|
|
|
for(ptr = ret; (ptr = strchrW(ptr, ',')); ptr++)
|
|
|
|
new_len--;
|
|
|
|
|
|
|
|
if(new_len != len) {
|
|
|
|
BSTR new_ret;
|
|
|
|
|
|
|
|
new_ret = SysAllocStringLen(NULL, new_len);
|
|
|
|
if(!new_ret) {
|
|
|
|
SysFreeString(ret);
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(ptr2 = new_ret, ptr = ret; *ptr; ptr++) {
|
|
|
|
if(*ptr != ',')
|
|
|
|
*ptr2++ = *ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
SysFreeString(ret);
|
|
|
|
ret = new_ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-15 15:37:40 +02:00
|
|
|
*p = ret;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2011-07-15 15:37:56 +02:00
|
|
|
HRESULT get_nsstyle_attr(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, BSTR *p, DWORD flags)
|
2007-09-19 12:42:10 +02:00
|
|
|
{
|
|
|
|
nsAString str_value;
|
|
|
|
const PRUnichar *value;
|
2011-07-15 15:37:40 +02:00
|
|
|
HRESULT hres;
|
2007-09-19 12:42:10 +02:00
|
|
|
|
|
|
|
nsAString_Init(&str_value, NULL);
|
|
|
|
|
2008-10-06 16:49:24 +02:00
|
|
|
get_nsstyle_attr_nsval(nsstyle, sid, &str_value);
|
2007-06-10 11:55:25 +02:00
|
|
|
|
2007-12-17 01:38:30 +01:00
|
|
|
nsAString_GetData(&str_value, &value);
|
2011-07-15 15:37:56 +02:00
|
|
|
hres = nsstyle_to_bstr(value, flags, p);
|
2007-06-10 11:55:25 +02:00
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
|
2008-10-07 21:45:21 +02:00
|
|
|
TRACE("%s -> %s\n", debugstr_w(style_tbl[sid].name), debugstr_w(*p));
|
2011-07-24 01:45:14 +02:00
|
|
|
return hres;
|
2007-09-19 12:42:10 +02:00
|
|
|
}
|
|
|
|
|
2009-02-17 10:29:58 +01:00
|
|
|
HRESULT get_nsstyle_attr_var(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, VARIANT *p, DWORD flags)
|
2008-10-07 21:45:05 +02:00
|
|
|
{
|
|
|
|
nsAString str_value;
|
|
|
|
const PRUnichar *value;
|
|
|
|
BOOL set = FALSE;
|
2011-07-15 15:37:40 +02:00
|
|
|
HRESULT hres = S_OK;
|
2008-10-07 21:45:05 +02:00
|
|
|
|
|
|
|
nsAString_Init(&str_value, NULL);
|
|
|
|
|
|
|
|
get_nsstyle_attr_nsval(nsstyle, sid, &str_value);
|
|
|
|
|
|
|
|
nsAString_GetData(&str_value, &value);
|
|
|
|
|
|
|
|
if(flags & ATTR_STR_TO_INT) {
|
|
|
|
const PRUnichar *ptr = value;
|
|
|
|
BOOL neg = FALSE;
|
|
|
|
INT i = 0;
|
|
|
|
|
|
|
|
if(*ptr == '-') {
|
|
|
|
neg = TRUE;
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(isdigitW(*ptr))
|
|
|
|
i = i*10 + (*ptr++ - '0');
|
|
|
|
|
|
|
|
if(!*ptr) {
|
|
|
|
V_VT(p) = VT_I4;
|
|
|
|
V_I4(p) = neg ? -i : i;
|
|
|
|
set = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!set) {
|
2011-07-15 15:37:40 +02:00
|
|
|
BSTR str;
|
2008-10-07 21:45:05 +02:00
|
|
|
|
2011-07-15 15:37:40 +02:00
|
|
|
hres = nsstyle_to_bstr(value, flags, &str);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
V_VT(p) = VT_BSTR;
|
|
|
|
V_BSTR(p) = str;
|
2008-10-07 21:45:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
|
2008-10-07 21:45:21 +02:00
|
|
|
TRACE("%s -> %s\n", debugstr_w(style_tbl[sid].name), debugstr_variant(p));
|
2011-07-15 15:38:08 +02:00
|
|
|
return S_OK;
|
2008-10-07 21:45:05 +02:00
|
|
|
}
|
|
|
|
|
2008-10-06 16:49:24 +02:00
|
|
|
static inline HRESULT get_style_attr(HTMLStyle *This, styleid_t sid, BSTR *p)
|
|
|
|
{
|
2011-07-15 15:37:56 +02:00
|
|
|
return get_nsstyle_attr(This->nsstyle, sid, p, 0);
|
2008-10-06 16:49:24 +02:00
|
|
|
}
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
static HRESULT check_style_attr_value(HTMLStyle *This, styleid_t sid, LPCWSTR exval, VARIANT_BOOL *p)
|
2007-09-19 12:42:10 +02:00
|
|
|
{
|
|
|
|
nsAString str_value;
|
|
|
|
const PRUnichar *value;
|
|
|
|
|
|
|
|
nsAString_Init(&str_value, NULL);
|
2007-06-10 11:55:25 +02:00
|
|
|
|
2008-10-06 16:49:24 +02:00
|
|
|
get_nsstyle_attr_nsval(This->nsstyle, sid, &str_value);
|
2007-09-19 12:42:10 +02:00
|
|
|
|
2007-12-17 01:38:30 +01:00
|
|
|
nsAString_GetData(&str_value, &value);
|
2007-09-19 12:42:10 +02:00
|
|
|
*p = strcmpW(value, exval) ? VARIANT_FALSE : VARIANT_TRUE;
|
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
|
2008-10-07 21:45:21 +02:00
|
|
|
TRACE("%s -> %x\n", debugstr_w(style_tbl[sid].name), *p);
|
2007-06-10 11:55:25 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2008-11-05 12:06:45 +01:00
|
|
|
static inline HRESULT set_style_pos(HTMLStyle *This, styleid_t sid, float value)
|
|
|
|
{
|
|
|
|
WCHAR szValue[25];
|
|
|
|
WCHAR szFormat[] = {'%','.','0','f','p','x',0};
|
|
|
|
|
|
|
|
value = floor(value);
|
|
|
|
|
|
|
|
sprintfW(szValue, szFormat, value);
|
|
|
|
|
|
|
|
return set_style_attr(This, sid, szValue, 0);
|
|
|
|
}
|
|
|
|
|
2012-09-04 13:59:09 +02:00
|
|
|
static HRESULT set_style_pxattr(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, LONG value)
|
|
|
|
{
|
|
|
|
WCHAR value_str[16];
|
|
|
|
|
|
|
|
sprintfW(value_str, px_formatW, value);
|
|
|
|
|
|
|
|
return set_nsstyle_attr(nsstyle, sid, value_str, 0);
|
|
|
|
}
|
|
|
|
|
2008-12-02 15:28:04 +01:00
|
|
|
static HRESULT get_nsstyle_pos(HTMLStyle *This, styleid_t sid, float *p)
|
2008-11-05 12:06:45 +01:00
|
|
|
{
|
|
|
|
nsAString str_value;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("%p %d %p\n", This, sid, p);
|
|
|
|
|
|
|
|
*p = 0.0f;
|
|
|
|
|
|
|
|
nsAString_Init(&str_value, NULL);
|
|
|
|
|
|
|
|
hres = get_nsstyle_attr_nsval(This->nsstyle, sid, &str_value);
|
|
|
|
if(hres == S_OK)
|
|
|
|
{
|
|
|
|
WCHAR *ptr;
|
|
|
|
const PRUnichar *value;
|
|
|
|
|
|
|
|
nsAString_GetData(&str_value, &value);
|
|
|
|
if(value)
|
|
|
|
{
|
|
|
|
*p = strtolW(value, &ptr, 10);
|
|
|
|
|
|
|
|
if(*ptr && strcmpW(ptr, pxW))
|
|
|
|
{
|
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
FIXME("only px values are currently supported\n");
|
2013-01-07 14:33:25 +01:00
|
|
|
hres = E_FAIL;
|
2008-11-05 12:06:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("ret %f\n", *p);
|
|
|
|
|
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2013-01-07 14:32:56 +01:00
|
|
|
static HRESULT get_nsstyle_pixel_val(HTMLStyle *This, styleid_t sid, LONG *p)
|
|
|
|
{
|
|
|
|
nsAString str_value;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2014-09-09 12:50:25 +02:00
|
|
|
if(!p)
|
|
|
|
return E_POINTER;
|
|
|
|
|
2013-01-07 14:32:56 +01:00
|
|
|
nsAString_Init(&str_value, NULL);
|
|
|
|
|
|
|
|
hres = get_nsstyle_attr_nsval(This->nsstyle, sid, &str_value);
|
|
|
|
if(hres == S_OK) {
|
2016-10-07 18:13:59 +02:00
|
|
|
WCHAR *ptr = NULL;
|
2013-01-07 14:32:56 +01:00
|
|
|
const PRUnichar *value;
|
|
|
|
|
|
|
|
nsAString_GetData(&str_value, &value);
|
|
|
|
if(value) {
|
|
|
|
*p = strtolW(value, &ptr, 10);
|
|
|
|
|
2013-01-10 14:20:16 +01:00
|
|
|
if(*ptr == '.') {
|
|
|
|
/* Skip all digits. We have tests showing that we should not round the value. */
|
|
|
|
while(isdigitW(*++ptr));
|
|
|
|
}
|
2016-10-07 18:13:59 +02:00
|
|
|
}
|
2013-01-10 14:20:16 +01:00
|
|
|
|
2016-10-07 18:13:59 +02:00
|
|
|
if(!ptr || (*ptr && strcmpW(ptr, pxW)))
|
2013-01-07 14:32:56 +01:00
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_Finish(&str_value);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2009-01-13 08:30:17 +01:00
|
|
|
static BOOL is_valid_border_style(BSTR v)
|
|
|
|
{
|
|
|
|
static const WCHAR styleDotted[] = {'d','o','t','t','e','d',0};
|
|
|
|
static const WCHAR styleDashed[] = {'d','a','s','h','e','d',0};
|
|
|
|
static const WCHAR styleSolid[] = {'s','o','l','i','d',0};
|
|
|
|
static const WCHAR styleDouble[] = {'d','o','u','b','l','e',0};
|
|
|
|
static const WCHAR styleGroove[] = {'g','r','o','o','v','e',0};
|
|
|
|
static const WCHAR styleRidge[] = {'r','i','d','g','e',0};
|
|
|
|
static const WCHAR styleInset[] = {'i','n','s','e','t',0};
|
|
|
|
static const WCHAR styleOutset[] = {'o','u','t','s','e','t',0};
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(v));
|
|
|
|
|
|
|
|
if(!v || strcmpiW(v, styleNone) == 0 || strcmpiW(v, styleDotted) == 0 ||
|
|
|
|
strcmpiW(v, styleDashed) == 0 || strcmpiW(v, styleSolid) == 0 ||
|
|
|
|
strcmpiW(v, styleDouble) == 0 || strcmpiW(v, styleGroove) == 0 ||
|
|
|
|
strcmpiW(v, styleRidge) == 0 || strcmpiW(v, styleInset) == 0 ||
|
|
|
|
strcmpiW(v, styleOutset) == 0 )
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-01-04 02:00:53 +01:00
|
|
|
static inline HTMLStyle *impl_from_IHTMLStyle(IHTMLStyle *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLStyle, IHTMLStyle_iface);
|
|
|
|
}
|
2006-11-17 13:04:06 +01:00
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_QueryInterface(IHTMLStyle *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
|
2014-05-12 10:23:17 +02:00
|
|
|
TRACE("(%p)->(%s %p)\n", This, debugstr_mshtml_guid(riid), ppv);
|
2006-11-17 13:04:06 +01:00
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
2011-01-04 02:00:53 +01:00
|
|
|
*ppv = &This->IHTMLStyle_iface;
|
2006-11-17 13:04:06 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLStyle, riid)) {
|
2011-01-04 02:00:53 +01:00
|
|
|
*ppv = &This->IHTMLStyle_iface;
|
2008-10-02 12:37:35 +02:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLStyle2, riid)) {
|
2011-01-04 02:02:40 +01:00
|
|
|
*ppv = &This->IHTMLStyle2_iface;
|
2009-02-03 09:21:32 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLStyle3, riid)) {
|
2011-01-04 02:03:57 +01:00
|
|
|
*ppv = &This->IHTMLStyle3_iface;
|
2009-02-03 09:42:25 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLStyle4, riid)) {
|
2011-01-04 02:05:27 +01:00
|
|
|
*ppv = &This->IHTMLStyle4_iface;
|
2011-07-28 16:28:59 +02:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLStyle5, riid)) {
|
|
|
|
*ppv = &This->IHTMLStyle5_iface;
|
2011-07-28 16:29:33 +02:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLStyle6, riid)) {
|
|
|
|
*ppv = &This->IHTMLStyle6_iface;
|
2008-06-30 21:38:23 +02:00
|
|
|
}else if(dispex_query_interface(&This->dispex, riid, ppv)) {
|
|
|
|
return *ppv ? S_OK : E_NOINTERFACE;
|
2014-05-12 10:23:17 +02:00
|
|
|
}else {
|
|
|
|
*ppv = NULL;
|
|
|
|
WARN("unsupported iface %s\n", debugstr_mshtml_guid(riid));
|
|
|
|
return E_NOINTERFACE;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2014-05-12 10:23:17 +02:00
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle_AddRef(IHTMLStyle *iface)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle_Release(IHTMLStyle *iface)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
2008-10-06 16:49:46 +02:00
|
|
|
if(!ref) {
|
2012-07-25 14:47:13 +02:00
|
|
|
assert(!This->elem);
|
2008-10-06 16:49:46 +02:00
|
|
|
if(This->nsstyle)
|
|
|
|
nsIDOMCSSStyleDeclaration_Release(This->nsstyle);
|
2009-08-31 20:47:55 +02:00
|
|
|
release_dispex(&This->dispex);
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This);
|
2008-10-06 16:49:46 +02:00
|
|
|
}
|
2006-11-17 13:04:06 +01:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_GetTypeInfoCount(IHTMLStyle *iface, UINT *pctinfo)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_GetTypeInfo(IHTMLStyle *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_GetIDsOfNames(IHTMLStyle *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames,
|
|
|
|
lcid, rgDispId);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_Invoke(IHTMLStyle *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid,
|
2008-08-16 13:01:25 +02:00
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_fontFamily(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:05:48 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_FONT_FAMILY, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_fontFamily(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-06-10 11:55:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_FONT_FAMILY, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_fontStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-11 12:16:28 +01:00
|
|
|
static const WCHAR szItalic[] = {'i','t','a','l','i','c',0};
|
|
|
|
static const WCHAR szOblique[] = {'o','b','l','i','q','u','e',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/* fontStyle can only be one of the follow values. */
|
|
|
|
if(!v || strcmpiW(szNormal, v) == 0 || strcmpiW(szItalic, v) == 0 ||
|
|
|
|
strcmpiW(szOblique, v) == 0)
|
|
|
|
{
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_FONT_STYLE, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_fontStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:41:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_FONT_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_fontVariant(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-11 12:37:18 +01:00
|
|
|
static const WCHAR szCaps[] = {'s','m','a','l','l','-','c','a','p','s',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/* fontVariant can only be one of the follow values. */
|
|
|
|
if(!v || strcmpiW(szNormal, v) == 0 || strcmpiW(szCaps, v) == 0)
|
|
|
|
{
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_FONT_VARIANT, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_fontVariant(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-11 12:37:18 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_FONT_VARIANT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_fontWeight(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-04 06:32:31 +01:00
|
|
|
static const WCHAR styleBold[] = {'b','o','l','d',0};
|
|
|
|
static const WCHAR styleBolder[] = {'b','o','l','d','e','r',0};
|
|
|
|
static const WCHAR styleLighter[] = {'l','i','g','h','t','e','r',0};
|
|
|
|
static const WCHAR style100[] = {'1','0','0',0};
|
|
|
|
static const WCHAR style200[] = {'2','0','0',0};
|
|
|
|
static const WCHAR style300[] = {'3','0','0',0};
|
|
|
|
static const WCHAR style400[] = {'4','0','0',0};
|
|
|
|
static const WCHAR style500[] = {'5','0','0',0};
|
|
|
|
static const WCHAR style600[] = {'6','0','0',0};
|
|
|
|
static const WCHAR style700[] = {'7','0','0',0};
|
|
|
|
static const WCHAR style800[] = {'8','0','0',0};
|
|
|
|
static const WCHAR style900[] = {'9','0','0',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/* fontWeight can only be one of the following */
|
2014-12-08 13:39:47 +01:00
|
|
|
if(v && *v && strcmpiW(szNormal, v) && strcmpiW(styleBold, v) && strcmpiW(styleBolder, v)
|
|
|
|
&& strcmpiW(styleLighter, v) && strcmpiW(style100, v) && strcmpiW(style200, v)
|
|
|
|
&& strcmpiW(style300, v) && strcmpiW(style400, v) && strcmpiW(style500, v) && strcmpiW(style600, v)
|
|
|
|
&& strcmpiW(style700, v) && strcmpiW(style800, v) && strcmpiW(style900, v))
|
|
|
|
return E_INVALIDARG;
|
2009-02-04 06:32:31 +01:00
|
|
|
|
2014-12-08 13:39:47 +01:00
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_FONT_WEIGHT, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_fontWeight(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:41:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_FONT_WEIGHT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_fontSize(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:07:12 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2006-11-17 13:07:12 +01:00
|
|
|
|
2012-03-30 14:13:49 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_FONT_SIZE, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_fontSize(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:41:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-03-30 14:13:49 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_FONT_SIZE, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_font(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_font(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_color(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-06-18 00:12:43 +02:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2008-06-18 00:12:43 +02:00
|
|
|
|
2012-03-30 14:14:03 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_COLOR, &v, ATTR_HEX_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_color(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:41:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-03-30 14:14:03 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_COLOR, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_background(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-06-18 00:12:26 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_BACKGROUND, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_background(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-08-13 01:29:57 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_BACKGROUND, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundColor(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:06:30 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2006-11-17 13:06:30 +01:00
|
|
|
|
2012-03-30 14:14:16 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BACKGROUND_COLOR, &v, ATTR_HEX_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundColor(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-30 14:14:16 +02:00
|
|
|
|
2009-02-04 06:01:05 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-03-30 14:14:16 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BACKGROUND_COLOR, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundImage(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-04-28 11:57:06 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_BACKGROUND_IMAGE, v, ATTR_FIX_URL);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundImage(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-11 12:45:24 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BACKGROUND_IMAGE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundRepeat(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-25 05:50:33 +01:00
|
|
|
static const WCHAR styleRepeat[] = {'r','e','p','e','a','t',0};
|
|
|
|
static const WCHAR styleNoRepeat[] = {'n','o','-','r','e','p','e','a','t',0};
|
|
|
|
static const WCHAR styleRepeatX[] = {'r','e','p','e','a','t','-','x',0};
|
|
|
|
static const WCHAR styleRepeatY[] = {'r','e','p','e','a','t','-','y',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/* fontWeight can only be one of the following */
|
|
|
|
if(!v || strcmpiW(styleRepeat, v) == 0 || strcmpiW(styleNoRepeat, v) == 0 ||
|
|
|
|
strcmpiW(styleRepeatX, v) == 0 || strcmpiW(styleRepeatY, v) == 0 )
|
|
|
|
{
|
|
|
|
return set_style_attr(This, STYLEID_BACKGROUND_REPEAT , v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundRepeat(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-25 05:50:33 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BACKGROUND_REPEAT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundAttachment(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-18 17:31:01 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BACKGROUND_ATTACHMENT, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundAttachment(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-18 17:31:01 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BACKGROUND_ATTACHMENT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundPosition(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-25 14:11:16 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BACKGROUND_POSITION, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundPosition(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-25 14:11:16 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BACKGROUND_POSITION, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundPositionX(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-25 14:11:52 +01:00
|
|
|
WCHAR buf[14], *pos_val;
|
|
|
|
nsAString pos_str;
|
|
|
|
const WCHAR *val;
|
|
|
|
DWORD val_len;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2011-02-25 14:11:52 +01:00
|
|
|
|
|
|
|
hres = var_to_styleval(&v, buf, ATTR_FIX_PX, &val);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
val_len = val ? strlenW(val) : 0;
|
|
|
|
|
|
|
|
nsAString_Init(&pos_str, NULL);
|
|
|
|
hres = get_nsstyle_attr_nsval(This->nsstyle, STYLEID_BACKGROUND_POSITION, &pos_str);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
const PRUnichar *pos, *posy;
|
|
|
|
DWORD posy_len;
|
|
|
|
|
|
|
|
nsAString_GetData(&pos_str, &pos);
|
|
|
|
posy = strchrW(pos, ' ');
|
|
|
|
if(!posy) {
|
|
|
|
static const WCHAR zero_pxW[] = {' ','0','p','x',0};
|
|
|
|
|
|
|
|
TRACE("no space in %s\n", debugstr_w(pos));
|
|
|
|
posy = zero_pxW;
|
|
|
|
}
|
|
|
|
|
|
|
|
posy_len = strlenW(posy);
|
|
|
|
pos_val = heap_alloc((val_len+posy_len+1)*sizeof(WCHAR));
|
|
|
|
if(pos_val) {
|
|
|
|
if(val_len)
|
|
|
|
memcpy(pos_val, val, val_len*sizeof(WCHAR));
|
|
|
|
if(posy_len)
|
|
|
|
memcpy(pos_val+val_len, posy, posy_len*sizeof(WCHAR));
|
|
|
|
pos_val[val_len+posy_len] = 0;
|
|
|
|
}else {
|
|
|
|
hres = E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsAString_Finish(&pos_str);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
TRACE("setting position to %s\n", debugstr_w(pos_val));
|
|
|
|
hres = set_nsstyle_attr(This->nsstyle, STYLEID_BACKGROUND_POSITION, pos_val, ATTR_FIX_PX);
|
|
|
|
heap_free(pos_val);
|
|
|
|
return hres;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundPositionX(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-25 14:12:02 +01:00
|
|
|
nsAString pos_str;
|
|
|
|
BSTR ret;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-03-05 10:24:24 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
2011-02-25 14:12:02 +01:00
|
|
|
|
|
|
|
nsAString_Init(&pos_str, NULL);
|
|
|
|
hres = get_nsstyle_attr_nsval(This->nsstyle, STYLEID_BACKGROUND_POSITION, &pos_str);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
const PRUnichar *pos, *space;
|
|
|
|
|
|
|
|
nsAString_GetData(&pos_str, &pos);
|
|
|
|
space = strchrW(pos, ' ');
|
|
|
|
if(!space) {
|
|
|
|
WARN("no space in %s\n", debugstr_w(pos));
|
|
|
|
space = pos + strlenW(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(space != pos) {
|
|
|
|
ret = SysAllocStringLen(pos, space-pos);
|
|
|
|
if(!ret)
|
|
|
|
hres = E_OUTOFMEMORY;
|
|
|
|
}else {
|
|
|
|
ret = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsAString_Finish(&pos_str);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
TRACE("returning %s\n", debugstr_w(ret));
|
|
|
|
V_VT(p) = VT_BSTR;
|
|
|
|
V_BSTR(p) = ret;
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_backgroundPositionY(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-25 14:12:13 +01:00
|
|
|
WCHAR buf[14], *pos_val;
|
|
|
|
nsAString pos_str;
|
|
|
|
const WCHAR *val;
|
|
|
|
DWORD val_len;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2011-02-25 14:12:13 +01:00
|
|
|
|
|
|
|
hres = var_to_styleval(&v, buf, ATTR_FIX_PX, &val);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
val_len = val ? strlenW(val) : 0;
|
|
|
|
|
|
|
|
nsAString_Init(&pos_str, NULL);
|
|
|
|
hres = get_nsstyle_attr_nsval(This->nsstyle, STYLEID_BACKGROUND_POSITION, &pos_str);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
const PRUnichar *pos, *space;
|
|
|
|
DWORD posx_len;
|
|
|
|
|
|
|
|
nsAString_GetData(&pos_str, &pos);
|
|
|
|
space = strchrW(pos, ' ');
|
|
|
|
if(space) {
|
|
|
|
space++;
|
|
|
|
}else {
|
|
|
|
static const WCHAR zero_pxW[] = {'0','p','x',' ',0};
|
|
|
|
|
|
|
|
TRACE("no space in %s\n", debugstr_w(pos));
|
|
|
|
pos = zero_pxW;
|
|
|
|
space = pos + sizeof(zero_pxW)/sizeof(WCHAR)-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
posx_len = space-pos;
|
|
|
|
|
|
|
|
pos_val = heap_alloc((posx_len+val_len+1)*sizeof(WCHAR));
|
|
|
|
if(pos_val) {
|
|
|
|
memcpy(pos_val, pos, posx_len*sizeof(WCHAR));
|
|
|
|
if(val_len)
|
|
|
|
memcpy(pos_val+posx_len, val, val_len*sizeof(WCHAR));
|
|
|
|
pos_val[posx_len+val_len] = 0;
|
|
|
|
}else {
|
|
|
|
hres = E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsAString_Finish(&pos_str);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
TRACE("setting position to %s\n", debugstr_w(pos_val));
|
|
|
|
hres = set_nsstyle_attr(This->nsstyle, STYLEID_BACKGROUND_POSITION, pos_val, ATTR_FIX_PX);
|
|
|
|
heap_free(pos_val);
|
|
|
|
return hres;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_backgroundPositionY(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-25 14:12:26 +01:00
|
|
|
nsAString pos_str;
|
|
|
|
BSTR ret;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-03-05 10:26:36 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
2011-02-25 14:12:26 +01:00
|
|
|
|
|
|
|
nsAString_Init(&pos_str, NULL);
|
|
|
|
hres = get_nsstyle_attr_nsval(This->nsstyle, STYLEID_BACKGROUND_POSITION, &pos_str);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
const PRUnichar *pos, *posy;
|
|
|
|
|
|
|
|
nsAString_GetData(&pos_str, &pos);
|
|
|
|
posy = strchrW(pos, ' ');
|
|
|
|
if(posy) {
|
|
|
|
ret = SysAllocString(posy+1);
|
|
|
|
if(!ret)
|
|
|
|
hres = E_OUTOFMEMORY;
|
|
|
|
}else {
|
|
|
|
ret = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsAString_Finish(&pos_str);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
TRACE("returning %s\n", debugstr_w(ret));
|
|
|
|
V_VT(p) = VT_BSTR;
|
|
|
|
V_BSTR(p) = ret;
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_wordSpacing(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2009-08-21 12:55:29 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_WORD_SPACING, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_wordSpacing(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-08-21 12:55:29 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_WORD_SPACING, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_letterSpacing(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2009-08-25 08:17:56 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_LETTER_SPACING, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_letterSpacing(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-08-25 08:17:56 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_LETTER_SPACING, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textDecoration(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 10:26:59 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/* textDecoration can only be one of the following */
|
|
|
|
if(!v || strcmpiW(styleNone, v) == 0 || strcmpiW(valUnderline, v) == 0 ||
|
|
|
|
strcmpiW(valOverline, v) == 0 || strcmpiW(valLineThrough, v) == 0 ||
|
|
|
|
strcmpiW(valBlink, v) == 0)
|
|
|
|
{
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_DECORATION , v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textDecoration(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:42:10 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_TEXT_DECORATION, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textDecorationNone(IHTMLStyle *iface, VARIANT_BOOL v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 06:53:52 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_DECORATION, v ? styleNone : emptyW, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textDecorationNone(IHTMLStyle *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 06:53:52 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return check_style_attr_value(This, STYLEID_TEXT_DECORATION, styleNone, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textDecorationUnderline(IHTMLStyle *iface, VARIANT_BOOL v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-08 10:06:57 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_DECORATION, v ? valUnderline : emptyW, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textDecorationUnderline(IHTMLStyle *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:42:10 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return check_style_attr_value(This, STYLEID_TEXT_DECORATION, valUnderline, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textDecorationOverline(IHTMLStyle *iface, VARIANT_BOOL v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 09:57:37 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_DECORATION, v ? valOverline : emptyW, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textDecorationOverline(IHTMLStyle *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 09:57:37 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return check_style_attr_value(This, STYLEID_TEXT_DECORATION, valOverline, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textDecorationLineThrough(IHTMLStyle *iface, VARIANT_BOOL v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-08 10:12:59 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_DECORATION, v ? valLineThrough : emptyW, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textDecorationLineThrough(IHTMLStyle *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-09-19 12:42:10 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return check_style_attr_value(This, STYLEID_TEXT_DECORATION, valLineThrough, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textDecorationBlink(IHTMLStyle *iface, VARIANT_BOOL v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 10:06:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_DECORATION, v ? valBlink : emptyW, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textDecorationBlink(IHTMLStyle *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-01 10:06:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return check_style_attr_value(This, STYLEID_TEXT_DECORATION, valBlink, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_verticalAlign(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:51:21 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2012-04-04 10:30:47 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_VERTICAL_ALIGN, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_verticalAlign(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:51:21 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-04-04 10:30:47 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_VERTICAL_ALIGN, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textTransform(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-07-31 06:22:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_TRANSFORM, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textTransform(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-07-31 06:22:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_TEXT_TRANSFORM, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textAlign(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-07 21:45:31 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_TEXT_ALIGN, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textAlign(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-07 21:45:31 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_TEXT_ALIGN, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_textIndent(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-09 02:31:31 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_TEXT_INDENT, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_textIndent(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-09 02:31:31 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_TEXT_INDENT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_lineHeight(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-11 05:08:04 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_LINE_HEIGHT, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_lineHeight(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-11 05:08:04 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_LINE_HEIGHT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_marginTop(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-14 01:03:15 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2009-12-14 01:03:15 +01:00
|
|
|
|
2012-01-26 14:33:15 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_TOP, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_marginTop(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-14 01:03:15 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_TOP, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_marginRight(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-12-10 20:11:58 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2007-12-10 20:11:58 +01:00
|
|
|
|
2012-01-26 14:33:02 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_RIGHT, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_marginRight(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-18 10:24:54 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_RIGHT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_marginBottom(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:33:24 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2012-01-26 14:33:24 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_BOTTOM, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_marginBottom(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:33:24 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_BOTTOM, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_marginLeft(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-12-10 20:11:58 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2007-12-10 20:11:58 +01:00
|
|
|
|
2012-01-26 14:33:38 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_LEFT, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_margin(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-09-11 01:46:32 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_MARGIN, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_margin(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-09-11 01:46:32 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_MARGIN, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_marginLeft(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-18 10:30:08 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MARGIN_LEFT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_paddingTop(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:33:47 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2012-01-26 14:33:47 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_TOP, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_paddingTop(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:33:47 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_TOP, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_paddingRight(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:33:57 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2012-01-26 14:33:57 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_RIGHT, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_paddingRight(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:33:57 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_RIGHT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_paddingBottom(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:34:05 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2012-01-26 14:34:05 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_BOTTOM, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_paddingBottom(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-01-26 14:34:05 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_BOTTOM, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_paddingLeft(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-12-10 20:11:58 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2007-12-10 20:11:58 +01:00
|
|
|
|
2012-01-26 14:34:22 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_LEFT, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_paddingLeft(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-02-08 10:20:38 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-01-26 14:34:22 +01:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_LEFT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_padding(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-11-29 00:18:48 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_PADDING, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_padding(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-11-29 00:18:48 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_PADDING, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_border(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:50:03 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BORDER, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_border(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:50:03 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BORDER, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderTop(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-01 21:04:38 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_TOP, v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderTop(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-01 21:04:38 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_TOP, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderRight(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-01 21:04:38 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_RIGHT, v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderRight(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-01 21:04:38 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_RIGHT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderBottom(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-01 21:04:38 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_BOTTOM, v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderBottom(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-12-01 21:04:38 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_BOTTOM, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderLeft(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-12-10 20:11:58 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_BORDER_LEFT, v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderLeft(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-03 12:01:16 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_LEFT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderColor(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-03 11:04:49 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_COLOR, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderColor(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-03 11:04:49 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_COLOR, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderTopColor(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-01-27 06:07:45 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2011-01-27 06:07:45 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_TOP_COLOR, &v, ATTR_HEX_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderTopColor(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-02-11 01:19:58 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_TOP_COLOR, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderRightColor(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-07 03:38:19 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2011-02-07 03:38:19 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_RIGHT_COLOR, &v, ATTR_HEX_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderRightColor(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-02-09 19:35:41 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_RIGHT_COLOR, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderBottomColor(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-04 16:47:10 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2011-02-04 16:47:10 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_BOTTOM_COLOR, &v, ATTR_HEX_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderBottomColor(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-02-11 01:19:58 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_BOTTOM_COLOR, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderLeftColor(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-04 17:42:29 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2011-02-04 17:42:29 +01:00
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_LEFT_COLOR, &v, ATTR_HEX_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderLeftColor(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2010-02-11 01:19:58 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_LEFT_COLOR, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderWidth(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-10 12:00:53 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_WIDTH, v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderWidth(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-10 12:00:53 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_WIDTH, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderTopWidth(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2009-03-05 10:32:41 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_TOP_WIDTH, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderTopWidth(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-05 10:32:41 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_TOP_WIDTH, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderRightWidth(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2009-03-05 10:35:50 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_RIGHT_WIDTH, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderRightWidth(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
2009-03-05 10:35:50 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
2009-03-05 10:35:50 +01:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_RIGHT_WIDTH, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderBottomWidth(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-05 10:41:39 +01:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2009-03-05 10:41:39 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_BOTTOM_WIDTH, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderBottomWidth(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-05 10:41:39 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_BOTTOM_WIDTH, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderLeftWidth(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-03-28 14:25:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2009-03-05 10:44:38 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_LEFT_WIDTH, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderLeftWidth(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-05 10:44:38 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BORDER_LEFT_WIDTH, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-02 11:58:55 +01:00
|
|
|
static const WCHAR styleWindowInset[] = {'w','i','n','d','o','w','-','i','n','s','e','t',0};
|
|
|
|
HRESULT hres = S_OK;
|
|
|
|
BSTR pstyle;
|
|
|
|
int i=0;
|
|
|
|
int last = 0;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
while(v[i] && hres == S_OK)
|
|
|
|
{
|
|
|
|
if(v[i] == (WCHAR)' ')
|
|
|
|
{
|
|
|
|
pstyle = SysAllocStringLen(&v[last], (i-last));
|
|
|
|
if( !(is_valid_border_style(pstyle) || strcmpiW(styleWindowInset, pstyle) == 0))
|
|
|
|
{
|
|
|
|
TRACE("1. Invalid style (%s)\n", debugstr_w(pstyle));
|
|
|
|
hres = E_INVALIDARG;
|
|
|
|
}
|
|
|
|
SysFreeString(pstyle);
|
|
|
|
last = i+1;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(hres == S_OK)
|
|
|
|
{
|
|
|
|
pstyle = SysAllocStringLen(&v[last], i-last);
|
|
|
|
if( !(is_valid_border_style(pstyle) || strcmpiW(styleWindowInset, pstyle) == 0))
|
|
|
|
{
|
|
|
|
TRACE("2. Invalid style (%s)\n", debugstr_w(pstyle));
|
|
|
|
hres = E_INVALIDARG;
|
|
|
|
}
|
|
|
|
SysFreeString(pstyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(hres == S_OK)
|
|
|
|
hres = set_nsstyle_attr(This->nsstyle, STYLEID_BORDER_STYLE, v, 0);
|
|
|
|
|
|
|
|
return hres;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-02 11:58:55 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderTopStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:40:01 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
if(!is_valid_border_style(v))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_TOP_STYLE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderTopStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:40:01 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_TOP_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderRightStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:39:23 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
if(!is_valid_border_style(v))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_RIGHT_STYLE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderRightStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:39:23 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_RIGHT_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderBottomStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:38:32 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
if(!is_valid_border_style(v))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_BOTTOM_STYLE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderBottomStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:38:32 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_BOTTOM_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_borderLeftStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:30:17 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
if(!is_valid_border_style(v))
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_BORDER_LEFT_STYLE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_borderLeftStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-13 08:30:17 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
return get_style_attr(This, STYLEID_BORDER_LEFT_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_width(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-06-30 21:39:52 +02:00
|
|
|
|
2012-03-28 14:25:54 +02:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
2008-06-30 21:39:52 +02:00
|
|
|
|
2010-02-08 21:48:31 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_WIDTH, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_width(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-06-30 21:39:52 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-03-30 14:14:26 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_WIDTH, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_height(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:51:34 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2011-11-12 14:32:31 +01:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_HEIGHT, &v, ATTR_FIX_PX);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_height(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:51:34 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-04-04 10:30:59 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_HEIGHT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_styleFloat(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-12-15 19:13:13 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_FLOAT, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_styleFloat(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-12-15 19:13:13 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_FLOAT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_clear(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-10-23 13:41:13 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_CLEAR, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_clear(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-10-23 13:41:13 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_CLEAR, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_display(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-10-13 04:00:02 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_DISPLAY, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_display(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-10-13 04:00:02 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_DISPLAY, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_visibility(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-10-13 04:00:02 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return set_style_attr(This, STYLEID_VISIBILITY, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_visibility(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2007-10-13 04:00:02 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2008-10-06 16:48:25 +02:00
|
|
|
return get_style_attr(This, STYLEID_VISIBILITY, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_listStyleType(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-03-24 13:47:56 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_LISTSTYLETYPE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_listStyleType(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-03-24 13:47:56 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_LISTSTYLETYPE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_listStylePosition(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-10 15:14:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_LISTSTYLEPOSITION, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_listStylePosition(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-10 15:14:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_LISTSTYLEPOSITION, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_listStyleImage(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_listStyleImage(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_listStyle(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-20 15:35:43 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_LIST_STYLE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_listStyle(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-08-20 15:35:43 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_LIST_STYLE, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_whiteSpace(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2013-08-28 17:51:08 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_WHITE_SPACE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_whiteSpace(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2013-08-28 17:51:08 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_WHITE_SPACE, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_top(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:51:04 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2008-10-13 21:51:18 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_TOP, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_top(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:51:04 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-04-04 10:31:07 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_TOP, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_left(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:50:28 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2008-10-13 21:51:27 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_LEFT, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_left(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:50:28 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-04-04 10:31:20 +02:00
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_LEFT, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_position(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-19 07:46:58 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
2011-01-04 02:02:40 +01:00
|
|
|
return IHTMLStyle2_get_position(&This->IHTMLStyle2_iface, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_zIndex(IHTMLStyle *iface, VARIANT v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-07 21:45:05 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
2012-04-04 10:31:29 +02:00
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_Z_INDEX, &v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_zIndex(IHTMLStyle *iface, VARIANT *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-07 21:45:05 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_Z_INDEX, p, ATTR_STR_TO_INT);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_overflow(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-11-25 11:04:11 +01:00
|
|
|
static const WCHAR szVisible[] = {'v','i','s','i','b','l','e',0};
|
|
|
|
static const WCHAR szScroll[] = {'s','c','r','o','l','l',0};
|
|
|
|
static const WCHAR szHidden[] = {'h','i','d','d','e','n',0};
|
|
|
|
static const WCHAR szAuto[] = {'a','u','t','o',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/* overflow can only be one of the follow values. */
|
2009-09-08 22:26:49 +02:00
|
|
|
if(!v || !*v || strcmpiW(szVisible, v) == 0 || strcmpiW(szScroll, v) == 0 ||
|
2008-11-25 11:04:11 +01:00
|
|
|
strcmpiW(szHidden, v) == 0 || strcmpiW(szAuto, v) == 0)
|
|
|
|
{
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2008-11-25 11:04:11 +01:00
|
|
|
|
2006-11-17 13:04:06 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_get_overflow(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-11-25 11:04:11 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_OVERFLOW, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_pageBreakBefore(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-07-21 12:26:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_PAGE_BREAK_BEFORE, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_pageBreakBefore(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-07-21 12:26:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_PAGE_BREAK_BEFORE, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_pageBreakAfter(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-07-18 13:39:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_PAGE_BREAK_AFTER, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_pageBreakAfter(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-07-18 13:39:37 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_PAGE_BREAK_AFTER, p, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_cssText(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-09 20:46:01 +01:00
|
|
|
nsAString text_str;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2010-01-28 23:55:06 +01:00
|
|
|
nsAString_InitDepend(&text_str, v);
|
2009-03-09 20:46:01 +01:00
|
|
|
nsres = nsIDOMCSSStyleDeclaration_SetCssText(This->nsstyle, &text_str);
|
|
|
|
nsAString_Finish(&text_str);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
FIXME("SetCssStyle failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_cssText(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-03-09 20:45:48 +01:00
|
|
|
nsAString text_str;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
/* FIXME: Gecko style formatting is different than IE (uppercase). */
|
|
|
|
nsAString_Init(&text_str, NULL);
|
|
|
|
nsres = nsIDOMCSSStyleDeclaration_GetCssText(This->nsstyle, &text_str);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
|
|
|
const PRUnichar *text;
|
|
|
|
|
|
|
|
nsAString_GetData(&text_str, &text);
|
|
|
|
*p = *text ? SysAllocString(text) : NULL;
|
|
|
|
}else {
|
|
|
|
FIXME("GetCssStyle failed: %08x\n", nsres);
|
|
|
|
*p = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_Finish(&text_str);
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_put_pixelTop(IHTMLStyle *iface, LONG v)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-09-09 12:50:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%d)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pxattr(This->nsstyle, STYLEID_TOP, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_get_pixelTop(IHTMLStyle *iface, LONG *p)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-09-09 12:50:54 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_pixel_val(This, STYLEID_TOP, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_put_pixelLeft(IHTMLStyle *iface, LONG v)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2013-01-07 14:33:12 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%d)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pxattr(This->nsstyle, STYLEID_LEFT, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_get_pixelLeft(IHTMLStyle *iface, LONG *p)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2013-01-07 14:32:56 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_pixel_val(This, STYLEID_LEFT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_put_pixelWidth(IHTMLStyle *iface, LONG v)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-09-04 13:59:09 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
return set_style_pxattr(This->nsstyle, STYLEID_WIDTH, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_get_pixelWidth(IHTMLStyle *iface, LONG *p)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-09-09 12:50:36 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_pixel_val(This, STYLEID_WIDTH, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_put_pixelHeight(IHTMLStyle *iface, LONG v)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-09-09 12:50:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%d)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pxattr(This->nsstyle, STYLEID_HEIGHT, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:43:31 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_get_pixelHeight(IHTMLStyle *iface, LONG *p)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2014-09-09 12:50:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_pixel_val(This, STYLEID_HEIGHT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_posTop(IHTMLStyle *iface, float v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-11-11 12:36:39 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%f)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pos(This, STYLEID_TOP, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_posTop(IHTMLStyle *iface, float *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-11-11 12:36:39 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
return get_nsstyle_pos(This, STYLEID_TOP, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_posLeft(IHTMLStyle *iface, float v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-11-05 12:06:45 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%f)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pos(This, STYLEID_LEFT, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_posLeft(IHTMLStyle *iface, float *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-11-05 12:06:45 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
return get_nsstyle_pos(This, STYLEID_LEFT, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_posWidth(IHTMLStyle *iface, float v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-08 11:08:17 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%f)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pos(This, STYLEID_WIDTH, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_posWidth(IHTMLStyle *iface, float *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-08 11:08:17 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
if(get_nsstyle_pos(This, STYLEID_WIDTH, p) != S_OK)
|
|
|
|
*p = 0.0f;
|
|
|
|
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_posHeight(IHTMLStyle *iface, float v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-10 00:40:28 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%f)\n", This, v);
|
|
|
|
|
|
|
|
return set_style_pos(This, STYLEID_HEIGHT, v);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_posHeight(IHTMLStyle *iface, float *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-12-10 00:40:28 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!p)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
if(get_nsstyle_pos(This, STYLEID_HEIGHT, p) != S_OK)
|
|
|
|
*p = 0.0f;
|
|
|
|
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_cursor(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:50:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_CURSOR, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_cursor(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-06 16:50:46 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_style_attr(This, STYLEID_CURSOR, p);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_put_clip(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-07-15 15:38:08 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_style_attr(This, STYLEID_CLIP, v, 0);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_clip(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-07-15 15:38:08 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_CLIP, p, ATTR_REMOVE_COMMA);
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
2011-02-28 13:13:37 +01:00
|
|
|
static void set_opacity(HTMLStyle *This, const WCHAR *val)
|
|
|
|
{
|
|
|
|
nsAString name_str, val_str, empty_str;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
static const WCHAR opacityW[] = {'o','p','a','c','i','t','y',0};
|
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(val));
|
|
|
|
|
|
|
|
nsAString_InitDepend(&name_str, opacityW);
|
|
|
|
nsAString_InitDepend(&val_str, val);
|
|
|
|
nsAString_InitDepend(&empty_str, emptyW);
|
|
|
|
|
|
|
|
nsres = nsIDOMCSSStyleDeclaration_SetProperty(This->nsstyle, &name_str, &val_str, &empty_str);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("SetProperty failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
nsAString_Finish(&name_str);
|
|
|
|
nsAString_Finish(&val_str);
|
|
|
|
nsAString_Finish(&empty_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_filter(HTMLStyle *This)
|
|
|
|
{
|
2017-04-24 15:20:03 +02:00
|
|
|
const WCHAR *ptr, *ptr2;
|
2011-02-28 13:13:37 +01:00
|
|
|
|
|
|
|
static const WCHAR alphaW[] = {'a','l','p','h','a'};
|
|
|
|
|
2017-04-24 15:20:03 +02:00
|
|
|
if(get_style_compat_mode(This) >= COMPAT_MODE_IE10)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ptr = This->elem->filter;
|
|
|
|
TRACE("%s\n", debugstr_w(ptr));
|
2011-02-28 13:13:37 +01:00
|
|
|
if(!ptr) {
|
|
|
|
set_opacity(This, emptyW);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
while(isspaceW(*ptr))
|
|
|
|
ptr++;
|
|
|
|
if(!*ptr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ptr2 = ptr;
|
|
|
|
while(isalnumW(*ptr))
|
|
|
|
ptr++;
|
|
|
|
if(ptr == ptr2) {
|
|
|
|
WARN("unexpected char '%c'\n", *ptr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(*ptr != '(') {
|
|
|
|
WARN("expected '('\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ptr2 + sizeof(alphaW)/sizeof(WCHAR) == ptr && !memcmp(ptr2, alphaW, sizeof(alphaW))) {
|
|
|
|
static const WCHAR formatW[] = {'%','f',0};
|
|
|
|
static const WCHAR opacityW[] = {'o','p','a','c','i','t','y','='};
|
|
|
|
|
|
|
|
ptr++;
|
|
|
|
do {
|
|
|
|
while(isspaceW(*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
ptr2 = ptr;
|
|
|
|
while(*ptr && *ptr != ',' && *ptr != ')')
|
|
|
|
ptr++;
|
|
|
|
if(!*ptr) {
|
|
|
|
WARN("unexpected end of string\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ptr-ptr2 > sizeof(opacityW)/sizeof(WCHAR) && !memcmp(ptr2, opacityW, sizeof(opacityW))) {
|
|
|
|
float fval = 0.0f, e = 0.1f;
|
|
|
|
WCHAR buf[32];
|
|
|
|
|
|
|
|
ptr2 += sizeof(opacityW)/sizeof(WCHAR);
|
|
|
|
|
|
|
|
while(isdigitW(*ptr2))
|
|
|
|
fval = fval*10.0f + (float)(*ptr2++ - '0');
|
|
|
|
|
|
|
|
if(*ptr2 == '.') {
|
|
|
|
while(isdigitW(*++ptr2)) {
|
|
|
|
fval += e * (float)(*ptr2++ - '0');
|
|
|
|
e *= 0.1f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintfW(buf, formatW, fval * 0.01f);
|
|
|
|
set_opacity(This, buf);
|
|
|
|
}else {
|
|
|
|
FIXME("unknown param %s\n", debugstr_wn(ptr2, ptr-ptr2));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*ptr == ',')
|
|
|
|
ptr++;
|
|
|
|
}while(*ptr != ')');
|
|
|
|
}else {
|
|
|
|
FIXME("unknown filter %s\n", debugstr_wn(ptr2, ptr-ptr2));
|
|
|
|
ptr = strchrW(ptr, ')');
|
|
|
|
if(!ptr)
|
|
|
|
break;
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-17 13:04:06 +01:00
|
|
|
static HRESULT WINAPI HTMLStyle_put_filter(IHTMLStyle *iface, BSTR v)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2011-02-28 13:12:50 +01:00
|
|
|
WCHAR *new_filter = NULL;
|
2008-10-07 21:45:46 +02:00
|
|
|
|
2011-02-28 13:12:50 +01:00
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2012-03-16 12:17:50 +01:00
|
|
|
if(!This->elem) {
|
|
|
|
FIXME("Element already destroyed\n");
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
2011-02-28 13:12:50 +01:00
|
|
|
if(v) {
|
|
|
|
new_filter = heap_strdupW(v);
|
|
|
|
if(!new_filter)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2008-10-07 21:45:46 +02:00
|
|
|
|
2012-03-16 12:17:50 +01:00
|
|
|
heap_free(This->elem->filter);
|
|
|
|
This->elem->filter = new_filter;
|
2011-02-28 13:13:37 +01:00
|
|
|
|
|
|
|
update_filter(This);
|
2011-02-28 13:12:50 +01:00
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_get_filter(IHTMLStyle *iface, BSTR *p)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2008-10-07 21:45:46 +02:00
|
|
|
|
2011-02-28 13:12:50 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2012-03-16 12:17:50 +01:00
|
|
|
if(!This->elem) {
|
|
|
|
FIXME("Element already destroyed\n");
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(This->elem->filter) {
|
|
|
|
*p = SysAllocString(This->elem->filter);
|
2011-02-28 13:12:50 +01:00
|
|
|
if(!*p)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}else {
|
|
|
|
*p = NULL;
|
|
|
|
}
|
2008-10-07 21:45:46 +02:00
|
|
|
|
2011-02-28 13:12:50 +01:00
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_setAttribute(IHTMLStyle *iface, BSTR strAttributeName,
|
|
|
|
VARIANT AttributeValue, LONG lFlags)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-05 11:22:35 +01:00
|
|
|
HRESULT hres;
|
|
|
|
DISPID dispid;
|
|
|
|
|
2012-03-30 14:14:26 +02:00
|
|
|
TRACE("(%p)->(%s %s %08x)\n", This, debugstr_w(strAttributeName),
|
|
|
|
debugstr_variant(&AttributeValue), lFlags);
|
2009-01-05 11:22:35 +01:00
|
|
|
|
|
|
|
if(!strAttributeName)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if(lFlags == 1)
|
|
|
|
FIXME("Parameter lFlags ignored\n");
|
|
|
|
|
2009-02-16 09:53:46 +01:00
|
|
|
hres = HTMLStyle_GetIDsOfNames(iface, &IID_NULL, &strAttributeName, 1,
|
2009-01-05 11:22:35 +01:00
|
|
|
LOCALE_USER_DEFAULT, &dispid);
|
|
|
|
if(hres == S_OK)
|
|
|
|
{
|
|
|
|
VARIANT ret;
|
|
|
|
DISPID dispidNamed = DISPID_PROPERTYPUT;
|
|
|
|
DISPPARAMS params;
|
|
|
|
|
|
|
|
params.cArgs = 1;
|
|
|
|
params.rgvarg = &AttributeValue;
|
|
|
|
params.cNamedArgs = 1;
|
|
|
|
params.rgdispidNamedArgs = &dispidNamed;
|
|
|
|
|
|
|
|
hres = HTMLStyle_Invoke(iface, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("Custom attributes not supported.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("ret: %08x\n", hres);
|
|
|
|
|
|
|
|
return hres;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_getAttribute(IHTMLStyle *iface, BSTR strAttributeName,
|
|
|
|
LONG lFlags, VARIANT *AttributeValue)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2009-01-05 11:22:35 +01:00
|
|
|
HRESULT hres;
|
|
|
|
DISPID dispid;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s v%p %08x)\n", This, debugstr_w(strAttributeName),
|
|
|
|
AttributeValue, lFlags);
|
|
|
|
|
|
|
|
if(!AttributeValue || !strAttributeName)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if(lFlags == 1)
|
|
|
|
FIXME("Parameter lFlags ignored\n");
|
|
|
|
|
2009-02-16 09:53:46 +01:00
|
|
|
hres = HTMLStyle_GetIDsOfNames(iface, &IID_NULL, &strAttributeName, 1,
|
2009-01-05 11:22:35 +01:00
|
|
|
LOCALE_USER_DEFAULT, &dispid);
|
|
|
|
if(hres == S_OK)
|
|
|
|
{
|
|
|
|
DISPPARAMS params = {NULL, NULL, 0, 0 };
|
|
|
|
|
|
|
|
hres = HTMLStyle_Invoke(iface, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYGET, ¶ms, AttributeValue, NULL, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("Custom attributes not supported.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return hres;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_removeAttribute(IHTMLStyle *iface, BSTR strAttributeName,
|
|
|
|
LONG lFlags, VARIANT_BOOL *pfSuccess)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2012-04-16 13:49:09 +02:00
|
|
|
const style_tbl_entry_t *style_entry;
|
|
|
|
nsAString name_str, ret_str;
|
|
|
|
nsresult nsres;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %08x %p)\n", This, debugstr_w(strAttributeName), lFlags, pfSuccess);
|
|
|
|
|
|
|
|
style_entry = lookup_style_tbl(strAttributeName);
|
|
|
|
if(!style_entry) {
|
|
|
|
DISPID dispid;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
hres = IDispatchEx_GetDispID(&This->dispex.IDispatchEx_iface, strAttributeName,
|
|
|
|
(lFlags&1) ? fdexNameCaseSensitive : fdexNameCaseInsensitive, &dispid);
|
|
|
|
if(hres != S_OK) {
|
|
|
|
*pfSuccess = VARIANT_FALSE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i=0; i < sizeof(style_tbl)/sizeof(*style_tbl); i++) {
|
|
|
|
if(dispid == style_tbl[i].dispid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(i == sizeof(style_tbl)/sizeof(*style_tbl))
|
2014-11-28 16:19:04 +01:00
|
|
|
return remove_attribute(&This->dispex, dispid, pfSuccess);
|
2012-04-16 13:49:09 +02:00
|
|
|
style_entry = style_tbl+i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* filter property is a special case */
|
|
|
|
if(style_entry->dispid == DISPID_IHTMLSTYLE_FILTER) {
|
|
|
|
*pfSuccess = This->elem->filter && *This->elem->filter ? VARIANT_TRUE : VARIANT_FALSE;
|
|
|
|
heap_free(This->elem->filter);
|
|
|
|
This->elem->filter = NULL;
|
|
|
|
update_filter(This);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAString_InitDepend(&name_str, style_entry->name);
|
|
|
|
nsAString_Init(&ret_str, NULL);
|
|
|
|
nsres = nsIDOMCSSStyleDeclaration_RemoveProperty(This->nsstyle, &name_str, &ret_str);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
|
|
|
const PRUnichar *ret;
|
|
|
|
nsAString_GetData(&ret_str, &ret);
|
|
|
|
*pfSuccess = *ret ? VARIANT_TRUE : VARIANT_FALSE;
|
|
|
|
}else {
|
|
|
|
ERR("RemoveProperty failed: %08x\n", nsres);
|
|
|
|
}
|
|
|
|
nsAString_Finish(&name_str);
|
|
|
|
nsAString_Finish(&ret_str);
|
|
|
|
return NS_SUCCEEDED(nsres) ? S_OK : E_FAIL;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle_toString(IHTMLStyle *iface, BSTR *String)
|
|
|
|
{
|
2011-01-04 02:00:53 +01:00
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle(iface);
|
2006-11-17 13:04:06 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, String);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLStyleVtbl HTMLStyleVtbl = {
|
|
|
|
HTMLStyle_QueryInterface,
|
|
|
|
HTMLStyle_AddRef,
|
|
|
|
HTMLStyle_Release,
|
|
|
|
HTMLStyle_GetTypeInfoCount,
|
|
|
|
HTMLStyle_GetTypeInfo,
|
|
|
|
HTMLStyle_GetIDsOfNames,
|
|
|
|
HTMLStyle_Invoke,
|
|
|
|
HTMLStyle_put_fontFamily,
|
|
|
|
HTMLStyle_get_fontFamily,
|
|
|
|
HTMLStyle_put_fontStyle,
|
|
|
|
HTMLStyle_get_fontStyle,
|
|
|
|
HTMLStyle_put_fontVariant,
|
|
|
|
HTMLStyle_get_fontVariant,
|
|
|
|
HTMLStyle_put_fontWeight,
|
|
|
|
HTMLStyle_get_fontWeight,
|
|
|
|
HTMLStyle_put_fontSize,
|
|
|
|
HTMLStyle_get_fontSize,
|
|
|
|
HTMLStyle_put_font,
|
|
|
|
HTMLStyle_get_font,
|
|
|
|
HTMLStyle_put_color,
|
|
|
|
HTMLStyle_get_color,
|
|
|
|
HTMLStyle_put_background,
|
|
|
|
HTMLStyle_get_background,
|
|
|
|
HTMLStyle_put_backgroundColor,
|
|
|
|
HTMLStyle_get_backgroundColor,
|
|
|
|
HTMLStyle_put_backgroundImage,
|
|
|
|
HTMLStyle_get_backgroundImage,
|
|
|
|
HTMLStyle_put_backgroundRepeat,
|
|
|
|
HTMLStyle_get_backgroundRepeat,
|
|
|
|
HTMLStyle_put_backgroundAttachment,
|
|
|
|
HTMLStyle_get_backgroundAttachment,
|
|
|
|
HTMLStyle_put_backgroundPosition,
|
|
|
|
HTMLStyle_get_backgroundPosition,
|
|
|
|
HTMLStyle_put_backgroundPositionX,
|
|
|
|
HTMLStyle_get_backgroundPositionX,
|
|
|
|
HTMLStyle_put_backgroundPositionY,
|
|
|
|
HTMLStyle_get_backgroundPositionY,
|
|
|
|
HTMLStyle_put_wordSpacing,
|
|
|
|
HTMLStyle_get_wordSpacing,
|
|
|
|
HTMLStyle_put_letterSpacing,
|
|
|
|
HTMLStyle_get_letterSpacing,
|
|
|
|
HTMLStyle_put_textDecoration,
|
|
|
|
HTMLStyle_get_textDecoration,
|
|
|
|
HTMLStyle_put_textDecorationNone,
|
|
|
|
HTMLStyle_get_textDecorationNone,
|
|
|
|
HTMLStyle_put_textDecorationUnderline,
|
|
|
|
HTMLStyle_get_textDecorationUnderline,
|
|
|
|
HTMLStyle_put_textDecorationOverline,
|
|
|
|
HTMLStyle_get_textDecorationOverline,
|
|
|
|
HTMLStyle_put_textDecorationLineThrough,
|
|
|
|
HTMLStyle_get_textDecorationLineThrough,
|
|
|
|
HTMLStyle_put_textDecorationBlink,
|
|
|
|
HTMLStyle_get_textDecorationBlink,
|
|
|
|
HTMLStyle_put_verticalAlign,
|
|
|
|
HTMLStyle_get_verticalAlign,
|
|
|
|
HTMLStyle_put_textTransform,
|
|
|
|
HTMLStyle_get_textTransform,
|
|
|
|
HTMLStyle_put_textAlign,
|
|
|
|
HTMLStyle_get_textAlign,
|
|
|
|
HTMLStyle_put_textIndent,
|
|
|
|
HTMLStyle_get_textIndent,
|
|
|
|
HTMLStyle_put_lineHeight,
|
|
|
|
HTMLStyle_get_lineHeight,
|
|
|
|
HTMLStyle_put_marginTop,
|
|
|
|
HTMLStyle_get_marginTop,
|
|
|
|
HTMLStyle_put_marginRight,
|
|
|
|
HTMLStyle_get_marginRight,
|
|
|
|
HTMLStyle_put_marginBottom,
|
|
|
|
HTMLStyle_get_marginBottom,
|
|
|
|
HTMLStyle_put_marginLeft,
|
|
|
|
HTMLStyle_get_marginLeft,
|
|
|
|
HTMLStyle_put_margin,
|
|
|
|
HTMLStyle_get_margin,
|
|
|
|
HTMLStyle_put_paddingTop,
|
|
|
|
HTMLStyle_get_paddingTop,
|
|
|
|
HTMLStyle_put_paddingRight,
|
|
|
|
HTMLStyle_get_paddingRight,
|
|
|
|
HTMLStyle_put_paddingBottom,
|
|
|
|
HTMLStyle_get_paddingBottom,
|
|
|
|
HTMLStyle_put_paddingLeft,
|
|
|
|
HTMLStyle_get_paddingLeft,
|
|
|
|
HTMLStyle_put_padding,
|
|
|
|
HTMLStyle_get_padding,
|
|
|
|
HTMLStyle_put_border,
|
|
|
|
HTMLStyle_get_border,
|
|
|
|
HTMLStyle_put_borderTop,
|
|
|
|
HTMLStyle_get_borderTop,
|
|
|
|
HTMLStyle_put_borderRight,
|
|
|
|
HTMLStyle_get_borderRight,
|
|
|
|
HTMLStyle_put_borderBottom,
|
|
|
|
HTMLStyle_get_borderBottom,
|
|
|
|
HTMLStyle_put_borderLeft,
|
|
|
|
HTMLStyle_get_borderLeft,
|
|
|
|
HTMLStyle_put_borderColor,
|
|
|
|
HTMLStyle_get_borderColor,
|
|
|
|
HTMLStyle_put_borderTopColor,
|
|
|
|
HTMLStyle_get_borderTopColor,
|
|
|
|
HTMLStyle_put_borderRightColor,
|
|
|
|
HTMLStyle_get_borderRightColor,
|
|
|
|
HTMLStyle_put_borderBottomColor,
|
|
|
|
HTMLStyle_get_borderBottomColor,
|
|
|
|
HTMLStyle_put_borderLeftColor,
|
|
|
|
HTMLStyle_get_borderLeftColor,
|
|
|
|
HTMLStyle_put_borderWidth,
|
|
|
|
HTMLStyle_get_borderWidth,
|
|
|
|
HTMLStyle_put_borderTopWidth,
|
|
|
|
HTMLStyle_get_borderTopWidth,
|
|
|
|
HTMLStyle_put_borderRightWidth,
|
|
|
|
HTMLStyle_get_borderRightWidth,
|
|
|
|
HTMLStyle_put_borderBottomWidth,
|
|
|
|
HTMLStyle_get_borderBottomWidth,
|
|
|
|
HTMLStyle_put_borderLeftWidth,
|
|
|
|
HTMLStyle_get_borderLeftWidth,
|
|
|
|
HTMLStyle_put_borderStyle,
|
|
|
|
HTMLStyle_get_borderStyle,
|
|
|
|
HTMLStyle_put_borderTopStyle,
|
|
|
|
HTMLStyle_get_borderTopStyle,
|
|
|
|
HTMLStyle_put_borderRightStyle,
|
|
|
|
HTMLStyle_get_borderRightStyle,
|
|
|
|
HTMLStyle_put_borderBottomStyle,
|
|
|
|
HTMLStyle_get_borderBottomStyle,
|
|
|
|
HTMLStyle_put_borderLeftStyle,
|
|
|
|
HTMLStyle_get_borderLeftStyle,
|
|
|
|
HTMLStyle_put_width,
|
|
|
|
HTMLStyle_get_width,
|
|
|
|
HTMLStyle_put_height,
|
|
|
|
HTMLStyle_get_height,
|
|
|
|
HTMLStyle_put_styleFloat,
|
|
|
|
HTMLStyle_get_styleFloat,
|
|
|
|
HTMLStyle_put_clear,
|
|
|
|
HTMLStyle_get_clear,
|
|
|
|
HTMLStyle_put_display,
|
|
|
|
HTMLStyle_get_display,
|
|
|
|
HTMLStyle_put_visibility,
|
|
|
|
HTMLStyle_get_visibility,
|
|
|
|
HTMLStyle_put_listStyleType,
|
|
|
|
HTMLStyle_get_listStyleType,
|
|
|
|
HTMLStyle_put_listStylePosition,
|
|
|
|
HTMLStyle_get_listStylePosition,
|
|
|
|
HTMLStyle_put_listStyleImage,
|
|
|
|
HTMLStyle_get_listStyleImage,
|
|
|
|
HTMLStyle_put_listStyle,
|
|
|
|
HTMLStyle_get_listStyle,
|
|
|
|
HTMLStyle_put_whiteSpace,
|
|
|
|
HTMLStyle_get_whiteSpace,
|
|
|
|
HTMLStyle_put_top,
|
|
|
|
HTMLStyle_get_top,
|
|
|
|
HTMLStyle_put_left,
|
|
|
|
HTMLStyle_get_left,
|
|
|
|
HTMLStyle_get_position,
|
|
|
|
HTMLStyle_put_zIndex,
|
|
|
|
HTMLStyle_get_zIndex,
|
|
|
|
HTMLStyle_put_overflow,
|
|
|
|
HTMLStyle_get_overflow,
|
|
|
|
HTMLStyle_put_pageBreakBefore,
|
|
|
|
HTMLStyle_get_pageBreakBefore,
|
|
|
|
HTMLStyle_put_pageBreakAfter,
|
|
|
|
HTMLStyle_get_pageBreakAfter,
|
|
|
|
HTMLStyle_put_cssText,
|
|
|
|
HTMLStyle_get_cssText,
|
|
|
|
HTMLStyle_put_pixelTop,
|
|
|
|
HTMLStyle_get_pixelTop,
|
|
|
|
HTMLStyle_put_pixelLeft,
|
|
|
|
HTMLStyle_get_pixelLeft,
|
|
|
|
HTMLStyle_put_pixelWidth,
|
|
|
|
HTMLStyle_get_pixelWidth,
|
|
|
|
HTMLStyle_put_pixelHeight,
|
|
|
|
HTMLStyle_get_pixelHeight,
|
|
|
|
HTMLStyle_put_posTop,
|
|
|
|
HTMLStyle_get_posTop,
|
|
|
|
HTMLStyle_put_posLeft,
|
|
|
|
HTMLStyle_get_posLeft,
|
|
|
|
HTMLStyle_put_posWidth,
|
|
|
|
HTMLStyle_get_posWidth,
|
|
|
|
HTMLStyle_put_posHeight,
|
|
|
|
HTMLStyle_get_posHeight,
|
|
|
|
HTMLStyle_put_cursor,
|
|
|
|
HTMLStyle_get_cursor,
|
|
|
|
HTMLStyle_put_clip,
|
|
|
|
HTMLStyle_get_clip,
|
|
|
|
HTMLStyle_put_filter,
|
|
|
|
HTMLStyle_get_filter,
|
|
|
|
HTMLStyle_setAttribute,
|
|
|
|
HTMLStyle_getAttribute,
|
|
|
|
HTMLStyle_removeAttribute,
|
|
|
|
HTMLStyle_toString
|
|
|
|
};
|
|
|
|
|
2016-01-07 14:04:59 +01:00
|
|
|
static inline HTMLStyle *impl_from_IHTMLStyle2(IHTMLStyle2 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLStyle, IHTMLStyle2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_QueryInterface(IHTMLStyle2 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_QueryInterface(&This->IHTMLStyle_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle2_AddRef(IHTMLStyle2 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_AddRef(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle2_Release(IHTMLStyle2 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_Release(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_GetTypeInfoCount(IHTMLStyle2 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_GetTypeInfo(IHTMLStyle2 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_GetIDsOfNames(IHTMLStyle2 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames,
|
|
|
|
lcid, rgDispId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_Invoke(IHTMLStyle2 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid,
|
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_tableLayout(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_TABLE_LAYOUT, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_tableLayout(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_TABLE_LAYOUT, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_borderCollapse(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_borderCollapse(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_direction(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_DIRECTION, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_direction(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_DIRECTION, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_behavior(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_behavior(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_setExpression(IHTMLStyle2 *iface, BSTR propname, BSTR expression, BSTR language)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s %s %s)\n", This, debugstr_w(propname), debugstr_w(expression), debugstr_w(language));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_getExpression(IHTMLStyle2 *iface, BSTR propname, VARIANT *expression)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s %p)\n", This, debugstr_w(propname), expression);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_removeExpression(IHTMLStyle2 *iface, BSTR propname, VARIANT_BOOL *pfSuccess)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s %p)\n", This, debugstr_w(propname), pfSuccess);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_position(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_POSITION, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_position(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_POSITION, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_unicodeBidi(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_unicodeBidi(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_bottom(IHTMLStyle2 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_BOTTOM, &v, ATTR_FIX_PX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_bottom(IHTMLStyle2 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_BOTTOM, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_right(IHTMLStyle2 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_RIGHT, &v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_right(IHTMLStyle2 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_RIGHT, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_pixelBottom(IHTMLStyle2 *iface, LONG v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%d)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_pixelBottom(IHTMLStyle2 *iface, LONG *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_pixelRight(IHTMLStyle2 *iface, LONG v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%d)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_pixelRight(IHTMLStyle2 *iface, LONG *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_posBottom(IHTMLStyle2 *iface, float v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%f)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_posBottom(IHTMLStyle2 *iface, float *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_posRight(IHTMLStyle2 *iface, float v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%f)\n", This, v);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_posRight(IHTMLStyle2 *iface, float *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_imeMode(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_imeMode(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_rubyAlign(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_rubyAlign(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_rubyPosition(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_rubyPosition(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_rubyOverhang(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_rubyOverhang(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_layoutGridChar(IHTMLStyle2 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_layoutGridChar(IHTMLStyle2 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_layoutGridLine(IHTMLStyle2 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_layoutGridLine(IHTMLStyle2 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_layoutGridMode(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_layoutGridMode(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_layoutGridType(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_layoutGridType(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_layoutGrid(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_layoutGrid(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_wordBreak(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_wordBreak(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_lineBreak(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_lineBreak(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_textJustify(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_textJustify(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_textJustifyTrim(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_textJustifyTrim(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_textKashida(IHTMLStyle2 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_textKashida(IHTMLStyle2 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_textAutospace(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_textAutospace(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_overflowX(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW_X, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_overflowX(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW_X, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_overflowY(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW_Y, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_overflowY(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW_Y, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_put_accelerator(IHTMLStyle2 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle2_get_accelerator(IHTMLStyle2 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle2(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLStyle2Vtbl HTMLStyle2Vtbl = {
|
|
|
|
HTMLStyle2_QueryInterface,
|
|
|
|
HTMLStyle2_AddRef,
|
|
|
|
HTMLStyle2_Release,
|
|
|
|
HTMLStyle2_GetTypeInfoCount,
|
|
|
|
HTMLStyle2_GetTypeInfo,
|
|
|
|
HTMLStyle2_GetIDsOfNames,
|
|
|
|
HTMLStyle2_Invoke,
|
|
|
|
HTMLStyle2_put_tableLayout,
|
|
|
|
HTMLStyle2_get_tableLayout,
|
|
|
|
HTMLStyle2_put_borderCollapse,
|
|
|
|
HTMLStyle2_get_borderCollapse,
|
|
|
|
HTMLStyle2_put_direction,
|
|
|
|
HTMLStyle2_get_direction,
|
|
|
|
HTMLStyle2_put_behavior,
|
|
|
|
HTMLStyle2_get_behavior,
|
|
|
|
HTMLStyle2_setExpression,
|
|
|
|
HTMLStyle2_getExpression,
|
|
|
|
HTMLStyle2_removeExpression,
|
|
|
|
HTMLStyle2_put_position,
|
|
|
|
HTMLStyle2_get_position,
|
|
|
|
HTMLStyle2_put_unicodeBidi,
|
|
|
|
HTMLStyle2_get_unicodeBidi,
|
|
|
|
HTMLStyle2_put_bottom,
|
|
|
|
HTMLStyle2_get_bottom,
|
|
|
|
HTMLStyle2_put_right,
|
|
|
|
HTMLStyle2_get_right,
|
|
|
|
HTMLStyle2_put_pixelBottom,
|
|
|
|
HTMLStyle2_get_pixelBottom,
|
|
|
|
HTMLStyle2_put_pixelRight,
|
|
|
|
HTMLStyle2_get_pixelRight,
|
|
|
|
HTMLStyle2_put_posBottom,
|
|
|
|
HTMLStyle2_get_posBottom,
|
|
|
|
HTMLStyle2_put_posRight,
|
|
|
|
HTMLStyle2_get_posRight,
|
|
|
|
HTMLStyle2_put_imeMode,
|
|
|
|
HTMLStyle2_get_imeMode,
|
|
|
|
HTMLStyle2_put_rubyAlign,
|
|
|
|
HTMLStyle2_get_rubyAlign,
|
|
|
|
HTMLStyle2_put_rubyPosition,
|
|
|
|
HTMLStyle2_get_rubyPosition,
|
|
|
|
HTMLStyle2_put_rubyOverhang,
|
|
|
|
HTMLStyle2_get_rubyOverhang,
|
|
|
|
HTMLStyle2_put_layoutGridChar,
|
|
|
|
HTMLStyle2_get_layoutGridChar,
|
|
|
|
HTMLStyle2_put_layoutGridLine,
|
|
|
|
HTMLStyle2_get_layoutGridLine,
|
|
|
|
HTMLStyle2_put_layoutGridMode,
|
|
|
|
HTMLStyle2_get_layoutGridMode,
|
|
|
|
HTMLStyle2_put_layoutGridType,
|
|
|
|
HTMLStyle2_get_layoutGridType,
|
|
|
|
HTMLStyle2_put_layoutGrid,
|
|
|
|
HTMLStyle2_get_layoutGrid,
|
|
|
|
HTMLStyle2_put_wordBreak,
|
|
|
|
HTMLStyle2_get_wordBreak,
|
|
|
|
HTMLStyle2_put_lineBreak,
|
|
|
|
HTMLStyle2_get_lineBreak,
|
|
|
|
HTMLStyle2_put_textJustify,
|
|
|
|
HTMLStyle2_get_textJustify,
|
|
|
|
HTMLStyle2_put_textJustifyTrim,
|
|
|
|
HTMLStyle2_get_textJustifyTrim,
|
|
|
|
HTMLStyle2_put_textKashida,
|
|
|
|
HTMLStyle2_get_textKashida,
|
|
|
|
HTMLStyle2_put_textAutospace,
|
|
|
|
HTMLStyle2_get_textAutospace,
|
|
|
|
HTMLStyle2_put_overflowX,
|
|
|
|
HTMLStyle2_get_overflowX,
|
|
|
|
HTMLStyle2_put_overflowY,
|
|
|
|
HTMLStyle2_get_overflowY,
|
|
|
|
HTMLStyle2_put_accelerator,
|
|
|
|
HTMLStyle2_get_accelerator
|
|
|
|
};
|
|
|
|
|
2016-01-07 14:06:24 +01:00
|
|
|
static inline HTMLStyle *impl_from_IHTMLStyle3(IHTMLStyle3 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLStyle, IHTMLStyle3_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_QueryInterface(IHTMLStyle3 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_QueryInterface(&This->IHTMLStyle_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle3_AddRef(IHTMLStyle3 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_AddRef(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle3_Release(IHTMLStyle3 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_Release(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_GetTypeInfoCount(IHTMLStyle3 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_GetTypeInfo(IHTMLStyle3 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_GetIDsOfNames(IHTMLStyle3 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, 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 = impl_from_IHTMLStyle3(iface);
|
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid,
|
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_layoutFlow(IHTMLStyle3 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_layoutFlow(IHTMLStyle3 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WCHAR zoomW[] = {'z','o','o','m',0};
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_zoom(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
VARIANT *var;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
/* zoom property is IE CSS extension that is mostly used as a hack to workaround IE bugs.
|
|
|
|
* The value is set to 1 then. We can safely ignore setting zoom to 1. */
|
|
|
|
if(V_VT(&v) != VT_I4 || V_I4(&v) != 1)
|
|
|
|
WARN("stub for %s\n", debugstr_variant(&v));
|
|
|
|
|
|
|
|
hres = dispex_get_dprop_ref(&This->dispex, zoomW, TRUE, &var);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
return VariantChangeType(var, &v, 0, VT_BSTR);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_zoom(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
VARIANT *var;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
hres = dispex_get_dprop_ref(&This->dispex, zoomW, FALSE, &var);
|
|
|
|
if(hres == DISP_E_UNKNOWNNAME) {
|
|
|
|
V_VT(p) = VT_BSTR;
|
|
|
|
V_BSTR(p) = NULL;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
return VariantCopy(p, var);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_wordWrap(IHTMLStyle3 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(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 = impl_from_IHTMLStyle3(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_WORD_WRAP, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_textUnderlinePosition(IHTMLStyle3 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_textUnderlinePosition(IHTMLStyle3 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarBaseColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarBaseColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarFaceColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarFaceColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbar3dLightColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbar3dLightColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarShadowColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarShadowColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarHighlightColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarHighlightColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarDarkShadowColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarDarkShadowColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarArrowColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarArrowColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_scrollbarTrackColor(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_scrollbarTrackColor(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_writingMode(IHTMLStyle3 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_writingMode(IHTMLStyle3 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_textAlignLast(IHTMLStyle3 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_textAlignLast(IHTMLStyle3 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_put_textKashidaSpace(IHTMLStyle3 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle3_get_textKashidaSpace(IHTMLStyle3 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle3(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
|
|
|
|
*/
|
|
|
|
static inline HTMLStyle *impl_from_IHTMLStyle4(IHTMLStyle4 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLStyle, IHTMLStyle4_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_QueryInterface(IHTMLStyle4 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_QueryInterface(&This->IHTMLStyle_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle4_AddRef(IHTMLStyle4 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_AddRef(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle4_Release(IHTMLStyle4 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_Release(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_GetTypeInfoCount(IHTMLStyle4 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_GetTypeInfo(IHTMLStyle4 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_GetIDsOfNames(IHTMLStyle4 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, 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 = impl_from_IHTMLStyle4(iface);
|
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid,
|
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_put_textOverflow(IHTMLStyle4 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_get_textOverflow(IHTMLStyle4 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle4_put_minHeight(IHTMLStyle4 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle4(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 = impl_from_IHTMLStyle4(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
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline HTMLStyle *impl_from_IHTMLStyle5(IHTMLStyle5 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLStyle, IHTMLStyle5_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_QueryInterface(IHTMLStyle5 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_QueryInterface(&This->IHTMLStyle_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle5_AddRef(IHTMLStyle5 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_AddRef(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle5_Release(IHTMLStyle5 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_Release(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_GetTypeInfoCount(IHTMLStyle5 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_GetTypeInfo(IHTMLStyle5 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_GetIDsOfNames(IHTMLStyle5 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames,
|
|
|
|
lcid, rgDispId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_Invoke(IHTMLStyle5 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid,
|
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_put_msInterpolationMode(IHTMLStyle5 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_get_msInterpolationMode(IHTMLStyle5 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_put_maxHeight(IHTMLStyle5 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MAX_HEIGHT, &v, ATTR_FIX_PX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_get_maxHeight(IHTMLStyle5 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(p));
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MAX_HEIGHT, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_put_minWidth(IHTMLStyle5 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MIN_WIDTH, &v, ATTR_FIX_PX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_get_minWidth(IHTMLStyle5 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MIN_WIDTH, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_put_maxWidth(IHTMLStyle5 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr_var(This->nsstyle, STYLEID_MAX_WIDTH, &v, ATTR_FIX_PX);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle5_get_maxWidth(IHTMLStyle5 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle5(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MAX_WIDTH, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLStyle5Vtbl HTMLStyle5Vtbl = {
|
|
|
|
HTMLStyle5_QueryInterface,
|
|
|
|
HTMLStyle5_AddRef,
|
|
|
|
HTMLStyle5_Release,
|
|
|
|
HTMLStyle5_GetTypeInfoCount,
|
|
|
|
HTMLStyle5_GetTypeInfo,
|
|
|
|
HTMLStyle5_GetIDsOfNames,
|
|
|
|
HTMLStyle5_Invoke,
|
|
|
|
HTMLStyle5_put_msInterpolationMode,
|
|
|
|
HTMLStyle5_get_msInterpolationMode,
|
|
|
|
HTMLStyle5_put_maxHeight,
|
|
|
|
HTMLStyle5_get_maxHeight,
|
|
|
|
HTMLStyle5_put_minWidth,
|
|
|
|
HTMLStyle5_get_minWidth,
|
|
|
|
HTMLStyle5_put_maxWidth,
|
|
|
|
HTMLStyle5_get_maxWidth
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline HTMLStyle *impl_from_IHTMLStyle6(IHTMLStyle6 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLStyle, IHTMLStyle6_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_QueryInterface(IHTMLStyle6 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_QueryInterface(&This->IHTMLStyle_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle6_AddRef(IHTMLStyle6 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_AddRef(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLStyle6_Release(IHTMLStyle6 *iface)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
return IHTMLStyle_Release(&This->IHTMLStyle_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_GetTypeInfoCount(IHTMLStyle6 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_GetTypeInfo(IHTMLStyle6 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_GetIDsOfNames(IHTMLStyle6 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames,
|
|
|
|
lcid, rgDispId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_Invoke(IHTMLStyle6 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid,
|
|
|
|
wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_content(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_content(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_contentSide(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_contentSide(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_counterIncrement(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_counterIncrement(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_counterReset(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_counterReset(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_outline(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_OUTLINE, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_outline(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_OUTLINE, p, ATTR_NO_NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_outlineWidth(IHTMLStyle6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_outlineWidth(IHTMLStyle6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_outlineStyle(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_outlineStyle(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_outlineColor(IHTMLStyle6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_outlineColor(IHTMLStyle6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_boxSizing(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
return set_nsstyle_attr(This->nsstyle, STYLEID_BOX_SIZING, v, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_boxSizing(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_nsstyle_attr(This->nsstyle, STYLEID_BOX_SIZING, p, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_boxSpacing(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_boxSpacing(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_orphans(IHTMLStyle6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_orphans(IHTMLStyle6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_windows(IHTMLStyle6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_windows(IHTMLStyle6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_pageBreakInside(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_pageBreakInside(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_emptyCells(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_emptyCells(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_msBlockProgression(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_msBlockProgression(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_put_quotes(IHTMLStyle6 *iface, BSTR v)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLStyle6_get_quotes(IHTMLStyle6 *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLStyle *This = impl_from_IHTMLStyle6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLStyle6Vtbl HTMLStyle6Vtbl = {
|
|
|
|
HTMLStyle6_QueryInterface,
|
|
|
|
HTMLStyle6_AddRef,
|
|
|
|
HTMLStyle6_Release,
|
|
|
|
HTMLStyle6_GetTypeInfoCount,
|
|
|
|
HTMLStyle6_GetTypeInfo,
|
|
|
|
HTMLStyle6_GetIDsOfNames,
|
|
|
|
HTMLStyle6_Invoke,
|
|
|
|
HTMLStyle6_put_content,
|
|
|
|
HTMLStyle6_get_content,
|
|
|
|
HTMLStyle6_put_contentSide,
|
|
|
|
HTMLStyle6_get_contentSide,
|
|
|
|
HTMLStyle6_put_counterIncrement,
|
|
|
|
HTMLStyle6_get_counterIncrement,
|
|
|
|
HTMLStyle6_put_counterReset,
|
|
|
|
HTMLStyle6_get_counterReset,
|
|
|
|
HTMLStyle6_put_outline,
|
|
|
|
HTMLStyle6_get_outline,
|
|
|
|
HTMLStyle6_put_outlineWidth,
|
|
|
|
HTMLStyle6_get_outlineWidth,
|
|
|
|
HTMLStyle6_put_outlineStyle,
|
|
|
|
HTMLStyle6_get_outlineStyle,
|
|
|
|
HTMLStyle6_put_outlineColor,
|
|
|
|
HTMLStyle6_get_outlineColor,
|
|
|
|
HTMLStyle6_put_boxSizing,
|
|
|
|
HTMLStyle6_get_boxSizing,
|
|
|
|
HTMLStyle6_put_boxSpacing,
|
|
|
|
HTMLStyle6_get_boxSpacing,
|
|
|
|
HTMLStyle6_put_orphans,
|
|
|
|
HTMLStyle6_get_orphans,
|
|
|
|
HTMLStyle6_put_windows,
|
|
|
|
HTMLStyle6_get_windows,
|
|
|
|
HTMLStyle6_put_pageBreakInside,
|
|
|
|
HTMLStyle6_get_pageBreakInside,
|
|
|
|
HTMLStyle6_put_emptyCells,
|
|
|
|
HTMLStyle6_get_emptyCells,
|
|
|
|
HTMLStyle6_put_msBlockProgression,
|
|
|
|
HTMLStyle6_get_msBlockProgression,
|
|
|
|
HTMLStyle6_put_quotes,
|
|
|
|
HTMLStyle6_get_quotes
|
|
|
|
};
|
|
|
|
|
2010-12-27 18:34:39 +01:00
|
|
|
static HRESULT HTMLStyle_get_dispid(DispatchEx *dispex, BSTR name, DWORD flags, DISPID *dispid)
|
|
|
|
{
|
2012-04-16 13:48:55 +02:00
|
|
|
const style_tbl_entry_t *style_entry;
|
2010-12-27 18:34:39 +01:00
|
|
|
|
2012-04-16 13:48:55 +02:00
|
|
|
style_entry = lookup_style_tbl(name);
|
|
|
|
if(style_entry) {
|
|
|
|
*dispid = style_entry->dispid;
|
|
|
|
return S_OK;
|
2010-12-27 18:34:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return DISP_E_UNKNOWNNAME;
|
|
|
|
}
|
|
|
|
|
2008-10-07 21:45:21 +02:00
|
|
|
static const dispex_static_data_vtbl_t HTMLStyle_dispex_vtbl = {
|
2009-08-31 20:43:44 +02:00
|
|
|
NULL,
|
2008-10-07 21:45:21 +02:00
|
|
|
HTMLStyle_get_dispid,
|
2011-08-23 11:33:18 +02:00
|
|
|
NULL,
|
2008-10-07 21:45:21 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2008-05-06 16:04:58 +02:00
|
|
|
static const tid_t HTMLStyle_iface_tids[] = {
|
2011-07-28 16:30:02 +02:00
|
|
|
IHTMLStyle6_tid,
|
2014-12-14 17:54:00 +01:00
|
|
|
IHTMLStyle5_tid,
|
|
|
|
IHTMLStyle4_tid,
|
|
|
|
IHTMLStyle3_tid,
|
|
|
|
IHTMLStyle2_tid,
|
|
|
|
IHTMLStyle_tid,
|
2008-05-06 16:04:58 +02:00
|
|
|
0
|
|
|
|
};
|
2008-04-30 18:20:58 +02:00
|
|
|
static dispex_static_data_t HTMLStyle_dispex = {
|
2008-10-07 21:45:21 +02:00
|
|
|
&HTMLStyle_dispex_vtbl,
|
2008-04-30 18:20:58 +02:00
|
|
|
DispHTMLStyle_tid,
|
2008-05-06 16:04:58 +02:00
|
|
|
HTMLStyle_iface_tids
|
2008-04-30 18:20:58 +02:00
|
|
|
};
|
|
|
|
|
2013-11-11 14:36:43 +01:00
|
|
|
static HRESULT get_style_from_elem(HTMLElement *elem, nsIDOMCSSStyleDeclaration **ret)
|
2006-11-17 13:04:06 +01:00
|
|
|
{
|
2012-07-25 14:46:54 +02:00
|
|
|
nsIDOMElementCSSInlineStyle *nselemstyle;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
if(!elem->nselem) {
|
|
|
|
FIXME("NULL nselem\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIDOMHTMLElement_QueryInterface(elem->nselem, &IID_nsIDOMElementCSSInlineStyle,
|
|
|
|
(void**)&nselemstyle);
|
|
|
|
assert(nsres == NS_OK);
|
|
|
|
|
2013-11-11 14:36:43 +01:00
|
|
|
nsres = nsIDOMElementCSSInlineStyle_GetStyle(nselemstyle, ret);
|
2012-07-25 14:46:54 +02:00
|
|
|
nsIDOMElementCSSInlineStyle_Release(nselemstyle);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetStyle failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2006-11-17 13:04:06 +01:00
|
|
|
|
2013-11-11 14:36:43 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT HTMLStyle_Create(HTMLElement *elem, HTMLStyle **ret)
|
|
|
|
{
|
|
|
|
nsIDOMCSSStyleDeclaration *nsstyle;
|
|
|
|
HTMLStyle *style;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = get_style_from_elem(elem, &nsstyle);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-02-28 13:13:12 +01:00
|
|
|
style = heap_alloc_zero(sizeof(HTMLStyle));
|
2012-07-25 14:46:54 +02:00
|
|
|
if(!style) {
|
|
|
|
nsIDOMCSSStyleDeclaration_Release(nsstyle);
|
2011-02-28 13:13:12 +01:00
|
|
|
return E_OUTOFMEMORY;
|
2012-07-25 14:46:54 +02:00
|
|
|
}
|
2011-02-28 13:13:12 +01:00
|
|
|
|
|
|
|
style->IHTMLStyle_iface.lpVtbl = &HTMLStyleVtbl;
|
2016-01-07 14:04:59 +01:00
|
|
|
style->IHTMLStyle2_iface.lpVtbl = &HTMLStyle2Vtbl;
|
2016-01-07 14:06:24 +01:00
|
|
|
style->IHTMLStyle3_iface.lpVtbl = &HTMLStyle3Vtbl;
|
|
|
|
style->IHTMLStyle4_iface.lpVtbl = &HTMLStyle4Vtbl;
|
|
|
|
style->IHTMLStyle5_iface.lpVtbl = &HTMLStyle5Vtbl;
|
|
|
|
style->IHTMLStyle6_iface.lpVtbl = &HTMLStyle6Vtbl;
|
|
|
|
|
2011-02-28 13:13:12 +01:00
|
|
|
style->ref = 1;
|
|
|
|
style->nsstyle = nsstyle;
|
2012-03-16 12:17:50 +01:00
|
|
|
style->elem = elem;
|
2006-11-17 13:05:01 +01:00
|
|
|
|
|
|
|
nsIDOMCSSStyleDeclaration_AddRef(nsstyle);
|
2006-11-17 13:04:06 +01:00
|
|
|
|
2011-02-28 13:13:12 +01:00
|
|
|
init_dispex(&style->dispex, (IUnknown*)&style->IHTMLStyle_iface, &HTMLStyle_dispex);
|
2008-04-30 18:20:58 +02:00
|
|
|
|
2011-02-28 13:13:12 +01:00
|
|
|
*ret = style;
|
|
|
|
return S_OK;
|
2006-11-17 13:04:06 +01:00
|
|
|
}
|
2013-11-11 14:36:43 +01:00
|
|
|
|
|
|
|
HRESULT get_elem_style(HTMLElement *elem, styleid_t styleid, BSTR *ret)
|
|
|
|
{
|
|
|
|
nsIDOMCSSStyleDeclaration *style;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = get_style_from_elem(elem, &style);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = get_nsstyle_attr(style, styleid, ret, 0);
|
|
|
|
nsIDOMCSSStyleDeclaration_Release(style);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT set_elem_style(HTMLElement *elem, styleid_t styleid, const WCHAR *val)
|
|
|
|
{
|
|
|
|
nsIDOMCSSStyleDeclaration *style;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = get_style_from_elem(elem, &style);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = set_nsstyle_attr(style, styleid, val, 0);
|
|
|
|
nsIDOMCSSStyleDeclaration_Release(style);
|
|
|
|
return hres;
|
|
|
|
}
|