lyx_mirror/src/frontends/qt4/QERT.cpp
Bo Peng 8c5f097b5d Rename .C ==> .cpp for files in src/frontends/qt4, part two
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18015 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-26 03:53:51 +00:00

110 lines
2.1 KiB
C++

/**
* \file QERT.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "QERT.h"
#include "Qt2BC.h"
#include "controllers/ControlERT.h"
#include <QRadioButton>
#include <QPushButton>
#include <QCloseEvent>
namespace lyx {
namespace frontend {
/////////////////////////////////////////////////////////////////////
//
// QERTDialog
//
/////////////////////////////////////////////////////////////////////
QERTDialog::QERTDialog(QERT * form)
: form_(form)
{
setupUi(this);
connect(okPB, SIGNAL(clicked()), form, SLOT(slotOK()));
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
connect(inlineRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
connect(collapsedRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
connect(openRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
}
void QERTDialog::closeEvent(QCloseEvent * e)
{
form_->slotWMHide();
e->accept();
}
void QERTDialog::change_adaptor()
{
form_->changed();
}
/////////////////////////////////////////////////////////////////////
//
// QERT
//
/////////////////////////////////////////////////////////////////////
typedef QController<ControlERT, QView<QERTDialog> > ERTBase;
QERT::QERT(Dialog & parent)
: ERTBase(parent, _("TeX Code Settings"))
{
}
void QERT::build_dialog()
{
dialog_.reset(new QERTDialog(this));
bcview().setOK(dialog_->okPB);
bcview().setCancel(dialog_->closePB);
}
void QERT::apply()
{
if (dialog_->openRB->isChecked())
controller().setStatus(InsetERT::Open);
else if (dialog_->inlineRB->isChecked())
controller().setStatus(InsetERT::Inlined);
else
controller().setStatus(InsetERT::Collapsed);
}
void QERT::update_contents()
{
QRadioButton * rb = 0;
switch (controller().status()) {
case InsetERT::Open: rb = dialog_->openRB; break;
case InsetERT::Inlined: rb = dialog_->inlineRB; break;
case InsetERT::Collapsed: rb = dialog_->collapsedRB; break;
}
rb->setChecked(true);
}
} // namespace frontend
} // namespace lyx
#include "QERT_moc.cpp"