1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
#/*##########################################################################
# Copyright (C) 2004-2014 European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF by the Software group.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This file is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
#############################################################################*/
__author__ = "V.A. Sole - ESRF Software Group"
__doc__ = """
A 1D plugin is a module that will be automatically added to the PyMca 1D window
in order to perform user defined operations of the plotted 1D data. It has to
inherit the PyMca.Plugin1DBase class and implement the methods:
getMethods
getMethodToolTip
applyMethod
and modify the static module variable MENU_TEXT and the static module function
getPlugin1DInstance according to the defined plugin.
These plugins will be compatible with any 1D-plot window that implements the Plot1D
interface. The plot window interface is described in the Plot1DBase Class.
The main items are reproduced here and can be directly accessed as plugin methods.
addCurve
getActiveCurve
getAllCurves
getGraphXLimits
getGraphYLimits
getGraphTitle
getGraphXTitle
getGraphYTitle
removeCurve
setActiveCurve
setGraphTitle
setGraphXLimits
setGraphYLimits
setGraphXTitle
setGraphYTitle
"""
import weakref
try:
from numpy import argsort, nonzero, take
except ImportError:
print("WARNING: numpy not present")
class Plugin1DBase(object):
def __init__(self, plotWindow, **kw):
"""
plotWindow is the object instantiating the plugin.
Unless one knows what (s)he is doing, only a proxy should be used.
I pass the actual instance to keep all doors open.
"""
self._plotWindow = weakref.proxy(plotWindow)
pass
#Window related functions
def addCurve(self, x, y, legend=None, info=None, replace=False, replot=True):
"""
Add the 1D curve given by x an y to the graph.
:param x: The data corresponding to the x axis
:type x: list or numpy.ndarray
:param y: The data corresponding to the y axis
:type y: list or numpy.ndarray
:param legend: The legend to be associated to the curve
:type legend: string or None
:param info: Dictionary of information associated to the curve
:type info: dict or None
:param replace: Flag to indicate if already existing curves are to be deleted
:type replace: boolean default False
:param replot: Flag to indicate plot is to be immediately updated
:type replot: boolean default True
"""
return self._plotWindow.addCurve(x, y, legend=legend, info=info,
replace=replace, replot=replot)
def getActiveCurve(self, just_legend=False):
"""
:param just_legend: Flag to specify the type of output required
:type just_legend: boolean
:return: legend of the active curve or list [x, y, legend, info]
:rtype: string or list
Function to access the graph currently active curve.
It returns None in case of not having an active curve.
Default output has the form:
xvalues, yvalues, legend, dict
where dict is a dictionnary containing curve info.
For the time being, only the plot labels associated to the
curve are warranted to be present under the keys xlabel, ylabel.
If just_legend is True:
The legend of the active curve (or None) is returned.
"""
return self._plotWindow.getActiveCurve(just_legend=just_legend)
def getAllCurves(self, just_legend=False):
"""
:param just_legend: Flag to specify the type of output required
:type just_legend: boolean
:return: legend of the curves or list [[x, y, legend, info], ...]
:rtype: list of strings or list of curves
It returns an empty list in case of not having any curve.
If just_legend is False:
It returns a list of the form:
[[xvalues0, yvalues0, legend0, dict0],
[xvalues1, yvalues1, legend1, dict1],
[...],
[xvaluesn, yvaluesn, legendn, dictn]]
or just an empty list.
If just_legend is True:
It returns a list of the form:
[legend0, legend1, ..., legendn]
or just an empty list.
"""
return self._plotWindow.getAllCurves(just_legend=just_legend)
def getMonotonicCurves(self):
"""
Convenience method that calls getAllCurves and makes sure that all of
the X values are strictly increasing.
:return: It returns a list of the form:
[[xvalues0, yvalues0, legend0, dict0],
[xvalues1, yvalues1, legend1, dict1],
[...],
[xvaluesn, yvaluesn, legendn, dictn]]
"""
allCurves = self.getAllCurves() * 1
for i in range(len(allCurves)):
curve = allCurves[i]
x, y, legend, info = curve[0:4]
# Sort
idx = argsort(x, kind='mergesort')
xproc = take(x, idx)
yproc = take(y, idx)
# Ravel, Increase
xproc = xproc.ravel()
idx = nonzero((xproc[1:] > xproc[:-1]))[0]
xproc = take(xproc, idx)
yproc = take(yproc, idx)
allCurves[i][0:2] = x, y
return allCurves
def getGraphXLimits(self):
"""
:return: Two floats with the X axis limits
Get the graph X limits.
"""
return self._plotWindow.getGraphXLimits()
def getGraphYLimits(self):
"""
Get the graph Y (left) limits.
:return: Two floats with the Y (left) axis limits
"""
return self._plotWindow.getGraphYLimits()
def getGraphTitle(self):
"""
:return: The graph title
:rtype: string
"""
return self._plotWindow.getGraphTitle()
def getGraphXTitle(self):
"""
:return: The graph X axis label
:rtype: string
"""
return self._plotWindow.getGraphXTitle()
def getGraphYTitle(self):
"""
:return: The graph Y axis label
:rtype: string
"""
return self._plotWindow.getGraphYTitle()
def setGraphXLimits(self, xmin, xmax, replot=False):
"""
Set the graph X limits.
:param xmin: minimum value of the axis
:type xmin: float
:param xmax: minimum value of the axis
:type xmax: float
:param replot: Flag to indicate plot is to be immediately updated
:type replot: boolean default False
"""
return self._plotWindow.setGraphXLimits(xmin, xmax, replot=replot)
def setGraphYLimits(self, ymin, ymax, replot=False):
"""
Set the graph Y (left) limits.
:param ymin: minimum value of the axis
:type ymin: float
:param ymax: minimum value of the axis
:type ymax: float
:param replot: Flag to indicate plot is to be immediately updated
:type replot: boolean default False
"""
return self._plotWindow.setGraphYLimits(ymin, ymax, replot=replot)
def removeCurve(self, legend, replot=True):
"""
Remove the curve associated to the supplied legend from the graph.
The graph will be updated if replot is true.
:param legend: The legend associated to the curve to be deleted
:type legend: string or None
:param replot: Flag to indicate plot is to be immediately updated
:type replot: boolean default True
"""
return self._plotWindow.removeCurve(legend, replot=replot)
def setActiveCurve(self, legend):
"""
Funtion to request the plot window to set the curve with the specified legend
as the active curve.
:param legend: The legend associated to the curve
:type legend: string
"""
return self._plotWindow.setActiveCurve(legend)
def setGraphTitle(self, title):
"""
:param title: The title to be set
:type title: string
"""
return self._plotWindow.setGraphTitle(title)
def setGraphXTitle(self, title):
"""
:param title: The title to be associated to the X axis
:type title: string
"""
return self._plotWindow.setGraphXTitle(title)
def setGraphYTitle(self, title):
"""
:param title: The title to be associated to the X axis
:type title: string
"""
return self._plotWindow.setGraphYTitle(title)
#Methods to be implemented by the plugin
def getMethods(self, plottype=None):
"""
:plottype: string or None for the case the plugin only support
one type of plots. Implemented values "SCAN", "MCA" or None
:return: A list with the NAMES associated to the callable methods
that are applicable to the specified type plot. The list can be empty.
:rtype: list[string]
"""
print("getMethods not implemented")
return []
def getMethodToolTip(self, name):
"""
Returns the help associated to the particular method name or None.
:param name: The method for which a tooltip is asked
:rtype: string
"""
return None
def getMethodPixmap(self, name):
"""
:param name: The method for which a pixmap is asked
:rtype: QPixmap or None
"""
return None
def applyMethod(self, name):
"""
The plugin is asked to apply the method associated to name.
"""
print("applyMethod not implemented")
return
MENU_TEXT = "Plugin1D Base"
def getPlugin1DInstance(plotWindow, **kw):
"""
This function will be called by the plot window instantiating and calling
the plugins. It passes itslef as first argument, but the default implementation
of the base class only keeps a weak reference to prevent cirvular references.
"""
ob = Plugin1DBase(plotWindow)
return ob
|