-
Notifications
You must be signed in to change notification settings - Fork 52
/
QBaseObject.h
90 lines (84 loc) · 3.49 KB
/
QBaseObject.h
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
/*************************************************************************
**
** MG-APPS----Multi-GNSS-Automatic Precise Positioning Software
** Copyright (C) 2016-2019 XiaoGongWei
** This file is part of MG-APPS.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** MPL License Usage
** This Source Code Form is subject to the terms of the Mozilla Public
** License, v. 2.0. If a copy of the MPL was not distributed with this
** file, You can obtain one at http://mozilla.org/MPL/2.0/.
**
** GPLv3.0 License Usage
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see http://www.gnu.org/licenses/.
**
**************************************************************************
** Author: XiaoGongWei
** Website/Contact: http://github.com/xiaogongwei
** Date: 26.04.2019
****************************************************************************/
#ifndef QBASEOBJECT_H
#define QBASEOBJECT_H
#include <QString>
#include <QDebug>
#include <ConfigWidget.h>
/*
1. illustration:
QString tempLine = "G";
char tempSatType = '0';
tempSatType = *(tempLine.mid(0,1).toLatin1().data());//convert qstring to char
*/
class QBaseObject
{
//public functions
public:
enum PPP_MODEL {
PPP_Combination = 0,
PPP_NOCombination = 1
};
QBaseObject(void);
~QBaseObject(void);
//set satilite system SystemStr:"G"( open GPS system);"GR":(open GPS+GLONASS system);"GRCE"(open all system)
bool setSatlitSys(QString SystemStr);//GPS, GLONASS, BDS and Galieo use the letters G, R, C and E respectively.
QString getSatlitSys();//GPS, GLONASS, BDS and Galieo use the letters G, R, C and E respectively.
bool isInSystem(char Sys);//Systeam: G R C (representing GPS, GLONASS, BDS) determines whether the system data is needed
int getSystemnum();//Get the current settings for several systems
void setPPPModel(PPP_MODEL _PPP_MODEL) {m_PPP_MODEL = _PPP_MODEL;}
PPP_MODEL getPPPModel() {return m_PPP_MODEL;}
QString getSaveFloderName() {return m_floder_name;}
static ConfigWidget m_ConfigWidget;
private:
void initVar();//Initialize data (GPS is turned on by default)
//Data section
protected:
//Join System Judgment
bool IsaddGPS;//Whether to add GPS (default on)
bool IsaddGLOSS;//Whether to add GLONASS or not
bool IsaddBDS;//Whether to join Beidou
bool IsaddGalieo;//Whether to join Galieo or not
QString m_SystemStr;//GPS, GLONASS, BDS and Galieo use the letters G, R, C and E respectively.
int m_SystemNum;
PPP_MODEL m_PPP_MODEL;
QString m_floder_name;
private:
};
#endif