2001-08-06 14:55:02 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
2002-03-11 22:47:41 +00:00
|
|
|
|
* \file xforms/FormERT.h
|
2002-09-05 15:14:23 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-11 17:00:41 +00:00
|
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-06 14:55:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef FORMERT_H
|
|
|
|
|
#define FORMERT_H
|
|
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
|
#include "FormDialogView.h"
|
|
|
|
|
|
2001-08-06 14:55:02 +00:00
|
|
|
|
|
|
|
|
|
class ControlERT;
|
2002-06-13 13:43:51 +00:00
|
|
|
|
struct FD_ert;
|
2001-08-06 14:55:02 +00:00
|
|
|
|
|
|
|
|
|
/** This class provides an XForms implementation of the ERT
|
|
|
|
|
Dialog.
|
|
|
|
|
*/
|
2003-02-25 14:51:38 +00:00
|
|
|
|
class FormERT : public FormController<ControlERT, FormView<FD_ert> > {
|
2001-08-06 14:55:02 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2003-02-25 14:51:38 +00:00
|
|
|
|
FormERT(Dialog &);
|
2001-08-06 14:55:02 +00:00
|
|
|
|
private:
|
|
|
|
|
/// Set the Params variable for the Controller.
|
|
|
|
|
virtual void apply();
|
|
|
|
|
/// Build the dialog.
|
|
|
|
|
virtual void build();
|
|
|
|
|
/// Update dialog before/whilst showing it.
|
|
|
|
|
virtual void update();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FORMERT_H
|