]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlAboutlyx.h
ws cleanup
[lyx.git] / src / frontends / controllers / ControlAboutlyx.h
1 // -*- C++ -*-
2 /**
3  * \file ControlAboutlyx.h
4  * Copyright 2001 The LyX Team.
5  * See the file COPYING.
6  *
7  * \author Edwin Leuven, leuven@fee.uva.nl
8  * \author Angus Leeming <a.leeming@ic.ac.uk>
9  */
10
11 #ifndef CONTROLABOUTLYX_H
12 #define CONTROLABOUTLYX_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "ControlDialog_impl.h"
19 #include "Lsstream.h"
20 #include "LString.h"
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         stringstream & getCredits(stringstream &) 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
44
45 private:
46         /// not needed.
47         virtual void apply() {}
48 };
49
50 #endif // CONTROLABOUTLYX_H