]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormERT.h
dont use pragma impementation and interface anymore
[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
16 #include "FormBase.h"
17
18 class ControlERT;
19 struct FD_ert;
20
21 /** This class provides an XForms implementation of the ERT
22     Dialog.
23  */
24 class FormERT
25         : public FormCB<ControlERT, FormDB<FD_ert> > {
26 public:
27         ///
28         FormERT();
29 private:
30         /// Set the Params variable for the Controller.
31         virtual void apply();
32         /// Build the dialog.
33         virtual void build();
34         /// Update dialog before/whilst showing it.
35         virtual void update();
36 };
37
38 #endif // FORMERT_H