lyx_mirror/src/frontends/qt4/GuiThesaurus.h
André Pönitz bb1c76d479 next one
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20798 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-06 19:59:13 +00:00

80 lines
1.5 KiB
C++

// -*- C++ -*-
/**
* \file GuiThesaurus.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 GUITHESAURUS_H
#define GUITHESAURUS_H
#include "GuiDialog.h"
#include "Thesaurus.h"
#include "ui_ThesaurusUi.h"
class QTreeWidgetItem;
namespace lyx {
namespace frontend {
class GuiThesaurus : public GuiDialog, public Ui::ThesaurusUi, public Controller
{
Q_OBJECT
public:
GuiThesaurus(LyXView & lv);
private Q_SLOTS:
void change_adaptor();
void entryChanged();
void replaceClicked();
void selectionChanged();
void selectionClicked(QTreeWidgetItem *, int);
void itemClicked(QTreeWidgetItem *, int);
private:
void closeEvent(QCloseEvent * e);
/// parent controller
Controller & controller() { return *this; }
/// update
void updateContents();
///
void updateLists();
///
bool initialiseParams(std::string const & data);
///
void clearParams();
///
void dispatchParams() {}
///
bool isBufferDependent() const { return true; }
/// replace the particular string
void replace(docstring const & newstr);
/// get meanings
Thesaurus::Meanings const & getMeanings(docstring const & str);
private:
/// last string looked up
docstring laststr_;
/// entries for last string
Thesaurus::Meanings meanings_;
/// original string
docstring text_;
/// not needed.
void apply() {}
};
} // namespace frontend
} // namespace lyx
#endif // GUITHESAURUS_H