mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 05:55:34 +00:00
fe61081acf
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5140 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
1018 B
C++
45 lines
1018 B
C++
// -*- 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"
|
|
|
|
// To have this class is probably a bit overkill... (Lgb)
|
|
|
|
/** The footnote inset
|
|
|
|
*/
|
|
class InsetFootlike : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetFootlike(BufferParams const &);
|
|
///
|
|
InsetFootlike(InsetFootlike const &, bool same_id = false);
|
|
///
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
|
///
|
|
bool insetAllowed(Inset::Code) const;
|
|
/** returns true if, when outputing LaTeX, font changes should
|
|
be closed before generating this inset. This is needed for
|
|
insets that may contain several paragraphs */
|
|
bool noFontChange() const { return true; }
|
|
};
|
|
|
|
#endif
|