2000-07-17 18:27:53 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-03-11 03:20:44 +00:00
|
|
|
* Copyright 2000-2001 The LyX Team.
|
2000-07-17 18:27:53 +00:00
|
|
|
*
|
|
|
|
*======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef INSETCAPTION_H
|
|
|
|
#define INSETCAPTION_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insettext.h"
|
|
|
|
|
|
|
|
/** A caption inset
|
|
|
|
*/
|
|
|
|
class InsetCaption : public InsetText {
|
|
|
|
public:
|
2001-03-11 03:20:44 +00:00
|
|
|
///
|
|
|
|
InsetCaption();
|
2000-07-18 17:45:27 +00:00
|
|
|
///
|
|
|
|
void Write(Buffer const * buf, std::ostream & os) const;
|
|
|
|
///
|
|
|
|
void Read(Buffer const * buf, LyXLex & lex);
|
|
|
|
///
|
2001-03-11 03:20:44 +00:00
|
|
|
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, bool cleared) const;
|
|
|
|
///
|
|
|
|
virtual
|
|
|
|
int Latex(Buffer const * buf, std::ostream & os,
|
|
|
|
bool fragile, bool free_spc) const;
|
|
|
|
///
|
|
|
|
virtual
|
|
|
|
int Ascii(Buffer const * buf, std::ostream & os, int linelen) const;
|
|
|
|
///
|
|
|
|
virtual
|
|
|
|
int DocBook(Buffer const * buf, std::ostream & os) const;
|
2000-07-17 18:27:53 +00:00
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2001-03-11 03:20:44 +00:00
|
|
|
|
|
|
|
inline
|
|
|
|
bool InsetCaption::display() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
bool InsetCaption::needFullRow() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
Inset::Code InsetCaption::LyxCode() const
|
|
|
|
{
|
|
|
|
return CAPTION_CODE;
|
|
|
|
}
|
2000-07-17 18:27:53 +00:00
|
|
|
#endif
|