]> git.lyx.org Git - lyx.git/blob - src/frontends/qt3/QErrorListDialog.h
Extracted from r14281
[lyx.git] / src / frontends / qt3 / 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 #include "ui/QErrorListDialogBase.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class QErrorList;
21
22 class QErrorListDialog : public QErrorListDialogBase {
23         Q_OBJECT
24 public:
25         QErrorListDialog(QErrorList * form);
26         ~QErrorListDialog();
27 public slots:
28         void select_adaptor(int);
29 protected:
30         void closeEvent(QCloseEvent * e);
31 private:
32         QErrorList * form_;
33 };
34
35 } // namespace frontend
36 } // namespace lyx
37
38 #endif // QTOCERRORLIST_H