Changeset d7bb526 in sasview for src/sas/perspectives


Ignore:
Timestamp:
Feb 22, 2016 5:06:35 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:
d85c194
Parents:
b699768
Message:

Refactored plottools into sasgui

Location:
src/sas/perspectives
Files:
4 edited

Legend:

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

    rb699768 rd7bb526  
    77import numpy 
    88from sas.sascalc.dataloader.data_info import Data1D 
    9 from sas.plottools.PlotPanel import PlotPanel 
    10 from sas.plottools.plottables import Graph 
    11 from sas.plottools import transform 
     9from sas.sasgui.plottools.PlotPanel import PlotPanel 
     10from sas.sasgui.plottools.plottables import Graph 
     11from sas.sasgui.plottools import transform 
    1212from matplotlib.font_manager import FontProperties 
    1313from sas.guiframe.events import StatusEvent 
     
    888888            first_item = list.keys()[0] 
    889889            if first_item.x != []: 
    890                 from sas.plottools.PropertyDialog import Properties 
     890                from sas.sasgui.plottools.PropertyDialog import Properties 
    891891                dial = Properties(self, -1, 'Change Scale') 
    892892                # type of view or model used 
  • src/sas/perspectives/calculator/gen_scatter_panel.py

    rb699768 rd7bb526  
    3434from wx.lib.scrolledpanel import ScrolledPanel 
    3535from sas.perspectives.calculator.load_thread import GenReader 
    36 from sas.plottools.arrow3d import Arrow3D 
     36from sas.sasgui.plottools.arrow3d import Arrow3D 
    3737from sas.perspectives.calculator import calculator_widgets as widget 
    3838from sas.guiframe.events import NewPlotEvent 
  • src/sas/perspectives/fitting/basepage.py

    rb699768 rd7bb526  
    18321832        x, y = self.model.getProfile() 
    18331833 
    1834         from sas.plottools import Data1D as pf_data1d 
     1834        from sas.sasgui.plottools import Data1D as pf_data1d 
    18351835        #from sas.perspectives.theory.profile_dialog import SLDPanel 
    18361836        from sas.guiframe.local_perspectives.plotting.profile_dialog \ 
  • src/sas/perspectives/pr/explore_dialog.py

    rb699768 rd7bb526  
    2828 
    2929# Import plotting classes 
    30 from sas.plottools.PlotPanel import PlotPanel 
    31 from sas.plottools import Data1D as Model1D 
     30from sas.sasgui.plottools.PlotPanel import PlotPanel 
     31from sas.sasgui.plottools import Data1D as Model1D 
    3232from sas.guiframe.gui_style import GUIFRAME_ID 
    33 from sas.plottools.plottables import Graph 
     33from sas.sasgui.plottools.plottables import Graph 
    3434 
    3535from pr_widgets import PrTextCtrl 
Note: See TracChangeset for help on using the changeset viewer.