]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Rename ascii to plaintext and LatexRunParams to OutputParams.
[lyx.git] / src / insets / insettoc.C
index 9aca608ac78c201509451311df3ba4524383dbaa..c345421baad024de2889a59498dc645728d56ad2 100644 (file)
-#include <config.h>
+/**
+ * \file insettoc.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "insettoc.h"
-#include "buffer.h"
-#include "bufferlist.h"
-#include "commandtags.h"
-#include "lyxfunc.h"
-#include "LyXView.h"
 
-void InsetTOC::Edit(BufferView * bv, int, int)
+#include "dispatchresult.h"
+#include "funcrequest.h"
+#include "gettext.h"
+#include "metricsinfo.h"
+#include "toc.h"
+
+#include "support/std_ostream.h"
+
+using std::string;
+using std::ostream;
+
+
+
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p)
+{}
+
+
+InsetTOC::~InsetTOC()
+{
+       InsetCommandMailer("toc", *this).hideDialog();
+}
+
+
+std::auto_ptr<InsetBase> InsetTOC::clone() const
+{
+       return std::auto_ptr<InsetBase>(new InsetTOC(*this));
+}
+
+
+string const InsetTOC::getScreenLabel(Buffer const &) const
 {
-       bv->owner()->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
+       if (getCmdName() == "tableofcontents")
+               return _("Table of Contents");
+       return _("Unknown toc list");
 }
 
-int InsetTOC::Linuxdoc(string & file) const
+
+InsetOld::Code InsetTOC::lyxCode() const
+{
+       if (getCmdName() == "tableofcontents")
+               return InsetOld::TOC_CODE;
+       return InsetOld::NO_CODE;
+}
+
+
+void InsetTOC::metrics(MetricsInfo & mi, Dimension & dim) const
+{
+       InsetCommand::metrics(mi, dim);
+       int const x1 = (mi.base.textwidth - dim.wid) / 2;
+       button().setBox(Box(x1, x1 + dim.wid, -dim.asc, dim.des));
+       dim.wid = mi.base.textwidth;
+       dim_ = dim;
+}
+
+
+void InsetTOC::draw(PainterInfo & pi, int x, int y) const
+{
+       InsetCommand::draw(pi, button().box().x1, y);
+}
+
+
+DispatchResult
+InsetTOC::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(true, true);
+
+       case LFUN_INSET_DIALOG_SHOW:
+               InsetCommandMailer("toc", *this).showDialog(cmd.view());
+               return DispatchResult(true, true);
+
+       default:
+               return InsetCommand::priv_dispatch(cmd, idx, pos);
+       }
+}
+
+
+int InsetTOC::plaintext(Buffer const & buffer, ostream & os,
+                   OutputParams const &) const
+{
+       os << getScreenLabel(buffer) << "\n\n";
+
+       lyx::toc::asciiTocList(lyx::toc::getType(getCmdName()), buffer, os);
+
+       os << "\n";
+       return 0;
+}
+
+
+int InsetTOC::linuxdoc(Buffer const &, ostream & os,
+                      OutputParams const &) const
 {
-       file += "<toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc>";
        return 0;
 }
 
 
-int InsetTOC::DocBook(string & file) const
+int InsetTOC::docbook(Buffer const &, ostream & os,
+                     OutputParams const &) const
 {
-       file += "<toc></toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc></toc>";
        return 0;
 }