mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
77e706c441
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@638 a592a061-630c-0410-9148-cb99ea01b6c8
56 lines
1.1 KiB
C++
56 lines
1.1 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"
|
|
#include "gettext.h"
|
|
|
|
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;
|
|
/// 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(std::ostream &) const;
|
|
///
|
|
int DocBook(std::ostream &) const;
|
|
private:
|
|
///
|
|
Buffer * owner;
|
|
};
|
|
|
|
#endif
|