2001-08-26 18:49:33 +00:00
|
|
|
/**
|
|
|
|
* \file QError.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "QErrorDialog.h"
|
|
|
|
#include "ControlError.h"
|
|
|
|
#include "QError.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
|
|
|
|
#include <qtextview.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
|
|
typedef Qt2CB<ControlError, Qt2DB<QErrorDialog> > base_class;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
QError::QError(ControlError & c)
|
|
|
|
: base_class(c, _("LaTeX Error"))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QError::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QErrorDialog(this));
|
|
|
|
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-26 18:49:33 +00:00
|
|
|
void QError::update_contents()
|
|
|
|
{
|
|
|
|
dialog_->errorTV->setText(controller().params().c_str());
|
|
|
|
}
|