mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
126 lines
2.6 KiB
C++
126 lines
2.6 KiB
C++
|
/**
|
||
|
* \file QSearchDialog.C
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Edwin Leuven
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "QSearchDialog.h"
|
||
|
#include "QSearch.h"
|
||
|
#include "qt_helpers.h"
|
||
|
//Added by qt3to4:
|
||
|
#include <QCloseEvent>
|
||
|
|
||
|
#include "controllers/ControlSearch.h"
|
||
|
|
||
|
#include <qcheckbox.h>
|
||
|
#include <qlineedit.h>
|
||
|
#include <qpushbutton.h>
|
||
|
|
||
|
using std::string;
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace frontend {
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
void uniqueInsert(QComboBox * box, QString const & text)
|
||
|
{
|
||
|
for (int i = 0; i < box->count(); ++i) {
|
||
|
if (box->text(i) == text)
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
box->insertItem(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( textChanged(const QString&) ), this, SLOT( findChanged() ) );
|
||
|
}
|
||
|
|
||
|
|
||
|
void QSearchDialog::show()
|
||
|
{
|
||
|
QDialog::show();
|
||
|
findCO->setFocus();
|
||
|
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()
|
||
|
{
|
||
|
string const find(fromqstr(findCO->currentText()));
|
||
|
form_->find(find,
|
||
|
caseCB->isChecked(),
|
||
|
wordsCB->isChecked(),
|
||
|
backwardsCB->isChecked());
|
||
|
uniqueInsert(findCO, findCO->currentText());
|
||
|
}
|
||
|
|
||
|
|
||
|
void QSearchDialog::replaceClicked()
|
||
|
{
|
||
|
string const find(fromqstr(findCO->currentText()));
|
||
|
string const replace(fromqstr(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(fromqstr(findCO->currentText()),
|
||
|
fromqstr(replaceCO->currentText()),
|
||
|
caseCB->isChecked(),
|
||
|
wordsCB->isChecked(),
|
||
|
false, true);
|
||
|
uniqueInsert(findCO, findCO->currentText());
|
||
|
uniqueInsert(replaceCO, replaceCO->currentText());
|
||
|
}
|
||
|
|
||
|
} // namespace frontend
|
||
|
} // namespace lyx
|