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

Last change on this file since 258 was 196, checked in by mervart, 20 years ago

* empty log message *

File size: 885 bytes
RevLine 
[35]1
2#ifndef BNCTABLEDLG_H
3#define BNCTABLEDLG_H
4
[191]5#include <QtCore>
[35]6#include <QtGui>
7
[191]8#include "bncconst.h"
9
[35]10class bncTableDlg : public QDialog {
11 Q_OBJECT
12
13 public:
[90]14 bncTableDlg(QWidget* parent);
[35]15 ~bncTableDlg();
[191]16 static t_irc getFullTable(const QString& casterHost, int casterPort,
17 QStringList& allLines);
[35]18
19 signals:
20 void newMountPoints(QStringList* mountPoints);
[191]21
[35]22 private slots:
23 virtual void accept();
24 void slotGetTable();
[195]25 void slotSkl();
26 void slotSelectionChanged();
[35]27
28 private:
29 QLineEdit* _casterHostLineEdit;
30 QLineEdit* _casterPortLineEdit;
[88]31 QLineEdit* _casterUserLineEdit;
32 QLineEdit* _casterPasswordLineEdit;
[35]33
[195]34 QPushButton* _buttonSkl;
[35]35 QPushButton* _buttonGet;
36 QPushButton* _buttonCancel;
37 QPushButton* _buttonOK;
38
39 QTableWidget* _table;
[196]40 QStringList _allLines;
[35]41};
42
43#endif
Note: See TracBrowser for help on using the repository browser.