Changeset 10082 in ntrip for trunk/BNC/src/bnchlpdlg.h


Ignore:
Timestamp:
Jun 1, 2023, 8:00:11 AM (11 months ago)
Author:
stuerze
Message:

find function added in internal help contents

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnchlpdlg.h

    r8252 r10082  
    2929
    3030#include <QDialog>
     31#include <QLabel>
     32#include <QCheckBox>
     33#include <QLineEdit>
    3134#include <QPushButton>
    3235
     
    4144
    4245  signals:
    43  
     46  void findNext(const QString& str, Qt::CaseSensitivity cs);
     47  void findPrev(const QString& str, Qt::CaseSensitivity cs);
     48
    4449  public slots:
    4550    void backwardAvailable(bool);
    4651    void forwardAvailable(bool);
     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);
    4756
    4857  private:
    49     bncHtml*     _tb;
    50     QPushButton* _backButton;
    51     QPushButton* _forwButton;
    52     QPushButton* _closeButton;
     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;
    5368};
    5469
Note: See TracChangeset for help on using the changeset viewer.