]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormCredits.h
Reorganised, cleaned-up and improved documentation of controllers.
[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  * \author Angus Leeming, a.leeming@.ac.uk
8  */
9
10 #ifndef FORMCREDITS_H
11 #define FORMCREDITS_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "FormBase.h"
18
19 class ControlCredits;
20 struct FD_form_credits;
21
22 /** This class provides an XForms implementation of the FormCredits Dialog.
23  */
24 class FormCredits : public FormCB<ControlCredits, FormDB<FD_form_credits> > {
25 public:
26         ///
27         FormCredits(ControlCredits &);
28
29 private:
30         /// not needed.
31         virtual void apply() {}
32         /// not needed.
33         virtual void update() {}
34         /// Build the dialog
35         virtual void build();
36
37         /// Fdesign generated method
38         FD_form_credits * build_credits();
39 };
40
41 #endif
42