wxSlider: disabling mouse wheel

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
User avatar
papillon68
Earned some good credits
Earned some good credits
Posts: 118
Joined: Tue Nov 06, 2007 11:19 pm

wxSlider: disabling mouse wheel

Post by papillon68 »

Hello, I searched information around but couldn't find if it's possible at all to deny wxSlider changes using the mouse wheel. Thanks
Windows 10, MS VC++ 2019 (vc142), WxWidgets 3.14
Designed with WxWidgets: https://www.facebook.com/clorofillaApp
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7481
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: wxSlider: disabling mouse wheel

Post by ONEEYEMAN »

Hi,
What platform/wx version?
Did you try to bind mouse event and do nothing in the handler?

Thank you.
User avatar
papillon68
Earned some good credits
Earned some good credits
Posts: 118
Joined: Tue Nov 06, 2007 11:19 pm

Re: wxSlider: disabling mouse wheel

Post by papillon68 »

Hi, I am on Windows 10/ wxWidgets 3.13
Yes I did connect the mouse wheel event to an empty function, without success. Here below is code showing the connections:

Code: Select all

Connect(CLOROFILLAWIDGET_SLIDERCONTROLLER, wxEVT_SCROLL_CHANGED, wxScrollEventHandler(ClorofillaSlider::OnRelease)); // connect scroll event
clorofillaSliderController->Bind(wxEVT_MOUSEWHEEL, &ClorofillaSlider::OnWheelDoNothing, this);	// catch wheel event
Windows 10, MS VC++ 2019 (vc142), WxWidgets 3.14
Designed with WxWidgets: https://www.facebook.com/clorofillaApp
User avatar
papillon68
Earned some good credits
Earned some good credits
Posts: 118
Joined: Tue Nov 06, 2007 11:19 pm

Re: wxSlider: disabling mouse wheel

Post by papillon68 »

I've "fixed" it using a boolean to intercept the wheel event, and when it's true I restore the slider value to it's precedent one. It's kind of a hack but it does what I need.
Windows 10, MS VC++ 2019 (vc142), WxWidgets 3.14
Designed with WxWidgets: https://www.facebook.com/clorofillaApp