Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
a051951a
Commit
a051951a
authored
Jun 11, 2007
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxwidgets: backport [20017]
parent
a3913955
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
0 deletions
+67
-0
modules/gui/wxwidgets/input_manager.cpp
modules/gui/wxwidgets/input_manager.cpp
+67
-0
No files found.
modules/gui/wxwidgets/input_manager.cpp
View file @
a051951a
...
...
@@ -58,6 +58,59 @@ END_EVENT_TABLE()
#define STATUS_PLAYING 1
#define STATUS_PAUSE 2
#ifdef WIN32
#include <commctrl.h>
/*
** On win32, clicking on the slider channel causes the thumb to jump up or down a page size
** like a scrollbar. This is not particularily useful for a movie track, where we'd rather
** see the thumb to jump where the mouse is.
** Therefore, we replace the slider (TRACKBAR control) window proc with our, which intercept
** the mouse down event, and move the thumb accordingly
*/
static
LRESULT
CALLBACK
MovieSliderWindowProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
uMsg
)
{
case
WM_LBUTTONDOWN
:
{
POINT
click
=
{
GET_X_LPARAM
(
lParam
),
GET_Y_LPARAM
(
lParam
)
};
RECT
tRect
=
{
0
,
0
,
0
,
0
};
SendMessage
(
hWnd
,
TBM_GETTHUMBRECT
,
0
,
(
LPARAM
)
&
tRect
);
/* check whether click is not in thumb */
if
(
!
PtInRect
(
&
tRect
,
click
)
)
{
LONG
min
=
SendMessage
(
hWnd
,
TBM_GETRANGEMIN
,
0
,
0
);
LONG
max
=
SendMessage
(
hWnd
,
TBM_GETRANGEMAX
,
0
,
0
);
LONG
thumb
=
tRect
.
right
-
tRect
.
left
;
LONG
newpos
;
SendMessage
(
hWnd
,
TBM_GETCHANNELRECT
,
0
,
(
LPARAM
)
&
tRect
);
/* calculate thumb postion from click in trackbar */
/* following is only valid for a horizontal trackbar */
newpos
=
((
click
.
x
-
tRect
.
left
-
(
thumb
/
2
))
*
(
max
-
min
)
+
((
tRect
.
right
-
tRect
.
left
-
thumb
)
/
2
))
/
(
tRect
.
right
-
tRect
.
left
-
thumb
);
/* set new postion */
SendMessage
(
hWnd
,
TBM_SETPOS
,
TRUE
,
min
+
newpos
);
/* notify parent of change */
SendMessage
(
GetParent
(
hWnd
),
WM_HSCROLL
,
TB_ENDTRACK
,
(
LPARAM
)
hWnd
);
return
0
;
}
}
default:
return
CallWindowProc
((
WNDPROC
)
GetWindowLongPtr
(
hWnd
,
GWLP_USERDATA
),
hWnd
,
uMsg
,
wParam
,
lParam
);
}
}
#endif
/*****************************************************************************
* Constructor.
*****************************************************************************/
...
...
@@ -76,6 +129,20 @@ InputManager::InputManager( intf_thread_t *_p_intf, Interface *_p_main_intf,
/* Create slider */
slider
=
new
wxSlider
(
this
,
SliderScroll_Event
,
0
,
0
,
SLIDER_MAX_POS
);
#ifdef WIN32
/* modify behaviour of WIN32 underlying control
in order to implement proper movie slider */
{
HWND
sliderHwnd
=
(
HWND
)
slider
->
GetHWND
();
/* put original WNDPROC into USERDATA, this may be incompatible with future version of
wxwidgets. */
SetWindowLongPtr
(
sliderHwnd
,
GWLP_USERDATA
,
(
LONG_PTR
)
GetWindowLongPtr
(
sliderHwnd
,
GWLP_WNDPROC
));
/* put our own WNDPROC */
SetWindowLongPtr
(
sliderHwnd
,
GWLP_WNDPROC
,
(
LONG_PTR
)
MovieSliderWindowProc
);
}
#endif
/* Create disc buttons */
disc_frame
=
new
wxPanel
(
this
);
...
...
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