Files
GoldenCheetah/src/UserMetricParser.h
Mark Liversedge 59c13e15ec User Metric Part 1 of 4
.. User defined metrics where a user can define code
   to compute a metric from ride data that can be used
   in the same way as builtin metrics.

   * Part 1 : Introduce User Metrics, Settings and XML config
   * Part 2 : Introduce Dialog for User Metric CRUD in Preferences
   * Part 3 : Integrate with Cache refresh and fingerprints
   * Part 4 : Resolve dependency tree and related aspects

.. The user code will be via a DataFilter; this code has
   already been updated to include variables, functions and
   if/else/while constructs.
2015-12-10 17:27:33 +00:00

51 lines
1.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_UserMetricParser_h
#define _GC_UserMetricParser_h 1
#include "GoldenCheetah.h"
#include <QXmlDefaultHandler>
#include "RideMetric.h"
#include "UserMetricSettings.h"
class UserMetricParser : public QXmlDefaultHandler
{
Q_DECLARE_TR_FUNCTIONS(UserMetricParser)
public:
static void serialize(QString, QList<UserMetricSettings>);
QList<UserMetricSettings> &getSettings() { return settings; }
// 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 );
protected:
QString buffer; // temp store
UserMetricSettings add;
QList<UserMetricSettings> settings; // what we just read
};
#endif