Also remove crufty old gui.plugin.plot
authorW. Trevor King <wking@drexel.edu>
Sat, 31 Jul 2010 20:20:08 +0000 (16:20 -0400)
committerW. Trevor King <wking@drexel.edu>
Sat, 31 Jul 2010 20:20:08 +0000 (16:20 -0400)
hooke/ui/gui/plugin/plot.py [deleted file]

diff --git a/hooke/ui/gui/plugin/plot.py b/hooke/ui/gui/plugin/plot.py
deleted file mode 100644 (file)
index 26cd8a2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-
-'''
-plot.py
-
-Global settings for plots
-
-Copyright 2010 by Dr. Rolf Schmidt (Concordia University, Canada)
-
-This program is released under the GNU General Public License version 2.
-'''
-
-class plotCommands:
-
-    def do_preferences(self):
-        active_file = self.GetActiveFile()
-        for curve in active_file.plot.curves:
-            curve.decimals.x = self.GetIntFromConfig('plot', 'preferences', 'x_decimals')
-            curve.decimals.y = self.GetIntFromConfig('plot', 'preferences', 'y_decimals')
-            curve.legend = self.GetBoolFromConfig('plot', 'preferences', 'legend')
-            curve.prefix.x = self.GetStringFromConfig('plot', 'preferences', 'x_prefix')
-            curve.prefix.y = self.GetStringFromConfig('plot', 'preferences', 'y_prefix')
-
-        self.UpdatePlot();