Changeset 2155


Ignore:
Timestamp:
04/26/11 13:03:10 (13 years ago)
Author:
Kana Sugimoto
Message:

New Development: Yes

JIRA Issue: No (reorganization of modules)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: the modules casatoolbar, flagtoolbar, notaionwindow, were reorganized as customgui_base, customgui_tkagg, and customgui_qt4agg, based on backend

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Location:
trunk/python
Files:
3 added
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/CMakeLists.txt

    r2086 r2155  
    1919     ${PYTHONDIR}/asapmath.py
    2020     ${PYTHONDIR}/asapplotter.py
    21      ${PYTHONDIR}/casatoolbar.py
    2221     ${PYTHONDIR}/compatibility.py
    2322     ${PYTHONDIR}/coordinate.py
     23     ${PYTHONDIR}/customgui_base.py
     24     ${PYTHONDIR}/customgui_tkagg.py
     25     ${PYTHONDIR}/customgui_qt4agg.py
    2426     ${PYTHONDIR}/env.py
    2527     ${PYTHONDIR}/flagplotter.py
    26      ${PYTHONDIR}/flagtoolbar.py
    2728     ${PYTHONDIR}/__init__.py
    2829     ${PYTHONDIR}/interactivemask.py
     
    3132     ${PYTHONDIR}/linecatalog.py
    3233     ${PYTHONDIR}/logging.py
    33      ${PYTHONDIR}/notationwindow.py
    3434     ${PYTHONDIR}/opacity.py
    3535     ${PYTHONDIR}/parameters.py
  • trunk/python/asapplotter.py

    r2150 r2155  
    9191        backend=matplotlib.get_backend()
    9292        if self._visible and backend == "TkAgg":
    93             from asap.casatoolbar import CustomToolbarTkAgg
     93            from asap.customgui_tkagg import CustomToolbarTkAgg
    9494            return CustomToolbarTkAgg(self)
    9595            #from asap.casatoolbar import CustomFlagToolbarTkAgg
     
    12531253        PL.ion()
    12541254        PL.draw()
     1255        PL.gcf().show()
    12551256        if (self._outfile is not None):
    12561257           PL.savefig(self._outfile)
     
    12931294        #PL.ion()
    12941295        PL.draw()
     1296        PL.gcf().show()
    12951297        if (self._outfile is not None):
    12961298           PL.savefig(self._outfile)
  • trunk/python/flagplotter.py

    r2117 r2155  
    3737            #from asap.casatoolbar import CustomToolbarTkAgg
    3838            #return CustomToolbarTkAgg(self)
    39             from asap.flagtoolbar import CustomFlagToolbarTkAgg
     39            from asap.customgui_tkagg import CustomFlagToolbarTkAgg
    4040            return CustomFlagToolbarTkAgg(self)
    4141        return None
Note: See TracChangeset for help on using the changeset viewer.