]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetfloatlist.C
index 63b0ba6bcf00580af63b7e2f0049ac571805aa0b..8d2c565f094cfedad4a40994294d6208c7612f2e 100644 (file)
@@ -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();