2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \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 <config.h>
|
|
|
|
|
|
|
|
#include "QSpellchecker.h"
|
|
|
|
#include "QSpellcheckerDialog.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
|
|
|
#include "controllers/ControlSpellchecker.h"
|
|
|
|
|
2006-05-03 19:51:15 +00:00
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QListWidgetItem>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
typedef QController<ControlSpellchecker, QView<QSpellcheckerDialog> > base_class;
|
|
|
|
|
|
|
|
QSpellchecker::QSpellchecker(Dialog & parent)
|
2006-10-09 10:35:14 +00:00
|
|
|
: base_class(parent, _("Spellchecker"))
|
2006-03-05 17:24:44 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
void QSpellchecker::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QSpellcheckerDialog(this));
|
|
|
|
|
|
|
|
bcview().setCancel(dialog_->closePB);
|
|
|
|
dialog_->wordED->setReadOnly(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QSpellchecker::update_contents()
|
|
|
|
{
|
2006-09-11 08:54:10 +00:00
|
|
|
if (isVisible()) {
|
|
|
|
// controller().check();
|
2006-06-27 12:20:16 +00:00
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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::partialUpdate(int s)
|
|
|
|
{
|
|
|
|
ControlSpellchecker::State const state =
|
|
|
|
static_cast<ControlSpellchecker::State>(s);
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
|
|
|
case ControlSpellchecker::SPELL_PROGRESSED:
|
2006-05-03 19:51:15 +00:00
|
|
|
dialog_->spellcheckPR->setValue(controller().getProgress());
|
2006-03-05 17:24:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ControlSpellchecker::SPELL_FOUND_WORD: {
|
|
|
|
dialog_->wordED->setText(toqstr(controller().getWord()));
|
2006-05-03 19:51:15 +00:00
|
|
|
dialog_->suggestionsLW->clear();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
string w;
|
|
|
|
while (!(w = controller().getSuggestion()).empty()) {
|
2006-05-03 19:51:15 +00:00
|
|
|
dialog_->suggestionsLW->addItem(toqstr(w));
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-05-03 19:51:15 +00:00
|
|
|
if (dialog_->suggestionsLW->count() == 0) {
|
|
|
|
dialog_->suggestionChanged(new QListWidgetItem(dialog_->wordED->text()));
|
2006-03-05 17:24:44 +00:00
|
|
|
} else {
|
2006-05-03 19:51:15 +00:00
|
|
|
dialog_->suggestionChanged(dialog_->suggestionsLW->item(0));
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2006-05-03 19:51:15 +00:00
|
|
|
|
|
|
|
dialog_->suggestionsLW->setCurrentRow(0);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|