]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiAbout.h
Start using QDialogButtonGroup rather than manual OK etc. buttons
[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 "DialogView.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class GuiAbout : public DialogView
21 {
22         Q_OBJECT
23
24 public:
25         // Constructor
26         GuiAbout(GuiView & lv);
27
28 private Q_SLOTS:
29         void on_buttonBox_rejected();
30
31 private:
32         /// Controller stuff
33         ///@{
34         void updateView() {}
35         void dispatchParams() {}
36         bool isBufferDependent() const { return false; }
37         ///@}
38
39         struct Private;
40         Private * const d;
41 };
42
43 } // namespace frontend
44 } // namespace lyx
45
46 #endif // GUIABOUT_H