lyx_mirror/src/insets/insettoc.C

116 lines
2.2 KiB
C++
Raw Normal View History

/**
* \file insettoc.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bj<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "insettoc.h"
#include "funcrequest.h"
#include "gettext.h"
#include "metricsinfo.h"
#include "toc.h"
using std::string;
using std::ostream;
InsetTOC::InsetTOC(InsetCommandParams const & p)
: InsetCommand(p)
{}
InsetTOC::~InsetTOC()
{
InsetCommandMailer mailer("toc", *this);
mailer.hideDialog();
}
string const InsetTOC::getScreenLabel(Buffer const &) const
{
string const cmdname(getCmdName());
if (cmdname == "tableofcontents")
return _("Table of Contents");
return _("Unknown toc list");
}
InsetOld::Code InsetTOC::lyxCode() const
{
string const cmdname(getCmdName());
if (cmdname == "tableofcontents")
return InsetOld::TOC_CODE;
return InsetOld::NO_CODE;
}
void InsetTOC::metrics(MetricsInfo & mi, Dimension & dim) const
{
InsetCommand::metrics(mi, dim);
int center_indent = (mi.base.textwidth - dim.wid) / 2;
Box b(center_indent, center_indent + dim.wid, -dim.asc, dim.des);
button().setBox(b);
dim.wid = mi.base.textwidth;
dim_ = dim;
}
void InsetTOC::draw(PainterInfo & pi, int x, int y) const
{
InsetCommand::draw(pi, x + button().box().x1, y);
}
dispatch_result InsetTOC::localDispatch(FuncRequest const & cmd)
{
switch (cmd.action) {
case LFUN_MOUSE_RELEASE:
if (button().box().contains(cmd.x, cmd.y))
InsetCommandMailer("toc", *this).showDialog(cmd.view());
return DISPATCHED;
case LFUN_INSET_DIALOG_SHOW:
InsetCommandMailer("toc", *this).showDialog(cmd.view());
return DISPATCHED;
default:
return InsetCommand::localDispatch(cmd);
}
}
int InsetTOC::ascii(Buffer const & buffer, ostream & os, int) const
{
os << getScreenLabel(buffer) << "\n\n";
lyx::toc::asciiTocList(lyx::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;
}