2000-07-04 19:16:35 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1998 The LyX Team.
|
|
|
|
*
|
|
|
|
*======================================================
|
|
|
|
*/
|
|
|
|
// The pristine updatable inset: Text
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef InsetFootlike_H
|
|
|
|
#define InsetFootlike_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetcollapsable.h"
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
// To have this class is probably a bit overkill... (Lgb)
|
|
|
|
|
2000-07-04 19:16:35 +00:00
|
|
|
/** The footnote inset
|
|
|
|
|
|
|
|
*/
|
|
|
|
class InsetFootlike : public InsetCollapsable {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
InsetFootlike();
|
|
|
|
///
|
2001-07-27 12:03:36 +00:00
|
|
|
InsetFootlike(InsetFootlike const &, bool same_id = false);
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
2001-07-12 14:35:38 +00:00
|
|
|
///
|
2001-07-19 08:52:59 +00:00
|
|
|
bool insetAllowed(Inset::Code) const;
|
2000-07-04 19:16:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|