diff options
author | trondeau | 2009-07-06 04:39:24 +0000 |
---|---|---|
committer | trondeau | 2009-07-06 04:39:24 +0000 |
commit | 471ebf621da0426fefda870dfe29d75cd9ef2da6 (patch) | |
tree | 5b7f59db5b4b6ffd4d932450e4598dcf20865313 /gr-qtgui/src/lib/FrequencyDisplayPlot.h | |
parent | fadb55f262e1b5514988c3dc86a5e580378655dc (diff) | |
download | gnuradio-471ebf621da0426fefda870dfe29d75cd9ef2da6.tar.gz gnuradio-471ebf621da0426fefda870dfe29d75cd9ef2da6.tar.bz2 gnuradio-471ebf621da0426fefda870dfe29d75cd9ef2da6.zip |
Merging trondeau/qt branch r11231:11360. This merge improves the usability and examples of the QT-based interface.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11361 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-qtgui/src/lib/FrequencyDisplayPlot.h')
-rw-r--r-- | gr-qtgui/src/lib/FrequencyDisplayPlot.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gr-qtgui/src/lib/FrequencyDisplayPlot.h b/gr-qtgui/src/lib/FrequencyDisplayPlot.h index 31f2055b4..5e8282962 100644 --- a/gr-qtgui/src/lib/FrequencyDisplayPlot.h +++ b/gr-qtgui/src/lib/FrequencyDisplayPlot.h @@ -1,6 +1,7 @@ #ifndef FREQUENCY_DISPLAY_PLOT_HPP #define FREQUENCY_DISPLAY_PLOT_HPP +#include <cstdio> #include <qwt_plot.h> #include <qwt_painter.h> #include <qwt_plot_canvas.h> @@ -52,7 +53,9 @@ private: double _startFrequency; double _stopFrequency; - + double _maxYAxis; + double _minYAxis; + QwtPlotCurve* _fft_plot_curve; QwtPlotCurve* _min_fft_plot_curve; QwtPlotCurve* _max_fft_plot_curve; |