Connecting two sliders manually?
-
Ok now I got into a QSlider paradox...
I created the slider object in the ui, then I created a new slider subclass base on QAbstractSlider. Then in the ui I tried to promote the slider object to the new subclass, but in the "base class" selection, it doesn't have QAbstractSlider as a choice, so I chose "QSlider" and the program ended complaining about constructor doesn't match. But I have to use QAbstractSlider as the base class because Qslider doesn't have control for wheelEvent.
-
Hi,
Why inheriting from
QAbstractSlider
if you want to customiseQSlider
? -
I understand you want to reimplement the
wheelEvent
method but inheriting fromQAbstractSlider
means that you're going to reimplement also the painting, etc. to make your custom slider match the design ofQSlider
. On the other hand, subclassingQSlider
and reimplement thewheelEvent
there will reduce highly the work needed. -
Oh it does have a wheelEvent...I was looking at the document and I couldn't find the word on the page, so I thought it doesn't have.
-
When in doubt look at the base class(s) implementation and/or the link named
List of all members, including inherited members
.