mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
1d985ede5f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14777 a592a061-630c-0410-9148-cb99ea01b6c8
55 lines
1.0 KiB
C
55 lines
1.0 KiB
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>
|
|
#include <QCloseEvent>
|
|
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
QViewSourceDialog::QViewSourceDialog(QViewSource * form)
|
|
: form_(form)
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
|
|
connect(viewFullSourceCB, SIGNAL(toggled(bool)),
|
|
this, SLOT(slotUpdate()));
|
|
connect(autoUpdateCB, SIGNAL(toggled(bool)),
|
|
updatePB, SLOT(setDisabled(bool)));
|
|
connect(updatePB, SIGNAL(clicked()),
|
|
this, SLOT(slotUpdate()));
|
|
}
|
|
|
|
|
|
void QViewSourceDialog::closeEvent(QCloseEvent * e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
|
|
void QViewSourceDialog::slotUpdate()
|
|
{
|
|
form_->update_source();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "QViewSourceDialog_moc.cpp"
|