mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
123 lines
2.3 KiB
C++
123 lines
2.3 KiB
C++
#ifndef OPTIONSDIALOG_H
|
|
#define OPTIONSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "palette.h"
|
|
#include "units.h"
|
|
|
|
class ColorBox;
|
|
class StyleComboBox;
|
|
class OddSpinBox;
|
|
class QSpinBox;
|
|
class QDoubleSpinBox;
|
|
class QComboBox;
|
|
class QCheckBox;
|
|
class QRadioButton;
|
|
class PercentSlider;
|
|
|
|
struct Options {
|
|
// Appearance
|
|
Palette palette;
|
|
int trackWidth;
|
|
int routeWidth;
|
|
Qt::PenStyle trackStyle;
|
|
Qt::PenStyle routeStyle;
|
|
QColor waypointColor;
|
|
QColor poiColor;
|
|
int waypointSize;
|
|
int poiSize;
|
|
int graphWidth;
|
|
bool pathAntiAliasing;
|
|
bool graphAntiAliasing;
|
|
int mapOpacity;
|
|
QColor blendColor;
|
|
// Data
|
|
int elevationFilter;
|
|
int speedFilter;
|
|
int heartRateFilter;
|
|
int cadenceFilter;
|
|
int powerFilter;
|
|
bool outlierEliminate;
|
|
qreal pauseSpeed;
|
|
int pauseInterval;
|
|
// POI
|
|
int poiRadius;
|
|
// System
|
|
bool useOpenGL;
|
|
int pixmapCache;
|
|
// Print/Export
|
|
bool hiresPrint;
|
|
bool printName;
|
|
bool printDate;
|
|
bool printDistance;
|
|
bool printTime;
|
|
bool printMovingTime;
|
|
bool printItemCount;
|
|
bool separateGraphPage;
|
|
|
|
Units units;
|
|
};
|
|
|
|
class OptionsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
OptionsDialog(Options *options, QWidget *parent = 0);
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
QWidget *createAppearancePage();
|
|
QWidget *createDataPage();
|
|
QWidget *createPOIPage();
|
|
QWidget *createSystemPage();
|
|
QWidget *createExportPage();
|
|
|
|
Options *_options;
|
|
|
|
// Appearance
|
|
ColorBox *_baseColor;
|
|
QDoubleSpinBox *_colorOffset;
|
|
PercentSlider *_mapOpacity;
|
|
ColorBox *_blendColor;
|
|
QSpinBox *_trackWidth;
|
|
StyleComboBox *_trackStyle;
|
|
QSpinBox *_routeWidth;
|
|
StyleComboBox *_routeStyle;
|
|
QCheckBox *_pathAA;
|
|
QSpinBox *_waypointSize;
|
|
ColorBox *_waypointColor;
|
|
QSpinBox *_poiSize;
|
|
ColorBox *_poiColor;
|
|
QSpinBox *_graphWidth;
|
|
QCheckBox *_graphAA;
|
|
// Data
|
|
OddSpinBox *_elevationFilter;
|
|
OddSpinBox *_speedFilter;
|
|
OddSpinBox *_heartRateFilter;
|
|
OddSpinBox *_cadenceFilter;
|
|
OddSpinBox *_powerFilter;
|
|
QCheckBox *_outlierEliminate;
|
|
QDoubleSpinBox *_pauseSpeed;
|
|
QSpinBox *_pauseInterval;
|
|
// POI
|
|
QDoubleSpinBox *_poiRadius;
|
|
// System
|
|
QSpinBox *_pixmapCache;
|
|
QCheckBox *_useOpenGL;
|
|
// Print/Export
|
|
QRadioButton *_wysiwyg;
|
|
QRadioButton *_hires;
|
|
QCheckBox *_name;
|
|
QCheckBox *_date;
|
|
QCheckBox *_distance;
|
|
QCheckBox *_time;
|
|
QCheckBox *_movingTime;
|
|
QCheckBox *_itemCount;
|
|
QCheckBox *_separateGraphPage;
|
|
};
|
|
|
|
#endif // OPTIONSDIALOG_H
|