mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
41 lines
691 B
C++
41 lines
691 B
C++
|
/**
|
||
|
* \file QViewSourceDialog.C
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author John Levon
|
||
|
* \author Bo Peng
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "QViewSourceDialog.h"
|
||
|
#include "QViewSource.h"
|
||
|
|
||
|
#include <qpushbutton.h>
|
||
|
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace frontend {
|
||
|
|
||
|
QViewSourceDialog::QViewSourceDialog(QViewSource * form)
|
||
|
: form_(form)
|
||
|
{
|
||
|
setupUi(this);
|
||
|
|
||
|
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
|
||
|
}
|
||
|
|
||
|
|
||
|
void QViewSourceDialog::closeEvent(QCloseEvent * e)
|
||
|
{
|
||
|
form_->slotWMHide();
|
||
|
e->accept();
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace frontend
|
||
|
} // namespace lyx
|