2001-08-27 02:54:27 +00:00
|
|
|
/**
|
|
|
|
* \file QThesaurus.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2001-08-27 20:41:45 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-08-27 02:54:27 +00:00
|
|
|
#include "ControlThesaurus.h"
|
|
|
|
#include "QThesaurusDialog.h"
|
|
|
|
#include "QThesaurus.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qlistbox.h>
|
|
|
|
|
|
|
|
typedef Qt2CB<ControlThesaurus, Qt2DB<QThesaurusDialog> > base_class;
|
|
|
|
|
|
|
|
QThesaurus::QThesaurus(ControlThesaurus & c)
|
|
|
|
: base_class(c, _("Thesaurus"))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QThesaurus::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QThesaurusDialog(this));
|
|
|
|
|
|
|
|
bc().setCancel(dialog_->closePB);
|
2001-08-27 20:41:45 +00:00
|
|
|
bc().setApply(dialog_->replacePB);
|
2001-08-27 02:54:27 +00:00
|
|
|
bc().addReadOnly(dialog_->replaceED);
|
|
|
|
bc().addReadOnly(dialog_->replacePB);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QThesaurus::update_contents()
|
|
|
|
{
|
|
|
|
dialog_->entryED->setText(controller().text().c_str());
|
|
|
|
dialog_->updateLists();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QThesaurus::replace()
|
|
|
|
{
|
|
|
|
controller().replace(dialog_->replaceED->text().latin1());
|
|
|
|
}
|