]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiNomencl.h
Additional UI logic related to module requires and excludes.
[lyx.git] / src / frontends / qt4 / GuiNomencl.h
1 // -*- C++ -*-
2 /**
3  * \file GuiNomencl.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  * \author Kalle Dalheimer
9  * \author O. U. Baran
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef GUINOMENCL_H
15 #define GUINOMENCL_H
16
17 #include "GuiDialog.h"
18 #include "ui_NomenclUi.h"
19
20 namespace lyx {
21 namespace frontend {
22
23 class GuiNomenclature : public GuiCommand, public Ui::NomenclUi
24 {
25         Q_OBJECT
26
27 public:
28         GuiNomenclature(GuiView & lv);
29
30 private Q_SLOTS:
31         void change_adaptor();
32         void reject();
33
34 private:
35         ///
36         void closeEvent(QCloseEvent * e);
37         ///
38         bool isValid();
39         /// Apply changes
40         void applyView();
41         /// update
42         void updateContents();
43 };
44
45 } // namespace frontend
46 } // namespace lyx
47
48 #endif // GUINOMENCL_H