Skip to content

Commit

Permalink
Slider bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Shallowmallow committed Aug 17, 2023
1 parent 170e54e commit b46cf92
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/wx/widgets/Slider.hx
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,17 @@ extern class Slider extends Control {
@:native("SetSelection") public function setSelection(startPos:Int, endPos:Int):Void;
@:native("GetSelStart") public function getSelStart():Int;
@:native("GetSelEnd") public function getSelEnd():Int;
@:native("ClearSel") public function clearSel():Void;
@:native("ClearTicks") public function clearTicks():Void;
@:native("GetLineSize") public function getLineSize():Int;
@:native("SetLineSize") public function setLineSize(lineSize:Int):Void;
@:native("GetPageSize") public function getPageSize():Int;
@:native("SetPageSize") public function setPageSize(pageSize:Int):Void;
@:native("SetRange") public function setRange(minValue:Int, maxValue:Int):Void;
@:native("GetThumbLength") public function getThumbLength():Int;
@:native("SetThumbLength") public function setThumbLength(len:Int):Void;
@:native("GetTickFreq") public function getTickFreq():Int;
@:native("SetTickFreq") public function setTickFreq(freq:Int):Void;
@:native("SetTick") public function setTick(tickPos:Int):Void;

}

0 comments on commit b46cf92

Please sign in to comment.