lyx_mirror/src/insets/insettoc.C
Angus Leeming c10dfd15cd * LyXView: the accessor methods now return a reference to the member
variables, not a pointer.
* WordLangTuple: you can forward-declare a return type you know ;-)
* Qt: get it to compile again, having broken it yesterday.
* Everything else? See above.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4957 a592a061-630c-0410-9148-cb99ea01b6c8
2002-08-13 14:40:38 +00:00

75 lines
1.3 KiB
C

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "gettext.h"
#include "insettoc.h"
#include "BufferView.h"
#include "frontends/LyXView.h"
#include "frontends/Dialogs.h"
#include "debug.h"
#include "toc.h"
using std::vector;
using std::ostream;
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, mouse_button::state)
{
bv->owner()->getDialogs().showTOC(this);
}
void InsetTOC::edit(BufferView * bv, bool)
{
edit(bv, 0, 0, mouse_button::none);
}
int InsetTOC::ascii(Buffer const * buffer, ostream & os, int) const
{
os << getScreenLabel(buffer) << "\n\n";
toc::asciiTocList(toc::getType(getCmdName()), buffer, os);
os << "\n";
return 0;
}
int InsetTOC::linuxdoc(Buffer const *, ostream & os) const
{
if (getCmdName() == "tableofcontents")
os << "<toc>";
return 0;
}
int InsetTOC::docbook(Buffer const *, ostream & os, bool) const
{
if (getCmdName() == "tableofcontents")
os << "<toc></toc>";
return 0;
}