]> git.lyx.org Git - lyx.git/blob - src/insets/InsetSpace.cpp
Make all unbreakable spaces of the same Color_latex color
[lyx.git] / src / insets / InsetSpace.cpp
1 /**
2  * \file InsetSpace.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup Nielsen
7  * \author Jean-Marc Lasgouttes
8  * \author Lars Gullik Bjønnes
9  * \author Jürgen Spitzmüller
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "InsetSpace.h"
17
18 #include "BufferView.h"
19 #include "Cursor.h"
20 #include "Dimension.h"
21 #include "FuncRequest.h"
22 #include "FuncStatus.h"
23 #include "Language.h"
24 #include "LaTeXFeatures.h"
25 #include "Length.h"
26 #include "Lexer.h"
27 #include "MetricsInfo.h"
28 #include "OutputParams.h"
29 #include "output_xhtml.h"
30 #include "texstream.h"
31
32 #include "support/debug.h"
33 #include "support/docstream.h"
34 #include "support/gettext.h"
35 #include "support/lassert.h"
36 #include "support/lstrings.h"
37
38 #include "frontends/Application.h"
39 #include "frontends/FontMetrics.h"
40 #include "frontends/Painter.h"
41
42 using namespace std;
43
44 namespace lyx {
45
46
47 InsetSpace::InsetSpace(InsetSpaceParams const & params)
48         : Inset(0), params_(params)
49 {}
50
51
52 InsetSpaceParams::Kind InsetSpace::kind() const
53 {
54         return params_.kind;
55 }
56
57
58 GlueLength InsetSpace::length() const
59 {
60         return params_.length;
61 }
62
63
64 docstring InsetSpace::toolTip(BufferView const &, int, int) const
65 {
66         docstring message;
67         switch (params_.kind) {
68         case InsetSpaceParams::NORMAL:
69                 message = _("Interword Space");
70                 break;
71         case InsetSpaceParams::PROTECTED:
72                 message = _("Protected Space");
73                 break;
74         case InsetSpaceParams::VISIBLE:
75                 message = _("Visible Space");
76                 break;
77         case InsetSpaceParams::THIN:
78                 message = _("Thin Space");
79                 break;
80         case InsetSpaceParams::MEDIUM:
81                 message = _("Medium Space");
82                 break;
83         case InsetSpaceParams::THICK:
84                 message = _("Thick Space");
85                 break;
86         case InsetSpaceParams::QUAD:
87                 message = _("Quad Space");
88                 break;
89         case InsetSpaceParams::QQUAD:
90                 message = _("Double Quad Space");
91                 break;
92         case InsetSpaceParams::ENSPACE:
93                 message = _("Enspace");
94                 break;
95         case InsetSpaceParams::ENSKIP:
96                 message = _("Enskip");
97                 break;
98         case InsetSpaceParams::NEGTHIN:
99                 message = _("Negative Thin Space");
100                 break;
101         case InsetSpaceParams::NEGMEDIUM:
102                 message = _("Negative Medium Space");
103                 break;
104         case InsetSpaceParams::NEGTHICK:
105                 message = _("Negative Thick Space");
106                 break;
107         case InsetSpaceParams::HFILL:
108                 message = _("Horizontal Fill");
109                 break;
110         case InsetSpaceParams::HFILL_PROTECTED:
111                 message = _("Protected Horizontal Fill");
112                 break;
113         case InsetSpaceParams::DOTFILL:
114                 message = _("Horizontal Fill (Dots)");
115                 break;
116         case InsetSpaceParams::HRULEFILL:
117                 message = _("Horizontal Fill (Rule)");
118                 break;
119         case InsetSpaceParams::LEFTARROWFILL:
120                 message = _("Horizontal Fill (Left Arrow)");
121                 break;
122         case InsetSpaceParams::RIGHTARROWFILL:
123                 message = _("Horizontal Fill (Right Arrow)");
124                 break;
125         case InsetSpaceParams::UPBRACEFILL:
126                 message = _("Horizontal Fill (Up Brace)");
127                 break;
128         case InsetSpaceParams::DOWNBRACEFILL:
129                 message = _("Horizontal Fill (Down Brace)");
130                 break;
131         case InsetSpaceParams::CUSTOM:
132                 // FIXME unicode
133                 message = support::bformat(_("Horizontal Space (%1$s)"),
134                                 from_ascii(params_.length.asString()));
135                 break;
136         case InsetSpaceParams::CUSTOM_PROTECTED:
137                 // FIXME unicode
138                 message = support::bformat(_("Protected Horizontal Space (%1$s)"),
139                                 from_ascii(params_.length.asString()));
140                 break;
141         }
142         return message;
143 }
144
145
146 void InsetSpace::doDispatch(Cursor & cur, FuncRequest & cmd)
147 {
148         switch (cmd.action()) {
149
150         case LFUN_INSET_MODIFY: {
151                 cur.recordUndo();
152                 string arg = to_utf8(cmd.argument());
153                 if (arg == "space \\hspace{}")
154                         arg += params_.length.len().empty()
155                                 ? " \\length 1" + string(stringFromUnit(Length::defaultUnit()))
156                                 : " \\length " + params_.length.asString();
157                 string2params(arg, params_);
158                 break;
159         }
160
161         case LFUN_INSET_DIALOG_UPDATE:
162                 cur.bv().updateDialog("space", params2string(params()));
163                 break;
164
165         default:
166                 Inset::doDispatch(cur, cmd);
167                 break;
168         }
169 }
170
171
172 bool InsetSpace::getStatus(Cursor & cur, FuncRequest const & cmd,
173         FuncStatus & status) const
174 {
175         switch (cmd.action()) {
176         // we handle these
177         case LFUN_INSET_MODIFY:
178                 if (cmd.getArg(0) == "space") {
179                         InsetSpaceParams params;
180                         string2params(to_utf8(cmd.argument()), params);
181                         status.setOnOff(params_.kind == params.kind);
182                         status.setEnabled(true);
183                 } else
184                         status.setEnabled(false);
185                 return true;
186
187         case LFUN_INSET_DIALOG_UPDATE:
188                 status.setEnabled(true);
189                 return true;
190         default:
191                 return Inset::getStatus(cur, cmd, status);
192         }
193 }
194
195
196 namespace {
197 int const arrow_size = 8;
198 }
199
200
201 void InsetSpace::metrics(MetricsInfo & mi, Dimension & dim) const
202 {
203         if (isHfill()) {
204                 // The width for hfills is calculated externally in
205                 // TextMetrics::setRowAlignment. The value of 5 is the
206                 // minimal value when the hfill is not active.
207                 dim = Dimension(5, 10, 10);
208                 return;
209         }
210
211         frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
212         dim.asc = fm.maxAscent();
213         dim.des = fm.maxDescent();
214         int const em = fm.em();
215
216         switch (params_.kind) {
217                 case InsetSpaceParams::THIN:
218                 case InsetSpaceParams::NEGTHIN:
219                         dim.wid = em / 6;
220                         break;
221                 case InsetSpaceParams::MEDIUM:
222                 case InsetSpaceParams::NEGMEDIUM:
223                         dim.wid = em / 4;
224                         break;
225                 case InsetSpaceParams::THICK:
226                 case InsetSpaceParams::NEGTHICK:
227                         dim.wid = em / 2;
228                         break;
229                 case InsetSpaceParams::PROTECTED:
230                 case InsetSpaceParams::VISIBLE:
231                 case InsetSpaceParams::NORMAL:
232                         dim.wid = fm.width(char_type(' '));
233                         break;
234                 case InsetSpaceParams::QUAD:
235                         dim.wid = em;
236                         break;
237                 case InsetSpaceParams::QQUAD:
238                         dim.wid = 2 * em;
239                         break;
240                 case InsetSpaceParams::ENSPACE:
241                 case InsetSpaceParams::ENSKIP:
242                         dim.wid = int(0.5 * em);
243                         break;
244                 case InsetSpaceParams::CUSTOM:
245                 case InsetSpaceParams::CUSTOM_PROTECTED: {
246                         int const w = mi.base.inPixels(params_.length.len());
247                         int const minw = (w < 0) ? 3 * arrow_size : 4;
248                         dim.wid = max(minw, abs(w));
249                         break;
250                 }
251                 case InsetSpaceParams::HFILL:
252                 case InsetSpaceParams::HFILL_PROTECTED:
253                 case InsetSpaceParams::DOTFILL:
254                 case InsetSpaceParams::HRULEFILL:
255                 case InsetSpaceParams::LEFTARROWFILL:
256                 case InsetSpaceParams::RIGHTARROWFILL:
257                 case InsetSpaceParams::UPBRACEFILL:
258                 case InsetSpaceParams::DOWNBRACEFILL:
259                         // shut up compiler
260                         break;
261         }
262 }
263
264
265 void InsetSpace::draw(PainterInfo & pi, int x, int y) const
266 {
267         Dimension const dim = dimension(*pi.base.bv);
268
269         if (isHfill() || params_.length.len().value() < 0) {
270                 int const asc = theFontMetrics(pi.base.font).ascent('M');
271                 int const desc = theFontMetrics(pi.base.font).descent('M');
272                 // Pixel height divisible by 2 for prettier fill graphics:
273                 int const oddheight = (asc ^ desc) & 1;
274                 int const x0 = x + 1;
275                 int const x1 = x + dim.wid - 2;
276                 int const y0 = y + desc - 1;
277                 int const y1 = y - asc + oddheight - 1;
278                 int const y2 = (y0 + y1) / 2;
279                 int xoffset = (y0 - y1) / 2;
280
281                 // Two tests for very narrow insets
282                 if (xoffset > x1 - x0
283                      && (params_.kind == InsetSpaceParams::LEFTARROWFILL
284                          || params_.kind == InsetSpaceParams::RIGHTARROWFILL))
285                                 xoffset = x1 - x0;
286                 if (xoffset * 6 > (x1 - x0)
287                      && (params_.kind == InsetSpaceParams::UPBRACEFILL
288                          || params_.kind == InsetSpaceParams::DOWNBRACEFILL))
289                                 xoffset = (x1 - x0) / 6;
290
291                 int const x2 = x0 + xoffset;
292                 int const x3 = x1 - xoffset;
293                 int const xm = (x0 + x1) / 2;
294                 int const xml = xm - xoffset;
295                 int const xmr = xm + xoffset;
296
297                 if (params_.kind == InsetSpaceParams::HFILL) {
298                         pi.pain.line(x0, y1, x0, y0, Color_added_space);
299                         pi.pain.line(x0, y2, x1, y2, Color_added_space,
300                                 frontend::Painter::line_onoffdash);
301                         pi.pain.line(x1, y1, x1, y0, Color_added_space);
302                 } else if (params_.kind == InsetSpaceParams::HFILL_PROTECTED) {
303                         pi.pain.line(x0, y1, x0, y0, Color_latex);
304                         pi.pain.line(x0, y2, x1, y2, Color_latex,
305                                 frontend::Painter::line_onoffdash);
306                         pi.pain.line(x1, y1, x1, y0, Color_latex);
307                 } else if (params_.kind == InsetSpaceParams::DOTFILL) {
308                         pi.pain.line(x0, y1, x0, y0, Color_special);
309                         pi.pain.line(x0, y0, x1, y0, Color_special,
310                                 frontend::Painter::line_onoffdash);
311                         pi.pain.line(x1, y1, x1, y0, Color_special);
312                 } else if (params_.kind == InsetSpaceParams::HRULEFILL) {
313                         pi.pain.line(x0, y1, x0, y0, Color_special);
314                         pi.pain.line(x0, y0, x1, y0, Color_special);
315                         pi.pain.line(x1, y1, x1, y0, Color_special);
316                 } else if (params_.kind == InsetSpaceParams::LEFTARROWFILL) {
317                         pi.pain.line(x2, y1 + 1 , x0 + 1, y2, Color_special);
318                         pi.pain.line(x0 + 1, y2 + 1 , x2, y0, Color_special);
319                         pi.pain.line(x0, y2 , x1, y2, Color_special);
320                 } else if (params_.kind == InsetSpaceParams::RIGHTARROWFILL) {
321                         pi.pain.line(x3 + 1, y1 + 1 , x1, y2, Color_special);
322                         pi.pain.line(x1, y2 + 1 , x3 + 1, y0, Color_special);
323                         pi.pain.line(x0, y2 , x1, y2, Color_special);
324                 } else if (params_.kind == InsetSpaceParams::UPBRACEFILL) {
325                         pi.pain.line(x0 + 1, y1 + 1 , x2, y2, Color_special);
326                         pi.pain.line(x2, y2 , xml, y2, Color_special);
327                         pi.pain.line(xml + 1, y2 + 1 , xm, y0, Color_special);
328                         pi.pain.line(xm + 1, y0 , xmr, y2 + 1, Color_special);
329                         pi.pain.line(xmr, y2 , x3, y2, Color_special);
330                         pi.pain.line(x3 + 1, y2 , x1, y1 + 1, Color_special);
331                 } else if (params_.kind == InsetSpaceParams::DOWNBRACEFILL) {
332                         pi.pain.line(x0 + 1, y0 , x2, y2 + 1, Color_special);
333                         pi.pain.line(x2, y2 , xml, y2, Color_special);
334                         pi.pain.line(xml + 1, y2 , xm, y1 + 1, Color_special);
335                         pi.pain.line(xm + 1, y1 + 1 , xmr, y2, Color_special);
336                         pi.pain.line(xmr, y2 , x3, y2, Color_special);
337                         pi.pain.line(x3 + 1, y2 + 1 , x1, y0, Color_special);
338                 } else if (params_.kind == InsetSpaceParams::CUSTOM) {
339                         pi.pain.line(x0, y1 + 1 , x2 + 1, y2, Color_special);
340                         pi.pain.line(x2 + 1, y2 + 1 , x0, y0, Color_special);
341                         pi.pain.line(x1 + 1, y1 + 1 , x3, y2, Color_special);
342                         pi.pain.line(x3, y2 + 1 , x1 + 1, y0, Color_special);
343                         pi.pain.line(x2, y2 , x3, y2, Color_special);
344                 } else if (params_.kind == InsetSpaceParams::CUSTOM_PROTECTED) {
345                         pi.pain.line(x0, y1 + 1 , x2 + 1, y2, Color_latex);
346                         pi.pain.line(x2 + 1, y2 + 1 , x0, y0, Color_latex);
347                         pi.pain.line(x1 + 1, y1 + 1 , x3, y2, Color_latex);
348                         pi.pain.line(x3, y2 + 1 , x1 + 1, y0, Color_latex);
349                         pi.pain.line(x2, y2 , x3, y2, Color_latex);
350                 }
351                 return;
352         }
353
354         int const w = dim.wid;
355         int const h = theFontMetrics(pi.base.font).xHeight();
356         int xp[4], yp[4];
357
358         xp[0] = x + 1;
359         yp[0] = y - max(h / 4, 1);
360         if (params_.kind == InsetSpaceParams::NORMAL ||
361             params_.kind == InsetSpaceParams::PROTECTED ||
362             params_.kind == InsetSpaceParams::VISIBLE) {
363                 xp[1] = x + 1;     yp[1] = y;
364                 xp[2] = x + w - 2; yp[2] = y;
365         } else {
366                 xp[1] = x + 1;     yp[1] = y + max(h / 4, 1);
367                 xp[2] = x + w - 2; yp[2] = y + max(h / 4, 1);
368         }
369         xp[3] = x + w - 2;
370         yp[3] = y - max(h / 4, 1);
371
372         Color col = Color_special;
373         if (params_.kind == InsetSpaceParams::PROTECTED ||
374             params_.kind == InsetSpaceParams::ENSPACE ||
375             params_.kind == InsetSpaceParams::THIN ||
376             params_.kind == InsetSpaceParams::NEGTHIN ||
377             params_.kind == InsetSpaceParams::MEDIUM ||
378             params_.kind == InsetSpaceParams::NEGMEDIUM ||
379             params_.kind == InsetSpaceParams::THICK ||
380             params_.kind == InsetSpaceParams::NEGTHICK ||
381             params_.kind == InsetSpaceParams::CUSTOM_PROTECTED)
382                 col = Color_latex;
383         else if (params_.kind == InsetSpaceParams::VISIBLE)
384                 col =  Color_foreground;
385
386         pi.pain.lines(xp, yp, 4, col);
387 }
388
389
390 void InsetSpaceParams::write(ostream & os) const
391 {
392         switch (kind) {
393         case InsetSpaceParams::NORMAL:
394                 os << "\\space{}";
395                 break;
396         case InsetSpaceParams::PROTECTED:
397                 os <<  "~";
398                 break;
399         case InsetSpaceParams::VISIBLE:
400                 os <<  "\\textvisiblespace{}";
401                 break;
402         case InsetSpaceParams::THIN:
403                 os <<  "\\thinspace{}";
404                 break;
405         case InsetSpaceParams::MEDIUM:
406                 os <<  "\\medspace{}";
407                 break;
408         case InsetSpaceParams::THICK:
409                 os <<  "\\thickspace{}";
410                 break;
411         case InsetSpaceParams::QUAD:
412                 os <<  "\\quad{}";
413                 break;
414         case InsetSpaceParams::QQUAD:
415                 os <<  "\\qquad{}";
416                 break;
417         case InsetSpaceParams::ENSPACE:
418                 os <<  "\\enspace{}";
419                 break;
420         case InsetSpaceParams::ENSKIP:
421                 os <<  "\\enskip{}";
422                 break;
423         case InsetSpaceParams::NEGTHIN:
424                 os <<  "\\negthinspace{}";
425                 break;
426         case InsetSpaceParams::NEGMEDIUM:
427                 os <<  "\\negmedspace{}";
428                 break;
429         case InsetSpaceParams::NEGTHICK:
430                 os <<  "\\negthickspace{}";
431                 break;
432         case InsetSpaceParams::HFILL:
433                 os <<  "\\hfill{}";
434                 break;
435         case InsetSpaceParams::HFILL_PROTECTED:
436                 os <<  "\\hspace*{\\fill}";
437                 break;
438         case InsetSpaceParams::DOTFILL:
439                 os <<  "\\dotfill{}";
440                 break;
441         case InsetSpaceParams::HRULEFILL:
442                 os <<  "\\hrulefill{}";
443                 break;
444         case InsetSpaceParams::LEFTARROWFILL:
445                 os <<  "\\leftarrowfill{}";
446                 break;
447         case InsetSpaceParams::RIGHTARROWFILL:
448                 os <<  "\\rightarrowfill{}";
449                 break;
450         case InsetSpaceParams::UPBRACEFILL:
451                 os <<  "\\upbracefill{}";
452                 break;
453         case InsetSpaceParams::DOWNBRACEFILL:
454                 os <<  "\\downbracefill{}";
455                 break;
456         case InsetSpaceParams::CUSTOM:
457                 os <<  "\\hspace{}";
458                 break;
459         case InsetSpaceParams::CUSTOM_PROTECTED:
460                 os <<  "\\hspace*{}";
461                 break;
462         }
463
464         if (!length.len().empty())
465                 os << "\n\\length " << length.asString();
466 }
467
468
469 void InsetSpaceParams::read(Lexer & lex)
470 {
471         lex.setContext("InsetSpaceParams::read");
472         string command;
473         lex >> command;
474
475         // The tests for math might be disabled after a file format change
476         if (command == "\\space{}")
477                 kind = InsetSpaceParams::NORMAL;
478         else if (command == "~")
479                 kind = InsetSpaceParams::PROTECTED;
480         else if (command == "\\textvisiblespace{}")
481                 kind = InsetSpaceParams::VISIBLE;
482         else if (command == "\\thinspace{}")
483                 kind = InsetSpaceParams::THIN;
484         else if (math && command == "\\medspace{}")
485                 kind = InsetSpaceParams::MEDIUM;
486         else if (math && command == "\\thickspace{}")
487                 kind = InsetSpaceParams::THICK;
488         else if (command == "\\quad{}")
489                 kind = InsetSpaceParams::QUAD;
490         else if (command == "\\qquad{}")
491                 kind = InsetSpaceParams::QQUAD;
492         else if (command == "\\enspace{}")
493                 kind = InsetSpaceParams::ENSPACE;
494         else if (command == "\\enskip{}")
495                 kind = InsetSpaceParams::ENSKIP;
496         else if (command == "\\negthinspace{}")
497                 kind = InsetSpaceParams::NEGTHIN;
498         else if (command == "\\negmedspace{}")
499                 kind = InsetSpaceParams::NEGMEDIUM;
500         else if (command == "\\negthickspace{}")
501                 kind = InsetSpaceParams::NEGTHICK;
502         else if (command == "\\hfill{}")
503                 kind = InsetSpaceParams::HFILL;
504         else if (command == "\\hspace*{\\fill}")
505                 kind = InsetSpaceParams::HFILL_PROTECTED;
506         else if (command == "\\dotfill{}")
507                 kind = InsetSpaceParams::DOTFILL;
508         else if (command == "\\hrulefill{}")
509                 kind = InsetSpaceParams::HRULEFILL;
510         else if (command == "\\hspace{}")
511                 kind = InsetSpaceParams::CUSTOM;
512         else if (command == "\\leftarrowfill{}")
513                 kind = InsetSpaceParams::LEFTARROWFILL;
514         else if (command == "\\rightarrowfill{}")
515                 kind = InsetSpaceParams::RIGHTARROWFILL;
516         else if (command == "\\upbracefill{}")
517                 kind = InsetSpaceParams::UPBRACEFILL;
518         else if (command == "\\downbracefill{}")
519                 kind = InsetSpaceParams::DOWNBRACEFILL;
520         else if (command == "\\hspace*{}")
521                 kind = InsetSpaceParams::CUSTOM_PROTECTED;
522         else
523                 lex.printError("InsetSpace: Unknown kind: `$$Token'");
524
525         if (lex.checkFor("\\length"))
526                 lex >> length;
527 }
528
529
530 void InsetSpace::write(ostream & os) const
531 {
532         os << "space ";
533         params_.write(os);
534 }
535
536
537 void InsetSpace::read(Lexer & lex)
538 {
539         params_.read(lex);
540         lex >> "\\end_inset";
541 }
542
543
544 void InsetSpace::latex(otexstream & os, OutputParams const & runparams) const
545 {
546         switch (params_.kind) {
547         case InsetSpaceParams::NORMAL:
548                 os << (runparams.free_spacing ? " " : "\\ ");
549                 break;
550         case InsetSpaceParams::PROTECTED:
551                 if (runparams.local_font &&
552                     runparams.local_font->language()->lang() == "polutonikogreek")
553                         // in babel's polutonikogreek, ~ is active
554                         os << (runparams.free_spacing ? " " : "\\nobreakspace{}");
555                 else
556                         os << (runparams.free_spacing ? ' ' : '~');
557                 break;
558         case InsetSpaceParams::VISIBLE:
559                 os << (runparams.free_spacing ? " " : "\\textvisiblespace{}");
560                 break;
561         case InsetSpaceParams::THIN:
562                 os << (runparams.free_spacing ? " " : "\\,");
563                 break;
564         case InsetSpaceParams::MEDIUM:
565                 os << (runparams.free_spacing ? " " : "\\:");
566                 break;
567         case InsetSpaceParams::THICK:
568                 os << (runparams.free_spacing ? " " : "\\;");
569                 break;
570         case InsetSpaceParams::QUAD:
571                 os << (runparams.free_spacing ? " " : "\\quad{}");
572                 break;
573         case InsetSpaceParams::QQUAD:
574                 os << (runparams.free_spacing ? " " : "\\qquad{}");
575                 break;
576         case InsetSpaceParams::ENSPACE:
577                 os << (runparams.free_spacing ? " " : "\\enspace{}");
578                 break;
579         case InsetSpaceParams::ENSKIP:
580                 os << (runparams.free_spacing ? " " : "\\enskip{}");
581                 break;
582         case InsetSpaceParams::NEGTHIN:
583                 os << (runparams.free_spacing ? " " : "\\negthinspace{}");
584                 break;
585         case InsetSpaceParams::NEGMEDIUM:
586                 os << (runparams.free_spacing ? " " : "\\negmedspace{}");
587                 break;
588         case InsetSpaceParams::NEGTHICK:
589                 os << (runparams.free_spacing ? " " : "\\negthickspace{}");
590                 break;
591         case InsetSpaceParams::HFILL:
592                 os << (runparams.free_spacing ? " " : "\\hfill{}");
593                 break;
594         case InsetSpaceParams::HFILL_PROTECTED:
595                 os << (runparams.free_spacing ? " " : "\\hspace*{\\fill}");
596                 break;
597         case InsetSpaceParams::DOTFILL:
598                 os << (runparams.free_spacing ? " " : "\\dotfill{}");
599                 break;
600         case InsetSpaceParams::HRULEFILL:
601                 os << (runparams.free_spacing ? " " : "\\hrulefill{}");
602                 break;
603         case InsetSpaceParams::LEFTARROWFILL:
604                 os << (runparams.free_spacing ? " " : "\\leftarrowfill{}");
605                 break;
606         case InsetSpaceParams::RIGHTARROWFILL:
607                 os << (runparams.free_spacing ? " " : "\\rightarrowfill{}");
608                 break;
609         case InsetSpaceParams::UPBRACEFILL:
610                 os << (runparams.free_spacing ? " " : "\\upbracefill{}");
611                 break;
612         case InsetSpaceParams::DOWNBRACEFILL:
613                 os << (runparams.free_spacing ? " " : "\\downbracefill{}");
614                 break;
615         case InsetSpaceParams::CUSTOM:
616                 if (runparams.free_spacing)
617                         os << " ";
618                 else
619                         os << "\\hspace{" << from_ascii(params_.length.asLatexString()) << "}";
620                 break;
621         case InsetSpaceParams::CUSTOM_PROTECTED:
622                 if (runparams.free_spacing)
623                         os << " ";
624                 else
625                         os << "\\hspace*{" << from_ascii(params_.length.asLatexString()) << "}";
626                 break;
627         }
628 }
629
630
631 int InsetSpace::plaintext(odocstringstream & os,
632         OutputParams const &, size_t) const
633 {
634         switch (params_.kind) {
635         case InsetSpaceParams::HFILL:
636         case InsetSpaceParams::HFILL_PROTECTED:
637                 os << "     ";
638                 return 5;
639         case InsetSpaceParams::DOTFILL:
640                 os << ".....";
641                 return 5;
642         case InsetSpaceParams::HRULEFILL:
643                 os << "_____";
644                 return 5;
645         case InsetSpaceParams::LEFTARROWFILL:
646                 os << "<----";
647                 return 5;
648         case InsetSpaceParams::RIGHTARROWFILL:
649                 os << "---->";
650                 return 5;
651         case InsetSpaceParams::UPBRACEFILL:
652                 os << "\\-v-/";
653                 return 5;
654         case InsetSpaceParams::DOWNBRACEFILL:
655                 os << "/-^-\\";
656                 return 5;
657         case InsetSpaceParams::VISIBLE:
658                 os.put(0x2423);
659                 return 1;
660         case InsetSpaceParams::ENSKIP:
661                 os.put(0x2002);
662                 return 1;
663         case InsetSpaceParams::ENSPACE:
664                 os.put(0x2060); // WORD JOINER, makes the breakable en space unbreakable
665                 os.put(0x2002);
666                 os.put(0x2060); // WORD JOINER, makes the breakable en space unbreakable
667                 return 3;
668         case InsetSpaceParams::QUAD:
669                 os.put(0x2003);
670                 return 1;
671         case InsetSpaceParams::QQUAD:
672                 os.put(0x2003);
673                 os.put(0x2003);
674                 return 2;
675         case InsetSpaceParams::THIN:
676                 os.put(0x202f);
677                 return 1;
678         case InsetSpaceParams::MEDIUM:
679                 os.put(0x200b); // ZERO WIDTH SPACE, makes the unbreakable medium space breakable
680                 os.put(0x2005);
681                 os.put(0x200b); // ZERO WIDTH SPACE, makes the unbreakable medium space breakable
682                 return 1;
683         case InsetSpaceParams::THICK:
684                 os.put(0x200b); // ZERO WIDTH SPACE, makes the unbreakable thick space breakable
685                 os.put(0x2004);
686                 os.put(0x200b); // ZERO WIDTH SPACE, makes the unbreakable thick space breakable
687                 return 1;
688         case InsetSpaceParams::PROTECTED:
689         case InsetSpaceParams::CUSTOM_PROTECTED:
690                 os.put(0x00a0);
691                 return 1;
692         case InsetSpaceParams::NEGTHIN:
693         case InsetSpaceParams::NEGMEDIUM:
694         case InsetSpaceParams::NEGTHICK:
695                 return 0;
696         default:
697                 os << ' ';
698                 return 1;
699         }
700 }
701
702
703 int InsetSpace::docbook(odocstream & os, OutputParams const &) const
704 {
705         switch (params_.kind) {
706         case InsetSpaceParams::NORMAL:
707                 os << " ";
708                 break;
709         case InsetSpaceParams::QUAD:
710                 os << "&emsp;";
711                 break;
712         case InsetSpaceParams::QQUAD:
713                 os << "&emsp;&emsp;";
714                 break;
715         case InsetSpaceParams::ENSKIP:
716                 os << "&ensp;";
717                 break;
718         case InsetSpaceParams::PROTECTED:
719                 os << "&nbsp;";
720                 break;
721         case InsetSpaceParams::VISIBLE:
722                 os << "&#x2423;";
723                 break;
724         case InsetSpaceParams::ENSPACE:
725                 os << "&#x2060;&ensp;&#x2060;";
726                 break;
727         case InsetSpaceParams::THIN:
728                 os << "&thinsp;";
729                 break;
730         case InsetSpaceParams::MEDIUM:
731                 os << "&emsp14;";
732                 break;
733         case InsetSpaceParams::THICK:
734                 os << "&emsp13;";
735                 break;
736         case InsetSpaceParams::NEGTHIN:
737         case InsetSpaceParams::NEGMEDIUM:
738         case InsetSpaceParams::NEGTHICK:
739                 // FIXME
740                 os << "&nbsp;";
741                 break;
742         case InsetSpaceParams::HFILL:
743         case InsetSpaceParams::HFILL_PROTECTED:
744                 os << '\n';
745                 break;
746         case InsetSpaceParams::DOTFILL:
747                 // FIXME
748                 os << '\n';
749                 break;
750         case InsetSpaceParams::HRULEFILL:
751                 // FIXME
752                 os << '\n';
753                 break;
754         case InsetSpaceParams::LEFTARROWFILL:
755         case InsetSpaceParams::RIGHTARROWFILL:
756         case InsetSpaceParams::UPBRACEFILL:
757         case InsetSpaceParams::DOWNBRACEFILL:
758         case InsetSpaceParams::CUSTOM:
759         case InsetSpaceParams::CUSTOM_PROTECTED:
760                 // FIXME
761                 os << '\n';
762                 break;
763         }
764         return 0;
765 }
766
767
768 docstring InsetSpace::xhtml(XMLStream & xs, OutputParams const &) const
769 {
770         string output;
771         switch (params_.kind) {
772         case InsetSpaceParams::NORMAL:
773                 output = " ";
774                 break;
775         case InsetSpaceParams::ENSKIP:
776                 output ="&ensp;";
777                 break;
778         case InsetSpaceParams::ENSPACE:
779                 output ="&#x2060;&ensp;&#x2060;";
780                 break;
781         case InsetSpaceParams::QQUAD:
782                 output ="&emsp;&emsp;";
783                 break;
784         case InsetSpaceParams::THICK:
785                 output ="&#x2004;";
786                 break;
787         case InsetSpaceParams::QUAD:
788                 output ="&emsp;";
789                 break;
790         case InsetSpaceParams::MEDIUM:
791                 output ="&#x2005;";
792                 break;
793         case InsetSpaceParams::THIN:
794                 output ="&thinsp;";
795                 break;
796         case InsetSpaceParams::PROTECTED:
797         case InsetSpaceParams::NEGTHIN:
798         case InsetSpaceParams::NEGMEDIUM:
799         case InsetSpaceParams::NEGTHICK:
800                 output ="&nbsp;";
801                 break;
802         // no XHTML entity, only unicode code for space character exists
803         case InsetSpaceParams::VISIBLE:
804                 output ="&#x2423;";
805                 break;
806         case InsetSpaceParams::HFILL:
807         case InsetSpaceParams::HFILL_PROTECTED:
808         case InsetSpaceParams::DOTFILL:
809         case InsetSpaceParams::HRULEFILL:
810         case InsetSpaceParams::LEFTARROWFILL:
811         case InsetSpaceParams::RIGHTARROWFILL:
812         case InsetSpaceParams::UPBRACEFILL:
813         case InsetSpaceParams::DOWNBRACEFILL:
814                 // FIXME XHTML
815                 // Can we do anything with those in HTML?
816                 break;
817         case InsetSpaceParams::CUSTOM:
818                 // FIXME XHTML
819                 // Probably we could do some sort of blank span?
820                 break;
821         case InsetSpaceParams::CUSTOM_PROTECTED:
822                 // FIXME XHTML
823                 // Probably we could do some sort of blank span?
824                 output ="&nbsp;";
825                 break;
826         }
827         // don't escape the entities!
828         xs << XMLStream::ESCAPE_NONE << from_ascii(output);
829         return docstring();
830 }
831
832
833 void InsetSpace::validate(LaTeXFeatures & features) const
834 {
835         if (params_.kind == InsetSpaceParams::NEGMEDIUM ||
836             params_.kind == InsetSpaceParams::NEGTHICK)
837                 features.require("amsmath");
838 }
839
840
841 void InsetSpace::toString(odocstream & os) const
842 {
843         odocstringstream ods;
844         plaintext(ods, OutputParams(0));
845         os << ods.str();
846 }
847
848
849 void InsetSpace::forOutliner(docstring & os, size_t const, bool const) const
850 {
851         // There's no need to be cute here.
852         os += " ";
853 }
854
855
856 bool InsetSpace::isHfill() const
857 {
858         return params_.kind == InsetSpaceParams::HFILL
859                 || params_.kind == InsetSpaceParams::HFILL_PROTECTED
860                 || params_.kind == InsetSpaceParams::DOTFILL
861                 || params_.kind == InsetSpaceParams::HRULEFILL
862                 || params_.kind == InsetSpaceParams::LEFTARROWFILL
863                 || params_.kind == InsetSpaceParams::RIGHTARROWFILL
864                 || params_.kind == InsetSpaceParams::UPBRACEFILL
865                 || params_.kind == InsetSpaceParams::DOWNBRACEFILL;
866 }
867
868
869 string InsetSpace::contextMenuName() const
870 {
871         return "context-space";
872 }
873
874
875 void InsetSpace::string2params(string const & in, InsetSpaceParams & params)
876 {
877         params = InsetSpaceParams();
878         if (in.empty())
879                 return;
880
881         istringstream data(in);
882         Lexer lex;
883         lex.setStream(data);
884         lex.setContext("InsetSpace::string2params");
885         lex.next();
886         string const name = lex.getString();
887         if (name == "mathspace")
888                 params.math = true;
889         else {
890                 params.math = false;
891                 // we can try to read this even if the name is wrong
892                 LATTEST(name == "space");
893         }
894
895         // There are cases, such as when we are called via getStatus() from
896         // Dialog::canApply(), where we are just called with "space" rather
897         // than a full "space \type{}\n\\end_inset".
898         if (lex.isOK())
899                 params.read(lex);
900 }
901
902
903 string InsetSpace::params2string(InsetSpaceParams const & params)
904 {
905         ostringstream data;
906         if (params.math)
907                 data << "math";
908         data << "space" << ' ';
909         params.write(data);
910         return data.str();
911 }
912
913
914 } // namespace lyx