File: svroptdlg.h

package info (click to toggle)
rtklib 2.4.3%2Bdfsg1-2.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 41,796 kB
  • sloc: cpp: 51,592; ansic: 50,584; fortran: 987; makefile: 861; sh: 45
file content (31 lines) | stat: -rw-r--r-- 964 bytes parent folder | download | duplicates (2)
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
//---------------------------------------------------------------------------
#ifndef svroptdlgH
#define svroptdlgH
//---------------------------------------------------------------------------
#include <QDialog>
#include "ui_svroptdlg.h"

class QShowEvent;
//---------------------------------------------------------------------------
class SvrOptDialog : public QDialog, public Ui::SvrOptDialog
{
    Q_OBJECT
public slots:
    void BtnOkClick();
    void BtnPosClick();
    void NmeaReqTClick();
    void BtnLocalDirClick();
    void StaInfoSelClick();
protected:
    void showEvent(QShowEvent*);
private:
    void UpdateEnable(void);
public:
    QString StaPosFile,ExeDirectory,LocalDirectory,ProxyAddress;
    QString AntType,RcvType;
	int SvrOpt[6],TraceLevel,NmeaReq,FileSwapMargin,StaId,StaSel;
	double AntPos[3],AntOff[3];
    explicit SvrOptDialog(QWidget *parent);
};
//---------------------------------------------------------------------------
#endif