lyx_mirror/src/frontends/qt2/QERTDialog.h
John Levon f1dac2b3ea forgot cvs add ...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2593 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-26 19:19:27 +00:00

36 lines
513 B
C++

/**
* \file QERTDialog.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon <moz@compsoc.man.ac.uk>
*/
#ifndef QERTDIALOG_H
#define QERTDIALOG_H
#include <config.h>
#include "ui/QERTDialogBase.h"
#include "QERT.h"
class QERTDialog : public QERTDialogBase
{ Q_OBJECT
public:
QERTDialog(QERT * form);
protected slots:
void change_adaptor() {
form_->changed();
}
protected:
virtual void closeEvent(QCloseEvent * e);
private:
QERT * form_;
};
#endif // QERTDIALOG_H