Kaba class Slider ed

...

Syntax ed

class Slider extends Object

    # constructors
    func mut __init__(panel: Panel, id_slider: string, id_edit: string, on_update: void->void)

    # functions
    func enable(enabled: bool)
    func get() -> f32
    func mut set(f: f32)
    func set_range(v_min: f32, v_max: f32, step: f32)
    func set_scale(factor: f32)
    func set_slider_range(v_min: f32, v_max: f32)

Functions ed

func enable(enabled: bool)
...

func get() -> f32
...

func mut set(f: f32)
...

func set_range(v_min: f32, v_max: f32, step: f32)
...

func set_scale(factor: f32)
...

func set_slider_range(v_min: f32, v_max: f32)
...