mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
94b5a7b163
renamed some DocBook to docbook that Lars forgot. (inset methods) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3119 a592a061-630c-0410-9148-cb99ea01b6c8
86 lines
1.7 KiB
C
86 lines
1.7 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::vector;
|
|
|
|
string const InsetTOC::getScreenLabel(Buffer const *) const
|
|
{
|
|
string const cmdname(getCmdName());
|
|
|
|
if (cmdname == "tableofcontents")
|
|
return _("Table of Contents");
|
|
return _("Unknown toc list");
|
|
}
|
|
|
|
|
|
Inset::Code InsetTOC::lyxCode() const
|
|
{
|
|
string const cmdname(getCmdName());
|
|
if (cmdname == "tableofcontents")
|
|
return Inset::TOC_CODE;
|
|
return Inset::NO_CODE;
|
|
}
|
|
|
|
|
|
void InsetTOC::edit(BufferView * bv, int, int, unsigned int)
|
|
{
|
|
bv->owner()->getDialogs()->showTOC(this);
|
|
}
|
|
|
|
|
|
void InsetTOC::edit(BufferView * bv, bool)
|
|
{
|
|
edit(bv, 0, 0, 0);
|
|
}
|
|
|
|
|
|
int InsetTOC::ascii(Buffer const * buffer, std::ostream & os, int) const
|
|
{
|
|
os << getScreenLabel(buffer) << "\n\n";
|
|
|
|
string type;
|
|
string const cmdname = getCmdName();
|
|
if (cmdname == "tableofcontents")
|
|
type = "TOC";
|
|
Buffer::Lists const toc_list = buffer->getLists();
|
|
Buffer::Lists::const_iterator cit =
|
|
toc_list.find(type);
|
|
if (cit != toc_list.end()) {
|
|
Buffer::SingleList::const_iterator ccit = cit->second.begin();
|
|
Buffer::SingleList::const_iterator end = cit->second.end();
|
|
for (; ccit != end; ++ccit)
|
|
os << string(4 * ccit->depth, ' ')
|
|
<< ccit->str << "\n";
|
|
}
|
|
|
|
os << "\n";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetTOC::linuxdoc(Buffer const *, std::ostream & os) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
os << "<toc>";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetTOC::docbook(Buffer const *, std::ostream & os) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
os << "<toc></toc>";
|
|
return 0;
|
|
}
|