mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-15 08:59:55 +00:00
.. introduce concept of configChanged(what) to pass details of what config has been changed .. fixed zones changes to re-read after write to correct the save twice to get changes to zones bug. .. next parts need to spot changes (part 2) and then action appropriately (part 3)
212 lines
4.2 KiB
C++
212 lines
4.2 KiB
C++
/*
|
|
* Copyright (c) 2012 Mark Liversedge (liversedge@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 CONFIGDIALOG_H
|
|
#define CONFIGDIALOG_H
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include <QDialog>
|
|
#include <QSettings>
|
|
#include <QMainWindow>
|
|
#include <QStackedWidget>
|
|
|
|
#include "Pages.h"
|
|
#include "Context.h"
|
|
|
|
|
|
class QListWidget;
|
|
class QListWidgetItem;
|
|
class QStackedWidget;
|
|
class Context;
|
|
class Zones;
|
|
|
|
// GENERAL PAGE
|
|
class GeneralConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GeneralConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
GeneralPage *generalPage;
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
};
|
|
|
|
// ATHLETE PAGE
|
|
class AthleteConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AthleteConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
// about me, power ones and hr zones
|
|
RiderPage *athletePage;
|
|
ZonePage *zonePage;
|
|
HrZonePage *hrZonePage;
|
|
PaceZonePage *paceZonePage;
|
|
AutoImportPage *autoImportPage;
|
|
};
|
|
|
|
// APPEARANCE PAGE
|
|
class AppearanceConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AppearanceConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
ColorsPage *appearancePage;
|
|
};
|
|
|
|
// PASSWORDS PAGE
|
|
class PasswordConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PasswordConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
CredentialsPage *passwordPage;
|
|
};
|
|
|
|
// METADATA PAGE
|
|
class DataConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DataConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
MetadataPage *dataPage;
|
|
};
|
|
|
|
// METRIC PAGE
|
|
class MetricConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MetricConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
BestsMetricsPage *bestsPage;
|
|
IntervalMetricsPage *intervalsPage;
|
|
SummaryMetricsPage *summaryPage;
|
|
};
|
|
|
|
// DEVICE PAGE
|
|
class DeviceConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DeviceConfig(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
qint32 saveClicked();
|
|
|
|
private:
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
DevicePage *devicePage;
|
|
};
|
|
|
|
class ConfigDialog : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
ConfigDialog(QDir home, Zones *zones, Context *context);
|
|
|
|
public slots:
|
|
void changePage(int);
|
|
void saveClicked(); // collects state
|
|
void closeClicked();
|
|
|
|
private:
|
|
QSettings *settings;
|
|
QDir home;
|
|
Zones *zones;
|
|
Context *context;
|
|
|
|
QStackedWidget *pagesWidget;
|
|
QPushButton *saveButton;
|
|
QPushButton *closeButton;
|
|
|
|
// the config pages
|
|
GeneralConfig *general;
|
|
AthleteConfig *athlete;
|
|
AppearanceConfig *appearance;
|
|
PasswordConfig *password;
|
|
DataConfig *data;
|
|
MetricConfig *metric;
|
|
DeviceConfig *device;
|
|
};
|
|
#endif
|