mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
417a4da175
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2634 a592a061-630c-0410-9148-cb99ea01b6c8
79 lines
1.5 KiB
C
79 lines
1.5 KiB
C
/**
|
|
* \file QSearchDialog.C
|
|
* Copyright 2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlSearch.h"
|
|
#include "QSearchDialog.h"
|
|
#include "debug.h"
|
|
|
|
#include <qpushbutton.h>
|
|
#include <qcombobox.h>
|
|
#include <qcheckbox.h>
|
|
#include <qlabel.h>
|
|
|
|
QSearchDialog::QSearchDialog(QSearch * form)
|
|
: QSearchDialogBase(0, 0, false, 0),
|
|
form_(form)
|
|
{
|
|
connect(closePB, SIGNAL(clicked()),
|
|
form_, SLOT(slotClose()));
|
|
}
|
|
|
|
|
|
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(findCO->currentText().latin1());
|
|
form_->find(find,
|
|
caseCB->isChecked(),
|
|
wordsCB->isChecked(),
|
|
backwardsCB->isChecked());
|
|
}
|
|
|
|
|
|
void QSearchDialog::replaceClicked()
|
|
{
|
|
string const find(findCO->currentText().latin1());
|
|
string const replace(replaceCO->currentText().latin1());
|
|
form_->replace(find, replace,
|
|
caseCB->isChecked(),
|
|
wordsCB->isChecked(),
|
|
false);
|
|
}
|
|
|
|
|
|
void QSearchDialog::replaceallClicked()
|
|
{
|
|
form_->replace(findCO->currentText().latin1(),
|
|
replaceCO->currentText().latin1(),
|
|
caseCB->isChecked(),
|
|
wordsCB->isChecked(),
|
|
true);
|
|
}
|