mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
f1dac2b3ea
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2593 a592a061-630c-0410-9148-cb99ea01b6c8
36 lines
513 B
C++
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
|