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
ac34e22e
Commit
ac34e22e
authored
Aug 13, 2009
by
Andrew Eikum
Committed by
Alexandre Julliard
Aug 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Correctly assign focus and default button in property sheet wizards.
parent
4a14ed43
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
propsheet.c
dlls/comctl32/propsheet.c
+18
-0
No files found.
dlls/comctl32/propsheet.c
View file @
ac34e22e
...
...
@@ -1549,6 +1549,7 @@ static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo)
{
HWND
hwndTabCtrl
;
HWND
hwndLineHeader
;
HWND
control
;
LPCPROPSHEETPAGEW
ppshpage
;
TRACE
(
"active_page %d, index %d
\n
"
,
psInfo
->
active_page
,
index
);
...
...
@@ -1569,6 +1570,10 @@ static BOOL PROPSHEET_ShowPage(HWND hwndDlg, int index, PropSheetInfo * psInfo)
{
PROPSHEET_SetTitleW
(
hwndDlg
,
psInfo
->
ppshheader
.
dwFlags
,
psInfo
->
proppage
[
index
].
pszText
);
control
=
GetNextDlgTabItem
(
psInfo
->
proppage
[
index
].
hwndPage
,
NULL
,
FALSE
);
if
(
control
!=
NULL
)
SetFocus
(
control
);
}
if
(
psInfo
->
active_page
!=
-
1
)
...
...
@@ -1631,7 +1636,11 @@ static BOOL PROPSHEET_Back(HWND hwndDlg)
if
(
idx
>=
0
&&
idx
<
psInfo
->
nPages
)
{
if
(
PROPSHEET_CanSetCurSel
(
hwndDlg
))
{
SetFocus
(
GetDlgItem
(
hwndDlg
,
IDC_BACK_BUTTON
));
SendMessageW
(
hwndDlg
,
DM_SETDEFID
,
IDC_BACK_BUTTON
,
0
);
PROPSHEET_SetCurSel
(
hwndDlg
,
idx
,
-
1
,
0
);
}
}
return
TRUE
;
}
...
...
@@ -1669,7 +1678,11 @@ static BOOL PROPSHEET_Next(HWND hwndDlg)
if
(
idx
<
psInfo
->
nPages
)
{
if
(
PROPSHEET_CanSetCurSel
(
hwndDlg
)
!=
FALSE
)
{
SetFocus
(
GetDlgItem
(
hwndDlg
,
IDC_NEXT_BUTTON
));
SendMessageW
(
hwndDlg
,
DM_SETDEFID
,
IDC_NEXT_BUTTON
,
0
);
PROPSHEET_SetCurSel
(
hwndDlg
,
idx
,
1
,
0
);
}
}
return
TRUE
;
...
...
@@ -3408,6 +3421,7 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
/* set up the Next and Back buttons by default */
PROPSHEET_SetWizButtons
(
hwnd
,
PSWIZB_BACK
|
PSWIZB_NEXT
);
SetFocus
(
GetDlgItem
(
hwnd
,
IDC_NEXT_BUTTON
));
/* Set up fonts */
SystemParametersInfoW
(
SPI_GETICONTITLELOGFONT
,
0
,
&
logFont
,
0
);
...
...
@@ -3494,6 +3508,10 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
PROPSHEET_UnChanged
(
hwnd
,
NULL
);
/* wizards set their focus during init */
if
(
psInfo
->
ppshheader
.
dwFlags
&
INTRNL_ANY_WIZARD
)
return
FALSE
;
return
TRUE
;
}
...
...
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