mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-27 14:29:21 +00:00
f1c24d1009
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4417 a592a061-630c-0410-9148-cb99ea01b6c8
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
/**
|
|
* \file ControlThesaurus.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ControlThesaurus.h"
|
|
#include "Liason.h"
|
|
#include "lyxfind.h"
|
|
#include "buffer.h"
|
|
#include "gettext.h"
|
|
#include "BufferView.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
using Liason::setMinibuffer;
|
|
|
|
|
|
ControlThesaurus::ControlThesaurus(LyXView & lv, Dialogs & d)
|
|
: ControlDialogBD(lv, d)
|
|
{}
|
|
|
|
|
|
void ControlThesaurus::showEntry(string const & entry)
|
|
{
|
|
oldstr_ = entry;
|
|
show();
|
|
}
|
|
|
|
|
|
void ControlThesaurus::replace(string const & newstr)
|
|
{
|
|
/* FIXME: this is not suitable ! We need to have a "lock"
|
|
* on a particular charpos in a paragraph that is broken on
|
|
* deletion/change !
|
|
*/
|
|
int const replace_count =
|
|
lyxfind::LyXReplace(lv_.view(), oldstr_, newstr,
|
|
true, true, true, false, true);
|
|
|
|
oldstr_ = newstr;
|
|
|
|
if (replace_count == 0)
|
|
setMinibuffer(&lv_, _("String not found!"));
|
|
else
|
|
setMinibuffer(&lv_, _("String has been replaced."));
|
|
}
|
|
|
|
|
|
Thesaurus::Meanings const & ControlThesaurus::getMeanings(string const & str)
|
|
{
|
|
if (str != laststr_)
|
|
meanings_ = thesaurus.lookup(str);
|
|
|
|
return meanings_;
|
|
}
|