mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 08:38:45 +00:00
19 lines
291 B
C++
19 lines
291 B
C++
#include <qwt_plot.h>
|
|
#include <qwt_plot_spectrogram.h>
|
|
|
|
class Plot: public QwtPlot
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Plot(QWidget * = NULL);
|
|
|
|
public slots:
|
|
void showContour(bool on);
|
|
void showSpectrogram(bool on);
|
|
void printPlot();
|
|
|
|
private:
|
|
QwtPlotSpectrogram *d_spectrogram;
|
|
};
|