]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormCopyright.h
Angus's FormBase patch with tiny cleanup
[lyx.git] / src / frontends / xforms / FormCopyright.h
1 // -*- C++ -*-
2 /* FormCopyright.h
3  * FormCopyright Interface Class
4  * This file is part of
5  * ====================================================== 
6  *
7  *           LyX, The Document Processor
8  *
9  *           Copyright 1995 Matthias Ettrich
10  *           Copyright 1995-2000 The LyX Team.
11  *
12  *           This file Copyright 2000
13  *           Allan Rae
14  * ======================================================
15  */
16
17 #ifndef FORMCOPYRIGHT_H
18 #define FORMCOPYRIGHT_H
19
20 #include "FormBase.h"
21 #include "form_copyright.h"
22
23 #ifdef __GNUG__
24 #pragma interface
25 #endif
26
27 struct FD_form_copyright;
28
29 /** This class provides an XForms implementation of the FormCopyright Dialog.
30  */
31 class FormCopyright : public FormBase {
32 public:
33         /// #FormCopyright x(LyXFunc ..., Dialogs ...);#
34         FormCopyright(LyXView *, Dialogs *);
35         ///
36         ~FormCopyright();
37
38 private:
39         /// Build the dialog
40         void build();
41         /// Pointer to the actual instantiation of the xform's form
42         FL_FORM * const form() const;
43         /// Fdesign generated method
44         FD_form_copyright * build_copyright();
45
46         /// Real GUI implementation.
47         FD_form_copyright * dialog_;
48 };
49
50 #endif
51