]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormInclude.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormInclude.h
1 // -*- C++ -*-
2 /**
3  * \file FormInclude.h
4  * See the file COPYING
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author John Levon
8  * \author Angus Leeming 
9  *
10  * Full author contact details are available in file CREDITS
11  */
12 #ifndef FORMINCLUDE_H
13 #define FORMINCLUDE_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBase.h"
20
21 class ControlInclude;
22 struct FD_include;
23
24 /** This class provides an XForms implementation of the Include Dialog.
25  */
26 class FormInclude : public FormCB<ControlInclude, FormDB<FD_include> > {
27 public:
28         ///
29         FormInclude();
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 showing it
36         virtual void update();
37         /// Filter the inputs on callback from xforms
38         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
39 };
40
41 #endif