2003-10-07 07:42:15 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetBox.cpp
|
2003-10-07 07:42:15 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
* \author Martin Vermeer
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jürgen Spitzmüller
|
2003-10-07 07:42:15 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetBox.h"
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2007-10-11 10:13:45 +00:00
|
|
|
#include "Buffer.h"
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
#include "BufferParams.h"
|
2007-04-21 08:43:46 +00:00
|
|
|
#include "BufferView.h"
|
2007-04-26 14:56:30 +00:00
|
|
|
#include "Cursor.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "DispatchResult.h"
|
2005-04-22 08:57:22 +00:00
|
|
|
#include "FuncStatus.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "FuncRequest.h"
|
2003-10-07 07:42:15 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2007-04-26 11:30:54 +00:00
|
|
|
#include "Lexer.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "MetricsInfo.h"
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
#include "TextClass.h"
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
2008-06-18 18:54:31 +00:00
|
|
|
#include "support/gettext.h"
|
2008-10-04 09:24:40 +00:00
|
|
|
#include "support/lstrings.h"
|
Rename files in src/support, step one.
src/support/package.h src/support/Package.h Package
src/support/package.C.in src/support/Package.C.in Package
src/support/path.h src/support/Path.h Path
src/support/fs_extras.h src/support/fs_extras.h NOCLASSES
src/support/RandomAccessList.h src/support/RandomAccessList.h RandomAccessList
src/support/lyxmanip.h src/support/lyxmanip.h NOCLASSES
src/support/rename.C src/support/rename.cpp NOCLASSES
src/support/abort.C src/support/abort.cpp NOCLASSES
src/support/lyxlib.h src/support/lyxlib.h NOCLASSES
src/support/ExceptionMessage.h src/support/ExceptionMessage.h ExceptionMessage
src/support/copy.C src/support/copy.cpp NOCLASSES
src/support/limited_stack.h src/support/limited_stack.h limited_stack
src/support/filefilterlist.C src/support/FileFilterList.cpp ['FileFilterList', 'Filter']
src/support/cow_ptr.h src/support/cow_ptr.h cow_ptr
src/support/os_unix.C src/support/os_unix.cpp NOCLASSES
src/support/socktools.h src/support/socktools.h NOCLASSES
src/support/forkedcontr.h src/support/ForkedcallsController.h ForkedcallsController
src/support/os.h src/support/os.h NOCLASSES
src/support/FileMonitor.h src/support/FileMonitor.h FileMonitor
src/support/copied_ptr.h src/support/copied_ptr.h copied_ptr
src/support/translator.h src/support/Translator.h Translator
src/support/filetools.C src/support/filetools.cpp NOCLASSES
src/support/unlink.C src/support/unlink.cpp NOCLASSES
src/support/os_win32.C src/support/os_win32.cpp GetFolderPath
src/support/lstrings.C src/support/lstrings.cpp NOCLASSES
src/support/qstring_helpers.C src/support/qstring_helpers.cpp NOCLASSES
src/support/getcwd.C src/support/getcwd.cpp NOCLASSES
src/support/systemcall.C src/support/Systemcall.cpp Systemcall
src/support/lyxalgo.h src/support/lyxalgo.h NOCLASSES
src/support/filefilterlist.h src/support/FileFilterList.h ['FileFilterList', 'Filter']
src/support/unicode.C src/support/unicode.cpp IconvProcessor
src/support/userinfo.C src/support/userinfo.cpp NOCLASSES
src/support/lyxtime.C src/support/lyxtime.cpp NOCLASSES
src/support/kill.C src/support/kill.cpp NOCLASSES
src/support/docstring.C src/support/docstring.cpp to_local8bit_failure
src/support/os_cygwin.C src/support/os_cygwin.cpp NOCLASSES
src/support/lyxsum.C src/support/lyxsum.cpp NOCLASSES
src/support/environment.C src/support/environment.cpp NOCLASSES
src/support/filetools.h src/support/filetools.h NOCLASSES
src/support/textutils.C src/support/textutils.cpp NOCLASSES
src/support/mkdir.C src/support/mkdir.cpp NOCLASSES
src/support/forkedcall.C src/support/Forkedcall.cpp ['ForkedProcess', 'Forkedcall']
src/support/tempname.C src/support/tempname.cpp NOCLASSES
src/support/os_win32.h src/support/os_win32.h GetFolderPath
src/support/types.h src/support/types.h NOCLASSES
src/support/lstrings.h src/support/lstrings.h NOCLASSES
src/support/forkedcallqueue.C src/support/ForkedCallQueue.cpp ForkedCallQueue
src/support/qstring_helpers.h src/support/qstring_helpers.h NOCLASSES
src/support/convert.C src/support/convert.cpp NOCLASSES
src/support/filename.C src/support/FileName.cpp ['FileName', 'DocFileName']
src/support/tests/convert.C src/support/tests/convert.cpp NOCLASSES
src/support/tests/filetools.C src/support/tests/filetools.cpp NOCLASSES
src/support/tests/lstrings.C src/support/tests/lstrings.cpp NOCLASSES
src/support/tests/boost.C src/support/tests/boost.cpp NOCLASSES
src/support/docstream.C src/support/docstream.cpp ['iconv_codecvt_facet_exception', 'idocfstream', 'odocfstream']
src/support/std_istream.h src/support/std_istream.h NOCLASSES
src/support/systemcall.h src/support/Systemcall.h Systemcall
src/support/chdir.C src/support/chdir.cpp NOCLASSES
src/support/std_ostream.h src/support/std_ostream.h NOCLASSES
src/support/unicode.h src/support/unicode.h IconvProcessor
src/support/path.C src/support/Path.cpp Path
src/support/fs_extras.C src/support/fs_extras.cpp NOCLASSES
src/support/userinfo.h src/support/userinfo.h NOCLASSES
src/support/lyxtime.h src/support/lyxtime.h NOCLASSES
src/support/docstring.h src/support/docstring.h to_local8bit_failure
src/support/debugstream.h src/support/debugstream.h basic_debugstream
src/support/environment.h src/support/environment.h NOCLASSES
src/support/textutils.h src/support/textutils.h NOCLASSES
src/support/forkedcall.h src/support/Forkedcall.h ['ForkedProcess', 'Forkedcall']
src/support/socktools.C src/support/socktools.cpp NOCLASSES
src/support/forkedcallqueue.h src/support/ForkedCallQueue.h ForkedCallQueue
src/support/forkedcontr.C src/support/ForkedcallsController.cpp ForkedcallsController
src/support/os.C src/support/os.cpp NOCLASSES
src/support/convert.h src/support/convert.h NOCLASSES
src/support/filename.h src/support/FileName.h ['FileName', 'DocFileName']
src/support/docstream.h src/support/docstream.h ['iconv_codecvt_facet_exception', 'idocfstream', 'odocfstream']
src/support/FileMonitor.C src/support/FileMonitor.cpp FileMonitor
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18024 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-26 05:12:52 +00:00
|
|
|
#include "support/Translator.h"
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
#include "frontends/Application.h"
|
|
|
|
|
2004-07-24 10:55:30 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2008-10-04 09:24:40 +00:00
|
|
|
using namespace lyx::support;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
2006-09-09 18:52:00 +00:00
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
namespace {
|
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
typedef Translator<string, InsetBox::BoxType> BoxTranslator;
|
2006-12-22 09:23:10 +00:00
|
|
|
typedef Translator<docstring, InsetBox::BoxType> BoxTranslatorLoc;
|
2003-12-10 21:48:40 +00:00
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
BoxTranslator initBoxtranslator()
|
2006-09-09 15:27:44 +00:00
|
|
|
{
|
2003-10-07 07:42:15 +00:00
|
|
|
BoxTranslator translator("Boxed", InsetBox::Boxed);
|
|
|
|
translator.addPair("Frameless", InsetBox::Frameless);
|
2007-12-04 09:25:50 +00:00
|
|
|
translator.addPair("Framed", InsetBox::Framed);
|
2003-10-07 07:42:15 +00:00
|
|
|
translator.addPair("ovalbox", InsetBox::ovalbox);
|
|
|
|
translator.addPair("Ovalbox", InsetBox::Ovalbox);
|
|
|
|
translator.addPair("Shadowbox", InsetBox::Shadowbox);
|
2007-12-04 09:25:50 +00:00
|
|
|
translator.addPair("Shaded", InsetBox::Shaded);
|
2003-10-07 07:42:15 +00:00
|
|
|
translator.addPair("Doublebox",InsetBox::Doublebox);
|
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
BoxTranslatorLoc initBoxtranslatorLoc()
|
2006-09-09 15:27:44 +00:00
|
|
|
{
|
2007-12-04 09:25:50 +00:00
|
|
|
BoxTranslatorLoc translator(_("simple frame"), InsetBox::Boxed);
|
|
|
|
translator.addPair(_("frameless"), InsetBox::Frameless);
|
|
|
|
translator.addPair(_("simple frame, page breaks"), InsetBox::Framed);
|
|
|
|
translator.addPair(_("oval, thin"), InsetBox::ovalbox);
|
|
|
|
translator.addPair(_("oval, thick"), InsetBox::Ovalbox);
|
|
|
|
translator.addPair(_("drop shadow"), InsetBox::Shadowbox);
|
|
|
|
translator.addPair(_("shaded background"), InsetBox::Shaded);
|
|
|
|
translator.addPair(_("double frame"), InsetBox::Doublebox);
|
2003-10-07 07:42:15 +00:00
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-09 15:27:44 +00:00
|
|
|
BoxTranslator const & boxtranslator()
|
|
|
|
{
|
2008-03-27 07:26:37 +00:00
|
|
|
static BoxTranslator translator = initBoxtranslator();
|
2003-10-07 07:42:15 +00:00
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-22 09:23:10 +00:00
|
|
|
BoxTranslatorLoc const & boxtranslator_loc()
|
2006-09-09 15:27:44 +00:00
|
|
|
{
|
2008-03-27 07:26:37 +00:00
|
|
|
static BoxTranslatorLoc translator = initBoxtranslatorLoc();
|
2003-10-07 07:42:15 +00:00
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// InsetBox
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2008-03-04 22:28:18 +00:00
|
|
|
InsetBox::InsetBox(Buffer const & buffer, string const & label)
|
|
|
|
: InsetCollapsable(buffer), params_(label)
|
2008-10-28 14:11:24 +00:00
|
|
|
{}
|
2003-10-07 07:42:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
InsetBox::~InsetBox()
|
|
|
|
{
|
2008-03-27 07:26:37 +00:00
|
|
|
hideDialogs("box", this);
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
docstring InsetBox::editMessage() const
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
2006-09-09 18:52:00 +00:00
|
|
|
return _("Opened Box Inset");
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-04 09:25:50 +00:00
|
|
|
docstring InsetBox::name() const
|
|
|
|
{
|
|
|
|
// FIXME: UNICODE
|
2008-03-05 00:21:05 +00:00
|
|
|
string name = "Box";
|
2007-12-04 09:25:50 +00:00
|
|
|
if (boxtranslator().find(params_.type) == Shaded)
|
2008-03-27 07:26:37 +00:00
|
|
|
name += ":Shaded";
|
2007-12-04 09:25:50 +00:00
|
|
|
return from_ascii(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetBox::write(ostream & os) const
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
|
|
|
params_.write(os);
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::write(os);
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetBox::read(Lexer & lex)
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
|
|
|
params_.read(lex);
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::read(lex);
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBox::setButtonLabel()
|
|
|
|
{
|
2008-10-04 09:24:40 +00:00
|
|
|
BoxType const btype = boxtranslator().find(params_.type);
|
2006-09-09 15:27:44 +00:00
|
|
|
|
2008-10-04 09:24:40 +00:00
|
|
|
docstring const type = _("Box");
|
|
|
|
|
|
|
|
docstring inner;
|
|
|
|
if (params_.inner_box) {
|
2003-10-07 07:42:15 +00:00
|
|
|
if (params_.use_parbox)
|
2008-10-04 09:24:40 +00:00
|
|
|
inner = _("Parbox");
|
2003-10-07 07:42:15 +00:00
|
|
|
else
|
2008-10-04 09:24:40 +00:00
|
|
|
inner = _("Minipage");
|
2008-03-27 07:26:37 +00:00
|
|
|
}
|
2006-09-09 15:27:44 +00:00
|
|
|
|
2008-10-04 09:24:40 +00:00
|
|
|
docstring frame;
|
|
|
|
if (btype != Frameless)
|
|
|
|
frame = boxtranslator_loc().find(btype);
|
|
|
|
|
|
|
|
docstring label;
|
|
|
|
if (inner.empty() && frame.empty())
|
|
|
|
label = type;
|
|
|
|
else if (inner.empty())
|
|
|
|
label = bformat(_("%1$s (%2$s)"),
|
|
|
|
type, frame);
|
|
|
|
else if (frame.empty())
|
|
|
|
label = bformat(_("%1$s (%2$s)"),
|
|
|
|
type, inner);
|
|
|
|
else
|
|
|
|
label = bformat(_("%1$s (%2$s, %3$s)"),
|
|
|
|
type, inner, frame);
|
2006-09-09 15:27:44 +00:00
|
|
|
setLabel(label);
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-29 11:52:01 +00:00
|
|
|
bool InsetBox::hasFixedWidth() const
|
|
|
|
{
|
2008-03-05 00:21:05 +00:00
|
|
|
return params_.inner_box || params_.special != "width";
|
2006-12-29 11:52:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
void InsetBox::metrics(MetricsInfo & m, Dimension & dim) const
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
2007-09-18 08:52:38 +00:00
|
|
|
// back up textwidth.
|
|
|
|
int textwidth_backup = m.base.textwidth;
|
2006-12-29 11:52:01 +00:00
|
|
|
if (hasFixedWidth())
|
2007-09-18 08:52:38 +00:00
|
|
|
m.base.textwidth = params_.width.inPixels(m.base.textwidth);
|
|
|
|
InsetCollapsable::metrics(m, dim);
|
|
|
|
// retore textwidth.
|
|
|
|
m.base.textwidth = textwidth_backup;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-10 17:41:52 +00:00
|
|
|
bool InsetBox::forcePlainLayout(idx_type) const
|
2005-12-05 15:03:38 +00:00
|
|
|
{
|
2008-04-04 15:01:56 +00:00
|
|
|
return !params_.inner_box && params_.type != "Framed";
|
2005-12-05 15:03:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
bool InsetBox::showInsetDialog(BufferView * bv) const
|
|
|
|
{
|
2008-04-04 13:33:52 +00:00
|
|
|
bv->showDialog("box", params2string(params_),
|
2008-03-27 07:26:37 +00:00
|
|
|
const_cast<InsetBox *>(this));
|
2003-10-07 07:42:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
void InsetBox::doDispatch(Cursor & cur, FuncRequest & cmd)
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
|
|
|
case LFUN_INSET_MODIFY: {
|
2006-11-09 14:45:53 +00:00
|
|
|
//lyxerr << "InsetBox::dispatch MODIFY" << endl;
|
2008-03-24 13:33:48 +00:00
|
|
|
if (cmd.getArg(0) == "changetype")
|
|
|
|
params_.type = cmd.getArg(1);
|
|
|
|
else
|
2008-03-27 07:26:37 +00:00
|
|
|
string2params(to_utf8(cmd.argument()), params_);
|
2008-11-17 11:46:07 +00:00
|
|
|
setLayout(cur.buffer()->params());
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
2003-11-10 09:06:48 +00:00
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2008-03-27 07:26:37 +00:00
|
|
|
cur.bv().updateDialog("box", params2string(params_));
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
|
|
|
|
default:
|
2004-11-24 21:58:42 +00:00
|
|
|
InsetCollapsable::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
bool InsetBox::getStatus(Cursor & cur, FuncRequest const & cmd,
|
2005-04-22 08:57:22 +00:00
|
|
|
FuncStatus & flag) const
|
|
|
|
{
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
|
|
|
case LFUN_INSET_MODIFY:
|
2008-03-24 13:33:48 +00:00
|
|
|
if (cmd.getArg(0) == "changetype")
|
|
|
|
flag.setOnOff(cmd.getArg(1) == params_.type);
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(true);
|
2008-03-24 13:33:48 +00:00
|
|
|
return true;
|
2008-03-27 07:26:37 +00:00
|
|
|
|
2005-04-22 08:57:22 +00:00
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(true);
|
2005-04-22 08:57:22 +00:00
|
|
|
return true;
|
2008-03-27 07:26:37 +00:00
|
|
|
|
2006-05-05 20:23:12 +00:00
|
|
|
case LFUN_BREAK_PARAGRAPH:
|
2008-04-04 15:01:56 +00:00
|
|
|
if (params_.inner_box || params_.type == "Framed")
|
2005-12-05 15:03:38 +00:00
|
|
|
return InsetCollapsable::getStatus(cur, cmd, flag);
|
2008-05-29 15:14:00 +00:00
|
|
|
flag.setEnabled(false);
|
2008-03-27 07:26:37 +00:00
|
|
|
return true;
|
2005-04-22 08:57:22 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return InsetCollapsable::getStatus(cur, cmd, flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetBox::latex(odocstream & os, OutputParams const & runparams) const
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
|
|
|
BoxType btype = boxtranslator().find(params_.type);
|
|
|
|
|
|
|
|
string width_string = params_.width.asLatexString();
|
2008-02-27 20:43:16 +00:00
|
|
|
bool stdwidth = false;
|
2003-10-07 07:42:15 +00:00
|
|
|
if (params_.inner_box &&
|
|
|
|
(width_string.find("1.0\\columnwidth") != string::npos
|
|
|
|
|| width_string.find("1.0\\textwidth") != string::npos)) {
|
|
|
|
stdwidth = true;
|
|
|
|
switch (btype) {
|
|
|
|
case Frameless:
|
2007-12-04 09:25:50 +00:00
|
|
|
case Framed:
|
2003-10-07 07:42:15 +00:00
|
|
|
break;
|
|
|
|
case Boxed:
|
2007-12-04 09:25:50 +00:00
|
|
|
case Shaded:
|
2003-10-07 07:42:15 +00:00
|
|
|
width_string += " - 2\\fboxsep - 2\\fboxrule";
|
|
|
|
break;
|
|
|
|
case ovalbox:
|
|
|
|
width_string += " - 2\\fboxsep - 0.8pt";
|
|
|
|
break;
|
|
|
|
case Ovalbox:
|
|
|
|
width_string += " - 2\\fboxsep - 1.6pt";
|
|
|
|
break;
|
|
|
|
case Shadowbox:
|
|
|
|
// Shadow falls outside right margin... opinions?
|
|
|
|
width_string += " - 2\\fboxsep - 2\\fboxrule"/* "-\\shadowsize"*/;
|
|
|
|
break;
|
|
|
|
case Doublebox:
|
2008-01-13 14:41:49 +00:00
|
|
|
width_string += " - 2\\fboxsep - 7.5\\fboxrule - 1pt";
|
2003-10-07 07:42:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-10-13 02:10:45 +00:00
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
int i = 0;
|
|
|
|
os << "%\n";
|
|
|
|
// Adapt to column/text width correctly also if paragraphs indented:
|
|
|
|
if (stdwidth)
|
|
|
|
os << "\\noindent";
|
2003-10-13 02:10:45 +00:00
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
switch (btype) {
|
|
|
|
case Frameless:
|
|
|
|
break;
|
2007-12-04 09:25:50 +00:00
|
|
|
case Framed:
|
|
|
|
os << "\\begin{framed}%\n";
|
|
|
|
i += 1;
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
case Boxed:
|
|
|
|
os << "\\framebox";
|
|
|
|
if (!params_.inner_box) {
|
|
|
|
os << "{\\makebox";
|
2008-11-14 15:58:50 +00:00
|
|
|
// Special widths, see usrguide §3.5
|
2006-10-19 16:51:30 +00:00
|
|
|
// FIXME UNICODE
|
2003-10-07 07:42:15 +00:00
|
|
|
if (params_.special != "none") {
|
|
|
|
os << "[" << params_.width.value()
|
2006-10-21 00:16:43 +00:00
|
|
|
<< '\\' << from_utf8(params_.special)
|
2006-10-19 16:51:30 +00:00
|
|
|
<< ']';
|
2003-10-07 07:42:15 +00:00
|
|
|
} else
|
2006-10-21 00:16:43 +00:00
|
|
|
os << '[' << from_ascii(width_string)
|
2006-10-19 16:51:30 +00:00
|
|
|
<< ']';
|
2003-10-07 07:42:15 +00:00
|
|
|
if (params_.hor_pos != 'c')
|
|
|
|
os << "[" << params_.hor_pos << "]";
|
|
|
|
}
|
2003-10-13 02:10:45 +00:00
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
os << "{";
|
|
|
|
break;
|
|
|
|
case ovalbox:
|
|
|
|
os << "\\ovalbox{";
|
|
|
|
break;
|
|
|
|
case Ovalbox:
|
|
|
|
os << "\\Ovalbox{";
|
|
|
|
break;
|
|
|
|
case Shadowbox:
|
|
|
|
os << "\\shadowbox{";
|
|
|
|
break;
|
2007-12-04 09:25:50 +00:00
|
|
|
case Shaded:
|
|
|
|
// later
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
case Doublebox:
|
|
|
|
os << "\\doublebox{";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params_.inner_box) {
|
|
|
|
if (params_.use_parbox)
|
|
|
|
os << "\\parbox";
|
|
|
|
else
|
|
|
|
os << "\\begin{minipage}";
|
|
|
|
|
|
|
|
os << "[" << params_.pos << "]";
|
|
|
|
if (params_.height_special == "none") {
|
2006-10-19 16:51:30 +00:00
|
|
|
// FIXME UNICODE
|
2007-09-27 20:19:06 +00:00
|
|
|
os << "[" << from_ascii(params_.height.asLatexString()) << "]";
|
2003-10-07 07:42:15 +00:00
|
|
|
} else {
|
|
|
|
// Special heights
|
2007-09-27 20:19:06 +00:00
|
|
|
// set no optional argument when the value is the default "1\height"
|
|
|
|
// (special units like \height are handled as "in")
|
2007-09-29 16:47:23 +00:00
|
|
|
// but when the user has chosen a non-default inner_pos, the height
|
|
|
|
// must be given: \minipage[pos][height][inner-pos]{width}
|
2007-10-05 00:36:38 +00:00
|
|
|
if ((params_.height != Length("1in") ||
|
|
|
|
params_.height_special != "totalheight") ||
|
2007-09-29 16:47:23 +00:00
|
|
|
params_.inner_pos != params_.pos) {
|
2007-09-27 20:19:06 +00:00
|
|
|
// FIXME UNICODE
|
|
|
|
os << "[" << params_.height.value()
|
|
|
|
<< "\\" << from_utf8(params_.height_special) << "]";
|
|
|
|
}
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
if (params_.inner_pos != params_.pos)
|
|
|
|
os << "[" << params_.inner_pos << "]";
|
|
|
|
|
2006-10-19 16:51:30 +00:00
|
|
|
// FIXME UNICODE
|
2006-10-21 00:16:43 +00:00
|
|
|
os << '{' << from_ascii(width_string) << '}';
|
2003-10-07 07:42:15 +00:00
|
|
|
|
|
|
|
if (params_.use_parbox)
|
|
|
|
os << "{";
|
|
|
|
os << "%\n";
|
2008-03-27 07:26:37 +00:00
|
|
|
++i;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
2008-03-27 07:26:37 +00:00
|
|
|
if (btype == Shaded) {
|
2007-12-04 09:25:50 +00:00
|
|
|
os << "\\begin{shaded}%\n";
|
2008-03-27 07:26:37 +00:00
|
|
|
++i;
|
|
|
|
}
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
i += InsetText::latex(os, runparams);
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2007-12-04 09:25:50 +00:00
|
|
|
if (btype == Shaded)
|
|
|
|
os << "\\end{shaded}";
|
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
if (params_.inner_box) {
|
|
|
|
if (params_.use_parbox)
|
|
|
|
os << "%\n}";
|
|
|
|
else
|
|
|
|
os << "%\n\\end{minipage}";
|
|
|
|
}
|
2003-10-13 02:10:45 +00:00
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
switch (btype) {
|
|
|
|
case Frameless:
|
|
|
|
break;
|
2007-12-04 09:25:50 +00:00
|
|
|
case Framed:
|
|
|
|
os << "\\end{framed}";
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
case Boxed:
|
|
|
|
if (!params_.inner_box)
|
|
|
|
os << "}"; // for makebox
|
|
|
|
os << "}";
|
|
|
|
break;
|
|
|
|
case ovalbox:
|
|
|
|
case Ovalbox:
|
|
|
|
case Doublebox:
|
|
|
|
case Shadowbox:
|
|
|
|
os << "}";
|
|
|
|
break;
|
2007-12-04 09:25:50 +00:00
|
|
|
case Shaded:
|
|
|
|
// already done
|
|
|
|
break;
|
2003-10-13 02:10:45 +00:00
|
|
|
}
|
|
|
|
|
2008-01-13 14:41:49 +00:00
|
|
|
i += 2;
|
2003-10-07 07:42:15 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetBox::plaintext(odocstream & os, OutputParams const & runparams) const
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
2003-11-10 09:06:48 +00:00
|
|
|
BoxType const btype = boxtranslator().find(params_.type);
|
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
switch (btype) {
|
2007-12-04 09:25:50 +00:00
|
|
|
case Frameless:
|
|
|
|
break;
|
|
|
|
case Framed:
|
|
|
|
case Boxed:
|
|
|
|
os << "[\n";
|
|
|
|
break;
|
|
|
|
case ovalbox:
|
|
|
|
os << "(\n";
|
|
|
|
break;
|
|
|
|
case Ovalbox:
|
|
|
|
os << "((\n";
|
|
|
|
break;
|
|
|
|
case Shadowbox:
|
|
|
|
case Shaded:
|
|
|
|
os << "[/\n";
|
|
|
|
break;
|
|
|
|
case Doublebox:
|
|
|
|
os << "[[\n";
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetText::plaintext(os, runparams);
|
2003-10-07 07:42:15 +00:00
|
|
|
|
2007-02-15 22:59:06 +00:00
|
|
|
int len = 0;
|
2003-10-07 07:42:15 +00:00
|
|
|
switch (btype) {
|
2007-12-04 09:25:50 +00:00
|
|
|
case Frameless:
|
|
|
|
os << "\n";
|
|
|
|
break;
|
|
|
|
case Framed:
|
|
|
|
case Boxed:
|
|
|
|
os << "\n]";
|
|
|
|
len = 1;
|
|
|
|
break;
|
|
|
|
case ovalbox:
|
|
|
|
os << "\n)";
|
|
|
|
len = 1;
|
|
|
|
break;
|
|
|
|
case Ovalbox:
|
|
|
|
os << "\n))";
|
|
|
|
len = 2;
|
|
|
|
break;
|
|
|
|
case Shadowbox:
|
|
|
|
case Shaded:
|
|
|
|
os << "\n/]";
|
|
|
|
len = 2;
|
|
|
|
break;
|
|
|
|
case Doublebox:
|
|
|
|
os << "\n]]";
|
|
|
|
len = 2;
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
2007-02-20 17:52:41 +00:00
|
|
|
return PLAINTEXT_NEWLINE + len; // len chars on a separate line
|
2007-02-15 22:59:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetBox::docbook(odocstream & os, OutputParams const & runparams) const
|
2007-02-15 22:59:06 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
return InsetText::docbook(os, runparams);
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-12 16:11:33 +00:00
|
|
|
void InsetBox::xhtml(odocstream & os, OutputParams const & runparams) const
|
2009-06-05 17:48:14 +00:00
|
|
|
{
|
2009-06-12 14:42:33 +00:00
|
|
|
string style;
|
|
|
|
if (!params_.width.empty())
|
|
|
|
style += ("width: " + params_.width.asHTMLString() + ";");
|
|
|
|
if (!params_.height.empty())
|
|
|
|
style += ("height: " + params_.height.asHTMLString() + ";");
|
|
|
|
|
|
|
|
os << from_ascii("<span class='" + params_.type + "'");
|
|
|
|
if (!style.empty())
|
|
|
|
os << from_ascii(" style='" + style + "'");
|
|
|
|
os << ">\n";
|
|
|
|
InsetText::xhtml(os, runparams);
|
2009-06-05 17:48:14 +00:00
|
|
|
os << "</span>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
void InsetBox::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
|
|
|
BoxType btype = boxtranslator().find(params_.type);
|
|
|
|
switch (btype) {
|
|
|
|
case Frameless:
|
2007-02-23 18:39:54 +00:00
|
|
|
break;
|
2007-12-04 09:25:50 +00:00
|
|
|
case Framed:
|
|
|
|
features.require("framed");
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
case Boxed:
|
2007-02-23 18:39:54 +00:00
|
|
|
features.require("calc");
|
2003-10-07 07:42:15 +00:00
|
|
|
break;
|
|
|
|
case ovalbox:
|
|
|
|
case Ovalbox:
|
|
|
|
case Shadowbox:
|
|
|
|
case Doublebox:
|
2007-02-23 18:39:54 +00:00
|
|
|
features.require("calc");
|
2003-10-07 07:42:15 +00:00
|
|
|
features.require("fancybox");
|
|
|
|
break;
|
2007-12-04 09:25:50 +00:00
|
|
|
case Shaded:
|
|
|
|
features.require("color");
|
|
|
|
features.require("framed");
|
|
|
|
break;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
2008-12-12 15:38:52 +00:00
|
|
|
InsetCollapsable::validate(features);
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-24 13:33:48 +00:00
|
|
|
docstring InsetBox::contextMenu(BufferView const &, int, int) const
|
|
|
|
{
|
|
|
|
return from_ascii("context-box");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
string InsetBox::params2string(InsetBoxParams const & params)
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
|
|
|
ostringstream data;
|
|
|
|
data << "box" << ' ';
|
|
|
|
params.write(data);
|
|
|
|
return data.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
void InsetBox::string2params(string const & in, InsetBoxParams & params)
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
|
|
|
params = InsetBoxParams(string());
|
|
|
|
if (in.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
istringstream data(in);
|
2008-04-02 23:06:22 +00:00
|
|
|
Lexer lex;
|
2003-10-07 07:42:15 +00:00
|
|
|
lex.setStream(data);
|
|
|
|
|
2003-12-10 21:48:40 +00:00
|
|
|
string name;
|
|
|
|
lex >> name;
|
2008-03-27 07:26:37 +00:00
|
|
|
if (!lex || name != "box") {
|
|
|
|
LYXERR0("InsetBox::string2params(" << in << ")\n"
|
|
|
|
"Expected arg 1 to be \"box\"\n");
|
|
|
|
return;
|
|
|
|
}
|
2003-12-10 21:48:40 +00:00
|
|
|
|
|
|
|
// This is part of the inset proper that is usually swallowed
|
2007-04-29 23:33:02 +00:00
|
|
|
// by Text::readInset
|
2003-12-11 15:23:15 +00:00
|
|
|
string id;
|
|
|
|
lex >> id;
|
2008-03-27 07:26:37 +00:00
|
|
|
if (!lex || id != "Box") {
|
|
|
|
LYXERR0("InsetBox::string2params(" << in << ")\n"
|
|
|
|
"Expected arg 2 to be \"Box\"\n");
|
|
|
|
}
|
2003-10-07 07:42:15 +00:00
|
|
|
|
|
|
|
params.read(lex);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 07:26:37 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// InsetBoxParams
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2003-10-07 07:42:15 +00:00
|
|
|
InsetBoxParams::InsetBoxParams(string const & label)
|
|
|
|
: type(label),
|
|
|
|
use_parbox(false),
|
|
|
|
inner_box(true),
|
2007-04-28 12:58:49 +00:00
|
|
|
width(Length("100col%")),
|
2003-10-07 07:42:15 +00:00
|
|
|
special("none"),
|
|
|
|
pos('t'),
|
|
|
|
hor_pos('c'),
|
|
|
|
inner_pos('t'),
|
2007-04-28 12:58:49 +00:00
|
|
|
height(Length("1in")),
|
2003-10-07 07:42:15 +00:00
|
|
|
height_special("totalheight") // default is 1\\totalheight
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBoxParams::write(ostream & os) const
|
|
|
|
{
|
2003-12-10 21:48:40 +00:00
|
|
|
os << "Box " << type << "\n";
|
2003-10-07 07:42:15 +00:00
|
|
|
os << "position \"" << pos << "\"\n";
|
|
|
|
os << "hor_pos \"" << hor_pos << "\"\n";
|
|
|
|
os << "has_inner_box " << inner_box << "\n";
|
|
|
|
os << "inner_pos \"" << inner_pos << "\"\n";
|
|
|
|
os << "use_parbox " << use_parbox << "\n";
|
|
|
|
os << "width \"" << width.asString() << "\"\n";
|
|
|
|
os << "special \"" << special << "\"\n";
|
|
|
|
os << "height \"" << height.asString() << "\"\n";
|
|
|
|
os << "height_special \"" << height_special << "\"\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
void InsetBoxParams::read(Lexer & lex)
|
2003-10-07 07:42:15 +00:00
|
|
|
{
|
2008-04-05 10:34:29 +00:00
|
|
|
lex.setContext("InsetBoxParams::read");
|
|
|
|
lex >> type;
|
|
|
|
lex >> "position" >> pos;
|
|
|
|
lex >> "hor_pos" >> hor_pos;
|
|
|
|
lex >> "has_inner_box" >> inner_box;
|
|
|
|
if (type == "Framed")
|
|
|
|
inner_box = false;
|
|
|
|
lex >> "inner_pos" >> inner_pos;
|
|
|
|
lex >> "use_parbox" >> use_parbox;
|
|
|
|
lex >> "width" >> width;
|
|
|
|
lex >> "special" >> special;
|
|
|
|
lex >> "height" >> height;
|
|
|
|
lex >> "height_special" >> height_special;
|
2003-10-07 07:42:15 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|