1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
#ifndef PREFS_H
#define PREFS_H
#include <QString>
#include <QColor>
#include <QMap>
#include "audioconverter.h"
#include "cluster.h"
#include "rigidentities.h"
#include "wfviewtypes.h"
enum prefIfItem {
if_useFullScreen = 1 << 0,
if_useSystemTheme = 1 << 1,
if_drawPeaks = 1 << 2,
if_underlayMode = 1 << 3,
if_underlayBufferSize = 1 << 4,
if_wfAntiAlias = 1 << 5,
if_wfInterpolate = 1 << 6,
if_wftheme = 1 << 7,
if_plotFloor = 1 << 8,
if_plotCeiling = 1 << 9,
if_stylesheetPath = 1 << 10,
if_wflength = 1 << 11,
if_confirmExit = 1 << 12,
if_confirmPowerOff = 1 << 13,
if_meter1Type = 1 << 14,
if_meter2Type = 1 << 15,
if_meter3Type = 1 << 16,
if_compMeterReverse = 1 << 17,
if_clickDragTuningEnable = 1 << 18,
if_currentColorPresetNumber = 1 << 19,
if_rigCreatorEnable = 1 << 20,
if_frequencyUnits = 1 << 21,
if_region = 1 << 22,
if_showBands = 1 << 23,
if_separators = 1 << 24,
if_forceVfoMode = 1 << 25,
if_autoPowerOn = 1 << 26,
if_all = 1 << 27
};
enum prefColItem {
col_grid = 1 << 0,
col_axis = 1 << 1,
col_text = 1 << 2,
col_plotBackground = 1 << 3,
col_spectrumLine = 1 << 4,
col_spectrumFill = 1 << 5,
col_useSpectrumFillGradient = 1 << 6,
col_spectrumFillTop = 1 << 7,
col_spectrumFillBot = 1 << 8,
col_underlayLine = 1 << 9,
col_underlayFill = 1 << 10,
col_useUnderlayFillGradient = 1 << 11,
col_underlayFillTop = 1 << 12,
col_underlayFillBot = 1 << 13,
col_tuningLine = 1 << 14,
col_passband = 1 << 15,
col_pbtIndicator = 1 << 16,
col_meterLevel = 1 << 17,
col_meterAverage = 1 << 18,
col_meterPeakLevel = 1 << 19,
col_meterHighScale = 1 << 20,
col_meterScale = 1 << 21,
col_meterText = 1 << 22,
col_waterfallBack = 1 << 23,
col_waterfallGrid = 1 << 24,
col_waterfallAxis = 1 << 25,
col_waterfallText = 1 << 26,
col_clusterSpots = 1 << 27,
col_buttonOff = 1 << 28,
col_buttonOn = 1 << 29,
col_all = 1 << 30
};
enum prefRsItem {
rs_dataOffMod = 1 << 0,
rs_data1Mod = 1 << 1,
rs_data2Mod = 1 << 2,
rs_data3Mod = 1 << 3,
rs_setClock = 1 << 4,
rs_clockUseUtc = 1 << 5,
rs_setRadioTime = 1 << 6,
rs_pttOn = 1 << 7,
rs_pttOff = 1 << 8,
rs_satOps = 1 << 9,
rs_adjRef = 1 << 10,
rs_debug = 1 << 11,
rs_all = 1 << 12
};
enum prefRaItem {
ra_radioCIVAddr = 1 << 0,
ra_CIVisRadioModel = 1 << 1,
ra_pttType = 1 << 2,
ra_polling_ms = 1 << 3,
ra_serialEnabled = 1 << 4,
ra_serialPortRadio = 1 << 5,
ra_serialPortBaud = 1 << 6,
ra_virtualSerialPort = 1 << 7,
ra_localAFgain = 1 << 8,
ra_audioSystem = 1 << 9,
ra_manufacturer = 1 << 10,
ra_all = 1 << 11
};
enum prefCtItem {
ct_enablePTT = 1 << 0,
ct_niceTS = 1 << 1,
ct_automaticSidebandSwitching = 1 << 2,
ct_enableUSBControllers = 1 << 3,
ct_USBControllersSetup = 1 << 4,
ct_USBControllersReset = 1 << 5,
ct_all = 1 << 6
};
enum prefLanItem {
l_enableLAN = 1 << 0,
l_enableRigCtlD = 1 << 1,
l_rigCtlPort = 1 << 2,
l_tcpPort = 1 << 3,
l_tciPort = 1 << 4,
l_waterfallFormat = 1 << 5,
l_all = 1 << 6
};
enum prefClusterItem {
cl_clusterUdpEnable = 1 << 0,
cl_clusterTcpEnable = 1 << 1,
cl_clusterUdpPort = 1 << 2,
cl_clusterTcpServerName = 1 << 3,
cl_clusterTcpUserName = 1 << 4,
cl_clusterTcpPassword = 1 << 5,
cl_clusterTcpPort = 1 << 6,
cl_clusterTimeout = 1 << 7,
cl_clusterSkimmerSpotsEnable = 1 << 8,
cl_clusterTcpConnect = 1 << 9,
cl_clusterTcpDisconnect = 1 << 10,
cl_all = 1 << 11
};
enum prefUDPItem {
u_enabled = 1 << 0,
u_ipAddress = 1 << 1,
u_controlLANPort = 1 << 2,
u_serialLANPort = 1 << 3,
u_audioLANPort = 1 << 4,
u_username = 1 << 5,
u_password = 1 << 6,
u_clientName = 1 << 7,
u_halfDuplex = 1 << 8,
u_sampleRate = 1 << 9,
u_rxCodec = 1 << 10,
u_txCodec = 1 << 11,
u_rxLatency = 1 << 12,
u_txLatency = 1 << 13,
u_audioInput = 1 << 14,
u_audioOutput = 1 << 15,
u_connectionType = 1 << 16,
u_adminLogin = 1 << 17,
u_all = 1 << 18
};
struct preferences {
// Program:
QString version;
int majorVersion = 0;
int minorVersion = 0;
QString gitShort;
bool hasRunSetup = false;
bool settingsChanged = false;
QString pastebinHost = QString("termbin.com");
int pastebinPort = 9999;
// Interface:
bool useFullScreen;
bool useSystemTheme;
int wfEnable;
bool drawPeaks;
underlay_t underlayMode = underlayNone;
int underlayBufferSize = 64;
bool wfAntiAlias;
bool wfInterpolate;
int mainWfTheme;
int subWfTheme;
int mainPlotFloor;
int subPlotFloor;
int mainPlotCeiling;
int subPlotCeiling;
unsigned int mainWflength;
unsigned int subWflength;
int scopeScrollX;
int scopeScrollY;
QString stylesheetPath;
bool confirmExit;
bool confirmPowerOff;
bool confirmSettingsChanged;
bool confirmMemories;
meter_t meter1Type;
meter_t meter2Type;
meter_t meter3Type;
bool compMeterReverse = false;
bool clickDragTuningEnable;
int currentColorPresetNumber = 0;
bool rigCreatorEnable = false;
int frequencyUnits = 3;
QString region;
bool showBands;
// Radio:
manufacturersType_t manufacturer;
quint8 radioCIVAddr;
bool CIVisRadioModel;
pttType_t pttType;
int polling_ms;
QString serialPortRadio;
quint32 serialPortBaud;
QString virtualSerialPort;
quint8 localAFgain;
audioType audioSystem;
// Controls:
bool enablePTT;
bool niceTS;
bool automaticSidebandSwitching = true;
bool enableUSBControllers;
// LAN:
bool enableLAN;
bool enableRigCtlD;
quint16 rigCtlPort;
quint16 tcpPort;
quint16 tciPort=50001;
quint8 waterfallFormat;
// Cluster:
QList<clusterSettings> clusters;
bool clusterUdpEnable;
bool clusterTcpEnable;
int clusterUdpPort;
int clusterTcpPort = 7300;
int clusterTimeout; // used?
bool clusterSkimmerSpotsEnable; // where is this used?
QString clusterTcpServerName;
QString clusterTcpUserName;
QString clusterTcpPassword;
// CW Sender settings
bool cwCutNumbers=false;
bool cwSendImmediate=false;
bool cwSidetoneEnabled=true;
int cwSidetoneLevel=50;
QStringList cwMacroList;
// Temporary settings
rigInput inputSource[4];
bool useUTC = false;
bool setRadioTime = false;
audioSetup rxSetup;
audioSetup txSetup;
QChar decimalSeparator;
QChar groupSeparator;
bool forceVfoMode;
bool autoPowerOn;
};
#endif // PREFS_H
|