]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlAboutlyx.h
reverse last change
[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 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ControlDialog_impl.h"
21 #include "LString.h"
22
23 #include <iosfwd>
24
25 /** A controller for the About LyX dialogs.
26  */
27 class ControlAboutlyx : public ControlDialogBI {
28 public:
29         ///
30         ControlAboutlyx(LyXView &, Dialogs &);
31
32         ///
33         void getCredits(std::ostream &) const;
34
35         ///
36         string const getCopyright() const;
37
38         ///
39         string const getLicense() const;
40
41         ///
42         string const getDisclaimer() const;
43
44         ///
45         string const getVersion() const;
46 private:
47         /// not needed.
48         virtual void apply() {}
49 };
50
51 #endif // CONTROLABOUTLYX_H