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