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