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