/** * \file QSearchDialog.h * Copyright 2001 the LyX Team * Read the file COPYING * * \author Edwin Leuven */ #ifndef QSEARCHDIALOG_H #define QSEARCHDIALOG_H #include #include "ui/QSearchDialogBase.h" #include "QSearch.h" class QCloseEvent; class QComboBox; class QSearchDialog : public QSearchDialogBase { Q_OBJECT public: QSearchDialog(QSearch * form); protected slots: void findChanged(); void findClicked(); void replaceClicked(); void replaceallClicked(); protected: void closeEvent(QCloseEvent * e); private: // add a string to the combo if needed void QSearchDialog::remember(string const & find, QComboBox & combo); QSearch * form_; }; #endif // QSEARCHDIALOG_H