mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 07:16:48 +00:00
40 lines
691 B
C
40 lines
691 B
C
|
/**
|
||
|
* \file QThesaurusDialog.h
|
||
|
* Copyright 2001 the LyX Team
|
||
|
* Read the file COPYING
|
||
|
*
|
||
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
||
|
*/
|
||
|
|
||
|
#ifndef QTHESAURUSDIALOG_H
|
||
|
#define QTHESAURUSDIALOG_H
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "ui/QThesaurusDialogBase.h"
|
||
|
|
||
|
class QThesaurus;
|
||
|
|
||
|
class QThesaurusDialog : public QThesaurusDialogBase
|
||
|
{ Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
QThesaurusDialog(QThesaurus * form);
|
||
|
|
||
|
void updateLists();
|
||
|
|
||
|
protected slots:
|
||
|
virtual void change_adaptor();
|
||
|
virtual void entryChanged();
|
||
|
virtual void replaceClicked();
|
||
|
virtual void selectionChanged(const QString &);
|
||
|
|
||
|
protected:
|
||
|
virtual void closeEvent(QCloseEvent * e);
|
||
|
|
||
|
private:
|
||
|
QThesaurus * form_;
|
||
|
};
|
||
|
|
||
|
#endif // QTHESAURUSDIALOG_H
|