lyx_mirror/src/frontends/qt2/QERT.C

67 lines
1.2 KiB
C++
Raw Normal View History

/**
* \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 "ControlERT.h"
#include "qt_helpers.h"
#include <qradiobutton.h>
#include <qpushbutton.h>
#include "QERTDialog.h"
#include "QERT.h"
#include "Qt2BC.h"
typedef Qt2CB<ControlERT, Qt2DB<QERTDialog> > base_class;
QERT::QERT()
: base_class(qt_("LyX: LaTeX Code Settings"))
{
}
void QERT::build_dialog()
{
dialog_.reset(new QERTDialog(this));
bc().setOK(dialog_->okPB);
bc().setCancel(dialog_->closePB);
}
void QERT::apply()
{
ERTParams & params = controller().params();
if (dialog_->openRB->isChecked())
params.status = InsetERT::Open;
else if (dialog_->inlineRB->isChecked())
params.status = InsetERT::Inlined;
else
params.status = InsetERT::Collapsed;
}
void QERT::update_contents()
{
QRadioButton * rb = 0;
switch (controller().params().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);
}