| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118 |
- /**
- * Copyright (c) 2006-2010, JGraph Holdings Ltd
- */
- //**********************************************************************************************************************************************************
- //Video Player
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupVideoPlayer(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- this.barPos = 20;
- this.barHeight = 30;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupVideoPlayer, mxShape);
- mxShapeMockupVideoPlayer.prototype.cst = {
- FILL_COLOR2 : 'fillColor2',
- TEXT_COLOR : 'textColor',
- STROKE_COLOR2 : 'strokeColor2',
- STROKE_COLOR3 : 'strokeColor3',
- SHAPE_VIDEO_PLAYER : 'mxgraph.mockup.containers.videoPlayer',
- BAR_POS : 'barPos',
- BAR_HEIGHT : 'barHeight'
- };
- mxShapeMockupVideoPlayer.prototype.customProperties = [
- {name: 'fillColor2', dispName: 'Fill2 Color', type: 'color', primary:true},
- {name: 'textColor', dispName: 'Text Color', type: 'color', primary:true},
- {name: 'strokeColor2', dispName: 'Stroke2 Color', type: 'color', primary:true},
- {name: 'strokeColor3', dispName: 'Stroke3 Color', type: 'color', primary:true},
- {name: 'barPos', dispName: 'Handle Position', type: 'float', min:0, max:100, defVal:20},
- {name: 'barHeight', dispName: 'Video Bar Height', type: 'float', min:0, defVal:30}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupVideoPlayer.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var buttonColor = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.FILL_COLOR2, '#c4c4c4');
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var filledColor = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.STROKE_COLOR2, '#008cff');
- var emptyColor = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.STROKE_COLOR3, '#c4c4c4');
- var barHeight = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.BAR_HEIGHT, '30');
- w = Math.max(w, 5 * barHeight);
- h = Math.max(h, barHeight + 10);
- c.translate(x, y);
- this.background(c, x, y, w, h, bgColor, frameColor);
- c.setShadow(false);
- this.otherShapes(c, x, y, w, h, buttonColor, frameColor, filledColor, emptyColor, barHeight);
- };
- mxShapeMockupVideoPlayer.prototype.background = function(c, x, y, w, h, bgColor, frameColor)
- {
- c.setFillColor(bgColor);
- c.setStrokeColor(frameColor);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- };
- mxShapeMockupVideoPlayer.prototype.otherShapes = function(c, x, y, w, h, buttonColor, frameColor, filledColor, emptyColor, barHeight)
- {
- var barPos = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.BAR_POS, '20');
- barPos = Math.max(0, barPos);
- barPos = Math.min(100, barPos);
- var strokeWidth = mxUtils.getValue(this.style, mxConstants.STYLE_STROKEWIDTH, '1');
- var buttonR = 8;
- var barY = h - barHeight;
- var barMin = buttonR;
- var barMax = w - buttonR;
- var barRange = barMax - barMin;
- var realBarPos = barRange * barPos / 100;
- var barEnd = barMin + realBarPos;
- //progress bar
- c.setStrokeColor(filledColor);
- c.begin();
- c.moveTo(0, barY);
- c.lineTo(barEnd, barY);
- c.stroke();
- c.setStrokeColor(emptyColor);
- c.begin();
- c.moveTo(barEnd, barY);
- c.lineTo(w, barY);
- c.stroke();
- //progress bar button
- c.setStrokeColor(frameColor);
- c.begin();
- c.ellipse(barEnd - buttonR, barY - buttonR, 2 * buttonR, 2 * buttonR);
- c.fillAndStroke();
- c.begin();
- c.setStrokeWidth(strokeWidth / 2);
- c.ellipse(barEnd - buttonR * 0.5, barY - buttonR * 0.5, buttonR, buttonR);
- c.fillAndStroke();
- c.setStrokeWidth(strokeWidth);
- var iconSize = barHeight * 0.3;
- var iconY = h - (barHeight + iconSize) * 0.5;
- var iconX = barHeight * 0.3;
- c.setFillColor(buttonColor);
- c.setStrokeColor(buttonColor);
- //play icon
- c.begin();
- c.moveTo(iconX, iconY);
- c.lineTo(iconX + iconSize, iconY + iconSize * 0.5);
- c.lineTo(iconX, iconY + iconSize);
- c.close();
- c.fillAndStroke();
- //volume icon
- var speakerX = barHeight;
- var speakerY = h - barHeight;
- c.moveTo(speakerX + barHeight * 0.05, speakerY + barHeight * 0.4);
- c.lineTo(speakerX + barHeight * 0.15, speakerY + barHeight * 0.4);
- c.lineTo(speakerX + barHeight * 0.3, speakerY + barHeight * 0.25);
- c.lineTo(speakerX + barHeight * 0.3, speakerY + barHeight * 0.75);
- c.lineTo(speakerX + barHeight * 0.15, speakerY + barHeight * 0.6);
- c.lineTo(speakerX + barHeight * 0.05, speakerY + barHeight * 0.6);
- c.close();
- c.fillAndStroke();
- c.begin();
- c.moveTo(speakerX + barHeight * 0.4, speakerY + barHeight * 0.35);
- c.arcTo(barHeight * 0.2, barHeight * 0.3, 0, 0, 1, speakerX + barHeight * 0.4, speakerY + barHeight * 0.65);
- c.moveTo(speakerX + barHeight * 0.425, speakerY + barHeight * 0.25);
- c.arcTo(barHeight * 0.225, barHeight * 0.35, 0, 0, 1, speakerX + barHeight * 0.425, speakerY + barHeight * 0.75);
- c.stroke();
- //fullscreen button
- var screenX = w - barHeight * 1.3;
- c.begin();
- c.moveTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.4);
- c.lineTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.3);
- c.lineTo(screenX + barHeight * 0.25, speakerY + barHeight * 0.3);
- c.moveTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.6);
- c.lineTo(screenX + barHeight * 0.1, speakerY + barHeight * 0.7);
- c.lineTo(screenX + barHeight * 0.25, speakerY + barHeight * 0.7);
- c.moveTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.4);
- c.lineTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.3);
- c.lineTo(screenX + barHeight * 0.75, speakerY + barHeight * 0.3);
- c.moveTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.6);
- c.lineTo(screenX + barHeight * 0.9, speakerY + barHeight * 0.7);
- c.lineTo(screenX + barHeight * 0.75, speakerY + barHeight * 0.7);
- c.stroke();
- var textColor = mxUtils.getValue(this.style, mxShapeMockupVideoPlayer.prototype.cst.TEXT_COLOR, '#666666');
- c.begin();
- c.setFontSize(barHeight * 0.5);
- c.setFontColor(textColor);
- c.text(barHeight * 1.9, h - barHeight * 0.45, 0, 0, '0:00/3:53', mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- };
- mxCellRenderer.registerShape(mxShapeMockupVideoPlayer.prototype.cst.SHAPE_VIDEO_PLAYER, mxShapeMockupVideoPlayer);
- Graph.handleFactory[mxShapeMockupVideoPlayer.prototype.cst.SHAPE_VIDEO_PLAYER] = function(state)
- {
- var handles = [Graph.createHandle(state, ['barPos'], function(bounds)
- {
- var barPos = Math.max(0, Math.min(100, parseFloat(mxUtils.getValue(this.state.style, 'barPos', this.barPos))));
- var barH = parseFloat(mxUtils.getValue(this.state.style, 'barHeight', this.barHeight));
- return new mxPoint(bounds.x + ((bounds.width - 16) * barPos / bounds.width) / 100 * bounds.width + 8, bounds.y + bounds.height - barH - 20);
- }, function(bounds, pt)
- {
- this.state.style['barPos'] = Math.round(1000 * Math.max(0, Math.min(100, (pt.x - bounds.x) * 100 / bounds.width))) / 1000;
- })];
- var handle2 = Graph.createHandle(state, ['barHeight'], function(bounds)
- {
- var barHeight = Math.max(0, Math.min(bounds.height, parseFloat(mxUtils.getValue(this.state.style, 'barHeight', this.barHeight))));
- return new mxPoint(bounds.x + bounds.width - 20, bounds.y + bounds.height - barHeight);
- }, function(bounds, pt)
- {
- this.state.style['barHeight'] = Math.round(1000 * Math.max(0, Math.min(bounds.height, bounds.y + bounds.height - pt.y))) / 1000;
- });
-
- handles.push(handle2);
- return handles;
- }
- //**********************************************************************************************************************************************************
- //Accordion (LEGACY)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupAccordion(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupAccordion, mxShape);
- mxShapeMockupAccordion.prototype.cst = {
- TEXT_COLOR : 'textColor',
- TEXT_COLOR2 : 'textColor2',
- TEXT_SIZE : 'textSize',
- SHAPE_ACCORDION : 'mxgraph.mockup.containers.accordion',
- STROKE_COLOR2 : 'strokeColor2',
- FILL_COLOR2 : 'fillColor2',
- SELECTED : '+', // must be 1 char
- MAIN_TEXT : 'mainText'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupAccordion.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var textStrings = mxUtils.getValue(this.style, mxShapeMockupAccordion.prototype.cst.MAIN_TEXT, '+Group 1, Group 2, Group 3').toString().split(',');
- var fontColor = mxUtils.getValue(this.style, mxShapeMockupAccordion.prototype.cst.TEXT_COLOR, '#666666');
- var selectedFontColor = mxUtils.getValue(this.style, mxShapeMockupAccordion.prototype.cst.TEXT_COLOR2, '#ffffff');
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupAccordion.prototype.cst.TEXT_SIZE, '17').toString();
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var separatorColor = mxUtils.getValue(this.style, mxShapeMockupAccordion.prototype.cst.STROKE_COLOR2, '#c4c4c4');
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var selectedFillColor = mxUtils.getValue(this.style, mxShapeMockupAccordion.prototype.cst.FILL_COLOR2, '#008cff');
- var buttonNum = textStrings.length;
- var maxButtonWidth = 0;
- var selectedButton = -1;
- var rSize = 10; //rounding size
- var labelOffset = 5;
- for (var i = 0; i < buttonNum; i++)
- {
- var buttonText = textStrings[i];
- if(buttonText.charAt(0) === mxShapeMockupAccordion.prototype.cst.SELECTED)
- {
- buttonText = textStrings[i].substring(1);
- selectedButton = i;
- }
- var currWidth = mxUtils.getSizeForString(buttonText, fontSize, mxConstants.DEFAULT_FONTFAMILY).width;
- if (currWidth > maxButtonWidth)
- {
- maxButtonWidth = currWidth;
- }
- }
- var minButtonHeight = fontSize * 1.5;
- var minH = buttonNum * minButtonHeight;
- var trueH = Math.max(h, minH);
- var minW = 2 * labelOffset + maxButtonWidth;
- var trueW = Math.max(w, minW);
- c.translate(x, y);
- this.background(c, trueW, trueH, rSize, buttonNum, labelOffset, buttonNum * minButtonHeight, frameColor, separatorColor, bgColor, selectedFillColor, selectedButton, minButtonHeight);
- c.setShadow(false);
- var currWidth = 0;
- for (var i = 0; i < buttonNum; i++)
- {
- if (i === selectedButton)
- {
- c.setFontColor(selectedFontColor);
- }
- else
- {
- c.setFontColor(fontColor);
- }
- currWidth = currWidth + labelOffset;
- var currHeight = 0;
- if (selectedButton === -1 || i <= selectedButton)
- {
- currHeight = (i * minButtonHeight + minButtonHeight * 0.5);
- }
- else
- {
- currHeight = trueH - (buttonNum - i - 0.5) * minButtonHeight;
- }
- this.buttonText(c, trueW, currHeight, textStrings[i], fontSize);
- }
- };
- mxShapeMockupAccordion.prototype.background = function(c, w, h, rSize, buttonNum, labelOffset, minH, frameColor, separatorColor, bgColor, selectedFillColor, selectedButton, minButtonHeight)
- {
- c.begin();
- //draw the frame
- c.setStrokeColor(frameColor);
- c.setFillColor(bgColor);
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- //draw the button separators
- c.setStrokeColor(separatorColor);
- c.begin();
- for (var i = 1; i < buttonNum; i++)
- {
- if (i !== selectedButton)
- {
- if (selectedButton === -1 || i < selectedButton)
- {
- var currHeight = i * minButtonHeight;
- c.moveTo(0, currHeight);
- c.lineTo(w, currHeight);
- }
- else
- {
- var currHeight = h - (buttonNum - i) * minButtonHeight;
- c.moveTo(0, currHeight);
- c.lineTo(w, currHeight);
- }
- }
- }
- c.stroke();
- //draw the selected button
- c.setStrokeColor(mxConstants.NONE);
- c.setFillColor(selectedFillColor);
- if (selectedButton !== -1)
- {
- c.begin();
- var buttonTop = minButtonHeight * selectedButton;
- var buttonBottom = minButtonHeight * (selectedButton + 1);
- c.moveTo(0, buttonTop);
- c.lineTo(w, buttonTop);
- c.lineTo(w, buttonBottom);
- c.lineTo(0, buttonBottom);
- c.close();
- c.fill();
- }
- // //draw the frame again, to achieve a nicer effect
- c.begin();
- c.setStrokeColor(frameColor);
- c.setFillColor(bgColor);
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.stroke();
- };
- mxShapeMockupAccordion.prototype.buttonText = function(c, w, h, textString, fontSize)
- {
- if(textString.charAt(0) === mxShapeMockupAccordion.prototype.cst.SELECTED)
- {
- textString = textString.substring(1);
- }
- c.begin();
- c.setFontSize(fontSize);
- c.text((w * 0.5), h, 0, 0, textString, mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- };
- mxCellRenderer.registerShape(mxShapeMockupAccordion.prototype.cst.SHAPE_ACCORDION, mxShapeMockupAccordion);
- //**********************************************************************************************************************************************************
- //Browser Window
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupBrowserWindow(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupBrowserWindow, mxShape);
- mxShapeMockupBrowserWindow.prototype.cst = {
- STROKE_COLOR2 : 'strokeColor2',
- STROKE_COLOR3 : 'strokeColor3',
- MAIN_TEXT : 'mainText',
- SHAPE_BROWSER_WINDOW : 'mxgraph.mockup.containers.browserWindow'
- };
- mxShapeMockupBrowserWindow.prototype.customProperties = [
- {name: 'strokeColor2', dispName: 'Stroke2 Color', type: 'color', primary:true},
- {name: 'strokeColor3', dispName: 'Stroke3 Color', type: 'color', primary:true}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupBrowserWindow.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var closeColor = mxUtils.getValue(this.style, mxShapeMockupBrowserWindow.prototype.cst.STROKE_COLOR2, '#008cff');
- var insideColor = mxUtils.getValue(this.style, mxShapeMockupBrowserWindow.prototype.cst.STROKE_COLOR3, '#c4c4c4');
- w = Math.max(w, 260);
- h = Math.max(h, 110);
- c.translate(x, y);
- this.background(c, x, y, w, h, bgColor, frameColor);
- c.setShadow(false);
- this.otherShapes(c, x, y, w, h, frameColor, insideColor, closeColor);
- };
- mxShapeMockupBrowserWindow.prototype.background = function(c, x, y, w, h, bgColor, frameColor)
- {
- c.setFillColor(bgColor);
- c.setStrokeColor(frameColor);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- };
- mxShapeMockupBrowserWindow.prototype.otherShapes = function(c, x, y, w, h, frameColor, insideColor, closeColor)
- {
- var strokeWidth = mxUtils.getValue(this.style, mxConstants.STYLE_STROKEWIDTH, '1');
- var mainText = mxUtils.getValue(this.style, mxShapeMockupBrowserWindow.prototype.cst.MAIN_TEXT, 'http://www.draw.io,Page 1').toString().split(',');
- //window buttons
- c.setStrokeColor(frameColor);
- c.ellipse(w - 75, 5, 20, 20);
- c.stroke();
- c.ellipse(w - 50, 5, 20, 20);
- c.stroke();
- c.setStrokeColor(closeColor);
- c.ellipse(w - 25, 5, 20, 20);
- c.stroke();
- c.setStrokeColor(insideColor);
- //lines
- c.begin();
- c.moveTo(0, 40);
- c.lineTo(30, 40);
- c.lineTo(30, 15);
- c.arcTo(5, 5, 0, 0, 1, 35, 10);
- c.lineTo(170, 10);
- c.arcTo(5, 5, 0, 0, 1, 175, 15);
- c.lineTo(175, 40);
- c.lineTo(w, 40);
- c.stroke();
- c.begin();
- c.moveTo(0, 110);
- c.lineTo(w, 110);
- c.stroke();
- //address field
- c.begin();
- c.moveTo(100, 60);
- c.arcTo(5, 5, 0, 0, 1, 105, 55);
- c.lineTo(w - 15, 55);
- c.arcTo(5, 5, 0, 0, 1, w - 10, 60);
- c.lineTo(w - 10, 85);
- c.arcTo(5, 5, 0, 0, 1, w - 15, 90);
- c.lineTo(105, 90);
- c.arcTo(5, 5, 0, 0, 1, 100, 85);
- c.close();
- c.stroke();
- //text
- var textColor = mxUtils.getValue(this.style, mxShapeMockupBrowserWindow.prototype.cst.TEXT_COLOR, '#666666');
- c.setFontColor(textColor);
- c.setFontSize(17);
- c.text(65, 25, 0, 0, mainText[1], mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- c.text(130, 73, 0, 0, mainText[0], mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- c.stroke();
- //icon on tab
- c.translate(37, 17);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(11, 0);
- c.lineTo(15, 4);
- c.lineTo(15, 18);
- c.lineTo(0, 18);
- c.close();
- c.stroke();
- c.setStrokeWidth(strokeWidth * 0.5); //maybe because of this (read later)
- c.begin();
- c.moveTo(11, 0);
- c.lineTo(11, 4);
- c.lineTo(15, 5);
- c.stroke();
- //icon in address bar
- c.setStrokeWidth(strokeWidth * 2); // i'm not sure why i have to multiply here
- c.translate(70, 47);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(11, 0);
- c.lineTo(15, 4);
- c.lineTo(15, 18);
- c.lineTo(0, 18);
- c.close();
- c.stroke();
- c.setStrokeWidth(strokeWidth * 0.5);
- c.begin();
- c.moveTo(11, 0);
- c.lineTo(11, 4);
- c.lineTo(15, 5);
- c.stroke();
- //back
- var iSi = 20; //icon size
- c.setFillColor(insideColor);
- c.begin();
- c.setStrokeWidth(strokeWidth * 2); // i'm not sure why i have to multiply here
- c.translate(-95, 0);
- c.moveTo(0, iSi * 0.5);
- c.lineTo(iSi * 0.5, 0);
- c.lineTo(iSi * 0.5, iSi * 0.3);
- c.lineTo(iSi, iSi * 0.3);
- c.lineTo(iSi, iSi * 0.7);
- c.lineTo(iSi * 0.5, iSi * 0.7);
- c.lineTo(iSi * 0.5, iSi);
- c.close();
- c.fillAndStroke();
- //forward
- c.begin();
- c.translate(30, 0);
- c.moveTo(iSi, iSi * 0.5);
- c.lineTo(iSi * 0.5, 0);
- c.lineTo(iSi * 0.5, iSi * 0.3);
- c.lineTo(0, iSi * 0.3);
- c.lineTo(0, iSi * 0.7);
- c.lineTo(iSi * 0.5, iSi * 0.7);
- c.lineTo(iSi * 0.5, iSi);
- c.close();
- c.fillAndStroke();
- //refresh
- c.begin();
- c.translate(30, 0);
- c.moveTo(iSi * 0.78, iSi * 0.665);
- c.arcTo(iSi * 0.3, iSi * 0.3, 0, 1, 1, iSi * 0.675, iSi * 0.252);
- c.lineTo(iSi * 0.595, iSi * 0.325);
- c.lineTo(iSi * 0.99, iSi * 0.415);
- c.lineTo(iSi * 0.9, iSi * 0.04);
- c.lineTo(iSi * 0.815, iSi * 0.12);
- c.arcTo(iSi * 0.49, iSi * 0.49, 0, 1, 0, iSi * 0.92, iSi * 0.8);
- c.close();
- c.fillAndStroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupBrowserWindow.prototype.cst.SHAPE_BROWSER_WINDOW, mxShapeMockupBrowserWindow);
- //**********************************************************************************************************************************************************
- //User, Male
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupUserMale(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupUserMale, mxShape);
- mxShapeMockupUserMale.prototype.cst = {
- STROKE_COLOR2 : 'strokeColor2',
- SHAPE_MALE_USER : 'mxgraph.mockup.containers.userMale'
- };
- mxShapeMockupUserMale.prototype.customProperties = [
- {name: 'strokeColor2', dispName: 'Stroke2 Color', type: 'color', primary:true}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupUserMale.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var insideColor = mxUtils.getValue(this.style, mxShapeMockupUserMale.prototype.cst.STROKE_COLOR2, '#008cff');
- c.translate(x, y);
- this.background(c, x, y, w, h, bgColor, frameColor);
- c.setShadow(false);
- this.otherShapes(c, x, y, w, h, insideColor, frameColor);
- };
- mxShapeMockupUserMale.prototype.background = function(c, x, y, w, h, bgColor, frameColor)
- {
- c.setFillColor(bgColor);
- c.setStrokeColor(frameColor);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- };
- mxShapeMockupUserMale.prototype.otherShapes = function(c, x, y, w, h, insideColor, frameColor)
- {
- //head left
- c.setStrokeColor(insideColor);
- c.setLineCap('round');
- c.setLineJoin('round');
- c.begin();
- c.moveTo(w * 0.5, h * 0.6721);
- c.curveTo(w * 0.3891, h * 0.6721, w * 0.31, h * 0.5648, w * 0.31, h * 0.3962);
- c.curveTo(w * 0.31, h * 0.3656, w * 0.3012, h * 0.3473, w * 0.3051, h * 0.3227);
- c.curveTo(w * 0.3126, h * 0.2762, w * 0.3124, h * 0.2212, w * 0.332, h * 0.1939);
- c.curveTo(w * 0.354, h * 0.1633, w * 0.4382, h * 0.12, w * 0.5, h * 0.12);
- c.stroke();
- //left ear
- c.begin();
- c.moveTo(w * 0.3046, h * 0.3716);
- c.curveTo(w * 0.3046, h * 0.3716, w * 0.3046, h * 0.341, w * 0.2826, h * 0.3594);
- c.curveTo(w * 0.2606, h * 0.3778, w * 0.2661, h * 0.4452, w * 0.266, h * 0.4452);
- c.quadTo(w * 0.2715, h * 0.4942, w * 0.277, h * 0.5065);
- c.curveTo(w * 0.2825, h * 0.5187, w * 0.277, h * 0.5187, w * 0.2935, h * 0.5371);
- c.curveTo(w * 0.31, h * 0.5554, w * 0.3375, h * 0.5615, w * 0.3375, h * 0.5616);
- c.stroke();
- // left shoulder
- c.begin();
- c.moveTo(w * 0.3829, h * 0.6213);
- c.curveTo(w * 0.3829, h * 0.6213, w * 0.405, h * 0.7704, w * 0.2921, h * 0.7888);
- c.curveTo(w * 0.2536, h * 0.795, w * 0.1328, h * 0.85, w * 0.1052, h * 0.8745);
- c.curveTo(w * 0.0776, h * 0.899, w * 0.0641, h * 0.9316, w * 0.0571, h * 0.9622);
- c.quadTo(w * 0.05, h, w * 0.05, h);
- c.stroke();
- // left hairline
- c.begin();
- c.moveTo(w * 0.3427, h * 0.4185);
- c.curveTo(w * 0.3427, h * 0.4185, w * 0.3427, h * 0.3839, w * 0.3427, h * 0.3593);
- c.curveTo(w * 0.3427, h * 0.3348, w * 0.3663, h * 0.3103, w * 0.3718, h * 0.3041);
- c.curveTo(w * 0.3773, h * 0.298, w * 0.3822, h * 0.2673, w * 0.3877, h * 0.2551);
- c.curveTo(w * 0.3932, h * 0.2429, w * 0.4095, h * 0.2429, w * 0.4259, h * 0.2367);
- c.curveTo(w * 0.4424, h * 0.2306, w * 0.4984, h * 0.2357, w * 0.4984, h * 0.2357);
- c.stroke();
- //shirt
- c.begin();
- c.moveTo(w * 0.365, h * 0.7427);
- c.curveTo(w * 0.365, h * 0.7427, w * 0.3772, h * 0.8076, w * 0.4286, h * 0.8224);
- c.curveTo(w * 0.4816, h * 0.8377, w * 0.5028, h * 0.8347, w * 0.5028, h * 0.8347);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.3322, h * 0.7764);
- c.curveTo(w * 0.3322, h * 0.7764, w * 0.3556, h * 0.8386, w * 0.4038, h * 0.8684);
- c.curveTo(w * 0.4533, h * 0.8991, w * 0.5029, h * 0.8929, w * 0.5029, h * 0.8929);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.2717, h * 0.9);
- c.lineTo(w * 0.2717, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.1671, h * 0.8991);
- c.curveTo(w * 0.1671, h * 0.8991, w * 0.1726, h * 0.9114, w * 0.1836, h * 0.9481);
- c.curveTo(w * 0.1946, h * 0.9849, w * 0.2, h, w * 0.2, h);
- c.stroke();
- //head right
- c.begin();
- c.moveTo(w * 0.5, h * 0.6721);
- c.curveTo(w * 0.6109, h * 0.6721, w * 0.69, h * 0.5648, w * 0.69, h * 0.3962);
- c.curveTo(w * 0.69, h * 0.3656, w * 0.6988, h * 0.3473, w * 0.6949, h * 0.3227);
- c.curveTo(w * 0.6847, h * 0.2762, w * 0.6876, h * 0.2212, w * 0.668, h * 0.1939);
- c.curveTo(w * 0.646, h * 0.1633, w * 0.5618, h * 0.12, w * 0.5, h * 0.12);
- c.stroke();
- //right ear
- c.begin();
- c.moveTo(w * 0.6954, h * 0.3716);
- c.curveTo(w * 0.6954, h * 0.3716, w * 0.6954, h * 0.341, w * 0.7174, h * 0.3594);
- c.curveTo(w * 0.7394, h * 0.3778, w * 0.7339, h * 0.4452, w * 0.734, h * 0.4452);
- c.quadTo(w * 0.7285, h * 0.4942, w * 0.723, h * 0.5065);
- c.curveTo(w * 0.7175, h * 0.5187, w * 0.723, h * 0.5187, w * 0.7065, h * 0.5371);
- c.curveTo(w * 0.69, h * 0.5554, w * 0.6625, h * 0.5615, w * 0.6625, h * 0.5616);
- c.stroke();
- // right shoulder
- c.begin();
- c.moveTo(w * 0.6171, h * 0.6213);
- c.curveTo(w * 0.6171, h * 0.6213, w * 0.595, h * 0.7704, w * 0.7079, h * 0.7888);
- c.curveTo(w * 0.7464, h * 0.795, w * 0.8672, h * 0.85, w * 0.8948, h * 0.8745);
- c.curveTo(w * 0.9224, h * 0.899, w * 0.9359, h * 0.9316, w * 0.9429, h * 0.9622);
- c.quadTo(w * 0.95, h, w * 0.95, h);
- c.stroke();
- // right hairline
- c.begin();
- c.moveTo(w * 0.6573, h * 0.4185);
- c.curveTo(w * 0.6573, h * 0.4185, w * 0.6573, h * 0.3839, w * 0.6573, h * 0.3593);
- c.curveTo(w * 0.6573, h * 0.3348, w * 0.6337, h * 0.3103, w * 0.6282, h * 0.3041);
- c.curveTo(w * 0.6227, h * 0.298, w * 0.6178, h * 0.2673, w * 0.6123, h * 0.2551);
- c.curveTo(w * 0.6068, h * 0.2429, w * 0.5905, h * 0.2429, w * 0.5741, h * 0.2367);
- c.curveTo(w * 0.5576, h * 0.2306, w * 0.5016, h * 0.2357, w * 0.5016, h * 0.2357);
- c.stroke();
- //shirt, right
- c.begin();
- c.moveTo(w * 0.635, h * 0.7427);
- c.curveTo(w * 0.635, h * 0.7427, w * 0.6228, h * 0.8076, w * 0.5714, h * 0.8224);
- c.curveTo(w * 0.5184, h * 0.8377, w * 0.4972, h * 0.8347, w * 0.4972, h * 0.8347);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.6678, h * 0.7764);
- c.curveTo(w * 0.6678, h * 0.7764, w * 0.6444, h * 0.8386, w * 0.5962, h * 0.8684);
- c.curveTo(w * 0.5467, h * 0.8991, w * 0.4971, h * 0.8929, w * 0.4971, h * 0.8929);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.7283, h * 0.9);
- c.lineTo(w * 0.7283, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.8329, h * 0.8991);
- c.curveTo(w * 0.8329, h * 0.8991, w * 0.8274, h * 0.9114, w * 0.8164, h * 0.9481);
- c.curveTo(w * 0.8054, h * 0.9849, w * 0.8, h, w * 0.8, h);
- c.stroke();
- c.setStrokeColor(frameColor);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.stroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupUserMale.prototype.cst.SHAPE_MALE_USER, mxShapeMockupUserMale);
- //**********************************************************************************************************************************************************
- //User, Female
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupUserFemale(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupUserFemale, mxShape);
- mxShapeMockupUserFemale.prototype.cst = {
- STROKE_COLOR2 : 'strokeColor2',
- SHAPE_FEMALE_USER : 'mxgraph.mockup.containers.userFemale'
- };
- mxShapeMockupUserFemale.prototype.customProperties = [
- {name: 'strokeColor2', dispName: 'Stroke2 Color', type: 'color', primary:true}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupUserFemale.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var insideColor = mxUtils.getValue(this.style, mxShapeMockupUserFemale.prototype.cst.STROKE_COLOR2, '#008cff');
- c.translate(x, y);
- this.background(c, x, y, w, h, bgColor, frameColor);
- c.setShadow(false);
- this.otherShapes(c, x, y, w, h, insideColor, frameColor);
- };
- mxShapeMockupUserFemale.prototype.background = function(c, x, y, w, h, bgColor, frameColor)
- {
- c.setFillColor(bgColor);
- c.setStrokeColor(frameColor);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- };
- mxShapeMockupUserFemale.prototype.otherShapes = function(c, x, y, w, h, insideColor, frameColor)
- {
- //head left
- c.setStrokeColor(insideColor);
- c.setLineCap('round');
- c.setLineJoin('round');
- c.begin();
- c.moveTo(w * 0.3148, h * 0.468);
- c.curveTo(w * 0.3045, h * 0.3195, w * 0.3176, h * 0.2383, w * 0.3302, h * 0.2069);
- c.curveTo(w * 0.3508, h * 0.1557, w * 0.44, h * 0.1156, w * 0.5026, h * 0.1156);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.5029, h * 0.6728);
- c.curveTo(w * 0.4616, h * 0.6728, w * 0.4018, h * 0.6177, w * 0.3663, h * 0.5653);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.3108, h * 0.4021);
- c.curveTo(w * 0.3108, h * 0.4021, w * 0.3091, h * 0.3765, w * 0.2891, h * 0.3933);
- c.curveTo(w * 0.2691, h * 0.4101, w * 0.2782, h * 0.4661, w * 0.2782, h * 0.4661);
- c.quadTo(w * 0.2862, h * 0.5067, w * 0.2922, h * 0.5166);
- c.curveTo(w * 0.2982, h * 0.5265, w * 0.2929, h * 0.5268, w * 0.3097, h * 0.5412);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.4038, h * 0.6176);
- c.curveTo(w * 0.4038, h * 0.6176, w * 0.4324, h * 0.7778, w * 0.3375, h * 0.7963);
- c.curveTo(w * 0.3054, h * 0.8026, w * 0.1753, h * 0.8578, w * 0.15, h * 0.8826);
- c.curveTo(w * 0.1247, h * 0.9074, w * 0.1126, h * 0.9412, w * 0.1063, h * 0.9722);
- c.curveTo(w * 0.10, h * 1.0032, w * 0.1, h, w * 0.1, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.6377, h * 0.3365);
- c.curveTo(w * 0.5927, h * 0.2634, w * 0.5206, h * 0.2634, w * 0.5206, h * 0.2634);
- c.quadTo(w * 0.3769, h * 0.2591, w * 0.3713, h * 0.2659);
- c.curveTo(w * 0.3657, h * 0.2727, w * 0.3405, h * 0.3674, w * 0.3405, h * 0.3946);
- c.curveTo(w * 0.3405, h * 0.4218, w * 0.3405, h * 0.4602, w * 0.3405, h * 0.4602);
- c.quadTo(w * 0.3546, h * 0.6401, w * 0.3546, h * 0.6626);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.2931, h * 0.818);
- c.curveTo(w * 0.2931, h * 0.818, w * 0.3224, h * 0.9159, w * 0.3826, h * 0.9677);
- c.curveTo(w * 0.4446, h * 1.01, w * 0.5065, h, w * 0.5065, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.2995, h * 0.9106);
- c.lineTo(w * 0.2995, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.2081, h * 0.907);
- c.curveTo(w * 0.2081, h * 0.907, w * 0.2131, h * 0.9194, w * 0.2232, h * 0.9565);
- c.curveTo(w * 0.2333, h * 0.9936, w * 0.24, h, w * 0.24, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.6951, h * 0.4988);
- c.curveTo(w * 0.6951, h * 0.4662, w * 0.7042, h * 0.3453, w * 0.7, h * 0.32);
- c.curveTo(w * 0.6923, h * 0.273, w * 0.6926, h * 0.2175, w * 0.6727, h * 0.19);
- c.curveTo(w * 0.6504, h * 0.159, w * 0.5651, h * 0.1157, w * 0.5025, h * 0.1157);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.5029, h * 0.6728);
- c.curveTo(w * 0.5546, h * 0.6728, w * 0.6107, h * 0.6316, w * 0.6461, h * 0.5602);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.696, h * 0.4022);
- c.curveTo(w * 0.696, h * 0.4022, w * 0.6983, h * 0.3766, w * 0.7179, h * 0.4106);
- c.curveTo(w * 0.7375, h * 0.4278, w * 0.7273, h * 0.4836, w * 0.7273, h * 0.4836);
- c.quadTo(w * 0.7184, h * 0.5241, w * 0.7123, h * 0.5338);
- c.curveTo(w * 0.7062, h * 0.5436, w * 0.7114, h * 0.544, w * 0.6943, h * 0.558);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.5995, h * 0.6278);
- c.curveTo(w * 0.5995, h * 0.6278, w * 0.5724, h * 0.7777, w * 0.6663, h * 0.7963);
- c.curveTo(w * 0.6984, h * 0.8026, w * 0.8386, h * 0.8578, w * 0.8638, h * 0.8826);
- c.curveTo(w * 0.8891, h * 0.9074, w * 0.9016, h * 0.9412, w * 0.9079, h * 0.9722);
- c.curveTo(w * 0.9142, h * 1.0032, w * 0.91, h, w * 0.91, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.6545, h * 0.6802);
- c.lineTo(w * 0.6545, h * 0.3986);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.7132, h * 0.8078);
- c.curveTo(w * 0.7132, h * 0.8078, w * 0.6839, h * 0.916, w * 0.6237, h * 0.9678);
- c.curveTo(w * 0.5617, h * 1.01, w * 0.4998, h, w * 0.4998, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.7111, h * 0.9106);
- c.lineTo(w * 0.7111, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.8075, h * 0.907);
- c.curveTo(w * 0.8075, h * 0.907, w * 0.8025, h * 0.9194, w * 0.7924, h * 0.9565);
- c.curveTo(w * 0.7823, h * 0.9936, w * 0.775, h, w * 0.775, h);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.3148, h * 0.5448);
- c.curveTo(w * 0.3148, h * 0.5448, w * 0.32, h * 0.6216, w * 0.3148, h * 0.6677);
- c.quadTo(w * 0.2891, h * 0.7343, w * 0.2891, h * 0.7343);
- c.lineTo(w * 0.3303, h * 0.7625);
- c.lineTo(w * 0.39, h * 0.7625);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.6852, h * 0.5448);
- c.curveTo(w * 0.6852, h * 0.5448, w * 0.68, h * 0.6216, w * 0.6852, h * 0.6677);
- c.quadTo(w * 0.7109, h * 0.7343, w * 0.7109, h * 0.7343);
- c.lineTo(w * 0.6697, h * 0.7625);
- c.lineTo(w * 0.62, h * 0.7625);
- c.stroke();
- c.setStrokeColor(frameColor);
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.stroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupUserFemale.prototype.cst.SHAPE_FEMALE_USER, mxShapeMockupUserFemale);
- //**********************************************************************************************************************************************************
- //Group
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupGroup(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupGroup, mxShape);
- mxShapeMockupGroup.prototype.cst = {
- MAIN_TEXT : 'mainText',
- TEXT_SIZE : 'textSize',
- TEXT_COLOR : 'textColor',
- FILL_COLOR2 : 'fillColor2',
- SHAPE_GROUP : 'mxgraph.mockup.containers.group'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupGroup.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var groupString = mxUtils.getValue(this.style, mxShapeMockupGroup.prototype.cst.MAIN_TEXT, 'Group').toString();
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupGroup.prototype.cst.TEXT_SIZE, '17');
- var textWidth = mxUtils.getSizeForString(groupString, fontSize, mxConstants.DEFAULT_FONTFAMILY).width;
- if (textWidth === 0)
- {
- textWidth = Math.max(80, textWidth);
- }
- c.translate(x, y);
- w = Math.max(w, textWidth + 15);
- h = Math.max(h, fontSize + 10);
- this.background(c, w, h, textWidth, fontSize);
- c.setShadow(false);
- this.foreground(c, w, h, textWidth, fontSize);
- this.buttonText(c, w, h, groupString, fontSize);
- };
- mxShapeMockupGroup.prototype.background = function(c, w, h, textWidth, fontSize)
- {
- c.roundrect(0, fontSize * 0.5, w, h - fontSize * 0.5, 5, 5);
- c.fillAndStroke();
- };
- mxShapeMockupGroup.prototype.foreground = function(c, w, h, textWidth, fontSize)
- {
- var fillColor = mxUtils.getValue(this.style, mxShapeMockupGroup.prototype.cst.FILL_COLOR2, '#000000');
- c.setFillColor(fillColor);
- c.roundrect(3, 0, textWidth + 6, fontSize * 1.5, fontSize * 0.25, fontSize * 0.25);
- c.fill();
- };
- mxShapeMockupGroup.prototype.buttonText = function(c, w, h, textString, fontSize)
- {
- var fontColor = mxUtils.getValue(this.style, mxShapeMockupGroup.prototype.cst.TEXT_COLOR, '#ffffff');
- c.setFontColor(fontColor);
- c.setFontSize(fontSize);
- c.text(6, 0, 0, 0, textString, mxConstants.ALIGN_LEFT, mxConstants.ALIGN_TOP, 0, null, 0, 0, 0);
- };
- mxCellRenderer.registerShape(mxShapeMockupGroup.prototype.cst.SHAPE_GROUP, mxShapeMockupGroup);
- //**********************************************************************************************************************************************************
- //Window
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupWindow(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupWindow, mxShape);
- mxShapeMockupWindow.prototype.cst = {
- MAIN_TEXT : 'mainText',
- TEXT_SIZE : 'textSize',
- TEXT_COLOR : 'textColor',
- STROKE_COLOR2 : 'strokeColor2',
- STROKE_COLOR3 : 'strokeColor3',
- SHAPE_WINDOW : 'mxgraph.mockup.containers.window'
- };
- mxShapeMockupWindow.prototype.customProperties = [
- {name: 'strokeColor2', dispName: 'Stroke2 Color', type: 'color', primary:true},
- {name: 'strokeColor3', dispName: 'Stroke3 Color', type: 'color', primary:true}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupWindow.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var closeColor = mxUtils.getValue(this.style, mxShapeMockupWindow.prototype.cst.STROKE_COLOR2, '#008cff');
- var insideColor = mxUtils.getValue(this.style, mxShapeMockupWindow.prototype.cst.STROKE_COLOR3, '#c4c4c4');
- c.translate(x, y);
- h = Math.max(h, 30);
- w = Math.max(w, 90);
- this.background(c, x, y, w, h, bgColor, frameColor);
- c.setShadow(false);
- this.otherShapes(c, x, y, w, h, frameColor, insideColor, closeColor);
- };
- mxShapeMockupWindow.prototype.background = function(c, x, y, w, h, bgColor, frameColor)
- {
- c.setFillColor(bgColor);
- c.setStrokeColor(frameColor);
- c.rect(0, 0, w, h);
- c.fillAndStroke();
- };
- mxShapeMockupWindow.prototype.otherShapes = function(c, x, y, w, h, frameColor, insideColor, closeColor)
- {
- var strokeWidth = mxUtils.getValue(this.style, mxConstants.STYLE_STROKEWIDTH, '1');
- //window buttons
- c.setStrokeColor(frameColor);
- c.ellipse(w - 75, 5, 20, 20);
- c.stroke();
- c.ellipse(w - 50, 5, 20, 20);
- c.stroke();
- c.setStrokeColor(closeColor);
- c.ellipse(w - 25, 5, 20, 20);
- c.stroke();
- c.setStrokeColor(insideColor);
- //lines
- c.begin();
- c.moveTo(0, 30);
- c.lineTo(w, 30);
- c.stroke();
- //text
- var windowTitle = mxUtils.getValue(this.style, mxShapeMockupWindow.prototype.cst.MAIN_TEXT, 'Window Title');
- var fontColor = mxUtils.getValue(this.style, mxShapeMockupWindow.prototype.cst.TEXT_COLOR, '#666666');
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupWindow.prototype.cst.TEXT_SIZE, '17').toString();
- c.setFontColor(fontColor);
- c.setFontSize(fontSize);
- c.text(10, 15, 0, 0, windowTitle, mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- c.stroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupWindow.prototype.cst.SHAPE_WINDOW, mxShapeMockupWindow);
- //**********************************************************************************************************************************************************
- //Horizontal Tab Bar (LEGACY)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupHorTabBar(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupHorTabBar, mxShape);
- mxShapeMockupHorTabBar.prototype.cst = {
- BLOCK : 'block',
- CONE : 'cone',
- HALF_CONE : 'halfCone',
- ROUND : 'round',
- TEXT_SIZE : 'textSize',
- TAB_NAMES : 'tabs',
- TAB_STYLE : 'tabStyle',
- STYLE_FILLCOLOR2 : 'fillColor2',
- TEXT_COLOR : 'textColor',
- SEL_TEXT_COLOR : 'textColor2',
- SHAPE_HOR_TAB_BAR : 'mxgraph.mockup.containers.horTabBar'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- //TODO tab widths are fixed, so tab text length is a bit of an issue. Cannot be fixed while we use labels for tab names
- mxShapeMockupHorTabBar.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.TEXT_SIZE, '17').toString();
- var tabNames = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.TAB_NAMES, 'Tab 1,+Tab 2,Tab 3').toString().split(',');
- var tabH = fontSize * 1.5;
- var startOffset = 10;
- var tabOffset = 5;
- var labelOffset = 10;
- var tabCount = tabNames.length;
- var minW = 2 * startOffset + (tabCount - 1) * tabOffset + tabCount * 2 * labelOffset;
- var rSize = 5;
- var labelWidths = new Array();
- var selectedTab = -1;
- for (var i = 0; i < tabCount; i++)
- {
- var currLabel = tabNames[i];
- if(currLabel.charAt(0) === '+')
- {
- currLabel = currLabel.substring(1);
- selectedTab = i;
- }
- currW = mxUtils.getSizeForString(currLabel, fontSize, mxConstants.DEFAULT_FONTFAMILY).width;
- if (currW === 0)
- {
- labelWidths[i] = 40;
- }
- else
- {
- labelWidths[i] = currW;
- };
- minW = minW + labelWidths[i];
- }
- w = Math.max(w, minW);
- h = Math.max(h, tabH + rSize);
- c.translate(x, y);
- this.background(c, w, h, rSize, tabH);
- c.setShadow(false);
- this.backTabs(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab);
- this.focusTab(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab);
- this.tabText(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab, tabNames);
- };
- mxShapeMockupHorTabBar.prototype.background = function(c, w, h, rSize, tabH)
- {
- c.begin();
- c.moveTo(0, tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
- c.lineTo(w - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- };
- mxShapeMockupHorTabBar.prototype.backTabs = function(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab)
- {
- var tabStyle = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.TAB_STYLE, mxShapeMockupHorTabBar.prototype.cst.BLOCK);
- var currW = startOffset;
- for (var i=0; i < tabCount; i++)
- {
- var tabW = labelWidths[i] + 2 * labelOffset;
- if (selectedTab !== i)
- {
- if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.BLOCK)
- {
- c.rect(currW, 0, tabW, tabH);
- }
- else if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.CONE)
- {
- c.begin();
- c.moveTo(currW, tabH);
- c.lineTo(currW + labelOffset * 0.5, 0);
- c.lineTo(currW + tabW - labelOffset * 0.5, 0);
- c.lineTo(currW + tabW, tabH);
- }
- else if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.HALF_CONE)
- {
- c.begin();
- c.moveTo(currW, tabH);
- c.lineTo(currW + labelOffset * 0.5, 0);
- c.lineTo(currW + tabW, 0);
- c.lineTo(currW + tabW, tabH);
- }
- else if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.ROUND)
- {
- c.begin();
- c.moveTo(currW - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 0, currW, tabH - rSize);
- c.lineTo(currW, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, currW + rSize, 0);
- c.lineTo(currW + tabW - rSize, 0);
- c.arcTo(rSize, rSize, 0, 0, 1, currW + tabW, rSize);
- c.lineTo(currW + tabW, tabH - rSize);
- c.arcTo(rSize, rSize, 0, 0, 0, currW + tabW + rSize, tabH);
- }
- c.fillAndStroke();
- }
- currW = currW + tabW + tabOffset;
- }
- };
- mxShapeMockupHorTabBar.prototype.focusTab = function(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab)
- {
- var tabStyle = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.TAB_STYLE, mxShapeMockupHorTabBar.prototype.cst.BLOCK);
- var selectedFill = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.STYLE_FILLCOLOR2, '#008cff');
- var currW = startOffset;
- c.setStrokeColor(selectedFill);
- c.setFillColor(selectedFill);
- for (var i=0; i <= selectedTab; i++)
- {
- var tabW = labelWidths[i] + 2 * labelOffset;
- if (selectedTab === i)
- {
- if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.BLOCK)
- {
- c.begin();
- c.moveTo(0, tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
- c.lineTo(currW, tabH);
- c.lineTo(currW, 0);
- c.lineTo(currW + tabW, 0);
- c.lineTo(currW + tabW, tabH);
- c.lineTo(w - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
- c.close();
- }
- else if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.CONE)
- {
- c.begin();
- c.moveTo(0, tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
- c.lineTo(currW, tabH);
- c.lineTo(currW + labelOffset * 0.5, 0);
- c.lineTo(currW + tabW - labelOffset * 0.5, 0);
- c.lineTo(currW + tabW, tabH);
- c.lineTo(w - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
- c.close();
- }
- else if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.HALF_CONE)
- {
- c.begin();
- c.moveTo(0, tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
- c.lineTo(currW, tabH);
- c.lineTo(currW + labelOffset * 0.5, 0);
- c.lineTo(currW + tabW, 0);
- c.lineTo(currW + tabW, tabH);
- c.lineTo(w - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
- c.close();
- }
- else if (tabStyle === mxShapeMockupHorTabBar.prototype.cst.ROUND)
- {
- c.begin();
- c.moveTo(0, tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, tabH);
- c.lineTo(currW - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 0, currW, tabH - rSize);
- c.lineTo(currW, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, currW + rSize, 0);
- c.lineTo(currW + tabW - rSize, 0);
- c.arcTo(rSize, rSize, 0, 0, 1, currW + tabW, rSize);
- c.lineTo(currW + tabW, tabH - rSize);
- c.arcTo(rSize, rSize, 0, 0, 0, currW + tabW + rSize, tabH);
- c.lineTo(w - rSize, tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, w, tabH + rSize);
- c.close();
- }
- c.fillAndStroke();
- }
- currW = currW + tabW + tabOffset;
- }
- };
- mxShapeMockupHorTabBar.prototype.tabText = function(c, w, h, rSize, tabH, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab, tabNames)
- {
- var fontColor = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.TEXT_COLOR, '#666666');
- var selFontColor = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.SEL_TEXT_COLOR, '#ffffff');
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupHorTabBar.prototype.cst.TEXT_SIZE, '17').toString();
- c.setFontColor(fontColor);
- c.setFontSize(fontSize);
- var currW = startOffset;
- for (var i=0; i < tabCount; i++)
- {
- var currLabel = tabNames[i];
- if (i === selectedTab)
- {
- c.setFontColor(selFontColor);
- }
- if (currLabel.charAt(0) === '+')
- {
- currLabel = currLabel.substring(1);
- }
- var tabW = labelWidths[i] + 2 * labelOffset;
- c.text(currW + labelOffset, tabH * 0.5, 0, 0, currLabel, mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- currW = currW + tabW + tabOffset;
- if (i === selectedTab)
- {
- c.setFontColor(fontColor);
- }
- }
- };
- mxCellRenderer.registerShape(mxShapeMockupHorTabBar.prototype.cst.SHAPE_HOR_TAB_BAR, mxShapeMockupHorTabBar);
- //**********************************************************************************************************************************************************
- //Vertical Tab Bar (LEGACY)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- //TODO tab widths are fixed, so tab text length is a bit of an issue. Cannot be fixed while we use labels for tab names
- function mxShapeMockupVerTabBar(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupVerTabBar, mxShape);
- mxShapeMockupVerTabBar.prototype.cst = {
- BLOCK : 'block',
- ROUND : 'round',
- TEXT_SIZE : 'textSize',
- TAB_NAMES : 'tabs',
- TAB_STYLE : 'tabStyle',
- STYLE_FILLCOLOR2 : 'fillColor2',
- TEXT_COLOR : 'textColor',
- SEL_TEXT_COLOR : 'textColor2',
- SHAPE_VER_TAB_BAR : 'mxgraph.mockup.containers.verTabBar'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupVerTabBar.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.TEXT_SIZE, '17').toString();
- var tabNames = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.TAB_NAMES, 'Tab 1,+Tab 2,Tab 3').toString().split(',');
- var tabH = fontSize * 1.5;
- var startOffset = 10;
- var tabOffset = 5;
- var labelOffset = 10;
- var tabCount = tabNames.length;
- var rSize = 5;
- var labelWidths = new Array();
- var selectedTab = -1;
- for (var i = 0; i < tabCount; i++)
- {
- var currLabel = tabNames[i];
- if(currLabel.charAt(0) === '+')
- {
- currLabel = currLabel.substring(1);
- selectedTab = i;
- }
- var currW = mxUtils.getSizeForString(currLabel, fontSize, mxConstants.DEFAULT_FONTFAMILY).width;
- if (currW === 0)
- {
- labelWidths[i] = 42;
- }
- else
- {
- labelWidths[i] = currW;
- }
- }
- var tabW = 2 * labelOffset + Math.max.apply(Math, labelWidths);
- var minW = tabW + rSize;
- w = Math.max(w, minW);
- h = Math.max(h, 2 * startOffset + tabCount * tabH + (tabCount - 1) * tabOffset);
- c.translate(x, y);
- this.background(c, w, h, rSize, tabW);
- c.setShadow(false);
- this.backTabs(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab);
- this.focusTab(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab);
- this.tabText(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab, tabNames);
- };
- mxShapeMockupVerTabBar.prototype.background = function(c, w, h, rSize, tabW)
- {
- c.begin();
- c.moveTo(tabW + rSize, h);
- c.arcTo(rSize, rSize, 0, 0, 1, tabW, h - rSize);
- c.lineTo(tabW, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, tabW + rSize, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h);
- c.close();
- c.fillAndStroke();
- };
- mxShapeMockupVerTabBar.prototype.backTabs = function(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab)
- {
- var tabStyle = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.TAB_STYLE, mxShapeMockupVerTabBar.prototype.cst.BLOCK);
- var currH = startOffset;
- for (var i=0; i < tabCount; i++)
- {
- if (selectedTab !== i)
- {
- if (tabStyle === mxShapeMockupVerTabBar.prototype.cst.BLOCK)
- {
- c.rect(0, currH, tabW, tabH);
- }
- else if (tabStyle === mxShapeMockupVerTabBar.prototype.cst.ROUND)
- {
- c.begin();
- c.moveTo(tabW, currH + tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 0, tabW - rSize, currH + tabH);
- c.lineTo(rSize, currH + tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, 0, currH + tabH - rSize);
- c.lineTo(0, currH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, currH);
- c.lineTo(tabW - rSize, currH);
- c.arcTo(rSize, rSize, 0, 0, 0, tabW, currH - rSize);
- }
- c.fillAndStroke();
- }
- currH = currH + tabH + tabOffset;
- }
- };
- mxShapeMockupVerTabBar.prototype.focusTab = function(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab)
- {
- var tabStyle = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.TAB_STYLE, mxShapeMockupVerTabBar.prototype.cst.BLOCK);
- var selectedFill = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.STYLE_FILLCOLOR2, '#008cff');
- if (selectedTab !== -1)
- {
- var currH = startOffset + (tabH + tabOffset) * selectedTab;
- c.setStrokeColor(selectedFill);
- c.setFillColor(selectedFill);
- if (tabStyle === mxShapeMockupVerTabBar.prototype.cst.BLOCK)
- {
- c.begin();
- c.moveTo(tabW + rSize, h);
- c.arcTo(rSize, rSize, 0, 0, 1, tabW, h - rSize);
- c.lineTo(tabW, currH + tabH);
- c.lineTo(0, currH + tabH);
- c.lineTo(0, currH);
- c.lineTo(tabW, currH);
- c.lineTo(tabW, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, tabW + rSize, 0);
- c.close();
- }
- else if (tabStyle === mxShapeMockupVerTabBar.prototype.cst.ROUND)
- {
- c.begin();
- c.moveTo(tabW + rSize, h);
- c.arcTo(rSize, rSize, 0, 0, 1, tabW, h - rSize);
- c.lineTo(tabW, currH + tabH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 0, tabW - rSize, currH + tabH);
- c.lineTo(rSize, currH + tabH);
- c.arcTo(rSize, rSize, 0, 0, 1, 0, currH + tabH - rSize);
- c.lineTo(0, currH + rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, currH);
- c.lineTo(tabW - rSize, currH);
- c.arcTo(rSize, rSize, 0, 0, 0, tabW, currH - rSize);
- c.lineTo(tabW, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, tabW + rSize, 0);
- c.close();
- }
- c.fillAndStroke();
- }
- };
- mxShapeMockupVerTabBar.prototype.tabText = function(c, w, h, rSize, tabH, tabW, startOffset, tabOffset, labelOffset, tabCount, labelWidths, selectedTab, tabNames)
- {
- var fontColor = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.TEXT_COLOR, '#666666');
- var selFontColor = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.SEL_TEXT_COLOR, '#ffffff');
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupVerTabBar.prototype.cst.TEXT_SIZE, '17').toString();
- c.setFontColor(fontColor);
- c.setFontSize(fontSize);
- var currH = startOffset;
- for (var i=0; i < tabCount; i++)
- {
- var currLabel = tabNames[i];
- if (i === selectedTab)
- {
- c.setFontColor(selFontColor);
- }
- if (currLabel.charAt(0) === '+')
- {
- currLabel = currLabel.substring(1);
- }
- c.text(tabW * 0.5, currH + tabH * 0.5, 0, 0, currLabel, mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- currH = currH + tabH + tabOffset;
- if (i === selectedTab)
- {
- c.setFontColor(fontColor);
- }
- }
- };
- mxCellRenderer.registerShape(mxShapeMockupVerTabBar.prototype.cst.SHAPE_VER_TAB_BAR, mxShapeMockupVerTabBar);
- //**********************************************************************************************************************************************************
- //Alert Box (LEGACY)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupAlertBox(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupAlertBox, mxShape);
- mxShapeMockupAlertBox.prototype.cst = {
- MAIN_TEXT : 'mainText',
- SUB_TEXT : 'subText',
- BUTTON_TEXT : 'buttonText',
- TEXT_SIZE : 'textSize',
- TEXT_COLOR : 'textColor',
- STROKE_COLOR2 : 'strokeColor2',
- STROKE_COLOR3 : 'strokeColor3',
- SHAPE_ALERT_BOX : 'mxgraph.mockup.containers.alertBox'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupAlertBox.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- var bgColor = mxUtils.getValue(this.style, mxConstants.STYLE_FILLCOLOR, '#ffffff');
- var frameColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#666666');
- var closeColor = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.STROKE_COLOR2, '#008cff');
- var insideColor = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.STROKE_COLOR3, '#c4c4c4');
- c.translate(x, y);
- h = Math.max(h, 75);
- w = Math.max(w, 90);
- this.background(c, x, y, w, h, bgColor, frameColor);
- c.setShadow(false);
- this.foreground(c, x, y, w, h, frameColor, insideColor, closeColor);
- };
- mxShapeMockupAlertBox.prototype.background = function(c, x, y, w, h, bgColor, frameColor)
- {
- c.setFillColor(bgColor);
- c.setStrokeColor(frameColor);
- c.rect(0, 0, w, h);
- c.fillAndStroke();
- };
- mxShapeMockupAlertBox.prototype.foreground = function(c, x, y, w, h, frameColor, insideColor, closeColor)
- {
- var strokeWidth = mxUtils.getValue(this.style, mxConstants.STYLE_STROKEWIDTH, '1');
- c.setStrokeColor(closeColor);
- c.ellipse(w - 25, 5, 20, 20);
- c.stroke();
- c.setStrokeColor(insideColor);
- c.begin();
- c.moveTo(0, 30);
- c.lineTo(w, 30);
- c.stroke();
- //buttons
- var windowTitle = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.MAIN_TEXT, 'Window Title').toString();
- var subText = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.SUB_TEXT, 'Sub Text').toString().split(',');
- var buttonText = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.BUTTON_TEXT, 'OK,Cancel').toString().split(',');
- var fontColor = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.TEXT_COLOR, '#666666');
- var fontSize = mxUtils.getValue(this.style, mxShapeMockupAlertBox.prototype.cst.TEXT_SIZE, '17').toString();
- var buttonCount = buttonText.length;
- var buttonOffset = 10;
- var buttonW = (w - buttonOffset * (buttonCount + 1)) / buttonCount;
- c.setFontColor(fontColor);
- c.setFontSize(fontSize);
- c.text(10, 15, 0, 0, windowTitle, mxConstants.ALIGN_LEFT, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- var currW = buttonOffset;
- for (var i = 0; i < buttonText.length; i++)
- {
- if (buttonText[i] !== '')
- {
- c.rect(currW, h - 10 - fontSize * 1.5, buttonW, fontSize * 1.5);
- c.stroke();
- c.text(currW + buttonW * 0.5, h - 10 - fontSize * 0.75, 0, 0, buttonText[i], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- }
- currW = currW + buttonW + buttonOffset;
- }
- for (var i = 0; i < subText.length; i++)
- {
- c.text(w * 0.5, 30 + fontSize * (i * 1.5 + 0.75), 0, 0, subText[i], mxConstants.ALIGN_CENTER, mxConstants.ALIGN_MIDDLE, 0, null, 0, 0, 0);
- }
- c.stroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupAlertBox.prototype.cst.SHAPE_ALERT_BOX, mxShapeMockupAlertBox);
- //**********************************************************************************************************************************************************
- //Rounded rectangle (adjustable rounding)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupContainersRRect(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupContainersRRect, mxShape);
- mxShapeMockupContainersRRect.prototype.cst = {
- RRECT : 'mxgraph.mockup.containers.rrect',
- R_SIZE : 'rSize'
- };
- mxShapeMockupContainersRRect.prototype.customProperties = [
- {name: 'rSize', dispName: 'Arc Size', type: 'float', min:0, defVal:10},
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupContainersRRect.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- var rSize = parseInt(mxUtils.getValue(this.style, mxShapeMockupContainersRRect.prototype.cst.R_SIZE, '10'));
- c.roundrect(0, 0, w, h, rSize);
- c.fillAndStroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupContainersRRect.prototype.cst.RRECT, mxShapeMockupContainersRRect);
- //**********************************************************************************************************************************************************
- //Anchor (a dummy shape without visuals used for anchoring)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupContainersAnchor(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupContainersAnchor, mxShape);
- mxShapeMockupContainersAnchor.prototype.cst = {
- ANCHOR : 'mxgraph.mockup.containers.anchor'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupContainersAnchor.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- };
- mxCellRenderer.registerShape(mxShapeMockupContainersAnchor.prototype.cst.ANCHOR, mxShapeMockupContainersAnchor);
- //**********************************************************************************************************************************************************
- //Top Button
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupContrainersTopButton(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupContrainersTopButton, mxShape);
- mxShapeMockupContrainersTopButton.prototype.cst = {
- TOP_BUTTON : 'mxgraph.mockup.containers.topButton',
- R_SIZE : 'rSize'
- };
- mxShapeMockupContrainersTopButton.prototype.customProperties = [
- {name: 'rSize', dispName: 'Arc Size', type: 'float', min:0, defVal:10},
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupContrainersTopButton.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- var rSize = parseInt(mxUtils.getValue(this.style, mxShapeMockupContrainersTopButton.prototype.cst.R_SIZE, '10'));
- c.begin();
- c.moveTo(0, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, 0);
- c.lineTo(w - rSize, 0);
- c.arcTo(rSize, rSize, 0, 0, 1, w, rSize);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.fillAndStroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupContrainersTopButton.prototype.cst.TOP_BUTTON, mxShapeMockupContrainersTopButton);
- //**********************************************************************************************************************************************************
- //Left Button
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupContainersLeftButton(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupContainersLeftButton, mxShape);
- mxShapeMockupContainersLeftButton.prototype.cst = {
- LEFT_BUTTON : 'mxgraph.mockup.containers.leftButton',
- R_SIZE : 'rSize'
- };
- mxShapeMockupContainersLeftButton.prototype.customProperties = [
- {name: 'rSize', dispName: 'Arc Size', type: 'float', min:0, defVal:10},
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupContainersLeftButton.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- var rSize = parseInt(mxUtils.getValue(this.style, mxShapeMockupContainersLeftButton.prototype.cst.R_SIZE, '10'));
- c.begin();
- c.moveTo(w, 0);
- c.lineTo(w, h);
- c.lineTo(rSize, h);
- c.arcTo(rSize, rSize, 0, 0, 1, 0, h - rSize);
- c.lineTo(0, rSize);
- c.arcTo(rSize, rSize, 0, 0, 1, rSize, 0);
- c.close();
- c.fillAndStroke();
- };
- mxCellRenderer.registerShape(mxShapeMockupContainersLeftButton.prototype.cst.LEFT_BUTTON, mxShapeMockupContainersLeftButton);
- //**********************************************************************************************************************************************************
- //rect with margins
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupContainersMarginRect(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupContainersMarginRect, mxShape);
- mxShapeMockupContainersMarginRect.prototype.cst = {
- SHAPE_MARGIN_RECT : 'mxgraph.mockup.containers.marginRect',
- MARGIN : 'rectMargin',
- MARGIN_TOP : 'rectMarginTop',
- MARGIN_LEFT : 'rectMarginLeft',
- MARGIN_BOTTOM : 'rectMarginBottom',
- MARGIN_RIGHT : 'rectMarginRight'
- };
- mxShapeMockupContainersMarginRect.prototype.customProperties = [
- {name: 'rectMargin', dispName: 'Global Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginTop', dispName: 'Top Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginLeft', dispName: 'Left Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginBottom', dispName: 'Bottom Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginRight', dispName: 'Right Margin', type: 'float', min:0, defVal:0}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupContainersMarginRect.prototype.paintVertexShape = function(c, x, y, w, h)
- {
-
- c.translate(x, y);
- this.background(c, x, y, w, h);
- };
- mxShapeMockupContainersMarginRect.prototype.background = function(c, x, y, w, h, state)
- {
- var margin = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect.prototype.cst.MARGIN, '0'));
- var marginTop = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect.prototype.cst.MARGIN_TOP, '0'));
- var marginLeft = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect.prototype.cst.MARGIN_LEFT, '0'));
- var marginBottom = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect.prototype.cst.MARGIN_BOTTOM, '0'));
- var marginRight = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect.prototype.cst.MARGIN_RIGHT, '0'));
- var x1 = margin + marginLeft;
- var y1 = margin + marginTop;
- var w1 = w - marginRight - x1 - margin;
- var h1 = h - marginBottom - y1 - margin;
- if (w1 >0 && h1 > 0)
- {
- c.begin();
- c.roundrect(x1, y1, w1, h1, 10, 10);
- c.fillAndStroke();
- }
- };
- mxCellRenderer.registerShape(mxShapeMockupContainersMarginRect.prototype.cst.SHAPE_MARGIN_RECT, mxShapeMockupContainersMarginRect);
- //**********************************************************************************************************************************************************
- //rect with margins (not rounded)
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxShapeMockupContainersMarginRect2(bounds, fill, stroke, strokewidth)
- {
- mxShape.call(this);
- this.bounds = bounds;
- this.fill = fill;
- this.stroke = stroke;
- this.strokewidth = (strokewidth != null) ? strokewidth : 1;
- };
- /**
- * Extends mxShape.
- */
- mxUtils.extend(mxShapeMockupContainersMarginRect2, mxShape);
- mxShapeMockupContainersMarginRect2.prototype.cst = {
- SHAPE_MARGIN_RECT : 'mxgraph.mockup.containers.marginRect2',
- MARGIN : 'rectMargin',
- MARGIN_TOP : 'rectMarginTop',
- MARGIN_LEFT : 'rectMarginLeft',
- MARGIN_BOTTOM : 'rectMarginBottom',
- MARGIN_RIGHT : 'rectMarginRight'
- };
- mxShapeMockupContainersMarginRect2.prototype.customProperties = [
- {name: 'rectMargin', dispName: 'Global Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginTop', dispName: 'Top Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginLeft', dispName: 'Left Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginBottom', dispName: 'Bottom Margin', type: 'float', min:0, defVal:0},
- {name: 'rectMarginRight', dispName: 'Right Margin', type: 'float', min:0, defVal:0}
- ];
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxShapeMockupContainersMarginRect2.prototype.paintVertexShape = function(c, x, y, w, h)
- {
-
- c.translate(x, y);
- this.background(c, x, y, w, h);
- };
- mxShapeMockupContainersMarginRect2.prototype.background = function(c, x, y, w, h, state)
- {
- var margin = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect2.prototype.cst.MARGIN, '0'));
- var marginTop = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect2.prototype.cst.MARGIN_TOP, '0'));
- var marginLeft = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect2.prototype.cst.MARGIN_LEFT, '0'));
- var marginBottom = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect2.prototype.cst.MARGIN_BOTTOM, '0'));
- var marginRight = parseFloat(mxUtils.getValue(this.style, mxShapeMockupContainersMarginRect2.prototype.cst.MARGIN_RIGHT, '0'));
- var x1 = margin + marginLeft;
- var y1 = margin + marginTop;
- var w1 = w - marginRight - x1 - margin;
- var h1 = h - marginBottom - y1 - margin;
- if (w1 >0 && h1 > 0)
- {
- c.begin();
- c.rect(x1, y1, w1, h1);
- c.fillAndStroke();
- }
- };
- mxCellRenderer.registerShape(mxShapeMockupContainersMarginRect2.prototype.cst.SHAPE_MARGIN_RECT, mxShapeMockupContainersMarginRect2);
|