mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
Allows to generate data points for manual activities from series of work/rest intervas with distance/duration information and reps count. It is enabled once sport is entered as Swim or Run and distance units follows pace preferences for the selected sport. Duration and Distance for the activity are calculated from laps information, but it can be overridden by the user. If LapsEditor is reactivated the lap information is preserved to allow corrections, provided the sport is not changed. Input method for duration is selected for simplicity and easy of input using numeric pad, tab and enter.
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2015 Alejandro Martinez (amtriathlon@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_LapsEditor_h
|
|
#define _GC_LapsEditor_h 1
|
|
#include "GoldenCheetah.h"
|
|
#include "RideFile.h"
|
|
|
|
#include <QtGui>
|
|
#include <QLineEdit>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QMessageBox>
|
|
#include <QTableWidget>
|
|
|
|
class LapsEditor : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
LapsEditor(bool isSwim);
|
|
~LapsEditor();
|
|
const QVector<RideFilePoint*> &dataPoints() const { return dataPoints_; }
|
|
|
|
private slots:
|
|
void okClicked();
|
|
void cancelClicked();
|
|
|
|
private:
|
|
|
|
bool isSwim; // Swimming indicator, used for distance units selection
|
|
QVector<RideFilePoint*> dataPoints_; // samples generated from laps
|
|
|
|
QPushButton *okButton, *cancelButton;
|
|
|
|
QTableWidget *tableWidget;
|
|
};
|
|
|
|
#endif // _GC_LapsEditor_h
|