source: ntrip/trunk/BNS/bnswindow.h@ 1249

Last change on this file since 1249 was 1249, checked in by weber, 15 years ago

* empty log message *

File size: 2.3 KB
Line 
1#ifndef BNSWINDOW_H
2#define BNSWINDOW_H
3
4#include <QtGui>
5#include <QWhatsThis>
6
7#include "bns.h"
8
9class bnsAboutDlg : public QDialog {
10 Q_OBJECT
11 public:
12 bnsAboutDlg(QWidget* parent);
13 ~bnsAboutDlg();
14};
15
16class bnsFlowchartDlg : public QDialog {
17 Q_OBJECT
18
19 public:
20 bnsFlowchartDlg(QWidget* parent);
21 ~bnsFlowchartDlg();
22};
23
24class bnsWindow : public QMainWindow {
25Q_OBJECT
26
27 public:
28 bnsWindow();
29 ~bnsWindow();
30
31 public slots:
32 void slotMessage(const QByteArray msg);
33 void slotError(const QByteArray msg);
34
35 private slots:
36 void slotHelp();
37 void slotAbout();
38 void slotFlowchart();
39 void slotFontSel();
40 void slotSaveOptions();
41 void slotWhatsThis();
42 void slotStart();
43 void slotStop();
44 void slotEphBytes(int nBytes);
45 void slotClkBytes(int nBytes);
46 void slotOutBytes(int nBytes);
47
48 protected:
49 virtual void closeEvent(QCloseEvent *);
50
51 private:
52 void CreateMenu();
53 void AddToolbar();
54 void deleteBns();
55 void updateStatus(int ii, int nBytes);
56
57 QMenu* _menuHlp;
58 QMenu* _menuFile;
59
60 QAction* _actHelp;
61 QAction* _actAbout;
62 QAction* _actFlowchart;
63 QAction* _actFontSel;
64 QAction* _actSaveOpt;
65 QAction* _actQuit;
66 QAction* _actWhatsThis;
67 QAction* _actStart;
68 QAction* _actStop;
69
70 QWidget* _canvas;
71
72 QLineEdit* _proxyHostLineEdit;
73 QLineEdit* _proxyPortLineEdit;
74 QLineEdit* _inpEchoLineEdit;
75 QLineEdit* _ephHostLineEdit;
76 QLineEdit* _ephPortLineEdit;
77 QLineEdit* _ephEchoLineEdit;
78 QLineEdit* _clkPortLineEdit;
79 QLineEdit* _logFileLineEdit;
80 QLineEdit* _outHost_1_LineEdit;
81 QLineEdit* _outPort_1_LineEdit;
82 QLineEdit* _password_1_LineEdit;
83 QLineEdit* _outHost_2_LineEdit;
84 QLineEdit* _outPort_2_LineEdit;
85 QLineEdit* _password_2_LineEdit;
86 QLineEdit* _mountpoint_1_LineEdit;
87 QLineEdit* _mountpoint_2_LineEdit;
88 QLineEdit* _outFile_1_LineEdit;
89 QLineEdit* _outFile_2_LineEdit;
90 QComboBox* _refSys_1_ComboBox;
91 QComboBox* _refSys_2_ComboBox;
92 QLineEdit* _rnxPathLineEdit;
93 QLineEdit* _sp3PathLineEdit;
94 QComboBox* _rnxIntrComboBox;
95 QComboBox* _sp3IntrComboBox;
96 QSpinBox* _rnxSamplSpinBox;
97 QSpinBox* _sp3SamplSpinBox;
98 QCheckBox* _fileAppendCheckBox;
99
100 QTextEdit* _log;
101
102//QWidget* _status;
103 QGroupBox* _status;
104 QLabel* _statusLbl[6];
105 double _statusCnt[3];
106 QMutex _mutex;
107
108 t_bns* _bns;
109};
110#endif
Note: See TracBrowser for help on using the repository browser.