]> git.lyx.org Git - lyx.git/blob - src/insets/insetfloat.C
9fa54c073f20403c2ba7cfb833866834b80e9f8c
[lyx.git] / src / insets / insetfloat.C
1 /**
2  * \file insetfloat.C
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  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #include <config.h>
13
14 #include "insetfloat.h"
15 #include "insettext.h"
16
17 #include "buffer.h"
18 #include "BufferView.h"
19 #include "debug.h"
20 #include "Floating.h"
21 #include "FloatList.h"
22 #include "funcrequest.h"
23 #include "gettext.h"
24 #include "iterators.h"
25 #include "LaTeXFeatures.h"
26 #include "Lsstream.h"
27 #include "lyxfont.h"
28 #include "lyxlex.h"
29 #include "lyxtext.h"
30 #include "Lsstream.h"
31
32 #include "support/LOstream.h"
33 #include "support/lstrings.h"
34 #include "support/tostr.h"
35
36 #include "frontends/LyXView.h"
37 #include "frontends/Dialogs.h"
38
39 using namespace lyx::support;
40
41 using std::ostream;
42 using std::endl;
43 using std::auto_ptr;
44
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 namespace {
114
115 // this should not be hardcoded, but be part of the definition
116 // of the float (JMarc)
117 string const caplayout("Caption");
118
119 string floatname(string const & type, BufferParams const & bp)
120 {
121         FloatList const & floats = bp.getLyXTextClass().floats();
122         FloatList::const_iterator it = floats[type];
123         if (it == floats.end())
124                 return type;
125
126         return _(it->second.name());
127 }
128
129 } // namespace anon
130
131
132 InsetFloat::InsetFloat(BufferParams const & bp, string const & type)
133         : InsetCollapsable(bp)
134 {
135         string lab(_("float: "));
136         lab += floatname(type, bp);
137         setLabel(lab);
138         LyXFont font(LyXFont::ALL_SANE);
139         font.decSize();
140         font.decSize();
141         font.setColor(LColor::collapsable);
142         setLabelFont(font);
143         params_.type = type;
144         setInsetName(type);
145         LyXTextClass const & tclass = bp.getLyXTextClass();
146         if (tclass.hasLayout(caplayout))
147                 inset.paragraphs.begin()->layout(tclass[caplayout]);
148 }
149
150
151 InsetFloat::InsetFloat(InsetFloat const & in)
152         : InsetCollapsable(in), params_(in.params_)
153 {}
154
155
156 InsetFloat::~InsetFloat()
157 {
158         InsetFloatMailer mailer(*this);
159         mailer.hideDialog();
160 }
161
162
163 dispatch_result InsetFloat::localDispatch(FuncRequest const & cmd)
164 {
165         Inset::RESULT result = UNDISPATCHED;
166
167         switch (cmd.action) {
168         case LFUN_INSET_MODIFY: {
169                 InsetFloatParams params;
170                 InsetFloatMailer::string2params(cmd.argument, params);
171
172                 params_.placement = params.placement;
173                 params_.wide      = params.wide;
174
175                 wide(params_.wide, cmd.view()->buffer()->params);
176                 cmd.view()->updateInset(this);
177                 result = DISPATCHED;
178         }
179         break;
180
181         case LFUN_INSET_DIALOG_UPDATE: {
182                 InsetFloatMailer mailer(*this);
183                 mailer.updateDialog(cmd.view());
184         }
185         break;
186
187         default:
188                 result = InsetCollapsable::localDispatch(cmd);
189         }
190
191         return result;
192 }
193
194
195 void InsetFloatParams::write(ostream & os) const
196 {
197         os << "Float " // getInsetName()
198            << type << '\n';
199
200         if (!placement.empty()) {
201                 os << "placement " << placement << "\n";
202         }
203         if (wide) {
204                 os << "wide true\n";
205         } else {
206                 os << "wide false\n";
207         }
208 }
209
210
211 void InsetFloatParams::read(LyXLex & lex)
212 {
213         if (lex.isOK()) {
214                 lex.next();
215                 string token = lex.getString();
216                 if (token == "placement") {
217                         lex.next();
218                         placement = lex.getString();
219                 } else {
220                         // take countermeasures
221                         lex.pushToken(token);
222                 }
223                 lex.next();
224                 token = lex.getString();
225                 if (token == "wide") {
226                         lex.next();
227                         string const tmptoken = lex.getString();
228                         wide = (tmptoken == "true");
229                 } else {
230                         lyxerr << "InsetFloat::Read:: Missing wide!"
231                                << endl;
232                         // take countermeasures
233                         lex.pushToken(token);
234                 }
235         }
236 }
237
238
239 void InsetFloat::write(Buffer const * buf, ostream & os) const
240 {
241         params_.write(os);
242         InsetCollapsable::write(buf, os);
243 }
244
245
246 void InsetFloat::read(Buffer const * buf, LyXLex & lex)
247 {
248         params_.read(lex);
249         wide(params_.wide, buf->params);
250         InsetCollapsable::read(buf, lex);
251 }
252
253
254 void InsetFloat::validate(LaTeXFeatures & features) const
255 {
256         if (contains(params_.placement, "H")) {
257                 features.require("float");
258         }
259
260         features.useFloat(params_.type);
261         InsetCollapsable::validate(features);
262 }
263
264
265 auto_ptr<InsetBase> InsetFloat::clone() const
266 {
267         return auto_ptr<InsetBase>(new InsetFloat(*this));
268 }
269
270
271 string const InsetFloat::editMessage() const
272 {
273         return _("Opened Float Inset");
274 }
275
276
277 int InsetFloat::latex(Buffer const * buf, ostream & os,
278                       LatexRunParams const & runparams) const
279 {
280         FloatList const & floats = buf->params.getLyXTextClass().floats();
281         string const tmptype = (params_.wide ? params_.type + "*" : params_.type);
282         // Figure out the float placement to use.
283         // From lowest to highest:
284         // - float default placement
285         // - document wide default placement
286         // - specific float placement
287         string placement;
288         string const buf_placement = buf->params.float_placement;
289         string const def_placement = floats.defaultPlacement(params_.type);
290         if (!params_.placement.empty()
291             && params_.placement != def_placement) {
292                 placement = params_.placement;
293         } else if (params_.placement.empty()
294                    && !buf_placement.empty()
295                    && buf_placement != def_placement) {
296                 placement = buf_placement;
297         }
298
299         // The \n is used to force \begin{<floatname>} to appear in a new line.
300         // The % is needed to prevent two consecutive \n chars in the case
301         // when the current output line is empty.
302         os << "%\n\\begin{" << tmptype << '}';
303         // We only output placement if different from the def_placement.
304         if (!placement.empty()) {
305                 os << '[' << placement << ']';
306         }
307         os << '\n';
308
309         int const i = inset.latex(buf, os, runparams);
310
311         // The \n is used to force \end{<floatname>} to appear in a new line.
312         // In this case, we do not case if the current output line is empty.
313         os << "\n\\end{" << tmptype << "}\n";
314
315         return i + 4;
316 }
317
318
319 int InsetFloat::docbook(Buffer const * buf, ostream & os, bool mixcont) const
320 {
321         os << '<' << params_.type << '>';
322         int const i = inset.docbook(buf, os, mixcont);
323         os << "</" << params_.type << '>';
324
325         return i;
326 }
327
328
329 bool InsetFloat::insetAllowed(Inset::Code code) const
330 {
331         if (code == Inset::FLOAT_CODE)
332                 return false;
333         if (inset.getLockingInset() != const_cast<InsetFloat *>(this))
334                 return inset.insetAllowed(code);
335         if ((code == Inset::FOOT_CODE) || (code == Inset::MARGIN_CODE))
336                 return false;
337         return true;
338 }
339
340
341 bool InsetFloat::showInsetDialog(BufferView * bv) const
342 {
343         if (!inset.showInsetDialog(bv)) {
344                 InsetFloat * tmp = const_cast<InsetFloat *>(this);
345                 InsetFloatMailer mailer(*tmp);
346                 mailer.showDialog(bv);
347         }
348         return true;
349 }
350
351
352 void InsetFloat::wide(bool w, BufferParams const & bp)
353 {
354         params_.wide = w;
355
356         string lab(_("float:"));
357         lab += floatname(params_.type, bp);
358
359         if (params_.wide)
360                 lab += '*';
361
362         setLabel(lab);
363 }
364
365
366 void InsetFloat::addToToc(toc::TocList & toclist, Buffer const * buf) const
367 {
368         ParIterator pit(inset.paragraphs.begin(), inset.paragraphs);
369         ParIterator end(inset.paragraphs.end(), inset.paragraphs);
370
371         // Find a caption layout in one of the (child inset's) pars
372         for (; pit != end; ++pit) {
373                 if (pit->layout()->name() == caplayout) {
374                         string const name = floatname(params_.type, buf->params);
375                         string const str =
376                                 tostr(toclist[name].size() + 1)
377                                 + ". " + pit->asString(buf, false);
378                         toc::TocItem const item(pit->id(), 0 , str);
379                         toclist[name].push_back(item);
380                 }
381         }
382 }
383
384
385 string const InsetFloatMailer::name_("float");
386
387 InsetFloatMailer::InsetFloatMailer(InsetFloat & inset)
388         : inset_(inset)
389 {}
390
391
392 string const InsetFloatMailer::inset2string(Buffer const &) const
393 {
394         return params2string(inset_.params());
395 }
396
397
398 void InsetFloatMailer::string2params(string const & in,
399                                      InsetFloatParams & params)
400 {
401         params = InsetFloatParams();
402
403         if (in.empty())
404                 return;
405
406         istringstream data(STRCONV(in));
407         LyXLex lex(0,0);
408         lex.setStream(data);
409
410         if (lex.isOK()) {
411                 lex.next();
412                 string const token = lex.getString();
413                 if (token != name_)
414                         return;
415         }
416
417         // This is part of the inset proper that is usually swallowed
418         // by Buffer::readInset
419         if (lex.isOK()) {
420                 lex.next();
421                 string const token = lex.getString();
422                 if (token != "Float" || !lex.eatLine())
423                         return;
424         }
425
426         if (lex.isOK()) {
427                 params.read(lex);
428         }
429 }
430
431
432 string const InsetFloatMailer::params2string(InsetFloatParams const & params)
433 {
434         ostringstream data;
435         data << name_ << ' ';
436         params.write(data);
437         return STRCONV(data.str());
438 }