Files
GoldenCheetah/src/CompareDateRange.h
Mark Liversedge bd37801225 DateRange Compare Pane
.. now can drag and drop any date range onto the
   home view compare pane to compatre different
   seasons, and even across athletes.

.. we setup the metrics and measures in the context
   so the charts don't have to, but we still need to
   reference the source context for bests and ridefilecache
   data

NOTE: We need a mechanism for 'locking' source tabs/athletes
      when they are part of a compare to avoid crashing when
      a context is deleted whilst we are comparing

NOTE: We till need a way to remove entries from the compare
      pane, possibly call it when an athlete is closed too
      (see note above).
2013-12-29 13:00:46 +00:00

48 lines
1.4 KiB
C++

/*
* Copyright (c) 2014 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_CompareDateRange_h
#define _GC_CompareDateRange_h
class Context;
#include "SummaryMetrics.h"
#include <QColor>
#include <QDate>
#include <QString>
class CompareDateRange
{
public:
CompareDateRange() : context(NULL), days(0), sourceContext(NULL), checked(false) {}
Context *context;
QString name;
QColor color;
QList<SummaryMetrics> metrics, measures;
QDate start, end;
int days;
Context *sourceContext;
bool checked;
bool isChecked() const { return checked; }
void setChecked(bool x) { checked=x; }
};
#endif