2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \file QERT.C
|
|
|
|
* 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 "QERTDialog.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
|
|
|
|
#include "controllers/ControlERT.h"
|
|
|
|
|
|
|
|
#include <qradiobutton.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-03-22 23:07:24 +00:00
|
|
|
typedef QController<ControlERT, QView<QERTDialog> > ert_base_class;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
QERT::QERT(Dialog & parent)
|
2007-03-22 23:07:24 +00:00
|
|
|
: ert_base_class(parent, _("TeX Code Settings"))
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|