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