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