mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
df55785b5a
- only trivial renaming - one used variable removed git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17514 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.3 KiB
C
70 lines
1.3 KiB
C
/**
|
|
* \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 {
|
|
|
|
typedef QController<ControlERT, QView<QERTDialog> > ert_base_class;
|
|
|
|
|
|
QERT::QERT(Dialog & parent)
|
|
: ert_base_class(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
|