Ignore:
Timestamp:
Oct 24, 2013 10:40:22 AM (11 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
1f8eecb
Parents:
a9d5684
Message:

Move plottools under sans

Location:
src/sans/guiframe/local_perspectives/plotting
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • src/sans/guiframe/local_perspectives/plotting/Plotter1D.py

    r5777106 rf468791  
    1313import wx 
    1414import sys 
    15 import os 
    16 import pylab 
    1715import math 
    1816import numpy 
    19 import time 
    20  
    21 from danse.common.plottools.PlotPanel import PlotPanel 
    22 from danse.common.plottools.SizeDialog import SizeDialog 
    23 from danse.common.plottools.LabelDialog import LabelDialog 
    24 #from danse.common.plottools.plottables import Graph 
    25 from sans.guiframe import dataFitting  
    26 from sans.guiframe.events import EVT_NEW_PLOT 
     17 
     18from sans.plottools.PlotPanel import PlotPanel 
    2719from sans.guiframe.events import StatusEvent  
    28 from sans.guiframe.events import NewPlotEvent 
    29 from sans.guiframe.events import NewColorEvent 
    30 from sans.guiframe.events import SlicerEvent 
    3120from sans.guiframe.events import PanelOnFocusEvent 
    32 from sans.guiframe.events import EVT_NEW_LOADED_DATA 
    3321from sans.guiframe.utils import PanelMenu 
    34 from sans.guiframe.dataFitting import Data1D 
    3522from sans.guiframe.panel_base import PanelBase 
    3623from sans.guiframe.gui_style import GUIFRAME_ICON 
    37 from danse.common.plottools.binder import BindArtist 
    3824from appearanceDialog import appearanceDialog 
    3925from graphAppearance import graphAppearance 
  • src/sans/guiframe/local_perspectives/plotting/Plotter2D.py

    r5777106 rf468791  
    1313import wx 
    1414import sys 
    15 import os 
    1615import math 
    1716import numpy 
    18 import pylab 
    19 import danse.common.plottools 
    20 from danse.common.plottools.PlotPanel import PlotPanel 
    21 from danse.common.plottools.plottables import Graph 
    22 from danse.common.plottools.TextDialog import TextDialog 
    23 from sans.guiframe.events import EVT_NEW_PLOT 
    24 from sans.guiframe.events import EVT_SLICER_PARS 
     17from sans.plottools.PlotPanel import PlotPanel 
     18from sans.plottools.plottables import Graph 
     19from sans.plottools.TextDialog import TextDialog 
    2520from sans.guiframe.events import StatusEvent  
    2621from sans.guiframe.events import NewPlotEvent 
     
    3025from  sans.guiframe.local_perspectives.plotting.binder import BindArtist 
    3126from Plotter1D import ModelPanel1D 
    32 from danse.common.plottools.toolbar import NavigationToolBar  
    33 from sans.guiframe.dataFitting import Data1D 
     27from sans.plottools.toolbar import NavigationToolBar  
    3428from matplotlib.font_manager import FontProperties 
    3529from graphAppearance import graphAppearance 
  • src/sans/guiframe/local_perspectives/plotting/SimplePlot.py

    r5777106 rf468791  
    55from sans.guiframe.local_perspectives.plotting.Plotter2D import ModelPanel2D \ 
    66                    as PlotPanel 
    7 from danse.common.plottools.toolbar import NavigationToolBar 
    8 #from danse.common.plottools.PlotPanel import PlotPanel  
    9 from danse.common.plottools.plottables import Graph 
     7from sans.plottools.toolbar import NavigationToolBar 
     8from sans.plottools.plottables import Graph 
    109from sans.guiframe.utils import PanelMenu 
    1110 
  • src/sans/guiframe/local_perspectives/plotting/graphAppearance.py

    r5777106 rf468791  
    1818 
    1919import wx 
    20 from danse.common.plottools.SimpleFont import SimpleFont 
     20from sans.plottools.SimpleFont import SimpleFont 
    2121 
    2222COLOR = ['black', 'blue', 'green', 'red', 'cyan', 'magenta', 'yellow'] 
  • src/sans/guiframe/local_perspectives/plotting/masking.py

    r5777106 rf468791  
    2525import copy 
    2626import numpy 
    27 from danse.common.plottools.PlotPanel import PlotPanel 
    28 from danse.common.plottools.plottables import Graph 
     27from sans.plottools.PlotPanel import PlotPanel 
     28from sans.plottools.plottables import Graph 
    2929from binder import BindArtist 
    3030from sans.guiframe.dataFitting import Data1D, Data2D 
  • src/sans/guiframe/local_perspectives/plotting/profile_dialog.py

    r5777106 rf468791  
    66import sys 
    77from copy import deepcopy 
    8 from danse.common.plottools.plottables import Graph 
     8from sans.plottools.plottables import Graph 
    99from Plotter1D import ModelPanel1D as PlotPanel 
    1010from sans.guiframe.dataFitting import Data1D 
Note: See TracChangeset for help on using the changeset viewer.