Compile Time Changes

Changes to AxTreeView

A few changes have been made to the constructor.

  • Argument bool transparentScrollBars defaulting to false has been added
  • Argument SrcRef src defaulting to #:src has been moved to be the last argument.
Old: public constructor(Window parent,
                        // inherited key arguments
                        Font font=systemFont(),
                        Brush brush=null,
                        FrameStyle frameStyle=stdLightFrame,
                        frame3DState frameState=frameStateDown,
                        pointI pos=(0, 0),
                        sizeI size=(100, 100),
                        pointI margins=(2, 2),
                        alignment align=middle,
                        bool popup=false,
                        bool shadow=false,
                        function (Control control) callback=null,
                        bool alwaysMultiSelect=false,
                        bool allowMultiSelect=false,
                        bool directSelect=false,
                        bool listBoxStyle=false,
                        treeViewSelectionStyle selectionStyle=treeViewSelectionStyle.undefined,
                        function (Control control) click2Callback=null,
                        bool noScrollBars=false,
                        str key=null,
                        SrcRef src=#:src|,
                        // extended key arguments
                        function(TreeViewItem, int):Brush itemBackgroundCB=null) {
New: public constructor(Window parent,
                        // inherited key arguments
                        Font font=systemFont(),
                        Brush brush=null,
                        FrameStyle frameStyle=stdLightFrame,
                        frame3DState frameState=frameStateDown,
                        pointI pos=(0, 0),
                        sizeI size=(100, 100),
                        pointI margins=(2, 2),
                        alignment align=middle,
                        bool popup=false,
                        bool shadow=false,
                        function (Control control) callback=null,
                        bool alwaysMultiSelect=false,
                        bool allowMultiSelect=false,
                        bool directSelect=false,
                        bool listBoxStyle=false,
                        treeViewSelectionStyle selectionStyle=treeViewSelectionStyle.undefined,
                        function (Control control) click2Callback=null,
                        bool transparentScrollBars=false,
                        bool noScrollBars=false,
                        str key=null|,
                        // extended key arguments
                        function(TreeViewItem, int):Brush itemBackgroundCB=null,
                        SrcRef src=#:src) {

Changes to AxColumnsTreeView

Similar to AxTreeView, a few changes have been made to the constructor.

  • Argument bool transparentScrollBars defaulting to false has been added
  • Argument SrcRef src defaulting to #:src has been moved to be the last argument.
Old: public constructor(Window parent,
                        // inherited key arguments
                        Font font=systemFont(),
                        Brush brush=null,
                        FrameStyle frameStyle=stdLightFrame,
                        frame3DState frameState=frameStateDown,
                        pointI pos=(0, 0),
                        sizeI size=(100, 100),
                        pointI margins=(2, 2),
                        alignment align=middle,
                        bool popup=false,
                        bool shadow=false,
                        function (Control control) callback=null,
                        bool alwaysMultiSelect=false,
                        bool allowMultiSelect=false,
                        bool directSelect=false,
                        bool listBoxStyle=false,
                        treeViewSelectionStyle selectionStyle=treeViewSelectionStyle.undefined,
                        function (Control control) click2Callback=null,
                        bool noScrollBars=false,
                        str key=null,
                        SrcRef src=#:src,
                        function(TreeViewItem, int):Brush itemBackgroundCB=null|,
                        // extended key arguments
                        AxColumnsTVIColumnInfos infos=null,
                        AxColumnsTVIColumnHeaders headers=null) {
New: public constructor(Window parent,
                        // inherited key arguments
                        Font font=systemFont(),
                        Brush brush=null,
                        FrameStyle frameStyle=stdLightFrame,
                        frame3DState frameState=frameStateDown,
                        pointI pos=(0, 0),
                        sizeI size=(100, 100),
                        pointI margins=(2, 2),
                        alignment align=middle,
                        bool popup=false,
                        bool shadow=false,
                        function (Control control) callback=null,
                        bool alwaysMultiSelect=false,
                        bool allowMultiSelect=false,
                        bool directSelect=false,
                        bool listBoxStyle=false,
                        treeViewSelectionStyle selectionStyle=treeViewSelectionStyle.undefined,
                        function (Control control) click2Callback=null,
                        bool transparentScrollBars=false,
                        bool noScrollBars=false,
                        str key=null,
                        function(TreeViewItem, int):Brush itemBackgroundCB=null|,
                        // extended key arguments
                        AxColumnsTVIColumnInfos infos=null,
                        AxColumnsTVIColumnHeaders headers=null,
                        SrcRef src=#:src) {