]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormWrap.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormWrap.h
1 // -*- C++ -*-
2 /**
3  * \file FormWrap.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Dekel Tsur
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMWRAP_H
13 #define FORMWRAP_H
14
15
16 #include "FormDialogView.h"
17 #include "RadioButtonGroup.h"
18
19 class ControlWrap;
20 struct FD_wrap;
21
22 /** This class provides an XForms implementation of the Wrap
23     Dialog.
24  */
25 class FormWrap
26         : public FormController<ControlWrap, FormView<FD_wrap> > {
27 public:
28         ///
29         FormWrap(Dialog &);
30 private:
31         /// Set the Params variable for the Controller.
32         virtual void apply();
33         /// Build the dialog.
34         virtual void build();
35         /// Update dialog before/whilst showing it.
36         virtual void update();
37
38         /// placement
39         RadioButtonGroup placement_;
40 };
41
42 #endif // FORMWRAP_H