lyx_mirror/src/insets/insettoc.h
Jürgen Vigna e2b3a1254c Some forgotten files and Anguses citation patch.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@882 a592a061-630c-0410-9148-cb99ea01b6c8
2000-07-14 07:52:03 +00:00

56 lines
1.2 KiB
C++

// -*- 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"
class Buffer;
/** Used to insert table of contents
*/
class InsetTOC : public InsetCommand {
public:
///
InsetTOC() : InsetCommand("tableofcontents") {}
///
explicit
InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {}
///
Inset * Clone() const { return new InsetTOC(owner); }
///
string getScreenLabel() const;
/// 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(Buffer const *, std::ostream &) const;
///
int DocBook(Buffer const *, std::ostream &) const;
private:
///
Buffer * owner;
};
#endif