mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
897436efbb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18550 a592a061-630c-0410-9148-cb99ea01b6c8
176 lines
3.8 KiB
C++
176 lines
3.8 KiB
C++
/**
|
|
* \file QSearch.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Edwin Leuven
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QSearch.h"
|
|
#include "qt_helpers.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include "controllers/ControlSearch.h"
|
|
|
|
#include <QLineEdit>
|
|
#include <QCloseEvent>
|
|
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// QSearchDialog
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
static void uniqueInsert(QComboBox * box, QString const & text)
|
|
{
|
|
for (int i = 0; i < box->count(); ++i) {
|
|
if (box->itemText(i) == text)
|
|
return;
|
|
}
|
|
|
|
box->addItem(text);
|
|
}
|
|
|
|
|
|
QSearchDialog::QSearchDialog(QSearch * form)
|
|
: form_(form)
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(closePB, SIGNAL(clicked()), form_, SLOT(slotClose()));
|
|
connect(findPB, SIGNAL(clicked()), this, SLOT(findClicked()));
|
|
connect(replacePB, SIGNAL(clicked()), this, SLOT(replaceClicked()));
|
|
connect(replaceallPB, SIGNAL(clicked()), this, SLOT(replaceallClicked()));
|
|
connect(findCO, SIGNAL(editTextChanged(const QString &)),
|
|
this, SLOT(findChanged()));
|
|
|
|
setFocusProxy(findCO);
|
|
}
|
|
|
|
|
|
void QSearchDialog::show()
|
|
{
|
|
QDialog::show();
|
|
findCO->lineEdit()->setSelection(0, findCO->lineEdit()->text().length());
|
|
}
|
|
|
|
|
|
void QSearchDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
|
|
void QSearchDialog::findChanged()
|
|
{
|
|
if (findCO->currentText().isEmpty()) {
|
|
findPB->setEnabled(false);
|
|
replacePB->setEnabled(false);
|
|
replaceallPB->setEnabled(false);
|
|
} else {
|
|
findPB->setEnabled(true);
|
|
replacePB->setEnabled(!form_->readOnly());
|
|
replaceallPB->setEnabled(!form_->readOnly());
|
|
}
|
|
}
|
|
|
|
|
|
void QSearchDialog::findClicked()
|
|
{
|
|
docstring const find = qstring_to_ucs4(findCO->currentText());
|
|
form_->find(find,
|
|
caseCB->isChecked(),
|
|
wordsCB->isChecked(),
|
|
backwardsCB->isChecked());
|
|
uniqueInsert(findCO, findCO->currentText());
|
|
}
|
|
|
|
|
|
void QSearchDialog::replaceClicked()
|
|
{
|
|
docstring const find = qstring_to_ucs4(findCO->currentText());
|
|
docstring const replace = qstring_to_ucs4(replaceCO->currentText());
|
|
form_->replace(find, replace,
|
|
caseCB->isChecked(),
|
|
wordsCB->isChecked(),
|
|
backwardsCB->isChecked(), false);
|
|
uniqueInsert(findCO, findCO->currentText());
|
|
uniqueInsert(replaceCO, replaceCO->currentText());
|
|
}
|
|
|
|
|
|
void QSearchDialog::replaceallClicked()
|
|
{
|
|
form_->replace(qstring_to_ucs4(findCO->currentText()),
|
|
qstring_to_ucs4(replaceCO->currentText()),
|
|
caseCB->isChecked(),
|
|
wordsCB->isChecked(),
|
|
false, true);
|
|
uniqueInsert(findCO, findCO->currentText());
|
|
uniqueInsert(replaceCO, replaceCO->currentText());
|
|
}
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// QSearch
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
typedef QController<ControlSearch, QView<QSearchDialog> > SearchBase;
|
|
|
|
|
|
QSearch::QSearch(Dialog & parent)
|
|
: SearchBase(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(docstring const & str, bool casesens,
|
|
bool words, bool backwards)
|
|
{
|
|
controller().find(str, casesens, words, !backwards);
|
|
}
|
|
|
|
|
|
void QSearch::replace(docstring const & findstr, docstring const & replacestr,
|
|
bool casesens, bool words, bool backwards, bool all)
|
|
{
|
|
controller().replace(findstr, replacestr, casesens, words,
|
|
!backwards, all);
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
|
|
#include "QSearch_moc.cpp"
|