mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
Porting the codebase to QT 5 (5.2) to get the latest bug fixes, performance and improved platform support. This first part is to fixup the codebase to compile on Qt 5, but some aspects have been broken (video). The second part is to migrate from Qwt 6.0.1 to the latest Qwt for multiaxis support. The third part will be to fixup any platform specific issues or issues identified at runtime.
341 lines
8.4 KiB
C++
341 lines
8.4 KiB
C++
/*
|
|
* Copyright (c) 2010 Greg Lonnon (greg.lonnon@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_WORKOUTEDITOR_H
|
|
#define _GC_WORKOUTEDITOR_H
|
|
|
|
// qt
|
|
#include <QWizard>
|
|
#include <QFileDialog>
|
|
#include <QDebug>
|
|
#include <QTextStream>
|
|
#include <QRadioButton>
|
|
#include <QButtonGroup>
|
|
#include <QWidget>
|
|
#include <QGroupBox>
|
|
#include <QLCDNumber>
|
|
#include <QDebug>
|
|
#include <QSpinBox>
|
|
#include <QLabel>
|
|
#include <QHeaderView>
|
|
#include <QTableWidget>
|
|
|
|
// gc
|
|
#include "Settings.h"
|
|
#include "RideFile.h"
|
|
#include "Context.h"
|
|
#include "GoldenCheetah.h"
|
|
#include "Settings.h"
|
|
#include "RideItem.h"
|
|
#include "Units.h"
|
|
#include "Zones.h"
|
|
|
|
// qwt
|
|
#include <qwt_plot.h>
|
|
#include <qwt_plot_curve.h>
|
|
|
|
class QwtPlotCurve;
|
|
class RideItem;
|
|
class WorkoutPlot;
|
|
|
|
|
|
class WorkoutItem : public QTableWidgetItem
|
|
{
|
|
public:
|
|
WorkoutItem(const QString &text) :QTableWidgetItem(QTableWidgetItem::UserType)
|
|
{
|
|
this->setText(text);
|
|
}
|
|
|
|
virtual QString validateData(const QString &text) = 0;
|
|
|
|
void setData(int role, const QVariant &value)
|
|
{
|
|
if(role == Qt::EditRole)
|
|
{
|
|
QVariant v(validateData(value.toString()));
|
|
QTableWidgetItem::setData(role,v);
|
|
}
|
|
}
|
|
};
|
|
|
|
class WorkoutItemDouble : public WorkoutItem
|
|
{
|
|
public:
|
|
WorkoutItemDouble() : WorkoutItem("0") {}
|
|
virtual QString validateData(const QString &text)
|
|
{
|
|
double d = text.toDouble();
|
|
return QString::number(d);
|
|
}
|
|
};
|
|
|
|
class WorkoutItemInt : public WorkoutItem
|
|
{
|
|
public:
|
|
WorkoutItemInt() : WorkoutItem("0") {}
|
|
QString validateData(const QString &text)
|
|
{
|
|
bool ok;
|
|
double d = text.toDouble(&ok);
|
|
return QString::number((int)d);
|
|
}
|
|
|
|
};
|
|
|
|
class WorkoutItemLap : public QTableWidgetItem
|
|
{
|
|
public:
|
|
WorkoutItemLap() : QTableWidgetItem(QTableWidgetItem::UserType) {
|
|
setText("LAP");
|
|
setFlags(flags() & (~Qt::ItemIsEditable));
|
|
}
|
|
};
|
|
|
|
class WorkoutEditorBase : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
protected:
|
|
QTableWidget *table;
|
|
|
|
public slots:
|
|
void addButtonClicked() { insertDataRow(table->rowCount()); }
|
|
void delButtonClicked() { table->removeRow(table->currentRow()); }
|
|
void lapButtonClicked()
|
|
{
|
|
int row = table->currentRow();
|
|
table->insertRow(row);
|
|
table->setItem(row,0,new WorkoutItemLap());
|
|
table->setItem(row,1,new QTableWidgetItem());
|
|
}
|
|
void insertButtonClicked() { insertDataRow(table->currentRow()); }
|
|
void cellChanged(int, int) { dataChanged(); }
|
|
|
|
signals:
|
|
void dataChanged();
|
|
|
|
|
|
public:
|
|
WorkoutEditorBase(QStringList &colms, QWidget *parent=0);
|
|
virtual void insertDataRow(int row) =0;
|
|
virtual void rawData(QVector<QPair<QString, QString > > &rawData)
|
|
{
|
|
int maxRow = table->rowCount();
|
|
for(int i = 0; i < maxRow; i++)
|
|
{
|
|
QTableWidgetItem *item1 = table->item(i,0);
|
|
QTableWidgetItem *item2 = table->item(i,1);
|
|
if(item1 && item2)
|
|
{
|
|
rawData.append(QPair<QString,QString>(item1->text(),item2->text()));
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
class WorkoutEditorAbs : public WorkoutEditorBase
|
|
{
|
|
public:
|
|
WorkoutEditorAbs(QStringList &colms, QWidget *parent = 0) : WorkoutEditorBase(colms,parent)
|
|
{}
|
|
void insertDataRow(int row);
|
|
};
|
|
|
|
class WorkoutEditorRel : public WorkoutEditorBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
int ftp;
|
|
public slots:
|
|
|
|
void updateWattage(int row, int colm)
|
|
{
|
|
if(colm == 1)
|
|
{
|
|
QTableWidgetItem *minItem = table->item(row,0);
|
|
QTableWidgetItem *percentageItem = table->item(row,1);
|
|
if(minItem->text() == "" || minItem->text() == "LAP" || percentageItem->text() == "") return;
|
|
double percentage = percentageItem->text() .toDouble();
|
|
WorkoutItemInt *item = new WorkoutItemInt();
|
|
int wattage = (int) (percentage * ftp / 100);
|
|
item->setData(Qt::EditRole,QVariant(QString::number(wattage)));
|
|
item->setFlags(item->flags() & (~Qt::ItemIsEditable));
|
|
table->setItem(row,2,item);
|
|
}
|
|
}
|
|
|
|
public:
|
|
WorkoutEditorRel(QStringList &colms, int _ftp, QWidget *parent = 0) : WorkoutEditorBase(colms,parent), ftp(_ftp)
|
|
{
|
|
connect(table,SIGNAL(cellChanged(int,int)),this,SLOT(updateWattage(int,int)));
|
|
}
|
|
void insertDataRow(int row);
|
|
};
|
|
|
|
class WorkoutEditorGradient :public WorkoutEditorBase
|
|
{
|
|
public:
|
|
WorkoutEditorGradient(QStringList &colms, QWidget *parent = 0) : WorkoutEditorBase(colms,parent)
|
|
{}
|
|
void insertDataRow(int row);
|
|
};
|
|
|
|
class WorkoutMetricsSummary :public QGroupBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
QGridLayout *layout;
|
|
QMap<QString,QPair<QLabel*,QLabel*> > metricMap;
|
|
public:
|
|
WorkoutMetricsSummary(QWidget *parent = 0) : QGroupBox(parent)
|
|
{
|
|
setTitle(tr("Workout Metrics"));
|
|
layout = new QGridLayout();
|
|
setLayout(layout);
|
|
}
|
|
void updateMetrics(QStringList &order, QHash<QString,RideMetricPtr> &metrics);
|
|
void updateMetrics(QMap<QString,QString> &map);
|
|
|
|
};
|
|
|
|
class WorkoutPage : public QWizardPage
|
|
{
|
|
public:
|
|
WorkoutPage(QWidget *parent) : QWizardPage(parent) {}
|
|
virtual void SaveWorkout() = 0;
|
|
void SaveWorkoutHeader(QTextStream &stream, QString fileName, QString description, QString units)
|
|
{
|
|
stream << "[COURSE HEADER]" << endl;
|
|
stream << "VERSION = 2" << endl;
|
|
stream << "UNITS = METRIC" << endl;
|
|
stream << "DESCRIPTION = " << description << endl;
|
|
stream << "FILE NAME = " << fileName << endl;
|
|
stream << units << endl;
|
|
stream << "[END COURSE HEADER]" << endl;
|
|
}
|
|
|
|
};
|
|
|
|
class WorkoutTypePage : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
QButtonGroup *buttonGroupBox;
|
|
QRadioButton *absWattageRadioButton, *relWattageRadioButton, *gradientRadioButton, *importRadioButton;
|
|
public:
|
|
WorkoutTypePage(QWidget *parent=0);
|
|
bool isComplete() const { return true; }
|
|
void initializePage();
|
|
int nextId() const;
|
|
};
|
|
|
|
class AbsWattagePage : public WorkoutPage
|
|
{
|
|
Q_OBJECT
|
|
WorkoutEditorAbs *we;
|
|
WorkoutMetricsSummary *metricsSummary;
|
|
WorkoutPlot *plot;
|
|
private slots:
|
|
void updateMetrics();
|
|
public:
|
|
AbsWattagePage(QWidget *parent=0);
|
|
void initializePage();
|
|
void SaveWorkout();
|
|
bool isFinalPage() const { return true; }
|
|
int nextId() const { return -1; }
|
|
};
|
|
|
|
class RelWattagePage : public WorkoutPage
|
|
{
|
|
Q_OBJECT
|
|
WorkoutEditorRel *we;
|
|
WorkoutMetricsSummary *metricsSummary;
|
|
WorkoutPlot *plot;
|
|
int ftp;
|
|
private slots:
|
|
void updateMetrics();
|
|
public:
|
|
RelWattagePage(QWidget *parent=0);
|
|
void initializePage();
|
|
bool isFinalPage() const { return true; }
|
|
int nextId() const { return -1; }
|
|
|
|
void SaveWorkout();
|
|
};
|
|
|
|
class GradientPage : public WorkoutPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
WorkoutEditorGradient *we;
|
|
WorkoutMetricsSummary *metricsSummary;
|
|
Context *context;
|
|
int ftp;
|
|
bool metricUnits;
|
|
|
|
private slots:
|
|
|
|
void updateMetrics();
|
|
public:
|
|
GradientPage(QWidget *parent=0);
|
|
void initializePage();
|
|
void SaveWorkout();
|
|
bool isFinalPage() const { return true; }
|
|
int nextId() const { return -1; }
|
|
};
|
|
|
|
class ImportPage : public WorkoutPage
|
|
{
|
|
Q_OBJECT
|
|
WorkoutPlot *plot;
|
|
QVector<QPair<double,double> > rideData; // orignal distance/alt in metric
|
|
bool metricUnits;
|
|
QSpinBox *gradeBox;
|
|
QSpinBox *segmentBox;
|
|
WorkoutMetricsSummary *metricsSummary;
|
|
QVector<QPair<double,double> > rideProfile; // distance and slope
|
|
public slots:
|
|
void updatePlot();
|
|
public:
|
|
ImportPage(QWidget * parent=0);
|
|
void initializePage();
|
|
void SaveWorkout();
|
|
bool isFinalPage() const { return true; }
|
|
};
|
|
|
|
|
|
|
|
class WorkoutWizard : public QWizard
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum { WW_WorkoutTypePage, WW_AbsWattagePage, WW_RelWattagePage, WW_GradientPage, WW_ImportPage };
|
|
|
|
WorkoutWizard(Context *context);
|
|
|
|
// called at the end of the wizard...
|
|
void accept();
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|