mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
22 lines
289 B
C++
22 lines
289 B
C++
#include <qwt_plot.h>
|
|
#include <qwt_double_rect.h>
|
|
|
|
class QwtPlotSvgItem;
|
|
|
|
class Plot: public QwtPlot
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Plot(QWidget * = NULL);
|
|
|
|
public slots:
|
|
void loadSVG();
|
|
|
|
private:
|
|
void rescale();
|
|
|
|
QwtPlotSvgItem *d_mapItem;
|
|
const QwtDoubleRect d_mapRect;
|
|
};
|