mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f4c49493be
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8241 a592a061-630c-0410-9148-cb99ea01b6c8
80 lines
1.4 KiB
C
80 lines
1.4 KiB
C
/**
|
|
* \file insetoptarg.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Martin Vermeer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "insetoptarg.h"
|
|
|
|
#include "debug.h"
|
|
#include "gettext.h"
|
|
#include "LColor.h"
|
|
#include "paragraph.h"
|
|
|
|
|
|
using std::string;
|
|
using std::auto_ptr;
|
|
using std::ostream;
|
|
|
|
|
|
InsetOptArg::InsetOptArg(BufferParams const & ins)
|
|
: InsetCollapsable(ins, Collapsed)
|
|
{
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
font.setColor(LColor::collapsable);
|
|
setLabelFont(font);
|
|
setLabel(_("opt"));
|
|
}
|
|
|
|
|
|
InsetOptArg::InsetOptArg(InsetOptArg const & in)
|
|
: InsetCollapsable(in)
|
|
{
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
font.setColor(LColor::collapsable);
|
|
setLabelFont(font);
|
|
setLabel(_("opt"));
|
|
}
|
|
|
|
|
|
auto_ptr<InsetBase> InsetOptArg::clone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new InsetOptArg(*this));
|
|
}
|
|
|
|
|
|
string const InsetOptArg::editMessage() const
|
|
{
|
|
return _("Opened Optional Argument Inset");
|
|
}
|
|
|
|
|
|
void InsetOptArg::write(Buffer const & buf, ostream & os) const
|
|
{
|
|
os << "OptArg" << "\n";
|
|
InsetCollapsable::write(buf, os);
|
|
}
|
|
|
|
|
|
int InsetOptArg::latex(Buffer const &, ostream &,
|
|
OutputParams const &) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetOptArg::latexOptional(Buffer const & buf, ostream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
os << '[';
|
|
int const i = inset.latex(buf, os, runparams);
|
|
os << ']';
|
|
return i + 2;
|
|
}
|