lyx_mirror/src/frontends/controllers/ControlThesaurus.h
Lars Gullik Bjønnes f7ba7c8e9f ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 21:21:28 +00:00

60 lines
986 B
C++

// -*- C++ -*-
/**
* \file ControlThesaurus.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon
*/
#ifndef CONTROLTHESAURUS_H
#define CONTROLTHESAURUS_H
#ifdef __GNUG__
#pragma interface
#endif
#include <vector>
#include "LString.h"
#include "Thesaurus.h"
#include "ControlDialog_impl.h"
/** A controller for Thesaurus dialogs.
*/
class ControlThesaurus : public ControlDialogBD {
public:
///
ControlThesaurus(LyXView &, Dialogs &);
/// replace the particular string
void replace(string const & newstr);
/// show dialog
virtual void showEntry(string const & str);
/// get meanings
Thesaurus::Meanings const & getMeanings(string const & str);
/// the text
string const & text() {
return oldstr_;
}
private:
/// last string looked up
string laststr_;
/// entries for last string
Thesaurus::Meanings meanings_;
/// original string
string oldstr_;
/// not needed.
virtual void apply() {}
};
#endif // CONTROLTHESAURUS_H