summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/class/Smokeping/ui/Navigator.js
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2007-11-17 17:36:30 +0100
committerTobi Oetiker <tobi@oetiker.ch>2007-11-17 17:36:30 +0100
commit688bea6958d0f12613fab7bfefe5f94e831ce05f (patch)
tree06dba871f9ee8babebe995d5c0c7bcb12bbb0412 /qooxdoo/source/class/Smokeping/ui/Navigator.js
parent1620cd2abeb29cd7cd24e1258f6398053a4234f7 (diff)
downloadsmokeping-688bea6958d0f12613fab7bfefe5f94e831ce05f.tar.gz
smokeping-688bea6958d0f12613fab7bfefe5f94e831ce05f.tar.xz
new classes
Diffstat (limited to 'qooxdoo/source/class/Smokeping/ui/Navigator.js')
-rw-r--r--qooxdoo/source/class/Smokeping/ui/Navigator.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/qooxdoo/source/class/Smokeping/ui/Navigator.js b/qooxdoo/source/class/Smokeping/ui/Navigator.js
new file mode 100644
index 0000000..6247930
--- /dev/null
+++ b/qooxdoo/source/class/Smokeping/ui/Navigator.js
@@ -0,0 +1,37 @@
+/* ************************************************************************
+#module(Smokeping)
+************************************************************************ */
+
+/**
+ * The widget showing a detail graph
+ */
+
+qx.Class.define('Smokeping.ui.Navigator',
+{
+ extend: qx.ui.window.Window,
+
+ /*
+ *****************************************************************************
+ CONSTRUCTOR
+ *****************************************************************************
+ */
+
+ /**
+ * @param graph_url {String} Url to the explorable graph
+ *
+ */
+
+ construct: function (image) {
+ with(this){
+ base(arguments,this.tr("Smokeping Graph Navigator"));
+ var plot = new qx.ui.basic.Image(image.getSource());
+ setZIndex(100000);
+ add(plot);
+ }
+
+ }
+
+
+});
+
+