mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-17 21:36:00 +00:00
96 lines
1.9 KiB
C++
96 lines
1.9 KiB
C++
/**
|
|
* \file GuiPhantom.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Uwe Stöhr
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GuiPhantom.h"
|
|
#include "FuncRequest.h"
|
|
#include "support/gettext.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
GuiPhantom::GuiPhantom(GuiView & lv)
|
|
: GuiDialog(lv, "phantom", qt_("Phantom Settings"))
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(buttonBox, SIGNAL(clicked(QAbstractButton *)),
|
|
this, SLOT(slotButtonBox(QAbstractButton *)));
|
|
|
|
connect(phantomRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
|
|
connect(hphantomRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
|
|
connect(vphantomRB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
|
|
|
|
bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
|
|
bc().setOK(buttonBox->button(QDialogButtonBox::Ok));
|
|
bc().setCancel(buttonBox->button(QDialogButtonBox::Cancel));
|
|
}
|
|
|
|
|
|
void GuiPhantom::change_adaptor()
|
|
{
|
|
changed();
|
|
}
|
|
|
|
|
|
void GuiPhantom::updateContents()
|
|
{
|
|
switch (params_.type) {
|
|
case InsetPhantomParams::Phantom:
|
|
phantomRB->setChecked(true);
|
|
break;
|
|
case InsetPhantomParams::HPhantom:
|
|
hphantomRB->setChecked(true);
|
|
break;
|
|
case InsetPhantomParams::VPhantom:
|
|
vphantomRB->setChecked(true);
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
void GuiPhantom::applyView()
|
|
{
|
|
if (vphantomRB->isChecked())
|
|
params_.type = InsetPhantomParams::VPhantom;
|
|
else if (hphantomRB->isChecked())
|
|
params_.type = InsetPhantomParams::HPhantom;
|
|
else
|
|
params_.type = InsetPhantomParams::Phantom;
|
|
}
|
|
|
|
|
|
bool GuiPhantom::initialiseParams(string const & sdata)
|
|
{
|
|
InsetPhantom::string2params(sdata, params_);
|
|
return true;
|
|
}
|
|
|
|
|
|
void GuiPhantom::clearParams()
|
|
{
|
|
params_ = InsetPhantomParams();
|
|
}
|
|
|
|
|
|
void GuiPhantom::dispatchParams()
|
|
{
|
|
dispatch(FuncRequest(getLfun(), InsetPhantom::params2string(params_)));
|
|
}
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "moc_GuiPhantom.cpp"
|