From: W. Trevor King Date: Sat, 31 Jul 2010 20:20:08 +0000 (-0400) Subject: Also remove crufty old gui.plugin.plot X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=495cc14b1cb19c197c5f006617bd78da984b8585;p=hooke.git Also remove crufty old gui.plugin.plot --- diff --git a/hooke/ui/gui/plugin/plot.py b/hooke/ui/gui/plugin/plot.py deleted file mode 100644 index 26cd8a2..0000000 --- a/hooke/ui/gui/plugin/plot.py +++ /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();