]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetfloatlist.C
index 33b182c3211bf6eda6beff82df25175707882c25..6d11d93aa0b04536dff1d1ac6322ef0f12bc5ec1 100644 (file)
 #include "LaTeXFeatures.h"
 #include "lyxlex.h"
 #include "metricsinfo.h"
-#include "toc.h"
+#include "TocBackend.h"
 
 #include "support/lstrings.h"
 
-using lyx::support::bformat;
+
+namespace lyx {
+
+using support::bformat;
 
 using std::endl;
 using std::string;
@@ -35,44 +38,37 @@ using std::ostream;
 
 
 InsetFloatList::InsetFloatList()
-       : InsetCommand(InsetCommandParams())
+       : InsetCommand(InsetCommandParams("floatlist"), "toc")
 {}
 
 
 InsetFloatList::InsetFloatList(string const & type)
-       : InsetCommand(InsetCommandParams())
-{
-       setCmdName(type);
-}
-
-
-InsetFloatList::~InsetFloatList()
+       : InsetCommand(InsetCommandParams("floatlist"), "toc")
 {
-       InsetCommandMailer mailer("toc", *this);
-       mailer.hideDialog();
+       setParam("type", from_ascii(type));
 }
 
 
-string const InsetFloatList::getScreenLabel(Buffer const & buf) const
+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 _(it->second.listName());
+               return buf.B_(it->second.listName());
        else
                return _("ERROR: Nonexistent float type!");
 }
 
 
-InsetOld::Code InsetFloatList::lyxCode() const
+InsetBase::Code InsetFloatList::lyxCode() const
 {
-       return InsetOld::FLOAT_LIST_CODE;
+       return InsetBase::FLOAT_LIST_CODE;
 }
 
 
 void InsetFloatList::write(Buffer const &, ostream & os) const
 {
-       os << "FloatList " << getCmdName() << "\n";
+       os << "FloatList " << to_ascii(getParam("type")) << "\n";
 }
 
 
@@ -82,14 +78,15 @@ void InsetFloatList::read(Buffer const & buf, LyXLex & lex)
        string token;
 
        if (lex.eatLine()) {
-               setCmdName(lex.getString());
-               lyxerr[Debug::INSETS] << "FloatList::float_type: " << getCmdName() << endl;
-               if (!floats.typeExist(getCmdName()))
+               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.nextToken();
+               lex.next();
                token = lex.getString();
                if (token == "\\end_inset")
                        break;
@@ -101,49 +98,11 @@ void InsetFloatList::read(Buffer const & buf, LyXLex & lex)
 }
 
 
-void InsetFloatList::metrics(MetricsInfo & mi, Dimension & dim) const
-{
-       InsetCommand::metrics(mi, dim);
-       int center_indent = (mi.base.textwidth - dim.wid) / 2;
-    Box b(center_indent, center_indent + dim.wid, -dim.asc, dim.des);
-       button().setBox(b);
-
-       dim.wid = mi.base.textwidth;
-       dim_ = dim;
-}
-
-
-void InsetFloatList::draw(PainterInfo & pi, int x, int y) const
-{
-       InsetCommand::draw(pi, x + button().box().x1, y);
-}
-
-
-DispatchResult
-InsetFloatList::priv_dispatch(FuncRequest const & cmd,
-                             idx_type & idx, pos_type & pos)
-{
-       switch (cmd.action) {
-               case LFUN_MOUSE_RELEASE:
-                       if (button().box().contains(cmd.x, cmd.y))
-                               InsetCommandMailer("toc", *this).showDialog(cmd.view());
-                       return DispatchResult(DISPATCHED);
-
-               case LFUN_INSET_DIALOG_SHOW:
-                       InsetCommandMailer("toc", *this).showDialog(cmd.view());
-                       return DispatchResult(DISPATCHED);
-
-               default:
-                       return InsetCommand::priv_dispatch(cmd, idx, pos);
-       }
-}
-
-
-int InsetFloatList::latex(Buffer const & buf, ostream & os,
-                         LatexRunParams const &) const
+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()) {
@@ -157,23 +116,24 @@ int InsetFloatList::latex(Buffer const & buf, ostream & os,
                                os << "%% unknown builtin float\n";
                        }
                } else {
-                       os << "\\listof{" << getCmdName() << "}{"
-                          << cit->second.listName() << "}\n";
+                       os << "\\listof{" << getParam("type") << "}{"
+                          << buf.B_(cit->second.listName()) << "}\n";
                }
        } else {
-               os << "%%\\listof{" << getCmdName() << "}{"
-                  << bformat(_("List of %1$s"), cit->second.name())
+               os << "%%\\listof{" << getParam("type") << "}{"
+                  << bformat(_("List of %1$s"), from_utf8(cit->second.name()))
                   << "}\n";
        }
        return 1;
 }
 
 
-int InsetFloatList::ascii(Buffer const & buffer, ostream & os, LatexRunParams const &) const
+int InsetFloatList::plaintext(Buffer const & buffer, odocstream & os,
+                              OutputParams const &) const
 {
        os << getScreenLabel(buffer) << "\n\n";
 
-       lyx::toc::asciiTocList(getCmdName(), buffer, os);
+       buffer.tocBackend().writePlaintextTocList(to_ascii(getParam("type")), os);
 
        os << "\n";
        return 0;
@@ -182,5 +142,8 @@ int InsetFloatList::ascii(Buffer const & buffer, ostream & os, LatexRunParams co
 
 void InsetFloatList::validate(LaTeXFeatures & features) const
 {
-       features.useFloat(getCmdName());
+       features.useFloat(to_ascii(getParam("type")));
 }
+
+
+} // namespace lyx