Files
GoldenCheetah/src/ToolsDialog.h
Alejandro Martinez 6a02939ac6 Extended Critical Power Estimator for Running and Swimming
Also fixed some translation issues
2015-07-12 23:09:55 -03:00

63 lines
1.9 KiB
C++

/*
* Copyright (c) 2007 Justin F. Knotzke (jknotzke@shampoo.ca)
*
* 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
*/
#include "GoldenCheetah.h"
#include <QDateTime>
#include <QtGui>
#include <QDialog>
#include <QLineEdit>
#include <QLabel>
typedef QDoubleSpinBox* QDoubleSpinBoxPtr;
class ToolsDialog : public QDialog
{
Q_OBJECT
G_OBJECT
public:
ToolsDialog(QWidget *parent = 0);
private:
QComboBox *sportCombo;
QPushButton *btnCalculate;
QPushButton *btnOK;
QLabel *labelCP;
QLineEdit *txtCP;
QLabel *labelWP;
QLineEdit *txtWP;
QDoubleSpinBox *shortMinsSpinBox;
QDoubleSpinBox *shortSecsSpinBox;
QDoubleSpinBox *shortWattsSpinBox;
QDoubleSpinBox *longMinsSpinBox;
QDoubleSpinBox *longSecsSpinBox;
QDoubleSpinBox *longWattsSpinBox;
QHBoxLayout* setupMinsSecs(QDoubleSpinBoxPtr& minsSpinBox,
QDoubleSpinBoxPtr& secsSpinBox,
QDoubleSpinBoxPtr& wattsSpinBox,
double maxMin, double defaultMin);
private slots:
void changeSport();
void on_btnOK_clicked();
void on_btnCalculate_clicked();
};