Changeset 8963
- Timestamp:
- 07/21/08 15:42:29
- Files:
-
- gnuradio/branches/features/experimental-gui/const_window.py (modified) (1 diff)
- gnuradio/branches/features/experimental-gui/fft_window.py (modified) (1 diff)
- gnuradio/branches/features/experimental-gui/plotter (added)
- gnuradio/branches/features/experimental-gui/plotter.py (deleted)
- gnuradio/branches/features/experimental-gui/plotter/__init__.py (added)
- gnuradio/branches/features/experimental-gui/plotter/channel_plotter.py (added)
- gnuradio/branches/features/experimental-gui/plotter/gltext.py (moved) (moved from gnuradio/branches/features/experimental-gui/gltext.py)
- gnuradio/branches/features/experimental-gui/plotter/plotter_base.py (added)
- gnuradio/branches/features/experimental-gui/plotter/waterfall_plotter.py (added)
- gnuradio/branches/features/experimental-gui/scope_window.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/features/experimental-gui/const_window.py
r8926 r8963 121 121 #init panel and plot 122 122 wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER) 123 self.plotter = plotter. grid_plotter(self)123 self.plotter = plotter.channel_plotter(self) 124 124 self.plotter.SetSize(wx.Size(*size)) 125 125 self.plotter.set_title(title) gnuradio/branches/features/experimental-gui/fft_window.py
r8909 r8963 159 159 #init panel and plot 160 160 wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER) 161 self.plotter = plotter. grid_plotter(self)161 self.plotter = plotter.channel_plotter(self) 162 162 self.plotter.SetSize(wx.Size(*size)) 163 163 self.plotter.set_title(title) gnuradio/branches/features/experimental-gui/scope_window.py
r8926 r8963 209 209 #init panel and plot 210 210 wx.Panel.__init__(self, parent, -1, style=wx.SIMPLE_BORDER) 211 self.plotter = plotter. grid_plotter(self)211 self.plotter = plotter.channel_plotter(self) 212 212 self.plotter.SetSize(wx.Size(*size)) 213 213 self.plotter.set_title(title)
