]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiAbout.h
Transfer some more dialog related code from core to frontend:
[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 "ui_AboutUi.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class GuiAbout : public GuiDialog, public Ui::AboutUi
22 {
23         Q_OBJECT
24
25 public:
26         // Constructor
27         GuiAbout(GuiView & lv);
28
29         // Controller stuff
30         bool initialiseParams(std::string const &) { return true; }
31         void clearParams() {}
32         void dispatchParams() {}
33         bool isBufferDependent() const { return false; }
34 };
35
36 } // namespace frontend
37 } // namespace lyx
38
39 #endif // GUIABOUT_H