]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QAbout.h
Joao latest bits
[lyx.git] / src / frontends / qt2 / QAbout.h
1 // -*- C++ -*-
2 /**
3  * \file QAbout.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Kalle Dalheimer
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMABOUT_H
13 #define FORMABOUT_H
14
15
16 #include "QDialogView.h"
17
18
19 class QAboutDialog;
20 class ControlAboutlyx;
21
22 class QAbout
23         : public QController<ControlAboutlyx, QView<QAboutDialog> >
24 {
25 public:
26         QAbout(Dialog &);
27 private:
28         /// not needed
29         virtual void apply() {}
30         /// not needed
31         virtual void update_contents() {}
32         // build the dialog
33         virtual void build_dialog();
34 };
35
36 #endif // FORMABOUT_H