lyx_mirror/src/insets/insetmarginal.h
Jürgen Vigna 71f8ac34a9 Inset patch from Angus.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1095 a592a061-630c-0410-9148-cb99ea01b6c8
2000-10-10 11:50:43 +00:00

41 lines
770 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1998 The LyX Team.
*
*======================================================
*/
#ifndef INSETMARGINAL_H
#define INSETMARGINAL_H
#ifdef __GNUG__
#pragma interface
#endif
#include "insetfootlike.h"
/** The marginal note inset
*/
class InsetMarginal : public InsetFootlike {
public:
///
InsetMarginal();
///
Inset * Clone(Buffer const &) const;
///
Inset::Code LyxCode() const { return Inset::MARGIN_CODE; }
///
int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
///
string const EditMessage() const;
///
bool InsertInsetAllowed(Inset * inset) const;
};
#endif