Lines Matching refs:mxShapeBpmnEvent

821 function mxShapeBpmnEvent(bounds, fill, stroke, strokewidth)  class
833 mxUtils.extend(mxShapeBpmnEvent, mxShape);
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 = {
1360 mxCellRenderer.registerShape('mxgraph.bpmn.event', mxShapeBpmnEvent);
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;
1419mxShapeBpmnEvent.prototype.strictDrawShape.call(this, c, (w - symbolW) * 0.5, (h - symbolH) * 0.5,…
1563 …stomProperties = mxShapeBpmn2Task.prototype.customProperties.concat(mxShapeBpmnEvent.prototype.cus…
1566 mxShapeBpmn2Task.prototype.eventTypeEnum = mxShapeBpmnEvent.prototype.eventTypeEnum;
1567 mxShapeBpmn2Task.prototype.eventEnum = mxShapeBpmnEvent.prototype.eventEnum;
1568 mxShapeBpmn2Task.prototype.miscEnum = mxShapeBpmnEvent.prototype.miscEnum;
1807 mxShapeBpmnEvent.prototype.strictDrawShape.call(this, c, 0, 0, symbolW, symbolH, outline, symbol);