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
240e7624
Commit
240e7624
authored
Sep 25, 2005
by
James Hawkins
Committed by
Alexandre Julliard
Sep 25, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correctly resize the child windows.
parent
bfbba1a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
20 deletions
+21
-20
help.c
dlls/hhctrl.ocx/help.c
+21
-20
No files found.
dlls/hhctrl.ocx/help.c
View file @
240e7624
...
@@ -547,34 +547,35 @@ static BOOL HH_AddHTMLPane(HHInfo *pHHInfo)
...
@@ -547,34 +547,35 @@ static BOOL HH_AddHTMLPane(HHInfo *pHHInfo)
/* Viewer Window */
/* Viewer Window */
static
void
Help_OnSize
(
HWND
hWnd
,
LPARAM
lParam
)
static
void
Help_OnSize
(
HWND
hWnd
)
{
{
HHInfo
*
pHHInfo
=
(
HHInfo
*
)
GetWindowLongPtrW
(
hWnd
,
GWLP_USERDATA
);
HHInfo
*
pHHInfo
=
(
HHInfo
*
)
GetWindowLongPtrW
(
hWnd
,
GWLP_USERDATA
);
DWORD
dwSize
;
RECT
rc
;
RECT
rc
;
if
(
!
pHHInfo
)
if
(
!
pHHInfo
)
return
;
return
;
/* Only resize the Navigation pane and SizeBar vertically */
NP_GetNavigationRect
(
pHHInfo
,
&
rc
);
if
(
HIWORD
(
lParam
))
SetWindowPos
(
pHHInfo
->
pHHWinType
->
hwndNavigation
,
HWND_TOP
,
0
,
0
,
{
rc
.
right
,
rc
.
bottom
,
SWP_NOMOVE
);
NP_GetNavigationRect
(
pHHInfo
,
&
rc
);
SetWindowPos
(
pHHInfo
->
pHHWinType
->
hwndNavigation
,
HWND_TOP
,
0
,
0
,
GetClientRect
(
pHHInfo
->
pHHWinType
->
hwndNavigation
,
&
rc
);
rc
.
right
,
rc
.
bottom
,
SWP_NOMOVE
);
SetWindowPos
(
pHHInfo
->
hwndTabCtrl
,
HWND_TOP
,
0
,
0
,
rc
.
right
-
TAB_RIGHT_PADDING
,
GetClientRect
(
pHHInfo
->
pHHWinType
->
hwndNavigation
,
&
rc
);
rc
.
bottom
-
TAB_TOP_PADDING
,
SWP_NOMOVE
);
SetWindowPos
(
pHHInfo
->
hwndTabCtrl
,
HWND_TOP
,
0
,
0
,
rc
.
right
-
TAB_RIGHT_PADDING
,
SB_GetSizeBarRect
(
pHHInfo
,
&
rc
);
rc
.
bottom
-
TAB_TOP_PADDING
,
SWP_NOMOVE
);
SetWindowPos
(
pHHInfo
->
hwndSizeBar
,
HWND_TOP
,
rc
.
left
,
rc
.
top
,
rc
.
right
,
rc
.
bottom
,
SWP_SHOWWINDOW
);
SB_GetSizeBarRect
(
pHHInfo
,
&
rc
);
SetWindowPos
(
pHHInfo
->
hwndSizeBar
,
HWND_TOP
,
0
,
0
,
rc
.
right
,
rc
.
bottom
,
SWP_NOMOVE
);
}
HP_GetHTMLRect
(
pHHInfo
,
&
rc
);
HP_GetHTMLRect
(
pHHInfo
,
&
rc
);
SetWindowPos
(
pHHInfo
->
pHHWinType
->
hwndHTML
,
HWND_TOP
,
0
,
0
,
SetWindowPos
(
pHHInfo
->
pHHWinType
->
hwndHTML
,
HWND_TOP
,
rc
.
left
,
rc
.
top
,
LOWORD
(
lParam
),
HIWORD
(
lParam
),
SWP_NOMOVE
);
rc
.
right
,
rc
.
bottom
,
SWP_SHOWWINDOW
);
/* Resize browser window taking the frame size into account */
dwSize
=
GetSystemMetrics
(
SM_CXFRAME
);
WB_ResizeBrowser
(
pHHInfo
->
pWBInfo
,
rc
.
right
-
dwSize
,
rc
.
bottom
-
dwSize
);
}
}
LRESULT
CALLBACK
Help_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
LRESULT
CALLBACK
Help_WndProc
(
HWND
hWnd
,
UINT
message
,
WPARAM
wParam
,
LPARAM
lParam
)
...
@@ -589,7 +590,7 @@ LRESULT CALLBACK Help_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa
...
@@ -589,7 +590,7 @@ LRESULT CALLBACK Help_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPa
TB_OnClick
(
hWnd
,
LOWORD
(
wParam
));
TB_OnClick
(
hWnd
,
LOWORD
(
wParam
));
break
;
break
;
case
WM_SIZE
:
case
WM_SIZE
:
Help_OnSize
(
hWnd
,
lParam
);
Help_OnSize
(
hWnd
);
break
;
break
;
case
WM_PAINT
:
case
WM_PAINT
:
hdc
=
BeginPaint
(
hWnd
,
&
ps
);
hdc
=
BeginPaint
(
hWnd
,
&
ps
);
...
...
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