Lines Matching refs:bounds

49 function mxShapeIOS7AppBar(bounds, fill, stroke, strokewidth)  argument
52 this.bounds = bounds;
154 function mxShapeIOS7OnOffButton(bounds, fill, stroke, strokewidth) argument
157 this.bounds = bounds;
233 function mxShapeIOS7Slider(bounds, fill, stroke, strokewidth) argument
236 this.bounds = bounds;
288 var handles = [Graph.createHandle(state, ['barPos'], function(bounds)
292 return new mxPoint(bounds.x + barPos / 100 * bounds.width, bounds.y + bounds.height / 2);
293 }, function(bounds, pt)
295 …'barPos'] = Math.round(1000 * Math.max(0, Math.min(100, (pt.x - bounds.x) * 100 / bounds.width))) …
307 function mxShapeIOS7DownloadBar(bounds, fill, stroke, strokewidth) argument
310 this.bounds = bounds;
368 var handles = [Graph.createHandle(state, ['barPos'], function(bounds)
372 return new mxPoint(bounds.x + barPos / 100 * bounds.width, bounds.y + bounds.height / 2);
373 }, function(bounds, pt)
375 …'barPos'] = Math.round(1000 * Math.max(0, Math.min(100, (pt.x - bounds.x) * 100 / bounds.width))) …
387 function mxShapeIOS7Icon(bounds, fill, stroke, strokewidth) argument
390 this.bounds = bounds;
434 function mxShapeIOS7horButtonBar(bounds, fill, stroke, strokewidth) argument
437 this.bounds = bounds;
638 function mxShapeIOS7pageControl(bounds, fill, stroke, strokewidth) argument
641 this.bounds = bounds;
687 function mxShapeIOS7iconGrid(bounds, fill, stroke, strokewidth) argument
690 this.bounds = bounds;
736 function mxShapeIOS7phone(bounds, fill, stroke, strokewidth) argument
739 this.bounds = bounds;
792 function mxShapeIOS7searchBox(bounds, fill, stroke, strokewidth) argument
795 this.bounds = bounds;
859 function mxShapeIOS7URL(bounds, fill, stroke, strokewidth) argument
862 this.bounds = bounds;
932 function mxShapeIOS7Actiondialog(bounds, fill, stroke, strokewidth) argument
935 this.bounds = bounds;
1002 function mxShapeIOS7Anchor(bounds, fill, stroke, strokewidth) argument
1005 this.bounds = bounds;
1034 function mxShapeIOS7RRect(bounds, fill, stroke, strokewidth) argument
1037 this.bounds = bounds;
1079 function mxShapeIOS7LeftButton(bounds, fill, stroke, strokewidth) argument
1082 this.bounds = bounds;
1132 function mxShapeIOS7RightButton(bounds, fill, stroke, strokewidth) argument
1135 this.bounds = bounds;
1185 function mxShapeIOS7TopButton(bounds, fill, stroke, strokewidth) argument
1188 this.bounds = bounds;
1238 function mxShapeIOS7BottomButton(bounds, fill, stroke, strokewidth) argument
1241 this.bounds = bounds;
1291 function mxShapeIOS7HorLines(bounds, fill, stroke, strokewidth) argument
1294 this.bounds = bounds;
1337 function mxShapeIOS7MarginRect(bounds, fill, stroke, strokewidth) argument
1340 this.bounds = bounds;
1414 function mxShapeIOS7Callout(bounds, fill, stroke, strokewidth) argument
1417 this.bounds = bounds;
1475 function mxShapeIOS7SelectBar(bounds, fill, stroke, strokewidth) argument
1478 this.bounds = bounds;
1577 var handles = [Graph.createHandle(state, ['dx'], function(bounds)
1579 …var dx = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'dx', th…
1581 return new mxPoint(bounds.x + dx, bounds.y + bounds.height);
1582 }, function(bounds, pt)
1585 …this.state.style['dx'] = Math.round(100 * Math.max(y, Math.min(bounds.width - y, pt.x - bounds.x))…
1588 var handle2 = Graph.createHandle(state, ['dy'], function(bounds) argument
1590 …var dy = Math.max(0, Math.min(bounds.height, parseFloat(mxUtils.getValue(this.state.style, 'dy', t…
1592 …return new mxPoint(bounds.x + parseFloat(mxUtils.getValue(this.state.style, 'dx', this.dx)), bound…
1593 }, function(bounds, pt) argument
1595 …tate.style['dy'] = Math.round(100 * Math.max(0, Math.min(bounds.height, pt.y - bounds.y - bounds.h…
1600 var handle3 = Graph.createHandle(state, ['size'], function(bounds) argument
1602 …var size = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'size'…
1604 return new mxPoint(bounds.x + bounds.width - size, bounds.y + 10);
1605 }, function(bounds, pt) argument
1607 …['size'] = Math.round(100 * Math.max(0, Math.min(bounds.width / 2, bounds.height / 2, bounds.x + b…
1612 var handle4 = Graph.createHandle(state, ['dx2'], function(bounds) argument
1614 …var dx2 = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'dx2', …
1616 return new mxPoint(bounds.x + dx2, bounds.y + bounds.height / 2);
1617 }, function(bounds, pt) argument
1619 …this.state.style['dx2'] = Math.round(100 * Math.max(0, Math.min(bounds.width, pt.x - bounds.x))) /…
1635 function mxShapeIOS7Slider2(bounds, fill, stroke, strokewidth) argument
1638 this.bounds = bounds;
1707 var handles = [Graph.createHandle(state, ['barPos'], function(bounds)
1709 …var barPos = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'bar…
1711 return new mxPoint(bounds.x + barPos * bounds.width / 100, bounds.y + bounds.height / 2);
1712 }, function(bounds, pt)
1714 …['barPos'] = Math.round(100 * Math.max(0, Math.min(100, (pt.x - bounds.x) * 100 / bounds.width))) …