2003-10-27 12:41:26 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
|
* \file InsetLine.h
|
2003-10-27 12:41:26 +00:00
|
|
|
|
* 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
|
|
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
#include "Inset.h"
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
class InsetLine : public Inset {
|
2003-10-27 12:41:26 +00:00
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
InsetLine() {}
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
Inset::Code lyxCode() const { return Inset::LINE_CODE; }
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool metrics(MetricsInfo &, Dimension &) const;
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
int latex(Buffer const &, odocstream &,
|
2007-02-15 22:27:45 +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 &,
|
2007-02-15 22:27:45 +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
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void read(Buffer const &, Lexer & lex);
|
2003-10-27 12:41:26 +00:00
|
|
|
|
|
|
|
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
|
|
|
/// We don't need \begin_inset and \end_inset
|
|
|
|
|
bool directWrite() const { return true; }
|
|
|
|
|
|
2007-05-18 14:32:29 +00:00
|
|
|
|
DisplayType display() const { return AlignCenter; }
|
2003-10-27 12:41:26 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
2007-04-29 13:39:47 +00:00
|
|
|
|
virtual std::auto_ptr<Inset> doClone() const
|
2004-11-23 23:04:52 +00:00
|
|
|
|
{
|
2007-04-29 13:39:47 +00:00
|
|
|
|
return std::auto_ptr<Inset>(new InsetLine);
|
2004-11-23 23:04:52 +00:00
|
|
|
|
}
|
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
|