]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlAboutlyx.h
Really dull and boring header shit
[lyx.git] / src / frontends / controllers / ControlAboutlyx.h
1 // -*- C++ -*-
2 /**
3  * \file ControlAboutlyx.h
4  * See the file COPYING.
5  *
6  * \author Edwin Leuven
7  * \author Angus Leeming 
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef CONTROLABOUTLYX_H
13 #define CONTROLABOUTLYX_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ControlDialog_impl.h"
20 #include "Lsstream.h"
21 #include "LString.h"
22
23 /** A controller for the About LyX dialogs.
24  */
25 class ControlAboutlyx : public ControlDialogBI {
26 public:
27         ///
28         ControlAboutlyx(LyXView &, Dialogs &);
29
30         ///
31         stringstream & getCredits(stringstream &) const;
32
33         ///
34         string const getCopyright() const;
35
36         ///
37         string const getLicense() const;
38
39         ///
40         string const getDisclaimer() const;
41
42         ///
43         string const getVersion() const;
44
45
46 private:
47         /// not needed.
48         virtual void apply() {}
49 };
50
51 #endif // CONTROLABOUTLYX_H