/** * \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 #ifdef __GNUG__ #pragma implementation #endif #include "LyXView.h" #include "ControlSearch.h" #include "gettext.h" #include "QSearch.h" #include "QSearchDialog.h" #include "Qt2BC.h" #include #include #include typedef Qt2CB > base_class; QSearch::QSearch() : base_class(_("Search")) { } void QSearch::build_dialog() { dialog_.reset(new QSearchDialog(this)); bc().setCancel(dialog_->closePB); bc().addReadOnly(dialog_->replaceCO); bc().addReadOnly(dialog_->replacePB); bc().addReadOnly(dialog_->replaceallPB); bc().addReadOnly(dialog_->caseCB); bc().addReadOnly(dialog_->wordsCB); bc().addReadOnly(dialog_->backwardsCB); 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 all) { controller().replace(findstr, replacestr, casesens, words, all); }