]> git.lyx.org Git - lyx.git/blob - src/insets/InsetSpace.cpp
Change inset label from ": filename" to "Program Listing: filename" for listings...
[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 = 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_.kind == InsetSpaceParams::PROTECTED ||
323             params_.kind == InsetSpaceParams::ENSPACE ||
324             params_.kind == InsetSpaceParams::NEGTHIN ||
325             params_.kind == InsetSpaceParams::CUSTOM_PROTECTED)
326                 pi.pain.lines(xp, yp, 4, Color_latex);
327         else
328                 pi.pain.lines(xp, yp, 4, Color_special);
329 }
330
331
332 void InsetSpaceParams::write(ostream & os) const
333 {
334         string command;
335         switch (kind) {
336         case InsetSpaceParams::NORMAL:
337                 os << "\\space{}";
338                 break;
339         case InsetSpaceParams::PROTECTED:
340                 os <<  "~";
341                 break;
342         case InsetSpaceParams::THIN:
343                 os <<  "\\thinspace{}";
344                 break;
345         case InsetSpaceParams::QUAD:
346                 os <<  "\\quad{}";
347                 break;
348         case InsetSpaceParams::QQUAD:
349                 os <<  "\\qquad{}";
350                 break;
351         case InsetSpaceParams::ENSPACE:
352                 os <<  "\\enspace{}";
353                 break;
354         case InsetSpaceParams::ENSKIP:
355                 os <<  "\\enskip{}";
356                 break;
357         case InsetSpaceParams::NEGTHIN:
358                 os <<  "\\negthinspace{}";
359                 break;
360         case InsetSpaceParams::HFILL:
361                 os <<  "\\hfill{}";
362                 break;
363         case InsetSpaceParams::HFILL_PROTECTED:
364                 os <<  "\\hspace*{\\fill}";
365                 break;
366         case InsetSpaceParams::DOTFILL:
367                 os <<  "\\dotfill{}";
368                 break;
369         case InsetSpaceParams::HRULEFILL:
370                 os <<  "\\hrulefill{}";
371                 break;
372         case InsetSpaceParams::LEFTARROWFILL:
373                 os <<  "\\leftarrowfill{}";
374                 break;
375         case InsetSpaceParams::RIGHTARROWFILL:
376                 os <<  "\\rightarrowfill{}";
377                 break;
378         case InsetSpaceParams::UPBRACEFILL:
379                 os <<  "\\upbracefill{}";
380                 break;
381         case InsetSpaceParams::DOWNBRACEFILL:
382                 os <<  "\\downbracefill{}";
383                 break;
384         case InsetSpaceParams::CUSTOM:
385                 os <<  "\\hspace{}";
386                 break;
387         case InsetSpaceParams::CUSTOM_PROTECTED:
388                 os <<  "\\hspace*{}";
389                 break;
390         }
391         
392         if (!length.empty())
393                 os << "\n\\length " << length.asString();
394 }
395
396
397 void InsetSpaceParams::read(Lexer & lex)
398 {
399         lex.setContext("InsetSpaceParams::read");
400         string command;
401         lex >> command;
402
403         if (command == "\\space{}")
404                 kind = InsetSpaceParams::NORMAL;
405         else if (command == "~")
406                 kind = InsetSpaceParams::PROTECTED;
407         else if (command == "\\thinspace{}")
408                 kind = InsetSpaceParams::THIN;
409         else if (command == "\\quad{}")
410                 kind = InsetSpaceParams::QUAD;
411         else if (command == "\\qquad{}")
412                 kind = InsetSpaceParams::QQUAD;
413         else if (command == "\\enspace{}")
414                 kind = InsetSpaceParams::ENSPACE;
415         else if (command == "\\enskip{}")
416                 kind = InsetSpaceParams::ENSKIP;
417         else if (command == "\\negthinspace{}")
418                 kind = InsetSpaceParams::NEGTHIN;
419         else if (command == "\\hfill{}")
420                 kind = InsetSpaceParams::HFILL;
421         else if (command == "\\hspace*{\\fill}")
422                 kind = InsetSpaceParams::HFILL_PROTECTED;
423         else if (command == "\\dotfill{}")
424                 kind = InsetSpaceParams::DOTFILL;
425         else if (command == "\\hrulefill{}")
426                 kind = InsetSpaceParams::HRULEFILL;
427         else if (command == "\\hspace{}")
428                 kind = InsetSpaceParams::CUSTOM;
429         else if (command == "\\leftarrowfill{}")
430                 kind = InsetSpaceParams::LEFTARROWFILL;
431         else if (command == "\\rightarrowfill{}")
432                 kind = InsetSpaceParams::RIGHTARROWFILL;
433         else if (command == "\\upbracefill{}")
434                 kind = InsetSpaceParams::UPBRACEFILL;
435         else if (command == "\\downbracefill{}")
436                 kind = InsetSpaceParams::DOWNBRACEFILL;
437         else if (command == "\\hspace*{}")
438                 kind = InsetSpaceParams::CUSTOM_PROTECTED;
439         else
440                 lex.printError("InsetSpace: Unknown kind: `$$Token'");
441
442         if (lex.checkFor("\\length"))
443                 lex >> length;
444 }
445
446
447 void InsetSpace::write(ostream & os) const
448 {
449         os << "space ";
450         params_.write(os);
451 }
452
453
454 void InsetSpace::read(Lexer & lex)
455 {
456         params_.read(lex);
457         lex >> "\\end_inset";
458 }
459
460
461 int InsetSpace::latex(odocstream & os, OutputParams const & runparams) const
462 {
463         switch (params_.kind) {
464         case InsetSpaceParams::NORMAL:
465                 os << (runparams.free_spacing ? " " : "\\ ");
466                 break;
467         case InsetSpaceParams::PROTECTED:
468                 os << (runparams.free_spacing ? ' ' : '~');
469                 break;
470         case InsetSpaceParams::THIN:
471                 os << (runparams.free_spacing ? " " : "\\,");
472                 break;
473         case InsetSpaceParams::QUAD:
474                 os << (runparams.free_spacing ? " " : "\\quad{}");
475                 break;
476         case InsetSpaceParams::QQUAD:
477                 os << (runparams.free_spacing ? " " : "\\qquad{}");
478                 break;
479         case InsetSpaceParams::ENSPACE:
480                 os << (runparams.free_spacing ? " " : "\\enspace{}");
481                 break;
482         case InsetSpaceParams::ENSKIP:
483                 os << (runparams.free_spacing ? " " : "\\enskip{}");
484                 break;
485         case InsetSpaceParams::NEGTHIN:
486                 os << (runparams.free_spacing ? " " : "\\negthinspace{}");
487                 break;
488         case InsetSpaceParams::HFILL:
489                 os << (runparams.free_spacing ? " " : "\\hfill{}");
490                 break;
491         case InsetSpaceParams::HFILL_PROTECTED:
492                 os << (runparams.free_spacing ? " " : "\\hspace*{\\fill}");
493                 break;
494         case InsetSpaceParams::DOTFILL:
495                 os << (runparams.free_spacing ? " " : "\\dotfill{}");
496                 break;
497         case InsetSpaceParams::HRULEFILL:
498                 os << (runparams.free_spacing ? " " : "\\hrulefill{}");
499                 break;
500         case InsetSpaceParams::LEFTARROWFILL:
501                 os << (runparams.free_spacing ? " " : "\\leftarrowfill{}");
502                 break;
503         case InsetSpaceParams::RIGHTARROWFILL:
504                 os << (runparams.free_spacing ? " " : "\\rightarrowfill{}");
505                 break;
506         case InsetSpaceParams::UPBRACEFILL:
507                 os << (runparams.free_spacing ? " " : "\\upbracefill{}");
508                 break;
509         case InsetSpaceParams::DOWNBRACEFILL:
510                 os << (runparams.free_spacing ? " " : "\\downbracefill{}");
511                 break;
512         case InsetSpaceParams::CUSTOM:
513                 if (runparams.free_spacing)
514                         os << " ";
515                 else
516                         os << "\\hspace{" << from_ascii(params_.length.asLatexString()) << "}";
517                 break;
518         case InsetSpaceParams::CUSTOM_PROTECTED:
519                 if (runparams.free_spacing)
520                         os << " ";
521                 else
522                         os << "\\hspace*{" << from_ascii(params_.length.asLatexString()) << "}";
523                 break;
524         }
525         return 0;
526 }
527
528
529 int InsetSpace::plaintext(odocstream & os, OutputParams const &) const
530 {
531         switch (params_.kind) {
532         case InsetSpaceParams::HFILL:
533         case InsetSpaceParams::HFILL_PROTECTED:
534                 os << "     ";
535                 return 5;
536         case InsetSpaceParams::DOTFILL:
537                 os << ".....";
538                 return 5;
539         case InsetSpaceParams::HRULEFILL:
540                 os << "_____";
541                 return 5;
542         case InsetSpaceParams::LEFTARROWFILL:
543                 os << "<----";
544                 return 5;
545         case InsetSpaceParams::RIGHTARROWFILL:
546                 os << "---->";
547                 return 5;
548         case InsetSpaceParams::UPBRACEFILL:
549                 os << "\\-v-/";
550                 return 5;
551         case InsetSpaceParams::DOWNBRACEFILL:
552                 os << "/-^-\\";
553                 return 5;
554         default:
555                 os << ' ';
556                 return 1;
557         }
558 }
559
560
561 int InsetSpace::docbook(odocstream & os, OutputParams const &) const
562 {
563         switch (params_.kind) {
564         case InsetSpaceParams::NORMAL:
565         case InsetSpaceParams::QUAD:
566         case InsetSpaceParams::QQUAD:
567         case InsetSpaceParams::ENSKIP:
568                 os << " ";
569                 break;
570         case InsetSpaceParams::PROTECTED:
571         case InsetSpaceParams::ENSPACE:
572         case InsetSpaceParams::THIN:
573         case InsetSpaceParams::NEGTHIN:
574                 os << "&nbsp;";
575                 break;
576         case InsetSpaceParams::HFILL:
577         case InsetSpaceParams::HFILL_PROTECTED:
578                 os << '\n';
579         case InsetSpaceParams::DOTFILL:
580                 // FIXME
581                 os << '\n';
582         case InsetSpaceParams::HRULEFILL:
583                 // FIXME
584                 os << '\n';
585         case InsetSpaceParams::LEFTARROWFILL:
586         case InsetSpaceParams::RIGHTARROWFILL:
587         case InsetSpaceParams::UPBRACEFILL:
588         case InsetSpaceParams::DOWNBRACEFILL:
589         case InsetSpaceParams::CUSTOM:
590         case InsetSpaceParams::CUSTOM_PROTECTED:
591                 // FIXME
592                 os << '\n';
593         }
594         return 0;
595 }
596
597
598 void InsetSpace::textString(odocstream & os) const
599 {
600         plaintext(os, OutputParams(0));
601 }
602
603
604 bool InsetSpace::isStretchableSpace() const
605 {
606         return params_.kind == InsetSpaceParams::HFILL
607                 || params_.kind == InsetSpaceParams::HFILL_PROTECTED
608                 || params_.kind == InsetSpaceParams::DOTFILL
609                 || params_.kind == InsetSpaceParams::HRULEFILL
610                 || params_.kind == InsetSpaceParams::LEFTARROWFILL
611                 || params_.kind == InsetSpaceParams::RIGHTARROWFILL
612                 || params_.kind == InsetSpaceParams::UPBRACEFILL
613                 || params_.kind == InsetSpaceParams::DOWNBRACEFILL;
614 }
615
616
617 docstring InsetSpace::contextMenu(BufferView const &, int, int) const
618 {
619         return from_ascii("context-space");
620 }
621
622
623 void InsetSpace::string2params(string const & in, InsetSpaceParams & params)
624 {
625         params = InsetSpaceParams();
626         if (in.empty())
627                 return;
628
629         istringstream data(in);
630         Lexer lex;
631         lex.setStream(data);
632         lex.setContext("InsetSpace::string2params");
633         lex >> "space";
634
635         // There are cases, such as when we are called via getStatus() from
636         // Dialog::canApply(), where we are just called with "space" rather
637         // than a full "space \type{}\n\\end_inset".
638         if (lex.isOK())
639                 params.read(lex);
640 }
641
642
643 string InsetSpace::params2string(InsetSpaceParams const & params)
644 {
645         ostringstream data;
646         data << "space" << ' ';
647         params.write(data);
648         return data.str();
649 }
650
651
652 } // namespace lyx