mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
ba916a0f89
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1315 a592a061-630c-0410-9148-cb99ea01b6c8
92 lines
2.0 KiB
C
92 lines
2.0 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "gettext.h"
|
|
#include "insettoc.h"
|
|
#include "BufferView.h"
|
|
#include "LyXView.h"
|
|
#include "frontends/Dialogs.h"
|
|
#include "debug.h"
|
|
#include "buffer.h"
|
|
|
|
using std::ostream;
|
|
using std::endl;
|
|
|
|
string const InsetTOC::getScreenLabel() const
|
|
{
|
|
string cmdname( getCmdName() );
|
|
if (cmdname == "tableofcontents" )
|
|
return _("Table of Contents");
|
|
else if (cmdname == "listofalgorithms" )
|
|
return _("List of Algorithms");
|
|
else if (cmdname == "listoffigures" )
|
|
return _("List of Figures");
|
|
else
|
|
return _("List of Tables");
|
|
}
|
|
|
|
|
|
Inset::Code InsetTOC::LyxCode() const
|
|
{
|
|
string cmdname( getCmdName() );
|
|
if (cmdname == "tableofcontents" )
|
|
return Inset::TOC_CODE;
|
|
else if (cmdname == "listofalgorithms" )
|
|
return Inset::LOA_CODE;
|
|
else if (cmdname == "listoffigures" )
|
|
return Inset::LOF_CODE;
|
|
else
|
|
return Inset::LOT_CODE;
|
|
}
|
|
|
|
|
|
void InsetTOC::Edit(BufferView * bv, int, int, unsigned int)
|
|
{
|
|
bv->owner()->getDialogs()->showTOC( this );
|
|
}
|
|
|
|
int InsetTOC::Ascii(Buffer const * buffer, ostream & os, int) const
|
|
{
|
|
os << getScreenLabel() << endl << endl;
|
|
|
|
Buffer::TocType type;
|
|
string cmdname = getCmdName();
|
|
if (cmdname == "tableofcontents" )
|
|
type = Buffer::TOC_TOC;
|
|
else if (cmdname == "listofalgorithms" )
|
|
type = Buffer::TOC_LOA;
|
|
else if (cmdname == "listoffigures" )
|
|
type = Buffer::TOC_LOF;
|
|
else
|
|
type = Buffer::TOC_LOT;
|
|
|
|
vector<vector<Buffer::TocItem> > const toc_list =
|
|
buffer->getTocList();
|
|
vector<Buffer::TocItem> const & toc = toc_list[type];
|
|
for (vector<Buffer::TocItem>::const_iterator it = toc.begin();
|
|
it != toc.end(); ++it)
|
|
os << string(4 * it->depth, ' ') << it->str << endl;
|
|
|
|
os << endl;
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetTOC::Linuxdoc(Buffer const *, ostream & os) const
|
|
{
|
|
if (getCmdName() == "tableofcontents" )
|
|
os << "<toc>";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetTOC::DocBook(Buffer const *, ostream & os) const
|
|
{
|
|
if (getCmdName() == "tableofcontents" )
|
|
os << "<toc></toc>";
|
|
return 0;
|
|
}
|