]> git.lyx.org Git - lyx.git/blob - src/insets/insettoc.C
Remove unused variable.
[lyx.git] / src / insets / insettoc.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "gettext.h"
8 #include "insettoc.h"
9 #include "BufferView.h"
10 #include "LyXView.h"
11 #include "frontends/Dialogs.h"
12 #include "debug.h"
13 #include "buffer.h"
14
15 using std::ostream;
16 using std::endl;
17
18 string const InsetTOC::getScreenLabel() const 
19 {
20         string cmdname( getCmdName() );
21         if (cmdname == "tableofcontents" )
22                 return _("Table of Contents");
23         else if (cmdname == "listofalgorithms" )
24                 return _("List of Algorithms");
25         else if (cmdname == "listoffigures" )
26                 return _("List of Figures");
27         else
28                 return _("List of Tables");
29 }
30
31
32 Inset::Code InsetTOC::LyxCode() const
33 {
34         string cmdname( getCmdName() );
35         if (cmdname == "tableofcontents" )
36                 return Inset::TOC_CODE;
37         else if (cmdname == "listofalgorithms" )
38                 return Inset::LOA_CODE;
39         else if (cmdname == "listoffigures" )
40                 return Inset::LOF_CODE; 
41         else
42                 return Inset::LOT_CODE;
43 }
44
45
46 void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
47 {
48         bv->owner()->getDialogs()->showTOC( this );
49 }
50
51
52 int InsetTOC::Ascii(Buffer const * buffer, ostream & os, int) const
53 {
54         os << getScreenLabel() << endl << endl;
55
56         Buffer::TocType type;
57         string cmdname = getCmdName();
58         if (cmdname == "tableofcontents" )
59                 type = Buffer::TOC_TOC;
60         else if (cmdname == "listofalgorithms" )
61                 type = Buffer::TOC_LOA;
62         else if (cmdname == "listoffigures" )
63                 type = Buffer::TOC_LOF; 
64         else
65                 type = Buffer::TOC_LOT;
66
67         vector<vector<Buffer::TocItem> > const toc_list =
68                 buffer->getTocList();
69         vector<Buffer::TocItem> const & toc = toc_list[type];
70         for (vector<Buffer::TocItem>::const_iterator it = toc.begin();
71              it != toc.end(); ++it)
72                 os << string(4 * it->depth, ' ') << it->str << endl;
73
74         os << endl;
75         return 0;
76 }
77
78
79 int InsetTOC::Linuxdoc(Buffer const *, ostream & os) const
80 {
81         if (getCmdName() == "tableofcontents" )
82                 os << "<toc>";
83         return 0;
84 }
85
86
87 int InsetTOC::DocBook(Buffer const *, ostream & os) const
88 {
89         if (getCmdName() == "tableofcontents" )
90                 os << "<toc></toc>";
91         return 0;
92 }