wfview/colorprefs.h

45 wiersze
788 B
C

#ifndef COLORPREFS_H
#define COLORPREFS_H
#include <QColor>
#include <QString>
struct colorPrefsType{
int presetNum = -1;
2022-08-22 16:44:00 +00:00
QString *presetName = Q_NULLPTR;
2022-08-22 16:44:00 +00:00
// Spectrum line plot:
QColor gridColor;
2022-08-22 00:52:52 +00:00
QColor axisColor;
QColor textColor;
QColor spectrumLine;
QColor spectrumFill;
QColor underlayLine;
QColor underlayFill;
QColor plotBackground;
QColor tuningLine;
2022-09-26 10:59:16 +00:00
QColor passband;
2023-01-19 16:16:47 +00:00
QColor pbt;
2022-08-22 16:44:00 +00:00
// Waterfall:
QColor wfBackground;
QColor wfGrid;
QColor wfAxis;
QColor wfText;
// Meters:
QColor meterLevel;
QColor meterAverage;
QColor meterPeakLevel;
QColor meterPeakScale;
QColor meterLowerLine;
QColor meterLowText;
2022-10-09 13:23:07 +00:00
// Assorted
QColor clusterSpots;
};
#endif // COLORPREFS_H