]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormMinipage.h
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / xforms / FormMinipage.h
1 // -*- C++ -*-
2 /**
3  * \file FormMinipage.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMMINIPAGE_H
13 #define FORMMINIPAGE_H
14
15
16 #include "FormBase.h"
17
18 class ControlMinipage;
19 struct FD_minipage;
20
21 /** This class provides an XForms implementation of the Minipage
22     Dialog.
23  */
24 class FormMinipage
25         : public FormCB<ControlMinipage, FormDB<FD_minipage> > {
26 public:
27         ///
28         FormMinipage();
29 private:
30         /// Set the Params variable for the Controller.
31         virtual void apply();
32         /// Build the dialog.
33         virtual void build();
34         /// Update dialog before/whilst showing it.
35         virtual void update();
36         /// Filter the inputs on callback from xforms
37         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
38 };
39
40 #endif // FORMMINIPAGE_H