Lines Matching refs:tabH

1228 	var tabH = fontSize * 1.5;
1263 h = Math.max(h, tabH + rSize);
1267 this.background(c, w, h, rSize, tabH);
1269 …this.backTabs(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, se…
1270 …this.focusTab(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, se…
1271 …this.tabText(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, sel…
1274 mxShapeMockupHorTabBar.prototype.background = function(c, w, h, rSize, tabH) argument
1277 c.moveTo(0, tabH + rSize);
1278 c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
1279 c.lineTo(w - rSize, tabH);
1280 c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
1287 mxShapeMockupHorTabBar.prototype.backTabs = function(c, w, h, rSize, tabH, startOffset, tabOffset, … argument
1300 c.rect(currW, 0, tabW, tabH);
1305 c.moveTo(currW, tabH);
1308 c.lineTo(currW + tabW, tabH);
1313 c.moveTo(currW, tabH);
1316 c.lineTo(currW + tabW, tabH);
1321 c.moveTo(currW - rSize, tabH);
1322 c.arcTo(rSize, rSize, 0, 0, 0, currW, tabH - rSize);
1327 c.lineTo(currW + tabW, tabH - rSize);
1328 c.arcTo(rSize, rSize, 0, 0, 0, currW + tabW + rSize, tabH);
1338 mxShapeMockupHorTabBar.prototype.focusTab = function(c, w, h, rSize, tabH, startOffset, tabOffset, … argument
1356 c.moveTo(0, tabH + rSize);
1357 c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
1358 c.lineTo(currW, tabH);
1361 c.lineTo(currW + tabW, tabH);
1362 c.lineTo(w - rSize, tabH);
1363 c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
1369 c.moveTo(0, tabH + rSize);
1370 c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
1371 c.lineTo(currW, tabH);
1374 c.lineTo(currW + tabW, tabH);
1375 c.lineTo(w - rSize, tabH);
1376 c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
1382 c.moveTo(0, tabH + rSize);
1383 c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
1384 c.lineTo(currW, tabH);
1387 c.lineTo(currW + tabW, tabH);
1388 c.lineTo(w - rSize, tabH);
1389 c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
1395 c.moveTo(0, tabH + rSize);
1396 c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
1397 c.lineTo(currW - rSize, tabH);
1398 c.arcTo(rSize, rSize, 0, 0, 0, currW, tabH - rSize);
1403 c.lineTo(currW + tabW, tabH - rSize);
1404 c.arcTo(rSize, rSize, 0, 0, 0, currW + tabW + rSize, tabH);
1405 c.lineTo(w - rSize, tabH);
1406 c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
1417 mxShapeMockupHorTabBar.prototype.tabText = function(c, w, h, rSize, tabH, startOffset, tabOffset, l… argument
1444 …c.text(currW + labelOffset, tabH * 0.5, 0, 0, currLabel, mxConstants.ALIGN_LEFT, mxConstants.ALIGN…
1501 var tabH = fontSize * 1.5;
1534 h = Math.max(h, 2 * startOffset + tabCount * tabH + (tabCount - 1) * tabOffset);
1540 …this.backTabs(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidt…
1541 …this.focusTab(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidt…
1542 …this.tabText(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidth…
1558 mxShapeMockupVerTabBar.prototype.backTabs = function(c, w, h, rSize, tabH, tabW, startOffset, tabOf… argument
1570 c.rect(0, currH, tabW, tabH);
1575 c.moveTo(tabW, currH + tabH + rSize);
1576 c.arcTo(rSize, rSize, 0, 0, 0, tabW - rSize, currH + tabH);
1577 c.lineTo(rSize, currH + tabH);
1578 c.arcTo(rSize, rSize, 0, 0, 1, 0, currH + tabH - rSize);
1588 currH = currH + tabH + tabOffset;
1592 mxShapeMockupVerTabBar.prototype.focusTab = function(c, w, h, rSize, tabH, tabW, startOffset, tabOf… argument
1600 var currH = startOffset + (tabH + tabOffset) * selectedTab;
1609 c.lineTo(tabW, currH + tabH);
1610 c.lineTo(0, currH + tabH);
1622 c.lineTo(tabW, currH + tabH + rSize);
1623 c.arcTo(rSize, rSize, 0, 0, 0, tabW - rSize, currH + tabH);
1624 c.lineTo(rSize, currH + tabH);
1625 c.arcTo(rSize, rSize, 0, 0, 1, 0, currH + tabH - rSize);
1640 mxShapeMockupVerTabBar.prototype.tabText = function(c, w, h, rSize, tabH, tabW, startOffset, tabOff… argument
1665 …c.text(tabW * 0.5, currH + tabH * 0.5, 0, 0, currLabel, mxConstants.ALIGN_CENTER, mxConstants.ALIG…
1667 currH = currH + tabH + tabOffset;