Lines Matching refs:c

46 mxShapeMockupPlaybackControls.prototype.paintVertexShape = function(c, x, y, w, h)  argument
53 c.translate(x, y);
54 this.background(c, w, h, controlBarHeight);
55 c.setShadow(false);
56 this.foreground(c, w, h, controlBarHeight, buttonSize);
59 mxShapeMockupPlaybackControls.prototype.background = function(c, w, h, controlBarHeight) argument
61 c.rect(0, (h - controlBarHeight) * 0.5, w, controlBarHeight);
62 c.fillAndStroke();
65 mxShapeMockupPlaybackControls.prototype.foreground = function(c, w, h, controlBarHeight, buttonSize) argument
72 c.setStrokeColor(strokeColor2);
73 c.setFillColor(fillColor2);
74 c.ellipse(10, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
75 c.fillAndStroke();
76 c.ellipse(40, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
77 c.fillAndStroke();
78 c.ellipse(70, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
79 c.fillAndStroke();
80 c.ellipse(100, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
81 c.fillAndStroke();
82 c.ellipse(130, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
83 c.fillAndStroke();
84 c.ellipse(160, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
85 c.fillAndStroke();
86 c.ellipse(190, h * 0.5 - buttonSize * 0.5, buttonSize, buttonSize);
87 c.fillAndStroke();
90 c.setStrokeColor(strokeColor3);
91 c.setFillColor(fillColor3);
94 c.begin();
95 c.moveTo(16, t + 10);
96 c.lineTo(16, t + 20);
97 c.lineTo(18, t + 20);
98 c.lineTo(18, t + 10);
99 c.close();
100 c.moveTo(20, t + 15);
101 c.lineTo(25, t + 20);
102 c.lineTo(25, t + 10);
103 c.close();
104 c.fillAndStroke();
106 c.begin();
107 c.moveTo(44, t + 15);
108 c.lineTo(49, t + 20);
109 c.lineTo(49, t + 10);
110 c.close();
111 c.moveTo(51, t + 15);
112 c.lineTo(56, t + 20);
113 c.lineTo(56, t + 10);
114 c.close();
115 c.fillAndStroke();
117 c.begin();
118 c.moveTo(77, t + 15);
119 c.lineTo(82, t + 20);
120 c.lineTo(82, t + 10);
121 c.close();
122 c.fillAndStroke();
124 c.begin();
125 c.moveTo(108, t + 10);
126 c.lineTo(108, t + 20);
127 c.lineTo(110, t + 20);
128 c.lineTo(110, t + 10);
129 c.close();
130 c.moveTo(117, t + 15);
131 c.lineTo(112, t + 20);
132 c.lineTo(112, t + 10);
133 c.close();
134 c.fillAndStroke();
136 c.begin();
137 c.moveTo(144, t + 15);
138 c.lineTo(139, t + 20);
139 c.lineTo(139, t + 10);
140 c.close();
141 c.fillAndStroke();
143 c.begin();
144 c.moveTo(171, t + 15);
145 c.lineTo(166, t + 20);
146 c.lineTo(166, t + 10);
147 c.close();
148 c.moveTo(178, t + 15);
149 c.lineTo(173, t + 20);
150 c.lineTo(173, t + 10);
151 c.close();
152 c.fillAndStroke();
154 c.begin();
155 c.moveTo(203, t + 10);
156 c.lineTo(203, t + 20);
157 c.lineTo(205, t + 20);
158 c.lineTo(205, t + 10);
159 c.close();
160 c.moveTo(201, t + 15);
161 c.lineTo(196, t + 20);
162 c.lineTo(196, t + 10);
163 c.close();
164 c.fillAndStroke();
206 mxShapeMockupProgressBar.prototype.paintVertexShape = function(c, x, y, w, h) argument
208 c.translate(x, y);
210 this.background(c, w, h);
211 c.setShadow(false);
212 this.foreground(c, w, h);
215 mxShapeMockupProgressBar.prototype.background = function(c, w, h) argument
217 c.roundrect(0, h * 0.5 - 5, w, 10, 5, 5);
218 c.fillAndStroke();
221 mxShapeMockupProgressBar.prototype.foreground = function(c, w, h) argument
231 c.setFillColor(fillColor2);
232 c.roundrect(0, h * 0.5 - 5, truePos, 10, 5, 5);
233 c.fillAndStroke();
282 mxShapeMockupShoppingCart.prototype.paintVertexShape = function(c, x, y, w, h) argument
285 c.translate(x, y);
287 c.setStrokeWidth(3);
288 c.begin();
289 c.moveTo(w * 0.975, h * 0.025);
290 c.lineTo(w * 0.82, h * 0.055);
291 c.lineTo(w * 0.59, h * 0.66);
292 c.lineTo(w * 0.7, h * 0.765);
293 c.arcTo(w * 0.06, h * 0.06, 0, 0, 1, w * 0.665, h * 0.86);
294 c.lineTo(w * 0.05, h * 0.86);
295 c.moveTo(w * 0.74, h * 0.26);
296 c.lineTo(w * 0.03, h * 0.28);
297 c.lineTo(w * 0.065, h * 0.61);
298 c.lineTo(w * 0.59, h * 0.66);
299 c.stroke();
301 c.setStrokeWidth(1);
302 c.begin();
303 c.moveTo(w * 0.15, h * 0.28);
304 c.lineTo(w * 0.15, h * 0.62);
305 c.moveTo(w * 0.265, h * 0.275);
306 c.lineTo(w * 0.265, h * 0.63);
307 c.moveTo(w * 0.38, h * 0.27);
308 c.lineTo(w * 0.38, h * 0.64);
309 c.moveTo(w * 0.495, h * 0.265);
310 c.lineTo(w * 0.495, h * 0.65);
311 c.moveTo(w * 0.61, h * 0.265);
312 c.lineTo(w * 0.61, h * 0.61);
313 c.stroke();
315 c.begin();
316 c.moveTo(w * 0.69, h * 0.405);
317 c.lineTo(w * 0.045, h * 0.405);
318 c.moveTo(w * 0.645, h * 0.52);
319 c.lineTo(w * 0.055, h * 0.52);
320 c.stroke();
321 c.setFillColor(strokeColor);
322 c.ellipse(w * 0.075, h * 0.89, w * 0.1, h * 0.1);
323 c.fillAndStroke();
324 c.ellipse(w * 0.62, h * 0.89, w * 0.1, h * 0.1);
325 c.fillAndStroke();
374 mxShapeMockupRating.prototype.paintVertexShape = function(c, x, y, w, h) argument
380 c.translate(x, y);
386 c.begin();
387 c.moveTo(i * h * 1.5, 0.33 * h);
388 c.lineTo(i * h * 1.5 + 0.364 * h, 0.33 * h);
389 c.lineTo(i * h * 1.5 + 0.475 * h, 0);
390 c.lineTo(i * h * 1.5 + 0.586 * h, 0.33 * h);
391 c.lineTo(i * h * 1.5 + 0.95 * h, 0.33 * h);
392 c.lineTo(i * h * 1.5 + 0.66 * h, 0.551 * h);
393 c.lineTo(i * h * 1.5 + 0.775 * h, 0.9 * h);
394 c.lineTo(i * h * 1.5 + 0.475 * h, 0.684 * h);
395 c.lineTo(i * h * 1.5 + 0.175 * h, 0.9 * h);
396 c.lineTo(i * h * 1.5 + 0.29 * h, 0.551 * h);
397 c.close();
398 c.fillAndStroke();
405 c.begin();
406 c.moveTo(i * h * 1.5 + h * 0.519, h * 0.947);
407c.curveTo(i * h * 1.5 + h * 0.558, h * 0.908, i * h * 1.5 + h * 0.778, h * 0.682, i * h * 1.5 + h …
408c.curveTo(i * h * 1.5 + h * 1.039, h * 0.414, i * h * 1.5 + h * 1.036, h * 0.229, i * h * 1.5 + h …
409c.curveTo(i * h * 1.5 + h * 0.812, 0, i * h * 1.5 + h * 0.631, 0, i * h * 1.5 + h * 0.519, h * 0.1…
410c.curveTo(i * h * 1.5 + h * 0.408, 0, i * h * 1.5 + h * 0.227, 0, i * h * 1.5 + h * 0.115, h * 0.1…
411c.curveTo(i * h * 1.5 + h * 0.03, h * 0.229, i * h * 1.5, h * 0.414, i * h * 1.5 + h * 0.123, h * …
412 c.close();
413 c.fillAndStroke();
418 c.setFillColor(emptyFillColor);
424 c.begin();
425 c.moveTo(i * h * 1.5, 0.33 * h);
426 c.lineTo(i * h * 1.5 + 0.364 * h, 0.33 * h);
427 c.lineTo(i * h * 1.5 + 0.475 * h, 0);
428 c.lineTo(i * h * 1.5 + 0.586 * h, 0.33 * h);
429 c.lineTo(i * h * 1.5 + 0.95 * h, 0.33 * h);
430 c.lineTo(i * h * 1.5 + 0.66 * h, 0.551 * h);
431 c.lineTo(i * h * 1.5 + 0.775 * h, 0.9 * h);
432 c.lineTo(i * h * 1.5 + 0.475 * h, 0.684 * h);
433 c.lineTo(i * h * 1.5 + 0.175 * h, 0.9 * h);
434 c.lineTo(i * h * 1.5 + 0.29 * h, 0.551 * h);
435 c.close();
436 c.fillAndStroke();
443 c.begin();
444 c.moveTo(i * h * 1.5 + h * 0.519, h * 0.947);
445c.curveTo(i * h * 1.5 + h * 0.558, h * 0.908, i * h * 1.5 + h * 0.778, h * 0.682, i * h * 1.5 + h …
446c.curveTo(i * h * 1.5 + h * 1.039, h * 0.414, i * h * 1.5 + h * 1.036, h * 0.229, i * h * 1.5 + h …
447c.curveTo(i * h * 1.5 + h * 0.812, 0, i * h * 1.5 + h * 0.631, 0, i * h * 1.5 + h * 0.519, h * 0.1…
448c.curveTo(i * h * 1.5 + h * 0.408, 0, i * h * 1.5 + h * 0.227, 0, i * h * 1.5 + h * 0.115, h * 0.1…
449c.curveTo(i * h * 1.5 + h * 0.03, h * 0.229, i * h * 1.5, h * 0.414, i * h * 1.5 + h * 0.123, h * …
450 c.close();
451 c.fillAndStroke();
487 mxShapeMockupMail.prototype.paintVertexShape = function(c, x, y, w, h) argument
489 c.translate(x, y);
491 c.rect(0, 0, w, h);
492 c.fillAndStroke();
494 c.setShadow(false);
495 c.begin();
496 c.moveTo(0, 0);
497 c.lineTo(w * 0.5, h * 0.5);
498 c.lineTo(w, 0);
499 c.stroke();
541 mxShapeMockupVolumeSlider.prototype.paintVertexShape = function(c, x, y, w, h) argument
543 c.translate(x, y);
557 c.begin();
558 c.moveTo(speakerStartX + controlBarHeight * 0.05, speakerStartY + controlBarHeight * 0.35);
559 c.lineTo(speakerStartX + controlBarHeight * 0.15, speakerStartY + controlBarHeight * 0.35);
560 c.lineTo(speakerStartX + controlBarHeight * 0.3, speakerStartY + controlBarHeight * 0.2);
561 c.lineTo(speakerStartX + controlBarHeight * 0.3, speakerStartY + controlBarHeight * 0.8);
562 c.lineTo(speakerStartX + controlBarHeight * 0.15, speakerStartY + controlBarHeight * 0.65);
563 c.lineTo(speakerStartX + controlBarHeight * 0.05, speakerStartY + controlBarHeight * 0.65);
564 c.close();
565 c.fill();
577 c.begin();
578 c.moveTo(soundStartX + controlBarHeight * 0.4, soundStartY + controlBarHeight * 0.35);
579c.arcTo(controlBarHeight * 0.2, controlBarHeight * 0.3, 0, 0, 1, soundStartX + controlBarHeight * …
580 c.moveTo(soundStartX + controlBarHeight * 0.425, soundStartY + controlBarHeight * 0.25);
581c.arcTo(controlBarHeight * 0.225, controlBarHeight * 0.35, 0, 0, 1, soundStartX + controlBarHeight…
582 c.moveTo(soundStartX + controlBarHeight * 0.5, soundStartY + controlBarHeight * 0.2);
583c.arcTo(controlBarHeight * 0.25, controlBarHeight * 0.4, 0, 0, 1, soundStartX + controlBarHeight *…
584 c.fillAndStroke();
590c.roundrect(videoBarStartX, videoBarStartY + controlBarHeight * 0.35, videoBarEndX, controlBarHeig…
591 c.fill();
592 c.setShadow(false);
593 c.setFillColor(fillColor2);
594c.roundrect(barMin, videoBarStartY + controlBarHeight * 0.35, barEnd, controlBarHeight * 0.3, 5, 5…
595 c.fill();
598c.ellipse(barEnd - controlBarHeight * 0.25, videoBarStartY + controlBarHeight * 0.25, controlBarHe…
599 c.fillAndStroke();
649 mxShapeMockupEdit.prototype.paintVertexShape = function(c, x, y, w, h) argument
653 c.translate(x, y);
655 c.roundrect(0, 0, w, h, w * 0.05, h * 0.05);
656 c.fillAndStroke();
658 c.setShadow(false);
659 c.setFillColor(strokeColor);
660 c.begin();
661 c.moveTo(w * 0.11, h * 0.8);
662 c.lineTo(w * 0.2, h * 0.89);
663 c.lineTo(w * 0.05, h * 0.95);
664 c.close();
665 c.moveTo(w * 0.74, h * 0.16);
666 c.lineTo(w * 0.84, h * 0.26);
667 c.lineTo(w * 0.22, h * 0.88);
668 c.lineTo(w * 0.12, h * 0.78);
669 c.close();
670 c.moveTo(w * 0.755, h * 0.145);
671 c.lineTo(w * 0.82, h * 0.08);
672 c.lineTo(w * 0.92, h * 0.18);
673 c.lineTo(w * 0.855, h * 0.245);
674 c.close();
675 c.fill();
709 mxShapeMockupPrint.prototype.paintVertexShape = function(c, x, y, w, h) argument
713 c.translate(x, y);
715 c.roundrect(0, 0, w, h, w * 0.05, h * 0.05);
716 c.fillAndStroke();
718 c.setShadow(false);
719 c.setFillColor(strokeColor);
720 c.begin();
721 c.moveTo(w * 0.15, h * 0.58);
722 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.18, h * 0.55);
723 c.lineTo(w * 0.82, h * 0.55);
724 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.85, h * 0.58);
725 c.lineTo(w * 0.85, h * 0.82);
726 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.82, h * 0.85);
727 c.lineTo(w * 0.18, h * 0.85);
728 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.15, h * 0.82);
729 c.close();
730 c.moveTo(w * 0.7, h * 0.52);
731 c.lineTo(w * 0.3, h * 0.52);
732 c.lineTo(w * 0.3, h * 0.15);
733 c.lineTo(w * 0.55, h * 0.15);
734 c.lineTo(w * 0.55, h * 0.3);
735 c.lineTo(w * 0.7, h * 0.3);
736 c.close();
737 c.moveTo(w * 0.57, h * 0.15);
738 c.lineTo(w * 0.7, h * 0.28);
739 c.lineTo(w * 0.57, h * 0.28);
740 c.close();
741 c.fill();
775 mxShapeMockupShare.prototype.paintVertexShape = function(c, x, y, w, h) argument
779 c.translate(x, y);
781 c.roundrect(0, 0, w, h, w * 0.05, h * 0.05);
782 c.fillAndStroke();
784 c.setShadow(false);
785 c.setFillColor(strokeColor);
786 c.begin();
787 c.moveTo(w * 0.15, h * 0.18);
788 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.18, h * 0.15);
789 c.lineTo(w * 0.82, h * 0.15);
790 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.85, h * 0.18);
791 c.lineTo(w * 0.85, h * 0.82);
792 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.82, h * 0.85);
793 c.lineTo(w * 0.18, h * 0.85);
794 c.arcTo(w * 0.03, h * 0.03, 0, 0, 1, w * 0.15, h * 0.82);
795 c.close();
796 c.fill();
799 c.setFillColor(fillColor);
800 c.begin();
801 c.moveTo(w * 0.563, h * 0.34);
802 c.arcTo(w * 0.095, h * 0.095, 0, 1, 1, w * 0.603, h * 0.42);
803 c.lineTo(w * 0.44, h * 0.5);
804 c.lineTo(w * 0.602, h * 0.582);
805 c.arcTo(w * 0.095, h * 0.095, 0, 1, 1, w * 0.563, h * 0.653);
806 c.lineTo(w * 0.403, h * 0.575);
807 c.arcTo(w * 0.095, h * 0.095, 0, 1, 1, w * 0.4, h * 0.42);
808 c.close();
809 c.fill();
843 mxShapeMockupTrashcan.prototype.paintVertexShape = function(c, x, y, w, h) argument
847 c.translate(x, y);
849 c.roundrect(0, 0, w, h, w * 0.05, h * 0.05);
850 c.fillAndStroke();
852 c.setShadow(false);
853 c.setFillColor(strokeColor);
854 c.begin();
855 c.moveTo(w * 0.24, h * 0.24);
856 c.arcTo(w * 0.04, h * 0.04, 0, 0, 1, w * 0.24, h * 0.16);
857 c.lineTo(w * 0.4, h * 0.16);
858 c.lineTo(w * 0.4, h * 0.12);
859 c.lineTo(w * 0.6, h * 0.12);
860 c.lineTo(w * 0.6, h * 0.16);
861 c.lineTo(w * 0.76, h * 0.16);
862 c.arcTo(w * 0.04, h * 0.04, 0, 0, 1, w * 0.76, h * 0.24);
863 c.close();
864 c.fill();
866 c.roundrect(w * 0.26, h * 0.3, w * 0.1, h * 0.6, w * 0.06, h * 0.06);
867 c.fill();
868 c.roundrect(w * 0.44, h * 0.3, w * 0.1, h * 0.6, w * 0.06, h * 0.06);
869 c.fill();
870 c.roundrect(w * 0.62, h * 0.3, w * 0.1, h * 0.6, w * 0.06, h * 0.06);
871 c.fill();
905 mxShapeMockupCopyright.prototype.paintVertexShape = function(c, x, y, w, h) argument
909 c.translate(x, y);
911 c.ellipse(0, 0, w, h);
912 c.fillAndStroke();
914 c.setShadow(false);
915 c.setFillColor(strokeColor);
916 c.begin();
917 c.moveTo(w * 0.713, h * 0.288);
918 c.arcTo(w * 0.3, h * 0.3, 0, 1, 0, w * 0.713, h * 0.712);
919 c.lineTo(w * 0.784, h * 0.783);
920 c.arcTo(w * 0.4, h * 0.4, 0, 1, 1, w * 0.784, h * 0.217);
921 c.close();
922 c.fill();
957 mxShapeMockupRegistered.prototype.paintVertexShape = function(c, x, y, w, h) argument
961 c.translate(x, y);
963 c.ellipse(0, 0, w, h);
964 c.fillAndStroke();
966 c.setShadow(false);
967 c.setFillColor(strokeColor);
968 c.begin();
969 c.moveTo(w * 0.29, h * 0.9);
970 c.lineTo(w * 0.29, h * 0.09);
971 c.lineTo(w * 0.5, h * 0.09);
972 c.arcTo(w * 0.2195, h * 0.2195, 0, 0, 1, w * 0.545, h * 0.525);
973 c.lineTo(w * 0.738, h * 0.91);
974 c.lineTo(w * 0.674, h * 0.91);
975 c.lineTo(w * 0.4825, h * 0.53);
976 c.lineTo(w * 0.35, h * 0.53);
977 c.lineTo(w * 0.35, h * 0.9);
978 c.close();
979 c.moveTo(w * 0.35, h * 0.47);
980 c.lineTo(w * 0.5, h * 0.47);
981 c.arcTo(w * 0.15, h * 0.15, 0, 0, 0, w * 0.5, h * 0.15);
982 c.lineTo(w * 0.35, h * 0.15);
983 c.close();
984 c.fill();
1019 mxShapeMockupVolume.prototype.paintVertexShape = function(c, x, y, w, h) argument
1023 c.translate(x, y);
1025 c.roundrect(0, 0, w, h, w * 0.05, h * 0.05);
1026 c.fillAndStroke();
1028 c.setShadow(false);
1029 c.setFillColor(strokeColor);
1030 c.begin();
1031 c.moveTo(w * 0.1, h * 0.3);
1032 c.lineTo(w * 0.3, h * 0.3);
1033 c.lineTo(w * 0.5, h * 0.15);
1034 c.lineTo(w * 0.5, h * 0.85);
1035 c.lineTo(w * 0.3, h * 0.7);
1036 c.lineTo(w * 0.1, h * 0.7);
1037 c.close();
1038 c.fill();
1040 c.begin();
1041 c.moveTo(w * 0.6, h * 0.4);
1042 c.arcTo(w * 0.2, h * 0.2, 0, 0, 1, w * 0.6, h * 0.6);
1044 c.moveTo(w * 0.7, h * 0.3);
1045 c.arcTo(w * 0.3, h * 0.3, 0, 0, 1, w * 0.7, h * 0.7);
1047 c.moveTo(w * 0.8, h * 0.2);
1048 c.arcTo(w * 0.4, h * 0.4, 0, 0, 1, w * 0.8, h * 0.8);
1049 c.stroke();
1088 mxShapeMockupRuler.prototype.paintVertexShape = function(c, x, y, w, h) argument
1090 c.translate(x, y);
1092 this.background(c, w, h);
1093 c.setShadow(false);
1094 this.foreground(c, w, h);
1097 mxShapeMockupRuler.prototype.background = function(c, w, h) argument
1099 c.rect(0, 0, w, h);
1100 c.fillAndStroke();
1103 mxShapeMockupRuler.prototype.foreground = function(c, w, h) argument
1115 c.begin();
1123 c.moveTo(currX, h * 0.5);
1124 c.lineTo(currX, h);
1128 c.moveTo(currX, h * 0.7);
1129 c.lineTo(currX, h);
1133 c.moveTo(currX, h * 0.8);
1134 c.lineTo(currX, h);
1141 c.stroke();
1145 c.begin();
1153 c.moveTo(currX, h * 0.5);
1154 c.lineTo(currX, 0);
1158 c.moveTo(currX, h * 0.3);
1159 c.lineTo(currX, 0);
1163 c.moveTo(currX, h * 0.2);
1164 c.lineTo(currX, 0);
1171 c.stroke();
1217 mxShapeMockupRuler2.prototype.paintVertexShape = function(c, x, y, w, h) argument
1219 c.translate(x, y);
1221 this.background(c, w, h);
1222 c.setShadow(false);
1223 this.foreground(c, x, y, w, h);
1226 mxShapeMockupRuler2.prototype.background = function(c, w, h) argument
1228 c.rect(0, 0, w, h);
1229 c.fillAndStroke();
1232 mxShapeMockupRuler2.prototype.foreground = function(c, x, y, w, h) argument
1242 c.setFontColor(fontColor);
1249 c.begin();
1257 c.moveTo(currX, h - 10);
1258 c.lineTo(currX, h);
1264 c.stroke();
1270c.text(currX, (h - 10) * 0.5, 0, 0, num.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MI…
1272 c.begin();
1277 c.moveTo(currX, h - 6);
1278 c.lineTo(currX, h);
1282 c.moveTo(currX, h - 4);
1283 c.lineTo(currX, h);
1290 c.stroke();
1294 c.begin();
1302 c.moveTo(currX, 10);
1303 c.lineTo(currX, 0);
1309 c.stroke();
1315c.text(currX, (h + 10) * 0.5, 0, 0, num.toString(), mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MI…
1317 c.begin();
1322 c.moveTo(currX, 6);
1323 c.lineTo(currX, 0);
1327 c.moveTo(currX, 4);
1328 c.lineTo(currX, 0);
1335 c.stroke();
1407 mxShapeMockupRevisionTable.prototype.paintVertexShape = function(c, x, y, w, h) argument
1409 c.translate(x, y);
1411 this.background(c, w, h);
1412 c.setShadow(false);
1413 this.foreground(c, w, h);
1416 mxShapeMockupRevisionTable.prototype.background = function(c, w, h) argument
1418 c.rect(0, 0, w, h);
1419 c.fillAndStroke();
1422 mxShapeMockupRevisionTable.prototype.foreground = function(c, w, h) argument
1428 c.begin();
1429 c.moveTo(0, h * 0.33);
1430 c.lineTo(w, h * 0.33);
1431 c.moveTo(0, h * 0.67);
1432 c.lineTo(w, h * 0.67);
1433 c.moveTo(w * 0.125, h * 0.33);
1434 c.lineTo(w * 0.125, h);
1435 c.moveTo(w * 0.5, h * 0.33);
1436 c.lineTo(w * 0.5, h);
1437 c.stroke();
1439 c.setFontSize(textSize);
1440 c.setFontColor(textColor);
1442c.text(w * 0.5, h * 0.165, 0, 0, mainText[0], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, …
1443c.text(w * 0.0625, h * 0.5, 0, 0, mainText[1], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE,…
1444c.text(w * 0.3125, h * 0.5, 0, 0, mainText[2], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE,…
1445c.text(w * 0.75, h * 0.5, 0, 0, mainText[3], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0…
1446c.text(w * 0.0625, h * 0.835, 0, 0, mainText[4], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDL…
1447c.text(w * 0.3125, h * 0.835, 0, 0, mainText[5], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDL…
1448c.text(w * 0.75, h * 0.835, 0, 0, mainText[6], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE,…
1488 mxShapeMockupStatusBar.prototype.paintVertexShape = function(c, x, y, w, h) argument
1490 c.translate(x, y);
1493 this.background(c, w, h);
1494 c.setShadow(false);
1495 this.foreground(c, w, h);
1498 mxShapeMockupStatusBar.prototype.background = function(c, w, h) argument
1500 c.rect(0, h * 0.5 - 15, w, 30);
1501 c.fillAndStroke();
1504 mxShapeMockupStatusBar.prototype.foreground = function(c, w, h) argument
1512 c.setFillColor(fillColor2);
1513 c.roundrect(5, h * 0.5 - 10, (w - 75) * 0.46, 20, 5, 5);
1514 c.fill();
1516 c.roundrect(10 + (w - 75) * 0.46, h * 0.5 - 10, (w - 75) * 0.23, 20, 5, 5);
1517 c.fill();
1518 c.roundrect(15 + (w - 75) * 0.69, h * 0.5 - 10, (w - 75) * 0.276, 20, 5, 5);
1519 c.fill();
1521 c.setFontSize(textSize);
1522 c.setFontColor(textColor);
1523c.text(10, h * 0.5, 0, 0, mainText[0], mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, …
1524c.text(10 + (w - 75) * 0.575, h * 0.5, 0, 0, mainText[1], mxConstants.ALIGN_CENTER, mxConstants.AL…
1525c.text(15 + (w - 75) * 0.828, h * 0.5, 0, 0, mainText[2], mxConstants.ALIGN_CENTER, mxConstants.AL…
1527 c.setStrokeColor(strokeColor2);
1528 c.ellipse(w - 25, h * 0.5 - 10, 20, 20);
1529 c.stroke();
1530 c.begin();
1531 c.moveTo(w - 55, h * 0.5 + 10);
1532 c.lineTo(w - 35, h * 0.5 + 10);
1533 c.stroke();
1574 mxShapeMockupPin.prototype.paintVertexShape = function(c, x, y, w, h) argument
1579 c.setShadow(false);
1580 c.translate(x, y);
1582 c.setStrokeWidth(3);
1583 c.setStrokeColor('#666666');
1584 c.begin();
1585 c.moveTo(w * 0.5, h * 0.4);
1586 c.lineTo(w * 0.5, h);
1587 c.stroke();
1589 c.setStrokeWidth(2);
1590 c.setStrokeColor(strokeColor);
1591 c.setGradient(fillColor2, fillColor3, 0, 0, w, h * 0.4, mxConstants.DIRECTION_SOUTH, 1, 1);
1592 c.setAlpha(0.9);
1593 c.ellipse(0, 0, w, h * 0.4);
1594 c.fillAndStroke();
1596 c.setFillColor('#ffffff');
1597 c.setAlpha(0.5);
1598 c.ellipse(w * 0.2, h * 0.08, w * 0.3, h * 0.12);
1599 c.fill();
1638 mxShapeMockupMiscRRect.prototype.paintVertexShape = function(c, x, y, w, h) argument
1640 c.translate(x, y);
1643 c.roundrect(0, 0, w, h, rSize);
1644 c.fillAndStroke();
1675 mxShapeMockupMiscAnchor.prototype.paintVertexShape = function(c, x, y, w, h) argument