/usr/share/pyshared/PyMca/Plot1DWindowBase.py is in pymca 4.5.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | import sys
import os
import traceback
import PyMcaQt as qt
import Plot1D
from PyMca_Icons import IconDict
QTVERSION = qt.qVersion()
DEBUG = 0
class Plot1DWindowBase(qt.QWidget, Plot1D.Plot1D):
def __init__(self, parent=None, plugins=True, newplot=False,**kw):
qt.QWidget.__init__(self, parent)
Plot1D.Plot1D.__init__(self)
mainLayout = qt.QVBoxLayout(self)
mainLayout.setMargin(0)
mainLayout.setSpacing(2)
self.pluginsIconFlag = plugins
self.newplotIconsFlag = newplot
self.plotType=None # None, "SCAN", "MCA"
self._initIcons()
self._buildToolBar()
def _initIcons(self):
if QTVERSION < '4.0.0':
self.normalIcon = qt.QIconSet(qt.QPixmap(IconDict["normal"]))
self.zoomIcon = qt.QIconSet(qt.QPixmap(IconDict["zoom"]))
self.roiIcon = qt.QIconSet(qt.QPixmap(IconDict["roi"]))
self.peakIcon = qt.QIconSet(qt.QPixmap(IconDict["peak"]))
self.zoomResetIcon = qt.QIconSet(qt.QPixmap(IconDict["zoomreset"]))
self.roiResetIcon = qt.QIconSet(qt.QPixmap(IconDict["roireset"]))
self.peakResetIcon = qt.QIconSet(qt.QPixmap(IconDict["peakreset"]))
self.refreshIcon = qt.QIconSet(qt.QPixmap(IconDict["reload"]))
self.logxIcon = qt.QIconSet(qt.QPixmap(IconDict["logx"]))
self.logyIcon = qt.QIconSet(qt.QPixmap(IconDict["logy"]))
self.xAutoIcon = qt.QIconSet(qt.QPixmap(IconDict["xauto"]))
self.yAutoIcon = qt.QIconSet(qt.QPixmap(IconDict["yauto"]))
self.togglePointsIcon = qt.QIconSet(qt.QPixmap(IconDict["togglepoints"]))
self.fitIcon = qt.QIconSet(qt.QPixmap(IconDict["fit"]))
self.searchIcon = qt.QIconSet(qt.QPixmap(IconDict["peaksearch"]))
self.averageIcon = qt.QIconSet(qt.QPixmap(IconDict["average16"]))
self.deriveIcon = qt.QIconSet(qt.QPixmap(IconDict["derive"]))
self.smoothIcon = qt.QIconSet(qt.QPixmap(IconDict["smooth"]))
self.swapSignIcon = qt.QIconSet(qt.QPixmap(IconDict["swapsign"]))
self.yMinToZeroIcon = qt.QIconSet(qt.QPixmap(IconDict["ymintozero"]))
self.subtractIcon = qt.QIconSet(qt.QPixmap(IconDict["subtract"]))
self.printIcon = qt.QIconSet(qt.QPixmap(IconDict["fileprint"]))
self.saveIcon = qt.QIconSet(qt.QPixmap(IconDict["filesave"]))
else:
self.normalIcon = qt.QIcon(qt.QPixmap(IconDict["normal"]))
self.zoomIcon = qt.QIcon(qt.QPixmap(IconDict["zoom"]))
self.roiIcon = qt.QIcon(qt.QPixmap(IconDict["roi"]))
self.peakIcon = qt.QIcon(qt.QPixmap(IconDict["peak"]))
self.zoomResetIcon = qt.QIcon(qt.QPixmap(IconDict["zoomreset"]))
self.roiResetIcon = qt.QIcon(qt.QPixmap(IconDict["roireset"]))
self.peakResetIcon = qt.QIcon(qt.QPixmap(IconDict["peakreset"]))
self.refreshIcon = qt.QIcon(qt.QPixmap(IconDict["reload"]))
self.logxIcon = qt.QIcon(qt.QPixmap(IconDict["logx"]))
self.logyIcon = qt.QIcon(qt.QPixmap(IconDict["logy"]))
self.xAutoIcon = qt.QIcon(qt.QPixmap(IconDict["xauto"]))
self.yAutoIcon = qt.QIcon(qt.QPixmap(IconDict["yauto"]))
self.togglePointsIcon = qt.QIcon(qt.QPixmap(IconDict["togglepoints"]))
self.fitIcon = qt.QIcon(qt.QPixmap(IconDict["fit"]))
self.searchIcon = qt.QIcon(qt.QPixmap(IconDict["peaksearch"]))
self.averageIcon = qt.QIcon(qt.QPixmap(IconDict["average16"]))
self.deriveIcon = qt.QIcon(qt.QPixmap(IconDict["derive"]))
self.smoothIcon = qt.QIcon(qt.QPixmap(IconDict["smooth"]))
self.swapSignIcon = qt.QIcon(qt.QPixmap(IconDict["swapsign"]))
self.yMinToZeroIcon = qt.QIcon(qt.QPixmap(IconDict["ymintozero"]))
self.subtractIcon = qt.QIcon(qt.QPixmap(IconDict["subtract"]))
self.printIcon = qt.QIcon(qt.QPixmap(IconDict["fileprint"]))
self.saveIcon = qt.QIcon(qt.QPixmap(IconDict["filesave"]))
self.pluginIcon = qt.QIcon(qt.QPixmap(IconDict["plugin"]))
def _buildToolBar(self):
self.toolBar = qt.QWidget(self)
self.toolBarLayout = qt.QHBoxLayout(self.toolBar)
self.toolBarLayout.setMargin(0)
self.toolBarLayout.setSpacing(2)
self.layout().insertWidget(0, self.toolBar)
#Autoscale
self._addToolButton(self.zoomResetIcon,
self._zoomReset,
'Auto-Scale the Graph')
#y Autoscale
self.yAutoScaleButton = self._addToolButton(self.yAutoIcon,
self._yAutoScaleToggle,
'Toggle Autoscale Y Axis (On/Off)',
toggle = True)
if QTVERSION < '4.0.0':
self.yAutoScaleButton.setState(qt.QButton.On)
else:
self.yAutoScaleButton.setChecked(True)
self.yAutoScaleButton.setDown(True)
#x Autoscale
self.xAutoScaleButton = self._addToolButton(self.xAutoIcon,
self._xAutoScaleToggle,
'Toggle Autoscale X Axis (On/Off)',
toggle = True)
if QTVERSION < '4.0.0':
self.xAutoScaleButton.setState(qt.QButton.On)
else:
self.xAutoScaleButton.setChecked(True)
self.xAutoScaleButton.setDown(True)
#y Logarithmic
self.yLogButton = self._addToolButton(self.logyIcon,
self._toggleLogY,
'Toggle Logarithmic Y Axis (On/Off)',
toggle = True)
if QTVERSION < '4.0.0':
self.yLogButton.setState(qt.QButton.Off)
else:
self.yLogButton.setChecked(False)
self.yLogButton.setDown(False)
#toggle Points/Lines
tb = self._addToolButton(self.togglePointsIcon,
self._togglePointsSignal,
'Toggle Points/Lines')
#fit icon
self.fitButton = self._addToolButton(self.fitIcon,
self._fitIconSignal,
'Simple Fit of Active Curve')
if self.newplotIconsFlag:
tb = self._addToolButton(self.averageIcon,
self._averageIconSignal,
'Average Plotted Curves')
tb = self._addToolButton(self.deriveIcon,
self._deriveIconSignal,
'Take Derivative of Active Curve')
tb = self._addToolButton(self.smoothIcon,
self._smoothIconSignal,
'Smooth Active Curve')
tb = self._addToolButton(self.swapSignIcon,
self._swapSignIconSignal,
'Multiply Active Curve by -1')
tb = self._addToolButton(self.yMinToZeroIcon,
self._yMinToZeroIconSignal,
'Force Y Minimum to be Zero')
tb = self._addToolButton(self.subtractIcon,
self._subtractIconSignal,
'Subtract Active Curve')
#save
infotext = 'Save Active Curve or Widget'
tb = self._addToolButton(self.saveIcon,
self._saveIconSignal,
infotext)
if (QTVERSION > '4.0.0') and (self.pluginsIconFlag):
infotext = "Call/Load 1D Plugins"
tb = self._addToolButton(self.pluginIcon,
self._pluginClicked,
infotext)
self.toolBarLayout.addWidget(HorizontalSpacer(self.toolBar))
# ---print
tb = self._addToolButton(self.printIcon,
self.printGraph,
'Prints the Graph')
def _addToolButton(self, icon, action, tip, toggle=None):
tb = qt.QToolButton(self.toolBar)
if QTVERSION < '4.0.0':
tb.setIconSet(icon)
qt.QToolTip.add(tb,tip)
if toggle is not None:
if toggle:
tb.setToggleButton(1)
else:
tb.setIcon(icon)
tb.setToolTip(tip)
if toggle is not None:
if toggle:
tb.setCheckable(1)
self.toolBarLayout.addWidget(tb)
self.connect(tb,qt.SIGNAL('clicked()'), action)
return tb
def _zoomReset(self):
print("reset zoom")
def _yAutoScaleToggle(self):
print("toggle Y auto scaling")
def _xAutoScaleToggle(self):
print("toggle X auto scaling")
def _toggleLogY(self):
print("toggle logarithmic Y scale")
def _togglePointsSignal(self):
print("toggle points signal")
def _fitIconSignal(self):
print("fit icon signal")
def _averageIconSignal(self):
print("average icon signal")
def _deriveIconSignal(self):
print("deriveIconSignal")
def _smoothIconSignal(self):
print("smoothIconSignal")
def _swapSignIconSignal(self):
print("_swapSignIconSignal")
def _yMinToZeroIconSignal(self):
print("_yMinToZeroIconSignal")
def _subtractIconSignal(self):
print("_subtractIconSignal")
def _saveIconSignal(self):
print("_saveIconSignal")
def _pluginClicked(self):
actionList = []
menu = qt.QMenu(self)
text = qt.QString("Reload")
menu.addAction(text)
actionList.append(text)
menu.addSeparator()
callableKeys = ["Dummy"]
for m in self.pluginList:
if m == "PyMcaPlugins.Plugin1DBase":
continue
module = sys.modules[m]
if hasattr(module, 'MENU_TEXT'):
text = qt.QString(module.MENU_TEXT)
else:
text = os.path.basename(module.__file__)
if text.endswith('.pyc'):
text = text[:-4]
elif text.endswith('.py'):
text = text[:-3]
text = qt.QString(text)
methods = self.pluginInstanceDict[m].getMethods(plottype=self.plotType)
if not len(methods):
continue
menu.addAction(text)
actionList.append(text)
callableKeys.append(m)
a = menu.exec_(qt.QCursor.pos())
if a is None:
return None
idx = actionList.index(a.text())
if idx == 0:
n = self.getPlugins()
if n < 1:
msg = qt.QMessageBox(self)
msg.setIcon(qt.QMessageBox.Information)
msg.setText("Problem loading plugins")
msg.exec_()
return
key = callableKeys[idx]
methods = self.pluginInstanceDict[key].getMethods(plottype="SCAN")
if len(methods) == 1:
idx = 0
else:
actionList = []
methods.sort()
menu = qt.QMenu(self)
for method in methods:
text = qt.QString(method)
pixmap = self.pluginInstanceDict[key].getMethodPixmap(method)
tip = qt.QString(self.pluginInstanceDict[key].getMethodToolTip(method))
if pixmap is not None:
action = qt.QAction(qt.QIcon(qt.QPixmap(pixmap)), text, self)
else:
action = qt.QAction(text, self)
if tip is not None:
action.setToolTip(tip)
menu.addAction(action)
actionList.append((text, pixmap, tip, action))
qt.QObject.connect(menu, qt.SIGNAL("hovered(QAction *)"), self._actionHovered)
a = menu.exec_(qt.QCursor.pos())
if a is None:
return None
idx = -1
for action in actionList:
if a.text() == action[0]:
idx = actionList.index(action)
try:
self.pluginInstanceDict[key].applyMethod(methods[idx])
except:
msg = qt.QMessageBox(self)
msg.setIcon(qt.QMessageBox.Critical)
if QTVERSION < '4.0.0':
msg.setText("%s" % sys.exc_info()[1])
else:
msg.setWindowTitle("Plugin error")
msg.setText("An error has occured while executing the plugin:")
msg.setInformativeText(str(sys.exc_info()[1]))
msg.setDetailedText(traceback.format_exc())
msg.exec_()
def _actionHovered(self, action):
tip = action.toolTip()
if str(tip) != str(action.text()):
qt.QToolTip.showText(qt.QCursor.pos(), tip)
def printGraph(self):
print("prints the graph")
class HorizontalSpacer(qt.QWidget):
def __init__(self, *args):
qt.QWidget.__init__(self, *args)
self.setSizePolicy(qt.QSizePolicy(qt.QSizePolicy.Expanding,
qt.QSizePolicy.Fixed))
if __name__ == "__main__":
import numpy
x = numpy.arange(100.)
y = x * x
app = qt.QApplication([])
plot = Plot1DWindowBase(uselegendmenu=True)
plot.show()
plot.addCurve(x, y, "dummy")
plot.addCurve(x+100, x*x)
print("Active curve = ", plot.getActiveCurve())
print("X Limits = ", plot.getGraphXLimits())
print("Y Limits = ", plot.getGraphYLimits())
print("All curves = ", plot.getAllCurves())
plot.removeCurve("dummy")
plot.addCurve(x, y, "dummy 2")
print("All curves = ", plot.getAllCurves())
app.exec_()
|