From 093d501cf6cba0caa2a4944a885708bc9b3ba9e8 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Fri, 10 Aug 2018 10:22:08 +0700 Subject: [PATCH] new transformer style functions --- CHANGELOG.md | 36 +++--- konva.js | 241 ++++++++++++++++++++++++++++---------- konva.min.js | 6 +- src/Factory.js | 18 ++- src/shapes/Transformer.js | 221 +++++++++++++++++++++++++--------- 5 files changed, 382 insertions(+), 140 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9e07b0f..f90eab2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [new version][unreleased] +### Added + +* New properties for `Konva.Transformer`: `borderStroke`, `borderStrokeWidth`, `borderDash`, `anchorStroke`, `anchorStrokeWidth`, `anchorSize`. + +### Changed + +* Some properties of `Konva.Transformer` are renamed. `lineEnabled` -> `borderEnabled`. `rotateHandlerOffset` -> `rotateAnchorOffset`, `enabledHandlers` -> `enabledAnchors`. + ## [2.1.8][2018-08-01] -## Fixed +### Fixed * Some `Konva.Transformer` fixes * Typescript fixes @@ -16,33 +24,33 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [2.1.7][2018-07-03] -## Fixed +### Fixed * `toObject` fixes ## [2.1.7][2018-07-03] -## Fixed +### Fixed * Some drag&drop fixes ## [2.1.6][2018-06-16] -## Fixed +### Fixed * Removed wrong dep * Typescript fixes ## [2.1.5][2018-06-15] -## Fixed +### Fixed * Typescript fixes * add shape as second argument for `sceneFunc` and `hitFunc` ## [2.1.4][2018-06-15] -## Fixed +### Fixed * Fixed `Konva.Text` justify drawing for a text with decoration * Added methods `data()`,`setData()` and `getData()` methods to `Konva.TextPath` @@ -50,14 +58,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [2.1.3][2018-05-17] -## Fixed +### Fixed * `Konva.Transformer` automatically track shape changes * `Konva.Transformer` works with shapes with offset too ## [2.1.2][2018-05-16] -## Fixed +### Fixed * Cursor fixes for `Konva.Transformer` * Fixed lineHeight behavior for `Konva.Text` @@ -78,7 +86,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). * Fixed flow for `contextmenu` event. Now it will be triggered on shapes too * `find()` method for Containers can use a function as a parameter -## Fixed +### Fixed * some bugs fixes for `group.getClientRect()` * `Konva.Arrow` will not draw dash for pointers @@ -88,13 +96,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [2.0.2][2018-03-15] -## Fixed +### Fixed * Even more bugs fixes for `Konva.Transformer` ## [2.0.1][2018-03-15] -## Fixed +### Fixed * Several bugs fixes for `Konva.Transformer` @@ -113,7 +121,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). * stage events are slightly changed. `mousedown`, `click`, `mouseup`, `dblclick`, `touchstart`, `touchend`, `tap`, `dbltap` will be triggered when clicked on empty areas too -## Fixed +### Fixed * Some typescript fixes * Pixelate filter fixes @@ -126,13 +134,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [1.7.6][2017-11-01] -## Fixed +### Fixed * Some typescript fixes ## [1.7.4][2017-10-30] -## Fixed +### Fixed * `isBrowser` detection for electron diff --git a/konva.js b/konva.js index 4bde1302..e2d1c824 100644 --- a/konva.js +++ b/konva.js @@ -2,7 +2,7 @@ * Konva JavaScript Framework v2.1.8 * http://konvajs.github.io/ * Licensed under the MIT - * Date: Thu Aug 09 2018 + * Date: Fri Aug 10 2018 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) @@ -2311,15 +2311,23 @@ backCompat: function(constructor, methods) { Konva.Util.each(methods, function(oldMethodName, newMethodName) { var method = constructor.prototype[newMethodName]; - constructor.prototype[oldMethodName] = function() { + var oldGetter = GET + Konva.Util._capitalize(oldMethodName); + var oldSetter = SET + Konva.Util._capitalize(oldMethodName); + + function deprecated() { method.apply(this, arguments); Konva.Util.error( - oldMethodName + - ' method is deprecated and will be removed soon. Use ' + + '"' + + oldMethodName + + '" method is deprecated and will be removed soon. Use ""' + newMethodName + - ' instead' + '" instead.' ); - }; + } + + constructor.prototype[oldMethodName] = deprecated; + constructor.prototype[oldGetter] = deprecated; + constructor.prototype[oldSetter] = deprecated; }); }, afterSetFilter: function() { @@ -18712,8 +18720,14 @@ var ATTR_CHANGE_LIST = [ 'resizeEnabledChange', - 'rotateHandlerOffsetChange', - 'anchorSizeChange' + 'rotateAnchorOffsetChange', + 'enabledAnchorsChange', + 'anchorSizeChange', + 'borderEnabledChange', + 'borderStrokeChange', + 'borderStrokeWidthChange', + 'anchorStrokeChange', + 'anchorStrokeWidthChange' ].join(' '); var NODE_RECT = 'nodeRect'; @@ -18815,18 +18829,23 @@ * @param {Boolean} [config.resizeEnabled] Default is true * @param {Boolean} [config.rotateEnabled] Default is true * @param {Array} [config.rotationSnaps] Array of angles for rotation snaps. Default is [] - * @param {Number} [config.rotateHandlerOffset] Default is 50 + * @param {Number} [config.rotateAnchorOffset] Default is 50 * @param {Number} [config.padding] Default is 0 - * @param {Number} [config.lineEnabled] Should we draw border? Default is true - * @param {Boolean} [config.keepRatio] Should we keep ratio when we are moving edges? Default is true - * @param {Array} [config.enabledHandlers] Array of names of enabled handles - * @param {Function} [config.boundBoxFunc] Bounding box function + * @param {Number} [config.borderEnabled] Should we draw border? Default is true + * @param {String} [config.borderStroke] Border stroke color + * @param {Number} [config.borderStrokeWidth] Border stroke size + * @param {Array} [config.borderDash] Array for border dash. + * @param {Number} [config.anchorStroke] Anchor stroke color + * @param {Number} [config.anchorStrokeWidth] Anchor stroke size * @param {Number} [config.anchorSize] Default is 10 + * @param {Boolean} [config.keepRatio] Should we keep ratio when we are moving edges? Default is true + * @param {Array} [config.enabledAnchors] Array of names of enabled handles + * @param {Function} [config.boundBoxFunc] Bounding box function * @example * var transformer = new Konva.Transformer({ * node: rectangle, - * rotateHandlerOffset: 60, - * enabledHandlers: ['top-left', 'top-right', 'bottom-left', 'bottom-right'] + * rotateAnchorOffset: 60, + * enabledAnchors: ['top-left', 'top-right', 'bottom-left', 'bottom-right'] * }); * layer.add(transformer); */ @@ -19061,7 +19080,6 @@ _createBack: function() { var back = new Konva.Shape({ - stroke: 'rgb(0, 161, 255)', name: 'back', width: 0, height: 0, @@ -19080,7 +19098,7 @@ if (tr.rotateEnabled()) { ctx.lineTo( this.width() / 2, - -tr.rotateHandlerOffset() * Konva.Util._sign(this.height()) + -tr.rotateAnchorOffset() * Konva.Util._sign(this.height()) ); } @@ -19372,7 +19390,7 @@ var width = attrs.width; var height = attrs.height; - var enabledHandlers = this.enabledHandlers(); + var enabledAnchors = this.enabledAnchors(); var resizeEnabled = this.resizeEnabled(); var padding = this.getPadding(); @@ -19381,63 +19399,66 @@ width: anchorSize, height: anchorSize, offsetX: anchorSize / 2, - offsetY: anchorSize / 2 + offsetY: anchorSize / 2, + stroke: this.getAnchorStroke(), + strokeWidth: this.getAnchorStrokeWidth(), + fill: this.getAnchorFill() }); this.findOne('.top-left').setAttrs({ x: -padding, y: -padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('top-left') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('top-left') >= 0 }); this.findOne('.top-center').setAttrs({ x: width / 2, y: -padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('top-center') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('top-center') >= 0 }); this.findOne('.top-right').setAttrs({ x: width + padding, y: -padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('top-right') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('top-right') >= 0 }); this.findOne('.middle-left').setAttrs({ x: -padding, y: height / 2, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('middle-left') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('middle-left') >= 0 }); this.findOne('.middle-right').setAttrs({ x: width + padding, y: height / 2, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('middle-right') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('middle-right') >= 0 }); this.findOne('.bottom-left').setAttrs({ x: -padding, y: height + padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('bottom-left') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('bottom-left') >= 0 }); this.findOne('.bottom-center').setAttrs({ x: width / 2, y: height + padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('bottom-center') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('bottom-center') >= 0 }); this.findOne('.bottom-right').setAttrs({ x: width + padding, y: height + padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('bottom-right') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('bottom-right') >= 0 }); - var scaledRotateHandlerOffset = - -this.rotateHandlerOffset() * Math.abs(invertedScale.y); + var scaledRotateAnchorOffset = + -this.rotateAnchorOffset() * Math.abs(invertedScale.y); this.findOne('.rotater').setAttrs({ x: width / 2, - y: scaledRotateHandlerOffset * Konva.Util._sign(height), + y: scaledRotateAnchorOffset * Konva.Util._sign(height), scale: invertedScale, visible: this.rotateEnabled() }); @@ -19446,7 +19467,10 @@ width: width * scale.x, height: height * scale.y, scale: invertedScale, - visible: this.lineEnabled() + visible: this.borderEnabled(), + stroke: this.getBorderStroke(), + strokeWidth: this.getBorderStrokeWidth(), + dash: this.getBorderDash() }); }, /** @@ -19484,7 +19508,7 @@ function validateResizers(val) { if (!(val instanceof Array)) { - Konva.Util.warn('enabledHandlers value should be an array'); + Konva.Util.warn('enabledAnchors value should be an array'); } if (val instanceof Array) { val.forEach(function(name) { @@ -19503,21 +19527,21 @@ /** * get/set enabled handlers - * @name enabledHandlers + * @name enabledAnchors * @method * @memberof Konva.Transformer.prototype * @param {Array} array * @returns {Array} * @example * // get list of handlers - * var enabledHandlers = transformer.enabledHandlers(); + * var enabledAnchors = transformer.enabledAnchors(); * * // set handlers - * transformer.enabledHandlers(['top-left', 'top-center', 'top-right', 'middle-right', 'middle-left', 'bottom-left', 'bottom-center', 'bottom-right']); + * transformer.enabledAnchors(['top-left', 'top-center', 'top-right', 'middle-right', 'middle-left', 'bottom-left', 'bottom-center', 'bottom-right']); */ Konva.Factory.addGetterSetter( Konva.Transformer, - 'enabledHandlers', + 'enabledAnchors', RESIZERS_NAMES, validateResizers ); @@ -19537,18 +19561,6 @@ * transformer.resizeEnabled(false); */ Konva.Factory.addGetterSetter(Konva.Transformer, 'resizeEnabled', true); - - function validateAnchors(val) { - if (isNaN(val)) { - Konva.Util.warn('anchorSize value should be a Number'); - } - if (val < 10) { - Konva.Util.warn('Anchor must be a minimum of 10'); - return 10; - } - return val; - } - /** * get/set anchor size. Default is 10 * @name validateAnchors @@ -19563,12 +19575,7 @@ * // set * transformer.anchorSize(20) */ - Konva.Factory.addGetterSetter( - Konva.Transformer, - 'anchorSize', - 10, - validateAnchors - ); + Konva.Factory.addGetterSetter(Konva.Transformer, 'anchorSize', 10); /** * get/set ability to rotate. @@ -19604,35 +19611,139 @@ /** * get/set distance for rotation handler - * @name rotateHandlerOffset + * @name rotateAnchorOffset * @method * @memberof Konva.Transformer.prototype * @param {Number} offset * @returns {Number} * @example * // get - * var rotateHandlerOffset = transformer.rotateHandlerOffset(); + * var rotateAnchorOffset = transformer.rotateAnchorOffset(); * * // set - * transformer.rotateHandlerOffset(100); + * transformer.rotateAnchorOffset(100); */ - Konva.Factory.addGetterSetter(Konva.Transformer, 'rotateHandlerOffset', 50); + Konva.Factory.addGetterSetter(Konva.Transformer, 'rotateAnchorOffset', 50); /** * get/set visibility of border - * @name lineEnabled + * @name borderEnabled * @method * @memberof Konva.Transformer.prototype * @param {Boolean} enabled * @returns {Boolean} * @example * // get - * var lineEnabled = transformer.lineEnabled(); + * var borderEnabled = transformer.borderEnabled(); * * // set - * transformer.lineEnabled(false); + * transformer.borderEnabled(false); */ - Konva.Factory.addGetterSetter(Konva.Transformer, 'lineEnabled', true); + Konva.Factory.addGetterSetter(Konva.Transformer, 'borderEnabled', true); + + /** + * get/set anchor stroke color + * @name anchorStroke + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var anchorStroke = transformer.anchorStroke(); + * + * // set + * transformer.anchorStroke('red'); + */ + Konva.Factory.addGetterSetter( + Konva.Transformer, + 'anchorStroke', + 'rgb(0, 161, 255)' + ); + + /** + * get/set anchor stroke width + * @name anchorStrokeWidth + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var anchorStrokeWidth = transformer.anchorStrokeWidth(); + * + * // set + * transformer.anchorStrokeWidth(3); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'anchorStrokeWidth', 1); + + /** + * get/set anchor fill color + * @name anchorFill + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var anchorFill = transformer.anchorFill(); + * + * // set + * transformer.anchorFill('red'); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'anchorFill', 'white'); + + /** + * get/set border stroke color + * @name borderStroke + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var borderStroke = transformer.borderStroke(); + * + * // set + * transformer.borderStroke('red'); + */ + Konva.Factory.addGetterSetter( + Konva.Transformer, + 'borderStroke', + 'rgb(0, 161, 255)' + ); + + /** + * get/set border stroke width + * @name borderStrokeWidth + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var borderStrokeWidth = transformer.borderStrokeWidth(); + * + * // set + * transformer.borderStrokeWidth(3); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'borderStrokeWidth', 1); + + /** + * get/set border dash array + * @name borderDash + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var borderDash = transformer.borderDash(); + * + * // set + * transformer.borderDash([2, 2]); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'borderDash'); /** * get/set should we keep ration of resize? @@ -19689,5 +19800,11 @@ */ Konva.Factory.addGetterSetter(Konva.Transformer, 'boundBoxFunc'); + Konva.Factory.backCompat(Konva.Transformer, { + lineEnabled: 'borderEnabled', + rotateHandlerOffset: 'rotateAnchorOffset', + enabledHandlers: 'enabledAnchors' + }); + Konva.Collection.mapMethods(Konva.Transformer); })(Konva); diff --git a/konva.min.js b/konva.min.js index d9d79371..54378b98 100644 --- a/konva.min.js +++ b/konva.min.js @@ -2,14 +2,14 @@ * Konva JavaScript Framework v2.1.8 * http://konvajs.github.io/ * Licensed under the MIT - * Date: Thu Aug 09 2018 + * Date: Fri Aug 10 2018 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) * * @license */ -!function(){"use strict";var e=Math.PI/180,r={version:"2.1.8",stages:[],idCounter:0,ids:{},names:{},shapes:{},listenClickTap:!1,inDblClickWindow:!1,isBrowser:"undefined"!=typeof window&&("[object Window]"==={}.toString.call(window)||"[object global]"==={}.toString.call(window)),enableTrace:!1,traceArrMax:100,dblClickWindow:400,pixelRatio:void 0,dragDistance:3,angleDeg:!0,showWarnings:!0,Filters:{},isDragging:function(){var t=r.DD;return!!t&&t.isDragging},isDragReady:function(){var t=r.DD;return!!t&&!!t.node},_addId:function(t,e){void 0!==e&&(this.ids[e]=t)},_removeId:function(t){void 0!==t&&delete this.ids[t]},_addName:function(t,e){e&&(this.names[e]||(this.names[e]=[]),this.names[e].push(t))},_removeName:function(t,e){if(t){var n=this.names[t];if(n){for(var i=0;i>16&255,g:e>>8&255,b:255&e}},getRandomColor:function(){for(var t=(16777215*Math.random()<<0).toString(16);t.length<6;)t="0"+t;return"#"+t},get:function(t,e){return void 0===t?e:t},getRGB:function(t){var e;return t in a?{r:(e=a[t])[0],g:e[1],b:e[2]}:"#"===t[0]?this._hexToRgb(t.substring(1)):"rgb("===t.substr(0,4)?(e=r.exec(t.replace(/ /g,"")),{r:parseInt(e[1],10),g:parseInt(e[2],10),b:parseInt(e[3],10)}):{r:0,g:0,b:0}},colorToRGBA:function(t){return t=t||"black",Konva.Util._namedColorToRBA(t)||Konva.Util._hex3ColorToRGBA(t)||Konva.Util._hex6ColorToRGBA(t)||Konva.Util._rgbColorToRGBA(t)||Konva.Util._rgbaColorToRGBA(t)},_namedColorToRBA:function(t){var e=a[t.toLowerCase()];return e?{r:e[0],g:e[1],b:e[2],a:1}:null},_rgbColorToRGBA:function(t){if(0===t.indexOf("rgb(")){var e=(t=t.match(/rgb\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:1}}},_rgbaColorToRGBA:function(t){if(0===t.indexOf("rgba(")){var e=(t=t.match(/rgba\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:e[3]}}},_hex6ColorToRGBA:function(t){if("#"===t[0]&&7===t.length)return{r:parseInt(t.slice(1,3),16),g:parseInt(t.slice(3,5),16),b:parseInt(t.slice(5,7),16),a:1}},_hex3ColorToRGBA:function(t){if("#"===t[0]&&4===t.length)return{r:parseInt(t[1]+t[1],16),g:parseInt(t[2]+t[2],16),b:parseInt(t[3]+t[3],16),a:1}},_merge:function(t,e){var n=this._clone(e);for(var i in t)this._isObject(t[i])?n[i]=this._merge(t[i],n[i]):n[i]=t[i];return n},haveIntersection:function(t,e){return!(e.x>t.x+t.width||e.x+e.widtht.y+t.height||e.y+e.heighte.length){var o=e;e=t,t=o}for(i=0;i=Konva.traceArrMax&&e.shift()},reset:function(){var t=this.getCanvas().getPixelRatio();this.setTransform(1*t,0,0,1*t,0,0)},getCanvas:function(){return this.canvas},clear:function(t){var e=this.getCanvas();t?this.clearRect(t.x||0,t.y||0,t.width||0,t.height||0):this.clearRect(0,0,e.getWidth()/e.pixelRatio,e.getHeight()/e.pixelRatio)},_applyLineCap:function(t){var e=t.getLineCap();e&&this.setAttr("lineCap",e)},_applyOpacity:function(t){var e=t.getAbsoluteOpacity();1!==e&&this.setAttr("globalAlpha",e)},_applyLineJoin:function(t){var e=t.getLineJoin();e&&this.setAttr("lineJoin",e)},setAttr:function(t,e){this._context[t]=e},arc:function(){var t=arguments;this._context.arc(t[0],t[1],t[2],t[3],t[4],t[5])},beginPath:function(){this._context.beginPath()},bezierCurveTo:function(){var t=arguments;this._context.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5])},clearRect:function(){var t=arguments;this._context.clearRect(t[0],t[1],t[2],t[3])},clip:function(){this._context.clip()},closePath:function(){this._context.closePath()},createImageData:function(){var t=arguments;return 2===t.length?this._context.createImageData(t[0],t[1]):1===t.length?this._context.createImageData(t[0]):void 0},createLinearGradient:function(){var t=arguments;return this._context.createLinearGradient(t[0],t[1],t[2],t[3])},createPattern:function(){var t=arguments;return this._context.createPattern(t[0],t[1])},createRadialGradient:function(){var t=arguments;return this._context.createRadialGradient(t[0],t[1],t[2],t[3],t[4],t[5])},drawImage:function(){var t=arguments,e=this._context;3===t.length?e.drawImage(t[0],t[1],t[2]):5===t.length?e.drawImage(t[0],t[1],t[2],t[3],t[4]):9===t.length&&e.drawImage(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8])},isPointInPath:function(t,e){return this._context.isPointInPath(t,e)},fill:function(){this._context.fill()},fillRect:function(t,e,n,i){this._context.fillRect(t,e,n,i)},strokeRect:function(t,e,n,i){this._context.strokeRect(t,e,n,i)},fillText:function(){var t=arguments;this._context.fillText(t[0],t[1],t[2])},measureText:function(t){return this._context.measureText(t)},getImageData:function(){var t=arguments;return this._context.getImageData(t[0],t[1],t[2],t[3])},lineTo:function(){var t=arguments;this._context.lineTo(t[0],t[1])},moveTo:function(){var t=arguments;this._context.moveTo(t[0],t[1])},rect:function(){var t=arguments;this._context.rect(t[0],t[1],t[2],t[3])},putImageData:function(){var t=arguments;this._context.putImageData(t[0],t[1],t[2])},quadraticCurveTo:function(){var t=arguments;this._context.quadraticCurveTo(t[0],t[1],t[2],t[3])},restore:function(){this._context.restore()},rotate:function(){var t=arguments;this._context.rotate(t[0])},save:function(){this._context.save()},scale:function(){var t=arguments;this._context.scale(t[0],t[1])},setLineDash:function(){var t=arguments,e=this._context;this._context.setLineDash?e.setLineDash(t[0]):"mozDash"in e?e.mozDash=t[0]:"webkitLineDash"in e&&(e.webkitLineDash=t[0])},getLineDash:function(){return this._context.getLineDash()},setTransform:function(){var t=arguments;this._context.setTransform(t[0],t[1],t[2],t[3],t[4],t[5])},stroke:function(){this._context.stroke()},strokeText:function(){var t=arguments;this._context.strokeText(t[0],t[1],t[2])},transform:function(){var t=arguments;this._context.transform(t[0],t[1],t[2],t[3],t[4],t[5])},translate:function(){var t=arguments;this._context.translate(t[0],t[1])},_enableTrace:function(){var t,i,a=this,e=s.length,r=Konva.Util._simplifyArray,n=this.setAttr,o=function(t){var e,n=a[t];a[t]=function(){return i=r(Array.prototype.slice.call(arguments,0)),e=n.apply(a,arguments),a._trace({method:t,args:i}),e}};for(t=0;t>E,0!==b?(b=255/b,F[s]=(c*U>>E)*b,F[s+1]=(l*U>>E)*b,F[s+2]=(d*U>>E)*b):F[s]=F[s+1]=F[s+2]=0,c-=f,l-=g,d-=v,u-=p,f-=N.r,g-=N.g,v-=N.b,p-=N.a,r=h+((r=n+e+1)>E,0>E)*b,F[r+1]=(l*U>>E)*b,F[r+2]=(d*U>>E)*b):F[r]=F[r+1]=F[r+2]=0,c-=f,l-=g,d-=v,u-=p,f-=N.r,g-=N.g,v-=N.b,p-=N.a,r=n+((r=i+G)>16&255,g:e>>8&255,b:255&e}},getRandomColor:function(){for(var t=(16777215*Math.random()<<0).toString(16);t.length<6;)t="0"+t;return"#"+t},get:function(t,e){return void 0===t?e:t},getRGB:function(t){var e;return t in a?{r:(e=a[t])[0],g:e[1],b:e[2]}:"#"===t[0]?this._hexToRgb(t.substring(1)):"rgb("===t.substr(0,4)?(e=r.exec(t.replace(/ /g,"")),{r:parseInt(e[1],10),g:parseInt(e[2],10),b:parseInt(e[3],10)}):{r:0,g:0,b:0}},colorToRGBA:function(t){return t=t||"black",Konva.Util._namedColorToRBA(t)||Konva.Util._hex3ColorToRGBA(t)||Konva.Util._hex6ColorToRGBA(t)||Konva.Util._rgbColorToRGBA(t)||Konva.Util._rgbaColorToRGBA(t)},_namedColorToRBA:function(t){var e=a[t.toLowerCase()];return e?{r:e[0],g:e[1],b:e[2],a:1}:null},_rgbColorToRGBA:function(t){if(0===t.indexOf("rgb(")){var e=(t=t.match(/rgb\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:1}}},_rgbaColorToRGBA:function(t){if(0===t.indexOf("rgba(")){var e=(t=t.match(/rgba\(([^)]+)\)/)[1]).split(/ *, */).map(Number);return{r:e[0],g:e[1],b:e[2],a:e[3]}}},_hex6ColorToRGBA:function(t){if("#"===t[0]&&7===t.length)return{r:parseInt(t.slice(1,3),16),g:parseInt(t.slice(3,5),16),b:parseInt(t.slice(5,7),16),a:1}},_hex3ColorToRGBA:function(t){if("#"===t[0]&&4===t.length)return{r:parseInt(t[1]+t[1],16),g:parseInt(t[2]+t[2],16),b:parseInt(t[3]+t[3],16),a:1}},_merge:function(t,e){var n=this._clone(e);for(var i in t)this._isObject(t[i])?n[i]=this._merge(t[i],n[i]):n[i]=t[i];return n},haveIntersection:function(t,e){return!(e.x>t.x+t.width||e.x+e.widtht.y+t.height||e.y+e.heighte.length){var o=e;e=t,t=o}for(i=0;i=Konva.traceArrMax&&e.shift()},reset:function(){var t=this.getCanvas().getPixelRatio();this.setTransform(1*t,0,0,1*t,0,0)},getCanvas:function(){return this.canvas},clear:function(t){var e=this.getCanvas();t?this.clearRect(t.x||0,t.y||0,t.width||0,t.height||0):this.clearRect(0,0,e.getWidth()/e.pixelRatio,e.getHeight()/e.pixelRatio)},_applyLineCap:function(t){var e=t.getLineCap();e&&this.setAttr("lineCap",e)},_applyOpacity:function(t){var e=t.getAbsoluteOpacity();1!==e&&this.setAttr("globalAlpha",e)},_applyLineJoin:function(t){var e=t.getLineJoin();e&&this.setAttr("lineJoin",e)},setAttr:function(t,e){this._context[t]=e},arc:function(){var t=arguments;this._context.arc(t[0],t[1],t[2],t[3],t[4],t[5])},beginPath:function(){this._context.beginPath()},bezierCurveTo:function(){var t=arguments;this._context.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5])},clearRect:function(){var t=arguments;this._context.clearRect(t[0],t[1],t[2],t[3])},clip:function(){this._context.clip()},closePath:function(){this._context.closePath()},createImageData:function(){var t=arguments;return 2===t.length?this._context.createImageData(t[0],t[1]):1===t.length?this._context.createImageData(t[0]):void 0},createLinearGradient:function(){var t=arguments;return this._context.createLinearGradient(t[0],t[1],t[2],t[3])},createPattern:function(){var t=arguments;return this._context.createPattern(t[0],t[1])},createRadialGradient:function(){var t=arguments;return this._context.createRadialGradient(t[0],t[1],t[2],t[3],t[4],t[5])},drawImage:function(){var t=arguments,e=this._context;3===t.length?e.drawImage(t[0],t[1],t[2]):5===t.length?e.drawImage(t[0],t[1],t[2],t[3],t[4]):9===t.length&&e.drawImage(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8])},isPointInPath:function(t,e){return this._context.isPointInPath(t,e)},fill:function(){this._context.fill()},fillRect:function(t,e,n,i){this._context.fillRect(t,e,n,i)},strokeRect:function(t,e,n,i){this._context.strokeRect(t,e,n,i)},fillText:function(){var t=arguments;this._context.fillText(t[0],t[1],t[2])},measureText:function(t){return this._context.measureText(t)},getImageData:function(){var t=arguments;return this._context.getImageData(t[0],t[1],t[2],t[3])},lineTo:function(){var t=arguments;this._context.lineTo(t[0],t[1])},moveTo:function(){var t=arguments;this._context.moveTo(t[0],t[1])},rect:function(){var t=arguments;this._context.rect(t[0],t[1],t[2],t[3])},putImageData:function(){var t=arguments;this._context.putImageData(t[0],t[1],t[2])},quadraticCurveTo:function(){var t=arguments;this._context.quadraticCurveTo(t[0],t[1],t[2],t[3])},restore:function(){this._context.restore()},rotate:function(){var t=arguments;this._context.rotate(t[0])},save:function(){this._context.save()},scale:function(){var t=arguments;this._context.scale(t[0],t[1])},setLineDash:function(){var t=arguments,e=this._context;this._context.setLineDash?e.setLineDash(t[0]):"mozDash"in e?e.mozDash=t[0]:"webkitLineDash"in e&&(e.webkitLineDash=t[0])},getLineDash:function(){return this._context.getLineDash()},setTransform:function(){var t=arguments;this._context.setTransform(t[0],t[1],t[2],t[3],t[4],t[5])},stroke:function(){this._context.stroke()},strokeText:function(){var t=arguments;this._context.strokeText(t[0],t[1],t[2])},transform:function(){var t=arguments;this._context.transform(t[0],t[1],t[2],t[3],t[4],t[5])},translate:function(){var t=arguments;this._context.translate(t[0],t[1])},_enableTrace:function(){var t,i,a=this,e=s.length,r=Konva.Util._simplifyArray,n=this.setAttr,o=function(t){var e,n=a[t];a[t]=function(){return i=r(Array.prototype.slice.call(arguments,0)),e=n.apply(a,arguments),a._trace({method:t,args:i}),e}};for(t=0;t>E,0!==b?(b=255/b,F[s]=(c*U>>E)*b,F[s+1]=(l*U>>E)*b,F[s+2]=(d*U>>E)*b):F[s]=F[s+1]=F[s+2]=0,c-=f,l-=g,d-=v,u-=p,f-=I.r,g-=I.g,v-=I.b,p-=I.a,r=h+((r=n+e+1)>E,0>E)*b,F[r+1]=(l*U>>E)*b,F[r+2]=(d*U>>E)*b):F[r]=F[r+1]=F[r+2]=0,c-=f,l-=g,d-=v,u-=p,f-=I.r,g-=I.g,v-=I.b,p-=I.a,r=n+((r=i+G)this.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())},getTime:function(){return this._time},setPosition:function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},getPosition:function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},play:function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},reverse:function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},seek:function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},reset:function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},finish:function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},update:function(){this.setPosition(this.getPosition(this._time))},onEnterFrame:function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},pause:function(){this.state=1,this.fire("onPause")},getTimer:function(){return(new Date).getTime()}},Konva.Tween=function(t){var e,n,i=this,a=t.node,r=a._id,o=t.easing||Konva.Easings.Linear,s=!!t.yoyo;e=void 0===t.duration?1:0===t.duration?.001:t.duration,this.node=a,this._id=l++;var h=a.getLayer()||(a instanceof Konva.Stage?a.getLayers():null);for(n in h||Konva.Util.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new Konva.Animation(function(){i.tween.onEnterFrame()},h),this.tween=new d(n,function(t){i._tweenFunc(t)},o,0,1,1e3*e,s),this._addListeners(),Konva.Tween.attrs[r]||(Konva.Tween.attrs[r]={}),Konva.Tween.attrs[r][this._id]||(Konva.Tween.attrs[r][this._id]={}),Konva.Tween.tweens[r]||(Konva.Tween.tweens[r]={}),t)void 0===c[n]&&this._addAttr(n,t[n]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset},Konva.Tween.attrs={},Konva.Tween.tweens={},Konva.Tween.prototype={_addAttr:function(t,e){var n,i,a,r,o,s,h,c=this.node,l=c._id;if((a=Konva.Tween.tweens[l][t])&&delete Konva.Tween.attrs[l][a][t],n=c.getAttr(t),Konva.Util._isArray(e))for(i=[],o=Math.max(e.length,n.length),"points"===t&&e.length!==n.length&&(e.length>n.length?(h=n,n=Konva.Util._prepareArrayForTween(n,e,c.closed())):(s=e,e=Konva.Util._prepareArrayForTween(e,n,c.closed()))),r=0;r>>1,F=_.slice(0,w+1),T=this._getTextWidth(F)+y;T<=c?(K=w+1,C=F+(v?"…":""),b=T):x=w}if(!C)break;if(g){var P,A=_[C.length];0<(P=(" "===A||"-"===A)&&b<=c?C.length:Math.max(C.lastIndexOf(" "),C.lastIndexOf("-"))+1)&&(K=P,C=C.slice(0,K),b=this._getTextWidth(C))}if(this._addTextLine(C),n=Math.max(n,b),d+=i,!f||s&&le?v=Konva.Path.getPointOnLine(e,g.x,g.y,p.points[0],p.points[1],g.x,g.y):p=void 0;break;case"A":var o=p.points[4],s=p.points[5],h=p.points[4]+s;0===_?_=o+1e-8:np.pathLength?1e-8:e/p.pathLength:nthis.duration?this.yoyo?(this._time=this.duration,this.reverse()):this.finish():t<0?this.yoyo?(this._time=0,this.play()):this.reset():(this._time=t,this.update())},getTime:function(){return this._time},setPosition:function(t){this.prevPos=this._pos,this.propFunc(t),this._pos=t},getPosition:function(t){return void 0===t&&(t=this._time),this.func(t,this.begin,this._change,this.duration)},play:function(){this.state=2,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onPlay")},reverse:function(){this.state=3,this._time=this.duration-this._time,this._startTime=this.getTimer()-this._time,this.onEnterFrame(),this.fire("onReverse")},seek:function(t){this.pause(),this._time=t,this.update(),this.fire("onSeek")},reset:function(){this.pause(),this._time=0,this.update(),this.fire("onReset")},finish:function(){this.pause(),this._time=this.duration,this.update(),this.fire("onFinish")},update:function(){this.setPosition(this.getPosition(this._time))},onEnterFrame:function(){var t=this.getTimer()-this._startTime;2===this.state?this.setTime(t):3===this.state&&this.setTime(this.duration-t)},pause:function(){this.state=1,this.fire("onPause")},getTimer:function(){return(new Date).getTime()}},Konva.Tween=function(t){var e,n,i=this,a=t.node,r=a._id,o=t.easing||Konva.Easings.Linear,s=!!t.yoyo;e=void 0===t.duration?1:0===t.duration?.001:t.duration,this.node=a,this._id=l++;var h=a.getLayer()||(a instanceof Konva.Stage?a.getLayers():null);for(n in h||Konva.Util.error("Tween constructor have `node` that is not in a layer. Please add node into layer first."),this.anim=new Konva.Animation(function(){i.tween.onEnterFrame()},h),this.tween=new d(n,function(t){i._tweenFunc(t)},o,0,1,1e3*e,s),this._addListeners(),Konva.Tween.attrs[r]||(Konva.Tween.attrs[r]={}),Konva.Tween.attrs[r][this._id]||(Konva.Tween.attrs[r][this._id]={}),Konva.Tween.tweens[r]||(Konva.Tween.tweens[r]={}),t)void 0===c[n]&&this._addAttr(n,t[n]);this.reset(),this.onFinish=t.onFinish,this.onReset=t.onReset},Konva.Tween.attrs={},Konva.Tween.tweens={},Konva.Tween.prototype={_addAttr:function(t,e){var n,i,a,r,o,s,h,c=this.node,l=c._id;if((a=Konva.Tween.tweens[l][t])&&delete Konva.Tween.attrs[l][a][t],n=c.getAttr(t),Konva.Util._isArray(e))for(i=[],o=Math.max(e.length,n.length),"points"===t&&e.length!==n.length&&(e.length>n.length?(h=n,n=Konva.Util._prepareArrayForTween(n,e,c.closed())):(s=e,e=Konva.Util._prepareArrayForTween(e,n,c.closed()))),r=0;r>>1,F=_.slice(0,w+1),T=this._getTextWidth(F)+y;T<=c?(K=w+1,C=F+(v?"…":""),b=T):x=w}if(!C)break;if(g){var P,A=_[C.length];0<(P=(" "===A||"-"===A)&&b<=c?C.length:Math.max(C.lastIndexOf(" "),C.lastIndexOf("-"))+1)&&(K=P,C=C.slice(0,K),b=this._getTextWidth(C))}if(this._addTextLine(C),n=Math.max(n,b),d+=i,!f||s&&le?v=Konva.Path.getPointOnLine(e,g.x,g.y,p.points[0],p.points[1],g.x,g.y):p=void 0;break;case"A":var o=p.points[4],s=p.points[5],h=p.points[4]+s;0===_?_=o+1e-8:np.pathLength?1e-8:e/p.pathLength:n= 0 + visible: resizeEnabled && enabledAnchors.indexOf('top-left') >= 0 }); this.findOne('.top-center').setAttrs({ x: width / 2, y: -padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('top-center') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('top-center') >= 0 }); this.findOne('.top-right').setAttrs({ x: width + padding, y: -padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('top-right') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('top-right') >= 0 }); this.findOne('.middle-left').setAttrs({ x: -padding, y: height / 2, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('middle-left') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('middle-left') >= 0 }); this.findOne('.middle-right').setAttrs({ x: width + padding, y: height / 2, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('middle-right') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('middle-right') >= 0 }); this.findOne('.bottom-left').setAttrs({ x: -padding, y: height + padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('bottom-left') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('bottom-left') >= 0 }); this.findOne('.bottom-center').setAttrs({ x: width / 2, y: height + padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('bottom-center') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('bottom-center') >= 0 }); this.findOne('.bottom-right').setAttrs({ x: width + padding, y: height + padding, scale: invertedScale, - visible: resizeEnabled && enabledHandlers.indexOf('bottom-right') >= 0 + visible: resizeEnabled && enabledAnchors.indexOf('bottom-right') >= 0 }); - var scaledRotateHandlerOffset = - -this.rotateHandlerOffset() * Math.abs(invertedScale.y); + var scaledRotateAnchorOffset = + -this.rotateAnchorOffset() * Math.abs(invertedScale.y); this.findOne('.rotater').setAttrs({ x: width / 2, - y: scaledRotateHandlerOffset * Konva.Util._sign(height), + y: scaledRotateAnchorOffset * Konva.Util._sign(height), scale: invertedScale, visible: this.rotateEnabled() }); @@ -737,7 +750,10 @@ width: width * scale.x, height: height * scale.y, scale: invertedScale, - visible: this.lineEnabled() + visible: this.borderEnabled(), + stroke: this.getBorderStroke(), + strokeWidth: this.getBorderStrokeWidth(), + dash: this.getBorderDash() }); }, /** @@ -775,7 +791,7 @@ function validateResizers(val) { if (!(val instanceof Array)) { - Konva.Util.warn('enabledHandlers value should be an array'); + Konva.Util.warn('enabledAnchors value should be an array'); } if (val instanceof Array) { val.forEach(function(name) { @@ -794,21 +810,21 @@ /** * get/set enabled handlers - * @name enabledHandlers + * @name enabledAnchors * @method * @memberof Konva.Transformer.prototype * @param {Array} array * @returns {Array} * @example * // get list of handlers - * var enabledHandlers = transformer.enabledHandlers(); + * var enabledAnchors = transformer.enabledAnchors(); * * // set handlers - * transformer.enabledHandlers(['top-left', 'top-center', 'top-right', 'middle-right', 'middle-left', 'bottom-left', 'bottom-center', 'bottom-right']); + * transformer.enabledAnchors(['top-left', 'top-center', 'top-right', 'middle-right', 'middle-left', 'bottom-left', 'bottom-center', 'bottom-right']); */ Konva.Factory.addGetterSetter( Konva.Transformer, - 'enabledHandlers', + 'enabledAnchors', RESIZERS_NAMES, validateResizers ); @@ -828,18 +844,6 @@ * transformer.resizeEnabled(false); */ Konva.Factory.addGetterSetter(Konva.Transformer, 'resizeEnabled', true); - - function validateAnchors(val) { - if (isNaN(val)) { - Konva.Util.warn('anchorSize value should be a Number'); - } - if (val < 10) { - Konva.Util.warn('Anchor must be a minimum of 10'); - return 10; - } - return val; - } - /** * get/set anchor size. Default is 10 * @name validateAnchors @@ -854,12 +858,7 @@ * // set * transformer.anchorSize(20) */ - Konva.Factory.addGetterSetter( - Konva.Transformer, - 'anchorSize', - 10, - validateAnchors - ); + Konva.Factory.addGetterSetter(Konva.Transformer, 'anchorSize', 10); /** * get/set ability to rotate. @@ -895,35 +894,139 @@ /** * get/set distance for rotation handler - * @name rotateHandlerOffset + * @name rotateAnchorOffset * @method * @memberof Konva.Transformer.prototype * @param {Number} offset * @returns {Number} * @example * // get - * var rotateHandlerOffset = transformer.rotateHandlerOffset(); + * var rotateAnchorOffset = transformer.rotateAnchorOffset(); * * // set - * transformer.rotateHandlerOffset(100); + * transformer.rotateAnchorOffset(100); */ - Konva.Factory.addGetterSetter(Konva.Transformer, 'rotateHandlerOffset', 50); + Konva.Factory.addGetterSetter(Konva.Transformer, 'rotateAnchorOffset', 50); /** * get/set visibility of border - * @name lineEnabled + * @name borderEnabled * @method * @memberof Konva.Transformer.prototype * @param {Boolean} enabled * @returns {Boolean} * @example * // get - * var lineEnabled = transformer.lineEnabled(); + * var borderEnabled = transformer.borderEnabled(); * * // set - * transformer.lineEnabled(false); + * transformer.borderEnabled(false); */ - Konva.Factory.addGetterSetter(Konva.Transformer, 'lineEnabled', true); + Konva.Factory.addGetterSetter(Konva.Transformer, 'borderEnabled', true); + + /** + * get/set anchor stroke color + * @name anchorStroke + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var anchorStroke = transformer.anchorStroke(); + * + * // set + * transformer.anchorStroke('red'); + */ + Konva.Factory.addGetterSetter( + Konva.Transformer, + 'anchorStroke', + 'rgb(0, 161, 255)' + ); + + /** + * get/set anchor stroke width + * @name anchorStrokeWidth + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var anchorStrokeWidth = transformer.anchorStrokeWidth(); + * + * // set + * transformer.anchorStrokeWidth(3); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'anchorStrokeWidth', 1); + + /** + * get/set anchor fill color + * @name anchorFill + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var anchorFill = transformer.anchorFill(); + * + * // set + * transformer.anchorFill('red'); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'anchorFill', 'white'); + + /** + * get/set border stroke color + * @name borderStroke + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var borderStroke = transformer.borderStroke(); + * + * // set + * transformer.borderStroke('red'); + */ + Konva.Factory.addGetterSetter( + Konva.Transformer, + 'borderStroke', + 'rgb(0, 161, 255)' + ); + + /** + * get/set border stroke width + * @name borderStrokeWidth + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var borderStrokeWidth = transformer.borderStrokeWidth(); + * + * // set + * transformer.borderStrokeWidth(3); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'borderStrokeWidth', 1); + + /** + * get/set border dash array + * @name borderDash + * @method + * @memberof Konva.Transformer.prototype + * @param {Boolean} enabled + * @returns {Boolean} + * @example + * // get + * var borderDash = transformer.borderDash(); + * + * // set + * transformer.borderDash([2, 2]); + */ + Konva.Factory.addGetterSetter(Konva.Transformer, 'borderDash'); /** * get/set should we keep ration of resize? @@ -980,5 +1083,11 @@ */ Konva.Factory.addGetterSetter(Konva.Transformer, 'boundBoxFunc'); + Konva.Factory.backCompat(Konva.Transformer, { + lineEnabled: 'borderEnabled', + rotateHandlerOffset: 'rotateAnchorOffset', + enabledHandlers: 'enabledAnchors' + }); + Konva.Collection.mapMethods(Konva.Transformer); })(Konva);