]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/GuiAbout.h
Make string-widget combination more l7n friendly
[lyx.git] / src / frontends / qt / 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         ~GuiAbout();
28
29 private Q_SLOTS:
30         void on_buttonBox_rejected();
31         void on_showDirLibraryPB_clicked();
32         void on_showDirUserPB_clicked();
33         void on_versionCopyPB_clicked();
34
35 private:
36         /// Controller stuff
37         ///@{
38         void updateView() override {}
39         void dispatchParams() override {}
40         bool isBufferDependent() const override { return false; }
41         ///@}
42
43         struct Private;
44         Private * const d;
45 };
46
47 } // namespace frontend
48 } // namespace lyx
49
50 #endif // GUIABOUT_H