]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QErrorListDialog.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / qt2 / QErrorListDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QErrorListDialog.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 QERRORLISTDIALOG_H
13 #define QERRORLISTDIALOG_H
14
15
16 #include "ui/QErrorListDialogBase.h"
17
18 class QErrorList;
19
20 class QErrorListDialog : public QErrorListDialogBase {
21         Q_OBJECT
22 public:
23         QErrorListDialog(QErrorList * form);
24         ~QErrorListDialog();
25 public slots:
26         void select_adaptor(int);
27 protected:
28         void closeEvent(QCloseEvent * e);
29 private:
30         QErrorList * form_;
31 };
32
33 #endif // QTOCERRORLIST_H