2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetFloat.cpp
|
2002-09-25 14:26:13 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jürgen Vigna
|
|
|
|
* \author Lars Gullik Bjønnes
|
|
|
|
* \author Jürgen Spitzmüller
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
*/
|
2000-06-28 13:35:52 +00:00
|
|
|
|
2003-05-13 09:48:57 +00:00
|
|
|
#include <config.h>
|
2000-06-28 13:35:52 +00:00
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetFloat.h"
|
2008-03-02 11:30:50 +00:00
|
|
|
#include "InsetCaption.h"
|
2003-03-05 19:46:08 +00:00
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
2003-03-05 19:46:08 +00:00
|
|
|
#include "BufferView.h"
|
2007-08-12 21:43:58 +00:00
|
|
|
#include "Counters.h"
|
2007-04-26 14:56:30 +00:00
|
|
|
#include "Cursor.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "DispatchResult.h"
|
2003-03-05 19:46:08 +00:00
|
|
|
#include "Floating.h"
|
|
|
|
#include "FloatList.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "FuncRequest.h"
|
2005-04-22 08:57:22 +00:00
|
|
|
#include "FuncStatus.h"
|
2003-03-05 19:46:08 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2007-04-26 11:30:54 +00:00
|
|
|
#include "Lexer.h"
|
2009-11-30 17:20:37 +00:00
|
|
|
#include "output_xhtml.h"
|
2008-03-02 11:30:50 +00:00
|
|
|
#include "ParIterator.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
#include "TextClass.h"
|
2003-03-05 19:46:08 +00:00
|
|
|
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
2008-06-18 18:54:31 +00:00
|
|
|
#include "support/docstream.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/gettext.h"
|
2001-07-30 11:56:00 +00:00
|
|
|
#include "support/lstrings.h"
|
2008-03-27 22:26:24 +00:00
|
|
|
|
|
|
|
#include "frontends/Application.h"
|
2004-07-24 10:55:30 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2010-02-10 17:33:39 +00:00
|
|
|
using namespace lyx::support;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
namespace lyx {
|
2003-05-13 16:24:49 +00:00
|
|
|
|
2000-06-28 13:35:52 +00:00
|
|
|
// With this inset it will be possible to support the latex package
|
|
|
|
// float.sty, and I am sure that with this and some additional support
|
|
|
|
// classes we can support similar functionality in other formats
|
|
|
|
// (read DocBook).
|
|
|
|
// By using float.sty we will have the same handling for all floats, both
|
|
|
|
// for those already in existance (table and figure) and all user created
|
2008-11-14 15:58:50 +00:00
|
|
|
// ones¹. So suddenly we give the users the possibility of creating new
|
2000-06-28 13:35:52 +00:00
|
|
|
// kinds of floats on the fly. (and with a uniform look)
|
|
|
|
//
|
|
|
|
// API to float.sty:
|
|
|
|
// \newfloat{type}{placement}{ext}[within]
|
|
|
|
// type - The "type" of the new class of floats, like program or
|
|
|
|
// algorithm. After the appropriate \newfloat, commands
|
|
|
|
// such as \begin{program} or \end{algorithm*} will be
|
|
|
|
// available.
|
|
|
|
// placement - The default placement for the given class of floats.
|
|
|
|
// They are like in standard LaTeX: t, b, p and h for top,
|
|
|
|
// bottom, page, and here, respectively. On top of that
|
|
|
|
// there is a new type, H, which does not really correspond
|
|
|
|
// to a float, since it means: put it "here" and nowhere else.
|
|
|
|
// Note, however that the H specifier is special and, because
|
|
|
|
// of implementation details cannot be used in the second
|
|
|
|
// argument of \newfloat.
|
|
|
|
// ext - The file name extension of an auxiliary file for the list
|
|
|
|
// of figures (or whatever). LaTeX writes the captions to
|
|
|
|
// this file.
|
|
|
|
// within - This (optional) argument determines whether floats of this
|
|
|
|
// class will be numbered within some sectional unit of the
|
|
|
|
// document. For example, if within is equal to chapter, the
|
2002-03-21 17:09:55 +00:00
|
|
|
// floats will be numbered within chapters.
|
2000-06-28 13:35:52 +00:00
|
|
|
// \floatstyle{style}
|
|
|
|
// style - plain, boxed, ruled
|
|
|
|
// \floatname{float}{floatname}
|
|
|
|
// float -
|
|
|
|
// floatname -
|
|
|
|
// \floatplacement{float}{placement}
|
|
|
|
// float -
|
|
|
|
// placement -
|
|
|
|
// \restylefloat{float}
|
|
|
|
// float -
|
|
|
|
// \listof{type}{title}
|
|
|
|
// title -
|
|
|
|
|
2008-11-14 15:58:50 +00:00
|
|
|
// ¹ the algorithm float is defined using the float.sty package. Like this
|
2000-06-28 13:35:52 +00:00
|
|
|
// \floatstyle{ruled}
|
|
|
|
// \newfloat{algorithm}{htbp}{loa}[<sect>]
|
|
|
|
// \floatname{algorithm}{Algorithm}
|
|
|
|
//
|
2001-03-11 03:20:44 +00:00
|
|
|
// The intention is that floats should be definable from two places:
|
|
|
|
// - layout files
|
|
|
|
// - the "gui" (i.e. by the user)
|
|
|
|
//
|
|
|
|
// From layout files.
|
|
|
|
// This should only be done for floats defined in a documentclass and that
|
|
|
|
// does not need any additional packages. The two most known floats in this
|
|
|
|
// category is "table" and "figure". Floats defined in layout files are only
|
|
|
|
// stored in lyx files if the user modifies them.
|
|
|
|
//
|
|
|
|
// By the user.
|
|
|
|
// There should be a gui dialog (and also a collection of lyxfuncs) where
|
|
|
|
// the user can modify existing floats and/or create new ones.
|
|
|
|
//
|
|
|
|
// The individual floats will also have some settable
|
|
|
|
// variables: wide and placement.
|
|
|
|
//
|
2000-06-28 13:35:52 +00:00
|
|
|
// Lgb
|
|
|
|
|
2010-02-08 22:09:40 +00:00
|
|
|
//FIXME: why do we set in stone the type here?
|
2010-02-10 17:33:39 +00:00
|
|
|
InsetFloat::InsetFloat(Buffer * buf, string params_str)
|
|
|
|
: InsetCollapsable(buf)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2010-02-10 17:33:39 +00:00
|
|
|
string2params(params_str, params_);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-28 22:33:04 +00:00
|
|
|
docstring InsetFloat::layoutName() const
|
2008-11-05 15:35:02 +00:00
|
|
|
{
|
2010-02-10 17:33:39 +00:00
|
|
|
return "Float:" + from_utf8(params_.type);
|
2008-11-05 15:35:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-10 09:22:49 +00:00
|
|
|
docstring InsetFloat::toolTip(BufferView const & bv, int x, int y) const
|
|
|
|
{
|
2010-11-17 17:25:22 +00:00
|
|
|
if (isOpen(bv))
|
|
|
|
return InsetCollapsable::toolTip(bv, x, y);
|
2008-04-27 14:47:07 +00:00
|
|
|
|
2008-04-10 09:22:49 +00:00
|
|
|
OutputParams rp(&buffer().params().encoding());
|
2008-08-29 00:38:51 +00:00
|
|
|
return getCaptionText(rp);
|
2008-04-10 09:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
void InsetFloat::doDispatch(Cursor & cur, FuncRequest & cmd)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2010-04-09 19:00:42 +00:00
|
|
|
switch (cmd.action()) {
|
2003-08-05 08:07:07 +00:00
|
|
|
|
2003-03-05 19:46:08 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
InsetFloatParams params;
|
2008-03-27 22:26:24 +00:00
|
|
|
string2params(to_utf8(cmd.argument()), params);
|
2010-12-08 09:24:04 +00:00
|
|
|
cur.recordUndoInset(ATOMIC_UNDO, this);
|
2008-08-19 14:56:12 +00:00
|
|
|
|
|
|
|
// placement, wide and sideways are not used for subfloats
|
|
|
|
if (!params_.subfloat) {
|
|
|
|
params_.placement = params.placement;
|
|
|
|
params_.wide = params.wide;
|
|
|
|
params_.sideways = params.sideways;
|
|
|
|
}
|
2009-07-13 12:56:20 +00:00
|
|
|
setNewLabel();
|
2010-02-10 17:33:39 +00:00
|
|
|
if (params_.type != params.type) {
|
|
|
|
params_.type = params.type;
|
2010-07-09 14:37:00 +00:00
|
|
|
cur.forceBufferUpdate();
|
2010-02-10 17:33:39 +00:00
|
|
|
}
|
2010-07-09 14:37:00 +00:00
|
|
|
// what we really want here is a TOC update, but that means
|
|
|
|
// a full buffer update
|
|
|
|
cur.forceBufferUpdate();
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2000-07-17 18:27:53 +00:00
|
|
|
}
|
2003-03-07 15:58:02 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE: {
|
2008-03-27 22:26:24 +00:00
|
|
|
cur.bv().updateDialog("float", params2string(params()));
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-03-07 15:58:02 +00:00
|
|
|
}
|
|
|
|
|
2003-03-05 19:46:08 +00:00
|
|
|
default:
|
2004-11-24 21:58:42 +00:00
|
|
|
InsetCollapsable::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2001-05-31 16:48:26 +00:00
|
|
|
}
|
2003-03-05 17:56:47 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
bool InsetFloat::getStatus(Cursor & cur, FuncRequest const & cmd,
|
2005-04-22 08:57:22 +00:00
|
|
|
FuncStatus & flag) const
|
|
|
|
{
|
2010-04-09 19:00:42 +00:00
|
|
|
switch (cmd.action()) {
|
2005-04-22 08:57:22 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_MODIFY:
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(true);
|
2005-04-22 09:16:28 +00:00
|
|
|
return true;
|
2005-04-22 08:57:22 +00:00
|
|
|
|
2009-08-06 22:42:42 +00:00
|
|
|
case LFUN_INSET_SETTINGS:
|
|
|
|
if (InsetCollapsable::getStatus(cur, cmd, flag)) {
|
|
|
|
flag.setEnabled(flag.enabled() && !params_.subfloat);
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
return false;
|
|
|
|
|
2005-04-22 08:57:22 +00:00
|
|
|
default:
|
|
|
|
return InsetCollapsable::getStatus(cur, cmd, flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-03 22:13:45 +00:00
|
|
|
void InsetFloat::updateBuffer(ParIterator const & it, UpdateType utype)
|
2007-08-12 21:43:58 +00:00
|
|
|
{
|
2009-02-07 12:27:24 +00:00
|
|
|
Counters & cnts =
|
|
|
|
buffer().masterBuffer()->params().documentClass().counters();
|
2010-01-20 19:42:12 +00:00
|
|
|
if (utype == OutputUpdate) {
|
2010-01-20 19:03:17 +00:00
|
|
|
// counters are local to the float
|
|
|
|
cnts.saveLastCounter();
|
|
|
|
}
|
2007-08-12 21:43:58 +00:00
|
|
|
string const saveflt = cnts.current_float();
|
2008-03-02 11:30:50 +00:00
|
|
|
bool const savesubflt = cnts.isSubfloat();
|
|
|
|
|
2008-06-05 16:05:52 +00:00
|
|
|
bool const subflt = (it.innerInsetOfType(FLOAT_CODE)
|
|
|
|
|| it.innerInsetOfType(WRAP_CODE));
|
2008-03-02 11:30:50 +00:00
|
|
|
// floats can only embed subfloats of their own kind
|
|
|
|
if (subflt)
|
|
|
|
params_.type = saveflt;
|
2009-07-13 12:56:20 +00:00
|
|
|
setSubfloat(subflt);
|
2007-08-12 21:43:58 +00:00
|
|
|
|
|
|
|
// Tell to captions what the current float is
|
|
|
|
cnts.current_float(params().type);
|
2008-03-02 11:30:50 +00:00
|
|
|
cnts.isSubfloat(subflt);
|
2007-08-12 21:43:58 +00:00
|
|
|
|
2010-03-03 22:13:45 +00:00
|
|
|
InsetCollapsable::updateBuffer(it, utype);
|
2007-08-12 21:43:58 +00:00
|
|
|
|
|
|
|
//reset afterwards
|
|
|
|
cnts.current_float(saveflt);
|
2010-01-20 19:42:12 +00:00
|
|
|
if (utype == OutputUpdate)
|
2010-01-20 19:03:17 +00:00
|
|
|
cnts.restoreLastCounter();
|
2008-03-02 11:30:50 +00:00
|
|
|
cnts.isSubfloat(savesubflt);
|
2007-08-12 21:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-05 19:46:08 +00:00
|
|
|
void InsetFloatParams::write(ostream & os) const
|
2003-03-05 17:56:47 +00:00
|
|
|
{
|
2010-02-08 22:09:40 +00:00
|
|
|
os << type << '\n';
|
2003-03-05 19:46:08 +00:00
|
|
|
|
2003-08-05 08:07:07 +00:00
|
|
|
if (!placement.empty())
|
2003-03-05 19:46:08 +00:00
|
|
|
os << "placement " << placement << "\n";
|
2003-08-05 08:07:07 +00:00
|
|
|
|
|
|
|
if (wide)
|
2003-03-05 19:46:08 +00:00
|
|
|
os << "wide true\n";
|
2003-08-05 08:07:07 +00:00
|
|
|
else
|
2003-03-05 19:46:08 +00:00
|
|
|
os << "wide false\n";
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 11:38:39 +00:00
|
|
|
if (sideways)
|
|
|
|
os << "sideways true\n";
|
|
|
|
else
|
|
|
|
os << "sideways false\n";
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
void InsetFloatParams::read(Lexer & lex)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2008-04-05 10:34:29 +00:00
|
|
|
lex.setContext("InsetFloatParams::read");
|
2010-02-10 17:33:39 +00:00
|
|
|
lex >> type;
|
2008-04-05 10:34:29 +00:00
|
|
|
if (lex.checkFor("placement"))
|
2004-04-02 08:54:37 +00:00
|
|
|
lex >> placement;
|
2008-04-05 10:34:29 +00:00
|
|
|
lex >> "wide" >> wide;
|
|
|
|
lex >> "sideways" >> sideways;
|
2003-03-05 17:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetFloat::write(ostream & os) const
|
2003-03-05 19:46:08 +00:00
|
|
|
{
|
2010-02-08 22:09:40 +00:00
|
|
|
os << "Float ";
|
2003-03-05 19:46:08 +00:00
|
|
|
params_.write(os);
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::write(os);
|
2003-03-05 19:46:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetFloat::read(Lexer & lex)
|
2003-03-05 17:56:47 +00:00
|
|
|
{
|
2003-03-05 19:46:08 +00:00
|
|
|
params_.read(lex);
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::read(lex);
|
2010-02-10 17:33:39 +00:00
|
|
|
// check if the float type exists
|
|
|
|
if (buffer().params().documentClass().floats().typeExist(params_.type))
|
|
|
|
setLabel(_("float: ") + floatName(params_.type));
|
|
|
|
else
|
|
|
|
setLabel(bformat(_("ERROR: Unknown float type: %1$s"), from_utf8(params_.type)));
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetFloat::validate(LaTeXFeatures & features) const
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2008-03-05 00:21:05 +00:00
|
|
|
if (support::contains(params_.placement, 'H'))
|
2002-01-10 10:05:45 +00:00
|
|
|
features.require("float");
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 11:38:39 +00:00
|
|
|
if (params_.sideways)
|
2008-01-11 18:56:53 +00:00
|
|
|
features.require("rotfloat");
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2009-02-07 12:27:24 +00:00
|
|
|
if (features.inFloat())
|
2008-03-02 11:30:50 +00:00
|
|
|
features.require("subfig");
|
|
|
|
|
2009-02-07 12:27:24 +00:00
|
|
|
features.useFloat(params_.type, features.inFloat());
|
|
|
|
features.inFloat(true);
|
2001-06-28 10:25:20 +00:00
|
|
|
InsetCollapsable::validate(features);
|
2009-02-07 12:27:24 +00:00
|
|
|
features.inFloat(false);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-30 17:20:37 +00:00
|
|
|
docstring InsetFloat::xhtml(XHTMLStream & xs, OutputParams const & rp) const
|
2009-06-19 12:49:08 +00:00
|
|
|
{
|
|
|
|
FloatList const & floats = buffer().params().documentClass().floats();
|
|
|
|
Floating const & ftype = floats.getType(params_.type);
|
2009-11-30 17:08:56 +00:00
|
|
|
string const & htmltype = ftype.htmlTag();
|
2010-01-07 17:32:04 +00:00
|
|
|
string const & attr = ftype.htmlAttrib();
|
2009-06-19 12:49:08 +00:00
|
|
|
|
2009-11-30 17:20:37 +00:00
|
|
|
odocstringstream ods;
|
|
|
|
XHTMLStream newxs(ods);
|
2010-01-19 22:08:04 +00:00
|
|
|
newxs << html::StartTag(htmltype, attr);
|
2009-11-30 17:20:37 +00:00
|
|
|
InsetText::XHTMLOptions const opts =
|
|
|
|
InsetText::WriteLabel | InsetText::WriteInnerTag;
|
|
|
|
docstring deferred = InsetText::insetAsXHTML(newxs, rp, opts);
|
2010-01-19 22:08:04 +00:00
|
|
|
newxs << html::EndTag(htmltype);
|
2009-06-19 12:49:08 +00:00
|
|
|
|
|
|
|
if (rp.inFloat == OutputParams::NONFLOAT)
|
|
|
|
// In this case, this float needs to be deferred, but we'll put it
|
|
|
|
// before anything the text itself deferred.
|
2009-11-30 17:20:37 +00:00
|
|
|
deferred = ods.str() + '\n' + deferred;
|
2009-06-19 12:49:08 +00:00
|
|
|
else
|
|
|
|
// In this case, the whole thing is already being deferred, so
|
|
|
|
// we can write to the stream.
|
2009-11-30 17:20:37 +00:00
|
|
|
// Note that things will already have been escaped, so we do not
|
|
|
|
// want to escape them again.
|
2010-11-24 15:27:36 +00:00
|
|
|
xs << XHTMLStream::ESCAPE_NONE << ods.str();
|
2009-11-30 17:20:37 +00:00
|
|
|
return deferred;
|
2009-06-19 12:49:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
void InsetFloat::latex(otexstream & os, OutputParams const & runparams_in) const
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2009-02-07 12:27:24 +00:00
|
|
|
if (runparams_in.inFloat != OutputParams::NONFLOAT) {
|
|
|
|
if (runparams_in.moving_arg)
|
2008-03-02 11:30:50 +00:00
|
|
|
os << "\\protect";
|
|
|
|
os << "\\subfloat";
|
|
|
|
|
2009-02-07 12:27:24 +00:00
|
|
|
OutputParams rp = runparams_in;
|
2008-03-02 11:30:50 +00:00
|
|
|
docstring const caption = getCaption(rp);
|
|
|
|
if (!caption.empty()) {
|
|
|
|
os << caption;
|
|
|
|
}
|
|
|
|
os << '{';
|
2009-02-07 12:27:24 +00:00
|
|
|
rp.inFloat = OutputParams::SUBFLOAT;
|
2011-02-10 20:02:48 +00:00
|
|
|
InsetText::latex(os, rp);
|
2008-03-02 11:30:50 +00:00
|
|
|
os << "}";
|
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
return;
|
2008-03-02 11:30:50 +00:00
|
|
|
}
|
2009-02-07 12:27:24 +00:00
|
|
|
OutputParams runparams(runparams_in);
|
|
|
|
runparams.inFloat = OutputParams::MAINFLOAT;
|
2008-03-02 11:30:50 +00:00
|
|
|
|
2008-02-28 01:42:02 +00:00
|
|
|
FloatList const & floats = buffer().params().documentClass().floats();
|
2008-01-11 18:56:53 +00:00
|
|
|
string tmptype = params_.type;
|
|
|
|
if (params_.sideways)
|
|
|
|
tmptype = "sideways" + params_.type;
|
|
|
|
if (params_.wide && (!params_.sideways ||
|
|
|
|
params_.type == "figure" ||
|
|
|
|
params_.type == "table"))
|
|
|
|
tmptype += "*";
|
2001-07-04 07:44:27 +00:00
|
|
|
// Figure out the float placement to use.
|
|
|
|
// From lowest to highest:
|
|
|
|
// - float default placement
|
|
|
|
// - document wide default placement
|
|
|
|
// - specific float placement
|
|
|
|
string placement;
|
2008-02-27 20:43:16 +00:00
|
|
|
string const buf_placement = buffer().params().float_placement;
|
2003-03-05 17:56:47 +00:00
|
|
|
string const def_placement = floats.defaultPlacement(params_.type);
|
|
|
|
if (!params_.placement.empty()
|
|
|
|
&& params_.placement != def_placement) {
|
|
|
|
placement = params_.placement;
|
|
|
|
} else if (params_.placement.empty()
|
2002-09-26 08:59:34 +00:00
|
|
|
&& !buf_placement.empty()
|
2001-07-04 07:44:27 +00:00
|
|
|
&& buf_placement != def_placement) {
|
|
|
|
placement = buf_placement;
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
// Force \begin{<floatname>} to appear in a new line.
|
|
|
|
os << breakln << "\\begin{" << from_ascii(tmptype) << '}';
|
2011-03-12 01:40:01 +00:00
|
|
|
if (runparams.lastid != -1)
|
|
|
|
os.texrow().start(runparams.lastid, runparams.lastpos);
|
2001-07-04 07:44:27 +00:00
|
|
|
// We only output placement if different from the def_placement.
|
2004-03-29 11:38:39 +00:00
|
|
|
// sidewaysfloats always use their own page
|
2011-02-10 20:02:48 +00:00
|
|
|
if (!placement.empty() && !params_.sideways)
|
2006-10-21 00:16:43 +00:00
|
|
|
os << '[' << from_ascii(placement) << ']';
|
2002-11-27 10:30:28 +00:00
|
|
|
os << '\n';
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
InsetText::latex(os, runparams);
|
2002-05-05 15:15:51 +00:00
|
|
|
|
Introduce a wrapper class for odocstream to help ensuring that no
blank lines may be inadvertently output. This is achieved by using two
special iomanip-like variables (breakln and safebreakln) in the lyx::
namespace. When they are inserted in the stream, a newline is output
only if not already at the beginning of a line. The difference between
breakln and safebreakln is that, if needed, the former outputs '\n'
and the latter "%\n".
In future, the new class will also be used for counting the number of
newlines issued. Even if the infractrure for doing that is already in
place, the counting is essentially still done the old way.
There are still places in the code where the functionality of the
class could be used, most probably. ATM, it is used for InsetTabular,
InsetListings, InsetFloat, and InsetText.
The Comment and GreyedOut insets required a special treatment and a
new InsetLayout parameter (Display) has been introduced. The default
for Display is "true", meaning that the corresponding latex
environment is of "display" type, i.e., it stands on its own, whereas
"false" means that the contents appear inline with the text. The
latter is the case for both Comment and GreyedOut insets.
Mostly, the only visible effects on latex exports should be the
disappearing of some redundant % chars and the appearing/disappearing
of null {} latex groups after a comment or lyxgreyedout environments
(they are related to the presence or absence of a space immediately
after those environments), as well as the fact that math environments
are now started on their own lines.
As a last thing, only the latex code between \begin{document} and
\end{document} goes through the new class, the preamble being directly
output through odocstream, as usual.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37360 a592a061-630c-0410-9148-cb99ea01b6c8
2011-01-29 02:41:13 +00:00
|
|
|
// Force \end{<floatname>} to appear in a new line.
|
|
|
|
os << breakln << "\\end{" << from_ascii(tmptype) << "}\n";
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetFloat::plaintext(odocstream & os, OutputParams const & runparams) const
|
2007-02-16 08:15:16 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
os << '[' << buffer().B_("float") << ' '
|
2009-07-13 12:56:20 +00:00
|
|
|
<< floatName(params_.type) << ":\n";
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetText::plaintext(os, runparams);
|
2007-02-16 08:15:16 +00:00
|
|
|
os << "\n]";
|
|
|
|
|
2007-02-20 17:52:41 +00:00
|
|
|
return PLAINTEXT_NEWLINE + 1; // one char on a separate line
|
2007-02-16 08:15:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetFloat::docbook(odocstream & os, OutputParams const & runparams) const
|
2001-03-23 08:37:44 +00:00
|
|
|
{
|
2008-03-02 11:30:50 +00:00
|
|
|
// FIXME Implement subfloat!
|
2007-05-28 22:27:45 +00:00
|
|
|
// FIXME UNICODE
|
|
|
|
os << '<' << from_ascii(params_.type) << '>';
|
2008-02-27 20:43:16 +00:00
|
|
|
int const i = InsetText::docbook(os, runparams);
|
2006-10-21 00:16:43 +00:00
|
|
|
os << "</" << from_ascii(params_.type) << '>';
|
2001-03-23 08:37:44 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-13 09:04:52 +00:00
|
|
|
bool InsetFloat::insetAllowed(InsetCode code) const
|
2001-07-12 14:35:38 +00:00
|
|
|
{
|
2009-07-21 20:04:52 +00:00
|
|
|
// The case that code == FLOAT_CODE is handled in Text3.cpp,
|
|
|
|
// because we need to know what type of float is meant.
|
|
|
|
switch(code) {
|
|
|
|
case WRAP_CODE:
|
|
|
|
case FOOT_CODE:
|
|
|
|
case MARGIN_CODE:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return InsetCollapsable::insetAllowed(code);
|
|
|
|
}
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
2000-07-04 19:16:35 +00:00
|
|
|
|
2009-07-13 12:56:20 +00:00
|
|
|
void InsetFloat::setWide(bool w, bool update_label)
|
2000-07-15 23:51:46 +00:00
|
|
|
{
|
2003-03-05 17:56:47 +00:00
|
|
|
params_.wide = w;
|
2008-08-19 14:56:12 +00:00
|
|
|
if (update_label)
|
2009-07-13 12:56:20 +00:00
|
|
|
setNewLabel();
|
2000-07-15 23:51:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-13 12:56:20 +00:00
|
|
|
void InsetFloat::setSideways(bool s, bool update_label)
|
2004-03-29 11:38:39 +00:00
|
|
|
{
|
|
|
|
params_.sideways = s;
|
2008-08-19 14:56:12 +00:00
|
|
|
if (update_label)
|
2009-07-13 12:56:20 +00:00
|
|
|
setNewLabel();
|
2004-03-29 11:38:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-13 12:56:20 +00:00
|
|
|
void InsetFloat::setSubfloat(bool s, bool update_label)
|
2008-03-02 11:30:50 +00:00
|
|
|
{
|
|
|
|
params_.subfloat = s;
|
2008-08-19 14:56:12 +00:00
|
|
|
if (update_label)
|
2009-07-13 12:56:20 +00:00
|
|
|
setNewLabel();
|
2008-08-19 14:56:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-13 12:56:20 +00:00
|
|
|
void InsetFloat::setNewLabel()
|
2008-08-19 14:56:12 +00:00
|
|
|
{
|
|
|
|
docstring lab = _("float: ");
|
|
|
|
|
2008-11-23 14:46:33 +00:00
|
|
|
if (params_.subfloat)
|
2008-08-19 14:56:12 +00:00
|
|
|
lab = _("subfloat: ");
|
|
|
|
|
2009-07-13 12:56:20 +00:00
|
|
|
lab += floatName(params_.type);
|
2008-08-19 14:56:12 +00:00
|
|
|
|
|
|
|
if (params_.wide)
|
|
|
|
lab += '*';
|
|
|
|
|
|
|
|
if (params_.sideways)
|
|
|
|
lab += _(" (sideways)");
|
|
|
|
|
2008-03-02 11:30:50 +00:00
|
|
|
setLabel(lab);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-19 12:18:38 +00:00
|
|
|
docstring InsetFloat::getCaption(OutputParams const & runparams) const
|
|
|
|
{
|
|
|
|
if (paragraphs().empty())
|
|
|
|
return docstring();
|
|
|
|
|
|
|
|
InsetCaption const * ins = getCaptionInset();
|
|
|
|
if (ins == 0)
|
|
|
|
return docstring();
|
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
TexRow texrow;
|
2009-06-19 12:18:38 +00:00
|
|
|
odocstringstream ods;
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream os(ods, texrow);
|
2012-12-28 10:21:24 +00:00
|
|
|
ins->getArgs(os, runparams);
|
2009-06-19 12:18:38 +00:00
|
|
|
ods << '[';
|
2011-02-02 11:05:56 +00:00
|
|
|
odocstringstream odss;
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream oss(odss, texrow);
|
2011-02-02 11:05:56 +00:00
|
|
|
ins->getArgument(oss, runparams);
|
|
|
|
docstring arg = odss.str();
|
|
|
|
// Protect ']'
|
|
|
|
if (arg.find(']') != docstring::npos)
|
|
|
|
arg = '{' + arg + '}';
|
|
|
|
ods << arg;
|
2009-06-19 12:18:38 +00:00
|
|
|
ods << ']';
|
|
|
|
return ods.str();
|
2008-03-02 11:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
void InsetFloat::string2params(string const & in, InsetFloatParams & params)
|
2003-03-05 19:46:08 +00:00
|
|
|
{
|
|
|
|
params = InsetFloatParams();
|
2003-04-24 20:02:49 +00:00
|
|
|
if (in.empty())
|
|
|
|
return;
|
2003-05-21 21:20:50 +00:00
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
istringstream data(in);
|
2008-04-02 23:06:22 +00:00
|
|
|
Lexer lex;
|
2003-03-07 14:08:10 +00:00
|
|
|
lex.setStream(data);
|
2008-04-05 10:34:29 +00:00
|
|
|
lex.setContext("InsetFloat::string2params");
|
2003-12-11 15:23:15 +00:00
|
|
|
params.read(lex);
|
2003-03-05 19:46:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
string InsetFloat::params2string(InsetFloatParams const & params)
|
2003-03-05 19:46:08 +00:00
|
|
|
{
|
|
|
|
ostringstream data;
|
|
|
|
params.write(data);
|
2003-09-15 11:00:00 +00:00
|
|
|
return data.str();
|
2003-03-05 19:46:08 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|