]> git.lyx.org Git - features.git/blob - src/insets/InsetNewline.cpp
Improved character count statistics for letter based insets (e.g. the LyX logo).
[features.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                 if (!xs.pending_tags_empty()) {
180                         xs << xml::EndTag("para");
181                         xs << xml::StartTag("para");
182                 }
183                 else {
184                         xs << xml::CR() << xml::CompTag("br") << xml::CR();
185                 }
186         }
187         else {
188                 xs << xml::CR() << xml::CompTag("br") << xml::CR();
189         }
190 }
191
192
193 docstring InsetNewline::xhtml(XMLStream & xs, OutputParams const &) const
194 {
195         xs << xml::CR() << xml::CompTag("br") << xml::CR();
196         return docstring();
197 }
198
199
200 void InsetNewline::draw(PainterInfo & pi, int x, int y) const
201 {
202         FontInfo font;
203         font.setColor(ColorName());
204
205         frontend::FontMetrics const & fm = theFontMetrics(pi.base.font);
206         int const wid = fm.width('n');
207         int const asc = fm.maxAscent();
208
209         int xp[3];
210         int yp[3];
211
212         yp[0] = int(y - 0.875 * asc * 0.75);
213         yp[1] = int(y - 0.500 * asc * 0.75);
214         yp[2] = int(y - 0.125 * asc * 0.75);
215
216         if (pi.ltr_pos) {
217                 xp[0] = int(x + wid * 0.375);
218                 xp[1] = int(x);
219                 xp[2] = int(x + wid * 0.375);
220         } else {
221                 xp[0] = int(x + wid * 0.625);
222                 xp[1] = int(x + wid);
223                 xp[2] = int(x + wid * 0.625);
224         }
225
226         pi.pain.lines(xp, yp, 3, ColorName());
227
228         yp[0] = int(y - 0.500 * asc * 0.75);
229         yp[1] = int(y - 0.500 * asc * 0.75);
230         yp[2] = int(y - asc * 0.75);
231
232         if (pi.ltr_pos) {
233                 xp[0] = int(x);
234                 xp[1] = int(x + wid);
235                 xp[2] = int(x + wid);
236         } else {
237                 xp[0] = int(x + wid);
238                 xp[1] = int(x);
239                 xp[2] = int(x);
240         }
241
242         pi.pain.lines(xp, yp, 3, ColorName());
243
244         if (params_.kind == InsetNewlineParams::LINEBREAK) {
245
246                 yp[2] = int(y - 0.500 * asc * 0.75);
247
248                 if (pi.ltr_pos) {
249                         xp[0] = int(x + 1.3 * wid);
250                         xp[1] = int(x + 2 * wid);
251                         xp[2] = int(x + 2 * wid);
252                 } else {
253                         xp[0] = int(x - 0.3 * wid);
254                         xp[1] = int(x - wid);
255                         xp[2] = int(x - wid);
256                 }
257                 pi.pain.lines(xp, yp, 3, ColorName());
258
259                 yp[0] = int(y - 0.875 * asc * 0.75);
260                 yp[1] = int(y - 0.500 * asc * 0.75);
261                 yp[2] = int(y - 0.125 * asc * 0.75);
262
263                 if (pi.ltr_pos) {
264                         xp[0] = int(x + 2 * wid * 0.813);
265                         xp[1] = int(x + 2 * wid);
266                         xp[2] = int(x + 2 * wid * 0.813);
267                 } else {
268                         xp[0] = int(x - wid * 0.625);
269                         xp[1] = int(x - wid);
270                         xp[2] = int(x - wid * 0.625);
271                 }
272                 pi.pain.lines(xp, yp, 3, ColorName());
273         }
274 }
275
276
277 string InsetNewline::contextMenuName() const
278 {
279         return "context-newline";
280 }
281
282
283 void InsetNewline::string2params(string const & in, InsetNewlineParams & params)
284 {
285         params = InsetNewlineParams();
286         if (in.empty())
287                 return;
288         istringstream data(in);
289         Lexer lex;
290         lex.setStream(data);
291         lex.setContext("InsetNewline::string2params");
292         lex >> "newline";
293         params.read(lex);
294 }
295
296
297 string InsetNewline::params2string(InsetNewlineParams const & params)
298 {
299         ostringstream data;
300         data << "newline" << ' ';
301         params.write(data);
302         return data.str();
303 }
304
305
306 } // namespace lyx