Lines Matching refs:RULER_THICKNESS

26 	var RULER_THICKNESS = this.RULER_THICKNESS;
53 container.style.top = (diagCont.offsetTop - RULER_THICKNESS) + 'px';
54 container.style.left = (diagCont.offsetLeft - RULER_THICKNESS) + 'px';
55 container.style.width = ((isVertical? 0 : diagCont.offsetWidth) + RULER_THICKNESS) + 'px';
56 container.style.height = ((isVertical? diagCont.offsetHeight : 0) + RULER_THICKNESS) + 'px';
158 …var rStart = hasPageView? RULER_THICKNESS + (isVertical? bgPages.y - graph.container.scrollTop : …
159 …: RULER_THICKNESS + (isVertical? t.y * scale - graph.container.scrollTop : t.x * scale - graph.co…
232 var oh = rStart - RULER_THICKNESS;
236 ctx.fillRect(0, RULER_THICKNESS, RULER_THICKNESS, oh);
241 ctx.fillRect(0, rEnd, RULER_THICKNESS, canvas.height);
246 var ow = rStart - RULER_THICKNESS;
250 ctx.fillRect(RULER_THICKNESS, 0, ow, RULER_THICKNESS);
255 ctx.fillRect(rEnd, 0, canvas.width, RULER_THICKNESS);
267 …if (i < RULER_THICKNESS || current == lastTick) //Prevent wasting time in drawing non-visible/dupl…
282 … drawLine(RULER_THICKNESS - tickSize[Math.abs(current) % len], i, RULER_THICKNESS, i, text);
286 … drawLine(i, RULER_THICKNESS - tickSize[Math.abs(current) % len], i, RULER_THICKNESS, text);
292 …drawLine(isVertical? 0 : RULER_THICKNESS, isVertical? RULER_THICKNESS : 0, RULER_THICKNESS, RULER_…
294 ctx.fillRect(0, 0, RULER_THICKNESS, RULER_THICKNESS);
322 var newH = div.offsetHeight + RULER_THICKNESS;
333 var newW = div.offsetWidth + RULER_THICKNESS;
441 y1 = bounds.y + ret.y + RULER_THICKNESS - this.graph.container.scrollTop;
444 x2 = RULER_THICKNESS / 2;
447 imgData1 = ctx.getImageData(x1, y1 - 1, RULER_THICKNESS, 3);
448 drawLine(x1, y1, RULER_THICKNESS, y1);
450 imgData2 = ctx.getImageData(x2, y2 - 1, RULER_THICKNESS, 3);
451 drawLine(x2, y2, RULER_THICKNESS, y2);
453 imgData3 = ctx.getImageData(x3, y3 - 1, RULER_THICKNESS, 3);
454 drawLine(x3, y3, RULER_THICKNESS, y3);
460 x1 = bounds.x + ret.x + RULER_THICKNESS - this.graph.container.scrollLeft;
461 y2 = RULER_THICKNESS / 2;
465 imgData1 = ctx.getImageData(x1 - 1, y1, 3, RULER_THICKNESS);
466 drawLine(x1, y1, x1, RULER_THICKNESS);
468 imgData2 = ctx.getImageData(x2 - 1, y2, 3, RULER_THICKNESS);
469 drawLine(x2, y2, x2, RULER_THICKNESS);
471 imgData3 = ctx.getImageData(x3 - 1, y3, 3, RULER_THICKNESS);
472 drawLine(x3, y3, x3, RULER_THICKNESS);
529 mxRuler.prototype.RULER_THICKNESS = 14; method in mxRuler
573 …var rulerOffset = new mxPoint(mxRuler.prototype.RULER_THICKNESS, mxRuler.prototype.RULER_THICKNESS