]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFloat.cpp
4cec685bd02ee73920cdcdbe9f72eac5e751eacd
[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 "OutputParams.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 const & buf, string const & type)
115         : InsetCollapsable(buf), name_(from_utf8(type))
116 {
117         setLabel(_("float: ") + floatName(type, buf.params()));
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                         setWide(params_.wide, cur.buffer()->params(), false);
158                         setSideways(params_.sideways, cur.buffer()->params(), false);
159                 }
160
161                 setNewLabel(cur.buffer()->params());
162                 break;
163         }
164
165         case LFUN_INSET_DIALOG_UPDATE: {
166                 cur.bv().updateDialog("float", params2string(params()));
167                 break;
168         }
169
170         default:
171                 InsetCollapsable::doDispatch(cur, cmd);
172                 break;
173         }
174 }
175
176
177 bool InsetFloat::getStatus(Cursor & cur, FuncRequest const & cmd,
178                 FuncStatus & flag) const
179 {
180         switch (cmd.action) {
181
182         case LFUN_INSET_MODIFY:
183         case LFUN_INSET_DIALOG_UPDATE:
184                 flag.setEnabled(true);
185                 return true;
186
187         default:
188                 return InsetCollapsable::getStatus(cur, cmd, flag);
189         }
190 }
191
192
193 void InsetFloat::updateLabels(ParIterator const & it)
194 {
195         Counters & cnts =
196                 buffer().masterBuffer()->params().documentClass().counters();
197         string const saveflt = cnts.current_float();
198         bool const savesubflt = cnts.isSubfloat();
199
200         bool const subflt = (it.innerInsetOfType(FLOAT_CODE)
201                              || it.innerInsetOfType(WRAP_CODE));
202         // floats can only embed subfloats of their own kind
203         if (subflt)
204                 params_.type = saveflt;
205         setSubfloat(subflt, buffer().params());
206
207         // Tell to captions what the current float is
208         cnts.current_float(params().type);
209         cnts.isSubfloat(subflt);
210
211         InsetCollapsable::updateLabels(it);
212
213         //reset afterwards
214         cnts.current_float(saveflt);
215         cnts.isSubfloat(savesubflt);
216 }
217
218
219 void InsetFloatParams::write(ostream & os) const
220 {
221         os << "Float " << type << '\n';
222
223         if (!placement.empty())
224                 os << "placement " << placement << "\n";
225
226         if (wide)
227                 os << "wide true\n";
228         else
229                 os << "wide false\n";
230
231         if (sideways)
232                 os << "sideways true\n";
233         else
234                 os << "sideways false\n";
235 }
236
237
238 void InsetFloatParams::read(Lexer & lex)
239 {
240         lex.setContext("InsetFloatParams::read");
241         if (lex.checkFor("placement"))
242                 lex >> placement;
243         lex >> "wide" >> wide;
244         lex >> "sideways" >> sideways;
245 }
246
247
248 void InsetFloat::write(ostream & os) const
249 {
250         params_.write(os);
251         InsetCollapsable::write(os);
252 }
253
254
255 void InsetFloat::read(Lexer & lex)
256 {
257         params_.read(lex);
258         InsetCollapsable::read(lex);
259 }
260
261
262 void InsetFloat::validate(LaTeXFeatures & features) const
263 {
264         if (support::contains(params_.placement, 'H'))
265                 features.require("float");
266
267         if (params_.sideways)
268                 features.require("rotfloat");
269
270         if (features.inFloat())
271                 features.require("subfig");
272
273         features.useFloat(params_.type, features.inFloat());
274         features.inFloat(true);
275         InsetCollapsable::validate(features);
276         features.inFloat(false);
277 }
278
279
280 docstring InsetFloat::editMessage() const
281 {
282         return _("Opened Float Inset");
283 }
284
285
286 docstring InsetFloat::xhtml(odocstream & os, OutputParams const & rp) const
287 {
288         FloatList const & floats = buffer().params().documentClass().floats();
289         Floating const & ftype = floats.getType(params_.type);
290         string const htmltype = ftype.htmlType().empty() ? 
291                         "div" : ftype.htmlType();
292         string const htmlclass = ftype.htmlClass().empty() ?
293                         "float-" + params_.type : ftype.htmlClass();
294         docstring const otag = 
295                         from_ascii("<" + htmltype + " class='float " + htmlclass + "'>\n");
296         docstring const ctag = from_ascii("</" + htmltype + ">\n");
297
298         odocstringstream out;
299
300         docstring caption = getCaptionHTML(rp);
301         out << otag;
302         if (!caption.empty())
303                 out << "<div class='float-caption'>" << caption << "</div>\n";
304
305         docstring def = InsetText::xhtml(out, rp);
306         out << ctag;
307
308         if (rp.inFloat == OutputParams::NONFLOAT)
309                 // In this case, this float needs to be deferred, but we'll put it
310                 // before anything the text itself deferred.
311                 def = out.str() + '\n' + def;
312         else 
313                 // In this case, the whole thing is already being deferred, so
314                 // we can write to the stream.
315                 os << out.str();
316         return def;
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, buffer().params()) << ":\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         return code != FOOT_CODE
414             && code != MARGIN_CODE
415             && (code != FLOAT_CODE || !params_.subfloat);
416 }
417
418
419 bool InsetFloat::showInsetDialog(BufferView * bv) const
420 {
421         if (!InsetText::showInsetDialog(bv))
422                 bv->showDialog("float", params2string(params()),
423                         const_cast<InsetFloat *>(this));
424         return true;
425 }
426
427
428 void InsetFloat::setWide(bool w, BufferParams const & bp, bool update_label)
429 {
430         params_.wide = w;
431         if (update_label)
432                 setNewLabel(bp);
433 }
434
435
436 void InsetFloat::setSideways(bool s, BufferParams const & bp, bool update_label)
437 {
438         params_.sideways = s;
439         if (update_label)
440                 setNewLabel(bp);
441 }
442
443
444 void InsetFloat::setSubfloat(bool s, BufferParams const & bp, bool update_label)
445 {
446         params_.subfloat = s;
447         if (update_label)
448                 setNewLabel(bp);
449 }
450
451
452 void InsetFloat::setNewLabel(BufferParams const & bp)
453 {
454         docstring lab = _("float: ");
455
456         if (params_.subfloat)
457                 lab = _("subfloat: ");
458
459         lab += floatName(params_.type, bp);
460
461         if (params_.wide)
462                 lab += '*';
463
464         if (params_.sideways)
465                 lab += _(" (sideways)");
466
467         setLabel(lab);
468 }
469
470
471 docstring InsetFloat::getCaption(OutputParams const & runparams) const
472 {
473         if (paragraphs().empty())
474                 return docstring();
475
476         InsetCaption const * ins = getCaptionInset();
477         if (ins == 0)
478                 return docstring();
479
480         odocstringstream ods;
481         ins->getOptArg(ods, runparams);
482         ods << '[';
483         ins->getArgument(ods, runparams);
484         ods << ']';
485         return ods.str();
486 }
487
488
489 docstring InsetFloat::getCaptionText(OutputParams const & runparams) const
490 {
491         if (paragraphs().empty())
492                 return docstring();
493
494         InsetCaption const * ins = getCaptionInset();
495         if (ins == 0)
496                 return docstring();
497
498         odocstringstream ods;
499         ins->getCaptionText(ods, runparams);
500         return ods.str();
501 }
502
503
504 docstring InsetFloat::getCaptionHTML(OutputParams const & runparams) const
505 {
506         if (paragraphs().empty())
507                 return docstring();
508
509         InsetCaption const * ins = getCaptionInset();
510         if (ins == 0)
511                 return docstring();
512
513         odocstringstream ods;
514         docstring def = ins->getCaptionHTML(ods, runparams);
515         if (!def.empty())
516                 ods << def << '\n';
517         return ods.str();
518 }
519
520
521 void InsetFloat::string2params(string const & in, InsetFloatParams & params)
522 {
523         params = InsetFloatParams();
524         if (in.empty())
525                 return;
526
527         istringstream data(in);
528         Lexer lex;
529         lex.setStream(data);
530         lex.setContext("InsetFloat::string2params");
531         lex >> "float" >> "Float";
532         lex >> params.type; // We have to read the type here!
533         params.read(lex);
534 }
535
536
537 string InsetFloat::params2string(InsetFloatParams const & params)
538 {
539         ostringstream data;
540         data << "float" << ' ';
541         params.write(data);
542         return data.str();
543 }
544
545
546 } // namespace lyx