Lines Matching refs:w

32 mxShapeDFDStart.prototype.paintVertexShape = function(c, x, y, w, h)  argument
35 var r = Math.min(h * 0.5, w * 0.5);
38 c.moveTo(w - r, h * 0.5 - r);
39 c.arcTo(r, r, 0, 0, 1, w, h * 0.5);
40 c.arcTo(r, r, 0, 0, 1, w - r, h * 0.5 + r);
50 mxShapeDFDStart.prototype.getConstraints = function(style, w, h) argument
53 var r = Math.min(h * 0.5, w * 0.5);
60 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - r * 0.293, h * 0.5 - r …
61 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - r * 0.293, h * 0.5 + r …
64 if (w >= 4 * h)
102 mxShapeDFDArchive.prototype.paintVertexShape = function(c, x, y, w, h) argument
108 c.lineTo(w, 0);
109 c.lineTo(w * 0.5, h);
116 c.moveTo(w * 0.1, h * 0.2);
117 c.lineTo(w * 0.9, h * 0.2);
123 mxShapeDFDArchive.prototype.getConstraints = function(style, w, h) argument
170 mxShapeDFDCheck2.prototype.paintVertexShape = function(c, x, y, w, h) argument
173 var size = Math.min(h * 0.5, w * 0.5);
178 c.lineTo(w - size, 0);
179 c.lineTo(w, h * 0.5);
180 c.lineTo(w - size, h);
189 c.moveTo(w - size, 0);
190 c.lineTo(w - 2 * size, h * 0.5);
191 c.lineTo(w - size, h);
197 mxShapeDFDCheck2.prototype.getConstraints = function(style, w, h) argument
200 var size = Math.min(h * 0.5, w * 0.5);
207 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size * 0.5, h * 0.25));
209 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size * 0.5, h * 0.75));
211 if (w > h)
214 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size, 0));
216 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size, h));
219 if(size * 4 <= w)
257 mxShapeDFDDataStoreID.prototype.paintVertexShape = function(c, x, y, w, h) argument
260 var size = Math.min(h * 0.5, w * 0.5);
263 c.moveTo(w, h);
266 c.lineTo(w, 0);
271 var s = Math.min(30, w);
310 mxShapeDFDExternalEntity.prototype.paintVertexShape = function(c, x, y, w, h) argument
317 c.lineTo(w - size, 0);
318 c.lineTo(w, size);
319 c.lineTo(w, h);
333 c.lineTo(w - size, 0);
334 c.lineTo(w, size);
347 c.lineTo(w - size, 0);
348 c.lineTo(w, size);
349 c.lineTo(w, h);
355 c.lineTo(w, size);
363 mxShapeDFDExternalEntity.prototype.getConstraints = function(style, w, h) argument
369 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.25, 0));
370 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.5, 0));
371 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.75, 0));
372 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - size, 0));
374 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.25 + size, h…
375 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.5 + size, h)…
376 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w - size) * 0.75 + size, h…
378 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size));
379 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size + (h - size) * 0.25…
380 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size + (h - size) * 0.5)…
381 …constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w, size + (h - size) * 0.75…
417 mxShapeDFDLoop.prototype.paintVertexShape = function(c, x, y, w, h) argument
420 var r = Math.min(h * 0.8, w * 0.8);
423 c.moveTo(w - r * 0.25, 0);
424 c.arcTo(r, r, 0, 0, 1, w - r * 0.25, h);
433 mxShapeDFDLoop.prototype.getConstraints = function(style, w, h) argument
436 var r = Math.min(h * 0.8, w * 0.8);
438 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - r * 0.25, 0));
439 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, w - r * 0.25, h));