summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/waterfalldisplayform.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-qtgui/lib/waterfalldisplayform.h')
-rw-r--r--gr-qtgui/lib/waterfalldisplayform.h26
1 files changed, 11 insertions, 15 deletions
diff --git a/gr-qtgui/lib/waterfalldisplayform.h b/gr-qtgui/lib/waterfalldisplayform.h
index 46e0d815e0..e078aeb05a 100644
--- a/gr-qtgui/lib/waterfalldisplayform.h
+++ b/gr-qtgui/lib/waterfalldisplayform.h
@@ -41,29 +41,28 @@ class WaterfallDisplayForm : public DisplayForm
WaterfallDisplayPlot* getPlot();
- int GetFFTSize() const;
- float GetFFTAverage() const;
- gr::filter::firdes::win_type GetFFTWindowType() const;
+ int getFFTSize() const;
+ float getFFTAverage() const;
+ gr::filter::firdes::win_type getFFTWindowType() const;
public slots:
void customEvent(QEvent *e);
- void SetFFTSize(const int);
- void SetFFTAverage(const float);
- void SetFFTWindowType(const gr::filter::firdes::win_type);
+ void setFFTSize(const int);
+ void setFFTAverage(const float);
+ void setFFTWindowType(const gr::filter::firdes::win_type);
- void SetFrequencyRange(const double newCenterFrequency,
- const double newStartFrequency,
- const double newStopFrequency);
+ void setFrequencyRange(const double centerfreq,
+ const double bandwidth);
- void SetIntensityRange(const double minIntensity,
+ void setIntensityRange(const double minIntensity,
const double maxIntensity);
- void SetColorMap(const int newType,
+ void setColorMap(const int newType,
const QColor lowColor,
const QColor highColor);
- void AutoScale();
+ void autoScale();
private slots:
void newData(const QEvent *updateEvent);
@@ -72,9 +71,6 @@ private:
uint64_t _numRealDataPoints;
QIntValidator* _intValidator;
- double _startFrequency;
- double _stopFrequency;
-
int _fftsize;
float _fftavg;
gr::filter::firdes::win_type _fftwintype;