blob: e620fa70f7190557647ed52d1211abe30cafbc65 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
namespace Icinga\Chart\Primitive;
use DOMElement;
use Icinga\Chart\Render\RenderContext;
/**
* Drawable for the SVG animate tag
*/
class Animation implements Drawable
{
/**
* The attribute to animate
*
* @var string
*/
private $attribute;
/**
* The 'from' value
*
* @var mixed
*/
private $from;
/**
* The to value
*
* @var mixed
*/
private $to;
/**
* The begin value (in seconds)
*
* @var float
*/
private $begin = 0;
/**
* The duration value (in seconds)
*
* @var float
*/
private $duration = 0.5;
/**
* Create an animation object
*
* @param string $attribute The attribute to animate
* @param string $from The from value for the animation
* @param string $to The to value for the animation
* @param float $duration The duration of the duration
* @param float $begin The begin of the duration
*/
public function __construct($attribute, $from, $to, $duration = 0.5, $begin = 0.0)
{
$this->attribute = $attribute;
$this->from = $from;
$this->to = $to;
$this->duration = $duration;
$this->begin = $begin;
}
/**
* Create the SVG representation from this Drawable
*
* @param RenderContext $ctx The context to use for rendering
* @return DOMElement The SVG Element
*/
public function toSvg(RenderContext $ctx)
{
$animate = $ctx->getDocument()->createElement('animate');
$animate->setAttribute('attributeName', $this->attribute);
$animate->setAttribute('attributeType', 'XML');
$animate->setAttribute('from', $this->from);
$animate->setAttribute('to', $this->to);
$animate->setAttribute('begin', $this->begin . 's');
$animate->setAttribute('dur', $this->duration . 's');
$animate->setAttribute('fill', "freeze");
return $animate;
}
}
|