Lines Matching refs:state

1182 	var fillColor = mxUtils.getValue(this.state.style, 'fillColor', '#ffffff');
1183 var strokeColor = mxUtils.getValue(this.state.style, 'strokeColor', '#000000');
1184 var gradientDir = mxUtils.getValue(this.state.style, 'gradientDirection', 'south');
1185 var rangeStyle = mxUtils.getValue(this.state.style, 'rangeStyle', 'rounded');
1186 var handleStyle = mxUtils.getValue(this.state.style, 'handleStyle', 'circle');
1256 Graph.handleFactory[mxShapeBootstrapRangeInput.prototype.cst.RANGE_INPUT] = function(state) argument
1258 var handles = [Graph.createHandle(state, ['dx'], function(bounds)
1260 … var dx = Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.state.style, 'dx', this.dx))));
1265 …this.state.style['dx'] = Math.round(100 * Math.max(0, Math.min(1, (pt.x - bounds.x) / bounds.width…
1310 var state = mxUtils.getValue(this.style, 'buttonState', true);
1311 this.background(c, x, y, w, h, state);
1313 this.foreground(c, x, y, w, h, state);
1316 mxShapeBootstrapSwitch.prototype.background = function(c, x, y, w, h, state) argument
1318 if (state == true)
1334 mxShapeBootstrapSwitch.prototype.foreground = function(c, x, y, w, h, state) argument
1338 if (state == true)
1464 Graph.handleFactory[mxShapeInfographicPopover.prototype.cst.SHAPE_POPOVER] = function(state)
1466 var handles = [Graph.createHandle(state, ['dx', 'dy'], function(bounds)
1468 …var dx = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'dx', th…
1469 …var dy = Math.max(0, Math.min(bounds.height, parseFloat(mxUtils.getValue(this.state.style, 'dy', t…
1474 …this.state.style['dx'] = Math.round(100 * Math.max(0, Math.min(bounds.width, pt.x - bounds.x))) / …
1475 …this.state.style['dy'] = Math.round(100 * Math.max(0, Math.min(bounds.height, bounds.y + bounds.he…