]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormERT.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormERT.h
1 // -*- C++ -*-
2 /**
3  * \file 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 "FormDialogView.h"
17
18
19 class ControlERT;
20 struct FD_ert;
21
22 /** This class provides an XForms implementation of the ERT
23     Dialog.
24  */
25 class FormERT : public FormController<ControlERT, FormView<FD_ert> > {
26 public:
27         ///
28         FormERT(Dialog &);
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