]> git.lyx.org Git - lyx.git/blob - src/insets/insetnewline.C
80ffec67634ac70b6ffffececd3267ed604cb8cb
[lyx.git] / src / insets / insetnewline.C
1 /**
2  * \file insetnewline.C
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 "BufferView.h"
16 #include "debug.h"
17 #include "LColor.h"
18 #include "lyxtext.h"
19 #include "metricsinfo.h"
20 #include "paragraph.h"
21 #include "paragraph_funcs.h"
22
23 #include "frontends/font_metrics.h"
24 #include "frontends/Painter.h"
25
26 using std::endl;
27 using std::ostream;
28
29
30 void InsetNewline::read(Buffer const &, LyXLex &)
31 {
32         /* Nothing to read */
33 }
34
35
36 void InsetNewline::write(Buffer const &, ostream & os) const
37 {
38         os << "\n\\newline \n";
39 }
40
41
42 void InsetNewline::metrics(MetricsInfo & mi, Dimension & dim) const
43 {
44         LyXFont & font = mi.base.font;
45         dim.asc = font_metrics::maxAscent(font);
46         dim.des = font_metrics::maxDescent(font);
47         dim.wid = font_metrics::width('n', font);
48         dim_ = dim;
49 }
50
51
52 int InsetNewline::latex(Buffer const &, ostream &,
53                         LatexRunParams const &) const
54 {
55         lyxerr << "Eek, calling InsetNewline::latex !" << endl;
56         return 0;
57 }
58
59
60 int InsetNewline::ascii(Buffer const &, ostream & os,
61                         LatexRunParams const &) const
62 {
63         os << '\n';
64         return 0;
65 }
66
67
68 int InsetNewline::linuxdoc(Buffer const &, std::ostream & os,
69                            LatexRunParams const &) const
70 {
71         os << '\n';
72         return 0;
73 }
74
75
76 int InsetNewline::docbook(Buffer const &, std::ostream & os,
77                           LatexRunParams const &) const
78 {
79         os << '\n';
80         return 0;
81 }
82
83
84 void InsetNewline::draw(PainterInfo & pi, int x, int y) const
85 {
86         int const wid = font_metrics::width('n', pi.base.font);
87         int const asc = font_metrics::maxAscent(pi.base.font);
88
89         // hack, and highly dubious
90         lyx::pos_type pos = ownerPar(*pi.base.bv->buffer(), this)
91                 .getPositionOfInset(this);
92         bool const ltr_pos = (pi.base.bv->text->bidi.level(pos) % 2 == 0);
93
94         int xp[3];
95         int yp[3];
96
97         yp[0] = int(y - 0.875 * asc * 0.75);
98         yp[1] = int(y - 0.500 * asc * 0.75);
99         yp[2] = int(y - 0.125 * asc * 0.75);
100
101         if (ltr_pos) {
102                 xp[0] = int(x + wid * 0.375);
103                 xp[1] = int(x);
104                 xp[2] = int(x + wid * 0.375);
105         } else {
106                 xp[0] = int(x + wid * 0.625);
107                 xp[1] = int(x + wid);
108                 xp[2] = int(x + wid * 0.625);
109         }
110
111         pi.pain.lines(xp, yp, 3, LColor::eolmarker);
112
113         yp[0] = int(y - 0.500 * asc * 0.75);
114         yp[1] = int(y - 0.500 * asc * 0.75);
115         yp[2] = int(y - asc * 0.75);
116
117         if (ltr_pos) {
118                 xp[0] = int(x);
119                 xp[1] = int(x + wid);
120                 xp[2] = int(x + wid);
121         } else {
122                 xp[0] = int(x + wid);
123                 xp[1] = int(x);
124                 xp[2] = int(x);
125         }
126
127         pi.pain.lines(xp, yp, 3, LColor::eolmarker);
128 }