]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPreamble.h
remove defaults stuff, let Qt handle no toolbar
[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
16 #include "FormBase.h"
17
18 class ControlPreamble;
19 struct FD_preamble;
20
21 /** This class provides an XForms implementation of the Preamble Dialog.
22  */
23 class FormPreamble : public FormCB<ControlPreamble, FormDB<FD_preamble> > {
24 public:
25         ///
26         FormPreamble();
27 private:
28         /// Apply from dialog
29         virtual void apply();
30         /// Build the dialog
31         virtual void build();
32         /// Update the dialog
33         virtual void update();
34 };
35
36
37 #endif // FORMPREAMBLE_H