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