Changeset d7bb526 in sasview for src/sas/perspectives
- Timestamp:
- Feb 22, 2016 5:06:35 AM (9 years ago)
- 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
- Location:
- src/sas/perspectives
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/perspectives/calculator/data_operator.py
rb699768 rd7bb526 7 7 import numpy 8 8 from sas.sascalc.dataloader.data_info import Data1D 9 from sas. plottools.PlotPanel import PlotPanel10 from sas. plottools.plottables import Graph11 from sas. plottools import transform9 from sas.sasgui.plottools.PlotPanel import PlotPanel 10 from sas.sasgui.plottools.plottables import Graph 11 from sas.sasgui.plottools import transform 12 12 from matplotlib.font_manager import FontProperties 13 13 from sas.guiframe.events import StatusEvent … … 888 888 first_item = list.keys()[0] 889 889 if first_item.x != []: 890 from sas. plottools.PropertyDialog import Properties890 from sas.sasgui.plottools.PropertyDialog import Properties 891 891 dial = Properties(self, -1, 'Change Scale') 892 892 # type of view or model used -
src/sas/perspectives/calculator/gen_scatter_panel.py
rb699768 rd7bb526 34 34 from wx.lib.scrolledpanel import ScrolledPanel 35 35 from sas.perspectives.calculator.load_thread import GenReader 36 from sas. plottools.arrow3d import Arrow3D36 from sas.sasgui.plottools.arrow3d import Arrow3D 37 37 from sas.perspectives.calculator import calculator_widgets as widget 38 38 from sas.guiframe.events import NewPlotEvent -
src/sas/perspectives/fitting/basepage.py
rb699768 rd7bb526 1832 1832 x, y = self.model.getProfile() 1833 1833 1834 from sas. plottools import Data1D as pf_data1d1834 from sas.sasgui.plottools import Data1D as pf_data1d 1835 1835 #from sas.perspectives.theory.profile_dialog import SLDPanel 1836 1836 from sas.guiframe.local_perspectives.plotting.profile_dialog \ -
src/sas/perspectives/pr/explore_dialog.py
rb699768 rd7bb526 28 28 29 29 # Import plotting classes 30 from sas. plottools.PlotPanel import PlotPanel31 from sas. plottools import Data1D as Model1D30 from sas.sasgui.plottools.PlotPanel import PlotPanel 31 from sas.sasgui.plottools import Data1D as Model1D 32 32 from sas.guiframe.gui_style import GUIFRAME_ID 33 from sas. plottools.plottables import Graph33 from sas.sasgui.plottools.plottables import Graph 34 34 35 35 from pr_widgets import PrTextCtrl
Note: See TracChangeset
for help on using the changeset viewer.