]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.cpp
#7379 avoid the wrap spell check question when buffer is empty
[lyx.git] / src / insets / InsetTOC.cpp
index 9f20ee5675a30d9b4bc9a726eedb87fe72fd6917..e297ef4be68738388f4dd5a2c291d5ae9513e215 100644 (file)
 
 #include "Buffer.h"
 #include "BufferParams.h"
+#include "Cursor.h"
 #include "DispatchResult.h"
+#include "Font.h"
 #include "FuncRequest.h"
+#include "Language.h"
 #include "LaTeXFeatures.h"
-#include "MetricsInfo.h"
 #include "OutputParams.h"
 #include "output_xhtml.h"
 #include "Paragraph.h"
+#include "ParagraphParameters.h"
 #include "TextClass.h"
 #include "TocBackend.h"
 
@@ -35,7 +38,7 @@ namespace lyx {
 
 
 InsetTOC::InsetTOC(Buffer * buf, InsetCommandParams const & p)
-       : InsetCommand(buf, p, "toc")
+       : InsetCommand(buf, p)
 {}
 
 
@@ -57,6 +60,21 @@ docstring InsetTOC::screenLabel() const
 }
 
 
+void InsetTOC::doDispatch(Cursor & cur, FuncRequest & cmd) {
+       switch (cmd.action()) {
+       case LFUN_MOUSE_RELEASE:
+               if (!cur.selection() && cmd.button() == mouse_button::button1) {
+                       showInsetDialog(&cur.bv());
+                       cur.dispatched();
+               }
+               break;
+       
+       default:
+               InsetCommand::doDispatch(cur, cmd);
+       }
+}
+
+
 int InsetTOC::plaintext(odocstream & os, OutputParams const &) const
 {
        os << screenLabel() << "\n\n";
@@ -75,51 +93,44 @@ int InsetTOC::docbook(odocstream & os, OutputParams const &) const
 
 docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const
 {
+       Layout const & lay = buffer().params().documentClass().htmlTOCLayout();
+       string const & tocclass = lay.defaultCSSClass();
+       string const tocattr = "class='tochead " + tocclass + "'";
+       
        // we'll use our own stream, because we are going to defer everything.
        // that's how we deal with the fact that we're probably inside a standard
        // paragraph, and we don't want to be.
        odocstringstream ods;
        XHTMLStream xs(ods);
-       // FIXME XHTML
-       // This is temporary. We'll get the main TOC working first. The rest will
-       // then be a fairly simple adapation of this code, I hope.
-       if (getCmdName() != "tableofcontents")
-               return docstring();
+
        Toc const & toc = buffer().tocBackend().toc("tableofcontents");
        if (toc.empty())
                return docstring();
 
-       xs << StartTag("div", "class='toc'");
-
-       // we want to figure out look like a chapter, section, or whatever.
-       // so we're going to look for the layout with the minimum toclevel
-       // number. we'll take the first one, just because.
-       DocumentClass const & dc = buffer().params().documentClass();
-       TextClass::LayoutList::const_iterator lit = dc.begin();
-       TextClass::LayoutList::const_iterator len = dc.end();
-       int minlevel = 1000;
-       Layout const * lay = NULL;
-       for (; lit != len; ++lit) {
-               int const level = lit->toclevel;
-               if (level == Layout::NOT_IN_TOC || level >= minlevel)
-                       continue;
-               lay = &*lit;
-               minlevel = level;
-       }
-       
-       string const tocclass = lay ? lay->defaultCSSClass() + " ": "";
-       string const tocattr = "class='" + tocclass + "tochead'";
-       
-       xs << StartTag("div", tocattr) 
-          << _("Table of Contents") 
-                << EndTag("div");
+       xs << html::StartTag("div", "class='toc'");
+
+       // Title of TOC
+       Language const * lang = buffer().params().language;
+       static string toctitle = N_("Table of Contents");
+       docstring title = lang 
+                       ? translateIfPossible(from_ascii(toctitle), lang->code())
+                       : translateIfPossible(from_ascii(toctitle));
+       xs << html::StartTag("div", tocattr)
+                << title
+                << html::EndTag("div");
+
+       // Output of TOC
        Toc::const_iterator it = toc.begin();
        Toc::const_iterator const en = toc.end();
        int lastdepth = 0;
        for (; it != en; ++it) {
-               Paragraph const & par = it->dit().innerParagraph();
-               Font const dummy;
+               // First, we need to manage increases and decreases of depth
                int const depth = it->depth();
+               
+               // Ignore stuff above the tocdepth
+               if (depth > buffer().params().tocdepth)
+                       continue;
+               
                if (depth > lastdepth) {
                        xs.cr();
                        // open as many tags as we need to open to get to this level
@@ -127,7 +138,7 @@ docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const
                        for (int i = lastdepth + 1; i <= depth; ++i) {
                                stringstream attr;
                                attr << "class='lyxtoc-" << i << "'";
-                               xs << StartTag("div", attr.str());
+                               xs << html::StartTag("div", attr.str());
                        }
                        lastdepth = depth;
                }
@@ -135,37 +146,46 @@ docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const
                        // close as many as we have to close to get back to this level
                        // this includes closing the last tag at this level
                        for (int i = lastdepth; i >= depth; --i) 
-                               xs << EndTag("div");
+                               xs << html::EndTag("div");
                        // now open our tag
                        stringstream attr;
                        attr << "class='lyxtoc-" << depth << "'";
-                       xs << StartTag("div", attr.str());
+                       xs << html::StartTag("div", attr.str());
                        lastdepth = depth;
                } else {
                        // no change of level, so close and open
-                       xs << EndTag("div");
+                       xs << html::EndTag("div");
                        stringstream attr;
                        attr << "class='lyxtoc-" << depth << "'";
-                       xs << StartTag("div", attr.str());
+                       xs << html::StartTag("div", attr.str());
                }
-               par.simpleLyXHTMLOnePar(buffer(), xs, op, dummy, true);
+               
+               // Now output TOC info for this entry
+               Paragraph const & par = it->dit().innerParagraph();
+               // First the label, if there is one
+               docstring const & label = par.params().labelString();
+               if (!label.empty())
+                       xs << label << " ";
+               // Now the content of the TOC entry, taken from the paragraph itself
+               OutputParams ours = op;
+               ours.for_toc = true;
+               Font const dummy;
+               par.simpleLyXHTMLOnePar(buffer(), xs, ours, dummy);
+               xs << " ";
+               // Now a link to that paragraph
+               string const parattr = "href='#" + par.magicLabel() + "' class='tocarrow'";
+               xs << html::StartTag("a", parattr);
+               // FIXME XHTML 
+               // There ought to be a simple way to customize this.
+               // Maybe if we had an InsetLayout for TOC...
+               xs << XHTMLStream::ESCAPE_NONE << "&gt;";
+               xs << html::EndTag("a");                
        }
        for (int i = lastdepth; i > 0; --i) 
-               xs << EndTag("div");
-       xs << EndTag("div");
+               xs << html::EndTag("div");
+       xs << html::EndTag("div");
        return ods.str();
 }
 
 
-void InsetTOC::validate(LaTeXFeatures & features) const
-{
-       if (features.runparams().flavor != OutputParams::HTML)
-               return;
-       features.addPreambleSnippet("<style type=\"text/css\">\n"
-                       "div.lyxtoc-1 { margin-left: 2em; text-indent: -2em; }\n"
-                       "span.bibtexlabel:before{ content: \"[\"; }\n"
-                       "span.bibtexlabel:after{ content: \"] \"; }\n"
-                       "</style>");
-}
-
 } // namespace lyx