Vertical slider again
-
Call setRange in your MainWindow constructor.
-
That line:
ui->verticalSlider->setRange(1,50);
you should call it in the MainWindow constructor.And since you are using a Designer based interface you can also set the min and max values in Designer and avoid the setRange call.
-
Well... Yes if you use it somewhere else.
-
Where exactly ? Depending on that, there's not even a need for
z
. You can get the value directly from the slider. -
@Payx said in Vertical slider again:
It depends where i use my "z" ?
How ?
What do you use
z
for? Also side note, that's a horrible name for a variable locally much less one that is used at a class or global level.What @SGaist is saying is you can always get the value of the slider from the slider itself without saving it to a variable. The function
ui->verticalSlider->sliderPosition()
will always contain the same value that yourz
would.So with that in mind you can get rid of that whole overridden function and just call
sliderPosition()
when you need the value.