mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
125 lines
3.4 KiB
C++
125 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2006 Sean C. Rhea (srhea@srhea.net)
|
|
*
|
|
* 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_MainWindow_h
|
|
#define _GC_MainWindow_h 1
|
|
|
|
#include <QDir>
|
|
#include <QtGui>
|
|
|
|
class AllPlot;
|
|
class CpintPlot;
|
|
class PfPvPlot;
|
|
class PowerHist;
|
|
class QwtPlotPanner;
|
|
class QwtPlotPicker;
|
|
class QwtPlotZoomer;
|
|
class RideFile;
|
|
class Zones;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(const QDir &home);
|
|
void addRide(QString name, bool bSelect=true);
|
|
void removeCurrentRide();
|
|
const RideFile *currentRide();
|
|
QDir home;
|
|
protected:
|
|
virtual void resizeEvent(QResizeEvent*);
|
|
virtual void moveEvent(QMoveEvent*);
|
|
virtual void closeEvent(QCloseEvent*);
|
|
|
|
private slots:
|
|
void rideSelected();
|
|
void splitterMoved();
|
|
void newCyclist();
|
|
void openCyclist();
|
|
void downloadRide();
|
|
void exportCSV();
|
|
void exportXML();
|
|
void importCSV();
|
|
void importSRM();
|
|
void importTCX();
|
|
void findBestIntervals();
|
|
void splitRide();
|
|
void deleteRide();
|
|
void setSmoothingFromSlider();
|
|
void setSmoothingFromLineEdit();
|
|
void setBinWidthFromSlider();
|
|
void setBinWidthFromLineEdit();
|
|
void setWithZerosFromCheckBox();
|
|
void setQaCPFromLineEdit();
|
|
void setQaCADFromLineEdit();
|
|
void setQaCLFromLineEdit();
|
|
void tabChanged(int index);
|
|
void pickerMoved(const QPoint &);
|
|
void aboutDialog();
|
|
void notesChanged();
|
|
void saveNotes();
|
|
void showOptions();
|
|
void showTools();
|
|
void importRideToDB();
|
|
void scanForMissing();
|
|
|
|
protected:
|
|
|
|
static QString notesFileName(QString rideFileName);
|
|
|
|
private:
|
|
|
|
QSettings settings;
|
|
|
|
QSplitter *splitter;
|
|
QTreeWidget *treeWidget;
|
|
QTabWidget *tabWidget;
|
|
QTextEdit *rideSummary;
|
|
QTextEdit *weeklySummary;
|
|
AllPlot *allPlot;
|
|
QwtPlotZoomer *allZoomer;
|
|
QwtPlotPanner *allPanner;
|
|
CpintPlot *cpintPlot;
|
|
QLineEdit *cpintTimeValue;
|
|
QLineEdit *cpintTodayValue;
|
|
QLineEdit *cpintAllValue;
|
|
QwtPlotPicker *picker;
|
|
QSlider *smoothSlider;
|
|
QLineEdit *smoothLineEdit;
|
|
QSlider *binWidthSlider;
|
|
QLineEdit *binWidthLineEdit;
|
|
QCheckBox *withZerosCheckBox;
|
|
QTreeWidgetItem *allRides;
|
|
PowerHist *powerHist;
|
|
Zones *zones;
|
|
|
|
// pedal force/pedal velocity scatter plot widgets
|
|
PfPvPlot *pfPvPlot;
|
|
QLineEdit *qaCPValue;
|
|
QLineEdit *qaCadValue;
|
|
QLineEdit *qaClValue;
|
|
|
|
QTextEdit *rideNotes;
|
|
QString currentNotesFile;
|
|
bool currentNotesChanged;
|
|
};
|
|
|
|
#endif // _GC_MainWindow_h
|
|
|