]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlAboutlyx.h
port the minipage dialog to the new scheme. Various other small changes
[lyx.git] / src / frontends / controllers / ControlAboutlyx.h
1 // -*- C++ -*-
2 /**
3  * \file ControlAboutlyx.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef CONTROLABOUTLYX_H
14 #define CONTROLABOUTLYX_H
15
16
17 #include "ControlDialog_impl.h"
18 #include "LString.h"
19
20 #include <iosfwd>
21
22 /** A controller for the About LyX dialogs.
23  */
24 class ControlAboutlyx : public ControlDialogBI {
25 public:
26         ///
27         ControlAboutlyx(LyXView &, Dialogs &);
28
29         ///
30         void getCredits(std::ostream &) const;
31
32         ///
33         string const getCopyright() const;
34
35         ///
36         string const getLicense() const;
37
38         ///
39         string const getDisclaimer() const;
40
41         ///
42         string const getVersion() const;
43 private:
44         /// not needed.
45         virtual void apply() {}
46 };
47
48 #endif // CONTROLABOUTLYX_H