diff options
author | Tom Rondeau | 2011-10-16 16:32:41 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-10-16 16:32:41 -0400 |
commit | 4496fae2deea200755225c007a26f4c7be0470e9 (patch) | |
tree | 88a6c2e22e53180b07f48dd5d9fb33aa06217189 /gr-qtgui/lib/spectrumdisplayform.h | |
parent | 4ba2c75f9109b750f8c04b60a04f2100e33e9416 (diff) | |
download | gnuradio-4496fae2deea200755225c007a26f4c7be0470e9.tar.gz gnuradio-4496fae2deea200755225c007a26f4c7be0470e9.tar.bz2 gnuradio-4496fae2deea200755225c007a26f4c7be0470e9.zip |
qtgui: waterfall plot mostly working under qwt6 (plots, but updates to scale and color not working yet).
Diffstat (limited to 'gr-qtgui/lib/spectrumdisplayform.h')
-rw-r--r-- | gr-qtgui/lib/spectrumdisplayform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-qtgui/lib/spectrumdisplayform.h b/gr-qtgui/lib/spectrumdisplayform.h index 8ee450daf..30303a36f 100644 --- a/gr-qtgui/lib/spectrumdisplayform.h +++ b/gr-qtgui/lib/spectrumdisplayform.h @@ -30,7 +30,7 @@ class SpectrumGUIClass; #include <SpectrumGUIClass.h> #include <FrequencyDisplayPlot.h> -//#include <WaterfallDisplayPlot.h> +#include <WaterfallDisplayPlot.h> #include <TimeDomainDisplayPlot.h> #include <ConstellationDisplayPlot.h> #include <QValidator> @@ -112,7 +112,7 @@ private: double* _realFFTDataPoints; QIntValidator* _intValidator; FrequencyDisplayPlot* _frequencyDisplayPlot; - //WaterfallDisplayPlot* _waterfallDisplayPlot; + WaterfallDisplayPlot* _waterfallDisplayPlot; TimeDomainDisplayPlot* _timeDomainDisplayPlot; ConstellationDisplayPlot* _constellationDisplayPlot; SpectrumGUIClass* _system; @@ -128,7 +128,7 @@ private: // whether or not to use a particular display int d_plot_fft; - //int d_plot_waterfall; + int d_plot_waterfall; int d_plot_time; int d_plot_constellation; |