2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-26 18:49:33 +00:00
|
|
|
/**
|
|
|
|
* \file QErrorDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-26 18:49:33 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-26 18:49:33 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QERRORDIALOG_H
|
|
|
|
#define QERRORDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
#include "ui/QErrorDialogBase.h"
|
|
|
|
|
|
|
|
class QError;
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QErrorDialog : public QErrorDialogBase {
|
|
|
|
Q_OBJECT
|
2001-08-26 18:49:33 +00:00
|
|
|
public:
|
|
|
|
QErrorDialog(QError * form);
|
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
private:
|
|
|
|
QError * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QERRORDIALOG_H
|