]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormCopyright.h
a11c95725d03653aa45faaa917443a7323a9bc10
[lyx.git] / src / frontends / xforms / FormCopyright.h
1 /**
2  * \file FormCopyright.h
3  * This file is part of
4  * ====================================================== 
5  *
6  *           LyX, The Document Processor
7  *
8  *           Copyright 1995 Matthias Ettrich
9  *           Copyright 1995-2001 The LyX Team.
10  *
11  *           This file Copyright 2000-2001
12  *           Allan Rae
13  * ======================================================
14  *
15  * \author Allan Rae
16  * \author Angus Leeming, a.leeming@.ac.uk
17  */
18
19 #ifndef FORMCOPYRIGHT_H
20 #define FORMCOPYRIGHT_H
21
22 #ifdef __GNUG__
23 #pragma interface
24 #endif
25
26 #include "FormBase.h"
27
28 class ControlCopyright;
29 struct FD_form_copyright;
30
31 /** This class provides an XForms implementation of the FormCopyright Dialog.
32  */
33 class FormCopyright
34         : public FormCB<ControlCopyright, FormDB<FD_form_copyright> > {
35 public:
36         ///
37         FormCopyright(ControlCopyright &);
38
39 private:
40         /// not needed.
41         virtual void apply() {}
42         /// not needed.
43         virtual void update() {}
44         /// Build the dialog
45         virtual void build();
46
47         /// Fdesign generated method
48         FD_form_copyright * build_copyright();
49 };
50
51 #endif // FORMCOPYRIGHT_H