Skip to content

Commit

Permalink
Merge pull request #99 from Shallowmallow/SliderTicksNew
Browse files Browse the repository at this point in the history
Slider Ticks bindings
  • Loading branch information
ianharrigan authored Aug 18, 2023
2 parents 170e54e + b46cf92 commit 167a1de
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 167a1de

Please sign in to comment.