lyx_mirror/src/insets/insetcaption.h
Angus Leeming 453f294074 The free_spacing patch and fix to the mess that Rob discovered.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7019 a592a061-630c-0410-9148-cb99ea01b6c8
2003-05-23 08:59:47 +00:00

70 lines
1.3 KiB
C++

// -*- C++ -*-
/**
* \file insetcaption.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS
*/
#ifndef INSETCAPTION_H
#define INSETCAPTION_H
#include "insettext.h"
/** A caption inset
*/
class InsetCaption : public InsetText {
public:
///
InsetCaption(BufferParams const &);
///
void write(Buffer const * buf, std::ostream & os) const;
///
void read(Buffer const * buf, LyXLex & lex);
///
virtual bool display() const;
///
virtual bool needFullRow() const;
///
virtual Inset::Code lyxCode() const;
///
virtual string const editMessage() const;
///
virtual void draw(BufferView * bv, LyXFont const & f,
int baseline, float & x) const;
///
virtual int latex(Buffer const * buf, std::ostream & os,
LatexRunParams const &) const;
///
int ascii(Buffer const * buf, std::ostream & os, int linelen) const;
///
int docbook(Buffer const * buf, std::ostream & os, bool mixcont) const;
};
inline
bool InsetCaption::display() const
{
return true;
}
inline
bool InsetCaption::needFullRow() const
{
return true;
}
inline
Inset::Code InsetCaption::lyxCode() const
{
return CAPTION_CODE;
}
#endif