]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormERT.h
reverse last change
[lyx.git] / src / frontends / xforms / FormERT.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormERT.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMERT_H
13 #define FORMERT_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBase.h"
20
21 class ControlERT;
22 struct FD_ert;
23
24 /** This class provides an XForms implementation of the ERT
25     Dialog.
26  */
27 class FormERT
28         : public FormCB<ControlERT, FormDB<FD_ert> > {
29 public:
30         ///
31         FormERT();
32 private:
33         /// Set the Params variable for the Controller.
34         virtual void apply();
35         /// Build the dialog.
36         virtual void build();
37         /// Update dialog before/whilst showing it.
38         virtual void update();
39 };
40
41 #endif // FORMERT_H