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