2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \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 <config.h>
|
|
|
|
|
|
|
|
#include "QSearch.h"
|
|
|
|
#include "QSearchDialog.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
|
|
|
|
#include "controllers/ControlSearch.h"
|
|
|
|
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-03-22 23:07:24 +00:00
|
|
|
typedef QController<ControlSearch, QView<QSearchDialog> > search_base_class;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
QSearch::QSearch(Dialog & parent)
|
2007-03-22 23:07:24 +00:00
|
|
|
: search_base_class(parent, _("Find and Replace"))
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-10 11:52:46 +00:00
|
|
|
void QSearch::find(docstring const & str, bool casesens,
|
2006-03-05 17:24:44 +00:00
|
|
|
bool words, bool backwards)
|
|
|
|
{
|
|
|
|
controller().find(str, casesens, words, !backwards);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-10 11:52:46 +00:00
|
|
|
void QSearch::replace(docstring const & findstr, docstring const & replacestr,
|
2006-03-05 17:24:44 +00:00
|
|
|
bool casesens, bool words, bool backwards, bool all)
|
|
|
|
{
|
|
|
|
controller().replace(findstr, replacestr, casesens, words,
|
|
|
|
!backwards, all);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|