Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
844d1cfc
Commit
844d1cfc
authored
Oct 07, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLStyle::[get|put]_zIndex implementation.
parent
712c4d9a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
95 additions
and
7 deletions
+95
-7
htmlstyle.c
dlls/mshtml/htmlstyle.c
+73
-6
htmlstyle.h
dlls/mshtml/htmlstyle.h
+2
-1
dom.c
dlls/mshtml/tests/dom.c
+20
-0
No files found.
dlls/mshtml/htmlstyle.c
View file @
844d1cfc
...
...
@@ -81,6 +81,8 @@ static const WCHAR attrVisibility[] =
{
'v'
,
'i'
,
's'
,
'i'
,
'b'
,
'i'
,
'l'
,
'i'
,
't'
,
'y'
,
0
};
static
const
WCHAR
attrWidth
[]
=
{
'w'
,
'i'
,
'd'
,
't'
,
'h'
,
0
};
static
const
WCHAR
attrZIndex
[]
=
{
'z'
,
'-'
,
'i'
,
'n'
,
'd'
,
'e'
,
'x'
,
0
};
static
const
LPCWSTR
style_strings
[]
=
{
attrBackground
,
...
...
@@ -107,6 +109,7 @@ static const LPCWSTR style_strings[] = {
attrVerticalAlign
,
attrVisibility
,
attrWidth
,
attrZIndex
};
static
const
WCHAR
valLineThrough
[]
=
...
...
@@ -172,8 +175,9 @@ static LPWSTR fix_url_value(LPCWSTR val)
return
ret
;
}
#define ATTR_FIX_PX 1
#define ATTR_FIX_URL 2
#define ATTR_FIX_PX 1
#define ATTR_FIX_URL 2
#define ATTR_STR_TO_INT 4
HRESULT
set_nsstyle_attr
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
LPCWSTR
value
,
DWORD
flags
)
{
...
...
@@ -245,6 +249,57 @@ HRESULT get_nsstyle_attr(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, BSTR
return
S_OK
;
}
HRESULT
get_nsstyle_attr_var
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
VARIANT
*
p
,
DWORD
flags
)
{
nsAString
str_value
;
const
PRUnichar
*
value
;
BOOL
set
=
FALSE
;
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
)
{
BSTR
str
=
NULL
;
if
(
*
value
)
{
str
=
SysAllocString
(
value
);
if
(
!
str
)
return
E_OUTOFMEMORY
;
}
V_VT
(
p
)
=
VT_BSTR
;
V_BSTR
(
p
)
=
str
;
}
nsAString_Finish
(
&
str_value
);
TRACE
(
"%s -> %s
\n
"
,
debugstr_w
(
style_strings
[
sid
]),
debugstr_variant
(
p
));
return
S_OK
;
}
static
inline
HRESULT
get_style_attr
(
HTMLStyle
*
This
,
styleid_t
sid
,
BSTR
*
p
)
{
return
get_nsstyle_attr
(
This
->
nsstyle
,
sid
,
p
);
...
...
@@ -1581,15 +1636,27 @@ static HRESULT WINAPI HTMLStyle_get_position(IHTMLStyle *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLStyle_put_zIndex
(
IHTMLStyle
*
iface
,
VARIANT
v
)
{
HTMLStyle
*
This
=
HTMLSTYLE_THIS
(
iface
);
FIXME
(
"(%p)->(v%d)
\n
"
,
This
,
V_VT
(
&
v
));
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
switch
(
V_VT
(
&
v
))
{
case
VT_BSTR
:
return
set_style_attr
(
This
,
STYLEID_Z_INDEX
,
V_BSTR
(
&
v
),
0
);
default:
FIXME
(
"unimplemented vt %d
\n
"
,
V_VT
(
&
v
));
return
E_NOTIMPL
;
}
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLStyle_get_zIndex
(
IHTMLStyle
*
iface
,
VARIANT
*
p
)
{
HTMLStyle
*
This
=
HTMLSTYLE_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_nsstyle_attr_var
(
This
->
nsstyle
,
STYLEID_Z_INDEX
,
p
,
ATTR_STR_TO_INT
);
}
static
HRESULT
WINAPI
HTMLStyle_put_overflow
(
IHTMLStyle
*
iface
,
BSTR
v
)
...
...
dlls/mshtml/htmlstyle.h
View file @
844d1cfc
...
...
@@ -54,7 +54,8 @@ typedef enum {
STYLEID_TOP
,
STYLEID_VERTICAL_ALIGN
,
STYLEID_VISIBILITY
,
STYLEID_WIDTH
STYLEID_WIDTH
,
STYLEID_Z_INDEX
}
styleid_t
;
void
HTMLStyle2_Init
(
HTMLStyle
*
);
...
...
dlls/mshtml/tests/dom.c
View file @
844d1cfc
...
...
@@ -2250,6 +2250,26 @@ static void test_default_style(IHTMLStyle *style)
ok
(
!
strcmp_wa
(
V_BSTR
(
&
v
),
"middle"
),
"V_BSTR(v) = %s
\n
"
,
dbgstr_w
(
V_BSTR
(
&
v
)));
VariantClear
(
&
v
);
V_VT
(
&
v
)
=
VT_EMPTY
;
hres
=
IHTMLStyle_get_zIndex
(
style
,
&
v
);
ok
(
hres
==
S_OK
,
"get_zIndex failed: %08x
\n
"
,
hres
);
ok
(
V_VT
(
&
v
)
==
VT_I4
,
"V_VT(v)=%d
\n
"
,
V_VT
(
&
v
));
ok
(
!
V_I4
(
&
v
),
"V_I4(v) != 0
\n
"
);
VariantClear
(
&
v
);
V_VT
(
&
v
)
=
VT_BSTR
;
V_BSTR
(
&
v
)
=
a2bstr
(
"1"
);
hres
=
IHTMLStyle_put_zIndex
(
style
,
v
);
ok
(
hres
==
S_OK
,
"put_zIndex failed: %08x
\n
"
,
hres
);
VariantClear
(
&
v
);
V_VT
(
&
v
)
=
VT_EMPTY
;
hres
=
IHTMLStyle_get_zIndex
(
style
,
&
v
);
ok
(
hres
==
S_OK
,
"get_zIndex failed: %08x
\n
"
,
hres
);
ok
(
V_VT
(
&
v
)
==
VT_I4
,
"V_VT(v)=%d
\n
"
,
V_VT
(
&
v
));
ok
(
V_I4
(
&
v
)
==
1
,
"V_I4(v) = %d
\n
"
,
V_I4
(
&
v
));
VariantClear
(
&
v
);
hres
=
IHTMLStyle_QueryInterface
(
style
,
&
IID_IHTMLStyle2
,
(
void
**
)
&
style2
);
ok
(
hres
==
S_OK
,
"Could not get IHTMLStyle2 iface: %08x
\n
"
,
hres
);
if
(
SUCCEEDED
(
hres
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment