Lines Matching refs:prototype

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 = {
792 mxShapeBpmn2SendMarker.prototype.cst = {
801 mxShapeBpmn2SendMarker.prototype.paintVertexShape = function(c, x, y, w, h)
817 mxCellRenderer.registerShape(mxShapeBpmn2SendMarker.prototype.cst.SEND, mxShapeBpmn2SendMarker);
835 mxShapeBpmnEvent.prototype.eventTypeEnum = {
846 mxShapeBpmnEvent.prototype.eventEnum = {
861 mxShapeBpmnEvent.prototype.miscEnum = {
865 mxShapeBpmnEvent.prototype.customProperties = [
866 …{name: mxShapeBpmnEvent.prototype.miscEnum.SYMBOL, dispName: 'Event', type: 'enum', defVal:mxShape…
867 enumList: [{val: mxShapeBpmnEvent.prototype.eventEnum.GENERAL, dispName: 'General'},
868 {val: mxShapeBpmnEvent.prototype.eventEnum.MESSAGE, dispName: 'Message'},
869 {val: mxShapeBpmnEvent.prototype.eventEnum.TIMER, dispName: 'Timer'},
870 {val: mxShapeBpmnEvent.prototype.eventEnum.ESCALATION, dispName: 'Escalation'},
871 {val: mxShapeBpmnEvent.prototype.eventEnum.CONDITIONAL, dispName: 'Conditional'},
872 {val: mxShapeBpmnEvent.prototype.eventEnum.LINK, dispName: 'Link'},
873 {val: mxShapeBpmnEvent.prototype.eventEnum.ERROR, dispName: 'Error'},
874 {val: mxShapeBpmnEvent.prototype.eventEnum.CANCEL, dispName: 'Cancel'},
875 {val: mxShapeBpmnEvent.prototype.eventEnum.COMPENSATION, dispName: 'Compensation'},
876 {val: mxShapeBpmnEvent.prototype.eventEnum.SIGNAL, dispName: 'Signal'},
877 {val: mxShapeBpmnEvent.prototype.eventEnum.MULTIPLE, dispName: 'Multiple'},
878 {val: mxShapeBpmnEvent.prototype.eventEnum.PAR_MULTI, dispName: 'Parallel Multiple'},
879 {val: mxShapeBpmnEvent.prototype.eventEnum.TERMINATE, dispName: 'Terminate'}]
881 …{name: mxShapeBpmnEvent.prototype.miscEnum.OUTLINE, dispName: 'Event Type', type: 'enum', defVal:m…
882 enumList: [{val: mxShapeBpmnEvent.prototype.eventTypeEnum.START_STANDARD, dispName: 'Standard'},
883 {val: mxShapeBpmnEvent.prototype.eventTypeEnum.EVENT_SP_INT, dispName: 'Interrupting'},
884 … {val: mxShapeBpmnEvent.prototype.eventTypeEnum.EVENT_SP_NONINT, dispName: 'Non-Interrupting'},
885 {val: mxShapeBpmnEvent.prototype.eventTypeEnum.CATCHING, dispName: 'Catching'},
886 {val: mxShapeBpmnEvent.prototype.eventTypeEnum.BOUND_INT, dispName: 'Bound Interrupting'},
887 … {val: mxShapeBpmnEvent.prototype.eventTypeEnum.BOUND_NONINT, dispName: 'Bound Non-Interrupting'},
888 {val: mxShapeBpmnEvent.prototype.eventTypeEnum.THROWING, dispName: 'Throwing'},
889 {val: mxShapeBpmnEvent.prototype.eventTypeEnum.END, dispName: 'End'},
890 {val: mxShapeBpmnEvent.prototype.eventTypeEnum.NONE, dispName: 'None'}]
898 mxShapeBpmnEvent.prototype.paintVertexShape = function(c, x, y, w, h)
904 mxShapeBpmnEvent.prototype.strictDrawShape = function(c, x, y, w, h, outline, symbol)
914 var f = mxShapeBpmnEvent.prototype.outlines[outline];
931 var f = mxShapeBpmnEvent.prototype.symbols[symbol];
1045 mxShapeBpmnEvent.prototype.outlines = {
1134 mxShapeBpmnEvent.prototype.symbols = {
1377 mxShapeBpmnGateway.prototype.customProperties = mxShapeBpmnEvent.prototype.customProperties;
1378 mxShapeBpmnGateway.prototype.eventTypeEnum = mxShapeBpmnEvent.prototype.eventTypeEnum;
1379 mxShapeBpmnGateway.prototype.eventEnum = mxShapeBpmnEvent.prototype.eventEnum;
1380 mxShapeBpmnGateway.prototype.miscEnum = mxShapeBpmnEvent.prototype.miscEnum;
1382 mxShapeBpmnGateway.prototype.customProperties = mxShapeBpmnGateway.prototype.customProperties.conca…
1394 mxShapeBpmnGateway.prototype.paintVertexShape = function(c, x, y, w, h)
1419 …mxShapeBpmnEvent.prototype.strictDrawShape.call(this, c, (w - symbolW) * 0.5, (h - symbolH) * 0.5,…
1522 mxCellRenderer.prototype.getShape('mxgraph.basic.rect').call(this);
1535 mxUtils.extend(mxShapeBpmn2Task, mxCellRenderer.prototype.getShape('mxgraph.basic.rect'));
1537 mxShapeBpmn2Task.prototype.customProperties = [
1563 mxShapeBpmn2Task.prototype.customProperties = mxShapeBpmn2Task.prototype.customProperties.concat(mx…
1564 …ask.prototype.customProperties = mxShapeBpmn2Task.prototype.customProperties.concat(mxCellRenderer…
1566 mxShapeBpmn2Task.prototype.eventTypeEnum = mxShapeBpmnEvent.prototype.eventTypeEnum;
1567 mxShapeBpmn2Task.prototype.eventEnum = mxShapeBpmnEvent.prototype.eventEnum;
1568 mxShapeBpmn2Task.prototype.miscEnum = mxShapeBpmnEvent.prototype.miscEnum;
1570 mxShapeBpmn2Task.prototype.cst = {
1579 mxShapeBpmn2Task.prototype.paintVertexShape = function(c, x, y, w, h)
1591 var superShape = mxCellRenderer.prototype.getShape('mxgraph.basic.rect');
1610 superShape.prototype.strictDrawShape.call(this, c, 0, 0, w, h, overrideStyles);
1755 mxShapeBpmn2SendMarker.prototype.paintVertexShape(c, 4, 4, 18, 13);
1760 mxShapeBpmn2SendMarker.prototype.paintVertexShape(c, 4, 4, 18, 13);
1807 mxShapeBpmnEvent.prototype.strictDrawShape.call(this, c, 0, 0, symbolW, symbolH, outline, symbol);
1811 mxCellRenderer.registerShape(mxShapeBpmn2Task.prototype.cst.TASK, mxShapeBpmn2Task);
1821 mxCellRenderer.prototype.getShape('note').call(this);
1834 mxUtils.extend(mxShapeBpmn2Data, mxCellRenderer.prototype.getShape('note'));
1836 mxShapeBpmn2Data.prototype.cst = {
1840 mxShapeBpmn2Data.prototype.customProperties = [
1853 mxShapeBpmn2Data.prototype.paintVertexShape = function(c, x, y, w, h)
1855 var superShape = mxCellRenderer.prototype.getShape('note');
1856 superShape.prototype.paintVertexShape.call(this, c, x, y, w, h);
1913 mxCellRenderer.registerShape(mxShapeBpmn2Data.prototype.cst.DATA, mxShapeBpmn2Data);
1915 Graph.handleFactory[mxShapeBpmn2Data.prototype.cst.DATA] = Graph.handleFactory['note'];
1925 mxCellRenderer.prototype.getShape('note').call(this);
1940 mxShapeBpmn2Swimlane.prototype.cst = {
1944 mxShapeBpmn2Swimlane.prototype.customProperties = [
1953 mxShapeBpmn2Swimlane.prototype.paintVertexShape = function(c, x, y, w, h)
1955 mxSwimlane.prototype.paintVertexShape.call(this, c, x, y, w, h);
1977 mxCellRenderer.registerShape(mxShapeBpmn2Swimlane.prototype.cst.SWIMLANE, mxShapeBpmn2Swimlane);
1979 Graph.handleFactory[mxShapeBpmn2Swimlane.prototype.cst.SWIMLANE] = Graph.handleFactory['swimlane'];
2001 mxShapeBpmn2Conversation.prototype.customProperties = [
2009 mxShapeBpmn2Conversation.prototype.cst = {
2018 mxShapeBpmn2Conversation.prototype.paintVertexShape = function(c, x, y, w, h)
2063 mxCellRenderer.registerShape(mxShapeBpmn2Conversation.prototype.cst.CONVERSATION, mxShapeBpmn2Conve…