]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QAbout.h
better selection and scrolling behaviour
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "Qt2Base.h"
20
21 class QAboutDialog;
22 class ControlAboutlyx;
23
24 class QAbout
25         : public Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> >
26 {
27 public:
28         QAbout();
29 private:
30         /// not needed
31         virtual void apply() {}
32         /// not needed
33         virtual void update_contents() {}
34         // build the dialog
35         virtual void build_dialog();
36 };
37
38 #endif // FORMABOUT_H