]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/GAbout.h
doxygen fixes.
[lyx.git] / src / frontends / gnome / GAbout.h
1
2 // -*- C++ -*-
3 /**
4  * \file GAbout.h
5  * This file is part of LyX, the document processor.
6  * Licence details can be found in the file COPYING.
7  *
8  * \author Michael Koziarski 
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef GABOUT_H
14 #define GABOUT_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ControlAboutlyx.h"
21 #include "GnomeBase.h"
22
23 namespace Gtk {
24         class Button;
25         class Label;
26         class TextView;
27 }
28
29 /**
30  * This class implements the dialog to display the information About LyX
31  */
32 class GAbout : public GnomeCB<ControlAboutlyx> {
33 public:
34         ///
35         GAbout(ControlAboutlyx & c);
36         ///
37         ~GAbout();
38
39         void apply();
40         void update();
41         
42 private:
43         /// Build the dialog
44         void build();
45
46         /// Returns true if the dialog input is in a valid state.
47         bool validate() const;
48         
49         /// generated by accessors.py
50         Gtk::Button * close_btn() const;
51         /// generated by accessors.py
52         Gtk::Label * version() const;
53         /// generated by accessors.py
54         Gtk::TextView * credits() const;
55         /// generated by accessors.py
56         Gtk::TextView * copyright() const;
57
58         
59 };
60
61 #endif