You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
263 B
18 lines
263 B
|
3 years ago
|
#include <qwt_plot.h>
|
||
|
|
#include <qwt_plot_spectrogram.h>
|
||
|
|
|
||
|
|
class Plot: public QwtPlot
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
Plot( QWidget * = NULL );
|
||
|
|
|
||
|
|
public Q_SLOTS:
|
||
|
|
void exportPlot();
|
||
|
|
void setResampleMode( int );
|
||
|
|
|
||
|
|
private:
|
||
|
|
QwtPlotSpectrogram *d_spectrogram;
|
||
|
|
};
|