Does wxPython have any Double Slider implemented? Considering not, how
would you suggest me to implement it?
I understand a double slider a compound widget to select a range of values
with two sliders. One slider controls the minimum value of a range and the
other the maximum. When the Minimum Slider is moved, the new minimum value
updates the allowed minimum of the Maximum Slider.
Conversely, when the Maximum Slider is moved, the new maximum value
becomes the top end of the Minimum Slide.
Does wxPython have any Double Slider implemented? Considering not, how
would you suggest me to implement it?
I understand a double slider a compound widget to select a range of values
with two sliders. One slider controls the minimum value of a range and the
other the maximum. When the Minimum Slider is moved, the new minimum value
updates the allowed minimum of the Maximum Slider.
Conversely, when the Maximum Slider is moved, the new maximum value
becomes the top end of the Minimum Slide.
There isn't anything like that already but you can do it by catching the events from each slider and then updating the range of the opposite slider as needed.
ยทยทยท
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!