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