]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormCopyright.h
Swap two printer related help messages.
[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
22 #ifdef __GNUG__
23 #pragma interface
24 #endif
25
26 struct FD_form_copyright;
27
28 /** This class provides an XForms implementation of the FormCopyright Dialog.
29  */
30 class FormCopyright : public FormBaseBI {
31 public:
32         /// #FormCopyright x(LyXFunc ..., Dialogs ...);#
33         FormCopyright(LyXView *, Dialogs *);
34         ///
35         ~FormCopyright();
36
37 private:
38         /// Build the dialog
39         virtual void build();
40         /// Pointer to the actual instantiation of the xform's form
41         virtual FL_FORM * form() const;
42         /// Fdesign generated method
43         FD_form_copyright * build_copyright();
44
45         /// Real GUI implementation.
46         FD_form_copyright * dialog_;
47 };
48
49 #endif
50