Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
396b0ad1
Commit
396b0ad1
authored
Nov 12, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 13, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added border implementation.
parent
2a782684
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
24 deletions
+47
-24
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-0
oleobj.c
dlls/mshtml/oleobj.c
+7
-2
view.c
dlls/mshtml/view.c
+38
-22
No files found.
dlls/mshtml/mshtml_private.h
View file @
396b0ad1
...
...
@@ -91,6 +91,8 @@ struct HTMLDocument {
HWND
hwnd
;
HWND
tooltips_hwnd
;
DOCHOSTUIINFO
hostinfo
;
USERMODE
usermode
;
READYSTATE
readystate
;
BOOL
in_place_active
;
...
...
dlls/mshtml/oleobj.c
View file @
396b0ad1
...
...
@@ -84,6 +84,8 @@ static HRESULT WINAPI OleObject_SetClientSite(IOleObject *iface, IOleClientSite
This
->
hostui
=
NULL
;
}
memset
(
&
This
->
hostinfo
,
0
,
sizeof
(
DOCHOSTUIINFO
));
if
(
!
pClientSite
)
return
S_OK
;
...
...
@@ -96,11 +98,12 @@ static HRESULT WINAPI OleObject_SetClientSite(IOleObject *iface, IOleClientSite
memset
(
&
hostinfo
,
0
,
sizeof
(
DOCHOSTUIINFO
));
hostinfo
.
cbSize
=
sizeof
(
DOCHOSTUIINFO
);
hres
=
IDocHostUIHandler_GetHostInfo
(
pDocHostUIHandler
,
&
hostinfo
);
if
(
SUCCEEDED
(
hres
))
/* FIXME: use hostinfo */
if
(
SUCCEEDED
(
hres
))
{
TRACE
(
"hostinfo = {%u %08x %08x %s %s}
\n
"
,
hostinfo
.
cbSize
,
hostinfo
.
dwFlags
,
hostinfo
.
dwDoubleClick
,
debugstr_w
(
hostinfo
.
pchHostCss
),
debugstr_w
(
hostinfo
.
pchHostNS
));
memcpy
(
&
This
->
hostinfo
,
&
hostinfo
,
sizeof
(
DOCHOSTUIINFO
));
}
if
(
!
This
->
has_key_path
)
{
hres
=
IDocHostUIHandler_GetOptionKeyPath
(
pDocHostUIHandler
,
&
key_path
,
0
);
...
...
@@ -693,4 +696,6 @@ void HTMLDocument_OleObj_Init(HTMLDocument *This)
This
->
has_key_path
=
FALSE
;
This
->
container_locked
=
FALSE
;
memset
(
&
This
->
hostinfo
,
0
,
sizeof
(
DOCHOSTUIINFO
));
}
dlls/mshtml/view.c
View file @
396b0ad1
...
...
@@ -49,29 +49,37 @@ typedef struct {
WNDPROC
proc
;
}
tooltip_data
;
static
void
paint_d
isabled
(
HWND
hwnd
)
{
HDC
hdc
;
static
void
paint_d
ocument
(
HTMLDocument
*
This
)
{
PAINTSTRUCT
ps
;
HBRUSH
brush
;
RECT
rect
;
HFONT
font
;
WCHAR
wszHTMLDisabled
[
100
];
HDC
hdc
;
GetClientRect
(
This
->
hwnd
,
&
rect
);
hdc
=
BeginPaint
(
This
->
hwnd
,
&
ps
);
if
(
!
(
This
->
hostinfo
.
dwFlags
&
(
DOCHOSTUIFLAG_NO3DOUTERBORDER
|
DOCHOSTUIFLAG_NO3DBORDER
)))
DrawEdge
(
hdc
,
&
rect
,
EDGE_SUNKEN
,
BF_RECT
|
BF_ADJUST
);
if
(
!
This
->
nscontainer
)
{
WCHAR
wszHTMLDisabled
[
100
];
HFONT
font
;
LoadStringW
(
hInst
,
IDS_HTMLDISABLED
,
wszHTMLDisabled
,
sizeof
(
wszHTMLDisabled
)
/
sizeof
(
WCHAR
));
LoadStringW
(
hInst
,
IDS_HTMLDISABLED
,
wszHTMLDisabled
,
sizeof
(
wszHTMLDisabled
)
/
sizeof
(
WCHAR
));
font
=
CreateFontA
(
25
,
0
,
0
,
0
,
400
,
0
,
0
,
0
,
ANSI_CHARSET
,
0
,
0
,
DEFAULT_QUALITY
,
DEFAULT_PITCH
,
NULL
);
brush
=
CreateSolidBrush
(
RGB
(
255
,
255
,
255
));
GetClientRect
(
hwnd
,
&
rect
);
font
=
CreateFontA
(
25
,
0
,
0
,
0
,
400
,
0
,
0
,
0
,
ANSI_CHARSET
,
0
,
0
,
DEFAULT_QUALITY
,
DEFAULT_PITCH
,
NULL
);
hdc
=
BeginPaint
(
hwnd
,
&
ps
);
SelectObject
(
hdc
,
font
);
SelectObject
(
hdc
,
brush
);
Rectangle
(
hdc
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
DrawTextW
(
hdc
,
wszHTMLDisabled
,
-
1
,
&
rect
,
DT_CENTER
|
DT_SINGLELINE
|
DT_VCENTER
);
EndPaint
(
hwnd
,
&
ps
);
SelectObject
(
hdc
,
font
);
SelectObject
(
hdc
,
GetSysColorBrush
(
COLOR_WINDOW
));
DeleteObject
(
font
);
DeleteObject
(
brush
);
Rectangle
(
hdc
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
DrawTextW
(
hdc
,
wszHTMLDisabled
,
-
1
,
&
rect
,
DT_CENTER
|
DT_SINGLELINE
|
DT_VCENTER
);
DeleteObject
(
font
);
}
EndPaint
(
This
->
hwnd
,
&
ps
);
}
static
void
activate_gecko
(
HTMLDocument
*
This
)
...
...
@@ -106,14 +114,22 @@ static LRESULT WINAPI serverwnd_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
activate_gecko
(
This
);
break
;
case
WM_PAINT
:
if
(
!
This
->
nscontainer
)
paint_disabled
(
hwnd
);
paint_document
(
This
);
break
;
case
WM_SIZE
:
TRACE
(
"(%p)->(WM_SIZE)
\n
"
,
This
);
if
(
This
->
nscontainer
)
SetWindowPos
(
This
->
nscontainer
->
hwnd
,
NULL
,
0
,
0
,
LOWORD
(
lParam
),
HIWORD
(
lParam
),
SWP_NOZORDER
|
SWP_NOACTIVATE
);
if
(
This
->
nscontainer
)
{
INT
ew
=
0
,
eh
=
0
;
if
(
!
(
This
->
hostinfo
.
dwFlags
&
(
DOCHOSTUIFLAG_NO3DOUTERBORDER
|
DOCHOSTUIFLAG_NO3DBORDER
)))
{
ew
=
GetSystemMetrics
(
SM_CXEDGE
);
eh
=
GetSystemMetrics
(
SM_CYEDGE
);
}
SetWindowPos
(
This
->
nscontainer
->
hwnd
,
NULL
,
ew
,
eh
,
LOWORD
(
lParam
)
-
2
*
ew
,
HIWORD
(
lParam
)
-
2
*
eh
,
SWP_NOZORDER
|
SWP_NOACTIVATE
);
}
}
return
DefWindowProcW
(
hwnd
,
msg
,
wParam
,
lParam
);
...
...
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