]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFloat.cpp
b3c8a50861027ca24468596bc5877c546b7c06fe
[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, bool out)
199 {
200         Counters & cnts =
201                 buffer().masterBuffer()->params().documentClass().counters();
202         string const saveflt = cnts.current_float();
203         bool const savesubflt = cnts.isSubfloat();
204
205         bool const subflt = (it.innerInsetOfType(FLOAT_CODE)
206                              || it.innerInsetOfType(WRAP_CODE));
207         // floats can only embed subfloats of their own kind
208         if (subflt)
209                 params_.type = saveflt;
210         setSubfloat(subflt);
211
212         // Tell to captions what the current float is
213         cnts.current_float(params().type);
214         cnts.isSubfloat(subflt);
215
216         InsetCollapsable::updateLabels(it, out);
217
218         //reset afterwards
219         cnts.current_float(saveflt);
220         cnts.isSubfloat(savesubflt);
221 }
222
223
224 void InsetFloatParams::write(ostream & os) const
225 {
226         os << "Float " << type << '\n';
227
228         if (!placement.empty())
229                 os << "placement " << placement << "\n";
230
231         if (wide)
232                 os << "wide true\n";
233         else
234                 os << "wide false\n";
235
236         if (sideways)
237                 os << "sideways true\n";
238         else
239                 os << "sideways false\n";
240 }
241
242
243 void InsetFloatParams::read(Lexer & lex)
244 {
245         lex.setContext("InsetFloatParams::read");
246         if (lex.checkFor("placement"))
247                 lex >> placement;
248         lex >> "wide" >> wide;
249         lex >> "sideways" >> sideways;
250 }
251
252
253 void InsetFloat::write(ostream & os) const
254 {
255         params_.write(os);
256         InsetCollapsable::write(os);
257 }
258
259
260 void InsetFloat::read(Lexer & lex)
261 {
262         params_.read(lex);
263         InsetCollapsable::read(lex);
264 }
265
266
267 void InsetFloat::validate(LaTeXFeatures & features) const
268 {
269         if (support::contains(params_.placement, 'H'))
270                 features.require("float");
271
272         if (params_.sideways)
273                 features.require("rotfloat");
274
275         if (features.inFloat())
276                 features.require("subfig");
277
278         features.useFloat(params_.type, features.inFloat());
279         features.inFloat(true);
280         InsetCollapsable::validate(features);
281         features.inFloat(false);
282 }
283
284
285 docstring InsetFloat::xhtml(XHTMLStream & xs, OutputParams const & rp) const
286 {
287         FloatList const & floats = buffer().params().documentClass().floats();
288         Floating const & ftype = floats.getType(params_.type);
289         string const & htmltype = ftype.htmlTag();
290         string const & attr = ftype.htmlAttrib();
291
292         odocstringstream ods;
293         XHTMLStream newxs(ods);
294         newxs << html::StartTag(htmltype, attr);
295         InsetText::XHTMLOptions const opts = 
296                 InsetText::WriteLabel | InsetText::WriteInnerTag;
297         docstring deferred = InsetText::insetAsXHTML(newxs, rp, opts);
298         newxs << html::EndTag(htmltype);
299
300         if (rp.inFloat == OutputParams::NONFLOAT)
301                 // In this case, this float needs to be deferred, but we'll put it
302                 // before anything the text itself deferred.
303                 deferred = ods.str() + '\n' + deferred;
304         else 
305                 // In this case, the whole thing is already being deferred, so
306                 // we can write to the stream.
307                 // Note that things will already have been escaped, so we do not 
308                 // want to escape them again.
309                 xs << XHTMLStream::NextRaw() << ods.str();
310         return deferred;
311 }
312
313
314 int InsetFloat::latex(odocstream & os, OutputParams const & runparams_in) const
315 {
316         if (runparams_in.inFloat != OutputParams::NONFLOAT) {
317                 if (runparams_in.moving_arg)
318                         os << "\\protect";
319                 os << "\\subfloat";
320         
321                 OutputParams rp = runparams_in;
322                 docstring const caption = getCaption(rp);
323                 if (!caption.empty()) {
324                         os << caption;
325                 }
326                 os << '{';
327                 rp.inFloat = OutputParams::SUBFLOAT;
328                 int const i = InsetText::latex(os, rp);
329                 os << "}";
330         
331                 return i + 1;
332         }
333         OutputParams runparams(runparams_in);
334         runparams.inFloat = OutputParams::MAINFLOAT;
335
336         FloatList const & floats = buffer().params().documentClass().floats();
337         string tmptype = params_.type;
338         if (params_.sideways)
339                 tmptype = "sideways" + params_.type;
340         if (params_.wide && (!params_.sideways ||
341                              params_.type == "figure" ||
342                              params_.type == "table"))
343                 tmptype += "*";
344         // Figure out the float placement to use.
345         // From lowest to highest:
346         // - float default placement
347         // - document wide default placement
348         // - specific float placement
349         string placement;
350         string const buf_placement = buffer().params().float_placement;
351         string const def_placement = floats.defaultPlacement(params_.type);
352         if (!params_.placement.empty()
353             && params_.placement != def_placement) {
354                 placement = params_.placement;
355         } else if (params_.placement.empty()
356                    && !buf_placement.empty()
357                    && buf_placement != def_placement) {
358                 placement = buf_placement;
359         }
360
361         // The \n is used to force \begin{<floatname>} to appear in a new line.
362         // The % is needed to prevent two consecutive \n chars in the case
363         // when the current output line is empty.
364         os << "%\n\\begin{" << from_ascii(tmptype) << '}';
365         // We only output placement if different from the def_placement.
366         // sidewaysfloats always use their own page
367         if (!placement.empty() && !params_.sideways) {
368                 os << '[' << from_ascii(placement) << ']';
369         }
370         os << '\n';
371
372         int const i = InsetText::latex(os, runparams);
373
374         // The \n is used to force \end{<floatname>} to appear in a new line.
375         // In this case, we do not case if the current output line is empty.
376         os << "\n\\end{" << from_ascii(tmptype) << "}\n";
377
378         return i + 4;
379 }
380
381
382 int InsetFloat::plaintext(odocstream & os, OutputParams const & runparams) const
383 {
384         os << '[' << buffer().B_("float") << ' '
385                 << floatName(params_.type) << ":\n";
386         InsetText::plaintext(os, runparams);
387         os << "\n]";
388
389         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
390 }
391
392
393 int InsetFloat::docbook(odocstream & os, OutputParams const & runparams) const
394 {
395         // FIXME Implement subfloat!
396         // FIXME UNICODE
397         os << '<' << from_ascii(params_.type) << '>';
398         int const i = InsetText::docbook(os, runparams);
399         os << "</" << from_ascii(params_.type) << '>';
400
401         return i;
402 }
403
404
405 bool InsetFloat::insetAllowed(InsetCode code) const
406 {
407         // The case that code == FLOAT_CODE is handled in Text3.cpp, 
408         // because we need to know what type of float is meant.
409         switch(code) {
410         case WRAP_CODE:
411         case FOOT_CODE:
412         case MARGIN_CODE:
413                 return false;
414         default:
415                 return InsetCollapsable::insetAllowed(code);
416         }
417 }
418
419
420 bool InsetFloat::showInsetDialog(BufferView * bv) const
421 {
422         if (!InsetText::showInsetDialog(bv))
423                 bv->showDialog("float", params2string(params()),
424                         const_cast<InsetFloat *>(this));
425         return true;
426 }
427
428
429 void InsetFloat::setWide(bool w, bool update_label)
430 {
431         params_.wide = w;
432         if (update_label)
433                 setNewLabel();
434 }
435
436
437 void InsetFloat::setSideways(bool s, bool update_label)
438 {
439         params_.sideways = s;
440         if (update_label)
441                 setNewLabel();
442 }
443
444
445 void InsetFloat::setSubfloat(bool s, bool update_label)
446 {
447         params_.subfloat = s;
448         if (update_label)
449                 setNewLabel();
450 }
451
452
453 void InsetFloat::setNewLabel()
454 {
455         docstring lab = _("float: ");
456
457         if (params_.subfloat)
458                 lab = _("subfloat: ");
459
460         lab += floatName(params_.type);
461
462         if (params_.wide)
463                 lab += '*';
464
465         if (params_.sideways)
466                 lab += _(" (sideways)");
467
468         setLabel(lab);
469 }
470
471
472 docstring InsetFloat::getCaption(OutputParams const & runparams) const
473 {
474         if (paragraphs().empty())
475                 return docstring();
476
477         InsetCaption const * ins = getCaptionInset();
478         if (ins == 0)
479                 return docstring();
480
481         odocstringstream ods;
482         ins->getOptArg(ods, runparams);
483         ods << '[';
484         ins->getArgument(ods, runparams);
485         ods << ']';
486         return ods.str();
487 }
488
489
490 void InsetFloat::string2params(string const & in, InsetFloatParams & params)
491 {
492         params = InsetFloatParams();
493         if (in.empty())
494                 return;
495
496         istringstream data(in);
497         Lexer lex;
498         lex.setStream(data);
499         lex.setContext("InsetFloat::string2params");
500         lex >> "float" >> "Float";
501         lex >> params.type; // We have to read the type here!
502         params.read(lex);
503 }
504
505
506 string InsetFloat::params2string(InsetFloatParams const & params)
507 {
508         ostringstream data;
509         data << "float" << ' ';
510         params.write(data);
511         return data.str();
512 }
513
514
515 } // namespace lyx