mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetLine.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
* \author André Pönitz
|
|
* \author Uwe Stöhr
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_LINE_H
|
|
#define INSET_LINE_H
|
|
|
|
|
|
#include "InsetCommand.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class InsetLine : public InsetCommand
|
|
{
|
|
public:
|
|
InsetLine(Buffer * buf, InsetCommandParams const &);
|
|
|
|
/// InsetCommand inherited methods.
|
|
//@{
|
|
docstring screenLabel() const override;
|
|
static ParamInfo const & findInfo(std::string const &);
|
|
static std::string defaultCommand() { return "rule"; }
|
|
static bool isCompatibleCommand(std::string const & s)
|
|
{ return s == "rule"; }
|
|
//@}
|
|
|
|
private:
|
|
|
|
/// Inset inherited methods.
|
|
//@{
|
|
InsetCode lyxCode() const override { return LINE_CODE; }
|
|
void docbook(XMLStream &, OutputParams const &) const override;
|
|
docstring xhtml(XMLStream &, OutputParams const &) const override;
|
|
bool hasSettings() const override { return true; }
|
|
void metrics(MetricsInfo &, Dimension &) const override;
|
|
void draw(PainterInfo & pi, int x, int y) const override;
|
|
void latex(otexstream &, OutputParams const &) const override;
|
|
int plaintext(odocstringstream & ods, OutputParams const & op,
|
|
size_t max_length = INT_MAX) const override;
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd) override;
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const override;
|
|
Inset * clone() const override { return new InsetLine(*this); }
|
|
//@}
|
|
|
|
/// cached line height and offset.
|
|
/// These value are independent of the BufferView size and thus
|
|
/// can be shared between views.
|
|
//@{
|
|
mutable int height_;
|
|
mutable int offset_;
|
|
//@}
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // INSET_NEWLINE_H
|