Files
GoldenCheetah/src/Charts/HrPwWindow.h
Paul Johnson 4eaec533aa Remove type truncation warnings (#4770)
warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
warning C4805: '!=': unsafe mix of type 'int' and type 'bool' in operation
warning C4305: 'argument': truncation from 'double' to 'float'
2025-12-23 10:21:11 -03:00

138 lines
4.6 KiB
C++

/*
* Copyright (c) 2011 Damien Grauser
*
* 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_HrPwWindow_h
#define _GC_HrPwWindow_h 1
#include <QWidget>
#include <QFormLayout>
#include "GoldenCheetah.h"
#include "LTMWindow.h" // for tooltip/canvaspicker
class QCheckBox;
class QLineEdit;
class RideItem;
class HrPwPlot;
class Context;
class SmallPlot;
class QSlider;
class HrPwWindow : public GcChartWindow
{
Q_OBJECT
G_OBJECT
Q_PROPERTY(bool shadeZones READ isShadeZones WRITE setShadeZones USER true)
Q_PROPERTY(int joinLine READ isJoinLine WRITE setJoinLine USER true)
Q_PROPERTY(int fullplot READ showFullplot WRITE setFullplot USER true)
int isJoinLine() const { return joinlineCheckBox->checkState(); }
void setJoinLine(int x) { joinlineCheckBox->setCheckState(x ? Qt::Checked : Qt::Unchecked); }
int isShadeZones() const { return shadeZones->checkState(); }
void setShadeZones(int x) { shadeZones->setCheckState(x ? Qt::Checked : Qt::Unchecked); }
int showFullplot() const { return fullplot->checkState(); }
void setFullplot(int x) { fullplot->setCheckState(x ? Qt::Checked : Qt::Unchecked); }
public:
HrPwWindow(Context *context);
void setData(RideItem *item);
int findDelay(QVector<double> &wattsArray, QVector<double> &hrArray, int rideTimeSecs);
// Maths functions used by HrPwPlot
double slope(QVector<double> &Xi,QVector<double> &Yi,int n);
double intercept(QVector<double> &Xi,QVector<double> &Yi,int n);
double corr(QVector<double> &Xi, QVector<double> &Yi,int n);
double average(QVector<double> &Xi,int n);
// reveal
bool hasReveal() { return true; }
int smooth;
public slots:
void rideSelected();
void configChanged(qint32);
protected slots:
void setJoinLineFromCheckBox();
void setDelayFromLineEdit();
void setDelayFromSlider();
void setSmoothingFromLineEdit();
void setSmoothingFromSlider();
void setrDelayFromLineEdit();
void setrDelayFromSlider();
void setrSmoothingFromLineEdit();
void setrSmoothingFromSlider();
void setShadeZones();
void setSmooth(int);
void showHidePlot();
void setDelay(int);
protected:
Context *context;
HrPwPlot *hrPwPlot;
SmallPlot *smallPlot;
RideItem *current;
QCheckBox *joinlineCheckBox;
QCheckBox *shadeZones;
QCheckBox *fullplot;
QSlider *delaySlider;
QLineEdit *delayEdit;
QSlider *smoothSlider;
QLineEdit *smoothEdit;
private:
// reveal controls
QLabel *rSmooth;
QSlider *rSmoothSlider;
QLineEdit *rSmoothEdit;
QLabel *rDelay;
QSlider *rDelaySlider;
QLineEdit *rDelayEdit;
// Maths functions used by the plots
QVector<double> array_temp; //Déclaration d'un tableau temporaire
int test_zero(QVector<double> &array,int n);
int test_negative(QVector<double> &array,int n);
void logarray(QVector<double> &array,QVector<double> &arrayTemp,int n);
void lnarray(QVector<double> &array,QVector<double> &arrayTemp,int n);
void invarray(QVector<double> &array,QVector<double> &arrayTemp,int n);
int fit(QVector<double> &Xi,QVector<double> &Yi,int n);
double average(QVector<int> &array,int n);
double average2(double sum,int n);
double val_abs(double x);
int rmax(QVector<double> &r);
int sum(QVector<int> &array,int n);
double sum(QVector<double> &array,int n);
void arrayproduct(QVector<double> &array1,QVector<double> &array2,int n);
void deviation_from_average(QVector<double> &array,double Average,int n);
double covariance(QVector<double> &Xi, QVector<double> &Yi,int n);
double variance(QVector<double> &val,int n);
double standarddeviation(QVector<double> &val,int n);
};
#endif // _GC_HrPwWindow_h