lyx_mirror/src/frontends/qt4/QSearch.C

65 lines
1.3 KiB
C++
Raw Normal View History

/**
* \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 {
typedef QController<ControlSearch, QView<QSearchDialog> > base_class;
QSearch::QSearch(Dialog & parent)
: base_class(parent, _("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