]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTOC.cpp
Run codespell on tex2lyx/, client/, convert/ and graphics/
[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 "BufferView.h"
18 #include "Cursor.h"
19 #include "DispatchResult.h"
20 #include "Font.h"
21 #include "FuncRequest.h"
22 #include "Language.h"
23 #include "LaTeXFeatures.h"
24 #include "OutputParams.h"
25 #include "output_xhtml.h"
26 #include "Paragraph.h"
27 #include "ParagraphParameters.h"
28 #include "TextClass.h"
29 #include "TocBackend.h"
30
31 #include "support/debug.h"
32 #include "support/gettext.h"
33 #include "support/lassert.h"
34
35 #include <ostream>
36
37 using namespace std;
38
39 namespace lyx {
40
41 namespace {
42 string cmd2type(string const & cmd)
43 {
44         if (cmd == "lstlistoflistings")
45                 return "listing";
46         return cmd;
47 }
48 } // namespace
49
50
51 InsetTOC::InsetTOC(Buffer * buf, InsetCommandParams const & p)
52         : InsetCommand(buf, p)
53 {}
54
55
56 ParamInfo const & InsetTOC::findInfo(string const & /* cmdName */)
57 {
58         static ParamInfo param_info_;
59         if (param_info_.empty()) {
60                 param_info_.add("type", ParamInfo::LATEX_REQUIRED);
61         }
62         return param_info_;
63 }
64
65
66 bool InsetTOC::isCompatibleCommand(string const & cmd)
67 {
68         return cmd == defaultCommand() || cmd == "lstlistoflistings";
69 }
70
71
72 docstring InsetTOC::screenLabel() const
73 {
74         if (getCmdName() == "tableofcontents")
75                 return buffer().B_("Table of Contents");
76         if (getCmdName() == "lstlistoflistings")
77                 return buffer().B_("List of Listings");
78         return _("Unknown TOC type");
79 }
80
81
82 void InsetTOC::doDispatch(Cursor & cur, FuncRequest & cmd) {
83         switch (cmd.action()) {
84         case LFUN_MOUSE_RELEASE:
85                 if (!cur.selection() && cmd.button() == mouse_button::button1) {
86                         cur.bv().showDialog("toc", params2string(params()));
87                         cur.dispatched();
88                 }
89                 break;
90
91         default:
92                 InsetCommand::doDispatch(cur, cmd);
93         }
94 }
95
96
97 docstring InsetTOC::layoutName() const
98 {
99         if (getCmdName() == "lstlistoflistings") {
100                 if (buffer().params().use_minted)
101                         return from_ascii("TOC:MintedListings");
102                 else
103                         return from_ascii("TOC:Listings");
104         }
105         return from_ascii("TOC");
106 }
107
108
109 void InsetTOC::validate(LaTeXFeatures & features) const
110 {
111         InsetCommand::validate(features);
112         features.useInsetLayout(getLayout());
113         if (getCmdName() == "lstlistoflistings") {
114                 if (buffer().params().use_minted)
115                         features.require("minted");
116                 else
117                         features.require("listings");
118         }
119 }
120
121
122 int InsetTOC::plaintext(odocstringstream & os,
123         OutputParams const &, size_t max_length) const
124 {
125         os << screenLabel() << "\n\n";
126         buffer().tocBackend().writePlaintextTocList(cmd2type(getCmdName()), os, max_length);
127         return PLAINTEXT_NEWLINE;
128 }
129
130
131 int InsetTOC::docbook(odocstream & os, OutputParams const &) const
132 {
133         if (getCmdName() == "tableofcontents")
134                 os << "<toc></toc>";
135         return 0;
136 }
137
138
139 void InsetTOC::makeTOCEntry(XMLStream & xs,
140                 Paragraph const & par, OutputParams const & op) const
141 {
142         string const attr = "href='#" + par.magicLabel() + "' class='tocentry'";
143         xs << xml::StartTag("a", attr);
144
145         // First the label, if there is one
146         docstring const & label = par.params().labelString();
147         if (!label.empty())
148                 xs << label << " ";
149         // Now the content of the TOC entry, taken from the paragraph itself
150         OutputParams ours = op;
151         ours.for_toc = true;
152         Font const dummy;
153         par.simpleLyXHTMLOnePar(buffer(), xs, ours, dummy);
154
155         xs << xml::EndTag("a") << xml::CR();
156 }
157
158
159 void InsetTOC::makeTOCWithDepth(XMLStream & xs,
160                 Toc const & toc, OutputParams const & op) const
161 {
162         Toc::const_iterator it = toc.begin();
163         Toc::const_iterator const en = toc.end();
164         int lastdepth = 0;
165         for (; it != en; ++it) {
166                 // do not output entries that are not actually included in the output,
167                 // e.g., stuff in non-active branches or notes or whatever.
168                 if (!it->isOutput())
169                         continue;
170
171                 // First, we need to manage increases and decreases of depth
172                 // If there's no depth to deal with, we artificially set it to 1.
173                 int const depth = it->depth();
174
175                 // Ignore stuff above the tocdepth
176                 if (depth > buffer().params().tocdepth)
177                         continue;
178
179                 if (depth > lastdepth) {
180                         xs << xml::CR();
181                         // open as many tags as we need to open to get to this level
182                         // this includes the tag for the current level
183                         for (int i = lastdepth + 1; i <= depth; ++i) {
184                                 stringstream attr;
185                                 attr << "class='lyxtoc-" << i << "'";
186                                 xs << xml::StartTag("div", attr.str()) << xml::CR();
187                         }
188                         lastdepth = depth;
189                 }
190                 else if (depth < lastdepth) {
191                         // close as many as we have to close to get back to this level
192                         // this includes closing the last tag at this level
193                         for (int i = lastdepth; i >= depth; --i)
194                                 xs << xml::EndTag("div") << xml::CR();
195                         // now open our tag
196                         stringstream attr;
197                         attr << "class='lyxtoc-" << depth << "'";
198                         xs << xml::StartTag("div", attr.str()) << xml::CR();
199                         lastdepth = depth;
200                 } else {
201                         // no change of level, so close and open
202                         xs << xml::EndTag("div") << xml::CR();
203                         stringstream attr;
204                         attr << "class='lyxtoc-" << depth << "'";
205                         xs << xml::StartTag("div", attr.str()) << xml::CR();
206                 }
207
208                 // Now output TOC info for this entry
209                 Paragraph const & par = it->dit().innerParagraph();
210                 makeTOCEntry(xs, par, op);
211         }
212         for (int i = lastdepth; i > 0; --i)
213                 xs << xml::EndTag("div") << xml::CR();
214 }
215
216
217 void InsetTOC::makeTOCNoDepth(XMLStream & xs,
218                 Toc const & toc, const OutputParams & op) const
219 {
220         Toc::const_iterator it = toc.begin();
221         Toc::const_iterator const en = toc.end();
222         for (; it != en; ++it) {
223                 // do not output entries that are not actually included in the output,
224                 // e.g., stuff in non-active branches or notes or whatever.
225                 if (!it->isOutput())
226                         continue;
227
228                 xs << xml::StartTag("div", "class='lyxtoc-flat'") << xml::CR();
229
230                 Paragraph const & par = it->dit().innerParagraph();
231                 makeTOCEntry(xs, par, op);
232
233                 xs << xml::EndTag("div");
234         }
235 }
236
237
238 docstring InsetTOC::xhtml(XMLStream &, OutputParams const & op) const
239 {
240         string const & command = getCmdName();
241         if (command != "tableofcontents" && command != "lstlistoflistings") {
242                 LYXERR0("TOC type " << command << " not yet implemented.");
243                 LASSERT(false, return docstring());
244         }
245
246         shared_ptr<Toc const> toc =
247                 buffer().masterBuffer()->tocBackend().toc(cmd2type(command));
248         if (toc->empty())
249                 return docstring();
250
251         // we'll use our own stream, because we are going to defer everything.
252         // that's how we deal with the fact that we're probably inside a standard
253         // paragraph, and we don't want to be.
254         odocstringstream ods;
255         XMLStream xs(ods);
256
257         xs << xml::StartTag("div", "class='toc'");
258
259         // Title of TOC
260         InsetLayout const & il = getLayout();
261         string const & tag = il.htmltag();
262         docstring title = screenLabel();
263         Layout const & lay = buffer().params().documentClass().htmlTOCLayout();
264         string const & tocclass = lay.defaultCSSClass();
265         string const tocattr = "class='tochead " + tocclass + "'";
266         xs << xml::StartTag(tag, tocattr)
267                  << title
268                  << xml::EndTag(tag);
269
270         // with lists of listings, at least, there is no depth
271         // to worry about. so the code can be simpler.
272         bool const use_depth = (command == "tableofcontents");
273
274         // Output of TOC
275         if (use_depth)
276                 makeTOCWithDepth(xs, *toc, op);
277         else
278                 makeTOCNoDepth(xs, *toc, op);
279
280         xs << xml::EndTag("div") << xml::CR();
281         return ods.str();
282 }
283
284
285 } // namespace lyx