2001-08-27 02:54:27 +00:00
|
|
|
/**
|
|
|
|
* \file QThesaurus.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-27 02:54:27 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-27 02:54:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
2002-12-17 20:37:13 +00:00
|
|
|
#include "qt_helpers.h"
|
2001-08-27 02:54:27 +00:00
|
|
|
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qlistbox.h>
|
|
|
|
|
|
|
|
typedef Qt2CB<ControlThesaurus, Qt2DB<QThesaurusDialog> > base_class;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-08-12 14:28:43 +00:00
|
|
|
QThesaurus::QThesaurus()
|
2002-12-17 20:37:13 +00:00
|
|
|
: base_class(qt_("Thesaurus"))
|
2001-08-27 02:54:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-27 02:54:27 +00:00
|
|
|
void QThesaurus::update_contents()
|
|
|
|
{
|
2002-12-17 20:37:13 +00:00
|
|
|
dialog_->entryED->setText(toqstr(controller().text()));
|
2001-08-28 01:27:35 +00:00
|
|
|
dialog_->replaceED->setText("");
|
2002-03-21 21:21:28 +00:00
|
|
|
dialog_->updateLists();
|
2001-08-27 02:54:27 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-27 02:54:27 +00:00
|
|
|
void QThesaurus::replace()
|
|
|
|
{
|
2002-12-17 20:37:13 +00:00
|
|
|
controller().replace(fromqstr(dialog_->replaceED->text()));
|
2001-08-27 02:54:27 +00:00
|
|
|
}
|