source: ntrip/trunk/BNC/bnchlpdlg.h@ 177

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

* empty log message *

File size: 451 bytes
Line 
1
2#ifndef BNCHLPDLG_H
3#define BNCHLPDLG_H
4
5#include <QtCore>
6#include <QtGui>
7
8class bncHtml;
9
10class bncHlpDlg : public QDialog {
11 Q_OBJECT
12
13 public:
14 bncHlpDlg(QWidget* parent, const QUrl& url);
15 ~bncHlpDlg();
16
17 signals:
18
19 public slots:
20 void backwardAvailable(bool);
21 void forwardAvailable(bool);
22
23 private:
24 bncHtml* _tb;
25 QPushButton* _backButton;
26 QPushButton* _forwButton;
27 QPushButton* _closeButton;
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.