]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QErrorListDialog.h
renaming in frontends/qt4/ui: s/Q//g
[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/ErrorListUi.h"
16
17 #include <QDialog>
18 #include <QCloseEvent>
19
20 class QListWidgetItem;
21
22 namespace lyx {
23 namespace frontend {
24
25 class QErrorList;
26
27 class QErrorListDialog : public QDialog, public Ui::QErrorListUi {
28         Q_OBJECT
29 public:
30         QErrorListDialog(QErrorList * form);
31         ~QErrorListDialog();
32
33 public Q_SLOTS:
34         void select_adaptor(QListWidgetItem *);
35 protected:
36         void closeEvent(QCloseEvent *);
37         void showEvent(QShowEvent *);
38 private:
39         QErrorList * form_;
40 };
41
42 } // namespace frontend
43 } // namespace lyx
44
45 #endif // QTOCERRORLIST_H