]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiNomencl.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[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         bool isValid();
37         /// Apply changes
38         void applyView();
39         /// update
40         void updateContents();
41 };
42
43 } // namespace frontend
44 } // namespace lyx
45
46 #endif // GUINOMENCL_H