]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insettoc.C
index 5936bfc9f409a93920792b3be2f59270926fab6a..c93c62e26acb11e63787d4aa6b65eab0022a139d 100644 (file)
@@ -4,45 +4,85 @@
 #pragma implementation
 #endif
 
+#include "gettext.h"
 #include "insettoc.h"
-#include "buffer.h"
-#include "bufferlist.h"
-#include "commandtags.h"
-#include "lyxfunc.h"
-#include "LyXView.h"
 #include "BufferView.h"
+#include "LyXView.h"
+#include "frontends/Dialogs.h"
+#include "debug.h"
+#include "buffer.h"
+
 
-void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
+using std::vector;
+using std::ostream;
+
+
+string const InsetTOC::getScreenLabel(Buffer const *) const 
 {
-       bv->owner()->getLyXFunc()->Dispatch(LFUN_TOCVIEW);
+       string const cmdname(getCmdName());
+       
+       if (cmdname == "tableofcontents")
+               return _("Table of Contents");
+       return _("Unknown toc list");
 }
 
-#ifndef USE_OSTREAM_ONLY
-int InsetTOC::Linuxdoc(string & file) const
+
+Inset::Code InsetTOC::lyxCode() const
 {
-       file += "<toc>";
-       return 0;
+       string const cmdname(getCmdName());
+       if (cmdname == "tableofcontents")
+               return Inset::TOC_CODE;
+       return Inset::NO_CODE;
+}
+
+
+void InsetTOC::edit(BufferView * bv, int, int, unsigned int)
+{
+       bv->owner()->getDialogs()->showTOC(this);
+}
+
+
+void InsetTOC::edit(BufferView * bv, bool)
+{
+       edit(bv, 0, 0, 0);
 }
 
 
-int InsetTOC::DocBook(string & file) const
+int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
 {
-       file += "<toc></toc>";
+       os << getScreenLabel(buffer) << "\n\n";
+
+       string type;
+       string const cmdname = getCmdName();
+       if (cmdname == "tableofcontents")
+               type = "TOC";
+       Buffer::Lists const toc_list = buffer->getLists();
+       Buffer::Lists::const_iterator cit =
+               toc_list.find(type);
+       if (cit != toc_list.end()) {
+               Buffer::SingleList::const_iterator ccit = cit->second.begin();
+               Buffer::SingleList::const_iterator end = cit->second.end();
+               for (; ccit != end; ++ccit)
+                       os << string(4 * ccit->depth, ' ')
+                          << ccit->str << "\n";
+       }
+
+       os << "\n";
        return 0;
 }
 
-#else
 
-int InsetTOC::Linuxdoc(ostream & os) const
+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) const
 {
-       os << "<toc></toc>";
+       if (getCmdName() == "tableofcontents")
+               os << "<toc></toc>";
        return 0;
 }
-#endif