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
2e3aa622
Commit
2e3aa622
authored
Oct 12, 2016
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Add a helper function to send systray notifications.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
df8ec3a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
51 deletions
+35
-51
systray.c
dlls/winex11.drv/systray.c
+35
-51
No files found.
dlls/winex11.drv/systray.c
View file @
2e3aa622
...
...
@@ -436,11 +436,35 @@ done:
if
(
dib
)
DeleteObject
(
dib
);
}
static
BOOL
notify_owner
(
struct
tray_icon
*
icon
,
UINT
msg
,
LPARAM
lparam
)
{
WPARAM
wp
=
icon
->
id
;
LPARAM
lp
=
msg
;
if
(
icon
->
version
>=
NOTIFY_VERSION_4
)
{
POINT
pt
=
{
(
short
)
LOWORD
(
lparam
),
(
short
)
HIWORD
(
lparam
)
};
ClientToScreen
(
icon
->
window
,
&
pt
);
wp
=
MAKEWPARAM
(
pt
.
x
,
pt
.
y
);
lp
=
MAKELPARAM
(
msg
,
icon
->
id
);
}
TRACE
(
"relaying 0x%x
\n
"
,
msg
);
if
(
!
PostMessageW
(
icon
->
owner
,
icon
->
callback_message
,
wp
,
lp
)
&&
(
GetLastError
()
==
ERROR_INVALID_WINDOW_HANDLE
))
{
WARN
(
"application window was destroyed, removing icon %u
\n
"
,
icon
->
id
);
delete_icon
(
icon
);
return
FALSE
;
}
return
TRUE
;
}
/* window procedure for the individual tray icon window */
static
LRESULT
WINAPI
tray_icon_wndproc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wparam
,
LPARAM
lparam
)
{
struct
tray_icon
*
icon
=
NULL
;
BOOL
ret
;
TRACE
(
"hwnd=%p, msg=0x%x
\n
"
,
hwnd
,
msg
);
...
...
@@ -477,64 +501,24 @@ static LRESULT WINAPI tray_icon_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPAR
case
WM_MOUSEMOVE
:
case
WM_LBUTTONDOWN
:
case
WM_LBUTTONUP
:
case
WM_RBUTTONDOWN
:
case
WM_RBUTTONUP
:
case
WM_MBUTTONDOWN
:
case
WM_MBUTTONUP
:
case
WM_LBUTTONDBLCLK
:
case
WM_RBUTTONDBLCLK
:
case
WM_MBUTTONDBLCLK
:
{
WPARAM
wpar
;
BOOL
oldver
;
oldver
=
icon
->
version
<=
NOTIFY_VERSION
;
if
(
oldver
)
{
/* 0 up to NOTIFYICON_VERSION (=3) */
wpar
=
icon
->
id
;
}
else
{
/* NOTIFYICON_VERSION_4 */
RECT
rect
;
WORD
x
,
y
;
GetWindowRect
(
icon
->
window
,
&
rect
);
x
=
rect
.
left
+
LOWORD
(
lparam
);
y
=
rect
.
top
+
HIWORD
(
lparam
);
wpar
=
MAKEWPARAM
(
x
,
y
);
}
notify_owner
(
icon
,
msg
,
lparam
);
break
;
/* notify the owner hwnd of the message */
TRACE
(
"relaying 0x%x
\n
"
,
msg
);
ret
=
PostMessageW
(
icon
->
owner
,
icon
->
callback_message
,
wpar
,
oldver
?
msg
:
MAKELPARAM
(
msg
,
icon
->
id
));
if
(
ret
&&
icon
->
version
>
0
)
{
switch
(
msg
)
{
case
WM_RBUTTONUP
:
/* notify the owner hwnd of the message */
TRACE
(
"relaying 0x%x
\n
"
,
WM_CONTEXTMENU
);
ret
=
PostMessageW
(
icon
->
owner
,
icon
->
callback_message
,
wpar
,
oldver
?
WM_CONTEXTMENU
:
MAKELPARAM
(
WM_CONTEXTMENU
,
icon
->
id
));
break
;
case
WM_LBUTTONUP
:
/* notify the owner hwnd of the message */
TRACE
(
"relaying 0x%x
\n
"
,
NIN_SELECT
);
ret
=
PostMessageW
(
icon
->
owner
,
icon
->
callback_message
,
wpar
,
oldver
?
NIN_SELECT
:
MAKELPARAM
(
NIN_SELECT
,
icon
->
id
));
break
;
default:
break
;
}
}
case
WM_LBUTTONUP
:
if
(
!
notify_owner
(
icon
,
msg
,
lparam
))
break
;
if
(
icon
->
version
>
0
)
notify_owner
(
icon
,
NIN_SELECT
,
lparam
);
break
;
if
(
!
ret
&&
(
GetLastError
()
==
ERROR_INVALID_WINDOW_HANDLE
))
{
WARN
(
"application window was destroyed, removing icon %u
\n
"
,
icon
->
id
);
delete_icon
(
icon
);
}
return
0
;
}
case
WM_RBUTTONUP
:
if
(
!
notify_owner
(
icon
,
msg
,
lparam
))
break
;
if
(
icon
->
version
>
0
)
notify_owner
(
icon
,
WM_CONTEXTMENU
,
lparam
);
break
;
case
WM_WINDOWPOSCHANGED
:
update_systray_balloon_position
();
...
...
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