X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfloatlist.C;h=8d2c565f094cfedad4a40994294d6208c7612f2e;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=63b0ba6bcf00580af63b7e2f0049ac571805aa0b;hpb=52153a589b4224d794de4f61f3f55b8d8832186f;p=lyx.git diff --git a/src/insets/insetfloatlist.C b/src/insets/insetfloatlist.C index 63b0ba6bcf..8d2c565f09 100644 --- a/src/insets/insetfloatlist.C +++ b/src/insets/insetfloatlist.C @@ -6,46 +6,66 @@ #include "insetfloatlist.h" #include "FloatList.h" +#include "frontends/Dialogs.h" +#include "LyXView.h" +#include "BufferView.h" #include "buffer.h" #include "gettext.h" #include "debug.h" -string const InsetFloatList::getScreenLabel() const +using std::ostream; +using std::endl; + + +InsetFloatList::InsetFloatList() + : InsetCommand(InsetCommandParams()) +{ +} + + +InsetFloatList::InsetFloatList(string const & type) + : InsetCommand(InsetCommandParams()) { - string const guiName = floatList[float_type]->second.name(); + setCmdName(type); +} + + +string const InsetFloatList::getScreenLabel(Buffer const *) const +{ + string const guiName = floatList[getCmdName()]->second.name(); if (!guiName.empty()) { - string const res = _("List of ") + guiName; + string const res = guiName + _(" List"); return res; } - return _("ERROR nonexistant float type!"); + return _("ERROR: Nonexistent float type!"); } -Inset::Code InsetFloatList::LyxCode() const +Inset::Code InsetFloatList::lyxCode() const { return Inset::FLOAT_LIST_CODE; } -void InsetFloatList::Write(Buffer const *, ostream & os) const +void InsetFloatList::write(Buffer const *, ostream & os) const { - os << "FloatList " << float_type << "\n"; + os << "FloatList " << getCmdName() << "\n"; } -void InsetFloatList::Read(Buffer const *, LyXLex & lex) +void InsetFloatList::read(Buffer const *, LyXLex & lex) { string token; - if (lex.EatLine()) { - float_type = lex.GetString(); - lyxerr << "FloatList::float_type: " << float_type << endl; + if (lex.eatLine()) { + setCmdName(lex.getString()); + lyxerr << "FloatList::float_type: " << getCmdName() << endl; } else lex.printError("InsetFloatList: Parse error: `$$Token'"); - while (lex.IsOK()) { + while (lex.isOK()) { lex.nextToken(); - token = lex.GetString(); + token = lex.getString(); if (token == "\\end_inset") break; } @@ -56,22 +76,22 @@ void InsetFloatList::Read(Buffer const *, LyXLex & lex) } -void InsetFloatList::Edit(BufferView *, int, int, unsigned int) +void InsetFloatList::edit(BufferView * bv, int, int, unsigned int) { -#ifdef WITH_WARNINGS -#warning Implement me please. -#endif -#if 0 - bv->owner()->getDialogs()->showFloatList(this); -#endif + bv->owner()->getDialogs()->showTOC(this); +} + + +void InsetFloatList::edit(BufferView * bv, bool) +{ + edit(bv, 0, 0, 0); } -int InsetFloatList::Latex(Buffer const *, ostream & os, bool, bool) const +int InsetFloatList::latex(Buffer const *, ostream & os, bool, bool) const { - FloatList::const_iterator cit = floatList[float_type]; + FloatList::const_iterator cit = floatList[getCmdName()]; - if (cit != floatList.end()) { if (cit->second.builtin()) { // Only two different types allowed here: @@ -84,24 +104,24 @@ int InsetFloatList::Latex(Buffer const *, ostream & os, bool, bool) const os << "%% unknown builtin float\n"; } } else { - os << "\\listof{" << float_type << "}{" + os << "\\listof{" << getCmdName() << "}{" << _("List of ") << cit->second.name() << "}\n"; } } else { - os << "%%\\listof{" << float_type << "}{" + os << "%%\\listof{" << getCmdName() << "}{" << _("List of ") << cit->second.name() << "}\n"; } return 1; } -int InsetFloatList::Ascii(Buffer const * buffer, std::ostream & os, int) const +int InsetFloatList::ascii(Buffer const * buffer, ostream & os, int) const { - os << getScreenLabel() << "\n\n"; + os << getScreenLabel(buffer) << "\n\n"; Buffer::Lists const toc_list = buffer->getLists(); Buffer::Lists::const_iterator cit = - toc_list.find(float_type); + toc_list.find(getCmdName()); if (cit != toc_list.end()) { Buffer::SingleList::const_iterator ccit = cit->second.begin(); Buffer::SingleList::const_iterator end = cit->second.end();