Lines Matching refs:barHeight

20 	this.barHeight = 30;
59 …var barHeight = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.BAR_HEIGHT, '3…
61 w = Math.max(w, 5 * barHeight);
62 h = Math.max(h, barHeight + 10);
67 this.otherShapes(c, x, y, w, h, buttonColor, frameColor, filledColor, emptyColor, barHeight);
83 ….otherShapes = function(c, x, y, w, h, buttonColor, frameColor, filledColor, emptyColor, barHeight) argument
91 var barY = h - barHeight;
123 var iconSize = barHeight * 0.3;
124 var iconY = h - (barHeight + iconSize) * 0.5;
125 var iconX = barHeight * 0.3;
138 var speakerX = barHeight;
139 var speakerY = h - barHeight;
140 c.moveTo(speakerX + barHeight * 0.05, speakerY + barHeight * 0.4);
141 c.lineTo(speakerX + barHeight * 0.15, speakerY + barHeight * 0.4);
142 c.lineTo(speakerX + barHeight * 0.3, speakerY + barHeight * 0.25);
143 c.lineTo(speakerX + barHeight * 0.3, speakerY + barHeight * 0.75);
144 c.lineTo(speakerX + barHeight * 0.15, speakerY + barHeight * 0.6);
145 c.lineTo(speakerX + barHeight * 0.05, speakerY + barHeight * 0.6);
150 c.moveTo(speakerX + barHeight * 0.4, speakerY + barHeight * 0.35);
151 …c.arcTo(barHeight * 0.2, barHeight * 0.3, 0, 0, 1, speakerX + barHeight * 0.4, speakerY + barHeigh…
152 c.moveTo(speakerX + barHeight * 0.425, speakerY + barHeight * 0.25);
153 …c.arcTo(barHeight * 0.225, barHeight * 0.35, 0, 0, 1, speakerX + barHeight * 0.425, speakerY + bar…
157 var screenX = w - barHeight * 1.3;
159 c.moveTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.4);
160 c.lineTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.3);
161 c.lineTo(screenX + barHeight * 0.25, speakerY + barHeight * 0.3);
163 c.moveTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.6);
164 c.lineTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.7);
165 c.lineTo(screenX + barHeight * 0.25, speakerY + barHeight * 0.7);
167 c.moveTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.4);
168 c.lineTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.3);
169 c.lineTo(screenX + barHeight * 0.75, speakerY + barHeight * 0.3);
171 c.moveTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.6);
172 c.lineTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.7);
173 c.lineTo(screenX + barHeight * 0.75, speakerY + barHeight * 0.7);
178 c.setFontSize(barHeight * 0.5);
180 …c.text(barHeight * 1.9, h - barHeight * 0.45, 0, 0, '0:00/3:53', mxConstants.ALIGN_LEFT, mxConstan…
191 var barH = parseFloat(mxUtils.getValue(this.state.style, 'barHeight', this.barHeight));
201 …var barHeight = Math.max(0, Math.min(bounds.height, parseFloat(mxUtils.getValue(this.state.style, …
203 return new mxPoint(bounds.x + bounds.width - 20, bounds.y + bounds.height - barHeight);