]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormERT.h
doxygen fixes
[lyx.git] / src / frontends / xforms / FormERT.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormERT.h
4  * Copyright 2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Jürgen Vigna, jug@sad.it
8  */
9
10 #ifndef FORMERT_H
11 #define FORMERT_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBase.h"
18
19 class ControlERT;
20 struct FD_form_ert;
21
22 /** This class provides an XForms implementation of the ERT
23     Dialog.
24  */
25 class FormERT
26         : public FormCB<ControlERT, FormDB<FD_form_ert> > {
27 public:
28         ///
29         FormERT(ControlERT &);
30 private:
31         /// Set the Params variable for the Controller.
32         virtual void apply();
33         /// Build the dialog.
34         virtual void build();
35         /// Update dialog before/whilst showing it.
36         virtual void update();
37
38         /// Fdesign generated method
39         FD_form_ert * build_ert();
40 };
41
42 #endif // FORMERT_H