Changeset 2146 for trunk/python
- Timestamp:
- 04/18/11 20:16:37 (14 years ago)
- Location:
- trunk/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asaplot.py
r1826 r2146 24 24 self.canvas = FigureCanvasAgg(self.figure) 25 25 self.figmgr = FigureManagerBase(self.canvas,1) 26 27 def map(self): 28 """ This method is not available in non-GUI plotting class""" 29 pass 30 31 def unmap(self): 32 """ This method is not available in non-GUI plotting class""" 33 pass 34 -
trunk/python/asaplotgui_qt4.py
r1819 r2146 9 9 # Force use of the newfangled toolbar. 10 10 import matplotlib 11 matplotlib.use("Qt4Agg")11 #matplotlib.use("Qt4Agg") 12 12 matplotlib.rcParams['toolbar'] = 'toolbar2' 13 13 14 #class asaplotgui(asaplotbase):15 14 class asaplotgui(asaplotbase): 16 15 """ … … 51 50 self.buffering = buffering 52 51 52 self.unmap() 53 53 #self.canvas.show() 54 54 … … 78 78 self.window.activateWindow() 79 79 self.canvas.show() 80 #self.window.show()80 self.window.show() 81 81 82 82 def terminate(self):
Note:
See TracChangeset
for help on using the changeset viewer.