A bit more re-organization.
[lyx.git] / src / mathed / InsetMathPhantom.cpp
blobd6cd1b24469fa1282ed66cc4eca9373fe0e27706
1 /**
2 * \file InsetMathPhantom.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Georg Baum
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "InsetMathPhantom.h"
15 #include "MathStream.h"
16 #include "frontends/Painter.h"
18 #include <ostream>
20 namespace lyx {
23 InsetMathPhantom::InsetMathPhantom(Buffer * buf, Kind k)
24 : InsetMathNest(buf, 1), kind_(k)
28 Inset * InsetMathPhantom::clone() const
30 return new InsetMathPhantom(*this);
34 void InsetMathPhantom::metrics(MetricsInfo & mi, Dimension & dim) const
36 cell(0).metrics(mi, dim);
37 metricsMarkers(dim);
41 void InsetMathPhantom::draw(PainterInfo & pi, int x, int y) const
43 static int const arrow_size = 4;
45 // We first draw the text and then an arrow
46 ColorCode const origcol = pi.base.font.color();
47 pi.base.font.setColor(Color_special);
48 cell(0).draw(pi, x + 1, y);
49 pi.base.font.setColor(origcol);
50 Dimension const dim = dimension(*pi.base.bv);
52 if (kind_ == phantom || kind_ == vphantom) {
53 // y1---------
54 // / \.
55 // y2----- / | \.
56 // |
57 // |
58 // y3----- \ | /
59 // \ /
60 // y4---------
61 // | | |
62 // / | \.
63 // x1 x2 x3
65 int const x2 = x + dim.wid / 2;
66 int const x1 = x2 - arrow_size;
67 int const x3 = x2 + arrow_size;
69 int const y1 = y - dim.asc;
70 int const y2 = y1 + arrow_size;
71 int const y4 = y + dim.des;
72 int const y3 = y4 - arrow_size;
74 // top arrow
75 pi.pain.line(x2, y1, x1, y2, Color_added_space);
76 pi.pain.line(x2, y1, x3, y2, Color_added_space);
78 // bottom arrow
79 pi.pain.line(x2, y4, x1, y3, Color_added_space);
80 pi.pain.line(x2, y4, x3, y3, Color_added_space);
82 // joining line
83 pi.pain.line(x2, y1, x2, y4, Color_added_space);
86 if (kind_ == phantom || kind_ == hphantom) {
87 // y1---- / \.
88 // / \.
89 // y2--- <---------------->
90 // \ /
91 // y3---- \ /
92 // | | | |
93 // x1 x2 x3 x4
95 int const x1 = x;
96 int const x2 = x + arrow_size;
97 int const x4 = x + dim.wid;
98 int const x3 = x4 - arrow_size;
100 int const y2 = y + (dim.des - dim.asc) / 2;
101 int const y1 = y2 - arrow_size;
102 int const y3 = y2 + arrow_size;
104 // left arrow
105 pi.pain.line(x1, y2, x2, y3, Color_added_space);
106 pi.pain.line(x1, y2, x2, y1, Color_added_space);
108 // right arrow
109 pi.pain.line(x4, y2, x3, y3, Color_added_space);
110 pi.pain.line(x4, y2, x3, y1, Color_added_space);
112 // joining line
113 pi.pain.line(x1, y2, x4, y2, Color_added_space);
116 drawMarkers(pi, x, y);
120 void InsetMathPhantom::write(WriteStream & os) const
122 MathEnsurer ensurer(os);
123 switch (kind_) {
124 case phantom:
125 os << "\\phantom{";
126 break;
127 case vphantom:
128 os << "\\vphantom{";
129 break;
130 case hphantom:
131 os << "\\hphantom{";
132 break;
134 os << cell(0) << '}';
138 void InsetMathPhantom::normalize(NormalStream & os) const
140 switch (kind_) {
141 case phantom:
142 os << "[phantom ";
143 break;
144 case vphantom:
145 os << "[vphantom ";
146 break;
147 case hphantom:
148 os << "[hphantom ";
149 break;
151 os << cell(0) << ']';
155 void InsetMathPhantom::infoize(odocstream & os) const
157 switch (kind_) {
158 case phantom:
159 os << "Phantom";
160 break;
161 case vphantom:
162 os << "Vphantom";
163 break;
164 case hphantom:
165 os << "Hphantom";
166 break;
171 } // namespace lyx