]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormCredits.h
Ed's credits patch and Baruch's gnome patch.
[lyx.git] / src / frontends / xforms / FormCredits.h
1 /**
2  * \file FormCredits.h
3  * Copyright 2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven, leuven@fee.uva.nl
7  */
8
9 #ifndef FORMCREDITS_H
10 #define FORMCREDITS_H
11
12 #include "FormBase.h"
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 struct FD_form_credits;
19
20 /** This class provides an XForms implementation of the FormCredits Dialog.
21  */
22 class FormCredits : public FormBaseBI {
23 public:
24         /// #FormCopyright x(LyXFunc ..., Dialogs ...);#
25         FormCredits(LyXView *, Dialogs *);
26         ///
27         ~FormCredits();
28
29 private:
30         /// Build the dialog
31         virtual void build();
32         /// Pointer to the actual instantiation of the xforms form
33         virtual FL_FORM * form() const;
34         /// Fdesign generated method
35         FD_form_credits * build_credits();
36
37         /// Real GUI implementation.
38         FD_form_credits * dialog_;
39 };
40
41 #endif
42