2001-08-29 00:37:04 +00:00
|
|
|
/**
|
|
|
|
* \file QLogDialog.C
|
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-29 00:37:04 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-08-29 00:37:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2001-08-29 00:37:04 +00:00
|
|
|
#include "QLogDialog.h"
|
|
|
|
#include "QLog.h"
|
|
|
|
|
2004-05-20 09:36:28 +00:00
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2001-08-29 00:37:04 +00:00
|
|
|
QLogDialog::QLogDialog(QLog * form)
|
2004-06-02 20:13:18 +00:00
|
|
|
: QLogDialogBase(0, 0, false, 0),
|
2001-08-29 00:37:04 +00:00
|
|
|
form_(form)
|
|
|
|
{
|
|
|
|
connect(closePB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotClose()));
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-29 00:37:04 +00:00
|
|
|
void QLogDialog::closeEvent(QCloseEvent * e)
|
|
|
|
{
|
|
|
|
form_->slotWMHide();
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QLogDialog::updateClicked()
|
|
|
|
{
|
|
|
|
form_->update_contents();
|
|
|
|
}
|
2004-05-19 15:11:37 +00:00
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|