]> git.lyx.org Git - features.git/blob - src/insets/InsetFloat.cpp
f9c0a4d61189f5b188bee22c1e22867707f3fb88
[features.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         InsetCollapsable::read(lex);
260 }
261
262
263 void InsetFloat::validate(LaTeXFeatures & features) const
264 {
265         if (support::contains(params_.placement, 'H'))
266                 features.require("float");
267
268         if (params_.sideways)
269                 features.require("rotfloat");
270
271         if (params_.subfloat)
272                 features.require("subfig");
273
274         features.useFloat(params_.type, params_.subfloat);
275         InsetCollapsable::validate(features);
276 }
277
278
279 docstring InsetFloat::editMessage() const
280 {
281         return _("Opened Float Inset");
282 }
283
284
285 int InsetFloat::latex(odocstream & os, OutputParams const & runparams) const
286 {
287         if (params_.subfloat) {
288                 if (runparams.moving_arg)
289                         os << "\\protect";
290                 os << "\\subfloat";
291         
292                 OutputParams rp = runparams;
293                 docstring const caption = getCaption(rp);
294                 if (!caption.empty()) {
295                         os << caption;
296                 }
297                 os << '{';
298                 int const i = InsetText::latex(os, runparams);
299                 os << "}";
300         
301                 return i + 1;
302         }
303
304         FloatList const & floats = buffer().params().documentClass().floats();
305         string tmptype = params_.type;
306         if (params_.sideways)
307                 tmptype = "sideways" + params_.type;
308         if (params_.wide && (!params_.sideways ||
309                              params_.type == "figure" ||
310                              params_.type == "table"))
311                 tmptype += "*";
312         // Figure out the float placement to use.
313         // From lowest to highest:
314         // - float default placement
315         // - document wide default placement
316         // - specific float placement
317         string placement;
318         string const buf_placement = buffer().params().float_placement;
319         string const def_placement = floats.defaultPlacement(params_.type);
320         if (!params_.placement.empty()
321             && params_.placement != def_placement) {
322                 placement = params_.placement;
323         } else if (params_.placement.empty()
324                    && !buf_placement.empty()
325                    && buf_placement != def_placement) {
326                 placement = buf_placement;
327         }
328
329         // The \n is used to force \begin{<floatname>} to appear in a new line.
330         // The % is needed to prevent two consecutive \n chars in the case
331         // when the current output line is empty.
332         os << "%\n\\begin{" << from_ascii(tmptype) << '}';
333         // We only output placement if different from the def_placement.
334         // sidewaysfloats always use their own page
335         if (!placement.empty() && !params_.sideways) {
336                 os << '[' << from_ascii(placement) << ']';
337         }
338         os << '\n';
339
340         int const i = InsetText::latex(os, runparams);
341
342         // The \n is used to force \end{<floatname>} to appear in a new line.
343         // In this case, we do not case if the current output line is empty.
344         os << "\n\\end{" << from_ascii(tmptype) << "}\n";
345
346         return i + 4;
347 }
348
349
350 int InsetFloat::plaintext(odocstream & os, OutputParams const & runparams) const
351 {
352         os << '[' << buffer().B_("float") << ' '
353                 << floatName(params_.type, buffer().params()) << ":\n";
354         InsetText::plaintext(os, runparams);
355         os << "\n]";
356
357         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
358 }
359
360
361 int InsetFloat::docbook(odocstream & os, OutputParams const & runparams) const
362 {
363         // FIXME Implement subfloat!
364         // FIXME UNICODE
365         os << '<' << from_ascii(params_.type) << '>';
366         int const i = InsetText::docbook(os, runparams);
367         os << "</" << from_ascii(params_.type) << '>';
368
369         return i;
370 }
371
372
373 bool InsetFloat::insetAllowed(InsetCode code) const
374 {
375         return code != FOOT_CODE
376             && code != MARGIN_CODE
377             && (code != FLOAT_CODE || !params_.subfloat);
378 }
379
380
381 bool InsetFloat::showInsetDialog(BufferView * bv) const
382 {
383         if (!InsetText::showInsetDialog(bv))
384                 bv->showDialog("float", params2string(params()),
385                         const_cast<InsetFloat *>(this));
386         return true;
387 }
388
389
390 void InsetFloat::setWide(bool w, BufferParams const & bp, bool update_label)
391 {
392         params_.wide = w;
393         if (update_label)
394                 setNewLabel(bp);
395 }
396
397
398 void InsetFloat::setSideways(bool s, BufferParams const & bp, bool update_label)
399 {
400         params_.sideways = s;
401         if (update_label)
402                 setNewLabel(bp);
403 }
404
405
406 void InsetFloat::setSubfloat(bool s, BufferParams const & bp, bool update_label)
407 {
408         params_.subfloat = s;
409         if (update_label)
410                 setNewLabel(bp);
411 }
412
413
414 void InsetFloat::setNewLabel(BufferParams const & bp)
415 {
416         docstring lab = _("float: ");
417
418         if (params_.subfloat)
419                 lab = _("subfloat: ");
420
421         lab += floatName(params_.type, bp);
422
423         if (params_.wide)
424                 lab += '*';
425
426         if (params_.sideways)
427                 lab += _(" (sideways)");
428
429         setLabel(lab);
430 }
431
432
433 docstring InsetFloat::getCaption(OutputParams const & runparams) const
434 {
435         if (paragraphs().empty())
436                 return docstring();
437
438         ParagraphList::const_iterator pit = paragraphs().begin();
439         for (; pit != paragraphs().end(); ++pit) {
440                 InsetList::const_iterator it = pit->insetList().begin();
441                 for (; it != pit->insetList().end(); ++it) {
442                         Inset & inset = *it->inset;
443                         if (inset.lyxCode() == CAPTION_CODE) {
444                                 odocstringstream ods;
445                                 InsetCaption * ins =
446                                         static_cast<InsetCaption *>(it->inset);
447                                 ins->getOptArg(ods, runparams);
448                                 ods << '[';
449                                 ins->getArgument(ods, runparams);
450                                 ods << ']';
451                                 return ods.str();
452                         }
453                 }
454         }
455         return docstring();
456 }
457
458
459 docstring InsetFloat::getCaptionText(OutputParams const & runparams) const
460 {
461         if (paragraphs().empty())
462                 return docstring();
463
464         ParagraphList::const_iterator pit = paragraphs().begin();
465         for (; pit != paragraphs().end(); ++pit) {
466                 InsetList::const_iterator it = pit->insetList().begin();
467                 for (; it != pit->insetList().end(); ++it) {
468                         Inset & inset = *it->inset;
469                         if (inset.lyxCode() == CAPTION_CODE) {
470                                 odocstringstream ods;
471                                 InsetCaption * ins =
472                                         static_cast<InsetCaption *>(it->inset);
473                                 ins->getCaptionText(ods, runparams);
474                                 return ods.str();
475                         }
476                 }
477         }
478         return docstring();
479 }
480
481
482 void InsetFloat::string2params(string const & in, InsetFloatParams & params)
483 {
484         params = InsetFloatParams();
485         if (in.empty())
486                 return;
487
488         istringstream data(in);
489         Lexer lex;
490         lex.setStream(data);
491         lex.setContext("InsetFloat::string2params");
492         lex >> "float" >> "Float";
493         lex >> params.type; // We have to read the type here!
494         params.read(lex);
495 }
496
497
498 string InsetFloat::params2string(InsetFloatParams const & params)
499 {
500         ostringstream data;
501         data << "float" << ' ';
502         params.write(data);
503         return data.str();
504 }
505
506
507 } // namespace lyx