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