Changeset d85c194 in sasview for src/sas/sasgui/guiframe/data_panel.py
- Timestamp:
- Feb 22, 2016 9:04:24 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:
- 06aaa75d
- Parents:
- d7bb526
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/data_panel.py
rb699768 rd85c194 25 25 from wx.lib.scrolledpanel import ScrolledPanel 26 26 import wx.lib.agw.customtreectrl as CT 27 from sas. guiframe.dataFitting import Data1D28 from sas. guiframe.dataFitting import Data2D29 from sas. guiframe.panel_base import PanelBase30 from sas. guiframe.events import StatusEvent31 from sas. guiframe.events import EVT_DELETE_PLOTPANEL32 from sas. guiframe.events import NewLoadDataEvent33 from sas. guiframe.events import NewPlotEvent34 from sas. guiframe.gui_style import GUIFRAME35 from sas. guiframe.events import NewBatchEvent27 from sas.sasgui.guiframe.dataFitting import Data1D 28 from sas.sasgui.guiframe.dataFitting import Data2D 29 from sas.sasgui.guiframe.panel_base import PanelBase 30 from sas.sasgui.guiframe.events import StatusEvent 31 from sas.sasgui.guiframe.events import EVT_DELETE_PLOTPANEL 32 from sas.sasgui.guiframe.events import NewLoadDataEvent 33 from sas.sasgui.guiframe.events import NewPlotEvent 34 from sas.sasgui.guiframe.gui_style import GUIFRAME 35 from sas.sasgui.guiframe.events import NewBatchEvent 36 36 from sas.sascalc.dataloader.loader import Loader 37 #from sas. guiframe.local_perspectives.plotting.masking \37 #from sas.sasgui.guiframe.local_perspectives.plotting.masking \ 38 38 # import FloatPanel as QucikPlotDialog 39 from sas. guiframe.local_perspectives.plotting.SimplePlot import PlotFrame \39 from sas.sasgui.guiframe.local_perspectives.plotting.SimplePlot import PlotFrame \ 40 40 as QucikPlotDialog 41 import sas. guiframe.config as config41 import sas.sasgui.guiframe.config as config 42 42 43 43 extension_list = [] … … 423 423 """ 424 424 data = self._get_data_selection(event) 425 from sas. guiframe.local_perspectives.plotting.masking \425 from sas.sasgui.guiframe.local_perspectives.plotting.masking \ 426 426 import MaskPanel as MaskDialog 427 427 … … 435 435 """ 436 436 data = self._get_data_selection(event) 437 from sas. guiframe.local_perspectives.plotting.masking \437 from sas.sasgui.guiframe.local_perspectives.plotting.masking \ 438 438 import FloatPanel as Float3dDialog 439 439 … … 1328 1328 1329 1329 1330 from sas. guiframe.dataFitting import Theory1D1331 from sas. guiframe.data_state import DataState1330 from sas.sasgui.guiframe.dataFitting import Theory1D 1331 from sas.sasgui.guiframe.data_state import DataState 1332 1332 1333 1333 class State():
Note: See TracChangeset
for help on using the changeset viewer.