[1535] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Client
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
| 5 | * Class: bncSettings
|
---|
| 6 | *
|
---|
| 7 | * Purpose: Subclasses the QSettings
|
---|
| 8 | *
|
---|
| 9 | * Author: L. Mervart
|
---|
| 10 | *
|
---|
| 11 | * Created: 25-Jan-2009
|
---|
| 12 | *
|
---|
| 13 | * Changes:
|
---|
| 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
[1537] | 17 | #include <QCoreApplication>
|
---|
[1536] | 18 | #include <QStringList>
|
---|
| 19 |
|
---|
[1535] | 20 | #include "bncsettings.h"
|
---|
[1538] | 21 | #include "bncapp.h"
|
---|
[1535] | 22 |
|
---|
| 23 | // Constructor
|
---|
| 24 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1537] | 25 | bncSettings::bncSettings() :
|
---|
[1538] | 26 | QSettings(((bncApp*) qApp)->confFileName(), QSettings::IniFormat) {
|
---|
[1536] | 27 |
|
---|
| 28 | if (allKeys().size() == 0) {
|
---|
| 29 | setValue("adviseFail", "15");
|
---|
| 30 | setValue("adviseReco", "5");
|
---|
| 31 | setValue("adviseScript", "");
|
---|
| 32 | setValue("autoStart", "0");
|
---|
| 33 | setValue("binSampl", "0");
|
---|
| 34 | setValue("casterUrlList", (QStringList()
|
---|
| 35 | << "http://user:pass@www.euref-ip.net:2101"
|
---|
| 36 | << "http://user:pass@www.igs-ip.net:2101"));
|
---|
| 37 | setValue("corrIntr", "1 day");
|
---|
| 38 | setValue("corrPath", "");
|
---|
| 39 | setValue("corrPort", "");
|
---|
| 40 | setValue("corrTime", "5");
|
---|
| 41 | setValue("ephIntr", "1 day");
|
---|
| 42 | setValue("ephPath", "");
|
---|
| 43 | setValue("ephV3", "0");
|
---|
| 44 | setValue("logFile", "");
|
---|
| 45 | setValue("miscMount", "");
|
---|
| 46 | setValue("mountPoints", "");
|
---|
| 47 | setValue("ntripVersion", "1");
|
---|
| 48 | setValue("obsRate", "");
|
---|
| 49 | setValue("onTheFlyInterval", "1 day");
|
---|
| 50 | setValue("outEphPort", "");
|
---|
| 51 | setValue("outFile", "");
|
---|
| 52 | setValue("outPort", "");
|
---|
| 53 | setValue("outUPort", "");
|
---|
| 54 | setValue("perfIntr", "");
|
---|
| 55 | setValue("proxyHost", "");
|
---|
| 56 | setValue("proxyPort", "");
|
---|
| 57 | setValue("rnxAppend", "0");
|
---|
| 58 | setValue("rnxIntr", "1 day");
|
---|
| 59 | setValue("rnxPath", "");
|
---|
| 60 | setValue("rnxSampl", "0");
|
---|
| 61 | setValue("rnxScript", "");
|
---|
| 62 | setValue("rnxSkel", "SKL");
|
---|
| 63 | setValue("rnxV3", "0");
|
---|
| 64 | setValue("scanRTCM", "0");
|
---|
[1595] | 65 | setValue("serialAutoNMEA", "Auto");
|
---|
[1536] | 66 | setValue("serialBaudRate", "9600");
|
---|
| 67 | setValue("serialDataBits", "8");
|
---|
[1601] | 68 | setValue("serialFileNMEA", "");
|
---|
[1595] | 69 | setValue("serialHeightNMEA", "");
|
---|
[1536] | 70 | setValue("serialMountPoint", "");
|
---|
| 71 | setValue("serialParity", "NONE");
|
---|
| 72 | setValue("serialPortName", "");
|
---|
| 73 | setValue("serialStopBits", "1");
|
---|
| 74 | setValue("startTab", "0");
|
---|
| 75 | setValue("waitTime", "5");
|
---|
[1538] | 76 |
|
---|
| 77 | sync();
|
---|
[1536] | 78 | }
|
---|
[1535] | 79 | }
|
---|
| 80 |
|
---|