Skip to content

Commit

Permalink
bitmap bundle only available on wxWidgetsVersion >= version("3.1.6")
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Sep 4, 2024
1 parent 76cadde commit e2c989d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/wx/widgets/PropertyGrid.hx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ extern class PropertyGrid extends Control {
@:native("AppendIn") public function appendIn(parent:RawPointer<PGProperty>, property:RawPointer<PGProperty>):RawPointer<PGProperty>;
@:native("GetProperty") public function getProperty(name:WxString):RawPointer<PGProperty>;
@:native("SetPropertyAttribute") public function setPropertyAttribute(id:WxString, attrName:WxString, value:Bool, argFlags:Int = 0):Void;
#if (wxWidgetsVersion >= version("3.1.6"))
@:native("SetPropertyCell") public function setPropertyCell(property:RawPointer<PGProperty>, column:Int, text:WxString, bitmap:BitmapBundle, fgCol:Colour, bgCol:Colour):Void;
#end
@:native("SetPropertyBackgroundColour") public function setPropertyBackgroundColour(property:RawPointer<PGProperty>, color:Colour, flags:PGPropertyValuesFlags):Void;
@:native("ShowScrollbars") public function showScrollbars(horz:ScrollbarVisibility, vert:ScrollbarVisibility):Void;
@:native("SetPropertyReadOnly") public function setPropertyReadOnly(property:RawPointer<PGProperty>):Void;
Expand Down

0 comments on commit e2c989d

Please sign in to comment.