2003-05-13 21:15:48 +00:00
|
|
|
// -*- 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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-05-13 21:15:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QERRORLISTDIALOG_H
|
|
|
|
#define QERRORLISTDIALOG_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "ui/QErrorListDialogBase.h"
|
|
|
|
|
|
|
|
class QErrorList;
|
|
|
|
|
|
|
|
class QErrorListDialog : public QErrorListDialogBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QErrorListDialog(QErrorList * form);
|
|
|
|
~QErrorListDialog();
|
|
|
|
public slots:
|
|
|
|
void select_adaptor(int);
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QErrorList * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTOCERRORLIST_H
|