]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QAbout.h
ws cleanup
[lyx.git] / src / frontends / qt2 / QAbout.h
1 // -*- C++ -*-
2 /**
3  * \file QAbout.h
4  * Copyright 2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
8  */
9
10 #ifndef FORMABOUT_H
11 #define FORMABOUT_H
12
13 #include "Qt2Base.h"
14 #include "boost/utility.hpp"
15
16 class Dialogs;
17 class LyXView;
18 class QAboutDialog;
19 class ControlAboutlyx;
20
21 class QAbout
22         : public Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> >
23 {
24 public:
25         QAbout(ControlAboutlyx &);
26
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