]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormCredits.h
Added // -*- C++ -*- to the top of all files in controllers/ and xforms/
[lyx.git] / src / frontends / xforms / FormCredits.h
1 // -*- C++ -*-
2 /**
3  * \file FormCredits.h
4  * Copyright 2001 The LyX Team.
5  * See the file COPYING.
6  *
7  * \author Edwin Leuven, leuven@fee.uva.nl
8  * \author Angus Leeming, a.leeming@.ac.uk
9  */
10
11 #ifndef FORMCREDITS_H
12 #define FORMCREDITS_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19
20 class ControlCredits;
21 struct FD_form_credits;
22
23 /** This class provides an XForms implementation of the FormCredits Dialog.
24  */
25 class FormCredits : public FormCB<ControlCredits, FormDB<FD_form_credits> > {
26 public:
27         ///
28         FormCredits(ControlCredits &);
29
30 private:
31         /// not needed.
32         virtual void apply() {}
33         /// not needed.
34         virtual void update() {}
35         /// Build the dialog
36         virtual void build();
37
38         /// Fdesign generated method
39         FD_form_credits * build_credits();
40 };
41
42 #endif
43