Lines Matching refs:mxBpmnShape

27 function mxBpmnShape(bounds, fill, stroke, strokewidth)  class
39 mxUtils.extend(mxBpmnShape, mxShape);
41 mxBpmnShape.prototype.customProperties = [
76 mxBpmnShape.prototype.eventTypeEnum = {
88 mxBpmnShape.prototype.eventEnum = {
106 mxBpmnShape.prototype.miscEnum = {
117 mxBpmnShape.prototype.paintVertexShape = function(c, x, y, w, h)
119 this.redrawPath(c, x, y, w, h, mxBpmnShape.prototype.miscEnum.BACKGROUND);
120 …var bg = mxUtils.getValue(this.style, mxBpmnShape.prototype.miscEnum.BACKGROUND, mxBpmnShape.proto…
122 if (bg === mxBpmnShape.prototype.eventTypeEnum.GATEWAY)
127 this.redrawPath(c, x, y, w, h, mxBpmnShape.prototype.miscEnum.OUTLINE);
128 this.redrawPath(c, x, y, w, h, mxBpmnShape.prototype.miscEnum.SYMBOL);
136 mxBpmnShape.prototype.redrawPath = function(c, x, y, w, h, layer)
138 …var bg = mxUtils.getValue(this.style, mxBpmnShape.prototype.miscEnum.BACKGROUND, mxBpmnShape.proto…
140 if (layer == mxBpmnShape.prototype.miscEnum.BACKGROUND)
153 else if (layer == mxBpmnShape.prototype.miscEnum.OUTLINE)
155 if (bg === mxBpmnShape.prototype.eventTypeEnum.GATEWAY)
188 …var o = mxUtils.getValue(this.style, mxBpmnShape.prototype.miscEnum.OUTLINE, mxBpmnShape.prototype…
196 f.call(this, c, x, y, w, h, bg === mxBpmnShape.prototype.eventTypeEnum.GATEWAY);
200 else if (layer == mxBpmnShape.prototype.miscEnum.SYMBOL)
202 if (bg === mxBpmnShape.prototype.eventTypeEnum.GATEWAY)
208 var s = mxUtils.getValue(this.style, mxBpmnShape.prototype.miscEnum.SYMBOL, null);
218 …var o = mxUtils.getValue(this.style, mxBpmnShape.prototype.miscEnum.OUTLINE, mxBpmnShape.prototype…
220 if (s === mxBpmnShape.prototype.eventEnum.MESSAGE)
226 else if (s === mxBpmnShape.prototype.eventEnum.TIMER)
232 else if (s === mxBpmnShape.prototype.eventEnum.ESCALATION)
238 else if (s === mxBpmnShape.prototype.eventEnum.CONDITIONAL)
244 else if (s === mxBpmnShape.prototype.eventEnum.LINK)
250 else if (s === mxBpmnShape.prototype.eventEnum.ERROR)
256 else if (s === mxBpmnShape.prototype.eventEnum.CANCEL)
262 else if (s === mxBpmnShape.prototype.eventEnum.COMPENSATION)
268 else if (s === mxBpmnShape.prototype.eventEnum.SIGNAL)
274 else if (s === mxBpmnShape.prototype.eventEnum.MULTIPLE)
280 else if (s === mxBpmnShape.prototype.eventEnum.PAR_MULTI)
286 else if (s === mxBpmnShape.prototype.eventEnum.TERMINATE)
292 else if (s === mxBpmnShape.prototype.eventEnum.GW_EXCLUSIVE)
304 …else if (o === mxBpmnShape.prototype.eventTypeEnum.THROWING || o === mxBpmnShape.prototype.eventTy…
317 …else if (o === mxBpmnShape.prototype.eventTypeEnum.THROWING || o === mxBpmnShape.prototype.eventTy…
328 mxBpmnShape.prototype.backgrounds = {
345 mxBpmnShape.prototype.outlines = {
461 mxBpmnShape.prototype.symbols = {
767 mxCellRenderer.registerShape('mxgraph.bpmn.shape', mxBpmnShape);