mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
fa492d6bf0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@597 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
920 B
C++
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
|