blob: 26688c3a6f2303cc2e94a09820c0b9d1b5673df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/**
* $Id: mxRectangleShape.js,v 1.17 2012-09-26 07:51:29 gaudenz Exp $
* Copyright (c) 2006-2010, JGraph Ltd
*/
/**
* Class: mxRectangleShape
*
* Extends <mxShape> to implement a rectangle shape.
* This shape is registered under <mxConstants.SHAPE_RECTANGLE>
* in <mxCellRenderer>.
*
* Constructor: mxRectangleShape
*
* Constructs a new rectangle shape.
*
* Parameters:
*
* bounds - <mxRectangle> that defines the bounds. This is stored in
* <mxShape.bounds>.
* fill - String that defines the fill color. This is stored in <fill>.
* stroke - String that defines the stroke color. This is stored in <stroke>.
* strokewidth - Optional integer that defines the stroke width. Default is
* 1. This is stored in <strokewidth>.
*/
function mxRectangleShape(bounds, fill, stroke, strokewidth)
{
this.bounds = bounds;
this.fill = fill;
this.stroke = stroke;
this.strokewidth = (strokewidth != null) ? strokewidth : 1;
};
/**
* Extends mxShape.
*/
mxRectangleShape.prototype = new mxShape();
mxRectangleShape.prototype.constructor = mxRectangleShape;
/**
* Function: createVml
*
* Creates and returns the VML node to represent this shape.
*/
mxRectangleShape.prototype.createVml = function()
{
var name = (this.isRounded) ? 'v:roundrect' : 'v:rect';
var node = document.createElement(name);
this.configureVmlShape(node);
return node;
};
/**
* Function: createSvg
*
* Creates and returns the SVG node to represent this shape.
*/
mxRectangleShape.prototype.createSvg = function()
{
return this.createSvgGroup('rect');
};
|