mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 16:18:22 +00:00
e3540f33e1
Deriving from std::vector to provide helper functions appears a touch excessive. Use typedef instead and move helper functions to the base class. New header Toc.h provided to replace forward-declarations. Remove TocIterator which is useless.
91 lines
2.1 KiB
C++
91 lines
2.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetTOC.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_TOC_H
|
|
#define INSET_TOC_H
|
|
|
|
#include "InsetCommand.h"
|
|
|
|
#include "Toc.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Paragraph;
|
|
|
|
/// Used to insert table of contents and similar lists
|
|
/// at present, supports only \tableofcontents and \listoflistings.
|
|
/// Other such commands, such as \listoffigures, are supported
|
|
/// by InsetFloatList.
|
|
class InsetTOC : public InsetCommand {
|
|
public:
|
|
///
|
|
InsetTOC(Buffer * buf, InsetCommandParams const &);
|
|
|
|
/// \name Public functions inherited from Inset class
|
|
//@{
|
|
///
|
|
InsetCode lyxCode() const { return TOC_CODE; }
|
|
///
|
|
docstring layoutName() const;
|
|
///
|
|
DisplayType display() const { return AlignCenter; }
|
|
///
|
|
virtual void validate(LaTeXFeatures &) const;
|
|
///
|
|
int plaintext(odocstringstream & ods, OutputParams const & op,
|
|
size_t max_length = INT_MAX) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
///
|
|
docstring xhtml(XHTMLStream & xs, OutputParams const &) const;
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool clickable(BufferView const &, int, int) const { return true; }
|
|
//@}
|
|
|
|
/// \name Static public methods obligated for InsetCommand derived classes
|
|
//@{
|
|
///
|
|
static ParamInfo const & findInfo(std::string const &);
|
|
///
|
|
static std::string defaultCommand() { return "tableofcontents"; }
|
|
///
|
|
static bool isCompatibleCommand(std::string const & cmd);
|
|
//@}
|
|
|
|
private:
|
|
///
|
|
void makeTOCWithDepth(XHTMLStream & xs, Toc const & toc, const OutputParams & op) const;
|
|
///
|
|
void makeTOCNoDepth(XHTMLStream & xs, Toc const & toc, const OutputParams & op) const;
|
|
///
|
|
void makeTOCEntry(XHTMLStream & xs, Paragraph const & par, OutputParams const & op) const;
|
|
|
|
/// \name Private functions inherited from Inset class
|
|
//@{
|
|
///
|
|
Inset * clone() const { return new InsetTOC(*this); }
|
|
//@}
|
|
|
|
/// \name Private functions inherited from InsetCommand class
|
|
//@{
|
|
///
|
|
docstring screenLabel() const;
|
|
//@}
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|