mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
28 lines
391 B
C++
28 lines
391 B
C++
#ifndef LC_QFINDDIALOG_H
|
|
#define LC_QFINDDIALOG_H
|
|
|
|
#include <QDialog>
|
|
struct lcSearchOptions;
|
|
|
|
namespace Ui {
|
|
class lcQFindDialog;
|
|
}
|
|
|
|
class lcQFindDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit lcQFindDialog(QWidget *parent, void *data);
|
|
~lcQFindDialog();
|
|
|
|
lcSearchOptions *options;
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
Ui::lcQFindDialog *ui;
|
|
};
|
|
|
|
#endif // LC_QFINDDIALOG_H
|