Lines Matching refs:mxShapeGmdlSwitch
77 function mxShapeGmdlSwitch(bounds, fill, stroke, strokewidth) function
89 mxUtils.extend(mxShapeGmdlSwitch, mxShape);
91 mxShapeGmdlSwitch.prototype.cst = { class
98 mxShapeGmdlSwitch.prototype.customProperties = [
108 mxShapeGmdlSwitch.prototype.paintVertexShape = function(c, x, y, w, h)
112 …var state = mxUtils.getValue(this.style, mxShapeGmdlSwitch.prototype.cst.STATE, mxShapeGmdlSwitch.…
118 mxShapeGmdlSwitch.prototype.background = function(c, x, y, w, h, state)
122 if (state === mxShapeGmdlSwitch.prototype.cst.STATE_ON)
147 mxShapeGmdlSwitch.prototype.foreground = function(c, x, y, w, h, state)
151 if (state === mxShapeGmdlSwitch.prototype.cst.STATE_ON)
164 mxCellRenderer.registerShape(mxShapeGmdlSwitch.prototype.cst.SHAPE_SWITCH, mxShapeGmdlSwitch);