mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
99d1627a47
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
108 lines
2.0 KiB
C
108 lines
2.0 KiB
C
/**
|
|
* \file QThesaurusDialog.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 "LString.h"
|
|
|
|
#include "ControlThesaurus.h"
|
|
#include "QThesaurusDialog.h"
|
|
#include "QThesaurus.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include <qpushbutton.h>
|
|
#include <qlistview.h>
|
|
#include <qlineedit.h>
|
|
|
|
#include <vector>
|
|
|
|
|
|
QThesaurusDialog::QThesaurusDialog(QThesaurus * form)
|
|
: QThesaurusDialogBase(0, 0, false, 0),
|
|
form_(form)
|
|
{
|
|
connect(closePB, SIGNAL(clicked()),
|
|
form, SLOT(slotClose()));
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::change_adaptor()
|
|
{
|
|
form_->changed();
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::entryChanged()
|
|
{
|
|
updateLists();
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::replaceClicked()
|
|
{
|
|
form_->replace();
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::selectionChanged(QListViewItem * item)
|
|
{
|
|
if (form_->readOnly())
|
|
return;
|
|
|
|
string const entry(fromqstr(item->text(0)));
|
|
replaceED->setText(toqstr(entry));
|
|
replacePB->setEnabled(true);
|
|
form_->changed();
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::selectionClicked(QListViewItem * item)
|
|
{
|
|
entryED->setText(item->text(0));
|
|
selectionChanged(item);
|
|
updateLists();
|
|
}
|
|
|
|
|
|
void QThesaurusDialog::updateLists()
|
|
{
|
|
meaningsLV->clear();
|
|
|
|
std::vector<string> matches;
|
|
|
|
meaningsLV->setUpdatesEnabled(false);
|
|
|
|
Thesaurus::Meanings meanings = form_->controller().getMeanings(fromqstr(entryED->text()));
|
|
|
|
for (Thesaurus::Meanings::const_iterator cit = meanings.begin();
|
|
cit != meanings.end(); ++cit) {
|
|
QListViewItem * i = new QListViewItem(meaningsLV);
|
|
i->setText(0, toqstr(cit->first));
|
|
i->setOpen(true);
|
|
for (std::vector<string>::const_iterator cit2 = cit->second.begin();
|
|
cit2 != cit->second.end(); ++cit2) {
|
|
QListViewItem * i2 = new QListViewItem(i);
|
|
i2->setText(0, toqstr(*cit2));
|
|
i2->setOpen(true);
|
|
}
|
|
}
|
|
|
|
meaningsLV->setUpdatesEnabled(true);
|
|
meaningsLV->update();
|
|
}
|