]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNewline.cpp
* src/paragraph_funcs.cpp (breakParagraph): change parameter 'flag' to
[lyx.git] / src / insets / InsetNewline.cpp
1 /**
2  * \file InsetNewline.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetNewline.h"
14
15 #include "debug.h"
16 #include "MetricsInfo.h"
17 #include "OutputParams.h"
18
19 #include "frontends/FontMetrics.h"
20 #include "frontends/Painter.h"
21
22
23 namespace lyx {
24
25 using std::endl;
26 using std::ostream;
27
28
29 void InsetNewline::read(Buffer const &, Lexer &)
30 {
31         /* Nothing to read */
32 }
33
34
35 void InsetNewline::write(Buffer const &, ostream & os) const
36 {
37         os << "\n\\newline\n";
38 }
39
40
41 void InsetNewline::metrics(MetricsInfo & mi, Dimension & dim) const
42 {
43         frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
44         dim.asc = fm.maxAscent();
45         dim.des = fm.maxDescent();
46         dim.wid = fm.width('n');
47 }
48
49
50 int InsetNewline::latex(Buffer const &, odocstream &,
51                         OutputParams const &) const
52 {
53         lyxerr << "Eek, calling InsetNewline::latex !" << endl;
54         return 0;
55 }
56
57
58 int InsetNewline::plaintext(Buffer const &, odocstream & os,
59                             OutputParams const &) const
60 {
61         os << '\n';
62         return PLAINTEXT_NEWLINE;
63 }
64
65
66 int InsetNewline::docbook(Buffer const &, odocstream & os,
67                           OutputParams const &) const
68 {
69         os << '\n';
70         return 0;
71 }
72
73
74 void InsetNewline::draw(PainterInfo & pi, int x, int y) const
75 {
76         frontend::FontMetrics const & fm = theFontMetrics(pi.base.font);
77         int const wid = fm.width('n');
78         int const asc = fm.maxAscent();
79
80         int xp[3];
81         int yp[3];
82
83         yp[0] = int(y - 0.875 * asc * 0.75);
84         yp[1] = int(y - 0.500 * asc * 0.75);
85         yp[2] = int(y - 0.125 * asc * 0.75);
86
87         if (pi.ltr_pos) {
88                 xp[0] = int(x + wid * 0.375);
89                 xp[1] = int(x);
90                 xp[2] = int(x + wid * 0.375);
91         } else {
92                 xp[0] = int(x + wid * 0.625);
93                 xp[1] = int(x + wid);
94                 xp[2] = int(x + wid * 0.625);
95         }
96
97         pi.pain.lines(xp, yp, 3, Color::eolmarker);
98
99         yp[0] = int(y - 0.500 * asc * 0.75);
100         yp[1] = int(y - 0.500 * asc * 0.75);
101         yp[2] = int(y - asc * 0.75);
102
103         if (pi.ltr_pos) {
104                 xp[0] = int(x);
105                 xp[1] = int(x + wid);
106                 xp[2] = int(x + wid);
107         } else {
108                 xp[0] = int(x + wid);
109                 xp[1] = int(x);
110                 xp[2] = int(x);
111         }
112
113         pi.pain.lines(xp, yp, 3, Color::eolmarker);
114 }
115
116
117 bool InsetNewline::isSpace() const
118 {
119         return true;
120 }
121
122
123 } // namespace lyx