123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989 |
- /**
- * $Id: mxArchiMate.js,v 1.0 2014/03/17 07:05:39 mate Exp $
- * Copyright (c) 2006-2014, JGraph Ltd
- */
- //**********************************************************************************************************************************************************
- //Location
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateLocation(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(mxArchiMateLocation, mxShape);
- mxArchiMateLocation.prototype.cst = {
- LOCATION : 'mxgraph.archimate.location'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateLocation.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- c.translate(w - 20, 5);
- this.foreground(c, w - 20, 5, 15, 15);
- };
- mxArchiMateLocation.prototype.background = function(c, x, y, w, h)
- {
- c.rect(0, 0, w, h);
- c.fillAndStroke();
- };
- mxArchiMateLocation.prototype.foreground = function(c, x, y, w, h)
- {
- c.setDashed(false);
-
- c.translate(3 ,0);
- w = w - 6;
- c.begin();
- c.moveTo(w * 0.5, h);
- c.arcTo(w * 0.1775, h * 0.3, 0, 0, 0, w * 0.345, h * 0.7);
- c.arcTo(w * 0.538, h * 0.364, 0, 0, 1, w * 0.5, 0);
- c.arcTo(w * 0.538, h * 0.364, 0, 0, 1, w * 0.655, h * 0.7);
- c.arcTo(w * 0.1775, h * 0.3, 0, 0, 0, w * 0.5, h);
- c.stroke();
- };
- mxCellRenderer.registerShape(mxArchiMateLocation.prototype.cst.LOCATION, mxArchiMateLocation);
- //**********************************************************************************************************************************************************
- //Business
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateBusiness(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(mxArchiMateBusiness, mxShape);
- mxArchiMateBusiness.prototype.cst = {
- BUSINESS : 'mxgraph.archimate.business',
- TYPE : 'busType',
- PROCESS : 'process',
- FUNCTION : 'function',
- INTERACTION : 'interaction',
- EVENT : 'event',
- SERVICE : 'service'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateBusiness.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- c.translate(w - 20, 5);
- this.foreground(c, w - 20, 5, 15, 15);
- };
- mxArchiMateBusiness.prototype.background = function(c, x, y, w, h)
- {
- c.roundrect(0, 0, w, h, 10, 10);
- c.fillAndStroke();
- };
- mxArchiMateBusiness.prototype.foreground = function(c, x, y, w, h)
- {
- var type = mxUtils.getValue(this.style, mxArchiMateBusiness.prototype.cst.TYPE, mxArchiMateBusiness.prototype.cst.PROCESS);
-
- c.setDashed(false);
-
- if (type === mxArchiMateBusiness.prototype.cst.PROCESS)
- {
- c.translate(0, 2);
- h = h - 4;
-
- c.begin();
- c.moveTo(0, h * 0.15);
- c.lineTo(w * 0.65, h * 0.15);
- c.lineTo(w * 0.65, 0);
- c.lineTo(w, h * 0.5);
- c.lineTo(w * 0.65, h);
- c.lineTo(w * 0.65, h * 0.85);
- c.lineTo(0, h * 0.85);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateBusiness.prototype.cst.FUNCTION)
- {
- c.translate(2, 0);
- w = w - 4;
-
- c.begin();
- c.moveTo(0, h * 0.15);
- c.lineTo(w * 0.5, 0);
- c.lineTo(w, h * 0.15);
- c.lineTo(w, h);
- c.lineTo(w * 0.5, h * 0.85);
- c.lineTo(0, h);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateBusiness.prototype.cst.INTERACTION)
- {
- c.begin();
- c.moveTo(w * 0.55, 0);
- c.arcTo(w * 0.45, h * 0.5, 0, 0, 1, w * 0.55, h);
- c.close();
- c.moveTo(w * 0.45, 0);
- c.arcTo(w * 0.45, h * 0.5, 0, 0, 0, w * 0.45, h);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateBusiness.prototype.cst.EVENT)
- {
- c.translate(0, 3);
- h = h - 6;
-
- c.begin();
- c.moveTo(w - h * 0.5, 0);
- c.arcTo(h * 0.5, h * 0.5, 0, 0, 1, w - h * 0.5, h);
- c.lineTo(0, h);
- c.arcTo(h * 0.5, h * 0.5, 0, 0, 0, 0, 0);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateBusiness.prototype.cst.SERVICE)
- {
- c.translate(0, 3);
- h = h - 6;
-
- c.begin();
- c.moveTo(w - h * 0.5, 0);
- c.arcTo(h * 0.5, h * 0.5, 0, 0, 1, w - h * 0.5, h);
- c.lineTo(0, h);
- c.arcTo(h * 0.5, h * 0.5, 0, 0, 1, 0, 0);
- c.close();
- c.stroke();
- }
- };
- mxCellRenderer.registerShape(mxArchiMateBusiness.prototype.cst.BUSINESS, mxArchiMateBusiness);
- //**********************************************************************************************************************************************************
- //Business Object
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateBusinessObject(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(mxArchiMateBusinessObject, mxShape);
- mxArchiMateBusinessObject.prototype.cst = {
- BUSINESS_OBJECT : 'mxgraph.archimate.businessObject'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateBusinessObject.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- this.foreground(c, 0, 0, w, h);
- };
- mxArchiMateBusinessObject.prototype.background = function(c, x, y, w, h)
- {
- c.rect(0, 0, w, h);
- c.fillAndStroke();
- };
- mxArchiMateBusinessObject.prototype.foreground = function(c, x, y, w, h)
- {
- if (h >= 15)
- {
- c.begin();
- c.moveTo(0, 15);
- c.lineTo(w, 15);
- c.stroke();
- }
- };
- mxCellRenderer.registerShape(mxArchiMateBusinessObject.prototype.cst.BUSINESS_OBJECT, mxArchiMateBusinessObject);
- //**********************************************************************************************************************************************************
- //Representation
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateRepresentation(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(mxArchiMateRepresentation, mxShape);
- mxArchiMateRepresentation.prototype.cst = {
- REPRESENTATION : 'mxgraph.archimate.representation'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateRepresentation.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- };
- mxArchiMateRepresentation.prototype.background = function(c, x, y, w, h)
- {
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h * 0.85);
- c.arcTo(w * 0.35, h * 0.35, 0, 0, 0, w * 0.5, h * 0.85);
- c.arcTo(w * 0.35, h * 0.35, 0, 0, 1, 0, h * 0.85);
- c.close();
- c.fillAndStroke();
- };
- mxCellRenderer.registerShape(mxArchiMateRepresentation.prototype.cst.REPRESENTATION, mxArchiMateRepresentation);
- //**********************************************************************************************************************************************************
- //Product
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateProduct(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(mxArchiMateProduct, mxShape);
- mxArchiMateProduct.prototype.cst = {
- PRODUCT : 'mxgraph.archimate.product'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateProduct.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- this.foreground(c, 0, 0, w, h);
- };
- mxArchiMateProduct.prototype.background = function(c, x, y, w, h)
- {
- c.rect(0, 0, w, h);
- c.fillAndStroke();
- };
- mxArchiMateProduct.prototype.foreground = function(c, x, y, w, h)
- {
- if (h >= 15)
- {
- c.begin();
- c.moveTo(0, 15);
- c.lineTo(w * 0.6, 15);
- c.lineTo(w * 0.6, 0);
- c.stroke();
- }
- };
- mxCellRenderer.registerShape(mxArchiMateProduct.prototype.cst.PRODUCT, mxArchiMateProduct);
- //**********************************************************************************************************************************************************
- //Application
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateApplication(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(mxArchiMateApplication, mxShape);
- mxArchiMateApplication.prototype.cst = {
- APPLICATION : 'mxgraph.archimate.application',
- TYPE : 'appType',
- COMPONENT : 'comp',
- INTERFACE : 'interface',
- INTERFACE2 : 'interface2',
- FUNCTION : 'function',
- INTERACTION : 'interaction',
- SERVICE : 'service',
- NODE : 'node',
- NETWORK : 'network',
- COMM_PATH : 'commPath',
- SYS_SW : 'sysSw',
- ARTIFACT : 'artifact',
- ACTOR : 'actor',
- ROLE : 'role',
- COLLABORATION : 'collab'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateApplication.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- c.translate(w - 20, 5);
- this.foreground(c, w - 20, 5, 15, 15);
- };
- mxArchiMateApplication.prototype.background = function(c, x, y, w, h)
- {
- c.rect(0, 0, w, h);
- c.fillAndStroke();
- };
- mxArchiMateApplication.prototype.foreground = function(c, x, y, w, h)
- {
- var type = mxUtils.getValue(this.style, mxArchiMateApplication.prototype.cst.TYPE, mxArchiMateApplication.prototype.cst.COMPONENT);
-
- c.setDashed(false);
-
- if (type === mxArchiMateApplication.prototype.cst.COMPONENT)
- {
- c.translate(1, 0);
- w = w - 2;
- c.rect(w * 0.25, 0, w * 0.75, h);
- c.stroke();
-
- c.rect(0, h * 0.25, w * 0.5, h * 0.15);
- c.fillAndStroke();
-
- c.rect(0, h * 0.6, w * 0.5, h * 0.15);
- c.fillAndStroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.COLLABORATION)
- {
- c.translate(0, 3);
- h = h - 6;
-
- c.ellipse(0, 0, w * 0.6, h);
- c.stroke();
- c.ellipse(w * 0.4, 0, w * 0.6, h);
- c.fillAndStroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.INTERFACE)
- {
- c.translate(0, 4);
- h = h - 8;
-
- c.ellipse(w * 0.5, 0, w * 0.5, h);
- c.stroke();
-
- c.begin();
- c.moveTo(0, h * 0.5);
- c.lineTo(w * 0.5, h * 0.5);
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.INTERFACE2)
- {
- c.translate(0, 1);
- h = h - 2;
-
- c.begin();
- c.moveTo(0, h * 0.5);
- c.lineTo(w * 0.6, h * 0.5);
- c.moveTo(w, 0);
- c.arcTo(w * 0.4, h * 0.5, 0, 0, 0, w, h);
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.FUNCTION)
- {
- c.begin();
- c.moveTo(w * 0.5, 0);
- c.lineTo(w, h * 0.2);
- c.lineTo(w, h);
- c.lineTo(w * 0.5, h * 0.8);
- c.lineTo(0, h);
- c.lineTo(0, h * 0.2);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.INTERACTION)
- {
- c.begin();
- c.moveTo(w * 0.55, 0);
- c.arcTo(w * 0.45, h * 0.5, 0, 0, 1, w * 0.55, h);
- c.close();
- c.moveTo(w * 0.45, 0);
- c.arcTo(w * 0.45, h * 0.5, 0, 0, 0, w * 0.45, h);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.SERVICE)
- {
- c.translate(0, 3);
- h = h - 6;
-
- c.begin();
- c.moveTo(w - h * 0.5, 0);
- c.arcTo(h * 0.5, h * 0.5, 0, 0, 1, w - h * 0.5, h);
- c.lineTo(0, h);
- c.arcTo(h * 0.5, h * 0.5, 0, 0, 1, 0, 0);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.NODE)
- {
- c.begin();
- c.moveTo(0, h * 0.25);
- c.lineTo(w * 0.25, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h * 0.75);
- c.lineTo(w * 0.75, h);
- c.lineTo(0, h);
- c.close();
- c.moveTo(0, h * 0.25);
- c.lineTo(w * 0.75, h * 0.25);
- c.lineTo(w * 0.75, h);
- c.moveTo(w, 0);
- c.lineTo(w * 0.75, h * 0.25);
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.NETWORK)
- {
- c.translate(0, 2);
- h = h - 4;
-
- c.begin();
- c.moveTo(w * 0.4, h * 0.2);
- c.lineTo(w * 0.85, h * 0.2);
- c.lineTo(w * 0.6, h * 0.8);
- c.lineTo(w * 0.15, h * 0.8);
- c.close();
- c.stroke();
-
- var strokeColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000');
- c.setFillColor(strokeColor);
-
- c.ellipse(w * 0.25, 0, w * 0.3, h * 0.4);
- c.fill();
-
- c.ellipse(w * 0.7, 0, w * 0.3, h * 0.4);
- c.fill();
-
- c.ellipse(0, h * 0.6, w * 0.3, h * 0.4);
- c.fill();
-
- c.ellipse(w * 0.45, h * 0.6, w * 0.3, h * 0.4);
- c.fill();
- }
- else if (type === mxArchiMateApplication.prototype.cst.COMM_PATH)
- {
- c.translate(0, 5);
- h = h - 10;
-
- c.begin();
- c.moveTo(w * 0.1, 0);
- c.lineTo(0, h * 0.5);
- c.lineTo(w * 0.1, h);
- c.moveTo(w * 0.9, 0);
- c.lineTo(w, h * 0.5);
- c.lineTo(w * 0.9, h);
- c.stroke();
-
- c.setDashed(true);
- c.begin();
- c.moveTo(0, h * 0.5);
- c.lineTo(w, h * 0.5);
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.SYS_SW)
- {
- c.ellipse(w * 0.3, 0, w * 0.7, h * 0.7);
- c.stroke();
-
- c.ellipse(0, h * 0.02, w * 0.98, h * 0.98);
- c.fillAndStroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.ARTIFACT)
- {
- c.translate(2, 0);
- w = w - 4;
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w * 0.7, 0);
- c.lineTo(w, h * 0.22);
- c.lineTo(w, h);
- c.lineTo(0, h);
- c.close();
- c.moveTo(w * 0.7, 0);
- c.lineTo(w * 0.7, h * 0.22);
- c.lineTo(w, h * 0.22);
- c.stroke();
- }
- else if (type === mxArchiMateApplication.prototype.cst.ACTOR)
- {
- c.translate(3, 0);
- w = w - 6;
- c.ellipse(w * 0.2, 0, w * 0.6, h * 0.3);
- c.stroke();
-
- c.begin();
- c.moveTo(w * 0.5, h * 0.3);
- c.lineTo(w * 0.5, h * 0.75);
- c.moveTo(0, h * 0.45);
- c.lineTo(w, h * 0.45);
- c.moveTo(0, h);
- c.lineTo(w * 0.5, h * 0.75);
- c.lineTo(w, h);
- c.stroke();
- }
- if (type === mxArchiMateApplication.prototype.cst.ROLE)
- {
- c.translate(0, 4);
- h = h - 8;
- c.begin();
- c.moveTo(w * 0.8, 0);
- c.lineTo(w * 0.2, 0);
- c.arcTo(w * 0.2, h * 0.5, 0, 0, 0, w * 0.2, h);
- c.lineTo(w * 0.8, h);
- c.stroke();
-
- c.ellipse(w * 0.6, 0, w * 0.4, h);
- c.stroke();
- }
- // else if (type === mxArchiMateApplication.prototype.cst.COLLABORATION)
- // {
- // c.translate(0, 3);
- // h = h - 6;
- //
- // c.ellipse(0, 0, w * 0.6, h);
- // c.stroke();
- // c.ellipse(w * 0.4, 0, w * 0.6, h);
- // c.stroke();
- // }
- };
- mxCellRenderer.registerShape(mxArchiMateApplication.prototype.cst.APPLICATION, mxArchiMateApplication);
- //**********************************************************************************************************************************************************
- //Tech
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateTech(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(mxArchiMateTech, mxShape);
- mxArchiMateTech.prototype.cst = {
- TECH : 'mxgraph.archimate.tech',
- TYPE : 'techType',
- DEVICE : 'device',
- PLATEAU : 'plateau'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateTech.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- c.translate(w - 30, 15);
- this.foreground(c, w - 30, 15, 15, 15);
- };
- mxArchiMateTech.prototype.background = function(c, x, y, w, h)
- {
- c.begin();
- c.moveTo(0, 10);
- c.lineTo(10, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h - 10);
- c.lineTo(w - 10, h);
- c.lineTo(0, h);
- c.close();
- c.moveTo(0, 10);
- c.lineTo(w - 10, 10);
- c.lineTo(w - 10, h);
- c.moveTo(w, 0);
- c.lineTo(w - 10, 10);
- c.fillAndStroke();
- };
- mxArchiMateTech.prototype.foreground = function(c, x, y, w, h)
- {
- var type = mxUtils.getValue(this.style, mxArchiMateTech.prototype.cst.TYPE, mxArchiMateTech.prototype.cst.DEVICE);
-
- c.setDashed(false);
-
- if (type === mxArchiMateTech.prototype.cst.DEVICE)
- {
- c.roundrect(0, 0, w, h * 0.88, w * 0.05, h * 0.05);
- c.stroke();
- c.begin();
- c.moveTo(w * 0.1, h * 0.88);
- c.lineTo(0, h);
- c.lineTo(w, h);
- c.lineTo(w * 0.9, h * 0.88);
- c.stroke();
- }
- else if (type === mxArchiMateTech.prototype.cst.PLATEAU)
- {
- var strokeColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000');
- c.setFillColor(strokeColor);
-
- c.rect(w * 0.4, 0, w * 0.6, h * 0.2);
- c.fill();
-
- c.rect(w * 0.2, h * 0.4, w * 0.6, h * 0.2);
- c.fill();
-
- c.rect(0, h * 0.8, w * 0.6, h * 0.2);
- c.fill();
- }
- };
- mxCellRenderer.registerShape(mxArchiMateTech.prototype.cst.TECH, mxArchiMateTech);
- //**********************************************************************************************************************************************************
- //Motivational
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateMotivational(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(mxArchiMateMotivational, mxShape);
- mxArchiMateMotivational.prototype.cst = {
- MOTIV : 'mxgraph.archimate.motiv',
- TYPE : 'motivType',
- STAKE : 'stake',
- DRIVER : 'driver',
- ASSESSMENT : 'assess',
- GOAL : 'goal',
- REQUIREMENT : 'req',
- CONSTRAINT : 'const',
- PRINCIPLE : 'princ'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateMotivational.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- c.translate(w - 20, 5);
- this.foreground(c, w - 20, 5, 15, 15);
- };
- mxArchiMateMotivational.prototype.background = function(c, x, y, w, h)
- {
- c.begin();
- c.moveTo(10, 0);
- c.lineTo(w - 10, 0);
- c.lineTo(w, 10);
- c.lineTo(w, h - 10);
- c.lineTo(w - 10, h);
- c.lineTo(10, h);
- c.lineTo(0, h - 10);
- c.lineTo(0, 10);
- c.close();
- c.fillAndStroke();
- };
- mxArchiMateMotivational.prototype.foreground = function(c, x, y, w, h)
- {
- var type = mxUtils.getValue(this.style, mxArchiMateMotivational.prototype.cst.TYPE, mxArchiMateMotivational.prototype.cst.STAKE);
-
- c.setDashed(false);
-
- if (type === mxArchiMateMotivational.prototype.cst.STAKE)
- {
- c.translate(0, 4);
- h = h - 8;
- c.begin();
- c.moveTo(w * 0.8, 0);
- c.lineTo(w * 0.2, 0);
- c.arcTo(w * 0.2, h * 0.5, 0, 0, 0, w * 0.2, h);
- c.lineTo(w * 0.8, h);
- c.stroke();
-
- c.ellipse(w * 0.6, 0, w * 0.4, h);
- c.stroke();
- }
- else if (type === mxArchiMateMotivational.prototype.cst.DRIVER)
- {
- c.ellipse(w * 0.1, h * 0.1, w * 0.8, h * 0.8);
- c.stroke();
-
- c.begin();
- c.moveTo(0, h * 0.5);
- c.lineTo(w, h * 0.5);
- c.moveTo(w * 0.5, 0);
- c.lineTo(w * 0.5, h);
- c.moveTo(w * 0.145, h * 0.145);
- c.lineTo(w * 0.855, h * 0.855);
- c.moveTo(w * 0.145, h * 0.855);
- c.lineTo(w * 0.855, h * 0.145);
- c.stroke();
-
- var strokeColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000');
- c.setFillColor(strokeColor);
-
- c.ellipse(w * 0.35, h * 0.35, w * 0.3, h * 0.3);
- c.fillAndStroke();
- }
- else if (type === mxArchiMateMotivational.prototype.cst.ASSESSMENT)
- {
- c.ellipse(w * 0.2, 0, w * 0.8, h * 0.8);
- c.stroke();
-
- c.begin();
- c.moveTo(0, h);
- c.lineTo(w * 0.32, h * 0.68);
- c.stroke();
- }
- else if (type === mxArchiMateMotivational.prototype.cst.GOAL)
- {
- c.ellipse(0, 0, w, h);
- c.stroke();
- c.ellipse(w * 0.15, h * 0.15, w * 0.7, h * 0.7);
- c.stroke();
- var strokeColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000');
- c.setFillColor(strokeColor);
- c.ellipse(w * 0.3, h * 0.3, w * 0.4, h * 0.4);
- c.fillAndStroke();
- }
- else if (type === mxArchiMateMotivational.prototype.cst.REQUIREMENT)
- {
- c.translate(0, 4);
- h = h - 8;
- c.begin();
- c.moveTo(w * 0.25, 0);
- c.lineTo(w, 0);
- c.lineTo(w * 0.75, h);
- c.lineTo(0, h);
- c.close();
- c.stroke();
- }
- else if (type === mxArchiMateMotivational.prototype.cst.CONSTRAINT)
- {
- c.translate(0, 4);
- h = h - 8;
- c.begin();
- c.moveTo(w * 0.25, 0);
- c.lineTo(w, 0);
- c.lineTo(w * 0.75, h);
- c.lineTo(0, h);
- c.close();
- c.moveTo(w * 0.45, 0);
- c.lineTo(w * 0.2, h);
- c.stroke();
- }
- else if (type === mxArchiMateMotivational.prototype.cst.PRINCIPLE)
- {
- c.begin();
- c.moveTo(w * 0.05, h * 0.05);
- c.arcTo(w * 2.3, h * 2.3, 0, 0, 1, w * 0.95, h * 0.05);
- c.arcTo(w * 2.3, h * 2.3, 0, 0, 1, w * 0.95, h * 0.95);
- c.arcTo(w * 2.3, h * 2.3, 0, 0, 1, w * 0.05, h * 0.95);
- c.arcTo(w * 2.3, h * 2.3, 0, 0, 1, w * 0.05, h * 0.05);
- c.close();
- c.stroke();
-
- var strokeColor = mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000');
- c.setFillColor(strokeColor);
-
- c.begin();
- c.moveTo(w * 0.45, h * 0.7);
- c.lineTo(w * 0.42, h * 0.15);
- c.lineTo(w * 0.58, h * 0.15);
- c.lineTo(w * 0.55, h * 0.7);
- c.close();
- c.fill();
-
- c.rect(w * 0.45, h * 0.75, w * 0.1, h * 0.1);
- c.fill();
- }
- };
- mxCellRenderer.registerShape(mxArchiMateMotivational.prototype.cst.MOTIV, mxArchiMateMotivational);
- //**********************************************************************************************************************************************************
- //Representation
- //**********************************************************************************************************************************************************
- /**
- * Extends mxShape.
- */
- function mxArchiMateGap(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(mxArchiMateGap, mxShape);
- mxArchiMateGap.prototype.cst = {
- GAP : 'mxgraph.archimate.gap'
- };
- /**
- * Function: paintVertexShape
- *
- * Paints the vertex shape.
- */
- mxArchiMateGap.prototype.paintVertexShape = function(c, x, y, w, h)
- {
- c.translate(x, y);
- this.background(c, 0, 0, w, h);
- c.setShadow(false);
- c.translate(w - 20, 5);
- this.foreground(c, w - 20, 5, 15, 15);
- };
- mxArchiMateGap.prototype.background = function(c, x, y, w, h)
- {
- c.begin();
- c.moveTo(0, 0);
- c.lineTo(w, 0);
- c.lineTo(w, h * 0.85);
- c.arcTo(w * 0.35, h * 0.35, 0, 0, 0, w * 0.5, h * 0.85);
- c.arcTo(w * 0.35, h * 0.35, 0, 0, 1, 0, h * 0.85);
- c.close();
- c.fillAndStroke();
- };
- mxArchiMateGap.prototype.foreground = function(c, x, y, w, h)
- {
- c.setDashed(false);
-
- c.translate(0, 2);
- h = h - 4;
- c.ellipse(w * 0.15, 0, w * 0.7, h);
- c.stroke();
-
- c.begin();
- c.moveTo(0, h * 0.35);
- c.lineTo(w, h * 0.35);
- c.moveTo(0, h * 0.65);
- c.lineTo(w, h * 0.65);
- c.stroke();
- };
- mxCellRenderer.registerShape(mxArchiMateGap.prototype.cst.GAP, mxArchiMateGap);
|