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
8adae9aa
Commit
8adae9aa
authored
Sep 02, 2008
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorer: Track appbar positions and send ABN_POSCHANGED notifications.
parent
96f8de0d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
appbar.c
programs/explorer/appbar.c
+37
-0
No files found.
programs/explorer/appbar.c
View file @
8adae9aa
...
...
@@ -48,6 +48,10 @@ struct appbar_data
struct
list
entry
;
HWND
hwnd
;
UINT
callback_msg
;
UINT
edge
;
RECT
rc
;
BOOL
space_reserved
;
/* BOOL autohide; */
};
static
struct
list
appbars
=
LIST_INIT
(
appbars
);
...
...
@@ -65,6 +69,19 @@ static struct appbar_data* get_appbar(HWND hwnd)
return
NULL
;
}
/* send_poschanged: send ABN_POSCHANGED to every appbar except one */
static
void
send_poschanged
(
HWND
hwnd
)
{
struct
appbar_data
*
data
;
LIST_FOR_EACH_ENTRY
(
data
,
&
appbars
,
struct
appbar_data
,
entry
)
{
if
(
data
->
hwnd
!=
hwnd
)
{
PostMessageW
(
data
->
hwnd
,
data
->
callback_msg
,
ABN_POSCHANGED
,
0
);
}
}
}
static
UINT_PTR
handle_appbarmessage
(
DWORD
msg
,
PAPPBARDATA
abd
)
{
struct
appbar_data
*
data
;
...
...
@@ -95,6 +112,8 @@ static UINT_PTR handle_appbarmessage(DWORD msg, PAPPBARDATA abd)
{
list_remove
(
&
data
->
entry
);
send_poschanged
(
abd
->
hWnd
);
HeapFree
(
GetProcessHeap
(),
0
,
data
);
}
else
...
...
@@ -105,6 +124,24 @@ static UINT_PTR handle_appbarmessage(DWORD msg, PAPPBARDATA abd)
return
TRUE
;
case
ABM_SETPOS
:
WINE_FIXME
(
"SHAppBarMessage(ABM_SETPOS, hwnd=%p, edge=%x, rc=%s): stub
\n
"
,
abd
->
hWnd
,
abd
->
uEdge
,
wine_dbgstr_rect
(
&
abd
->
rc
));
if
(
abd
->
uEdge
>
ABE_BOTTOM
)
{
WINE_WARN
(
"invalid edge %i for %p
\n
"
,
abd
->
uEdge
,
abd
->
hWnd
);
return
TRUE
;
}
if
((
data
=
get_appbar
(
abd
->
hWnd
)))
{
if
(
!
EqualRect
(
&
abd
->
rc
,
&
data
->
rc
))
send_poschanged
(
abd
->
hWnd
);
data
->
edge
=
abd
->
uEdge
;
data
->
rc
=
abd
->
rc
;
data
->
space_reserved
=
TRUE
;
}
else
{
WINE_WARN
(
"app sent ABM_SETPOS message for %p without ABM_ADD
\n
"
,
abd
->
hWnd
);
}
return
TRUE
;
case
ABM_GETSTATE
:
WINE_FIXME
(
"SHAppBarMessage(ABM_GETSTATE): stub
\n
"
);
...
...
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