2001-08-26 19:19:27 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QERT.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-26 19:19:27 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-26 19:19:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QERT_H
|
|
|
|
#define QERT_H
|
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-08-26 19:19:27 +00:00
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
class ControlERT;
|
|
|
|
class QERTDialog;
|
2002-08-12 14:28:43 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QERT
|
|
|
|
: public Qt2CB<ControlERT, Qt2DB<QERTDialog> >
|
2001-08-26 19:19:27 +00:00
|
|
|
{
|
2002-10-20 01:48:28 +00:00
|
|
|
public:
|
2001-08-26 19:19:27 +00:00
|
|
|
friend class QERTDialog;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-08-12 14:28:43 +00:00
|
|
|
QERT();
|
2002-03-21 21:21:28 +00:00
|
|
|
private:
|
2001-08-26 19:19:27 +00:00
|
|
|
/// Apply changes
|
|
|
|
virtual void apply();
|
|
|
|
/// update
|
|
|
|
virtual void update_contents();
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QERT_H
|