2003-10-27 12:41:26 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file insetline.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSET_LINE_H
|
|
|
|
|
#define INSET_LINE_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "inset.h"
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2003-10-27 12:41:26 +00:00
|
|
|
|
class InsetLine : public InsetOld {
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
InsetLine() {}
|
|
|
|
|
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::Code lyxCode() const { return InsetBase::LINE_CODE; }
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
|
|
|
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int latex(Buffer const &, odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int plaintext(Buffer const &, odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int docbook(Buffer const &, odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void read(Buffer const &, LyXLex & lex);
|
|
|
|
|
|
|
|
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
|
|
|
/// We don't need \begin_inset and \end_inset
|
|
|
|
|
bool directWrite() const { return true; }
|
|
|
|
|
|
|
|
|
|
bool display() const { return true; }
|
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const
|
|
|
|
|
{
|
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetLine);
|
|
|
|
|
}
|
2003-10-27 12:41:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-10-27 12:41:26 +00:00
|
|
|
|
#endif // INSET_NEWLINE_H
|