]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QAbout.h
No longer pass Controller & or Dialogs & to the View c-tors.
[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 LyXView;
17 class QAboutDialog;
18 class ControlAboutlyx;
19
20 class QAbout
21         : public Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> >
22 {
23 public:
24         QAbout();
25
26 private:
27         /// not needed
28         virtual void apply() {}
29         /// not needed
30         virtual void update_contents() {}
31         // build the dialog
32         virtual void build_dialog();
33 };
34
35 #endif // FORMABOUT_H