]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFloat.cpp
This is intended to be a pure renaming of the Inset::name() routine,
[lyx.git] / src / insets / InsetFloat.cpp
1 /**
2  * \file InsetFloat.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  * \author Lars Gullik Bjønnes
8  * \author Jürgen Spitzmüller
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "InsetFloat.h"
16 #include "InsetCaption.h"
17
18 #include "Buffer.h"
19 #include "BufferParams.h"
20 #include "BufferView.h"
21 #include "Counters.h"
22 #include "Cursor.h"
23 #include "DispatchResult.h"
24 #include "Floating.h"
25 #include "FloatList.h"
26 #include "FuncRequest.h"
27 #include "FuncStatus.h"
28 #include "LaTeXFeatures.h"
29 #include "Lexer.h"
30 #include "output_xhtml.h"
31 #include "ParIterator.h"
32 #include "TextClass.h"
33
34 #include "support/debug.h"
35 #include "support/docstream.h"
36 #include "support/gettext.h"
37 #include "support/lstrings.h"
38
39 #include "frontends/Application.h"
40
41 using namespace std;
42 using namespace lyx::support;
43
44
45 namespace lyx {
46
47 // With this inset it will be possible to support the latex package
48 // float.sty, and I am sure that with this and some additional support
49 // classes we can support similar functionality in other formats
50 // (read DocBook).
51 // By using float.sty we will have the same handling for all floats, both
52 // for those already in existance (table and figure) and all user created
53 // ones¹. So suddenly we give the users the possibility of creating new
54 // kinds of floats on the fly. (and with a uniform look)
55 //
56 // API to float.sty:
57 //   \newfloat{type}{placement}{ext}[within]
58 //     type      - The "type" of the new class of floats, like program or
59 //                 algorithm. After the appropriate \newfloat, commands
60 //                 such as \begin{program} or \end{algorithm*} will be
61 //                 available.
62 //     placement - The default placement for the given class of floats.
63 //                 They are like in standard LaTeX: t, b, p and h for top,
64 //                 bottom, page, and here, respectively. On top of that
65 //                 there is a new type, H, which does not really correspond
66 //                 to a float, since it means: put it "here" and nowhere else.
67 //                 Note, however that the H specifier is special and, because
68 //                 of implementation details cannot be used in the second
69 //                 argument of \newfloat.
70 //     ext       - The file name extension of an auxiliary file for the list
71 //                 of figures (or whatever). LaTeX writes the captions to
72 //                 this file.
73 //     within    - This (optional) argument determines whether floats of this
74 //                 class will be numbered within some sectional unit of the
75 //                 document. For example, if within is equal to chapter, the
76 //                 floats will be numbered within chapters.
77 //   \floatstyle{style}
78 //     style -  plain, boxed, ruled
79 //   \floatname{float}{floatname}
80 //     float     -
81 //     floatname -
82 //   \floatplacement{float}{placement}
83 //     float     -
84 //     placement -
85 //   \restylefloat{float}
86 //     float -
87 //   \listof{type}{title}
88 //     title -
89
90 // ¹ the algorithm float is defined using the float.sty package. Like this
91 //   \floatstyle{ruled}
92 //   \newfloat{algorithm}{htbp}{loa}[<sect>]
93 //   \floatname{algorithm}{Algorithm}
94 //
95 // The intention is that floats should be definable from two places:
96 //          - layout files
97 //          - the "gui" (i.e. by the user)
98 //
99 // From layout files.
100 // This should only be done for floats defined in a documentclass and that
101 // does not need any additional packages. The two most known floats in this
102 // category is "table" and "figure". Floats defined in layout files are only
103 // stored in lyx files if the user modifies them.
104 //
105 // By the user.
106 // There should be a gui dialog (and also a collection of lyxfuncs) where
107 // the user can modify existing floats and/or create new ones.
108 //
109 // The individual floats will also have some settable
110 // variables: wide and placement.
111 //
112 // Lgb
113
114 //FIXME: why do we set in stone the type here?
115 InsetFloat::InsetFloat(Buffer * buf, string params_str)
116         : InsetCollapsable(buf)
117 {
118         string2params(params_str, params_);
119 }
120
121
122 docstring InsetFloat::layoutName() const
123
124         return "Float:" + from_utf8(params_.type);
125 }
126
127
128 docstring InsetFloat::toolTip(BufferView const & bv, int x, int y) const
129 {
130         if (isOpen(bv))
131                 return InsetCollapsable::toolTip(bv, x, y);
132
133         OutputParams rp(&buffer().params().encoding());
134         return getCaptionText(rp);
135 }
136
137
138 void InsetFloat::doDispatch(Cursor & cur, FuncRequest & cmd)
139 {
140         switch (cmd.action()) {
141
142         case LFUN_INSET_MODIFY: {
143                 InsetFloatParams params;
144                 string2params(to_utf8(cmd.argument()), params);
145                 cur.recordUndoInset(ATOMIC_UNDO, this);
146
147                 // placement, wide and sideways are not used for subfloats
148                 if (!params_.subfloat) {
149                         params_.placement = params.placement;
150                         params_.wide      = params.wide;
151                         params_.sideways  = params.sideways;
152                 }
153                 setNewLabel();
154                 if (params_.type != params.type) {
155                         params_.type = params.type;
156                         cur.forceBufferUpdate();
157                 }
158                 // what we really want here is a TOC update, but that means
159                 // a full buffer update
160                 cur.forceBufferUpdate();
161                 break;
162         }
163
164         case LFUN_INSET_DIALOG_UPDATE: {
165                 cur.bv().updateDialog("float", params2string(params()));
166                 break;
167         }
168
169         default:
170                 InsetCollapsable::doDispatch(cur, cmd);
171                 break;
172         }
173 }
174
175
176 bool InsetFloat::getStatus(Cursor & cur, FuncRequest const & cmd,
177                 FuncStatus & flag) const
178 {
179         switch (cmd.action()) {
180
181         case LFUN_INSET_MODIFY:
182         case LFUN_INSET_DIALOG_UPDATE:
183                 flag.setEnabled(true);
184                 return true;
185
186         case LFUN_INSET_SETTINGS:
187                 if (InsetCollapsable::getStatus(cur, cmd, flag)) {
188                         flag.setEnabled(flag.enabled() && !params_.subfloat);
189                         return true;
190                 } else
191                         return false;
192
193         default:
194                 return InsetCollapsable::getStatus(cur, cmd, flag);
195         }
196 }
197
198
199 void InsetFloat::updateBuffer(ParIterator const & it, UpdateType utype)
200 {
201         Counters & cnts =
202                 buffer().masterBuffer()->params().documentClass().counters();
203         if (utype == OutputUpdate) {
204                 // counters are local to the float
205                 cnts.saveLastCounter();
206         }
207         string const saveflt = cnts.current_float();
208         bool const savesubflt = cnts.isSubfloat();
209
210         bool const subflt = (it.innerInsetOfType(FLOAT_CODE)
211                              || it.innerInsetOfType(WRAP_CODE));
212         // floats can only embed subfloats of their own kind
213         if (subflt)
214                 params_.type = saveflt;
215         setSubfloat(subflt);
216
217         // Tell to captions what the current float is
218         cnts.current_float(params().type);
219         cnts.isSubfloat(subflt);
220
221         InsetCollapsable::updateBuffer(it, utype);
222
223         //reset afterwards
224         cnts.current_float(saveflt);
225         if (utype == OutputUpdate)
226                 cnts.restoreLastCounter();
227         cnts.isSubfloat(savesubflt);
228 }
229
230
231 void InsetFloatParams::write(ostream & os) const
232 {
233         os << type << '\n';
234
235         if (!placement.empty())
236                 os << "placement " << placement << "\n";
237
238         if (wide)
239                 os << "wide true\n";
240         else
241                 os << "wide false\n";
242
243         if (sideways)
244                 os << "sideways true\n";
245         else
246                 os << "sideways false\n";
247 }
248
249
250 void InsetFloatParams::read(Lexer & lex)
251 {
252         lex.setContext("InsetFloatParams::read");
253         lex >> type;
254         if (lex.checkFor("placement"))
255                 lex >> placement;
256         lex >> "wide" >> wide;
257         lex >> "sideways" >> sideways;
258 }
259
260
261 void InsetFloat::write(ostream & os) const
262 {
263         os << "Float ";
264         params_.write(os);
265         InsetCollapsable::write(os);
266 }
267
268
269 void InsetFloat::read(Lexer & lex)
270 {
271         params_.read(lex);
272         InsetCollapsable::read(lex);
273         // check if the float type exists
274         if (buffer().params().documentClass().floats().typeExist(params_.type))
275                 setLabel(_("float: ") + floatName(params_.type));
276         else
277                 setLabel(bformat(_("ERROR: Unknown float type: %1$s"), from_utf8(params_.type)));
278 }
279
280
281 void InsetFloat::validate(LaTeXFeatures & features) const
282 {
283         if (support::contains(params_.placement, 'H'))
284                 features.require("float");
285
286         if (params_.sideways)
287                 features.require("rotfloat");
288
289         if (features.inFloat())
290                 features.require("subfig");
291
292         features.useFloat(params_.type, features.inFloat());
293         features.inFloat(true);
294         InsetCollapsable::validate(features);
295         features.inFloat(false);
296 }
297
298
299 docstring InsetFloat::xhtml(XHTMLStream & xs, OutputParams const & rp) const
300 {
301         FloatList const & floats = buffer().params().documentClass().floats();
302         Floating const & ftype = floats.getType(params_.type);
303         string const & htmltype = ftype.htmlTag();
304         string const & attr = ftype.htmlAttrib();
305
306         odocstringstream ods;
307         XHTMLStream newxs(ods);
308         newxs << html::StartTag(htmltype, attr);
309         InsetText::XHTMLOptions const opts = 
310                 InsetText::WriteLabel | InsetText::WriteInnerTag;
311         docstring deferred = InsetText::insetAsXHTML(newxs, rp, opts);
312         newxs << html::EndTag(htmltype);
313
314         if (rp.inFloat == OutputParams::NONFLOAT)
315                 // In this case, this float needs to be deferred, but we'll put it
316                 // before anything the text itself deferred.
317                 deferred = ods.str() + '\n' + deferred;
318         else 
319                 // In this case, the whole thing is already being deferred, so
320                 // we can write to the stream.
321                 // Note that things will already have been escaped, so we do not 
322                 // want to escape them again.
323                 xs << XHTMLStream::ESCAPE_NONE << ods.str();
324         return deferred;
325 }
326
327
328 void InsetFloat::latex(otexstream & os, OutputParams const & runparams_in) const
329 {
330         if (runparams_in.inFloat != OutputParams::NONFLOAT) {
331                 if (runparams_in.moving_arg)
332                         os << "\\protect";
333                 os << "\\subfloat";
334         
335                 OutputParams rp = runparams_in;
336                 docstring const caption = getCaption(rp);
337                 if (!caption.empty()) {
338                         os << caption;
339                 }
340                 os << '{';
341                 rp.inFloat = OutputParams::SUBFLOAT;
342                 InsetText::latex(os, rp);
343                 os << "}";
344         
345                 return;
346         }
347         OutputParams runparams(runparams_in);
348         runparams.inFloat = OutputParams::MAINFLOAT;
349
350         FloatList const & floats = buffer().params().documentClass().floats();
351         string tmptype = params_.type;
352         if (params_.sideways)
353                 tmptype = "sideways" + params_.type;
354         if (params_.wide && (!params_.sideways ||
355                              params_.type == "figure" ||
356                              params_.type == "table"))
357                 tmptype += "*";
358         // Figure out the float placement to use.
359         // From lowest to highest:
360         // - float default placement
361         // - document wide default placement
362         // - specific float placement
363         string placement;
364         string const buf_placement = buffer().params().float_placement;
365         string const def_placement = floats.defaultPlacement(params_.type);
366         if (!params_.placement.empty()
367             && params_.placement != def_placement) {
368                 placement = params_.placement;
369         } else if (params_.placement.empty()
370                    && !buf_placement.empty()
371                    && buf_placement != def_placement) {
372                 placement = buf_placement;
373         }
374
375         // Force \begin{<floatname>} to appear in a new line.
376         os << breakln << "\\begin{" << from_ascii(tmptype) << '}';
377         if (runparams.lastid != -1)
378                 os.texrow().start(runparams.lastid, runparams.lastpos);
379         // We only output placement if different from the def_placement.
380         // sidewaysfloats always use their own page
381         if (!placement.empty() && !params_.sideways)
382                 os << '[' << from_ascii(placement) << ']';
383         os << '\n';
384
385         InsetText::latex(os, runparams);
386
387         // Force \end{<floatname>} to appear in a new line.
388         os << breakln << "\\end{" << from_ascii(tmptype) << "}\n";
389 }
390
391
392 int InsetFloat::plaintext(odocstream & os, OutputParams const & runparams) const
393 {
394         os << '[' << buffer().B_("float") << ' '
395                 << floatName(params_.type) << ":\n";
396         InsetText::plaintext(os, runparams);
397         os << "\n]";
398
399         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
400 }
401
402
403 int InsetFloat::docbook(odocstream & os, OutputParams const & runparams) const
404 {
405         // FIXME Implement subfloat!
406         // FIXME UNICODE
407         os << '<' << from_ascii(params_.type) << '>';
408         int const i = InsetText::docbook(os, runparams);
409         os << "</" << from_ascii(params_.type) << '>';
410
411         return i;
412 }
413
414
415 bool InsetFloat::insetAllowed(InsetCode code) const
416 {
417         // The case that code == FLOAT_CODE is handled in Text3.cpp, 
418         // because we need to know what type of float is meant.
419         switch(code) {
420         case WRAP_CODE:
421         case FOOT_CODE:
422         case MARGIN_CODE:
423                 return false;
424         default:
425                 return InsetCollapsable::insetAllowed(code);
426         }
427 }
428
429
430 void InsetFloat::setWide(bool w, bool update_label)
431 {
432         params_.wide = w;
433         if (update_label)
434                 setNewLabel();
435 }
436
437
438 void InsetFloat::setSideways(bool s, bool update_label)
439 {
440         params_.sideways = s;
441         if (update_label)
442                 setNewLabel();
443 }
444
445
446 void InsetFloat::setSubfloat(bool s, bool update_label)
447 {
448         params_.subfloat = s;
449         if (update_label)
450                 setNewLabel();
451 }
452
453
454 void InsetFloat::setNewLabel()
455 {
456         docstring lab = _("float: ");
457
458         if (params_.subfloat)
459                 lab = _("subfloat: ");
460
461         lab += floatName(params_.type);
462
463         if (params_.wide)
464                 lab += '*';
465
466         if (params_.sideways)
467                 lab += _(" (sideways)");
468
469         setLabel(lab);
470 }
471
472
473 docstring InsetFloat::getCaption(OutputParams const & runparams) const
474 {
475         if (paragraphs().empty())
476                 return docstring();
477
478         InsetCaption const * ins = getCaptionInset();
479         if (ins == 0)
480                 return docstring();
481
482         TexRow texrow;
483         odocstringstream ods;
484         otexstream os(ods, texrow);
485         ins->getOptArg(os, runparams);
486         ods << '[';
487         odocstringstream odss;
488         otexstream oss(odss, texrow);
489         ins->getArgument(oss, runparams);
490         docstring arg = odss.str();
491         // Protect ']'
492         if (arg.find(']') != docstring::npos)
493                 arg = '{' + arg + '}';
494         ods << arg;
495         ods << ']';
496         return ods.str();
497 }
498
499
500 void InsetFloat::string2params(string const & in, InsetFloatParams & params)
501 {
502         params = InsetFloatParams();
503         if (in.empty())
504                 return;
505
506         istringstream data(in);
507         Lexer lex;
508         lex.setStream(data);
509         lex.setContext("InsetFloat::string2params");
510         params.read(lex);
511 }
512
513
514 string InsetFloat::params2string(InsetFloatParams const & params)
515 {
516         ostringstream data;
517         params.write(data);
518         return data.str();
519 }
520
521
522 } // namespace lyx