]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.C
fix some non-localizable strings
[lyx.git] / src / insets / insetfloatlist.C
index 64ab198f3d66fd51acd43dc026e333f5e1d0d829..e40876460ef34a0686f9d84b3bc5e696f33a8b7f 100644 (file)
@@ -6,20 +6,39 @@
 
 #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"
 
+
+using std::ostream;
 using std::endl;
 
-string const InsetFloatList::getScreenLabel() const 
+
+InsetFloatList::InsetFloatList()
+       : InsetCommand(InsetCommandParams())
+{
+}
+
+
+InsetFloatList::InsetFloatList(string const & type)
+       : InsetCommand(InsetCommandParams())
+{
+       setCmdName(type);
+}
+
+
+string const InsetFloatList::getScreenLabel(Buffer const *) const
 {
-       string const guiName = floatList[float_type]->second.name();
+       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!");
 }
 
 
@@ -29,24 +48,24 @@ Inset::Code InsetFloatList::lyxCode() const
 }
 
 
-void InsetFloatList::write(Buffer const *, std::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;
        }
@@ -57,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 *, std::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:
@@ -85,24 +104,24 @@ int InsetFloatList::latex(Buffer const *, std::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();