]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNewline.cpp
DocBook: fix encoding issues with complex ERT.
[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  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetNewline.h"
15
16 #include "Cursor.h"
17 #include "Dimension.h"
18 #include "FuncRequest.h"
19 #include "FuncStatus.h"
20 #include "Lexer.h"
21 #include "MetricsInfo.h"
22 #include "OutputParams.h"
23 #include "output_docbook.h"
24 #include "output_xhtml.h"
25 #include "texstream.h"
26
27 #include "frontends/Application.h"
28 #include "frontends/FontMetrics.h"
29 #include "frontends/Painter.h"
30
31 #include "support/debug.h"
32 #include "support/docstream.h"
33 #include "support/docstring.h"
34
35 using namespace std;
36
37 namespace lyx {
38
39 InsetNewline::InsetNewline() : Inset(0)
40 {}
41
42
43 void InsetNewlineParams::write(ostream & os) const
44 {
45         switch (kind) {
46         case InsetNewlineParams::NEWLINE:
47                 os << "newline";
48                 break;
49         case InsetNewlineParams::LINEBREAK:
50                 os <<  "linebreak";
51                 break;
52         }
53 }
54
55
56 void InsetNewlineParams::read(Lexer & lex)
57 {
58         string token;
59         lex.setContext("InsetNewlineParams::read");
60         lex >> token;
61         if (token == "newline")
62                 kind = InsetNewlineParams::NEWLINE;
63         else if (token == "linebreak")
64                 kind = InsetNewlineParams::LINEBREAK;
65         else
66                 lex.printError("Unknown kind: `$$Token'");
67 }
68
69
70 void InsetNewline::write(ostream & os) const
71 {
72         os << "Newline ";
73         params_.write(os);
74 }
75
76
77 void InsetNewline::read(Lexer & lex)
78 {
79         params_.read(lex);
80         lex >> "\\end_inset";
81 }
82
83
84 void InsetNewline::metrics(MetricsInfo & mi, Dimension & dim) const
85 {
86         frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
87         dim.asc = fm.maxAscent();
88         dim.des = fm.maxDescent();
89         dim.wid = fm.width('n');
90 }
91
92
93 void InsetNewline::doDispatch(Cursor & cur, FuncRequest & cmd)
94 {
95         switch (cmd.action()) {
96
97         case LFUN_INSET_MODIFY: {
98                 InsetNewlineParams params;
99                 cur.recordUndo();
100                 string2params(to_utf8(cmd.argument()), params);
101                 params_.kind = params.kind;
102                 break;
103         }
104
105         default:
106                 Inset::doDispatch(cur, cmd);
107                 break;
108         }
109 }
110
111
112 bool InsetNewline::getStatus(Cursor & cur, FuncRequest const & cmd,
113         FuncStatus & status) const
114 {
115         switch (cmd.action()) {
116         // we handle these
117         case LFUN_INSET_MODIFY:
118                 if (cmd.getArg(0) == "newline") {
119                         InsetNewlineParams params;
120                         string2params(to_utf8(cmd.argument()), params);
121                         status.setOnOff(params_.kind == params.kind);
122                 }
123                 status.setEnabled(true);
124                 return true;
125         default:
126                 return Inset::getStatus(cur, cmd, status);
127         }
128 }
129
130
131 ColorCode InsetNewline::ColorName() const
132 {
133         switch (params_.kind) {
134                 case InsetNewlineParams::NEWLINE:
135                         return Color_eolmarker;
136                         break;
137                 case InsetNewlineParams::LINEBREAK:
138                         return Color_pagebreak;
139                         break;
140         }
141         // not really useful, but to avoids gcc complaints
142         return Color_eolmarker;
143 }
144
145
146 void InsetNewline::latex(otexstream & os, OutputParams const & rp) const
147 {
148         switch (params_.kind) {
149                 case InsetNewlineParams::NEWLINE:
150                         if (!rp.newlinecmd.empty())
151                                 os << "\\" << rp.newlinecmd << "\n";
152                         else if (rp.inTableCell == OutputParams::PLAIN)
153                                 os << "\\newline\n";
154                         else
155                                 os << "\\\\\n";
156                         break;
157                 case InsetNewlineParams::LINEBREAK:
158                         os << "\\linebreak{}\n";
159                         break;
160                 default:
161                         os << "\\\\\n";
162                         break;
163         }
164 }
165
166
167 int InsetNewline::plaintext(odocstringstream & os,
168         OutputParams const &, size_t) const
169 {
170         os << '\n';
171         return PLAINTEXT_NEWLINE;
172 }
173
174
175 void InsetNewline::docbook(XMLStream & xs, OutputParams const & runparams) const
176 {
177         if (runparams.docbook_in_par) {
178                 xs.closeFontTags();
179                 xs << xml::EndTag("para");
180                 xs << xml::StartTag("para");
181         }
182 }
183
184
185 docstring InsetNewline::xhtml(XMLStream & xs, OutputParams const &) const
186 {
187         xs << xml::CR() << xml::CompTag("br") << xml::CR();
188         return docstring();
189 }
190
191
192 void InsetNewline::draw(PainterInfo & pi, int x, int y) const
193 {
194         FontInfo font;
195         font.setColor(ColorName());
196
197         frontend::FontMetrics const & fm = theFontMetrics(pi.base.font);
198         int const wid = fm.width('n');
199         int const asc = fm.maxAscent();
200
201         int xp[3];
202         int yp[3];
203
204         yp[0] = int(y - 0.875 * asc * 0.75);
205         yp[1] = int(y - 0.500 * asc * 0.75);
206         yp[2] = int(y - 0.125 * asc * 0.75);
207
208         if (pi.ltr_pos) {
209                 xp[0] = int(x + wid * 0.375);
210                 xp[1] = int(x);
211                 xp[2] = int(x + wid * 0.375);
212         } else {
213                 xp[0] = int(x + wid * 0.625);
214                 xp[1] = int(x + wid);
215                 xp[2] = int(x + wid * 0.625);
216         }
217
218         pi.pain.lines(xp, yp, 3, ColorName());
219
220         yp[0] = int(y - 0.500 * asc * 0.75);
221         yp[1] = int(y - 0.500 * asc * 0.75);
222         yp[2] = int(y - asc * 0.75);
223
224         if (pi.ltr_pos) {
225                 xp[0] = int(x);
226                 xp[1] = int(x + wid);
227                 xp[2] = int(x + wid);
228         } else {
229                 xp[0] = int(x + wid);
230                 xp[1] = int(x);
231                 xp[2] = int(x);
232         }
233
234         pi.pain.lines(xp, yp, 3, ColorName());
235
236         if (params_.kind == InsetNewlineParams::LINEBREAK) {
237
238                 yp[2] = int(y - 0.500 * asc * 0.75);
239
240                 if (pi.ltr_pos) {
241                         xp[0] = int(x + 1.3 * wid);
242                         xp[1] = int(x + 2 * wid);
243                         xp[2] = int(x + 2 * wid);
244                 } else {
245                         xp[0] = int(x - 0.3 * wid);
246                         xp[1] = int(x - wid);
247                         xp[2] = int(x - wid);
248                 }
249                 pi.pain.lines(xp, yp, 3, ColorName());
250
251                 yp[0] = int(y - 0.875 * asc * 0.75);
252                 yp[1] = int(y - 0.500 * asc * 0.75);
253                 yp[2] = int(y - 0.125 * asc * 0.75);
254
255                 if (pi.ltr_pos) {
256                         xp[0] = int(x + 2 * wid * 0.813);
257                         xp[1] = int(x + 2 * wid);
258                         xp[2] = int(x + 2 * wid * 0.813);
259                 } else {
260                         xp[0] = int(x - wid * 0.625);
261                         xp[1] = int(x - wid);
262                         xp[2] = int(x - wid * 0.625);
263                 }
264                 pi.pain.lines(xp, yp, 3, ColorName());
265         }
266 }
267
268
269 string InsetNewline::contextMenuName() const
270 {
271         return "context-newline";
272 }
273
274
275 void InsetNewline::string2params(string const & in, InsetNewlineParams & params)
276 {
277         params = InsetNewlineParams();
278         if (in.empty())
279                 return;
280         istringstream data(in);
281         Lexer lex;
282         lex.setStream(data);
283         lex.setContext("InsetNewline::string2params");
284         lex >> "newline";
285         params.read(lex);
286 }
287
288
289 string InsetNewline::params2string(InsetNewlineParams const & params)
290 {
291         ostringstream data;
292         data << "newline" << ' ';
293         params.write(data);
294         return data.str();
295 }
296
297
298 } // namespace lyx