/** * \file QSpellchecker.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 #ifdef __GNUG__ #pragma implementation #endif #include "ControlSpellchecker.h" #include "QSpellcheckerDialog.h" #include "QSpellchecker.h" #include "Qt2BC.h" #include "qt_helpers.h" #include "debug.h" #include #include #include #include #include #include typedef Qt2CB > base_class; QSpellchecker::QSpellchecker() : base_class(qt_("Spellchecker")) { } void QSpellchecker::build_dialog() { dialog_.reset(new QSpellcheckerDialog(this)); bc().setCancel(dialog_->closePB); dialog_->wordED->setReadOnly(true); } void QSpellchecker::update_contents() { dialog_->wordED->setText(""); dialog_->replaceCO->clear(); dialog_->suggestionsLB->clear(); dialog_->spellcheckPR->setProgress(0); } void QSpellchecker::accept() { controller().ignoreAll(); } void QSpellchecker::add() { controller().insert(); } void QSpellchecker::ignore() { controller().check(); } void QSpellchecker::replace() { controller().replace(fromqstr(dialog_->replaceCO->currentText())); } void QSpellchecker::spellcheck() { controller().check(); dialog_->spellcheckPB->setEnabled(false); } void QSpellchecker::stop() { controller().stop(); dialog_->spellcheckPB->setEnabled(true); hide(); } void QSpellchecker::partialUpdate(int id) { switch (id) { case 0: dialog_->spellcheckPR->setProgress(controller().getProgress()); break; case 1: { dialog_->wordED->setText(toqstr(controller().getWord())); dialog_->suggestionsLB->clear(); string w; while (!(w = controller().getSuggestion()).empty()) { dialog_->suggestionsLB->insertItem(toqstr(w)); } dialog_->suggestionChanged(dialog_->wordED->text()); } break; case 2: dialog_->spellcheckPB->setEnabled(true); hide(); QMessageBox::information(0, qt_("Spellcheck complete"), toqstr(controller().getMessage()), qt_("OK")); break; } }