]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormCredits.h
Clean-up of the button controller.
[lyx.git] / src / frontends / qt2 / 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  * \author Kalle Dalheimer, kalle@klaralvdalens-datakonsult.se
10  */
11
12 #ifndef FORMCREDITS_H
13 #define FORMCREDITS_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "Qt2Base.h"
20
21 class ControlCredits;
22 class FormCreditsDialogImpl;
23
24 /** This class provides a Qt2 implementation of the FormCredits Dialog.
25  */
26 class FormCredits : public Qt2CB<ControlCredits, Qt2DB<FormCreditsDialogImpl> > {
27 public:
28         ///
29         FormCredits(ControlCredits &);
30
31 private:
32         /// not needed.
33         virtual void apply() {}
34         /// not needed.
35         virtual void update() {}
36         /// Build the dialog
37         virtual void build();
38 };
39
40 #endif
41