]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QErrorListDialog.h
This new citation dialog follows a new design similar to lyx-1.3:
[lyx.git] / src / frontends / qt4 / 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/QErrorListUi.h"
16
17 #include <QDialog>
18 #include <QCloseEvent>
19
20 namespace lyx {
21 namespace frontend {
22
23 class QErrorList;
24
25 class QErrorListDialog : public QDialog, public Ui::QErrorListUi {
26         Q_OBJECT
27 public:
28         QErrorListDialog(QErrorList * form);
29         ~QErrorListDialog();
30 public slots:
31         void select_adaptor(int);
32 protected:
33         void closeEvent(QCloseEvent * e);
34 private:
35         QErrorList * form_;
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // QTOCERRORLIST_H