Files
GoldenCheetah/src/ErgFilePlot.h
Mark Liversedge 3752c80f52 Workout Library Part 1 of 3
Implementing a workout library that keeps
track of media and workouts that can be used
in train view.

This first part implements;
- library.xml to record search paths
- search dialog to find media/workouts

Part 2 and 3 will bring:
- Sqllite libraryDB to store found details
- Update traintool to use libraryDB and display
  icons, duration/distance, IF and TSS in list
- import and drag-n-drop of new media/workouts
2012-12-20 13:30:49 +00:00

182 lines
4.0 KiB
C++

/*
* Copyright (c) 2009 Mark Liversedge (liversedge@gmail.com)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _GC_ErgFilePlot_h
#define _GC_ErgFilePlot_h 1
#include "GoldenCheetah.h"
#include "MainWindow.h"
#include <QDebug>
#include <QtGui>
#include <qwt_series_data.h>
#include <qwt_legend.h>
#include <qwt_plot_curve.h>
#include <qwt_plot_canvas.h>
#include <qwt_plot_grid.h>
#include <qwt_plot.h>
#include <qwt_plot_marker.h>
#include <qwt_scale_draw.h>
#include <qwt_scale_div.h>
#include <qwt_scale_widget.h>
#include <qwt_symbol.h>
#include <qwt_compat.h>
#include "ErgFile.h"
#include "Settings.h"
#include "Colors.h"
#include "RealtimeData.h"
#include <qwt_series_data.h>
class ErgFileData : public QwtPointArrayData
{
public:
ErgFileData (MainWindow *main) : QwtPointArrayData(QVector<double>(), QVector<double>()), main(main) {}
double x(size_t i) const ;
double y(size_t i) const ;
size_t size() const ;
private:
MainWindow *main;
virtual QPointF sample(size_t i) const;
virtual QRectF boundingRect() const;
};
class NowData : public QwtPointArrayData
{
public:
NowData (MainWindow *main) : QwtPointArrayData(QVector<double>(), QVector<double>()), main(main) {}
double x(size_t i) const ;
double y(size_t i) const ;
size_t size() const ;
void init() ;
private:
MainWindow *main;
virtual QPointF sample(size_t i) const;
//virtual QRectF boundingRect() const;
};
// incremental data, for each curve
class CurveData
{
// A container class for growing data
public:
CurveData();
void append(double *x, double *y, int count);
void clear();
int count() const;
int size() const;
const double *x() const;
const double *y() const;
private:
int d_count;
QwtArray<double> d_x;
QwtArray<double> d_y;
};
class DistScaleDraw: public QwtScaleDraw
{
public:
DistScaleDraw() { }
// we do 100m for <= a kilo
virtual QwtText label(double v) const { if (v<1000) return QString("%1").arg(v/1000, 0, 'g', 1);
else return QString("%1").arg(round(v/1000)); }
};
class HourTimeScaleDraw: public QwtScaleDraw
{
public:
HourTimeScaleDraw() { }
virtual QwtText label(double v) const {
v /= 1000;
QTime t = QTime().addSecs(v);
if (scaleMap().sDist() > 5)
return t.toString("hh:mm");
return t.toString("hh:mm:ss");
}
};
class ErgFilePlot : public QwtPlot
{
Q_OBJECT
G_OBJECT
public:
ErgFilePlot(MainWindow *main);
QList<QwtPlotMarker *> Marks;
void setData(ErgFile *); // set the course
void reset(); // reset counters etc when plot changes
void setNow(long); // set point we're add for progress pointer
public slots:
void performancePlot(RealtimeData);
void start();
private:
MainWindow *main;
bool bydist;
ErgFile *ergFile;
QwtPlotGrid *grid;
QwtPlotCurve *LodCurve;
QwtPlotCurve *wattsCurve;
QwtPlotCurve *hrCurve;
QwtPlotCurve *cadCurve;
QwtPlotCurve *speedCurve;
QwtPlotCurve *NowCurve;
CurveData *wattsData,
*hrData,
*cadData,
*speedData;
double counter;
double wattssum,
hrsum,
cadsum,
speedsum;
ErgFileData *lodData;
NowData *nowData;
DistScaleDraw *distdraw;
HourTimeScaleDraw *timedraw;
ErgFilePlot();
};
#endif