]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPreamble.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormPreamble.h
1 // -*- C++ -*-
2 /**
3  * \file FormPreamble.h
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMPREAMBLE_H
12 #define FORMPREAMBLE_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 class ControlPreamble;
21 struct FD_preamble;
22
23 /** This class provides an XForms implementation of the Preamble Dialog.
24  */
25 class FormPreamble : public FormCB<ControlPreamble, FormDB<FD_preamble> > {
26 public:
27         ///
28         FormPreamble();
29 private:
30         /// Apply from dialog
31         virtual void apply();
32         /// Build the dialog
33         virtual void build();
34         /// Update the dialog
35         virtual void update();
36 };
37
38
39 #endif // FORMPREAMBLE_H