]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QErrorList.h
This new citation dialog follows a new design similar to lyx-1.3:
[lyx.git] / src / frontends / qt4 / QErrorList.h
1 // -*- C++ -*-
2 /**
3  * \file QErrorList.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alfredo Braunstein
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QERRORLIST_H
13 #define QERRORLIST_H
14
15 #include "QDialogView.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class ControlErrorList;
21 class QErrorListDialog;
22
23 class QErrorList :
24         public QController<ControlErrorList, QView<QErrorListDialog> >
25 {
26 public:
27         friend class QErrorListDialog;
28
29         QErrorList(Dialog &);
30 private:
31         /// select an entry
32         void select(int item);
33         /// required apply
34         virtual void apply() {}
35         /// build dialog
36         virtual void build_dialog();
37         /// update contents
38         virtual void update_contents();
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // QERRORLIST_H