Changeset d85c194 in sasview for src/sas/sasgui/perspectives/pr


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

Location:
src/sas/sasgui/perspectives/pr
Files:
8 moved

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/pr/explore_dialog.py

    rd7bb526 rd85c194  
    3030from sas.sasgui.plottools.PlotPanel import PlotPanel 
    3131from sas.sasgui.plottools import Data1D as Model1D 
    32 from sas.guiframe.gui_style import GUIFRAME_ID 
     32from sas.sasgui.guiframe.gui_style import GUIFRAME_ID 
    3333from sas.sasgui.plottools.plottables import Graph 
    3434 
  • src/sas/sasgui/perspectives/pr/inversion_panel.py

    rb699768 rd85c194  
    1010import logging 
    1111from wx.lib.scrolledpanel import ScrolledPanel 
    12 from sas.guiframe.events import StatusEvent 
    13 from sas.guiframe.panel_base import PanelBase 
     12from sas.sasgui.guiframe.events import StatusEvent 
     13from sas.sasgui.guiframe.panel_base import PanelBase 
    1414from inversion_state import InversionState 
    1515from pr_widgets import PrTextCtrl 
    1616from pr_widgets import DataFileTextCtrl 
    1717from pr_widgets import OutputTextCtrl 
    18 from sas.guiframe.documentation_window import DocumentationWindow 
     18from sas.sasgui.guiframe.documentation_window import DocumentationWindow 
    1919 
    2020if sys.platform.count("win32") > 0: 
  • src/sas/sasgui/perspectives/pr/inversion_state.py

    rb699768 rd85c194  
    1818import logging 
    1919from lxml import etree 
    20 from sas.guiframe.dataFitting import Data1D 
     20from sas.sasgui.guiframe.dataFitting import Data1D 
    2121from sas.sascalc.dataloader.readers.cansas_reader import Reader as CansasReader 
    2222from sas.sascalc.dataloader.readers.cansas_reader import get_content 
  • src/sas/sasgui/perspectives/pr/pr.py

    rb699768 rd85c194  
    2323import numpy 
    2424import pylab 
    25 from sas.guiframe.gui_manager import MDIFrame 
    26 from sas.guiframe.dataFitting import Data1D 
    27 from sas.guiframe.events import NewPlotEvent 
    28 from sas.guiframe.events import StatusEvent 
    29 from sas.guiframe.gui_style import GUIFRAME_ID 
     25from sas.sasgui.guiframe.gui_manager import MDIFrame 
     26from sas.sasgui.guiframe.dataFitting import Data1D 
     27from sas.sasgui.guiframe.events import NewPlotEvent 
     28from sas.sasgui.guiframe.events import StatusEvent 
     29from sas.sasgui.guiframe.gui_style import GUIFRAME_ID 
    3030from sas.sascalc.pr.invertor import Invertor 
    3131from sas.sascalc.dataloader.loader import Loader 
     
    3333 
    3434from pr_widgets import load_error 
    35 from sas.guiframe.plugin_base import PluginBase 
     35from sas.sasgui.guiframe.plugin_base import PluginBase 
    3636 
    3737 
Note: See TracChangeset for help on using the changeset viewer.