lyx_mirror/src/frontends/qt2/QSpellcheckerDialog.C
Lars Gullik Bjønnes 814b819451 the qtclean-2 patch with some very small changes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5447 a592a061-630c-0410-9148-cb99ea01b6c8
2002-10-20 01:48:28 +00:00

104 lines
1.6 KiB
C

/**
* \file QSpellcheckerDialog.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>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QSpellcheckerDialog.h"
#include "QSpellchecker.h"
#include "gettext.h"
#include <qpushbutton.h>
#include <qlineedit.h>
#include <qlistbox.h>
#include <qcombobox.h>
QSpellcheckerDialog::QSpellcheckerDialog(QSpellchecker * form)
: QSpellcheckerDialogBase(0, 0, false, 0),
form_(form)
{
connect(closePB, SIGNAL(clicked()),
this, SLOT(stop()));
}
void QSpellcheckerDialog::stop()
{
form_->stop();
}
void QSpellcheckerDialog::acceptClicked()
{
form_->accept();
}
void QSpellcheckerDialog::spellcheckClicked()
{
form_->spellcheck();
}
void QSpellcheckerDialog::addClicked()
{
form_->add();
}
void QSpellcheckerDialog::replaceClicked()
{
form_->replace();
}
void QSpellcheckerDialog::ignoreClicked()
{
form_->ignore();
}
void QSpellcheckerDialog::suggestionChanged(QString const & str)
{
if (replaceCO->count() != 0)
replaceCO->changeItem(str, 0);
else
replaceCO->insertItem(str);
replaceCO->setCurrentItem(0);
}
void QSpellcheckerDialog::replaceChanged(QString const & str)
{
if (suggestionsLB->currentText() == str)
return;
unsigned int i = 0;
for (; i < suggestionsLB->count(); ++i) {
if (suggestionsLB->text(i) == str)
break;
}
if (i != suggestionsLB->count())
suggestionsLB->setCurrentItem(i);
}
void QSpellcheckerDialog::closeEvent(QCloseEvent * e)
{
form_->slotWMHide();
e->accept();
}