/** * \file QSearch.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * * Full author contact details are available in file CREDITS. */ #include #include "QSearch.h" #include "QSearchDialog.h" #include "Qt2BC.h" #include "controllers/ControlSearch.h" #include using std::string; namespace lyx { namespace frontend { typedef QController > base_class; QSearch::QSearch(Dialog & parent) : base_class(parent, lyx::to_utf8(_("Find and Replace"))) { } void QSearch::build_dialog() { dialog_.reset(new QSearchDialog(this)); bcview().setCancel(dialog_->closePB); bcview().addReadOnly(dialog_->replaceCO); bcview().addReadOnly(dialog_->replacePB); bcview().addReadOnly(dialog_->replaceallPB); dialog_->replacePB->setEnabled(false); dialog_->replaceallPB->setEnabled(false); } void QSearch::find(string const & str, bool casesens, bool words, bool backwards) { controller().find(str, casesens, words, !backwards); } void QSearch::replace(string const & findstr, string const & replacestr, bool casesens, bool words, bool backwards, bool all) { controller().replace(findstr, replacestr, casesens, words, !backwards, all); } } // namespace frontend } // namespace lyx