2 * Copyright 2008 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 IHTMLStyle IHTMLStyle_iface;
22 IHTMLStyle2 IHTMLStyle2_iface;
23 IHTMLStyle3 IHTMLStyle3_iface;
24 IHTMLStyle4 IHTMLStyle4_iface;
28 nsIDOMCSSStyleDeclaration *nsstyle;
31 /* NOTE: Make sure to keep in sync with style_tbl in htmlstyle.c */
34 STYLEID_BACKGROUND_COLOR,
35 STYLEID_BACKGROUND_IMAGE,
36 STYLEID_BACKGROUND_POSITION_X,
37 STYLEID_BACKGROUND_POSITION_Y,
38 STYLEID_BACKGROUND_REPEAT,
40 STYLEID_BORDER_BOTTOM,
41 STYLEID_BORDER_BOTTOM_COLOR,
42 STYLEID_BORDER_BOTTOM_STYLE,
43 STYLEID_BORDER_BOTTOM_WIDTH,
46 STYLEID_BORDER_LEFT_COLOR,
47 STYLEID_BORDER_LEFT_STYLE,
48 STYLEID_BORDER_LEFT_WIDTH,
50 STYLEID_BORDER_RIGHT_COLOR,
51 STYLEID_BORDER_RIGHT_STYLE,
52 STYLEID_BORDER_RIGHT_WIDTH,
55 STYLEID_BORDER_TOP_COLOR,
56 STYLEID_BORDER_TOP_STYLE,
57 STYLEID_BORDER_TOP_WIDTH,
71 STYLEID_LETTER_SPACING,
74 STYLEID_MARGIN_BOTTOM,
81 STYLEID_PADDING_BOTTOM,
83 STYLEID_PADDING_RIGHT,
88 STYLEID_TEXT_DECORATION,
91 STYLEID_VERTICAL_ALIGN,
99 void HTMLStyle2_Init(HTMLStyle*);
100 void HTMLStyle3_Init(HTMLStyle*);
102 HRESULT get_nsstyle_attr(nsIDOMCSSStyleDeclaration*,styleid_t,BSTR*);
103 HRESULT set_nsstyle_attr(nsIDOMCSSStyleDeclaration*,styleid_t,LPCWSTR,DWORD);
105 HRESULT set_nsstyle_attr_var(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, VARIANT *value, DWORD flags);
106 HRESULT get_nsstyle_attr_var(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, VARIANT *p, DWORD flags);
108 #define ATTR_FIX_PX 1
109 #define ATTR_FIX_URL 2
110 #define ATTR_STR_TO_INT 4