Compile Time Changes

Cleanup to LazySnapper3DButton

The adjustPicturePos method has been tweaked to remove the argument sizeI textSize

Old: extend public void adjustPicturePos(sizeI textSize=(-1, -1)) {
New: extend public void adjustPicturePos() {

Changes to ToolGroupButton

The field current has its type changed to a more generic type.

Old: public LazyBasicSnapperButton current : deprecated;
New: public Control currentButton;

The functionality to addSubButton has been adjusted to accomodate generic button.

Old: extend public void addSubButton(LazyBasicSnapperButton button) : deprecated {
New: extend public void addButton(Control button) {

Constructor changes to ToolboxSectionedScrollableSubWindow

The arguments verticalBar, horizontalBar, handScrollX, handScrollY have been removed from the constructor.

Old: public constructor(Window parent,
                        bool verticalBar=true,
                        bool horizontalBar=false, // different from parent
                        // inherited key arguments.
                        Font font=systemFont(),
                        Brush brush=null,
                        FrameStyle frameStyle=thick3DFrame,
                        frame3DState frameState=frameStateDown,
                        pointI origin=(1, 1),
                        bool selectable=true,
                        pointI pos=(0, 0),
                        sizeI size=(0, 0),
                        bool passive=false,
                        bool handScrollX=false, // different from parent
                        bool handScrollY=true,
                        bool slimScrollBars=false,
                        bool showStepButtons=false,
                        str scrollPosId=null,
                        SrcRef src=#:src) {
New: public constructor(Window parent,
                        Font font=systemFont(),
                        Brush brush=null,
                        FrameStyle frameStyle=thick3DFrame,
                        frame3DState frameState=frameStateDown,
                        pointI origin=(1, 1),
                        bool selectable=true,
                        pointI pos=(0, 0),
                        sizeI size=(0, 0),
                        bool passive=false,
                        bool slimScrollBars=false,
                        bool showStepButtons=false,
                        str scrollPosId=null,
                        SrcRef src=#:src) {

Runtime/Behavior Changes

Painter bugfixes and improvements

  • ToolboxButtonPainter now copies the margins of the painter it replaces.
  • Added new debug mode for ToolboxButtonPainter, ImagePainter, and ToolboxResizingImagePainter to visualize painter bounds.
  • ToolboxResizingImagePainter will not resize if the MemoryImage is not editable.

LazyBasicSnapperButton and its children

LazyBasicSnapperButton are buttons that generate icons automatically from its 2D graphs or 3D models, of both snappers and animations, and they are usually utilized by developers through SnapperLimb and AnimationLimb and UIHint argument prefer3D. We have done some improvements and bugfixing overall to improve the way they work under New UI.

Note: There's also a relatively new skipRenderImage param available for SnapperLimb and AnimationLimb that will skip the rendering of images from 2D graphs or 3D models, just in case your buttons started showing unwanted renderings.

LazyBasicSnapperButton 
+ extend public str cachedGfxUrl(bool ignoreReplacement=false, bool writable=false)
   Note: This replaces the dual-use of getSnapperSourceS() for naming local icon-cache file paths.

LazyAnimation2DButton 
= Constructor has added a 'facelift' argument.

LazySnapper2DButton 
= Constructor has added a 'facelift' argument.

LazySnapper3DMemoryButton 

LazySnapper3DMemoryButton

LazySnapper3DMemoryButton now uses ToolboxButtonPainter under New UI mode, this replaces the old LabelPainterEx which did not respect the New UI guidelines and margins. This new painter has a automatic resizing behavior which may impact your icons, please double check the behavior and report any discrepancies.

LazyToolbox2DButton, LazySnapper2DButton and LazyAnimation2DButton

These buttons automatically generate icons from the 2D graphs of snappers and animations (through SnapperLimb and AnimationLimb), however they do not currently work very well depending on your snapper bounds and structure. We have done some bugfixing to bounds & view centering and improvements to caching so that it adhere to the Facelift guidelines, however we discourage the use of this button type over the long term.

Other buttons

SnapperImageButton, DataSnapperImageButton 
= Constructor has added a 'facelift' argument.

cm.core.toolbox ToolboxHelpDialog

Functions like showToolboxHelp() used to create help text dialogs has been unified with the implementation in cm.core.ui.showLibHelpText(), and it is recommended to switch to that function.