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
0889bfa5
Commit
0889bfa5
authored
Dec 01, 2001
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Dec 01, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undocumented feature of TB_{GET|SET}BUTTONINFO{A|W}: if mask has
0x80000000 set then the command id is really the index.
parent
10b77a99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
27 deletions
+35
-27
toolbar.c
dlls/comctl32/toolbar.c
+35
-27
No files found.
dlls/comctl32/toolbar.c
View file @
0889bfa5
...
@@ -1320,11 +1320,15 @@ TOOLBAR_InternalHitTest (HWND hwnd, LPPOINT lpPt)
...
@@ -1320,11 +1320,15 @@ TOOLBAR_InternalHitTest (HWND hwnd, LPPOINT lpPt)
static
INT
static
INT
TOOLBAR_GetButtonIndex
(
TOOLBAR_INFO
*
infoPtr
,
INT
idCommand
)
TOOLBAR_GetButtonIndex
(
TOOLBAR_INFO
*
infoPtr
,
INT
idCommand
,
BOOL
CommandIsIndex
)
{
{
TBUTTON_INFO
*
btnPtr
;
TBUTTON_INFO
*
btnPtr
;
INT
i
;
INT
i
;
if
(
CommandIsIndex
)
{
TRACE
(
"command is really index command=%d
\n
"
,
idCommand
);
return
idCommand
;
}
btnPtr
=
infoPtr
->
buttons
;
btnPtr
=
infoPtr
->
buttons
;
for
(
i
=
0
;
i
<
infoPtr
->
nNumButtons
;
i
++
,
btnPtr
++
)
{
for
(
i
=
0
;
i
<
infoPtr
->
nNumButtons
;
i
++
,
btnPtr
++
)
{
if
(
btnPtr
->
idCommand
==
idCommand
)
{
if
(
btnPtr
->
idCommand
==
idCommand
)
{
...
@@ -1474,7 +1478,7 @@ TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
@@ -1474,7 +1478,7 @@ TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
TRACE
(
"style: %x
\n
"
,
nmtb
.
tbButton
.
fsStyle
);
TRACE
(
"style: %x
\n
"
,
nmtb
.
tbButton
.
fsStyle
);
/* insert button into the apropriate list */
/* insert button into the apropriate list */
index
=
TOOLBAR_GetButtonIndex
(
custInfo
->
tbInfo
,
nmtb
.
tbButton
.
idCommand
);
index
=
TOOLBAR_GetButtonIndex
(
custInfo
->
tbInfo
,
nmtb
.
tbButton
.
idCommand
,
FALSE
);
if
(
index
==
-
1
)
if
(
index
==
-
1
)
{
{
btnInfo
=
(
PCUSTOMBUTTON
)
COMCTL32_Alloc
(
sizeof
(
CUSTOMBUTTON
));
btnInfo
=
(
PCUSTOMBUTTON
)
COMCTL32_Alloc
(
sizeof
(
CUSTOMBUTTON
));
...
@@ -2415,7 +2419,7 @@ TOOLBAR_ChangeBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2415,7 +2419,7 @@ TOOLBAR_ChangeBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
TBUTTON_INFO
*
btnPtr
;
TBUTTON_INFO
*
btnPtr
;
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -2439,7 +2443,7 @@ TOOLBAR_CheckButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2439,7 +2443,7 @@ TOOLBAR_CheckButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
INT
nOldIndex
=
-
1
;
INT
nOldIndex
=
-
1
;
BOOL
bChecked
=
FALSE
;
BOOL
bChecked
=
FALSE
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -2485,7 +2489,7 @@ TOOLBAR_CommandToIndex (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2485,7 +2489,7 @@ TOOLBAR_CommandToIndex (HWND hwnd, WPARAM wParam, LPARAM lParam)
{
{
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
return
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
return
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
}
}
...
@@ -2590,7 +2594,7 @@ TOOLBAR_EnableButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2590,7 +2594,7 @@ TOOLBAR_EnableButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
INT
nIndex
;
INT
nIndex
;
DWORD
bState
;
DWORD
bState
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -2631,7 +2635,7 @@ TOOLBAR_GetBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2631,7 +2635,7 @@ TOOLBAR_GetBitmap (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -2690,7 +2694,8 @@ TOOLBAR_GetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2690,7 +2694,8 @@ TOOLBAR_GetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
lpTbInfo
->
cbSize
<
sizeof
(
TBBUTTONINFOA
))
if
(
lpTbInfo
->
cbSize
<
sizeof
(
TBBUTTONINFOA
))
return
-
1
;
return
-
1
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
lpTbInfo
->
dwMask
&
0x80000000
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -2736,7 +2741,8 @@ TOOLBAR_GetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2736,7 +2741,8 @@ TOOLBAR_GetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
lpTbInfo
->
cbSize
<
sizeof
(
TBBUTTONINFOW
))
if
(
lpTbInfo
->
cbSize
<
sizeof
(
TBBUTTONINFOW
))
return
-
1
;
return
-
1
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
lpTbInfo
->
dwMask
&
0x80000000
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -2784,7 +2790,7 @@ TOOLBAR_GetButtonTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2784,7 +2790,7 @@ TOOLBAR_GetButtonTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
,
nStringIndex
;
INT
nIndex
,
nStringIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -2809,7 +2815,7 @@ TOOLBAR_GetButtonTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2809,7 +2815,7 @@ TOOLBAR_GetButtonTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
,
nStringIndex
;
INT
nIndex
,
nStringIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -2950,7 +2956,7 @@ TOOLBAR_GetRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2950,7 +2956,7 @@ TOOLBAR_GetRect (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
infoPtr
==
NULL
)
if
(
infoPtr
==
NULL
)
return
FALSE
;
return
FALSE
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
btnPtr
=
&
infoPtr
->
buttons
[
nIndex
];
btnPtr
=
&
infoPtr
->
buttons
[
nIndex
];
if
((
nIndex
<
0
)
||
(
nIndex
>=
infoPtr
->
nNumButtons
))
if
((
nIndex
<
0
)
||
(
nIndex
>=
infoPtr
->
nNumButtons
))
return
FALSE
;
return
FALSE
;
...
@@ -2985,7 +2991,7 @@ TOOLBAR_GetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2985,7 +2991,7 @@ TOOLBAR_GetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -2999,7 +3005,7 @@ TOOLBAR_GetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -2999,7 +3005,7 @@ TOOLBAR_GetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
-
1
;
return
-
1
;
...
@@ -3059,7 +3065,7 @@ TOOLBAR_HideButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3059,7 +3065,7 @@ TOOLBAR_HideButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
TRACE
(
"
\n
"
);
TRACE
(
"
\n
"
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3091,7 +3097,7 @@ TOOLBAR_Indeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3091,7 +3097,7 @@ TOOLBAR_Indeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
TBUTTON_INFO
*
btnPtr
;
TBUTTON_INFO
*
btnPtr
;
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3275,7 +3281,7 @@ TOOLBAR_IsButtonChecked (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3275,7 +3281,7 @@ TOOLBAR_IsButtonChecked (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3289,7 +3295,7 @@ TOOLBAR_IsButtonEnabled (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3289,7 +3295,7 @@ TOOLBAR_IsButtonEnabled (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3303,7 +3309,7 @@ TOOLBAR_IsButtonHidden (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3303,7 +3309,7 @@ TOOLBAR_IsButtonHidden (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
TRUE
;
return
TRUE
;
...
@@ -3317,7 +3323,7 @@ TOOLBAR_IsButtonHighlighted (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3317,7 +3323,7 @@ TOOLBAR_IsButtonHighlighted (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3331,7 +3337,7 @@ TOOLBAR_IsButtonIndeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3331,7 +3337,7 @@ TOOLBAR_IsButtonIndeterminate (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3345,7 +3351,7 @@ TOOLBAR_IsButtonPressed (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3345,7 +3351,7 @@ TOOLBAR_IsButtonPressed (HWND hwnd, WPARAM wParam, LPARAM lParam)
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
TOOLBAR_INFO
*
infoPtr
=
TOOLBAR_GetInfoPtr
(
hwnd
);
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3366,7 +3372,7 @@ TOOLBAR_PressButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3366,7 +3372,7 @@ TOOLBAR_PressButton (HWND hwnd, WPARAM wParam, LPARAM lParam)
TBUTTON_INFO
*
btnPtr
;
TBUTTON_INFO
*
btnPtr
;
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3498,7 +3504,8 @@ TOOLBAR_SetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3498,7 +3504,8 @@ TOOLBAR_SetButtonInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
lptbbi
->
cbSize
<
sizeof
(
TBBUTTONINFOA
))
if
(
lptbbi
->
cbSize
<
sizeof
(
TBBUTTONINFOA
))
return
FALSE
;
return
FALSE
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
lptbbi
->
dwMask
&
0x80000000
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3548,7 +3555,8 @@ TOOLBAR_SetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3548,7 +3555,8 @@ TOOLBAR_SetButtonInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
if
(
lptbbi
->
cbSize
<
sizeof
(
TBBUTTONINFOW
))
if
(
lptbbi
->
cbSize
<
sizeof
(
TBBUTTONINFOW
))
return
FALSE
;
return
FALSE
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
lptbbi
->
dwMask
&
0x80000000
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3904,7 +3912,7 @@ TOOLBAR_SetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3904,7 +3912,7 @@ TOOLBAR_SetState (HWND hwnd, WPARAM wParam, LPARAM lParam)
TBUTTON_INFO
*
btnPtr
;
TBUTTON_INFO
*
btnPtr
;
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
@@ -3937,7 +3945,7 @@ TOOLBAR_SetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
...
@@ -3937,7 +3945,7 @@ TOOLBAR_SetStyle (HWND hwnd, WPARAM wParam, LPARAM lParam)
TBUTTON_INFO
*
btnPtr
;
TBUTTON_INFO
*
btnPtr
;
INT
nIndex
;
INT
nIndex
;
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
);
nIndex
=
TOOLBAR_GetButtonIndex
(
infoPtr
,
(
INT
)
wParam
,
FALSE
);
if
(
nIndex
==
-
1
)
if
(
nIndex
==
-
1
)
return
FALSE
;
return
FALSE
;
...
...
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