]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiAbout.h
5d1b8ccd273a4711951b1d739fade16809a52446
[lyx.git] / src / frontends / qt4 / GuiAbout.h
1 // -*- C++ -*-
2 /**
3  * \file GuiAbout.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Kalle Dalheimer
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GUIABOUT_H
13 #define GUIABOUT_H
14
15 #include "GuiDialog.h"
16 #include "ControlAboutlyx.h"
17 #include "ui_AboutUi.h"
18
19 #include <QDialog>
20
21 namespace lyx {
22 namespace frontend {
23
24 class GuiAboutDialog : public GuiDialog, public Ui::AboutUi
25 {
26         Q_OBJECT
27
28 public:
29         // Constructor
30         GuiAboutDialog(LyXView & lv);
31         /// parent controller
32         ControlAboutlyx & controller() const;
33 };
34
35 } // namespace frontend
36 } // namespace lyx
37
38 #endif // GUIABOUT_H