Lines Matching refs:height

266 	var height = bounds.height + 2 * this.tooltipBorder;
269 Math.min(bottom - height - 20 /*status bar*/, Math.max(0, (this.editorUi.container.offsetTop +
270 this.container.offsetTop + elt.offsetTop - this.container.scrollTop - height / 2 + 16))));
383 if (maxSize && w > 0 && h > 0 && (bounds.width > w || bounds.height > h))
385 var s = Math.round(Math.min(w / bounds.width, h / bounds.height) * 100) / 100;
392 bounds.height *= s;
396 …Math.min(this.maxTooltipWidth / bounds.width, this.maxTooltipHeight / bounds.height) * 100) / 100);
406 var height = bounds.height + 2 * this.tooltipBorder;
439 height += ddy;
447 height -= 6;
448 this.tooltipTitle.style.top = (height - ddy) + 'px';
462 this.tooltip.style.height = height + 'px';
554 Sidebar.prototype.addDataEntry = function(tags, width, height, title, data) argument
558 return this.createVertexTemplateFromData(data, width, height, title);
1206 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List');
1210 …ells([sb.cloneCell(field, 'List Item')], field.geometry.width, field.geometry.height, 'List Item');
1221 …return this.createEdgeTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Curve'…
1367 …return this.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Link…
1375 …return this.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Time…
1384 …return this.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Vari…
1421 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Shape …
1516 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List');
1520 …ells([sb.cloneCell(field, 'List Item')], field.geometry.width, field.geometry.height, 'List Item');
1577 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List');
1581 …ells([sb.cloneCell(field, 'List Item')], field.geometry.width, field.geometry.height, 'List Item');
1634 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Class'…
1645 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Class …
1649 …[sb.cloneCell(field, '+ item: attribute')], field.geometry.width, field.geometry.height, 'Item 1');
1653 …var cell = new mxCell('item: attribute', new mxGeometry(0, 0, 120, field.geometry.height), 'label;…
1657 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Item 2…
1661 …exTemplateFromCells([divider.clone()], divider.geometry.width, divider.geometry.height, 'Divider');
1668 …createVertexTemplateFromCells([cell.clone()], cell.geometry.width, cell.geometry.height, 'Spacer');
1683 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Compon…
1698 …return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'Compon…
1722 …reateVertexTemplateFromCells([cell.clone()], cell.geometry.width, cell.geometry.height, 'Class 3');
1732 …reateVertexTemplateFromCells([cell.clone()], cell.geometry.width, cell.geometry.height, 'Class 4');
1743 …reateVertexTemplateFromCells([cell.clone()], cell.geometry.width, cell.geometry.height, 'Class 5');
1757 …eVertexTemplateFromCells([cell.clone()], cell.geometry.width, cell.geometry.height, 'Interface 2');
2056 Sidebar.prototype.createThumb = function(cells, width, height, parent, title, showLabel, showTitle) argument
2066 (height - 2 * this.thumbBorder) / bounds.height) * 100) / 100;
2068 Math.floor((height - bounds.height * s) / 2 / s - bounds.y));
2092 node.style.height = height + 'px';
2103 parent.style.height = (this.thumbHeight + border + this.sidebarTitleSize + 8) + 'px';
2115 div.style.height = (this.sidebarTitleSize + 12) + 'px';
2151 Sidebar.prototype.createItem = function(cells, title, showLabel, showTitle, width, height, allowCel… argument
2160 elt.style.height = (this.thumbHeight + border) + 'px';
2178 elt, title, showLabel, showTitle, width, height);
2179 var bounds = new mxRectangle(0, 0, width, height);
2184 bounds), this.createDragPreview(width, height), cells, bounds);
2196 bounds), this.createDragPreview(width, height), cells, bounds);
2207 this.showTooltip(elt, cells, bounds.width, bounds.height, title, showLabel);
2343 x - bounds.width / 2, y - bounds.height / 2,
2410 Sidebar.prototype.createDragPreview = function(width, height) argument
2415 elt.style.height = height + 'px';
2621 geo2.y = p0.y / view.scale - view.translate.y - geo2.height / 2;
2626 geo2.y = pe.y / view.scale - view.translate.y - geo2.height / 2;
2655 geo2.height = 1;
2659 geo2.height = length
2671 geo2.height = length
2672 geo2.y = geo.y + geo.height;
2673 geo2.setTerminalPoint(new mxPoint(geo2.x, geo2.y + geo2.height), false);
2686 if (!keepSize && geo2.width > 45 && geo2.height > 45 &&
2687 geo.width > 45 && geo.height > 45)
2689 geo2.width = geo2.width * (geo.height / geo2.height);
2690 geo2.height = geo.height;
2694 geo2.y = geo.y + geo.height / 2 - geo2.height / 2;
2698 geo2.y = geo2.y - geo.height / 2 - geo2.height / 2 - length;
2706 geo2.y = geo2.y + geo.height / 2 + geo2.height / 2 + length;
2724 geo2.y -= targetGeo.getCenterY() + targetGeo.height / 2;
2734 geo2.y -= targetGeo.getCenterY() - targetGeo.height / 2;
2869 arrow.style.height = img.height + 'px';
2933 this.previewElementHeight = elt.style.height;
2981 this.previewElement.style.height = currentStyleTarget.height + 'px';
3023 this.previewElement.style.height = (geo.height * view.scale) + 'px';
3035 bounds.height * view.scale / 2) + 'px';
3040 this.previewElement.style.height = this.previewElementHeight;
3133 … tmp = new mxRectangle(tmp.x - this.refreshTarget.width / 2, tmp.y - this.refreshTarget.height / 2,
3134 this.refreshTarget.width, this.refreshTarget.height);
3164 … tmp = new mxRectangle(tmp.x - this.refreshTarget.width / 2, tmp.y - this.refreshTarget.height / 2,
3165 this.refreshTarget.width, this.refreshTarget.height);
3183 p0.y - this.roundDrop.height / 2, this.roundDrop.width, this.roundDrop.height), roundSource));
3190 pe.y - this.roundDrop.height / 2,
3191 this.roundDrop.width, this.roundDrop.height), roundTarget));
3214 bds.height += handler.verticalOffset;
3227 bds.y - this.triangleUp.height, this.triangleUp.width, this.triangleUp.height), arrowUp));
3229 currentTargetState.getCenterY() - this.triangleRight.height / 2,
3230 this.triangleRight.width, this.triangleRight.height), arrowRight));
3232 bds.y + bds.height, this.triangleDown.width, this.triangleDown.height), arrowDown));
3234 currentTargetState.getCenterY() - this.triangleLeft.height / 2,
3235 this.triangleLeft.width, this.triangleLeft.height), arrowLeft));
3303 roundSource.style.top = Math.floor(p0.y - this.roundDrop.height / 2) + 'px';
3306 roundTarget.style.top = Math.floor(pe.y - this.roundDrop.height / 2) + 'px';
3339 bds.height += handler.verticalOffset;
3352 arrowUp.style.top = Math.floor(bds.y - this.triangleUp.height) + 'px';
3355 arrowRight.style.top = Math.floor(state.getCenterY() - this.triangleRight.height / 2) + 'px';
3358 arrowDown.style.top = Math.floor(bds.y + bds.height) + 'px';
3583 Sidebar.prototype.createVertexTemplateEntry = function(style, width, height, value, title, showLabe… argument
3594 return this.createVertexTemplate(style, width, height, value, title, showLabel, showTitle);
3601 Sidebar.prototype.createVertexTemplate = function(style, width, height, value, title, showLabel, sh… argument
3603 var cells = [new mxCell((value != null) ? value : '', new mxGeometry(0, 0, width, height), style)];
3606 …return this.createVertexTemplateFromCells(cells, width, height, title, showLabel, showTitle, allow…
3612 Sidebar.prototype.createVertexTemplateFromData = function(data, width, height, title, showLabel, sh… argument
3622 …return this.createVertexTemplateFromCells(cells, width, height, title, showLabel, showTitle, allow…
3628 Sidebar.prototype.createVertexTemplateFromCells = function(cells, width, height, title, showLabel, … argument
3632 …return this.createItem(cells, title, showLabel, showTitle, width, height, allowCellsInserted, show…
3638 Sidebar.prototype.createEdgeTemplateEntry = function(style, width, height, value, title, showLabel,… argument
3644 …return this.createEdgeTemplate(style, width, height, value, title, showLabel, allowCellsInserted, …
3651 Sidebar.prototype.createEdgeTemplate = function(style, width, height, value, title, showLabel, allo… argument
3653 var cell = new mxCell((value != null) ? value : '', new mxGeometry(0, 0, width, height), style);
3654 cell.geometry.setTerminalPoint(new mxPoint(0, height), true);
3659 …return this.createEdgeTemplateFromCells([cell], width, height, title, showLabel, allowCellsInserte…
3665 Sidebar.prototype.createEdgeTemplateFromCells = function(cells, width, height, title, showLabel, al… argument
3667 …(cells, title, showLabel, (showTitle != null) ? showTitle : true, width, height, allowCellsInserte…