]> git.lyx.org Git - lyx.git/blob - src/insets/InsetSpace.cpp
* src/insets/InsetSpace.cpp:
[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 "Length.h"
24 #include "Lexer.h"
25 #include "MetricsInfo.h"
26 #include "OutputParams.h"
27
28 #include "support/debug.h"
29 #include "support/docstream.h"
30 #include "support/gettext.h"
31 #include "support/lstrings.h"
32
33 #include "frontends/Application.h"
34 #include "frontends/FontMetrics.h"
35 #include "frontends/Painter.h"
36
37 using namespace std;
38
39 namespace lyx {
40
41
42 InsetSpace::InsetSpace(InsetSpaceParams const & params)
43         : params_(params)
44 {}
45
46
47 InsetSpaceParams::Kind InsetSpace::kind() const
48 {
49         return params_.kind;
50 }
51
52
53 Length InsetSpace::length() const
54 {
55         return params_.length;
56 }
57
58
59 InsetSpace::~InsetSpace()
60 {
61         hideDialogs("space", this);
62 }
63
64
65 docstring InsetSpace::toolTip(BufferView const &, int, int) const
66 {
67         docstring message;
68         switch (params_.kind) {
69         case InsetSpaceParams::NORMAL:
70                 message = _("Interword Space");
71                 break;
72         case InsetSpaceParams::PROTECTED:
73                 message = _("Protected Space");
74                 break;
75         case InsetSpaceParams::THIN:
76                 message = _("Thin Space");
77                 break;
78         case InsetSpaceParams::QUAD:
79                 message = _("Quad Space");
80                 break;
81         case InsetSpaceParams::QQUAD:
82                 message = _("QQuad Space");
83                 break;
84         case InsetSpaceParams::ENSPACE:
85                 message = _("Enspace");
86                 break;
87         case InsetSpaceParams::ENSKIP:
88                 message = _("Enskip");
89                 break;
90         case InsetSpaceParams::NEGTHIN:
91                 message = _("Negative Thin Space");
92                 break;
93         case InsetSpaceParams::HFILL:
94                 message = _("Horizontal Fill");
95                 break;
96         case InsetSpaceParams::HFILL_PROTECTED:
97                 message = _("Protected Horizontal Fill");
98                 break;
99         case InsetSpaceParams::DOTFILL:
100                 message = _("Horizontal Fill (Dots)");
101                 break;
102         case InsetSpaceParams::HRULEFILL:
103                 message = _("Horizontal Fill (Rule)");
104                 break;
105         case InsetSpaceParams::LEFTARROWFILL:
106                 message = _("Horizontal Fill (Left Arrow)");
107                 break;
108         case InsetSpaceParams::RIGHTARROWFILL:
109                 message = _("Horizontal Fill (Right Arrow)");
110                 break;
111         case InsetSpaceParams::UPBRACEFILL:
112                 message = _("Horizontal Fill (Up Brace)");
113                 break;
114         case InsetSpaceParams::DOWNBRACEFILL:
115                 message = _("Horizontal Fill (Down Brace)");
116                 break;
117         case InsetSpaceParams::CUSTOM:
118                 message = support::bformat(_("Horizontal Space (%1$s)"),
119                                 params_.length.asDocstring());
120                 break;
121         case InsetSpaceParams::CUSTOM_PROTECTED:
122                 message = support::bformat(_("Protected Horizontal Space (%1$s)"),
123                                 params_.length.asDocstring());
124                 break;
125         }
126         return message;
127 }
128
129
130 void InsetSpace::doDispatch(Cursor & cur, FuncRequest & cmd)
131 {
132         switch (cmd.action) {
133
134         case LFUN_INSET_MODIFY: {
135                 string2params(to_utf8(cmd.argument()), params_);
136                 break;
137         }
138
139         case LFUN_MOUSE_RELEASE:
140                 if (!cur.selection() && cmd.button() == mouse_button::button1)
141                         cur.bv().showDialog("space", params2string(params()), this);
142                 break;
143
144         default:
145                 Inset::doDispatch(cur, cmd);
146                 break;
147         }
148 }
149
150
151 bool InsetSpace::getStatus(Cursor & cur, FuncRequest const & cmd,
152         FuncStatus & status) const
153 {
154         switch (cmd.action) {
155         // we handle these
156         case LFUN_INSET_MODIFY:
157                 if (cmd.getArg(0) == "space") {
158                         InsetSpaceParams params;
159                         string2params(to_utf8(cmd.argument()), params);
160                         status.setOnOff(params_.kind == params.kind);
161                 }
162                 status.setEnabled(true);
163                 return true;
164         default:
165                 return Inset::getStatus(cur, cmd, status);
166         }
167 }
168
169
170 void InsetSpace::edit(Cursor & cur, bool, EntryDirection)
171 {
172         cur.bv().showDialog("space", params2string(params()), this);
173 }
174
175
176 void InsetSpace::metrics(MetricsInfo & mi, Dimension & dim) const
177 {
178         if (isStretchableSpace()) {
179                 // The metrics for this kinds are calculated externally in
180                 // \c TextMetrics::computeRowMetrics. Those are dummy value:
181                 dim = Dimension(10, 10, 10);
182                 return;
183         }
184
185         frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
186         dim.asc = fm.maxAscent();
187         dim.des = fm.maxDescent();
188
189         switch (params_.kind) {
190                 case InsetSpaceParams::THIN:
191                 case InsetSpaceParams::NEGTHIN:
192                         dim.wid = fm.width(char_type('M')) / 6;
193                         break;
194                 case InsetSpaceParams::PROTECTED:
195                 case InsetSpaceParams::NORMAL:
196                         dim.wid = fm.width(char_type(' '));
197                         break;
198                 case InsetSpaceParams::QUAD:
199                         dim.wid = fm.width(char_type('M'));
200                         break;
201                 case InsetSpaceParams::QQUAD:
202                         dim.wid = 2 * fm.width(char_type('M'));
203                         break;
204                 case InsetSpaceParams::ENSPACE:
205                 case InsetSpaceParams::ENSKIP:
206                         dim.wid = int(0.5 * fm.width(char_type('M')));
207                         break;
208                 case InsetSpaceParams::CUSTOM:
209                 case InsetSpaceParams::CUSTOM_PROTECTED:
210                         dim.wid = max(4, abs(params_.length.inBP()));
211                         break;
212                 case InsetSpaceParams::HFILL:
213                 case InsetSpaceParams::HFILL_PROTECTED:
214                 case InsetSpaceParams::DOTFILL:
215                 case InsetSpaceParams::HRULEFILL:
216                 case InsetSpaceParams::LEFTARROWFILL:
217                 case InsetSpaceParams::RIGHTARROWFILL:
218                 case InsetSpaceParams::UPBRACEFILL:
219                 case InsetSpaceParams::DOWNBRACEFILL:
220                         // shut up compiler
221                         break;
222         }
223         // Cache the inset dimension.
224         setDimCache(mi, dim);
225 }
226
227
228 void InsetSpace::draw(PainterInfo & pi, int x, int y) const
229 {
230         Dimension const dim = dimension(*pi.base.bv);
231
232         if (isStretchableSpace()) {
233                 int const asc = theFontMetrics(pi.base.font).ascent('M');
234                 int const desc = theFontMetrics(pi.base.font).descent('M');
235                 // Pixel height divisible by 2 for prettier fill graphics:
236                 int const oddheight = (asc ^ desc) & 1;
237                 int const x0 = x + 1;
238                 int const x1 = x + dim.wid - 2;
239                 int const y0 = y + desc - 1;
240                 int const y1 = y - asc + oddheight - 1;
241                 int const y2 = (y0 + y1) / 2;
242                 int xoffset = (y0 - y1) / 2;
243
244                 // Two tests for very narrow insets
245                 if (xoffset > x1 - x0
246                      && (params_.kind == InsetSpaceParams::LEFTARROWFILL
247                          || params_.kind == InsetSpaceParams::RIGHTARROWFILL))
248                                 xoffset = x1 - x0;
249                 if (xoffset * 6 > (x1 - x0)
250                      && (params_.kind == InsetSpaceParams::UPBRACEFILL
251                          || params_.kind == InsetSpaceParams::DOWNBRACEFILL))
252                                 xoffset = (x1 - x0) / 6;
253
254                 int const x2 = x0 + xoffset;
255                 int const x3 = x1 - xoffset;
256                 int const xm = (x0 + x1) / 2;
257                 int const xml = xm - xoffset;
258                 int const xmr = xm + xoffset;
259
260                 if (params_.kind == InsetSpaceParams::HFILL) {
261                         pi.pain.line(x0, y1, x0, y0, Color_added_space);
262                         pi.pain.line(x0, y2 , x1, y2, Color_added_space,
263                                 frontend::Painter::line_onoffdash);
264                         pi.pain.line(x1, y1, x1, y0, Color_added_space);
265                 } else if (params_.kind == InsetSpaceParams::HFILL_PROTECTED) {
266                         pi.pain.line(x0, y1, x0, y0, Color_latex);
267                         pi.pain.line(x0, y2 , x1, y2, Color_latex,
268                                 frontend::Painter::line_onoffdash);
269                         pi.pain.line(x1, y1, x1, y0, Color_latex);
270                 } else if (params_.kind == InsetSpaceParams::DOTFILL) {
271                         pi.pain.line(x0, y1, x0, y0, Color_special);
272                         pi.pain.line(x0, y0, x1, y0, Color_special,
273                                 frontend::Painter::line_onoffdash);
274                         pi.pain.line(x1, y1, x1, y0, Color_special);
275                 } else if (params_.kind == InsetSpaceParams::HRULEFILL) {
276                         pi.pain.line(x0, y1, x0, y0, Color_special);
277                         pi.pain.line(x0, y0, x1, y0, Color_special);
278                         pi.pain.line(x1, y1, x1, y0, Color_special);
279                 } else if (params_.kind == InsetSpaceParams::LEFTARROWFILL) {
280                         pi.pain.line(x2, y1 + 1 , x0 + 1, y2, Color_special);
281                         pi.pain.line(x0 + 1, y2 + 1 , x2, y0, Color_special);
282                         pi.pain.line(x0, y2 , x1, y2, Color_special);
283                 } else if (params_.kind == InsetSpaceParams::RIGHTARROWFILL) {
284                         pi.pain.line(x3 + 1, y1 + 1 , x1, y2, Color_special);
285                         pi.pain.line(x1, y2 + 1 , x3 + 1, y0, Color_special);
286                         pi.pain.line(x0, y2 , x1, y2, Color_special);
287                 } else if (params_.kind == InsetSpaceParams::UPBRACEFILL) {
288                         pi.pain.line(x0 + 1, y1 + 1 , x2, y2, Color_special);
289                         pi.pain.line(x2, y2 , xml, y2, Color_special);
290                         pi.pain.line(xml + 1, y2 + 1 , xm, y0, Color_special);
291                         pi.pain.line(xm + 1, y0 , xmr, y2 + 1, Color_special);
292                         pi.pain.line(xmr, y2 , x3, y2, Color_special);
293                         pi.pain.line(x3 + 1, y2 , x1, y1 + 1, Color_special);
294                 } else if (params_.kind == InsetSpaceParams::DOWNBRACEFILL) {
295                         pi.pain.line(x0 + 1, y0 , x2, y2 + 1, Color_special);
296                         pi.pain.line(x2, y2 , xml, y2, Color_special);
297                         pi.pain.line(xml + 1, y2 , xm, y1 + 1, Color_special);
298                         pi.pain.line(xm + 1, y1 + 1 , xmr, y2, Color_special);
299                         pi.pain.line(xmr, y2 , x3, y2, Color_special);
300                         pi.pain.line(x3 + 1, y2 + 1 , x1, y0, Color_special);
301                 }
302                 return;
303         }
304
305         int const w = dim.wid;
306         int const h = theFontMetrics(pi.base.font).ascent('x');
307         int xp[4], yp[4];
308
309         xp[0] = x;
310         yp[0] = y - max(h / 4, 1);
311         if (params_.kind == InsetSpaceParams::NORMAL ||
312             params_.kind == InsetSpaceParams::PROTECTED) {
313                 xp[1] = x;     yp[1] = y;
314                 xp[2] = x + w; yp[2] = y;
315         } else {
316                 xp[1] = x;     yp[1] = y + max(h / 4, 1);
317                 xp[2] = x + w; yp[2] = y + max(h / 4, 1);
318         }
319         xp[3] = x + w;
320         yp[3] = y - max(h / 4, 1);
321
322         if (params_.length.inBP() < 0) {
323                 // turn symbol upside down. A prettier solution would use
324                 // inverted arrows (like in VSpace).
325                 swap(yp[0], yp[1]);
326                 swap(yp[2], yp[3]);
327         }
328         if (params_.kind == InsetSpaceParams::PROTECTED ||
329             params_.kind == InsetSpaceParams::ENSPACE ||
330             params_.kind == InsetSpaceParams::NEGTHIN ||
331             params_.kind == InsetSpaceParams::CUSTOM_PROTECTED)
332                 pi.pain.lines(xp, yp, 4, Color_latex);
333         else
334                 pi.pain.lines(xp, yp, 4, Color_special);
335 }
336
337
338 void InsetSpaceParams::write(ostream & os) const
339 {
340         string command;
341         switch (kind) {
342         case InsetSpaceParams::NORMAL:
343                 os << "\\space{}";
344                 break;
345         case InsetSpaceParams::PROTECTED:
346                 os <<  "~";
347                 break;
348         case InsetSpaceParams::THIN:
349                 os <<  "\\thinspace{}";
350                 break;
351         case InsetSpaceParams::QUAD:
352                 os <<  "\\quad{}";
353                 break;
354         case InsetSpaceParams::QQUAD:
355                 os <<  "\\qquad{}";
356                 break;
357         case InsetSpaceParams::ENSPACE:
358                 os <<  "\\enspace{}";
359                 break;
360         case InsetSpaceParams::ENSKIP:
361                 os <<  "\\enskip{}";
362                 break;
363         case InsetSpaceParams::NEGTHIN:
364                 os <<  "\\negthinspace{}";
365                 break;
366         case InsetSpaceParams::HFILL:
367                 os <<  "\\hfill{}";
368                 break;
369         case InsetSpaceParams::HFILL_PROTECTED:
370                 os <<  "\\hspace*{\\fill}";
371                 break;
372         case InsetSpaceParams::DOTFILL:
373                 os <<  "\\dotfill{}";
374                 break;
375         case InsetSpaceParams::HRULEFILL:
376                 os <<  "\\hrulefill{}";
377                 break;
378         case InsetSpaceParams::LEFTARROWFILL:
379                 os <<  "\\leftarrowfill{}";
380                 break;
381         case InsetSpaceParams::RIGHTARROWFILL:
382                 os <<  "\\rightarrowfill{}";
383                 break;
384         case InsetSpaceParams::UPBRACEFILL:
385                 os <<  "\\upbracefill{}";
386                 break;
387         case InsetSpaceParams::DOWNBRACEFILL:
388                 os <<  "\\downbracefill{}";
389                 break;
390         case InsetSpaceParams::CUSTOM:
391                 os <<  "\\hspace{}";
392                 break;
393         case InsetSpaceParams::CUSTOM_PROTECTED:
394                 os <<  "\\hspace*{}";
395                 break;
396         }
397         
398         if (!length.empty())
399                 os << "\n\\length " << length.asString();
400 }
401
402
403 void InsetSpaceParams::read(Lexer & lex)
404 {
405         lex.setContext("InsetSpaceParams::read");
406         string command;
407         lex >> command;
408
409         if (command == "\\space{}")
410                 kind = InsetSpaceParams::NORMAL;
411         else if (command == "~")
412                 kind = InsetSpaceParams::PROTECTED;
413         else if (command == "\\thinspace{}")
414                 kind = InsetSpaceParams::THIN;
415         else if (command == "\\quad{}")
416                 kind = InsetSpaceParams::QUAD;
417         else if (command == "\\qquad{}")
418                 kind = InsetSpaceParams::QQUAD;
419         else if (command == "\\enspace{}")
420                 kind = InsetSpaceParams::ENSPACE;
421         else if (command == "\\enskip{}")
422                 kind = InsetSpaceParams::ENSKIP;
423         else if (command == "\\negthinspace{}")
424                 kind = InsetSpaceParams::NEGTHIN;
425         else if (command == "\\hfill{}")
426                 kind = InsetSpaceParams::HFILL;
427         else if (command == "\\hspace*{\\fill}")
428                 kind = InsetSpaceParams::HFILL_PROTECTED;
429         else if (command == "\\dotfill{}")
430                 kind = InsetSpaceParams::DOTFILL;
431         else if (command == "\\hrulefill{}")
432                 kind = InsetSpaceParams::HRULEFILL;
433         else if (command == "\\hspace{}")
434                 kind = InsetSpaceParams::CUSTOM;
435         else if (command == "\\leftarrowfill{}")
436                 kind = InsetSpaceParams::LEFTARROWFILL;
437         else if (command == "\\rightarrowfill{}")
438                 kind = InsetSpaceParams::RIGHTARROWFILL;
439         else if (command == "\\upbracefill{}")
440                 kind = InsetSpaceParams::UPBRACEFILL;
441         else if (command == "\\downbracefill{}")
442                 kind = InsetSpaceParams::DOWNBRACEFILL;
443         else if (command == "\\hspace*{}")
444                 kind = InsetSpaceParams::CUSTOM_PROTECTED;
445         else
446                 lex.printError("InsetSpace: Unknown kind: `$$Token'");
447
448         if (lex.checkFor("\\length"))
449                 lex >> length;
450 }
451
452
453 void InsetSpace::write(ostream & os) const
454 {
455         os << "space ";
456         params_.write(os);
457 }
458
459
460 void InsetSpace::read(Lexer & lex)
461 {
462         params_.read(lex);
463         lex >> "\\end_inset";
464 }
465
466
467 int InsetSpace::latex(odocstream & os, OutputParams const & runparams) const
468 {
469         switch (params_.kind) {
470         case InsetSpaceParams::NORMAL:
471                 os << (runparams.free_spacing ? " " : "\\ ");
472                 break;
473         case InsetSpaceParams::PROTECTED:
474                 os << (runparams.free_spacing ? ' ' : '~');
475                 break;
476         case InsetSpaceParams::THIN:
477                 os << (runparams.free_spacing ? " " : "\\,");
478                 break;
479         case InsetSpaceParams::QUAD:
480                 os << (runparams.free_spacing ? " " : "\\quad{}");
481                 break;
482         case InsetSpaceParams::QQUAD:
483                 os << (runparams.free_spacing ? " " : "\\qquad{}");
484                 break;
485         case InsetSpaceParams::ENSPACE:
486                 os << (runparams.free_spacing ? " " : "\\enspace{}");
487                 break;
488         case InsetSpaceParams::ENSKIP:
489                 os << (runparams.free_spacing ? " " : "\\enskip{}");
490                 break;
491         case InsetSpaceParams::NEGTHIN:
492                 os << (runparams.free_spacing ? " " : "\\negthinspace{}");
493                 break;
494         case InsetSpaceParams::HFILL:
495                 os << (runparams.free_spacing ? " " : "\\hfill{}");
496                 break;
497         case InsetSpaceParams::HFILL_PROTECTED:
498                 os << (runparams.free_spacing ? " " : "\\hspace*{\\fill}");
499                 break;
500         case InsetSpaceParams::DOTFILL:
501                 os << (runparams.free_spacing ? " " : "\\dotfill{}");
502                 break;
503         case InsetSpaceParams::HRULEFILL:
504                 os << (runparams.free_spacing ? " " : "\\hrulefill{}");
505                 break;
506         case InsetSpaceParams::LEFTARROWFILL:
507                 os << (runparams.free_spacing ? " " : "\\leftarrowfill{}");
508                 break;
509         case InsetSpaceParams::RIGHTARROWFILL:
510                 os << (runparams.free_spacing ? " " : "\\rightarrowfill{}");
511                 break;
512         case InsetSpaceParams::UPBRACEFILL:
513                 os << (runparams.free_spacing ? " " : "\\upbracefill{}");
514                 break;
515         case InsetSpaceParams::DOWNBRACEFILL:
516                 os << (runparams.free_spacing ? " " : "\\downbracefill{}");
517                 break;
518         case InsetSpaceParams::CUSTOM:
519                 if (runparams.free_spacing)
520                         os << " ";
521                 else
522                         os << "\\hspace{" << from_ascii(params_.length.asLatexString()) << "}";
523                 break;
524         case InsetSpaceParams::CUSTOM_PROTECTED:
525                 if (runparams.free_spacing)
526                         os << " ";
527                 else
528                         os << "\\hspace*{" << from_ascii(params_.length.asLatexString()) << "}";
529                 break;
530         }
531         return 0;
532 }
533
534
535 int InsetSpace::plaintext(odocstream & os, OutputParams const &) const
536 {
537         switch (params_.kind) {
538         case InsetSpaceParams::HFILL:
539         case InsetSpaceParams::HFILL_PROTECTED:
540                 os << "     ";
541                 return 5;
542         case InsetSpaceParams::DOTFILL:
543                 os << ".....";
544                 return 5;
545         case InsetSpaceParams::HRULEFILL:
546                 os << "_____";
547                 return 5;
548         case InsetSpaceParams::LEFTARROWFILL:
549                 os << "<----";
550                 return 5;
551         case InsetSpaceParams::RIGHTARROWFILL:
552                 os << "---->";
553                 return 5;
554         case InsetSpaceParams::UPBRACEFILL:
555                 os << "\\-v-/";
556                 return 5;
557         case InsetSpaceParams::DOWNBRACEFILL:
558                 os << "/-^-\\";
559                 return 5;
560         default:
561                 os << ' ';
562                 return 1;
563         }
564 }
565
566
567 int InsetSpace::docbook(odocstream & os, OutputParams const &) const
568 {
569         switch (params_.kind) {
570         case InsetSpaceParams::NORMAL:
571         case InsetSpaceParams::QUAD:
572         case InsetSpaceParams::QQUAD:
573         case InsetSpaceParams::ENSKIP:
574                 os << " ";
575                 break;
576         case InsetSpaceParams::PROTECTED:
577         case InsetSpaceParams::ENSPACE:
578         case InsetSpaceParams::THIN:
579         case InsetSpaceParams::NEGTHIN:
580                 os << "&nbsp;";
581                 break;
582         case InsetSpaceParams::HFILL:
583         case InsetSpaceParams::HFILL_PROTECTED:
584                 os << '\n';
585         case InsetSpaceParams::DOTFILL:
586                 // FIXME
587                 os << '\n';
588         case InsetSpaceParams::HRULEFILL:
589                 // FIXME
590                 os << '\n';
591         case InsetSpaceParams::LEFTARROWFILL:
592         case InsetSpaceParams::RIGHTARROWFILL:
593         case InsetSpaceParams::UPBRACEFILL:
594         case InsetSpaceParams::DOWNBRACEFILL:
595         case InsetSpaceParams::CUSTOM:
596         case InsetSpaceParams::CUSTOM_PROTECTED:
597                 // FIXME
598                 os << '\n';
599         }
600         return 0;
601 }
602
603
604 void InsetSpace::textString(odocstream & os) const
605 {
606         plaintext(os, OutputParams(0));
607 }
608
609
610 bool InsetSpace::isStretchableSpace() const
611 {
612         return params_.kind == InsetSpaceParams::HFILL
613                 || params_.kind == InsetSpaceParams::HFILL_PROTECTED
614                 || params_.kind == InsetSpaceParams::DOTFILL
615                 || params_.kind == InsetSpaceParams::HRULEFILL
616                 || params_.kind == InsetSpaceParams::LEFTARROWFILL
617                 || params_.kind == InsetSpaceParams::RIGHTARROWFILL
618                 || params_.kind == InsetSpaceParams::UPBRACEFILL
619                 || params_.kind == InsetSpaceParams::DOWNBRACEFILL;
620 }
621
622
623 docstring InsetSpace::contextMenu(BufferView const &, int, int) const
624 {
625         return from_ascii("context-space");
626 }
627
628
629 void InsetSpace::string2params(string const & in, InsetSpaceParams & params)
630 {
631         params = InsetSpaceParams();
632         if (in.empty())
633                 return;
634
635         istringstream data(in);
636         Lexer lex;
637         lex.setStream(data);
638         lex.setContext("InsetSpace::string2params");
639         lex >> "space";
640
641         // There are cases, such as when we are called via getStatus() from
642         // Dialog::canApply(), where we are just called with "space" rather
643         // than a full "space \type{}\n\\end_inset".
644         if (lex.isOK())
645                 params.read(lex);
646 }
647
648
649 string InsetSpace::params2string(InsetSpaceParams const & params)
650 {
651         ostringstream data;
652         data << "space" << ' ';
653         params.write(data);
654         return data.str();
655 }
656
657
658 } // namespace lyx