lyx_mirror/src/frontends/xforms/FormThesaurus.h
Angus Leeming 2a31934f38 Wrap most of the frontend code up inside namespace lyx::frontend.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
2004-05-19 15:11:37 +00:00

58 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file FormThesaurus.h
* 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.
*/
#ifndef FORMTHESAURUS_H
#define FORMTHESAURUS_H
#include "FormDialogView.h"
namespace lyx {
namespace frontend {
class ControlThesaurus;
struct FD_thesaurus;
/** This class provides an XForms implementation of the Thesaurus dialog.
*/
class FormThesaurus
: public FormController<ControlThesaurus, FormView<FD_thesaurus> > {
public:
///
FormThesaurus(Dialog &);
private:
/// not needed.
virtual void apply() {}
/// Build the dialog
virtual void build();
/// update dialog
virtual void update();
/// set the replace word properly
void setReplace(std::string const & templ, std::string const & nstr);
/// update browser entries
void updateMeanings(std::string const & str);
/// Filter the inputs
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
/// for double click handling
int clickline_;
/// current string
std::string str_;
};
} // namespace frontend
} // namespace lyx
#endif // FORMTHESAURUS_H