mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 12:26:59 +00:00
684299d107
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8801 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
922 B
C
51 lines
922 B
C
/**
|
|
* \file QErrorListDialog.C
|
|
* 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.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QErrorListDialog.h"
|
|
#include "QErrorList.h"
|
|
|
|
#include <qlistbox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
QErrorListDialog::QErrorListDialog(QErrorList * form)
|
|
: QErrorListDialogBase(0, 0, false, 0),
|
|
form_(form)
|
|
{
|
|
connect(closePB, SIGNAL(clicked()),
|
|
form, SLOT(slotClose()));
|
|
connect(errorsLB, SIGNAL(returnPressed(QListBoxItem *)),
|
|
form, SLOT(slotClose()));
|
|
}
|
|
|
|
|
|
QErrorListDialog::~QErrorListDialog()
|
|
{}
|
|
|
|
|
|
void QErrorListDialog::select_adaptor(int item)
|
|
{
|
|
form_->select(item);
|
|
}
|
|
|
|
|
|
void QErrorListDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|