mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
e6fea4b844
* controllers/Dialog.[Ch] - View::title_ is now a docstring (ctor and access functions changed) * controllers/ControlLog.[Ch] - title() now returns a docstring * controllers/ControlLog.[Ch] - title() now returns a docstring * qt4/*: adapted to above changes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15283 a592a061-630c-0410-9148-cb99ea01b6c8
65 lines
1.3 KiB
C
65 lines
1.3 KiB
C
/**
|
|
* \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
|