mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a654de29ea
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3802 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
823 B
C++
41 lines
823 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(BufferParams const &);
|
|
///
|
|
InsetMarginal(InsetMarginal const &, bool same_id = false);
|
|
///
|
|
Inset * clone(Buffer const &, bool same_id = false) const;
|
|
///
|
|
Inset::Code lyxCode() const { return Inset::MARGIN_CODE; }
|
|
///
|
|
int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
|
|
///
|
|
string const editMessage() const;
|
|
};
|
|
|
|
#endif
|