Ignore:
Timestamp:
Feb 22, 2016 9:04:24 AM (9 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
06aaa75d
Parents:
d7bb526
Message:

Remaining modules refactored

File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/data_panel.py

    rb699768 rd85c194  
    2525from wx.lib.scrolledpanel import ScrolledPanel 
    2626import  wx.lib.agw.customtreectrl as CT 
    27 from sas.guiframe.dataFitting import Data1D 
    28 from sas.guiframe.dataFitting import Data2D 
    29 from sas.guiframe.panel_base import PanelBase 
    30 from sas.guiframe.events import StatusEvent 
    31 from sas.guiframe.events import EVT_DELETE_PLOTPANEL 
    32 from sas.guiframe.events import NewLoadDataEvent 
    33 from sas.guiframe.events import NewPlotEvent 
    34 from sas.guiframe.gui_style import GUIFRAME 
    35 from sas.guiframe.events import NewBatchEvent 
     27from sas.sasgui.guiframe.dataFitting import Data1D 
     28from sas.sasgui.guiframe.dataFitting import Data2D 
     29from sas.sasgui.guiframe.panel_base import PanelBase 
     30from sas.sasgui.guiframe.events import StatusEvent 
     31from sas.sasgui.guiframe.events import EVT_DELETE_PLOTPANEL 
     32from sas.sasgui.guiframe.events import NewLoadDataEvent 
     33from sas.sasgui.guiframe.events import NewPlotEvent 
     34from sas.sasgui.guiframe.gui_style import GUIFRAME 
     35from sas.sasgui.guiframe.events import NewBatchEvent 
    3636from sas.sascalc.dataloader.loader import Loader 
    37 #from sas.guiframe.local_perspectives.plotting.masking \ 
     37#from sas.sasgui.guiframe.local_perspectives.plotting.masking \ 
    3838#    import FloatPanel as QucikPlotDialog 
    39 from sas.guiframe.local_perspectives.plotting.SimplePlot import PlotFrame \ 
     39from sas.sasgui.guiframe.local_perspectives.plotting.SimplePlot import PlotFrame \ 
    4040        as QucikPlotDialog 
    41 import sas.guiframe.config as config 
     41import sas.sasgui.guiframe.config as config 
    4242  
    4343extension_list = [] 
     
    423423        """ 
    424424        data = self._get_data_selection(event) 
    425         from sas.guiframe.local_perspectives.plotting.masking \ 
     425        from sas.sasgui.guiframe.local_perspectives.plotting.masking \ 
    426426            import MaskPanel as MaskDialog 
    427427         
     
    435435        """ 
    436436        data = self._get_data_selection(event) 
    437         from sas.guiframe.local_perspectives.plotting.masking \ 
     437        from sas.sasgui.guiframe.local_perspectives.plotting.masking \ 
    438438        import FloatPanel as Float3dDialog 
    439439         
     
    13281328    
    13291329     
    1330 from sas.guiframe.dataFitting import Theory1D 
    1331 from sas.guiframe.data_state import DataState 
     1330from sas.sasgui.guiframe.dataFitting import Theory1D 
     1331from sas.sasgui.guiframe.data_state import DataState 
    13321332 
    13331333class State(): 
Note: See TracChangeset for help on using the changeset viewer.