Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/thirdparty/cairoplot-trunk/trunk/gtktests.py
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/cairoplot-trunk/trunk/gtktests.py')
-rwxr-xr-xthirdparty/cairoplot-trunk/trunk/gtktests.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/thirdparty/cairoplot-trunk/trunk/gtktests.py b/thirdparty/cairoplot-trunk/trunk/gtktests.py
deleted file mode 100755
index 5721260..0000000
--- a/thirdparty/cairoplot-trunk/trunk/gtktests.py
+++ /dev/null
@@ -1,32 +0,0 @@
-
-import gtk
-import cairoplot
-from cairoplot.handlers.gtk import GTKHandler
-
-class CairoPlotWindow(gtk.Window):
- """GtkWindow to display a plot."""
-
- def __init__(self):
- """Make a plot to test."""
- gtk.Window.__init__(self)
- self.connect("destroy", gtk.main_quit)
-
- # make plot handler
- handler = GTKHandler()
-
- # default data
- data = [ (-2,10), (0,0), (0,15), (1,5), (2,0), (3,-10), (3,5) ]
- plot = cairoplot.ScatterPlot(handler, data=data,
- width=500, height=500, background="white",
- border=20, axis=True, grid=True)
-
- handler.plot = plot
- self.add(handler)
- handler.show()
-
-
-if __name__ == "__main__":
- window = CairoPlotWindow()
- window.show()
- gtk.main()
-