]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFloat.cpp
4ba774314e9d861effbfb1e3a4b34ee80f1bd83e
[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/gettext.h"
38 #include "support/lstrings.h"
39 #include "support/docstream.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 void InsetFloat::doDispatch(Cursor & cur, FuncRequest & cmd)
131 {
132         switch (cmd.action) {
133
134         case LFUN_INSET_MODIFY: {
135                 InsetFloatParams params;
136                 string2params(to_utf8(cmd.argument()), params);
137                 params_.placement = params.placement;
138                 params_.wide      = params.wide;
139                 params_.sideways  = params.sideways;
140                 params_.subfloat  = params.subfloat;
141                 setWide(params_.wide, cur.buffer().params());
142                 setSideways(params_.sideways, cur.buffer().params());
143                 break;
144         }
145
146         case LFUN_INSET_DIALOG_UPDATE: {
147                 cur.bv().updateDialog("float", params2string(params()));
148                 break;
149         }
150
151         default:
152                 InsetCollapsable::doDispatch(cur, cmd);
153                 break;
154         }
155 }
156
157
158 bool InsetFloat::getStatus(Cursor & cur, FuncRequest const & cmd,
159                 FuncStatus & flag) const
160 {
161         switch (cmd.action) {
162
163         case LFUN_INSET_MODIFY:
164         case LFUN_INSET_DIALOG_UPDATE:
165                 flag.enabled(true);
166                 return true;
167
168         default:
169                 return InsetCollapsable::getStatus(cur, cmd, flag);
170         }
171 }
172
173
174 void InsetFloat::updateLabels(ParIterator const & it)
175 {
176         Counters & cnts = buffer().params().documentClass().counters();
177         string const saveflt = cnts.current_float();
178         bool const savesubflt = cnts.isSubfloat();
179
180         bool const subflt = it.innerInsetOfType(FLOAT_CODE);
181         // floats can only embed subfloats of their own kind
182         if (subflt)
183                 params_.type = saveflt;
184         setSubfloat(subflt, buffer().params());
185
186         // Tell to captions what the current float is
187         cnts.current_float(params().type);
188         cnts.isSubfloat(subflt);
189
190         InsetCollapsable::updateLabels(it);
191
192         //reset afterwards
193         cnts.current_float(saveflt);
194         cnts.isSubfloat(savesubflt);
195 }
196
197
198 void InsetFloatParams::write(ostream & os) const
199 {
200         os << "Float " << type << '\n';
201
202         if (!placement.empty())
203                 os << "placement " << placement << "\n";
204
205         if (wide)
206                 os << "wide true\n";
207         else
208                 os << "wide false\n";
209
210         if (sideways)
211                 os << "sideways true\n";
212         else
213                 os << "sideways false\n";
214 }
215
216
217 void InsetFloatParams::read(Lexer & lex)
218 {
219         lex.setContext("InsetFloatParams::read");
220         if (lex.checkFor("placement"))
221                 lex >> placement;
222         lex >> "wide" >> wide;
223         lex >> "sideways" >> sideways;
224 }
225
226
227 void InsetFloat::write(ostream & os) const
228 {
229         params_.write(os);
230         InsetCollapsable::write(os);
231 }
232
233
234 void InsetFloat::read(Lexer & lex)
235 {
236         params_.read(lex);
237         setWide(params_.wide, buffer().params());
238         setSideways(params_.sideways, buffer().params());
239         setSubfloat(params_.subfloat, buffer().params());
240         InsetCollapsable::read(lex);
241 }
242
243
244 void InsetFloat::validate(LaTeXFeatures & features) const
245 {
246         if (support::contains(params_.placement, 'H'))
247                 features.require("float");
248
249         if (params_.sideways)
250                 features.require("rotfloat");
251
252         if (params_.subfloat)
253                 features.require("subfig");
254
255         features.useFloat(params_.type, params_.subfloat);
256         InsetCollapsable::validate(features);
257 }
258
259
260 docstring InsetFloat::editMessage() const
261 {
262         return _("Opened Float Inset");
263 }
264
265
266 int InsetFloat::latex(odocstream & os, OutputParams const & runparams) const
267 {
268         if (params_.subfloat) {
269                 if (runparams.moving_arg)
270                         os << "\\protect";
271                 os << "\\subfloat";
272         
273                 OutputParams rp = runparams;
274                 docstring const caption = getCaption(rp);
275                 if (!caption.empty()) {
276                         os << caption;
277                 }
278                 os << '{';
279                 int const i = InsetText::latex(os, runparams);
280                 os << "}";
281         
282                 return i + 1;
283         }
284
285         FloatList const & floats = buffer().params().documentClass().floats();
286         string tmptype = params_.type;
287         if (params_.sideways)
288                 tmptype = "sideways" + params_.type;
289         if (params_.wide && (!params_.sideways ||
290                              params_.type == "figure" ||
291                              params_.type == "table"))
292                 tmptype += "*";
293         // Figure out the float placement to use.
294         // From lowest to highest:
295         // - float default placement
296         // - document wide default placement
297         // - specific float placement
298         string placement;
299         string const buf_placement = buffer().params().float_placement;
300         string const def_placement = floats.defaultPlacement(params_.type);
301         if (!params_.placement.empty()
302             && params_.placement != def_placement) {
303                 placement = params_.placement;
304         } else if (params_.placement.empty()
305                    && !buf_placement.empty()
306                    && buf_placement != def_placement) {
307                 placement = buf_placement;
308         }
309
310         // The \n is used to force \begin{<floatname>} to appear in a new line.
311         // The % is needed to prevent two consecutive \n chars in the case
312         // when the current output line is empty.
313         os << "%\n\\begin{" << from_ascii(tmptype) << '}';
314         // We only output placement if different from the def_placement.
315         // sidewaysfloats always use their own page
316         if (!placement.empty() && !params_.sideways) {
317                 os << '[' << from_ascii(placement) << ']';
318         }
319         os << '\n';
320
321         int const i = InsetText::latex(os, runparams);
322
323         // The \n is used to force \end{<floatname>} to appear in a new line.
324         // In this case, we do not case if the current output line is empty.
325         os << "\n\\end{" << from_ascii(tmptype) << "}\n";
326
327         return i + 4;
328 }
329
330
331 int InsetFloat::plaintext(odocstream & os, OutputParams const & runparams) const
332 {
333         os << '[' << buffer().B_("float") << ' '
334                 << floatName(params_.type, buffer().params()) << ":\n";
335         InsetText::plaintext(os, runparams);
336         os << "\n]";
337
338         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
339 }
340
341
342 int InsetFloat::docbook(odocstream & os, OutputParams const & runparams) const
343 {
344         // FIXME Implement subfloat!
345         // FIXME UNICODE
346         os << '<' << from_ascii(params_.type) << '>';
347         int const i = InsetText::docbook(os, runparams);
348         os << "</" << from_ascii(params_.type) << '>';
349
350         return i;
351 }
352
353
354 bool InsetFloat::insetAllowed(InsetCode code) const
355 {
356         return code != FOOT_CODE
357             && code != MARGIN_CODE
358             && (code != FLOAT_CODE || !params_.subfloat);
359 }
360
361
362 bool InsetFloat::showInsetDialog(BufferView * bv) const
363 {
364         if (!InsetText::showInsetDialog(bv))
365                 bv->showDialog("float", params2string(params()),
366                         const_cast<InsetFloat *>(this));
367         return true;
368 }
369
370
371 void InsetFloat::setWide(bool w, BufferParams const & bp)
372 {
373         params_.wide = w;
374         docstring lab = _("float: ") + floatName(params_.type, bp);
375         if (params_.wide)
376                 lab += '*';
377         setLabel(lab);
378 }
379
380
381 void InsetFloat::setSideways(bool s, BufferParams const & bp)
382 {
383         params_.sideways = s;
384         docstring lab = _("float: ") + floatName(params_.type, bp);
385         if (params_.sideways)
386                 lab += _(" (sideways)");
387         setLabel(lab);
388 }
389
390
391 void InsetFloat::setSubfloat(bool s, BufferParams const & bp)
392 {
393         params_.subfloat = s;
394         docstring lab = _("float: ") + floatName(params_.type, bp);
395         if (s)
396                 lab = _("subfloat: ") + floatName(params_.type, bp);
397         setLabel(lab);
398 }
399
400
401 docstring InsetFloat::getCaption(OutputParams const & runparams) const
402 {
403         if (paragraphs().empty())
404                 return docstring();
405
406         ParagraphList::const_iterator pit = paragraphs().begin();
407         for (; pit != paragraphs().end(); ++pit) {
408                 InsetList::const_iterator it = pit->insetList().begin();
409                 for (; it != pit->insetList().end(); ++it) {
410                         Inset & inset = *it->inset;
411                         if (inset.lyxCode() == CAPTION_CODE) {
412                                 odocstringstream ods;
413                                 InsetCaption * ins =
414                                         static_cast<InsetCaption *>(it->inset);
415                                 ins->getOptArg(ods, runparams);
416                                 ods << '[';
417                                 ins->getArgument(ods, runparams);
418                                 ods << ']';
419                                 return ods.str();
420                         }
421                 }
422         }
423         return docstring();
424 }
425
426
427 void InsetFloat::string2params(string const & in, InsetFloatParams & params)
428 {
429         params = InsetFloatParams();
430         if (in.empty())
431                 return;
432
433         istringstream data(in);
434         Lexer lex;
435         lex.setStream(data);
436         lex.setContext("InsetFloat::string2params");
437         lex >> "float" >> "Float";
438         lex >> params.type; // We have to read the type here!
439         params.read(lex);
440 }
441
442
443 string InsetFloat::params2string(InsetFloatParams const & params)
444 {
445         ostringstream data;
446         data << "float" << ' ';
447         params.write(data);
448         return data.str();
449 }
450
451
452 } // namespace lyx