Changeset f468791 in sasview for src/sans/perspectives


Ignore:
Timestamp:
Oct 24, 2013 10:40:22 AM (11 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
1f8eecb
Parents:
a9d5684
Message:

Move plottools under sans

Location:
src/sans/perspectives
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/sans/perspectives/calculator/data_operator.py

    r5777106 rf468791  
    66import time 
    77import numpy 
    8 from sans.dataloader.data_info import Data2D 
    98from sans.dataloader.data_info import Data1D 
    10 from danse.common.plottools.PlotPanel import PlotPanel 
    11 from danse.common.plottools.plottables import Graph 
    12 from danse.common.plottools.canvas import FigureCanvas 
    13 from danse.common.plottools import transform 
     9from sans.plottools.PlotPanel import PlotPanel 
     10from sans.plottools.plottables import Graph 
     11from sans.plottools import transform 
    1412from matplotlib.font_manager import FontProperties 
    15 from matplotlib.figure import Figure 
    1613from sans.guiframe.events import StatusEvent  
    1714from sans.perspectives.calculator import calculator_widgets as widget    
     
    865862            first_item = list.keys()[0] 
    866863            if first_item.x != []: 
    867                 from danse.common.plottools.PropertyDialog import Properties 
     864                from sans.plottools.PropertyDialog import Properties 
    868865                dial = Properties(self, -1, 'Change Scale') 
    869866                # type of view or model used 
  • src/sans/perspectives/calculator/gen_scatter_panel.py

    r5777106 rf468791  
    3434from wx.lib.scrolledpanel import ScrolledPanel 
    3535from sans.perspectives.calculator.load_thread import GenReader 
    36 from danse.common.plottools.arrow3d import Arrow3D 
     36from sans.plottools.arrow3d import Arrow3D 
    3737from sans.perspectives.calculator import calculator_widgets as widget 
    3838from sans.guiframe.events import NewPlotEvent     
  • src/sans/perspectives/fitting/basepage.py

    r5777106 rf468791  
    20052005        x, y = self.model.getProfile() 
    20062006 
    2007         from danse.common.plottools import Data1D as pf_data1d 
     2007        from sans.plottools import Data1D as pf_data1d 
    20082008        #from sans.perspectives.theory.profile_dialog import SLDPanel 
    20092009        from sans.guiframe.local_perspectives.plotting.profile_dialog \ 
  • src/sans/perspectives/pr/explore_dialog.py

    r5777106 rf468791  
    2929 
    3030# Import plotting classes 
    31 from danse.common.plottools.PlotPanel import PlotPanel 
    32 from danse.common.plottools import Data1D as Model1D 
     31from sans.plottools.PlotPanel import PlotPanel 
     32from sans.plottools import Data1D as Model1D 
    3333from sans.guiframe.gui_style import GUIFRAME_ID 
    34 from danse.common.plottools.plottables import Graph 
     34from sans.plottools.plottables import Graph 
    3535 
    3636from pr_widgets import PrTextCtrl 
Note: See TracChangeset for help on using the changeset viewer.