Package com.jogamp.graph.ui.widgets
Interface RangeSlider.ChangeListener
-
- Enclosing class:
- RangeSlider
public static interface RangeSlider.ChangeListener
RangeSlider
slider value changed listener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dragged(RangeSlider w, float old_val, float val, float old_val_pct, float val_pct, com.jogamp.math.Vec3f pos, MouseEvent e)
Slide dragged by user (including clicked position)
-
-
-
Method Detail
-
dragged
void dragged(RangeSlider w, float old_val, float val, float old_val_pct, float val_pct, com.jogamp.math.Vec3f pos, MouseEvent e)
Slide dragged by user (including clicked position)- Parameters:
w
- theRangeSlider
widget owning the sliderold_val
- previous absolute value position of the sliderval
- the absolute value position of the sliderold_val_pct
- previous percentage value position of the sliderval_pct
- the percentage value position of the sliderpos
- object position relative to the slider's bare
- NEWT original event ornull
if sourced from non-mouse, e.g. key-event
-
-