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