[280] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
[464] | 2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
[280] | 3 | //
|
---|
[464] | 4 | // Copyright (C) 2007
|
---|
[280] | 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
| 6 | // http://www.bkg.bund.de
|
---|
[464] | 7 | // Czech Technical University Prague, Department of Geodesy
|
---|
[280] | 8 | // http://www.fsv.cvut.cz
|
---|
| 9 | //
|
---|
| 10 | // Email: euref-ip@bkg.bund.de
|
---|
| 11 | //
|
---|
| 12 | // This program is free software; you can redistribute it and/or
|
---|
| 13 | // modify it under the terms of the GNU General Public License
|
---|
| 14 | // as published by the Free Software Foundation, version 2.
|
---|
| 15 | //
|
---|
| 16 | // This program is distributed in the hope that it will be useful,
|
---|
| 17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 19 | // GNU General Public License for more details.
|
---|
| 20 | //
|
---|
| 21 | // You should have received a copy of the GNU General Public License
|
---|
| 22 | // along with this program; if not, write to the Free Software
|
---|
| 23 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
[177] | 24 |
|
---|
| 25 | #ifndef BNCHLPDLG_H
|
---|
| 26 | #define BNCHLPDLG_H
|
---|
| 27 |
|
---|
| 28 | #include <QtCore>
|
---|
| 29 |
|
---|
[8203] | 30 | #include <QDialog>
|
---|
[10082] | 31 | #include <QLabel>
|
---|
| 32 | #include <QCheckBox>
|
---|
| 33 | #include <QLineEdit>
|
---|
[8203] | 34 | #include <QPushButton>
|
---|
| 35 |
|
---|
[177] | 36 | class bncHtml;
|
---|
| 37 |
|
---|
| 38 | class bncHlpDlg : public QDialog {
|
---|
| 39 | Q_OBJECT
|
---|
| 40 |
|
---|
| 41 | public:
|
---|
| 42 | bncHlpDlg(QWidget* parent, const QUrl& url);
|
---|
| 43 | ~bncHlpDlg();
|
---|
| 44 |
|
---|
| 45 | signals:
|
---|
[10082] | 46 | void findNext(const QString& str, Qt::CaseSensitivity cs);
|
---|
| 47 | void findPrev(const QString& str, Qt::CaseSensitivity cs);
|
---|
| 48 |
|
---|
[177] | 49 | public slots:
|
---|
| 50 | void backwardAvailable(bool);
|
---|
| 51 | void forwardAvailable(bool);
|
---|
[10082] | 52 | void findClicked();
|
---|
| 53 | void enableBtnFind(const QString& text);
|
---|
| 54 | void slotFindNext(const QString& str, Qt::CaseSensitivity cs);
|
---|
| 55 | void slotFindPrev(const QString& str, Qt::CaseSensitivity cs);
|
---|
[177] | 56 |
|
---|
| 57 | private:
|
---|
[10082] | 58 | bncHtml* _tb;
|
---|
| 59 | QPushButton* _backButton;
|
---|
| 60 | QPushButton* _forwButton;
|
---|
| 61 | QPushButton* _closeButton;
|
---|
| 62 | QPushButton* _findButton;
|
---|
| 63 | QTextCursor _hlCursor;
|
---|
| 64 | QLabel* _label;
|
---|
| 65 | QLineEdit* _what;
|
---|
| 66 | QCheckBox* _cbCase;
|
---|
| 67 | QCheckBox* _cbBack;
|
---|
[177] | 68 | };
|
---|
| 69 |
|
---|
| 70 | #endif
|
---|