mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
8c5f097b5d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18015 a592a061-630c-0410-9148-cb99ea01b6c8
216 lines
4.2 KiB
C++
216 lines
4.2 KiB
C++
/**
|
|
* \file QSpellchecker.cpp
|
|
* 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 "QSpellchecker.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "controllers/ControlSpellchecker.h"
|
|
|
|
#include <QProgressBar>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QListWidget>
|
|
#include <QListWidgetItem>
|
|
#include <QCloseEvent>
|
|
#include <QSyntaxHighlighter>
|
|
#include <QTextCharFormat>
|
|
#include <QTextDocument>
|
|
|
|
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// QSpellCheckerDialog
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
QSpellcheckerDialog::QSpellcheckerDialog(QSpellchecker * form)
|
|
: form_(form)
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
|
|
|
|
connect(replaceCO, SIGNAL(highlighted(const QString &)),
|
|
this, SLOT(replaceChanged(const QString &)));
|
|
connect(replacePB, SIGNAL(clicked()),
|
|
this, SLOT(replaceClicked()));
|
|
connect(ignorePB, SIGNAL(clicked()),
|
|
this, SLOT(ignoreClicked()));
|
|
connect(replacePB_3, SIGNAL(clicked()),
|
|
this, SLOT(acceptClicked()));
|
|
connect(addPB, SIGNAL(clicked()),
|
|
this, SLOT(addClicked()));
|
|
connect(suggestionsLW, SIGNAL(itemDoubleClicked(QListWidgetItem*)),
|
|
this, SLOT(replaceClicked() ) );
|
|
connect(suggestionsLW, SIGNAL(itemClicked(QListWidgetItem*)),
|
|
this, SLOT(suggestionChanged(QListWidgetItem*)));
|
|
}
|
|
|
|
|
|
void QSpellcheckerDialog::acceptClicked()
|
|
{
|
|
form_->accept();
|
|
}
|
|
|
|
void QSpellcheckerDialog::addClicked()
|
|
{
|
|
form_->add();
|
|
}
|
|
|
|
void QSpellcheckerDialog::replaceClicked()
|
|
{
|
|
form_->replace();
|
|
}
|
|
|
|
void QSpellcheckerDialog::ignoreClicked()
|
|
{
|
|
form_->ignore();
|
|
}
|
|
|
|
void QSpellcheckerDialog::suggestionChanged(QListWidgetItem * item)
|
|
{
|
|
if (replaceCO->count() != 0)
|
|
replaceCO->setItemText(0, item->text());
|
|
else
|
|
replaceCO->addItem(item->text());
|
|
|
|
replaceCO->setCurrentIndex(0);
|
|
}
|
|
|
|
void QSpellcheckerDialog::replaceChanged(const QString & str)
|
|
{
|
|
if (suggestionsLW->currentItem()->text() == str)
|
|
return;
|
|
|
|
for (int i = 0; i < suggestionsLW->count(); ++i) {
|
|
if (suggestionsLW->item(i)->text() == str) {
|
|
suggestionsLW->setCurrentRow(i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void QSpellcheckerDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
|
|
void QSpellcheckerDialog::reject()
|
|
{
|
|
form_->slotWMHide();
|
|
QDialog::reject();
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// QSpellChecker
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
typedef QController<ControlSpellchecker, QView<QSpellcheckerDialog> >
|
|
SpellcheckerBase;
|
|
|
|
QSpellchecker::QSpellchecker(Dialog & parent)
|
|
: SpellcheckerBase(parent, _("Spellchecker"))
|
|
{}
|
|
|
|
|
|
void QSpellchecker::build_dialog()
|
|
{
|
|
dialog_.reset(new QSpellcheckerDialog(this));
|
|
|
|
bcview().setCancel(dialog_->closePB);
|
|
dialog_->wordED->setReadOnly(true);
|
|
}
|
|
|
|
|
|
void QSpellchecker::update_contents()
|
|
{
|
|
if (isVisible() || controller().exitEarly())
|
|
controller().check();
|
|
}
|
|
|
|
|
|
void QSpellchecker::accept()
|
|
{
|
|
controller().ignoreAll();
|
|
}
|
|
|
|
|
|
void QSpellchecker::add()
|
|
{
|
|
controller().insert();
|
|
}
|
|
|
|
|
|
void QSpellchecker::ignore()
|
|
{
|
|
controller().check();
|
|
}
|
|
|
|
|
|
void QSpellchecker::replace()
|
|
{
|
|
controller().replace(qstring_to_ucs4(dialog_->replaceCO->currentText()));
|
|
}
|
|
|
|
|
|
void QSpellchecker::partialUpdate(int s)
|
|
{
|
|
ControlSpellchecker::State const state =
|
|
static_cast<ControlSpellchecker::State>(s);
|
|
|
|
switch (state) {
|
|
|
|
case ControlSpellchecker::SPELL_PROGRESSED:
|
|
dialog_->spellcheckPR->setValue(controller().getProgress());
|
|
break;
|
|
|
|
case ControlSpellchecker::SPELL_FOUND_WORD: {
|
|
dialog_->wordED->setText(toqstr(controller().getWord()));
|
|
dialog_->suggestionsLW->clear();
|
|
|
|
docstring w;
|
|
while (!(w = controller().getSuggestion()).empty()) {
|
|
dialog_->suggestionsLW->addItem(toqstr(w));
|
|
}
|
|
|
|
if (dialog_->suggestionsLW->count() == 0) {
|
|
dialog_->suggestionChanged(new QListWidgetItem(dialog_->wordED->text()));
|
|
} else {
|
|
dialog_->suggestionChanged(dialog_->suggestionsLW->item(0));
|
|
}
|
|
|
|
dialog_->suggestionsLW->setCurrentRow(0);
|
|
}
|
|
break;
|
|
|
|
}
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "QSpellchecker_moc.cpp"
|