X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiSearch.h;h=b56555307456b50c33b821213939d26b62c40721;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=c3267345a93ec9e73300bf26eb291e28ad60ab43;hpb=a1cec91afaca91968b46e695533c10ad2a3f73d3;p=lyx.git diff --git a/src/frontends/qt4/GuiSearch.h b/src/frontends/qt4/GuiSearch.h index c3267345a9..b565553074 100644 --- a/src/frontends/qt4/GuiSearch.h +++ b/src/frontends/qt4/GuiSearch.h @@ -5,73 +5,52 @@ * Licence details can be found in the file COPYING. * * \author John Levon + * \author Angus Leeming * * Full author contact details are available in file CREDITS. */ -#ifndef QSEARCH_H -#define QSEARCH_H +#ifndef GUISEARCH_H +#define GUISEARCH_H -#include "GuiDialogView.h" +#include "GuiDialog.h" #include "ui_SearchUi.h" -#include - -#include namespace lyx { namespace frontend { -class ControlSearch; - -class GuiSearch; - -class GuiSearchDialog : public QDialog, public Ui::SearchUi { +class GuiSearch : public GuiDialog, public Ui::SearchUi +{ Q_OBJECT + public: - GuiSearchDialog(GuiSearch * form); + GuiSearch(GuiView & lv); - virtual void show(); -protected Q_SLOTS: +private Q_SLOTS: void findChanged(); void findClicked(); void replaceClicked(); void replaceallClicked(); -protected: - virtual void closeEvent(QCloseEvent * e); private: - // add a string to the combo if needed - void remember(std::string const & find, QComboBox & combo); - - GuiSearch * form_; -}; - - -class GuiSearch - : public QController > -{ -public: - /// - friend class GuiSearchDialog; + void showEvent(QShowEvent * e); /// - GuiSearch(Dialog &); -private: - /// Apply changes - virtual void apply() {} - /// update - virtual void update_contents() {} - /// build the dialog - virtual void build_dialog(); - - void find(docstring const & str, bool casesens, - bool words, bool backwards); - - void replace(docstring const & findstr, - docstring const & replacestr, - bool casesens, bool words, bool backwards, bool all); + bool initialiseParams(std::string const &) { return true; } + void clearParams() {} + void dispatchParams() {} + bool isBufferDependent() const { return true; } + + /// Searches occurence of string + void find(docstring const & search, + bool casesensitive, bool matchword, bool forward); + + /// Replaces occurence of string + void replace(docstring const & search, docstring const & replace, + bool casesensitive, bool matchword, + bool forward, bool all); }; } // namespace frontend } // namespace lyx -#endif // QSEARCH_H +#endif // GUISEARCH_H