mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
44 lines
815 B
C
44 lines
815 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file QNomenclDialog.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author John Levon
|
||
|
* \author O. U. Baran
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#ifndef QNOMENCLDIALOG_H
|
||
|
#define QNOMENCLDIALOG_H
|
||
|
|
||
|
#include "ui/QNomenclUi.h"
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QCloseEvent>
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace frontend {
|
||
|
|
||
|
class QNomencl;
|
||
|
|
||
|
class QNomenclDialog : public QDialog, public Ui::QNomenclUi {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
QNomenclDialog(QNomencl * form);
|
||
|
virtual void show();
|
||
|
protected Q_SLOTS:
|
||
|
virtual void change_adaptor();
|
||
|
virtual void reject();
|
||
|
protected:
|
||
|
virtual void closeEvent(QCloseEvent * e);
|
||
|
private:
|
||
|
QNomencl * form_;
|
||
|
};
|
||
|
|
||
|
} // namespace frontend
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif // QNOMENCLDIALOG_H
|