/** * \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 #ifdef __GNUG__ #pragma implementation #endif #include "ControlERT.h" #include "gettext.h" #include #include #include "QERTDialog.h" #include "QERT.h" #include "Qt2BC.h" typedef Qt2CB > base_class; QERT::QERT() : base_class(_("LaTeX ERT")) { } 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); }