Changeset 2155 for trunk/python
- Timestamp:
- 04/26/11 13:03:10 (14 years ago)
- Location:
- trunk/python
- Files:
-
- 3 added
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/CMakeLists.txt
r2086 r2155 19 19 ${PYTHONDIR}/asapmath.py 20 20 ${PYTHONDIR}/asapplotter.py 21 ${PYTHONDIR}/casatoolbar.py22 21 ${PYTHONDIR}/compatibility.py 23 22 ${PYTHONDIR}/coordinate.py 23 ${PYTHONDIR}/customgui_base.py 24 ${PYTHONDIR}/customgui_tkagg.py 25 ${PYTHONDIR}/customgui_qt4agg.py 24 26 ${PYTHONDIR}/env.py 25 27 ${PYTHONDIR}/flagplotter.py 26 ${PYTHONDIR}/flagtoolbar.py27 28 ${PYTHONDIR}/__init__.py 28 29 ${PYTHONDIR}/interactivemask.py … … 31 32 ${PYTHONDIR}/linecatalog.py 32 33 ${PYTHONDIR}/logging.py 33 ${PYTHONDIR}/notationwindow.py34 34 ${PYTHONDIR}/opacity.py 35 35 ${PYTHONDIR}/parameters.py -
trunk/python/asapplotter.py
r2150 r2155 91 91 backend=matplotlib.get_backend() 92 92 if self._visible and backend == "TkAgg": 93 from asap.c asatoolbarimport CustomToolbarTkAgg93 from asap.customgui_tkagg import CustomToolbarTkAgg 94 94 return CustomToolbarTkAgg(self) 95 95 #from asap.casatoolbar import CustomFlagToolbarTkAgg … … 1253 1253 PL.ion() 1254 1254 PL.draw() 1255 PL.gcf().show() 1255 1256 if (self._outfile is not None): 1256 1257 PL.savefig(self._outfile) … … 1293 1294 #PL.ion() 1294 1295 PL.draw() 1296 PL.gcf().show() 1295 1297 if (self._outfile is not None): 1296 1298 PL.savefig(self._outfile) -
trunk/python/flagplotter.py
r2117 r2155 37 37 #from asap.casatoolbar import CustomToolbarTkAgg 38 38 #return CustomToolbarTkAgg(self) 39 from asap. flagtoolbarimport CustomFlagToolbarTkAgg39 from asap.customgui_tkagg import CustomFlagToolbarTkAgg 40 40 return CustomFlagToolbarTkAgg(self) 41 41 return None
Note:
See TracChangeset
for help on using the changeset viewer.