mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
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.
18 lines
259 B
C++
18 lines
259 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 exportPlot();
|
|
void setResampleMode(int);
|
|
|
|
private:
|
|
QwtPlotSpectrogram *d_spectrogram;
|
|
};
|