Page 1 of 1
hocking the parent panel events
Posted: 16 Nov 2009 15:50
by gawady
I don't want my vlc window going full screen when double clicked, i am using c# wrapper and even overriding wndproc didn't help
any ideas to hock the mouse events for the parent panel ?
Re: hocking the parent panel events
Posted: 16 Nov 2009 17:28
by Rémi Denis-Courmont
To my knowledge --no-mouse-events has never been implemented on the Windows port.
Re: hocking the parent panel events
Posted: 17 Nov 2009 09:47
by gawady
Another question, is it the wrapper or the vlc itself making the window fullscreen when double clicked ?
Many thanks
Re: hocking the parent panel events
Posted: 17 Nov 2009 17:04
by Rémi Denis-Courmont
It's done in VLC.
Re: hocking the parent panel events
Posted: 18 Nov 2009 07:43
by kryptonite
The --no-mouse-events would be a useful option to port to Windows; quite a few users (including myself) need it.
For the time being, the hack most people use for their libvlc ports, is to somehow disable the canvas that displays vlc's o/p. As a result, all events going to the canvas get passed on to the parent container.
And then, you implement all your event listeners, handlers on the parent container.
Re: hocking the parent panel events
Posted: 18 Nov 2009 17:11
by Rémi Denis-Courmont
The question is not whether it is useful, but who would implement it.