]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormERT.h
Change glob() API to accept a dir parameter.
[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 #include "FormDialogView.h"
16
17 namespace lyx {
18 namespace frontend {
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 : public FormController<ControlERT, FormView<FD_ert> > {
27 public:
28         ///
29         FormERT(Dialog &);
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
39 } // namespace frontend
40 } // namespace lyx
41
42 #endif // FORMERT_H