Changeset 8963

Show
Ignore:
Timestamp:
07/21/08 15:42:29
Author:
jblum
Message:

split up plotter into module

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/branches/features/experimental-gui/const_window.py

    r8926 r8963  
    121121                #init panel and plot 
    122122                wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER) 
    123                 self.plotter = plotter.grid_plotter(self) 
     123                self.plotter = plotter.channel_plotter(self) 
    124124                self.plotter.SetSize(wx.Size(*size)) 
    125125                self.plotter.set_title(title) 
  • gnuradio/branches/features/experimental-gui/fft_window.py

    r8909 r8963  
    159159                #init panel and plot 
    160160                wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER) 
    161                 self.plotter = plotter.grid_plotter(self) 
     161                self.plotter = plotter.channel_plotter(self) 
    162162                self.plotter.SetSize(wx.Size(*size)) 
    163163                self.plotter.set_title(title) 
  • gnuradio/branches/features/experimental-gui/scope_window.py

    r8926 r8963  
    209209                #init panel and plot 
    210210                wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER) 
    211                 self.plotter = plotter.grid_plotter(self) 
     211                self.plotter = plotter.channel_plotter(self) 
    212212                self.plotter.SetSize(wx.Size(*size)) 
    213213                self.plotter.set_title(title)