mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
.. Connected the compare mode on/off switch in the compare pane to Context to notify charts .. the scope bar and chart painting now highlight in red when compare more is active and supported by a particular chart. .. each chart must implement isCompare() to return true or false if it is supporting compare mode. We /still/ do not have a mechanism for clearing or reordering items in the compare pane, nor a mechanism for choosing 'delta' compare (i.e. baseline all compares to first item in the list).
108 lines
2.2 KiB
C++
108 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2013 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_Views_h
|
|
#define _GC_Views_h 1
|
|
|
|
#include "TabView.h"
|
|
class TrainSidebar;
|
|
class AnalysisSidebar;
|
|
class QDialog;
|
|
class RideNavigator;
|
|
|
|
class AnalysisView : public TabView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
AnalysisView(Context *context, QStackedWidget *controls);
|
|
~AnalysisView();
|
|
void close();
|
|
void setRide(RideItem*ride);
|
|
void addIntervals();
|
|
|
|
RideNavigator *rideNavigator();
|
|
|
|
public slots:
|
|
|
|
bool isBlank();
|
|
void compareChanged(bool);
|
|
|
|
private:
|
|
AnalysisSidebar *analSidebar;
|
|
|
|
};
|
|
class DiaryView : public TabView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DiaryView(Context *context, QStackedWidget *controls);
|
|
~DiaryView();
|
|
void setRide(RideItem*ride);
|
|
|
|
public slots:
|
|
|
|
bool isBlank();
|
|
void dateRangeChanged(DateRange);
|
|
|
|
};
|
|
class TrainView : public TabView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
TrainView(Context *context, QStackedWidget *controls);
|
|
~TrainView();
|
|
void close();
|
|
|
|
public slots:
|
|
|
|
bool isBlank();
|
|
void onSelectionChanged();
|
|
|
|
private:
|
|
|
|
TrainSidebar *trainTool;
|
|
QDialog *p;
|
|
|
|
};
|
|
class HomeView : public TabView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
HomeView(Context *context, QStackedWidget *controls);
|
|
~HomeView();
|
|
|
|
|
|
public slots:
|
|
|
|
bool isBlank();
|
|
void justSelected();
|
|
void dateRangeChanged(DateRange);
|
|
void compareChanged(bool);
|
|
|
|
};
|
|
|
|
#endif // _GC_Views_h
|