]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormAboutlyx.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormAboutlyx.h
1 // -*- C++ -*-
2 /**
3  * \file FormAboutlyx.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef FORMABOUTLYX_H
14 #define FORMABOUTLYX_H
15
16
17 #include "FormDialogView.h"
18
19
20 class ControlAboutlyx;
21 struct FD_aboutlyx;
22 struct FD_aboutlyx_version;
23 struct FD_aboutlyx_credits;
24 struct FD_aboutlyx_license;
25
26 /** This class provides an XForms implementation of the FormAboutlyx Dialog.
27  */
28 class FormAboutlyx
29         : public FormController<ControlAboutlyx, FormView<FD_aboutlyx> > {
30 public:
31         ///
32         FormAboutlyx(Dialog &);
33
34 private:
35         /// not needed.
36         virtual void apply() {}
37         /// not needed.
38         virtual void update() {}
39         /// Build the dialog
40         virtual void build();
41
42         /// Real GUI implementation.
43         boost::scoped_ptr<FD_aboutlyx_version> version_;
44         ///
45         boost::scoped_ptr<FD_aboutlyx_credits> credits_;
46         ///
47         boost::scoped_ptr<FD_aboutlyx_license> license_;
48 };
49
50
51 #endif // FORMABOUTLYX_H