]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTOC.cpp
b81f6a939323071a7676e41ed60cc2dba0c57ea0
[lyx.git] / src / insets / InsetTOC.cpp
1 /**
2  * \file InsetTOC.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetTOC.h"
14
15 #include "Buffer.h"
16 #include "BufferParams.h"
17 #include "DispatchResult.h"
18 #include "FuncRequest.h"
19 #include "LaTeXFeatures.h"
20 #include "MetricsInfo.h"
21 #include "OutputParams.h"
22 #include "output_xhtml.h"
23 #include "Paragraph.h"
24 #include "TextClass.h"
25 #include "TocBackend.h"
26
27 #include "support/debug.h"
28 #include "support/gettext.h"
29
30 #include <ostream>
31
32 using namespace std;
33
34 namespace lyx {
35
36
37 InsetTOC::InsetTOC(Buffer * buf, InsetCommandParams const & p)
38         : InsetCommand(buf, p, "toc")
39 {}
40
41
42 ParamInfo const & InsetTOC::findInfo(string const & /* cmdName */)
43 {
44         static ParamInfo param_info_;
45         if (param_info_.empty()) {
46                 param_info_.add("type", ParamInfo::LATEX_REQUIRED);
47         }
48         return param_info_;
49 }
50
51
52 docstring InsetTOC::screenLabel() const
53 {
54         if (getCmdName() == "tableofcontents")
55                 return buffer().B_("Table of Contents");
56         return _("Unknown TOC type");
57 }
58
59
60 int InsetTOC::plaintext(odocstream & os, OutputParams const &) const
61 {
62         os << screenLabel() << "\n\n";
63         buffer().tocBackend().writePlaintextTocList(getCmdName(), os);
64         return PLAINTEXT_NEWLINE;
65 }
66
67
68 int InsetTOC::docbook(odocstream & os, OutputParams const &) const
69 {
70         if (getCmdName() == "tableofcontents")
71                 os << "<toc></toc>";
72         return 0;
73 }
74
75
76 docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const
77 {
78         Layout const & lay = buffer().params().documentClass().htmlTOCLayout();
79         string const & tocclass = lay.defaultCSSClass();
80         string const tocattr = "class='tochead " + tocclass + "'";
81         
82         // we'll use our own stream, because we are going to defer everything.
83         // that's how we deal with the fact that we're probably inside a standard
84         // paragraph, and we don't want to be.
85         odocstringstream ods;
86         XHTMLStream xs(ods);
87
88         Toc const & toc = buffer().tocBackend().toc("tableofcontents");
89         if (toc.empty())
90                 return docstring();
91
92         xs << StartTag("div", "class='toc'");
93         xs << StartTag("div", tocattr) 
94                  << _("Table of Contents") 
95                  << EndTag("div");
96         Toc::const_iterator it = toc.begin();
97         Toc::const_iterator const en = toc.end();
98         int lastdepth = 0;
99         for (; it != en; ++it) {
100                 Paragraph const & par = it->dit().innerParagraph();
101                 int const depth = it->depth();
102                 if (depth > buffer().params().tocdepth)
103                         continue;
104                 Font const dummy;
105                 if (depth > lastdepth) {
106                         xs.cr();
107                         // open as many tags as we need to open to get to this level
108                         // this includes the tag for the current level
109                         for (int i = lastdepth + 1; i <= depth; ++i) {
110                                 stringstream attr;
111                                 attr << "class='lyxtoc-" << i << "'";
112                                 xs << StartTag("div", attr.str());
113                         }
114                         lastdepth = depth;
115                 }
116                 else if (depth < lastdepth) {
117                         // close as many as we have to close to get back to this level
118                         // this includes closing the last tag at this level
119                         for (int i = lastdepth; i >= depth; --i) 
120                                 xs << EndTag("div");
121                         // now open our tag
122                         stringstream attr;
123                         attr << "class='lyxtoc-" << depth << "'";
124                         xs << StartTag("div", attr.str());
125                         lastdepth = depth;
126                 } else {
127                         // no change of level, so close and open
128                         xs << EndTag("div");
129                         stringstream attr;
130                         attr << "class='lyxtoc-" << depth << "'";
131                         xs << StartTag("div", attr.str());
132                 }
133                 string const parattr = "href='#" + par.magicLabel() + "' class='tocarrow'";
134                 par.simpleLyXHTMLOnePar(buffer(), xs, op, dummy, true);
135                 xs << " ";
136                 xs << StartTag("a", parattr);
137                 // FIXME XHTML 
138                 // There ought to be a simple way to customize this.
139                 xs << XHTMLStream::NextRaw() << "&seArr;";
140                 xs << EndTag("a");              
141         }
142         for (int i = lastdepth; i > 0; --i) 
143                 xs << EndTag("div");
144         xs << EndTag("div");
145         return ods.str();
146 }
147
148
149 } // namespace lyx