source: ntrip/trunk/BNC/bncwindow.h@ 188

Last change on this file since 188 was 182, checked in by mervart, 18 years ago

* empty log message *

File size: 1.5 KB
RevLine 
[35]1
2#ifndef BNCWINDOW_H
3#define BNCWINDOW_H
4
5#include <QtGui>
6
7#include "bncgetthread.h"
8#include "bnccaster.h"
9
10class bncWindow : public QMainWindow {
11 Q_OBJECT
12
13 public:
14 bncWindow();
[83]15 ~bncWindow();
16
17 public slots:
18 void slotMessage(const QByteArray& msg);
[35]19
20 private slots:
[108]21 void slotHelp();
22 void slotAbout();
[111]23 void slotFontSel();
[35]24 void slotSaveOptions();
25 void slotAddMountPoints();
26 void slotGetData();
[182]27 void slotStop();
[35]28 void slotNewMountPoints(QStringList* mountPoints);
29 void slotDeleteMountPoints();
30 void slotGetThreadErrors();
[83]31 void slotSelectionChanged();
[35]32
[83]33 protected:
34 virtual void closeEvent(QCloseEvent *);
35
[35]36 private:
37 QMenu* _menuHlp;
38 QMenu* _menuFile;
39
[108]40 QAction* _actHelp;
[35]41 QAction* _actAbout;
[111]42 QAction* _actFontSel;
[35]43 QAction* _actSaveOpt;
44 QAction* _actQuit;
45 QAction* _actGetData;
[182]46 QAction* _actStop;
[35]47 QAction* _actAddMountPoints;
48 QAction* _actDeleteMountPoints;
49
50 QLineEdit* _proxyHostLineEdit;
51 QLineEdit* _proxyPortLineEdit;
52 QLineEdit* _outFileLineEdit;
53 QLineEdit* _outPortLineEdit;
[83]54 QLineEdit* _rnxPathLineEdit;
55 QLineEdit* _rnxSkelLineEdit;
[106]56 QLineEdit* _rnxScrpLineEdit;
[143]57 QLineEdit* _logFileLineEdit;
[106]58 QComboBox* _rnxIntrComboBox;
59 QSpinBox* _rnxSamplSpinBox;
[135]60 QSpinBox* _waitTimeSpinBox;
[83]61 QTableWidget* _mountPointsTable;
[35]62
[83]63 QTextEdit* _log;
64
[35]65 QWidget* _canvas;
66
67 bncCaster* _bncCaster;
68};
69#endif
Note: See TracBrowser for help on using the repository browser.