Files
GoldenCheetah/qwt/examples/spectrogram/plot.h
Damien c44758c5ad Qwt 6.0.1 Support
Upgrade to QWT 6.0.1, but still uses a locally patched copy
since support for 8 axes has not been included, despite it
being a relatively simple patch.

Fixes #634.
Fixes #567.
2012-02-12 10:43:15 +00:00

22 lines
323 B
C++

#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);
#ifndef QT_NO_PRINTER
void printPlot();
#endif
private:
QwtPlotSpectrogram *d_spectrogram;
};