lyx_mirror/src/insets/insettoc.h

58 lines
1.2 KiB
C
Raw Normal View History

// -*- C++ -*-
/* This file is part of*
* ======================================================
*
* LyX, The Document Word Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1996-2000 The LyX Team.
*
* ====================================================== */
#ifndef INSET_TOC_H
#define INSET_TOC_H
#ifdef __GNUG__
#pragma interface
#endif
#include "insetcommand.h"
#include "gettext.h"
using std::ostream;
class Buffer;
/** Used to insert table of contents
*/
class InsetTOC : public InsetCommand {
public:
///
InsetTOC() : InsetCommand("tableofcontents") {}
///
InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {}
///
Inset * Clone() const { return new InsetTOC(owner); }
///
string getScreenLabel() const { return _("Table of Contents"); }
/// On edit, we open the TOC pop-up
void Edit(BufferView * bv, int, int, unsigned int);
///
EDITABLE Editable() const {
return IS_EDITABLE;
}
///
bool display() const { return true; }
///
Inset::Code LyxCode() const { return Inset::TOC_CODE; }
///
int Linuxdoc(ostream &) const;
///
int DocBook(ostream &) const;
private:
///
Buffer * owner;
};
#endif