source: ntrip/trunk/BNC/bnctabledlg.h@ 35

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

Imported sources

File size: 696 bytes
Line 
1
2#ifndef BNCTABLEDLG_H
3#define BNCTABLEDLG_H
4
5#include <QtGui>
6
7class bncTableDlg : public QDialog {
8 Q_OBJECT
9
10 public:
11 bncTableDlg(QWidget* parent, const QString& proxyHost, int proxyPort);
12 ~bncTableDlg();
13
14 signals:
15 void newMountPoints(QStringList* mountPoints);
16
17 private slots:
18 virtual void accept();
19 void slotGetTable();
20
21 private:
22 QString _proxyHost;
23 int _proxyPort;
24
25 QLabel* _casterHostLabel;
26 QLabel* _casterPortLabel;
27 QLineEdit* _casterHostLineEdit;
28 QLineEdit* _casterPortLineEdit;
29
30 QPushButton* _buttonGet;
31 QPushButton* _buttonCancel;
32 QPushButton* _buttonOK;
33
34 QTableWidget* _table;
35};
36
37#endif
Note: See TracBrowser for help on using the repository browser.