[1668] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Server
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
| 5 | * Class: bnsSettings
|
---|
| 6 | *
|
---|
| 7 | * Purpose: Subclasses the QSettings
|
---|
| 8 | *
|
---|
| 9 | * Author: G. Weber
|
---|
| 10 | *
|
---|
| 11 | * Created: 27-Feb-2009
|
---|
| 12 | *
|
---|
| 13 | * Changes:
|
---|
| 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
| 17 | #include "bnssettings.h"
|
---|
[1680] | 18 | #include "bnsapp.h"
|
---|
[1668] | 19 |
|
---|
| 20 | // Constructor
|
---|
| 21 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 22 | bnsSettings::bnsSettings() :
|
---|
| 23 | QSettings(((bnsApp*) qApp)->confFileName(), QSettings::IniFormat) {
|
---|
| 24 |
|
---|
| 25 | if (allKeys().size() == 0) {
|
---|
| 26 | setValue("proxyHost", "");
|
---|
| 27 | setValue("proxyPort", "");
|
---|
[1728] | 28 |
|
---|
[1668] | 29 | setValue("logFile", "");
|
---|
[1728] | 30 | setValue("fileAppend", "0");
|
---|
[1695] | 31 | setValue("autoStart", "0");
|
---|
[1728] | 32 |
|
---|
[1668] | 33 | setValue("ephHost", "");
|
---|
| 34 | setValue("ephPort", "");
|
---|
| 35 | setValue("ephEcho", "");
|
---|
[1728] | 36 |
|
---|
[1668] | 37 | setValue("clkPort", "");
|
---|
[1695] | 38 | setValue("inpEcho", "");
|
---|
[1728] | 39 |
|
---|
[1668] | 40 | setValue("outHost1", "");
|
---|
| 41 | setValue("outPort1", "");
|
---|
[1695] | 42 | setValue("mountpoint_1","");
|
---|
| 43 | setValue("password1", "");
|
---|
| 44 | setValue("refSys_1", "IGS05");
|
---|
[1728] | 45 | setValue("beClocks1", "0");
|
---|
[1695] | 46 | setValue("outFile_1", "");
|
---|
[1728] | 47 |
|
---|
[1668] | 48 | setValue("outHost2", "");
|
---|
| 49 | setValue("outPort2", "");
|
---|
| 50 | setValue("mountpoint_2","");
|
---|
[1695] | 51 | setValue("password2", "");
|
---|
| 52 | setValue("refSys_2", "IGS05");
|
---|
[1728] | 53 | setValue("beClocks2", "0");
|
---|
[1668] | 54 | setValue("outFile_2", "");
|
---|
[1728] | 55 |
|
---|
| 56 | setValue("outHost3", "");
|
---|
| 57 | setValue("outPort3", "");
|
---|
| 58 | setValue("mountpoint_3","");
|
---|
| 59 | setValue("password3", "");
|
---|
| 60 | setValue("refSys_3", "IGS05");
|
---|
| 61 | setValue("beClocks3", "0");
|
---|
| 62 | setValue("outFile_3", "");
|
---|
| 63 |
|
---|
[1795] | 64 | setValue("outHostEph", "");
|
---|
| 65 | setValue("outPortEph", "");
|
---|
| 66 | setValue("mountpoint_Eph","");
|
---|
| 67 | setValue("passwordEph", "");
|
---|
[1805] | 68 | setValue("samplEph", "5");
|
---|
[1795] | 69 |
|
---|
[1772] | 70 | setValue("trafo_dx", "0.0541");
|
---|
| 71 | setValue("trafo_dy", "0.0502");
|
---|
| 72 | setValue("trafo_dz", "-0.0538");
|
---|
| 73 | setValue("trafo_dxr", "-0.0002");
|
---|
| 74 | setValue("trafo_dyr", "0.0001");
|
---|
| 75 | setValue("trafo_dzr", "-0.0018");
|
---|
| 76 | setValue("trafo_ox", "0.000891");
|
---|
| 77 | setValue("trafo_oy", "0.005390");
|
---|
| 78 | setValue("trafo_oz", "-0.008712");
|
---|
| 79 | setValue("trafo_oxr", "0.000081");
|
---|
| 80 | setValue("trafo_oyr", "0.000490");
|
---|
| 81 | setValue("trafo_ozr","-0.000792");
|
---|
| 82 | setValue("trafo_sc", "0.40");
|
---|
| 83 | setValue("trafo_scr", "0.08");
|
---|
| 84 | setValue("trafo_t0", "2000.0");
|
---|
[1771] | 85 |
|
---|
[1668] | 86 | setValue("rnxPath", "");
|
---|
| 87 | setValue("rnxIntr", "1 min");
|
---|
| 88 | setValue("rnxSampl", "0");
|
---|
[1728] | 89 |
|
---|
[1668] | 90 | setValue("sp3Path", "");
|
---|
| 91 | setValue("sp3Intr", "10 min");
|
---|
| 92 | setValue("sp3Sampl", "0");
|
---|
[1728] | 93 |
|
---|
[1668] | 94 | setValue("startTab", "0");
|
---|
| 95 | sync();
|
---|
| 96 | }
|
---|
| 97 | }
|
---|
| 98 |
|
---|