]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QNomencl.h
Remove unused symbol encoding
[lyx.git] / src / frontends / qt4 / QNomencl.h
1 // -*- C++ -*-
2 /**
3  * \file QNomencl.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 QNOMENCL_H
15 #define QNOMENCL_H
16
17 #include "QDialogView.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class ControlCommand;
23 class QNomenclDialog;
24
25
26 class QNomencl :
27         public QController<ControlCommand, QView<QNomenclDialog> >
28 {
29 public:
30         friend class QNomenclDialog;
31
32         QNomencl(Dialog &, docstring const & title);
33 protected:
34         virtual bool isValid();
35 private:
36         /// Apply changes
37         virtual void apply();
38         /// update
39         virtual void update_contents();
40         /// build the dialog
41         virtual void build_dialog();
42 };
43
44 } // namespace frontend
45 } // namespace lyx
46
47 #endif // QNOMENCL_H