lyx_mirror/src/frontends/qt4/QViewSourceDialog.C

43 lines
729 B
C++
Raw Normal View History

/**
* \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
#include "QViewSourceDialog_moc.cpp"