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
88
89
90
91
92
93
94
|
/* ************************************************************************
#module(Smokeping)
************************************************************************ */
/**
* The data representation of a Smokeping Graph
*/
qx.Class.define('Smokeping.GraphShadow',
{
extend: qx.core.Object,
/*
*****************************************************************************
CONSTRUCTOR
*****************************************************************************
*/
construct : function() {
this.base(arguments);
},
/*
*****************************************************************************
MEMBERS
*****************************************************************************
*/
properties: {
/** Width of the graph canvas in pixels */
width :
{
check : "Number",
nullable : true,
themeable : false
},
/** height of the graph canvas in pixels */
height :
{
check : "Number",
nullable : true,
themeable : false
},
/** start of the graph in seconds since 1970 */
start :
{
check : "Number",
nullable : true,
themeable : false
},
/** end of the graph in seconds since 1970 */
end :
{
check : "Number",
nullable : true,
themeable : false
},
/** upper border of the graph */
top :
{
check : "Number",
nullable : true,
themeable : false
},
/** bottom border of the graph */
bottom :
{
check : "Number",
nullable : true,
themeable : false
},
/** url to the cgi which produces the graphs */
cgi :
{
check : "String",
nullable : true,
themeable : false
},
/** which data source should we use for the graph */
data :
{
check : "String",
nullable : true,
themeable : false
}
},
members: {
getSrc: function(){
with(this){
return getCgi()+'?g='+getData()+';w='+getWidth()+';h='+getHeight()+';s='+getStart()+';e='+getEnd()+';t='+getTop()+';b='+getBottom();
}
}
}
});
|