X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfloatlist.C;h=6d11d93aa0b04536dff1d1ac6322ef0f12bc5ec1;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=bf262dbab301e597735bd7a7f59039c088273c44;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/insets/insetfloatlist.C b/src/insets/insetfloatlist.C index bf262dbab3..6d11d93aa0 100644 --- a/src/insets/insetfloatlist.C +++ b/src/insets/insetfloatlist.C @@ -23,7 +23,7 @@ #include "LaTeXFeatures.h" #include "lyxlex.h" #include "metricsinfo.h" -#include "toc.h" +#include "TocBackend.h" #include "support/lstrings.h" @@ -45,14 +45,14 @@ InsetFloatList::InsetFloatList() InsetFloatList::InsetFloatList(string const & type) : InsetCommand(InsetCommandParams("floatlist"), "toc") { - setCmdName(type); + setParam("type", from_ascii(type)); } docstring const InsetFloatList::getScreenLabel(Buffer const & buf) const { FloatList const & floats = buf.params().getLyXTextClass().floats(); - FloatList::const_iterator it = floats[getCmdName()]; + FloatList::const_iterator it = floats[to_ascii(getParam("type"))]; if (it != floats.end()) return buf.B_(it->second.listName()); else @@ -68,16 +68,33 @@ InsetBase::Code InsetFloatList::lyxCode() const void InsetFloatList::write(Buffer const &, ostream & os) const { - os << "FloatList " << getCmdName() << "\n"; + os << "FloatList " << to_ascii(getParam("type")) << "\n"; } void InsetFloatList::read(Buffer const & buf, LyXLex & lex) { - InsetCommand::read(buf, lex); - lyxerr[Debug::INSETS] << "FloatList::float_type: " << getCmdName() << endl; - if (!buf.params().getLyXTextClass().floats().typeExist(getCmdName())) - lex.printError("InsetFloatList: Unknown float type: `$$Token'"); + FloatList const & floats = buf.params().getLyXTextClass().floats(); + string token; + + if (lex.eatLine()) { + setParam("type", lex.getDocString()); + lyxerr[Debug::INSETS] << "FloatList::float_type: " + << to_ascii(getParam("type")) << endl; + if (!floats.typeExist(to_ascii(getParam("type")))) + lex.printError("InsetFloatList: Unknown float type: `$$Token'"); + } else + lex.printError("InsetFloatList: Parse error: `$$Token'"); + while (lex.isOK()) { + lex.next(); + token = lex.getString(); + if (token == "\\end_inset") + break; + } + if (token != "\\end_inset") { + lex.printError("Missing \\end_inset at this point. " + "Read: `$$Token'"); + } } @@ -85,7 +102,7 @@ int InsetFloatList::latex(Buffer const & buf, odocstream & os, OutputParams const &) const { FloatList const & floats = buf.params().getLyXTextClass().floats(); - FloatList::const_iterator cit = floats[getCmdName()]; + FloatList::const_iterator cit = floats[to_ascii(getParam("type"))]; if (cit != floats.end()) { if (cit->second.builtin()) { @@ -99,13 +116,11 @@ int InsetFloatList::latex(Buffer const & buf, odocstream & os, os << "%% unknown builtin float\n"; } } else { - // FIXME UNICODE - os << "\\listof{" << from_ascii(getCmdName()) << "}{" + os << "\\listof{" << getParam("type") << "}{" << buf.B_(cit->second.listName()) << "}\n"; } } else { - // FIXME UNICODE - os << "%%\\listof{" << from_ascii(getCmdName()) << "}{" + os << "%%\\listof{" << getParam("type") << "}{" << bformat(_("List of %1$s"), from_utf8(cit->second.name())) << "}\n"; } @@ -118,7 +133,7 @@ int InsetFloatList::plaintext(Buffer const & buffer, odocstream & os, { os << getScreenLabel(buffer) << "\n\n"; - toc::asciiTocList(getCmdName(), buffer, os); + buffer.tocBackend().writePlaintextTocList(to_ascii(getParam("type")), os); os << "\n"; return 0; @@ -127,7 +142,7 @@ int InsetFloatList::plaintext(Buffer const & buffer, odocstream & os, void InsetFloatList::validate(LaTeXFeatures & features) const { - features.useFloat(getCmdName()); + features.useFloat(to_ascii(getParam("type"))); }