lyx_mirror/src/insets/insetfoot.h
Lars Gullik Bjønnes fa492d6bf0 fix lyxalgo.h, dra pagebreak with text on line, change the math_deco_search a bit
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@597 a592a061-630c-0410-9148-cb99ea01b6c8
2000-03-09 23:58:55 +00:00

52 lines
920 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1998 The LyX Team.
*
*======================================================
*/
// The pristine updatable inset: Text
#ifndef INSETFOOT_H
#define INSETFOOT_H
#ifdef __GNUG__
#pragma interface
#endif
#include "insetcollapsable.h"
class Painter;
/** The footnote inset
*/
class InsetFoot : public InsetCollapsable {
public:
///
InsetFoot(Buffer *);
///
~InsetFoot() {}
///
Inset * Clone() const;
///
Inset::Code LyxCode() const { return Inset::FOOT_CODE; }
///
int Latex(ostream &, signed char, bool fp) const;
///
void Write(ostream &) const;
///
void Read(LyXLex &);
///
const char * EditMessage() const;
///
bool InsertInset(BufferView *, Inset * inset);
};
#endif