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-03-11 17:00:41 +00:00
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
|
* Read the file COPYING
|
|
|
|
|
*
|
|
|
|
|
* \author J<EFBFBD>rgen Vigna, jug@sad.it
|
2001-08-06 14:55:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef FORMERT_H
|
|
|
|
|
#define FORMERT_H
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma interface
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "FormBase.h"
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
class FormERT
|
2002-06-13 13:43:51 +00:00
|
|
|
|
: public FormCB<ControlERT, FormDB<FD_ert> > {
|
2001-08-06 14:55:02 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
FormERT(ControlERT &);
|
|
|
|
|
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
|