Changeset 55a0dc1 in sasview for guiframe


Ignore:
Timestamp:
Jan 22, 2011 9:46:47 AM (14 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
3d2d7f60
Parents:
4ce74917
Message:

remove reference to guicomm in guiframe

Location:
guiframe/local_perspectives/plotting
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • guiframe/local_perspectives/plotting/AnnulusSlicer.py

    r32c0841 r55a0dc1  
    1010#from copy import deepcopy  
    1111# Debug printout 
    12 from sans.guicomm.events import NewPlotEvent 
    13 from sans.guicomm.events import StatusEvent 
    14 from sans.guicomm.events import SlicerParameterEvent 
    15 from sans.guicomm.events import EVT_SLICER_PARS 
     12from sans.guiframe.events import NewPlotEvent 
     13from sans.guiframe.events import StatusEvent 
     14from sans.guiframe.events import SlicerParameterEvent 
     15from sans.guiframe.events import EVT_SLICER_PARS 
    1616from BaseInteractor import _BaseInteractor 
    1717from sans.guiframe.dataFitting import Data1D 
  • guiframe/local_perspectives/plotting/Arc.py

    r32c0841 r55a0dc1  
    55 
    66from BaseInteractor import _BaseInteractor 
    7 from sans.guicomm.events import NewPlotEvent 
    8 from sans.guicomm.events import StatusEvent 
    9 from sans.guicomm.events import SlicerParameterEvent 
    10 from sans.guicomm.events import EVT_SLICER_PARS 
     7from sans.guiframe.events import NewPlotEvent 
     8from sans.guiframe.events import StatusEvent 
     9from sans.guiframe.events import SlicerParameterEvent 
     10from sans.guiframe.events import EVT_SLICER_PARS 
    1111   
    1212  
  • guiframe/local_perspectives/plotting/AzimutSlicer.py

    r32c0841 r55a0dc1  
    1212from copy import deepcopy 
    1313from BaseInteractor import _BaseInteractor 
    14 from sans.guicomm.events import NewPlotEvent 
    15 from sans.guicomm.events import StatusEvent 
    16 from sans.guicomm.events import SlicerParameterEvent 
    17 from sans.guicomm.events import EVT_SLICER_PARS 
     14from sans.guiframe.events import NewPlotEvent 
     15from sans.guiframe.events import StatusEvent 
     16from sans.guiframe.events import SlicerParameterEvent 
     17from sans.guiframe.events import EVT_SLICER_PARS 
    1818 
    1919 
  • guiframe/local_perspectives/plotting/Edge.py

    r32c0841 r55a0dc1  
    44#from copy import deepcopy 
    55from BaseInteractor import _BaseInteractor 
    6 #from sans.guicomm.events import NewPlotEvent 
    7 #from sans.guicomm.events import StatusEvent 
    8 #from sans.guicomm.events import SlicerParameterEvent 
    9 #from sans.guicomm.events import EVT_SLICER_PARS 
     6#from sans.guiframe.events import NewPlotEvent 
     7#from sans.guiframe.events import StatusEvent 
     8#from sans.guiframe.events import SlicerParameterEvent 
     9#from sans.guiframe.events import EVT_SLICER_PARS 
    1010    
    1111 
  • guiframe/local_perspectives/plotting/Plotter2D.py

    r32c0841 r55a0dc1  
    1818from danse.common.plottools.PlotPanel import PlotPanel 
    1919from danse.common.plottools.plottables import Graph 
    20 from sans.guicomm.events import EVT_NEW_PLOT 
    21 from sans.guicomm.events import EVT_SLICER_PARS 
    22 from sans.guicomm.events import StatusEvent  
    23 from sans.guicomm.events import NewPlotEvent 
    24 from sans.guicomm.events import SlicerEvent 
     20from sans.guiframe.events import EVT_NEW_PLOT 
     21from sans.guiframe.events import EVT_SLICER_PARS 
     22from sans.guiframe.events import StatusEvent  
     23from sans.guiframe.events import NewPlotEvent 
     24from sans.guiframe.events import SlicerEvent 
    2525from sans.guiframe.utils import PanelMenu 
    2626from binder import BindArtist 
     
    516516        self.slicer.set_panel_name(name=new_panel.window_caption) 
    517517        ## post slicer panel to guiframe to display it  
    518         from sans.guicomm.events import SlicerPanelEvent 
     518        from sans.guiframe.events import SlicerPanelEvent 
    519519        wx.PostEvent(self.parent, SlicerPanelEvent(panel=self.panel_slicer, 
    520520                                                    main_panel=self)) 
  • guiframe/local_perspectives/plotting/SectorSlicer.py

    r32c0841 r55a0dc1  
    44#from copy import deepcopy 
    55from BaseInteractor import _BaseInteractor 
    6 from sans.guicomm.events import NewPlotEvent 
    7 from sans.guicomm.events import StatusEvent 
    8 from sans.guicomm.events import SlicerParameterEvent 
    9 from sans.guicomm.events import EVT_SLICER_PARS 
     6from sans.guiframe.events import NewPlotEvent 
     7from sans.guiframe.events import StatusEvent 
     8from sans.guiframe.events import SlicerParameterEvent 
     9from sans.guiframe.events import EVT_SLICER_PARS 
    1010from sans.guiframe.dataFitting import Data1D 
    1111 
  • guiframe/local_perspectives/plotting/SlicerParameters.py

    r32c0841 r55a0dc1  
    44import wx.lib.newevent 
    55#from copy import deepcopy 
    6 from sans.guicomm.events import EVT_SLICER_PARS 
     6from sans.guiframe.events import EVT_SLICER_PARS 
    77from sans.guiframe.utils import format_number 
    8 from sans.guicomm.events import EVT_SLICER 
    9 from sans.guicomm.events import SlicerParameterEvent 
     8from sans.guiframe.events import EVT_SLICER 
     9from sans.guiframe.events import SlicerParameterEvent 
    1010 
    1111 
  • guiframe/local_perspectives/plotting/boxMask.py

    r32c0841 r55a0dc1  
    99from boxSum import VerticalDoubleLine 
    1010from boxSum import HorizontalDoubleLine 
    11 #from sans.guicomm.events import SlicerParamUpdateEvent 
     11#from sans.guiframe.events import SlicerParamUpdateEvent 
    1212 
    1313 
  • guiframe/local_perspectives/plotting/boxSlicer.py

    r32c0841 r55a0dc1  
    66import math 
    77import numpy 
    8 from sans.guicomm.events import NewPlotEvent 
    9 from sans.guicomm.events import StatusEvent 
    10 from sans.guicomm.events import SlicerParameterEvent 
    11 from sans.guicomm.events import EVT_SLICER_PARS 
     8from sans.guiframe.events import NewPlotEvent 
     9from sans.guiframe.events import StatusEvent 
     10from sans.guiframe.events import SlicerParameterEvent 
     11from sans.guiframe.events import EVT_SLICER_PARS 
    1212from BaseInteractor import _BaseInteractor 
    1313from sans.guiframe.dataFitting import Data1D 
  • guiframe/local_perspectives/plotting/boxSum.py

    r614ce1b1 r55a0dc1  
    66from copy import deepcopy 
    77from BaseInteractor import _BaseInteractor 
    8 from sans.guicomm.events import SlicerParamUpdateEvent 
    9 from sans.guicomm.events import EVT_SLICER_PARS 
    10 from sans.guicomm.events import StatusEvent 
     8from sans.guiframe.events import SlicerParamUpdateEvent 
     9from sans.guiframe.events import EVT_SLICER_PARS 
     10from sans.guiframe.events import StatusEvent 
    1111 
    1212 
  • guiframe/local_perspectives/plotting/detector_dialog.py

    r32c0841 r55a0dc1  
    88import sys 
    99from sans.guiframe.utils import format_number 
    10 from sans.guicomm.events import StatusEvent  
    11 from sans.guicomm.events import NewPlotEvent 
     10from sans.guiframe.events import StatusEvent  
     11from sans.guiframe.events import NewPlotEvent 
    1212 
    1313import matplotlib  
  • guiframe/local_perspectives/plotting/masking.py

    r32c0841 r55a0dc1  
    3131from boxMask import BoxMask 
    3232from sectorMask import SectorMask 
    33 from sans.guicomm.events import SlicerEvent 
    34 from sans.guicomm.events import StatusEvent 
     33from sans.guiframe.events import SlicerEvent 
     34from sans.guiframe.events import StatusEvent 
    3535(InternalEvent, EVT_INTERNAL) = wx.lib.newevent.NewEvent() 
    3636 
  • guiframe/local_perspectives/plotting/sectorMask.py

    r32c0841 r55a0dc1  
    66from SectorSlicer import SideInteractor 
    77from SectorSlicer import LineInteractor 
    8 from sans.guicomm.events import SlicerParameterEvent 
     8from sans.guiframe.events import SlicerParameterEvent 
    99 
    1010class SectorMask(_BaseInteractor): 
  • guiframe/local_perspectives/plotting/slicerpanel.py

    r691643c r55a0dc1  
    55#from copy import deepcopy 
    66from sans.guiframe.utils import format_number 
    7 from sans.guicomm.events import SlicerParameterEvent 
    8 from sans.guicomm.events import EVT_SLICER_PARS 
    9 from sans.guicomm.events import EVT_SLICER 
     7from sans.guiframe.events import SlicerParameterEvent 
     8from sans.guiframe.events import EVT_SLICER_PARS 
     9from sans.guiframe.events import EVT_SLICER 
    1010 
    1111from sans.guiframe.panel_base import PanelBase 
Note: See TracChangeset for help on using the changeset viewer.