mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
.. UserData series now have a zone string that can be used to define upper values and associated colors for shading a curve. .. the format is: lim,colorname;lim,colorname; where lim is an upper value and colorname is either a #rgb string or any color name such as red,green, blue etc from the list of SVG color keyword names provided by the World Wide Web Consortium. e.g: 200,green;300,yellow;9999,red which will shade points <200 green, <300 will be yellow and then <9999 will be red. The zones must be listed in ascending order.
142 lines
3.6 KiB
C++
142 lines
3.6 KiB
C++
/*
|
|
* Copyright (c) 2015 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_UserData_h
|
|
#define _GC_UserData_h 1
|
|
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include <QColor>
|
|
#include <QString>
|
|
#include <QXmlDefaultHandler>
|
|
|
|
// working with ride data
|
|
#include "RideItem.h"
|
|
#include "RideFile.h"
|
|
|
|
// working with metrics and formulas
|
|
#include "Specification.h"
|
|
#include "DataFilter.h"
|
|
#include "RideMetric.h"
|
|
|
|
// formula editor
|
|
#include "LTMTool.h"
|
|
|
|
class UserDataParser;
|
|
class EditUserDataDialog;
|
|
|
|
// provide API for working with user defined data series
|
|
class UserData : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString settings READ settings WRITE setSettings USER true)
|
|
Q_PROPERTY(RideItem* rideItem READ getRideItem WRITE setRideItem USER true)
|
|
|
|
public:
|
|
|
|
UserData();
|
|
UserData(QString settings);
|
|
UserData(QString name, QString units, QString formula, QString zstring, QColor color);
|
|
~UserData();
|
|
|
|
// does it have values other than NA?
|
|
bool isEmpty();
|
|
|
|
// user maintained attributes, keep public
|
|
// as get/set is tedious for these kinds of attrs
|
|
QString name,
|
|
units,
|
|
formula,
|
|
zstring;
|
|
QColor color;
|
|
|
|
QVector<double> vector; // the actuall data series !
|
|
|
|
public slots:
|
|
|
|
// allow user to maintain, returns true if changed
|
|
bool edit();
|
|
|
|
// get and set properties
|
|
QString settings() const;
|
|
void setSettings(QString);
|
|
RideItem* getRideItem() const;
|
|
void setRideItem(RideItem*);
|
|
|
|
friend class ::UserDataParser;
|
|
friend class ::EditUserDataDialog;
|
|
protected:
|
|
|
|
// Ride item we are working on
|
|
RideItem *rideItem;
|
|
};
|
|
|
|
class EditUserDataDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
|
|
public:
|
|
EditUserDataDialog(Context *, UserData *);
|
|
QSize sizeHint() const { return QSize(800,550); }
|
|
|
|
public slots:
|
|
void colorClicked();
|
|
void applyClicked();
|
|
void cancelClicked();
|
|
|
|
private:
|
|
Context *context;
|
|
UserData *here; // where to update
|
|
|
|
// name, units
|
|
QLineEdit *nameEdit,
|
|
*unitsEdit,
|
|
*zstringEdit;
|
|
QPushButton *seriesColor;
|
|
QColor color; // remember what we edited
|
|
void setButtonIcon(QColor);
|
|
|
|
// formula
|
|
DataFilterEdit *formulaEdit; // edit your formula
|
|
|
|
// buttons
|
|
QPushButton *applyButton, *cancelButton;
|
|
};
|
|
|
|
class UserDataParser : public QXmlDefaultHandler
|
|
{
|
|
|
|
public:
|
|
UserDataParser(UserData *here) : here(here) {}
|
|
|
|
// where to put the results
|
|
UserData *here;
|
|
|
|
// unmarshall
|
|
bool startDocument();
|
|
bool endDocument();
|
|
bool endElement( const QString&, const QString&, const QString &qName );
|
|
bool startElement( const QString&, const QString&, const QString &name, const QXmlAttributes &attrs );
|
|
bool characters( const QString& str );
|
|
|
|
};
|
|
#endif
|