OpenCores
URL https://opencores.org/ocsvn/ezidebug/ezidebug/trunk

Subversion Repositories ezidebug

[/] [ezidebug/] [trunk/] [EziDebug_src/] [finddialog.h] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 EziDebug
#ifndef FINDDIALOG_H
2
#define FINDDIALOG_H
3
 
4
#include <QDialog>
5
 
6
class QCheckBox;
7
class QLabel;
8
class QLineEdit;
9
class QPushButton;
10
 
11
class FindDialog : public QDialog
12
{
13
    Q_OBJECT
14
 
15
public:
16
    FindDialog(QWidget *parent = 0);
17
 
18
signals:
19
    void findNext(const QString &str, Qt::CaseSensitivity cs);
20
    void findPrevious(const QString &str, Qt::CaseSensitivity cs);
21
 
22
private slots:
23
    void findClicked();
24
    void enableFindButton(const QString &text);
25
 
26
private:
27
    QLabel *label;
28
    QLineEdit *lineEdit;
29
    QCheckBox *caseCheckBox;
30
    QCheckBox *backwardCheckBox;
31
    QPushButton *findButton;
32
    QPushButton *closeButton;
33
};
34
 
35
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.