mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
13349032cb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5758 a592a061-630c-0410-9148-cb99ea01b6c8
86 lines
1.6 KiB
C
86 lines
1.6 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>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "debug.h"
|
|
|
|
#include "insetoptarg.h"
|
|
#include "support/LOstream.h"
|
|
#include "frontends/Alert.h"
|
|
#include "support/lstrings.h" // frontStrip, strip
|
|
#include "lyxtext.h"
|
|
#include "buffer.h"
|
|
#include "gettext.h"
|
|
#include "BufferView.h"
|
|
#include "support/lstrings.h"
|
|
|
|
using std::ostream;
|
|
using std::vector;
|
|
using std::pair;
|
|
|
|
InsetOptArg::InsetOptArg(BufferParams const & ins)
|
|
: InsetCollapsable(ins, true)
|
|
{
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
font.setColor(LColor::collapsable);
|
|
setLabelFont(font);
|
|
setLabel(_("opt"));
|
|
}
|
|
|
|
|
|
InsetOptArg::InsetOptArg(InsetOptArg const & in, bool same_id)
|
|
: InsetCollapsable(in, same_id)
|
|
{
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
font.setColor(LColor::collapsable);
|
|
setLabelFont(font);
|
|
setLabel(_("opt"));
|
|
}
|
|
|
|
|
|
Inset * InsetOptArg::clone(Buffer const &, bool same_id) const
|
|
{
|
|
return new InsetOptArg(*this, same_id);
|
|
}
|
|
|
|
|
|
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 &, bool, bool) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetOptArg::latexOptional(Buffer const * buf, ostream & os,
|
|
bool, bool fp) const
|
|
{
|
|
os << '[';
|
|
int const i = inset.latex(buf, os, false, fp);
|
|
os << ']';
|
|
return i + 2;
|
|
}
|