]> git.lyx.org Git - lyx.git/blob - src/insets/InsetPagebreak.cpp
Fix text frame drawing.
[lyx.git] / src / insets / InsetPagebreak.cpp
1 /**
2  * \file InsetPagebreak.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetPagebreak.h"
14
15 #include "debug.h"
16 #include "gettext.h"
17 #include "Color.h"
18 #include "Text.h"
19 #include "MetricsInfo.h"
20 #include "OutputParams.h"
21 #include "TextMetrics.h"
22
23 #include "frontends/FontMetrics.h"
24 #include "frontends/Painter.h"
25
26
27 namespace lyx {
28
29 using frontend::Painter;
30
31
32 void InsetPagebreak::read(Buffer const &, Lexer &)
33 {
34         /* Nothing to read */
35 }
36
37
38 void InsetPagebreak::write(Buffer const &, std::ostream & os) const
39 {
40         os << "\n" << getCmdName() << '\n';
41 }
42
43
44 bool InsetPagebreak::metrics(MetricsInfo & mi, Dimension & dim) const
45 {
46         dim.asc = defaultRowHeight();
47         dim.des = defaultRowHeight();
48         dim.wid = mi.base.textwidth;
49         bool const changed = dim_ != dim;
50         dim_ = dim;
51         return changed;
52 }
53
54
55 void InsetPagebreak::draw(PainterInfo & pi, int x, int y) const
56 {
57         Font font;
58         font.setColor(Color::pagebreak);
59         font.decSize();
60
61         int w = 0;
62         int a = 0;
63         int d = 0;
64         theFontMetrics(font).rectText(insetLabel(), w, a, d);
65
66         int const text_start = int(x + (dim_.wid - w) / 2);
67         int const text_end = text_start + w;
68
69         pi.pain.rectText(text_start, y + d, insetLabel(), font,
70                 Color::none, Color::none);
71
72         pi.pain.line(x, y, text_start, y,
73                    Color::pagebreak, Painter::line_onoffdash);
74         pi.pain.line(text_end, y, int(x + dim_.wid), y,
75                    Color::pagebreak, Painter::line_onoffdash);
76 }
77
78
79 int InsetPagebreak::latex(Buffer const &, odocstream & os,
80                           OutputParams const &) const
81 {
82         os << from_ascii(getCmdName()) << "{}";
83         return 0;
84 }
85
86
87 int InsetPagebreak::plaintext(Buffer const &, odocstream & os,
88                               OutputParams const &) const
89 {
90         os << '\n';
91         return PLAINTEXT_NEWLINE;
92 }
93
94
95 int InsetPagebreak::docbook(Buffer const &, odocstream & os,
96                             OutputParams const &) const
97 {
98         os << '\n';
99         return 0;
100 }
101
102
103 } // namespace lyx