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