mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
42 lines
777 B
C
42 lines
777 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file QErrorListDialog.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Alfredo Braunstein
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#ifndef QERRORLISTDIALOG_H
|
||
|
#define QERRORLISTDIALOG_H
|
||
|
|
||
|
#include "ui/QErrorListUi.h"
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QCloseEvent>
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace frontend {
|
||
|
|
||
|
class QErrorList;
|
||
|
|
||
|
class QErrorListDialog : public QDialog, public Ui::QErrorListUi {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
QErrorListDialog(QErrorList * form);
|
||
|
~QErrorListDialog();
|
||
|
public slots:
|
||
|
void select_adaptor(int);
|
||
|
protected:
|
||
|
void closeEvent(QCloseEvent * e);
|
||
|
private:
|
||
|
QErrorList * form_;
|
||
|
};
|
||
|
|
||
|
} // namespace frontend
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif // QTOCERRORLIST_H
|