mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
2470d9297d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2681 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of*
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Word Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1996-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef INSET_FLOATLIST_H
|
|
#define INSET_FLOATLIST_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insetbutton.h"
|
|
|
|
/** Used to insert table of contents
|
|
*/
|
|
class InsetFloatList : public InsetButton {
|
|
public:
|
|
///
|
|
InsetFloatList() {}
|
|
///
|
|
InsetFloatList(string const & type)
|
|
: float_type(type) {}
|
|
///
|
|
Inset * clone(Buffer const &, bool = false) const {
|
|
return new InsetFloatList(*this);
|
|
}
|
|
///
|
|
string const getScreenLabel(Buffer const *) const;
|
|
///
|
|
void edit(BufferView * bv, int, int, unsigned int);
|
|
///
|
|
void edit(BufferView * bv, bool front = true);
|
|
///
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
///
|
|
bool display() const { return true; }
|
|
///
|
|
Inset::Code lyxCode() const;
|
|
///
|
|
void write(Buffer const *, std::ostream &) const;
|
|
///
|
|
void read(Buffer const *, LyXLex &);
|
|
///
|
|
int latex(Buffer const *, std::ostream &, bool, bool) const;
|
|
///
|
|
int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
|
|
///
|
|
int docbook(Buffer const *, std::ostream &) const { return 0; }
|
|
///
|
|
int ascii(Buffer const *, std::ostream &, int linelen) const;
|
|
private:
|
|
string float_type;
|
|
};
|
|
|
|
#endif
|