1 | #ifndef BNSWINDOW_H
|
---|
2 | #define BNSWINDOW_H
|
---|
3 |
|
---|
4 | #include <QtGui>
|
---|
5 | #include <QWhatsThis>
|
---|
6 |
|
---|
7 | #include "bns.h"
|
---|
8 |
|
---|
9 | class bnsAboutDlg : public QDialog {
|
---|
10 | Q_OBJECT
|
---|
11 | public:
|
---|
12 | bnsAboutDlg(QWidget* parent);
|
---|
13 | ~bnsAboutDlg();
|
---|
14 | };
|
---|
15 |
|
---|
16 | class bnsFlowchartDlg : public QDialog {
|
---|
17 | Q_OBJECT
|
---|
18 |
|
---|
19 | public:
|
---|
20 | bnsFlowchartDlg(QWidget* parent);
|
---|
21 | ~bnsFlowchartDlg();
|
---|
22 | };
|
---|
23 |
|
---|
24 | class bnsWindow : public QMainWindow {
|
---|
25 | Q_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 | void bnsText(const QString &text);
|
---|
35 |
|
---|
36 | private slots:
|
---|
37 | void slotHelp();
|
---|
38 | void slotAbout();
|
---|
39 | void slotFlowchart();
|
---|
40 | void slotFontSel();
|
---|
41 | void slotSaveOptions();
|
---|
42 | void slotWhatsThis();
|
---|
43 | void slotStart();
|
---|
44 | void slotStop();
|
---|
45 | void slotEphBytes(int nBytes);
|
---|
46 | void slotClkBytes(int nBytes);
|
---|
47 | void slotOutBytes1(int nBytes);
|
---|
48 | void slotOutBytes2(int nBytes);
|
---|
49 | void slotOutBytes3(int nBytes);
|
---|
50 |
|
---|
51 | protected:
|
---|
52 | virtual void closeEvent(QCloseEvent *);
|
---|
53 |
|
---|
54 | private:
|
---|
55 | void CreateMenu();
|
---|
56 | void AddToolbar();
|
---|
57 | void deleteBns();
|
---|
58 | void updateStatus(int ii, int nBytes);
|
---|
59 |
|
---|
60 | QMenu* _menuHlp;
|
---|
61 | QMenu* _menuFile;
|
---|
62 |
|
---|
63 | QAction* _actHelp;
|
---|
64 | QAction* _actAbout;
|
---|
65 | QAction* _actFlowchart;
|
---|
66 | QAction* _actFontSel;
|
---|
67 | QAction* _actSaveOpt;
|
---|
68 | QAction* _actQuit;
|
---|
69 | QAction* _actWhatsThis;
|
---|
70 | QAction* _actStart;
|
---|
71 | QAction* _actStop;
|
---|
72 |
|
---|
73 | QWidget* _canvas;
|
---|
74 |
|
---|
75 | QLineEdit* _proxyHostLineEdit;
|
---|
76 | QLineEdit* _proxyPortLineEdit;
|
---|
77 |
|
---|
78 | QLineEdit* _logFileLineEdit;
|
---|
79 | QCheckBox* _fileAppendCheckBox;
|
---|
80 | QCheckBox* _autoStartCheckBox;
|
---|
81 |
|
---|
82 | QLineEdit* _ephHostLineEdit;
|
---|
83 | QLineEdit* _ephPortLineEdit;
|
---|
84 | QLineEdit* _ephEchoLineEdit;
|
---|
85 |
|
---|
86 | QLineEdit* _clkPortLineEdit;
|
---|
87 | QLineEdit* _inpEchoLineEdit;
|
---|
88 |
|
---|
89 | QLineEdit* _outHost_1_LineEdit;
|
---|
90 | QLineEdit* _outPort_1_LineEdit;
|
---|
91 | QLineEdit* _mountpoint_1_LineEdit;
|
---|
92 | QLineEdit* _password_1_LineEdit;
|
---|
93 | QComboBox* _refSys_1_ComboBox;
|
---|
94 | QLineEdit* _outFile_1_LineEdit;
|
---|
95 | QCheckBox* _beClocks1CheckBox;
|
---|
96 |
|
---|
97 | QLineEdit* _outHost_2_LineEdit;
|
---|
98 | QLineEdit* _outPort_2_LineEdit;
|
---|
99 | QLineEdit* _mountpoint_2_LineEdit;
|
---|
100 | QLineEdit* _password_2_LineEdit;
|
---|
101 | QComboBox* _refSys_2_ComboBox;
|
---|
102 | QLineEdit* _outFile_2_LineEdit;
|
---|
103 | QCheckBox* _beClocks2CheckBox;
|
---|
104 |
|
---|
105 | QLineEdit* _outHost_3_LineEdit;
|
---|
106 | QLineEdit* _outPort_3_LineEdit;
|
---|
107 | QLineEdit* _mountpoint_3_LineEdit;
|
---|
108 | QLineEdit* _password_3_LineEdit;
|
---|
109 | QComboBox* _refSys_3_ComboBox;
|
---|
110 | QLineEdit* _outFile_3_LineEdit;
|
---|
111 | QCheckBox* _beClocks3CheckBox;
|
---|
112 |
|
---|
113 | QLineEdit* _rnxPathLineEdit;
|
---|
114 | QComboBox* _rnxIntrComboBox;
|
---|
115 | QSpinBox* _rnxSamplSpinBox;
|
---|
116 |
|
---|
117 | QLineEdit* _sp3PathLineEdit;
|
---|
118 | QComboBox* _sp3IntrComboBox;
|
---|
119 | QSpinBox* _sp3SamplSpinBox;
|
---|
120 |
|
---|
121 | QTextEdit* _log;
|
---|
122 |
|
---|
123 | QTabWidget* tabs;
|
---|
124 | //QWidget* _status;
|
---|
125 | QGroupBox* _status;
|
---|
126 | QLabel* _statusLbl[10];
|
---|
127 | double _statusCnt[5];
|
---|
128 | QMutex _mutex;
|
---|
129 |
|
---|
130 | t_bns* _bns;
|
---|
131 | };
|
---|
132 | #endif
|
---|