QT5 -- Add Qwt 6.1-multiaxes

This commit is contained in:
Mark Liversedge
2013-12-09 10:02:47 +00:00
parent 03d3afdf53
commit 5abf8776f1
492 changed files with 97336 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#include <qwt_plot.h>
#include <qwt_plot_spectrogram.h>
class Plot: public QwtPlot
{
Q_OBJECT
public:
Plot( QWidget * = NULL );
public Q_SLOTS:
void showContour( bool on );
void showSpectrogram( bool on );
void setAlpha( int );
#ifndef QT_NO_PRINTER
void printPlot();
#endif
private:
QwtPlotSpectrogram *d_spectrogram;
};