mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
7ac850e36d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6438 a592a061-630c-0410-9148-cb99ea01b6c8
166 lines
3.5 KiB
C
166 lines
3.5 KiB
C
/**
|
|
* \file insetfloatlist.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
#include <config.h>
|
|
|
|
|
|
#include "insetfloatlist.h"
|
|
#include "FloatList.h"
|
|
#include "LaTeXFeatures.h"
|
|
#include "lyxlex.h"
|
|
#include "frontends/Dialogs.h"
|
|
#include "frontends/LyXView.h"
|
|
#include "BufferView.h"
|
|
#include "buffer.h"
|
|
#include "toc.h"
|
|
#include "gettext.h"
|
|
#include "debug.h"
|
|
|
|
#include "BoostFormat.h"
|
|
|
|
using std::ostream;
|
|
using std::endl;
|
|
|
|
|
|
InsetFloatList::InsetFloatList()
|
|
: InsetCommand(InsetCommandParams())
|
|
{
|
|
}
|
|
|
|
|
|
InsetFloatList::InsetFloatList(string const & type)
|
|
: InsetCommand(InsetCommandParams())
|
|
{
|
|
setCmdName(type);
|
|
}
|
|
|
|
|
|
InsetFloatList::~InsetFloatList()
|
|
{
|
|
InsetCommandMailer mailer("toc", *this);
|
|
mailer.hideDialog();
|
|
}
|
|
|
|
|
|
string const InsetFloatList::getScreenLabel(Buffer const * buf) const
|
|
{
|
|
FloatList const & floats = buf->params.getLyXTextClass().floats();
|
|
FloatList::const_iterator it = floats[getCmdName()];
|
|
if (it != floats.end())
|
|
return _(it->second.listName());
|
|
else
|
|
return _("ERROR: Nonexistent float type!");
|
|
}
|
|
|
|
|
|
Inset::Code InsetFloatList::lyxCode() const
|
|
{
|
|
return Inset::FLOAT_LIST_CODE;
|
|
}
|
|
|
|
|
|
void InsetFloatList::write(Buffer const *, ostream & os) const
|
|
{
|
|
os << "FloatList " << getCmdName() << "\n";
|
|
}
|
|
|
|
|
|
void InsetFloatList::read(Buffer const * buf, LyXLex & lex)
|
|
{
|
|
FloatList const & floats = buf->params.getLyXTextClass().floats();
|
|
string token;
|
|
|
|
if (lex.eatLine()) {
|
|
setCmdName(lex.getString());
|
|
lyxerr[Debug::INSETS] << "FloatList::float_type: " << getCmdName() << endl;
|
|
if (!floats.typeExist(getCmdName()))
|
|
lex.printError("InsetFloatList: Unknown float type: `$$Token'");
|
|
} else
|
|
lex.printError("InsetFloatList: Parse error: `$$Token'");
|
|
while (lex.isOK()) {
|
|
lex.nextToken();
|
|
token = lex.getString();
|
|
if (token == "\\end_inset")
|
|
break;
|
|
}
|
|
if (token != "\\end_inset") {
|
|
lex.printError("Missing \\end_inset at this point. "
|
|
"Read: `$$Token'");
|
|
}
|
|
}
|
|
|
|
|
|
void InsetFloatList::edit(BufferView * bv, int, int, mouse_button::state)
|
|
{
|
|
InsetCommandMailer mailer("toc", *this);
|
|
mailer.showDialog(bv);
|
|
}
|
|
|
|
|
|
void InsetFloatList::edit(BufferView * bv, bool)
|
|
{
|
|
edit(bv, 0, 0, mouse_button::none);
|
|
}
|
|
|
|
|
|
int InsetFloatList::latex(Buffer const * buf, ostream & os, bool, bool) const
|
|
{
|
|
FloatList const & floats = buf->params.getLyXTextClass().floats();
|
|
FloatList::const_iterator cit = floats[getCmdName()];
|
|
|
|
if (cit != floats.end()) {
|
|
if (cit->second.builtin()) {
|
|
// Only two different types allowed here:
|
|
string const type = cit->second.type();
|
|
if (type == "table") {
|
|
os << "\\listoftables\n";
|
|
} else if (type == "figure") {
|
|
os << "\\listoffigures\n";
|
|
} else {
|
|
os << "%% unknown builtin float\n";
|
|
}
|
|
} else {
|
|
os << "\\listof{" << getCmdName() << "}{"
|
|
<< cit->second.listName() << "}\n";
|
|
}
|
|
} else {
|
|
#if USE_BOOST_FORMAT
|
|
os << "%%\\listof{"
|
|
<< getCmdName()
|
|
<< "}{"
|
|
<< boost::format(_("List of %1$s")) % cit->second.name()
|
|
<< "}\n";
|
|
#else
|
|
os << "%%\\listof{"
|
|
<< getCmdName()
|
|
<< "}{"
|
|
<< _("List of ") << cit->second.name()
|
|
<< "}\n";
|
|
#endif
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
int InsetFloatList::ascii(Buffer const * buffer, ostream & os, int) const
|
|
{
|
|
os << getScreenLabel(buffer) << "\n\n";
|
|
|
|
toc::asciiTocList(getCmdName(), buffer, os);
|
|
|
|
os << "\n";
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetFloatList::validate(LaTeXFeatures & features) const
|
|
{
|
|
features.useFloat(getCmdName());
|
|
}
|