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
ed31f0ce
Commit
ed31f0ce
authored
Aug 23, 2003
by
Igor Grahek
Committed by
Alexandre Julliard
Aug 23, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send STN_CLICKED ad STN_DBLCLK messages to parent window if SS_NOTIFY
is enabled.
parent
266e19eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
static.c
controls/static.c
+14
-0
No files found.
controls/static.c
View file @
ed31f0ce
...
...
@@ -352,6 +352,20 @@ static LRESULT StaticWndProc_common( HWND hwnd, UINT uMsg, WPARAM wParam,
case
WM_GETDLGCODE
:
return
DLGC_STATIC
;
case
WM_LBUTTONDOWN
:
case
WM_NCLBUTTONDOWN
:
if
(
full_style
&
SS_NOTIFY
)
SendMessageW
(
GetParent
(
hwnd
),
WM_COMMAND
,
MAKEWPARAM
(
GetWindowLongW
(
hwnd
,
GWL_ID
),
STN_CLICKED
),
(
LPARAM
)
hwnd
);
return
0
;
case
WM_LBUTTONDBLCLK
:
case
WM_NCLBUTTONDBLCLK
:
if
(
full_style
&
SS_NOTIFY
)
SendMessageW
(
GetParent
(
hwnd
),
WM_COMMAND
,
MAKEWPARAM
(
GetWindowLongW
(
hwnd
,
GWL_ID
),
STN_DBLCLK
),
(
LPARAM
)
hwnd
);
return
0
;
case
STM_GETIMAGE
:
case
STM_GETICON16
:
case
STM_GETICON
:
...
...
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