]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPreamble.h
(John): translate dialog titles.
[lyx.git] / src / frontends / xforms / FormPreamble.h
1 // -*- C++ -*-
2 /**
3  * \file FormPreamble.h
4  * Copyright 2001 The LyX Team.
5  * See the file COPYING.
6  *
7  * \author Edwin Leuven, leuven@fee.uva.nl
8  */
9
10 #ifndef FORMPREAMBLE_H
11 #define FORMPREAMBLE_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBase.h"
18
19 class ControlPreamble;
20 struct FD_form_preamble;
21
22 /** This class provides an XForms implementation of the Preamble Dialog.
23  */
24 class FormPreamble : public FormCB<ControlPreamble, FormDB<FD_form_preamble> > {
25 public:
26         ///
27         FormPreamble(ControlPreamble &);
28 private:
29         /// Apply from dialog
30         virtual void apply();
31         /// Build the dialog
32         virtual void build();
33         /// Update the dialog
34         virtual void update();
35
36         /// Fdesign generated method
37         FD_form_preamble * build_preamble();
38 };
39
40
41 #endif // FORMPREAMBLE_H