2000-06-26 18:48:45 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
|
* \file InsetMarginal.h
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2007-05-03 15:54:56 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2000-06-26 18:48:45 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2000-06-26 18:48:45 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSETMARGINAL_H
|
|
|
|
|
#define INSETMARGINAL_H
|
|
|
|
|
|
|
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
|
#include "InsetFootlike.h"
|
2000-06-26 18:48:45 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2000-06-26 18:48:45 +00:00
|
|
|
|
/** The marginal note inset
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-06-26 18:48:45 +00:00
|
|
|
|
*/
|
2000-07-04 19:16:35 +00:00
|
|
|
|
class InsetMarginal : public InsetFootlike {
|
2000-06-26 18:48:45 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2002-03-03 20:25:07 +00:00
|
|
|
|
InsetMarginal(BufferParams const &);
|
2000-06-26 18:48:45 +00:00
|
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
|
InsetCode lyxCode() const { return MARGIN_CODE; }
|
2000-06-26 18:48:45 +00:00
|
|
|
|
///
|
2007-05-03 15:53:14 +00:00
|
|
|
|
docstring name() const { return from_ascii("Marginal"); }
|
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int latex(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +00:00
|
|
|
|
OutputParams const &) const;
|
2007-02-16 08:15:16 +00:00
|
|
|
|
///
|
|
|
|
|
int plaintext(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +00:00
|
|
|
|
OutputParams const & runparams) const;
|
2000-06-26 18:48:45 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int docbook(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +00:00
|
|
|
|
OutputParams const & runparams) const;
|
2005-02-28 13:14:48 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
virtual docstring const editMessage() const;
|
2008-02-13 13:33:56 +00:00
|
|
|
|
///
|
2008-02-15 10:13:32 +00:00
|
|
|
|
void addToToc(Buffer const &, ParConstIterator const &) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
protected:
|
|
|
|
|
InsetMarginal(InsetMarginal const &);
|
|
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
|
virtual Inset * clone() const;
|
2000-06-26 18:48:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2000-06-26 18:48:45 +00:00
|
|
|
|
#endif
|