2003-08-19 10:04:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetbase.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-19 10:04:35 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2003-09-05 09:01:27 +00:00
|
|
|
|
|
2003-02-18 11:47:16 +00:00
|
|
|
|
#include "insetbase.h"
|
2004-01-30 11:41:12 +00:00
|
|
|
|
|
2004-02-02 17:32:56 +00:00
|
|
|
|
#include "buffer.h"
|
2004-08-14 14:03:42 +00:00
|
|
|
|
#include "coordcache.h"
|
2004-01-30 11:41:12 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "LColor.h"
|
|
|
|
|
#include "cursor.h"
|
2003-11-06 16:43:12 +00:00
|
|
|
|
#include "debug.h"
|
2004-01-30 11:41:12 +00:00
|
|
|
|
#include "dimension.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
|
#include "dispatchresult.h"
|
2005-04-13 09:43:58 +00:00
|
|
|
|
#include "funcrequest.h"
|
|
|
|
|
#include "FuncStatus.h"
|
2004-01-26 10:13:15 +00:00
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "lyxtext.h"
|
2004-01-30 11:41:12 +00:00
|
|
|
|
#include "metricsinfo.h"
|
|
|
|
|
|
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
2005-07-18 21:19:23 +00:00
|
|
|
|
#include <boost/current_function.hpp>
|
|
|
|
|
|
2004-03-30 12:36:33 +00:00
|
|
|
|
#include <map>
|
2005-07-17 01:13:36 +00:00
|
|
|
|
#include <typeinfo>
|
2004-03-30 12:36:33 +00:00
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
|
|
2004-03-30 12:36:33 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
|
class InsetName {
|
|
|
|
|
public:
|
2004-03-30 12:36:33 +00:00
|
|
|
|
InsetName(std::string const & n, InsetBase::Code c)
|
|
|
|
|
: name(n), code(c) {}
|
|
|
|
|
std::string name;
|
|
|
|
|
InsetBase::Code code;
|
|
|
|
|
};
|
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
|
|
2004-03-30 12:36:33 +00:00
|
|
|
|
typedef std::map<std::string, InsetBase::Code> TranslatorMap;
|
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
|
|
2004-03-30 12:36:33 +00:00
|
|
|
|
TranslatorMap const build_translator()
|
|
|
|
|
{
|
|
|
|
|
InsetName const insetnames[] = {
|
|
|
|
|
InsetName("toc", InsetBase::TOC_CODE),
|
|
|
|
|
InsetName("quote", InsetBase::QUOTE_CODE),
|
|
|
|
|
InsetName("ref", InsetBase::REF_CODE),
|
|
|
|
|
InsetName("url", InsetBase::URL_CODE),
|
|
|
|
|
InsetName("htmlurl", InsetBase::HTMLURL_CODE),
|
|
|
|
|
InsetName("separator", InsetBase::SEPARATOR_CODE),
|
|
|
|
|
InsetName("ending", InsetBase::ENDING_CODE),
|
|
|
|
|
InsetName("label", InsetBase::LABEL_CODE),
|
|
|
|
|
InsetName("note", InsetBase::NOTE_CODE),
|
|
|
|
|
InsetName("accent", InsetBase::ACCENT_CODE),
|
|
|
|
|
InsetName("math", InsetBase::MATH_CODE),
|
|
|
|
|
InsetName("index", InsetBase::INDEX_CODE),
|
|
|
|
|
InsetName("include", InsetBase::INCLUDE_CODE),
|
|
|
|
|
InsetName("graphics", InsetBase::GRAPHICS_CODE),
|
|
|
|
|
InsetName("bibitem", InsetBase::BIBITEM_CODE),
|
|
|
|
|
InsetName("bibtex", InsetBase::BIBTEX_CODE),
|
|
|
|
|
InsetName("text", InsetBase::TEXT_CODE),
|
|
|
|
|
InsetName("ert", InsetBase::ERT_CODE),
|
|
|
|
|
InsetName("foot", InsetBase::FOOT_CODE),
|
|
|
|
|
InsetName("margin", InsetBase::MARGIN_CODE),
|
|
|
|
|
InsetName("float", InsetBase::FLOAT_CODE),
|
|
|
|
|
InsetName("wrap", InsetBase::WRAP_CODE),
|
|
|
|
|
InsetName("specialchar", InsetBase::SPECIALCHAR_CODE),
|
|
|
|
|
InsetName("tabular", InsetBase::TABULAR_CODE),
|
|
|
|
|
InsetName("external", InsetBase::EXTERNAL_CODE),
|
|
|
|
|
InsetName("caption", InsetBase::CAPTION_CODE),
|
|
|
|
|
InsetName("mathmacro", InsetBase::MATHMACRO_CODE),
|
|
|
|
|
InsetName("cite", InsetBase::CITE_CODE),
|
|
|
|
|
InsetName("float_list", InsetBase::FLOAT_LIST_CODE),
|
|
|
|
|
InsetName("index_print", InsetBase::INDEX_PRINT_CODE),
|
|
|
|
|
InsetName("optarg", InsetBase::OPTARG_CODE),
|
|
|
|
|
InsetName("environment", InsetBase::ENVIRONMENT_CODE),
|
|
|
|
|
InsetName("hfill", InsetBase::HFILL_CODE),
|
|
|
|
|
InsetName("newline", InsetBase::NEWLINE_CODE),
|
|
|
|
|
InsetName("line", InsetBase::LINE_CODE),
|
|
|
|
|
InsetName("branch", InsetBase::BRANCH_CODE),
|
|
|
|
|
InsetName("box", InsetBase::BOX_CODE),
|
|
|
|
|
InsetName("charstyle", InsetBase::CHARSTYLE_CODE),
|
|
|
|
|
InsetName("vspace", InsetBase::VSPACE_CODE),
|
2004-04-13 06:27:29 +00:00
|
|
|
|
InsetName("mathmacroarg", InsetBase::MATHMACROARG_CODE),
|
2004-03-30 12:36:33 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
std::size_t const insetnames_size =
|
|
|
|
|
sizeof(insetnames) / sizeof(insetnames[0]);
|
|
|
|
|
|
|
|
|
|
std::map<std::string, InsetBase::Code> data;
|
|
|
|
|
for (std::size_t i = 0; i != insetnames_size; ++i) {
|
|
|
|
|
InsetName const & var = insetnames[i];
|
|
|
|
|
data[var.name] = var.code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
InsetBase::InsetBase()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetBase::InsetBase(InsetBase const &)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2005-07-17 01:13:36 +00:00
|
|
|
|
std::auto_ptr<InsetBase> InsetBase::clone() const
|
|
|
|
|
{
|
|
|
|
|
std::auto_ptr<InsetBase> b = doClone();
|
|
|
|
|
BOOST_ASSERT(typeid(*b) == typeid(*this));
|
|
|
|
|
return b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-30 12:36:33 +00:00
|
|
|
|
InsetBase::Code InsetBase::translate(std::string const & name)
|
|
|
|
|
{
|
|
|
|
|
static TranslatorMap const translator = build_translator();
|
|
|
|
|
|
|
|
|
|
TranslatorMap::const_iterator it = translator.find(name);
|
|
|
|
|
return it == translator.end() ? NO_CODE : it->second;
|
|
|
|
|
}
|
2003-02-18 11:47:16 +00:00
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void InsetBase::dispatch(LCursor & cur, FuncRequest & cmd)
|
2003-10-17 18:01:15 +00:00
|
|
|
|
{
|
2004-08-13 14:56:06 +00:00
|
|
|
|
cur.needsUpdate();
|
|
|
|
|
cur.dispatched();
|
2004-11-24 21:58:42 +00:00
|
|
|
|
doDispatch(cur, cmd);
|
2003-10-17 18:01:15 +00:00
|
|
|
|
}
|
2003-02-18 11:47:16 +00:00
|
|
|
|
|
2003-10-17 18:01:15 +00:00
|
|
|
|
|
2004-11-24 21:58:42 +00:00
|
|
|
|
void InsetBase::doDispatch(LCursor & cur, FuncRequest &)
|
2003-02-18 11:47:16 +00:00
|
|
|
|
{
|
2004-03-01 17:12:09 +00:00
|
|
|
|
cur.noUpdate();
|
|
|
|
|
cur.undispatched();
|
2003-02-18 11:47:16 +00:00
|
|
|
|
}
|
2003-11-04 12:36:59 +00:00
|
|
|
|
|
|
|
|
|
|
2005-04-13 09:43:58 +00:00
|
|
|
|
bool InsetBase::getStatus(LCursor &, FuncRequest const & cmd,
|
|
|
|
|
FuncStatus & flag) const
|
2004-02-20 17:19:53 +00:00
|
|
|
|
{
|
2005-04-13 09:43:58 +00:00
|
|
|
|
// LFUN_INSET_APPLY is sent from the dialogs when the data should
|
|
|
|
|
// be applied. This is either changed to LFUN_INSET_MODIFY (if the
|
|
|
|
|
// dialog belongs to us) or LFUN_INSET_INSERT (if the dialog does
|
|
|
|
|
// not belong to us, i. e. the dialog was open, and the user moved
|
|
|
|
|
// the cursor in our inset) in LyXFunc::getStatus().
|
|
|
|
|
// Dialogs::checkStatus() ensures that the dialog is deactivated if
|
|
|
|
|
// LFUN_INSET_APPLY is disabled.
|
|
|
|
|
|
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
case LFUN_INSET_MODIFY:
|
2005-05-17 11:11:45 +00:00
|
|
|
|
// Allow modification of our data.
|
2005-04-13 09:43:58 +00:00
|
|
|
|
// This needs to be handled in the doDispatch method of our
|
|
|
|
|
// instantiatable children.
|
2005-05-17 11:11:45 +00:00
|
|
|
|
flag.enabled(true);
|
|
|
|
|
return true;
|
2005-04-13 09:43:58 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_INSET_INSERT:
|
|
|
|
|
// Don't allow insertion of new insets.
|
|
|
|
|
// Every inset that wants to allow new insets from open
|
|
|
|
|
// dialogs needs to override this.
|
|
|
|
|
flag.enabled(false);
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-02-20 17:19:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
void InsetBase::edit(LCursor &, bool)
|
2003-11-06 16:43:12 +00:00
|
|
|
|
{
|
2005-07-18 15:12:15 +00:00
|
|
|
|
lyxerr[Debug::INSETS] << BOOST_CURRENT_FUNCTION
|
2006-04-05 23:56:29 +00:00
|
|
|
|
<< ": edit left/right" << std::endl;
|
2003-11-06 16:43:12 +00:00
|
|
|
|
}
|
2003-11-04 12:36:59 +00:00
|
|
|
|
|
|
|
|
|
|
2005-07-15 00:39:44 +00:00
|
|
|
|
InsetBase * InsetBase::editXY(LCursor &, int x, int y)
|
2003-11-04 12:36:59 +00:00
|
|
|
|
{
|
2005-07-18 15:12:15 +00:00
|
|
|
|
lyxerr[Debug::INSETS] << BOOST_CURRENT_FUNCTION
|
2006-04-05 23:56:29 +00:00
|
|
|
|
<< ": x=" << x << " y= " << y
|
|
|
|
|
<< std::endl;
|
2005-07-15 00:39:44 +00:00
|
|
|
|
return this;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
}
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetBase::idx_type InsetBase::index(row_type row, col_type col) const
|
|
|
|
|
{
|
|
|
|
|
if (row != 0)
|
2005-07-18 15:12:15 +00:00
|
|
|
|
lyxerr << BOOST_CURRENT_FUNCTION
|
2006-04-05 23:56:29 +00:00
|
|
|
|
<< ": illegal row: " << row << std::endl;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
if (col != 0)
|
2005-07-18 15:12:15 +00:00
|
|
|
|
lyxerr << BOOST_CURRENT_FUNCTION
|
2006-04-05 23:56:29 +00:00
|
|
|
|
<< ": illegal col: " << col << std::endl;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetBase::idxBetween(idx_type idx, idx_type from, idx_type to) const
|
|
|
|
|
{
|
|
|
|
|
return from <= idx && idx <= to;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetBase::idxUpDown(LCursor &, bool) const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetBase::plaintext(Buffer const &,
|
2006-10-11 19:40:50 +00:00
|
|
|
|
lyx::odocstream &, OutputParams const &) const
|
2004-01-26 10:13:15 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetBase::docbook(Buffer const &,
|
|
|
|
|
std::ostream &, OutputParams const &) const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetBase::directWrite() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetBase::EDITABLE InsetBase::editable() const
|
|
|
|
|
{
|
|
|
|
|
return NOT_EDITABLE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetBase::autoDelete() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-09-09 18:52:00 +00:00
|
|
|
|
lyx::docstring const InsetBase::editMessage() const
|
2004-01-26 10:13:15 +00:00
|
|
|
|
{
|
2006-09-09 18:52:00 +00:00
|
|
|
|
return _("Opened inset");
|
2004-01-26 10:13:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::string const & InsetBase::getInsetName() const
|
|
|
|
|
{
|
|
|
|
|
static std::string const name = "unknown";
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-09-07 10:37:05 +00:00
|
|
|
|
void InsetBase::markErased(bool)
|
2004-01-26 10:13:15 +00:00
|
|
|
|
{}
|
|
|
|
|
|
2004-01-30 11:41:12 +00:00
|
|
|
|
|
2005-07-15 15:49:40 +00:00
|
|
|
|
void InsetBase::cursorPos(CursorSlice const &, bool, int & x, int & y) const
|
2004-01-30 11:41:12 +00:00
|
|
|
|
{
|
2005-07-15 15:49:40 +00:00
|
|
|
|
lyxerr << "InsetBase::cursorPos called directly" << std::endl;
|
2004-01-30 11:41:12 +00:00
|
|
|
|
x = 100;
|
|
|
|
|
y = 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-08-13 15:08:25 +00:00
|
|
|
|
void InsetBase::metricsMarkers(Dimension & dim, int framesize) const
|
2004-01-30 11:41:12 +00:00
|
|
|
|
{
|
2004-08-13 15:08:25 +00:00
|
|
|
|
dim.wid += 2 * framesize;
|
|
|
|
|
dim.asc += framesize;
|
2004-01-30 11:41:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-08-13 15:08:25 +00:00
|
|
|
|
void InsetBase::metricsMarkers2(Dimension & dim, int framesize) const
|
2004-01-30 11:41:12 +00:00
|
|
|
|
{
|
2004-08-13 15:08:25 +00:00
|
|
|
|
dim.wid += 2 * framesize;
|
|
|
|
|
dim.asc += framesize;
|
|
|
|
|
dim.des += framesize;
|
2004-01-30 11:41:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBase::drawMarkers(PainterInfo & pi, int x, int y) const
|
|
|
|
|
{
|
|
|
|
|
if (!editing(pi.base.bv))
|
|
|
|
|
return;
|
|
|
|
|
int const t = x + width() - 1;
|
|
|
|
|
int const d = y + descent();
|
|
|
|
|
pi.pain.line(x, d - 3, x, d, LColor::mathframe);
|
|
|
|
|
pi.pain.line(t, d - 3, t, d, LColor::mathframe);
|
|
|
|
|
pi.pain.line(x, d, x + 3, d, LColor::mathframe);
|
|
|
|
|
pi.pain.line(t - 3, d, t, d, LColor::mathframe);
|
|
|
|
|
setPosCache(pi, x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBase::drawMarkers2(PainterInfo & pi, int x, int y) const
|
|
|
|
|
{
|
|
|
|
|
if (!editing(pi.base.bv))
|
|
|
|
|
return;
|
|
|
|
|
drawMarkers(pi, x, y);
|
|
|
|
|
int const t = x + width() - 1;
|
|
|
|
|
int const a = y - ascent();
|
|
|
|
|
pi.pain.line(x, a + 3, x, a, LColor::mathframe);
|
|
|
|
|
pi.pain.line(t, a + 3, t, a, LColor::mathframe);
|
|
|
|
|
pi.pain.line(x, a, x + 3, a, LColor::mathframe);
|
|
|
|
|
pi.pain.line(t - 3, a, t, a, LColor::mathframe);
|
|
|
|
|
setPosCache(pi, x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetBase::editing(BufferView * bv) const
|
|
|
|
|
{
|
|
|
|
|
return bv->cursor().isInside(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-08-14 14:03:42 +00:00
|
|
|
|
int InsetBase::xo() const
|
|
|
|
|
{
|
2005-01-31 16:29:48 +00:00
|
|
|
|
return theCoords.getInsets().x(this);
|
2004-08-14 14:03:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetBase::yo() const
|
|
|
|
|
{
|
2005-01-31 16:29:48 +00:00
|
|
|
|
return theCoords.getInsets().y(this);
|
2004-08-14 14:03:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-30 11:41:12 +00:00
|
|
|
|
bool InsetBase::covers(int x, int y) const
|
|
|
|
|
{
|
2004-04-20 08:51:15 +00:00
|
|
|
|
//lyxerr << "InsetBase::covers, x: " << x << " y: " << y
|
2004-04-08 15:03:33 +00:00
|
|
|
|
// << " xo: " << xo() << " yo: " << yo()
|
|
|
|
|
// << " x1: " << xo() << " x2: " << xo() + width()
|
|
|
|
|
// << " y1: " << yo() - ascent() << " y2: " << yo() + descent()
|
|
|
|
|
// << std::endl;
|
2005-01-31 16:29:48 +00:00
|
|
|
|
return theCoords.getInsets().has(this)
|
2004-08-14 14:03:42 +00:00
|
|
|
|
&& x >= xo()
|
2004-01-30 11:41:12 +00:00
|
|
|
|
&& x <= xo() + width()
|
|
|
|
|
&& y >= yo() - ascent()
|
|
|
|
|
&& y <= yo() + descent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-02 17:32:56 +00:00
|
|
|
|
void InsetBase::dump() const
|
|
|
|
|
{
|
|
|
|
|
Buffer buf("foo", 1);
|
|
|
|
|
write(buf, lyxerr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/////////////////////////////////////////
|
|
|
|
|
|
2004-01-30 11:41:12 +00:00
|
|
|
|
bool isEditableInset(InsetBase const * inset)
|
2004-01-26 10:13:15 +00:00
|
|
|
|
{
|
2004-01-30 11:41:12 +00:00
|
|
|
|
return inset && inset->editable();
|
2004-01-26 10:13:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-30 11:41:12 +00:00
|
|
|
|
bool isHighlyEditableInset(InsetBase const * inset)
|
2004-01-26 10:13:15 +00:00
|
|
|
|
{
|
2004-01-30 11:41:12 +00:00
|
|
|
|
return inset && inset->editable() == InsetBase::HIGHLY_EDITABLE;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
}
|