]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QErrorList.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / 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
16 #include "QDialogView.h"
17
18 class ControlErrorList;
19 class QErrorListDialog;
20
21 class QErrorList :
22         public QController<ControlErrorList, QView<QErrorListDialog> >
23 {
24 public:
25         friend class QErrorListDialog;
26
27         QErrorList(Dialog &);
28 private:
29         /// select an entry
30         void select(int item);
31         /// required apply
32         virtual void apply() {}
33         /// build dialog
34         virtual void build_dialog();
35         /// update contents
36         virtual void update_contents();
37 };
38
39 #endif // QERRORLIST_H