summaryrefslogtreecommitdiffstats
path: root/qooxdoo
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2008-06-13 23:54:05 +0200
committerTobi Oetiker <tobi@oetiker.ch>2008-06-13 23:54:05 +0200
commitc004881d0261bbe21d1fed756f08f8f00aadf00d (patch)
treedf49d32bf060cfbd32c5454006e04619715dd46c /qooxdoo
parentf658d2b70e0f2b1a89fbef367ad3f06e50d3f4e2 (diff)
downloadsmokeping-c004881d0261bbe21d1fed756f08f8f00aadf00d.tar.gz
smokeping-c004881d0261bbe21d1fed756f08f8f00aadf00d.tar.xz
initial
Diffstat (limited to 'qooxdoo')
-rw-r--r--qooxdoo/source/class/Smokeping/GraphShadow.js94
1 files changed, 94 insertions, 0 deletions
diff --git a/qooxdoo/source/class/Smokeping/GraphShadow.js b/qooxdoo/source/class/Smokeping/GraphShadow.js
new file mode 100644
index 0000000..6460f48
--- /dev/null
+++ b/qooxdoo/source/class/Smokeping/GraphShadow.js
@@ -0,0 +1,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();
+ }
+ }
+ }
+});
+