]> git.lyx.org Git - lyx.git/blob - src/insets/InsetLine.h
Improve handling of top and bottom margin
[lyx.git] / src / insets / InsetLine.h
1 // -*- C++ -*-
2 /**
3  * \file InsetLine.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  * \author André Pönitz
9  * \author Uwe Stöhr
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef INSET_LINE_H
15 #define INSET_LINE_H
16
17
18 #include "InsetCommand.h"
19
20
21 namespace lyx {
22
23 class LaTeXFeatures;
24
25 class InsetLine : public InsetCommand
26 {
27 public:
28         InsetLine(Buffer * buf, InsetCommandParams const &);
29
30         /// InsetCommand inherited methods.
31         //@{
32         docstring screenLabel() const;
33         static ParamInfo const & findInfo(std::string const &);
34         static std::string defaultCommand() { return "rule"; }
35         static bool isCompatibleCommand(std::string const & s)
36         { return s == "rule"; }
37         //@}
38
39 private:
40
41         /// Inset inherited methods.
42         //@{
43         InsetCode lyxCode() const { return LINE_CODE; }
44         void docbook(XMLStream &, OutputParams const &) const;
45         docstring xhtml(XMLStream &, OutputParams const &) const;
46         bool hasSettings() const { return true; }
47         void metrics(MetricsInfo &, Dimension &) const;
48         void draw(PainterInfo & pi, int x, int y) const;
49         void latex(otexstream &, OutputParams const &) const;
50         int plaintext(odocstringstream & ods, OutputParams const & op,
51                       size_t max_length = INT_MAX) const;
52         void doDispatch(Cursor & cur, FuncRequest & cmd);
53         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
54         Inset * clone() const { return new InsetLine(*this); }
55         //@}
56
57         /// cached line height and offset.
58         /// These value are independent of the BufferView size and thus
59         /// can be shared between views.
60         //@{
61         mutable int height_;
62         mutable int offset_;
63         //@}
64 };
65
66
67 } // namespace lyx
68
69 #endif // INSET_NEWLINE_H