]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insettoc.C
index 4c09831aeb630128c0fc44d65eea05bc1a7946cb..53cb0189c0f39327a5f760ecdae76152b5b9827a 100644 (file)
+/**
+ * \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.
+ */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
+#include "gettext.h"
 #include "insettoc.h"
-#include "commandtags.h"
-#include "lyxfunc.h"
-#include "LyXView.h"
+#include "funcrequest.h"
 #include "BufferView.h"
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+#include "debug.h"
+#include "toc.h"
 
+using std::vector;
 using std::ostream;
 
 
-string InsetTOC::getScreenLabel() const 
+InsetTOC::InsetTOC(InsetCommandParams const & p)
+       : InsetCommand(p)
+{}
+
+
+InsetTOC::~InsetTOC()
+{
+       InsetCommandMailer mailer("toc", *this);
+       mailer.hideDialog();
+}
+
+
+string const InsetTOC::getScreenLabel(Buffer const &) const
+{
+       string const cmdname(getCmdName());
+
+       if (cmdname == "tableofcontents")
+               return _("Table of Contents");
+       return _("Unknown toc list");
+}
+
+
+InsetOld::Code InsetTOC::lyxCode() const
 {
-       return _("Table of Contents");
+       string const cmdname(getCmdName());
+       if (cmdname == "tableofcontents")
+               return InsetOld::TOC_CODE;
+       return InsetOld::NO_CODE;
 }
 
 
-void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
+void InsetTOC::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       bv->owner()->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
+       InsetCommand::metrics(mi, dim);
+       center_indent_ = (mi.base.textwidth - dim.wid) / 2;
+       dim.wid = mi.base.textwidth;
+       dim_ = dim;
 }
 
-int InsetTOC::Linuxdoc(ostream & os) const
+
+void InsetTOC::draw(PainterInfo & pi, int x, int y) const
+{
+       InsetCommand::draw(pi, x + center_indent_, y);
+}
+
+
+dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
+{
+       switch (cmd.action) {
+       case LFUN_INSET_EDIT:
+               InsetCommandMailer("toc", *this).showDialog(cmd.view());
+               return DISPATCHED;
+       default:
+               return InsetCommand::localDispatch(cmd);
+       }
+}
+
+
+int InsetTOC::ascii(Buffer const & buffer, ostream & os, int) 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) const
 {
-       os << "<toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc>";
        return 0;
 }
 
 
-int InsetTOC::DocBook(ostream & os) const
+int InsetTOC::docbook(Buffer const &, ostream & os, bool) const
 {
-       os << "<toc></toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc></toc>";
        return 0;
 }