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