2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insettabular.C
|
|
|
|
|
* 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
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
2000-04-19 14:42:19 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS
|
2000-04-19 14:42:19 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "insettabular.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "insettext.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "BufferView.h"
|
2003-03-19 17:15:32 +00:00
|
|
|
|
#include "lfuns.h"
|
2000-07-19 17:16:27 +00:00
|
|
|
|
#include "debug.h"
|
2003-05-19 17:03:12 +00:00
|
|
|
|
#include "dimension.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "funcrequest.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "language.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2003-05-19 17:03:12 +00:00
|
|
|
|
#include "Lsstream.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "lyx_cb.h"
|
|
|
|
|
#include "lyxfunc.h"
|
2001-12-18 03:21:10 +00:00
|
|
|
|
#include "lyxlength.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
|
#include "lyxlex.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
#include "ParagraphParameters.h"
|
|
|
|
|
#include "undo_funcs.h"
|
|
|
|
|
#include "WordLangTuple.h"
|
2003-05-30 06:48:24 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2001-12-18 03:21:10 +00:00
|
|
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
|
#include "frontends/font_metrics.h"
|
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
|
#include "frontends/Painter.h"
|
2001-12-18 03:21:10 +00:00
|
|
|
|
|
2001-07-29 15:34:18 +00:00
|
|
|
|
#include "support/LAssert.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2001-12-18 03:21:10 +00:00
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
using namespace lyx::support;
|
2003-07-18 16:13:33 +00:00
|
|
|
|
using namespace lyx::graphics;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
using std::vector;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
using std::ostream;
|
|
|
|
|
using std::ifstream;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
using std::max;
|
|
|
|
|
using std::endl;
|
2000-07-15 23:51:46 +00:00
|
|
|
|
using std::swap;
|
2001-01-03 16:04:05 +00:00
|
|
|
|
using std::max;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-07-04 08:23:23 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2001-12-18 03:21:10 +00:00
|
|
|
|
int const ADD_TO_HEIGHT = 2;
|
|
|
|
|
int const ADD_TO_TABULAR_WIDTH = 2;
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
///
|
|
|
|
|
LyXTabular * paste_tabular = 0;
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
struct TabularFeature {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
LyXTabular::Feature action;
|
|
|
|
|
string feature;
|
2000-07-28 14:28:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
TabularFeature tabularFeature[] =
|
2000-07-28 14:28:54 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{ LyXTabular::APPEND_ROW, "append-row" },
|
|
|
|
|
{ LyXTabular::APPEND_COLUMN, "append-column" },
|
|
|
|
|
{ LyXTabular::DELETE_ROW, "delete-row" },
|
|
|
|
|
{ LyXTabular::DELETE_COLUMN, "delete-column" },
|
|
|
|
|
{ LyXTabular::TOGGLE_LINE_TOP, "toggle-line-top" },
|
|
|
|
|
{ LyXTabular::TOGGLE_LINE_BOTTOM, "toggle-line-bottom" },
|
|
|
|
|
{ LyXTabular::TOGGLE_LINE_LEFT, "toggle-line-left" },
|
|
|
|
|
{ LyXTabular::TOGGLE_LINE_RIGHT, "toggle-line-right" },
|
|
|
|
|
{ LyXTabular::ALIGN_LEFT, "align-left" },
|
|
|
|
|
{ LyXTabular::ALIGN_RIGHT, "align-right" },
|
|
|
|
|
{ LyXTabular::ALIGN_CENTER, "align-center" },
|
2002-11-21 12:24:50 +00:00
|
|
|
|
{ LyXTabular::ALIGN_BLOCK, "align-block" },
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{ LyXTabular::VALIGN_TOP, "valign-top" },
|
|
|
|
|
{ LyXTabular::VALIGN_BOTTOM, "valign-bottom" },
|
|
|
|
|
{ LyXTabular::VALIGN_CENTER, "valign-center" },
|
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_TOP, "m-toggle-line-top" },
|
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_BOTTOM, "m-toggle-line-bottom" },
|
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_LEFT, "m-toggle-line-left" },
|
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_RIGHT, "m-toggle-line-right" },
|
|
|
|
|
{ LyXTabular::M_ALIGN_LEFT, "m-align-left" },
|
|
|
|
|
{ LyXTabular::M_ALIGN_RIGHT, "m-align-right" },
|
|
|
|
|
{ LyXTabular::M_ALIGN_CENTER, "m-align-center" },
|
|
|
|
|
{ LyXTabular::M_VALIGN_TOP, "m-valign-top" },
|
|
|
|
|
{ LyXTabular::M_VALIGN_BOTTOM, "m-valign-bottom" },
|
|
|
|
|
{ LyXTabular::M_VALIGN_CENTER, "m-valign-center" },
|
|
|
|
|
{ LyXTabular::MULTICOLUMN, "multicolumn" },
|
|
|
|
|
{ LyXTabular::SET_ALL_LINES, "set-all-lines" },
|
|
|
|
|
{ LyXTabular::UNSET_ALL_LINES, "unset-all-lines" },
|
|
|
|
|
{ LyXTabular::SET_LONGTABULAR, "set-longtabular" },
|
|
|
|
|
{ LyXTabular::UNSET_LONGTABULAR, "unset-longtabular" },
|
|
|
|
|
{ LyXTabular::SET_PWIDTH, "set-pwidth" },
|
|
|
|
|
{ LyXTabular::SET_MPWIDTH, "set-mpwidth" },
|
|
|
|
|
{ LyXTabular::SET_ROTATE_TABULAR, "set-rotate-tabular" },
|
|
|
|
|
{ LyXTabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular" },
|
|
|
|
|
{ LyXTabular::SET_ROTATE_CELL, "set-rotate-cell" },
|
|
|
|
|
{ LyXTabular::UNSET_ROTATE_CELL, "unset-rotate-cell" },
|
|
|
|
|
{ LyXTabular::SET_USEBOX, "set-usebox" },
|
|
|
|
|
{ LyXTabular::SET_LTHEAD, "set-lthead" },
|
|
|
|
|
{ LyXTabular::SET_LTFIRSTHEAD, "set-ltfirsthead" },
|
|
|
|
|
{ LyXTabular::SET_LTFOOT, "set-ltfoot" },
|
|
|
|
|
{ LyXTabular::SET_LTLASTFOOT, "set-ltlastfoot" },
|
|
|
|
|
{ LyXTabular::SET_LTNEWPAGE, "set-ltnewpage" },
|
|
|
|
|
{ LyXTabular::SET_SPECIAL_COLUMN, "set-special-column" },
|
|
|
|
|
{ LyXTabular::SET_SPECIAL_MULTI, "set-special-multi" },
|
|
|
|
|
{ LyXTabular::LAST_ACTION, "" }
|
2000-07-28 14:28:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2003-03-09 18:11:57 +00:00
|
|
|
|
struct FindFeature {
|
|
|
|
|
FindFeature(LyXTabular::Feature feature) : feature_(feature) {}
|
|
|
|
|
bool operator()(TabularFeature & tf)
|
|
|
|
|
{
|
|
|
|
|
return tf.action == feature_;
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
LyXTabular::Feature feature_;
|
|
|
|
|
};
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2003-03-09 18:11:57 +00:00
|
|
|
|
string const featureAsString(LyXTabular::Feature feature)
|
|
|
|
|
{
|
|
|
|
|
TabularFeature * it = tabularFeature;
|
|
|
|
|
TabularFeature * end = it +
|
|
|
|
|
sizeof(tabularFeature) / sizeof(TabularFeature);
|
|
|
|
|
it = std::find_if(it, end, FindFeature(feature));
|
|
|
|
|
return (it == end) ? string() : it->feature;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
bool InsetTabular::hasPasteBuffer() const
|
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return (paste_tabular != 0);
|
2001-03-20 01:22:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-10-10 11:50:43 +00:00
|
|
|
|
InsetTabular::InsetTabular(Buffer const & buf, int rows, int columns)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
: tabular(buf.params, this, max(rows, 1), max(columns, 1)),
|
2003-07-18 16:23:17 +00:00
|
|
|
|
buffer_(&buf), cursorx_(0), cursory_(0)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
// for now make it always display as display() inset
|
|
|
|
|
// just for test!!!
|
|
|
|
|
the_locking_inset = 0;
|
2002-01-12 21:03:30 +00:00
|
|
|
|
old_locking_inset = 0;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
locked = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
oldcell = -1;
|
|
|
|
|
actrow = actcell = 0;
|
|
|
|
|
clearSelection();
|
|
|
|
|
need_update = INIT;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
in_reset_pos = 0;
|
2002-01-12 21:03:30 +00:00
|
|
|
|
inset_x = 0;
|
|
|
|
|
inset_y = 0;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-06-03 15:10:14 +00:00
|
|
|
|
InsetTabular::InsetTabular(InsetTabular const & tab)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
: UpdatableInset(tab),
|
|
|
|
|
tabular(tab.buffer_->params, this, tab.tabular),
|
2003-07-18 16:23:17 +00:00
|
|
|
|
buffer_(tab.buffer_), cursorx_(0), cursory_(0)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
the_locking_inset = 0;
|
2002-01-12 21:03:30 +00:00
|
|
|
|
old_locking_inset = 0;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
locked = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
oldcell = -1;
|
|
|
|
|
actrow = actcell = 0;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
need_update = INIT;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
in_reset_pos = 0;
|
2002-01-12 21:03:30 +00:00
|
|
|
|
inset_x = 0;
|
|
|
|
|
inset_y = 0;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
|
InsetTabular::~InsetTabular()
|
|
|
|
|
{
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).hideDialog();
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetTabular::clone() const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetTabular(*this));
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-10 12:26:40 +00:00
|
|
|
|
Buffer const * InsetTabular::buffer() const
|
|
|
|
|
{
|
|
|
|
|
return buffer_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-09 18:11:57 +00:00
|
|
|
|
BufferView * InsetTabular::view() const
|
|
|
|
|
{
|
2003-07-10 12:26:40 +00:00
|
|
|
|
Assert(false);
|
|
|
|
|
return 0;
|
2003-06-03 15:10:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::buffer(Buffer * b)
|
|
|
|
|
{
|
|
|
|
|
buffer_ = b;
|
2003-03-09 18:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::write(Buffer const * buf, ostream & os) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-07-28 13:04:40 +00:00
|
|
|
|
os << "Tabular" << endl;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.write(buf, os);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::read(Buffer const * buf, LyXLex & lex)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-08-06 19:13:25 +00:00
|
|
|
|
bool const old_format = (lex.getString() == "\\LyXTable");
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.read(buf, lex);
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
need_update = INIT;
|
2000-05-17 14:43:09 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (old_format)
|
|
|
|
|
return;
|
2000-05-17 14:43:09 +00:00
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
|
lex.nextToken();
|
2001-08-06 19:13:25 +00:00
|
|
|
|
string token = lex.getString();
|
|
|
|
|
while (lex.isOK() && (token != "\\end_inset")) {
|
2001-04-04 22:08:13 +00:00
|
|
|
|
lex.nextToken();
|
2001-08-06 19:13:25 +00:00
|
|
|
|
token = lex.getString();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
if (token != "\\end_inset") {
|
|
|
|
|
lex.printError("Missing \\end_inset at this point. "
|
2001-04-04 22:08:13 +00:00
|
|
|
|
"Read: `$$Token'");
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-10 08:00:41 +00:00
|
|
|
|
void InsetTabular::metrics(MetricsInfo & mi, Dimension & dim) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-07-17 15:57:08 +00:00
|
|
|
|
//lyxerr << "InsetTabular::metrics: " << mi.base.bv << " width: " <<
|
|
|
|
|
// mi.base.textwidth << "\n";
|
|
|
|
|
if (!mi.base.bv) {
|
|
|
|
|
lyxerr << "InsetTabular::metrics: need bv\n";
|
|
|
|
|
Assert(0);
|
|
|
|
|
}
|
2003-07-25 17:11:25 +00:00
|
|
|
|
|
2003-07-18 07:47:07 +00:00
|
|
|
|
calculate_dimensions_of_cells(mi);
|
2003-07-25 17:11:25 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
dim.asc = tabular.getAscentOfRow(0);
|
|
|
|
|
dim.des = tabular.getHeightOfTabular() - tabular.getAscentOfRow(0) + 1;
|
|
|
|
|
dim.wid = tabular.getWidthOfTabular() + 2 * ADD_TO_TABULAR_WIDTH;
|
2003-07-18 07:47:07 +00:00
|
|
|
|
dim_ = dim;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void InsetTabular::draw(PainterInfo & pi, int x, int y) const
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2003-07-18 07:47:07 +00:00
|
|
|
|
//lyxerr << "InsetTabular::draw: " << x << " " << y << "\n";
|
2001-06-14 10:44:21 +00:00
|
|
|
|
if (nodraw()) {
|
2003-07-30 15:41:39 +00:00
|
|
|
|
lyxerr << "InsetTabular::nodraw: " << x << " " << y << "\n";
|
2001-05-28 15:11:24 +00:00
|
|
|
|
need_update = FULL;
|
2003-03-17 01:34:36 +00:00
|
|
|
|
return;
|
2001-05-28 15:11:24 +00:00
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
BufferView * bv = pi.base.bv;
|
2001-04-13 14:49:58 +00:00
|
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#if 0
|
2003-05-30 06:48:24 +00:00
|
|
|
|
UpdatableInset::draw(pi, x, y);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#else
|
|
|
|
|
if (!owner())
|
2003-05-30 06:48:24 +00:00
|
|
|
|
x += scroll();
|
2001-04-27 14:03:25 +00:00
|
|
|
|
#endif
|
2003-03-17 01:34:36 +00:00
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
top_x = x;
|
|
|
|
|
top_baseline = y;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
x += ADD_TO_TABULAR_WIDTH;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-03-17 01:34:36 +00:00
|
|
|
|
int cell = 0;
|
|
|
|
|
first_visible_cell = -1;
|
2003-07-30 15:41:39 +00:00
|
|
|
|
for (int i = 0; i < tabular.rows(); ++i) {
|
|
|
|
|
int nx = x;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
cell = tabular.getCellNumber(i, 0);
|
2003-07-30 15:41:39 +00:00
|
|
|
|
if (y + tabular.getDescentOfRow(i) <= 0 &&
|
|
|
|
|
y - tabular.getAscentOfRow(i) < pi.pain.paperHeight())
|
2003-03-17 01:34:36 +00:00
|
|
|
|
{
|
2003-07-30 15:41:39 +00:00
|
|
|
|
y += tabular.getDescentOfRow(i) +
|
|
|
|
|
tabular.getAscentOfRow(i + 1) +
|
|
|
|
|
tabular.getAdditionalHeight(i + 1);
|
2003-03-17 01:34:36 +00:00
|
|
|
|
continue;
|
2000-11-19 16:07:18 +00:00
|
|
|
|
}
|
2003-07-30 15:41:39 +00:00
|
|
|
|
for (int j = 0; j < tabular.columns(); ++j) {
|
2003-03-17 01:34:36 +00:00
|
|
|
|
if (nx > bv->workWidth())
|
|
|
|
|
break;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isPartOfMultiColumn(i, j))
|
2003-03-17 01:34:36 +00:00
|
|
|
|
continue;
|
2003-07-30 15:41:39 +00:00
|
|
|
|
int cx = nx + tabular.getBeginningOfTextInCell(cell);
|
2003-03-17 01:34:36 +00:00
|
|
|
|
if (first_visible_cell < 0)
|
|
|
|
|
first_visible_cell = cell;
|
|
|
|
|
if (hasSelection()) {
|
2003-05-30 06:48:24 +00:00
|
|
|
|
drawCellSelection(pi.pain, nx, y, i, j, cell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-03-17 01:34:36 +00:00
|
|
|
|
|
2003-07-21 11:01:29 +00:00
|
|
|
|
tabular.getCellInset(cell).draw(pi, cx, y);
|
2003-05-30 06:48:24 +00:00
|
|
|
|
drawCellLines(pi.pain, nx, y, i, cell);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
nx += tabular.getWidthOfColumn(cell);
|
2003-03-17 01:34:36 +00:00
|
|
|
|
++cell;
|
2000-11-19 16:07:18 +00:00
|
|
|
|
}
|
2003-05-26 11:33:37 +00:00
|
|
|
|
|
2003-06-04 00:14:51 +00:00
|
|
|
|
// Would be nice, but for some completely unfathomable reason,
|
|
|
|
|
// on a col resize to a new fixed width, even though the insettexts
|
|
|
|
|
// are resized, the cell isn't, but drawing all cells in a tall table
|
|
|
|
|
// has the desired effect somehow. Complete dark magic.
|
|
|
|
|
#if 0
|
2003-05-26 11:33:37 +00:00
|
|
|
|
// avoiding drawing the rest of a long table is
|
|
|
|
|
// a pretty big speedup
|
2003-05-30 06:48:24 +00:00
|
|
|
|
if (y > bv->workHeight())
|
2003-05-26 11:33:37 +00:00
|
|
|
|
break;
|
2003-06-04 00:14:51 +00:00
|
|
|
|
#endif
|
2003-05-26 11:33:37 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
y += tabular.getDescentOfRow(i) +
|
|
|
|
|
tabular.getAscentOfRow(i + 1) +
|
|
|
|
|
tabular.getAdditionalHeight(i + 1);
|
2000-09-28 14:05:24 +00:00
|
|
|
|
}
|
2003-03-17 01:34:36 +00:00
|
|
|
|
|
2003-03-22 17:26:03 +00:00
|
|
|
|
need_update = NONE;
|
2000-06-16 15:13:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void InsetTabular::drawCellLines(Painter & pain, int x, int y,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
int row, int cell) const
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int x2 = x + tabular.getWidthOfColumn(cell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
bool on_off;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (!tabular.topAlreadyDrawn(cell)) {
|
|
|
|
|
on_off = !tabular.topLine(cell);
|
|
|
|
|
pain.line(x, y - tabular.getAscentOfRow(row),
|
|
|
|
|
x2, y - tabular.getAscentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
on_off = !tabular.bottomLine(cell);
|
|
|
|
|
pain.line(x, y + tabular.getDescentOfRow(row),
|
|
|
|
|
x2, y + tabular.getDescentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (!tabular.leftAlreadyDrawn(cell)) {
|
|
|
|
|
on_off = !tabular.leftLine(cell);
|
|
|
|
|
pain.line(x, y - tabular.getAscentOfRow(row),
|
|
|
|
|
x, y + tabular.getDescentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
on_off = !tabular.rightLine(cell);
|
|
|
|
|
pain.line(x2 - tabular.getAdditionalWidth(cell),
|
|
|
|
|
y - tabular.getAscentOfRow(row),
|
|
|
|
|
x2 - tabular.getAdditionalWidth(cell),
|
|
|
|
|
y + tabular.getDescentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void InsetTabular::drawCellSelection(Painter & pain, int x, int y,
|
2001-04-04 22:08:13 +00:00
|
|
|
|
int row, int column, int cell) const
|
2000-05-22 15:20:02 +00:00
|
|
|
|
{
|
2003-06-30 23:56:22 +00:00
|
|
|
|
Assert(hasSelection());
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int cs = tabular.column_of_cell(sel_cell_start);
|
|
|
|
|
int ce = tabular.column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (cs > ce) {
|
|
|
|
|
ce = cs;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
cs = tabular.column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
ce = tabular.right_column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int rs = tabular.row_of_cell(sel_cell_start);
|
|
|
|
|
int re = tabular.row_of_cell(sel_cell_end);
|
2001-12-18 03:21:10 +00:00
|
|
|
|
if (rs > re)
|
|
|
|
|
swap(rs, re);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if ((column >= cs) && (column <= ce) && (row >= rs) && (row <= re)) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int w = tabular.getWidthOfColumn(cell);
|
|
|
|
|
int h = tabular.getAscentOfRow(row) + tabular.getDescentOfRow(row)-1;
|
|
|
|
|
pain.fillRectangle(x, y - tabular.getAscentOfRow(row) + 1,
|
2001-04-04 22:08:13 +00:00
|
|
|
|
w, h, LColor::selection);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2000-05-22 15:20:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
string const InsetTabular::editMessage() const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-04-30 02:03:35 +00:00
|
|
|
|
return _("Opened table");
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::insetUnlock(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
the_locking_inset->insetUnlock(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2002-04-19 11:12:14 +00:00
|
|
|
|
the_locking_inset = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2002-06-18 15:44:30 +00:00
|
|
|
|
actcell = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
oldcell = -1;
|
|
|
|
|
locked = false;
|
2001-04-27 14:03:25 +00:00
|
|
|
|
if (scroll(false) || hasSelection()) {
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-04-27 14:03:25 +00:00
|
|
|
|
if (scroll(false)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
scroll(bv, 0.0F);
|
|
|
|
|
}
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2000-08-07 15:21:05 +00:00
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2003-03-20 14:13:49 +00:00
|
|
|
|
void InsetTabular::updateLocal(BufferView * bv, UpdateCodes what) const
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2003-07-17 15:57:08 +00:00
|
|
|
|
lyxerr << "InsetTabular::updateLocal: " << what << "\n";
|
2002-03-08 11:42:30 +00:00
|
|
|
|
if (!locked && what == CELL)
|
|
|
|
|
what = FULL;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (need_update < what) // only set this if it has greater update
|
|
|
|
|
need_update = what;
|
|
|
|
|
// Dirty Cast! (Lgb)
|
|
|
|
|
if (need_update != NONE) {
|
2003-03-19 14:45:22 +00:00
|
|
|
|
bv->updateInset(const_cast<InsetTabular *>(this));
|
2002-06-18 15:44:30 +00:00
|
|
|
|
if (locked)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-11-28 16:09:25 +00:00
|
|
|
|
lyxerr[Debug::INSETTEXT] << "InsetTabular::LockInsetInInset("
|
2001-04-04 22:08:13 +00:00
|
|
|
|
<< inset << "): ";
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!inset)
|
|
|
|
|
return false;
|
|
|
|
|
oldcell = -1;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (inset == &tabular.getCellInset(actcell)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
|
lyxerr[Debug::INSETTEXT] << "OK" << endl;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
the_locking_inset = &tabular.getCellInset(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
|
|
|
|
return true;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
} else if (!the_locking_inset) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int const n = tabular.getNumberOfCells();
|
2001-12-14 11:55:58 +00:00
|
|
|
|
int const id = inset->id();
|
|
|
|
|
for (int i = 0; i < n; ++i) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText * in = &tabular.getCellInset(i);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
if (inset == in) {
|
|
|
|
|
actcell = i;
|
|
|
|
|
the_locking_inset = in;
|
|
|
|
|
locked = true;
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (in->getInsetFromID(id)) {
|
|
|
|
|
actcell = i;
|
2003-05-16 07:44:00 +00:00
|
|
|
|
in->localDispatch(FuncRequest(bv, LFUN_INSET_EDIT));
|
2001-12-14 11:55:58 +00:00
|
|
|
|
return the_locking_inset->lockInsetInInset(bv, inset);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else if (the_locking_inset && (the_locking_inset == inset)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
|
lyxerr[Debug::INSETTEXT] << "OK" << endl;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
|
|
|
|
} else if (the_locking_inset) {
|
2001-11-28 16:09:25 +00:00
|
|
|
|
lyxerr[Debug::INSETTEXT] << "MAYBE" << endl;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
return the_locking_inset->lockInsetInInset(bv, inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-11-28 16:09:25 +00:00
|
|
|
|
lyxerr[Debug::INSETTEXT] << "NOT OK" << endl;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
|
2001-04-04 22:08:13 +00:00
|
|
|
|
bool lr)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!the_locking_inset)
|
|
|
|
|
return false;
|
|
|
|
|
if (the_locking_inset == inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
the_locking_inset->insetUnlock(bv);
|
2001-06-27 14:10:35 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2001-06-01 15:10:26 +00:00
|
|
|
|
#warning fix scrolling when cellinset has requested a scroll (Jug)!!!
|
2001-06-27 14:10:35 +00:00
|
|
|
|
#endif
|
2001-06-01 15:10:26 +00:00
|
|
|
|
#if 0
|
2001-04-27 14:03:25 +00:00
|
|
|
|
if (scroll(false))
|
|
|
|
|
scroll(bv, 0.0F);
|
2001-06-01 15:10:26 +00:00
|
|
|
|
#endif
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2002-04-18 15:19:14 +00:00
|
|
|
|
// this has to be here otherwise we don't redraw the cell!
|
|
|
|
|
the_locking_inset = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-05-16 15:17:19 +00:00
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (the_locking_inset->unlockInsetInInset(bv, inset, lr)) {
|
|
|
|
|
if (inset->lyxCode() == TABULAR_CODE &&
|
|
|
|
|
!the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) {
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).updateDialog(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
oldcell = actcell;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
bool InsetTabular::updateInsetInInset(BufferView * bv, InsetOld * inset)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * tl_inset = inset;
|
2002-03-08 11:42:30 +00:00
|
|
|
|
// look if this inset is really inside myself!
|
|
|
|
|
while(tl_inset->owner() && tl_inset->owner() != this)
|
|
|
|
|
tl_inset = tl_inset->owner();
|
|
|
|
|
// if we enter here it's not ower inset
|
|
|
|
|
if (!tl_inset->owner())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
2002-03-08 11:42:30 +00:00
|
|
|
|
// we only have to do this if this is a subinset of our cells
|
|
|
|
|
if (tl_inset != inset) {
|
|
|
|
|
if (!static_cast<InsetText *>(tl_inset)->updateInsetInInset(bv, inset))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2002-04-16 14:10:39 +00:00
|
|
|
|
int InsetTabular::insetInInsetY() const
|
2000-05-04 08:14:34 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!the_locking_inset)
|
|
|
|
|
return 0;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
return inset_y + the_locking_inset->insetInInsetY();
|
2000-05-04 08:14:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2001-07-12 12:26:06 +00:00
|
|
|
|
UpdatableInset * InsetTabular::getLockingInset() const
|
2000-05-15 14:49:36 +00:00
|
|
|
|
{
|
2001-07-12 12:26:06 +00:00
|
|
|
|
return the_locking_inset ? the_locking_inset->getLockingInset() :
|
|
|
|
|
const_cast<InsetTabular *>(this);
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
UpdatableInset * InsetTabular::getFirstLockingInsetOfType(InsetOld::Code c)
|
2000-05-15 14:49:36 +00:00
|
|
|
|
{
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (c == lyxCode())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return this;
|
|
|
|
|
if (the_locking_inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
|
return the_locking_inset->getFirstLockingInsetOfType(c);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return 0;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
bool InsetTabular::insertInset(BufferView * bv, InsetOld * inset)
|
2000-05-15 14:49:36 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (the_locking_inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
|
return the_locking_inset->insertInset(bv, inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
void InsetTabular::lfunMousePress(FuncRequest const & cmd)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2002-08-19 10:11:13 +00:00
|
|
|
|
if (hasSelection() && cmd.button() == mouse_button::button3)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
2000-12-22 14:44:29 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (hasSelection()) {
|
|
|
|
|
clearSelection();
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(cmd.view(), FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2000-12-22 14:44:29 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int const ocell = actcell;
|
|
|
|
|
int const orow = actrow;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
BufferView * bv = cmd.view();
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
2002-04-16 14:10:39 +00:00
|
|
|
|
if (!locked) {
|
|
|
|
|
locked = true;
|
|
|
|
|
the_locking_inset = 0;
|
|
|
|
|
inset_x = 0;
|
|
|
|
|
inset_y = 0;
|
|
|
|
|
}
|
2002-08-19 10:11:13 +00:00
|
|
|
|
setPos(bv, cmd.x, cmd.y);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (actrow != orow)
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, NONE);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-12-17 13:33:22 +00:00
|
|
|
|
#if 0
|
2002-08-19 10:11:13 +00:00
|
|
|
|
if (cmd.button() == mouse_button::button3) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if ((ocell != actcell) && the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
the_locking_inset->insetUnlock(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
the_locking_inset = 0;
|
|
|
|
|
}
|
|
|
|
|
return;
|
2000-12-22 14:44:29 +00:00
|
|
|
|
}
|
2001-12-17 13:33:22 +00:00
|
|
|
|
#endif
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
bool const inset_hit = insetHit(bv, cmd.x, cmd.y);
|
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if ((ocell == actcell) && the_locking_inset && inset_hit) {
|
|
|
|
|
resetPos(bv);
|
2002-08-29 08:04:22 +00:00
|
|
|
|
FuncRequest cmd1 = cmd;
|
|
|
|
|
cmd1.x -= inset_x;
|
|
|
|
|
cmd1.y -= inset_y;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
the_locking_inset->localDispatch(cmd1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
the_locking_inset->insetUnlock(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2002-04-19 11:12:14 +00:00
|
|
|
|
the_locking_inset = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2002-08-19 10:11:13 +00:00
|
|
|
|
|
|
|
|
|
if (cmd.button() == mouse_button::button2) {
|
2002-08-13 17:43:40 +00:00
|
|
|
|
localDispatch(FuncRequest(bv, LFUN_PASTESELECTION, "paragraph"));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-08-19 10:11:13 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (inset_hit && bv->theLockingInset()) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (!bv->lockInset(&tabular.getCellInset(actcell))) {
|
2002-04-16 14:10:39 +00:00
|
|
|
|
lyxerr[Debug::INSETS] << "Cannot lock inset" << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2002-08-29 08:04:22 +00:00
|
|
|
|
FuncRequest cmd1 = cmd;
|
|
|
|
|
cmd1.x -= inset_x;
|
|
|
|
|
cmd1.y -= inset_y;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
the_locking_inset->localDispatch(cmd1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2000-07-11 15:08:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
bool InsetTabular::lfunMouseRelease(FuncRequest const & cmd)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2001-12-17 13:33:22 +00:00
|
|
|
|
bool ret = false;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
if (the_locking_inset) {
|
2002-08-20 20:30:45 +00:00
|
|
|
|
FuncRequest cmd1 = cmd;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
cmd1.x -= inset_x;
|
|
|
|
|
cmd1.y -= inset_y;
|
|
|
|
|
ret = the_locking_inset->localDispatch(cmd1);
|
|
|
|
|
}
|
|
|
|
|
if (cmd.button() == mouse_button::button3 && !ret) {
|
2003-05-23 15:30:48 +00:00
|
|
|
|
InsetTabularMailer(*this).showDialog(cmd.view());
|
2001-12-17 13:33:22 +00:00
|
|
|
|
return true;
|
2000-07-11 15:08:54 +00:00
|
|
|
|
}
|
2001-12-17 13:33:22 +00:00
|
|
|
|
return ret;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
void InsetTabular::lfunMouseMotion(FuncRequest const & cmd)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (the_locking_inset) {
|
2002-08-20 20:30:45 +00:00
|
|
|
|
FuncRequest cmd1 = cmd;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
cmd1.x -= inset_x;
|
|
|
|
|
cmd1.y -= inset_y;
|
|
|
|
|
the_locking_inset->localDispatch(cmd1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
BufferView * bv = cmd.view();
|
2002-07-25 11:39:38 +00:00
|
|
|
|
int const old_cell = actcell;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
setPos(bv, cmd.x, cmd.y);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
if (!hasSelection()) {
|
|
|
|
|
setSelection(actcell, actcell);
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2002-07-25 11:39:38 +00:00
|
|
|
|
} else if (old_cell != actcell) {
|
2001-12-14 11:55:58 +00:00
|
|
|
|
setSelection(sel_cell_start, actcell);
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::RESULT InsetTabular::localDispatch(FuncRequest const & cmd)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
|
// We need to save the value of the_locking_inset as the call to
|
2002-08-19 10:11:13 +00:00
|
|
|
|
// the_locking_inset->localDispatch might unlock it.
|
2001-04-04 09:42:56 +00:00
|
|
|
|
old_locking_inset = the_locking_inset;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
RESULT result = UpdatableInset::localDispatch(cmd);
|
|
|
|
|
BufferView * bv = cmd.view();
|
2003-05-16 07:44:00 +00:00
|
|
|
|
|
|
|
|
|
if (cmd.action == LFUN_INSET_EDIT) {
|
2003-05-23 07:44:09 +00:00
|
|
|
|
|
2003-05-16 07:44:00 +00:00
|
|
|
|
if (!bv->lockInset(this)) {
|
|
|
|
|
lyxerr[Debug::INSETTEXT] << "InsetTabular::Cannot lock inset" << endl;
|
|
|
|
|
return DISPATCHED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
finishUndo();
|
|
|
|
|
locked = true;
|
|
|
|
|
the_locking_inset = 0;
|
|
|
|
|
inset_x = 0;
|
|
|
|
|
inset_y = 0;
|
|
|
|
|
|
|
|
|
|
if (cmd.argument.size()) {
|
|
|
|
|
if (cmd.argument == "left") {
|
|
|
|
|
if (isRightToLeft(bv))
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getLastCellInRow(0);
|
2003-05-16 07:44:00 +00:00
|
|
|
|
else
|
|
|
|
|
actcell = 0;
|
|
|
|
|
} else {
|
|
|
|
|
if (isRightToLeft(bv))
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getFirstCellInRow(tabular.rows()-1);
|
2003-05-16 07:44:00 +00:00
|
|
|
|
else
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getNumberOfCells() - 1;
|
2003-05-16 07:44:00 +00:00
|
|
|
|
}
|
|
|
|
|
clearSelection();
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
bv->fitCursor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
setPos(bv, cmd.x, cmd.y);
|
|
|
|
|
clearSelection();
|
|
|
|
|
finishUndo();
|
|
|
|
|
if (insetHit(bv, cmd.x, cmd.y) && cmd.button() != mouse_button::button3) {
|
|
|
|
|
activateCellInsetAbs(bv, cmd.x, cmd.y, cmd.button());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return DISPATCHED;
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (result == DISPATCHED || result == DISPATCHED_NOUPDATE) {
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
if (cmd.action < 0 && cmd.argument.empty())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return FINISHED;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
bool hs = hasSelection();
|
2001-03-23 15:48:19 +00:00
|
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
|
result = DISPATCHED;
|
2001-08-01 15:42:53 +00:00
|
|
|
|
// this one have priority over the locked InsetText, if we're not already
|
|
|
|
|
// inside another tabular then that one get's priority!
|
2003-07-25 21:20:24 +00:00
|
|
|
|
if (getFirstLockingInsetOfType(InsetOld::TABULAR_CODE) == this) {
|
2002-08-19 10:11:13 +00:00
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
case LFUN_MOUSE_PRESS:
|
|
|
|
|
lfunMousePress(cmd);
|
|
|
|
|
return DISPATCHED;
|
|
|
|
|
|
|
|
|
|
case LFUN_MOUSE_MOTION:
|
|
|
|
|
lfunMouseMotion(cmd);
|
|
|
|
|
return DISPATCHED;
|
|
|
|
|
|
|
|
|
|
case LFUN_MOUSE_RELEASE:
|
|
|
|
|
return lfunMouseRelease(cmd) ? DISPATCHED : UNDISPATCHED;
|
|
|
|
|
|
2003-04-02 22:12:52 +00:00
|
|
|
|
case LFUN_CELL_BACKWARD:
|
|
|
|
|
case LFUN_CELL_FORWARD:
|
2001-12-10 01:22:12 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2003-04-02 22:12:52 +00:00
|
|
|
|
if (cmd.action == LFUN_CELL_FORWARD)
|
2001-08-01 15:42:53 +00:00
|
|
|
|
moveNextCell(bv, old_locking_inset != 0);
|
|
|
|
|
else
|
|
|
|
|
movePrevCell(bv, old_locking_inset != 0);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-08-01 15:42:53 +00:00
|
|
|
|
if (hs)
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-08-01 15:42:53 +00:00
|
|
|
|
if (!the_locking_inset) {
|
|
|
|
|
return DISPATCHED_NOUPDATE;
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
// this to avoid compiler warnings.
|
|
|
|
|
default:
|
2001-05-28 15:11:24 +00:00
|
|
|
|
break;
|
2001-04-27 14:03:25 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-19 10:11:13 +00:00
|
|
|
|
kb_action action = cmd.action;
|
|
|
|
|
string arg = cmd.argument;
|
2001-02-19 16:01:31 +00:00
|
|
|
|
if (the_locking_inset) {
|
2002-08-19 10:11:13 +00:00
|
|
|
|
result = the_locking_inset->localDispatch(cmd);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (result == DISPATCHED_NOUPDATE) {
|
|
|
|
|
int sc = scroll();
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
if (sc != scroll()) { // inset has been scrolled
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
} else if (result == DISPATCHED) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return result;
|
2001-10-01 11:55:08 +00:00
|
|
|
|
} else if (result == FINISHED_UP) {
|
|
|
|
|
action = LFUN_UP;
|
2003-04-07 16:57:38 +00:00
|
|
|
|
// Make sure to reset status message after
|
|
|
|
|
// exiting, e.g. math inset
|
|
|
|
|
bv->owner()->clearMessage();
|
2001-10-01 11:55:08 +00:00
|
|
|
|
} else if (result == FINISHED_DOWN) {
|
|
|
|
|
action = LFUN_DOWN;
|
2003-04-07 16:57:38 +00:00
|
|
|
|
bv->owner()->clearMessage();
|
2001-10-01 11:55:08 +00:00
|
|
|
|
} else if (result == FINISHED_RIGHT) {
|
|
|
|
|
action = LFUN_RIGHT;
|
2003-04-07 16:57:38 +00:00
|
|
|
|
bv->owner()->clearMessage();
|
|
|
|
|
} else if (result == FINISHED) {
|
|
|
|
|
bv->owner()->clearMessage();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-02-19 16:01:31 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
2001-12-18 03:21:10 +00:00
|
|
|
|
result = DISPATCHED;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
switch (action) {
|
2001-04-04 22:08:13 +00:00
|
|
|
|
// --- Cursor Movements ----------------------------------
|
2001-12-14 11:55:58 +00:00
|
|
|
|
case LFUN_RIGHTSEL: {
|
|
|
|
|
int const start = hasSelection() ? sel_cell_start : actcell;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCellInRow(actcell)) {
|
2001-12-14 11:55:58 +00:00
|
|
|
|
setSelection(start, actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-12-14 11:55:58 +00:00
|
|
|
|
int end = actcell;
|
|
|
|
|
// if we are starting a selection, only select
|
|
|
|
|
// the current cell at the beginning
|
|
|
|
|
if (hasSelection()) {
|
|
|
|
|
moveRight(bv, false);
|
|
|
|
|
end = actcell;
|
|
|
|
|
}
|
|
|
|
|
setSelection(start, end);
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_RIGHT:
|
|
|
|
|
result = moveRight(bv);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (hs)
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
case LFUN_LEFTSEL: {
|
|
|
|
|
int const start = hasSelection() ? sel_cell_start : actcell;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isFirstCellInRow(actcell)) {
|
2001-12-14 11:55:58 +00:00
|
|
|
|
setSelection(start, actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-12-14 11:55:58 +00:00
|
|
|
|
int end = actcell;
|
|
|
|
|
// if we are starting a selection, only select
|
|
|
|
|
// the current cell at the beginning
|
2002-03-21 17:09:55 +00:00
|
|
|
|
if (hasSelection()) {
|
2001-12-14 11:55:58 +00:00
|
|
|
|
moveLeft(bv, false);
|
|
|
|
|
end = actcell;
|
|
|
|
|
}
|
|
|
|
|
setSelection(start, end);
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_LEFT:
|
|
|
|
|
result = moveLeft(bv);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (hs)
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
case LFUN_DOWNSEL: {
|
|
|
|
|
int const start = hasSelection() ? sel_cell_start : actcell;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int const ocell = actcell;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
// if we are starting a selection, only select
|
|
|
|
|
// the current cell at the beginning
|
2002-01-03 13:31:12 +00:00
|
|
|
|
if (hasSelection()) {
|
2001-12-14 11:55:58 +00:00
|
|
|
|
moveDown(bv, false);
|
2002-01-03 13:31:12 +00:00
|
|
|
|
if ((ocell == sel_cell_end) ||
|
2003-06-13 07:37:48 +00:00
|
|
|
|
(tabular.column_of_cell(ocell)>tabular.column_of_cell(actcell)))
|
|
|
|
|
setSelection(start, tabular.getCellBelow(sel_cell_end));
|
2002-01-03 13:31:12 +00:00
|
|
|
|
else
|
2003-06-13 07:37:48 +00:00
|
|
|
|
setSelection(start, tabular.getLastCellBelow(sel_cell_end));
|
2002-01-03 13:31:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
setSelection(start, start);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-02-19 16:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_DOWN:
|
|
|
|
|
result = moveDown(bv, old_locking_inset != 0);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
|
|
|
|
if (hs) {
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
case LFUN_UPSEL: {
|
|
|
|
|
int const start = hasSelection() ? sel_cell_start : actcell;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int const ocell = actcell;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
// if we are starting a selection, only select
|
|
|
|
|
// the current cell at the beginning
|
|
|
|
|
if (hasSelection()) {
|
|
|
|
|
moveUp(bv, false);
|
2002-01-03 13:31:12 +00:00
|
|
|
|
if ((ocell == sel_cell_end) ||
|
2003-06-13 07:37:48 +00:00
|
|
|
|
(tabular.column_of_cell(ocell)>tabular.column_of_cell(actcell)))
|
|
|
|
|
setSelection(start, tabular.getCellAbove(sel_cell_end));
|
2002-01-03 13:31:12 +00:00
|
|
|
|
else
|
2003-06-13 07:37:48 +00:00
|
|
|
|
setSelection(start, tabular.getLastCellAbove(sel_cell_end));
|
2002-01-03 13:31:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
setSelection(start, start);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-02-19 16:01:31 +00:00
|
|
|
|
}
|
2000-05-08 13:39:45 +00:00
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_UP:
|
|
|
|
|
result = moveUp(bv, old_locking_inset != 0);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (hs)
|
2003-07-15 16:25:02 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LFUN_NEXT: {
|
2002-02-28 12:02:19 +00:00
|
|
|
|
UpdateCodes code = CURSOR;
|
|
|
|
|
if (hs) {
|
|
|
|
|
clearSelection();
|
2003-07-15 16:25:02 +00:00
|
|
|
|
code = FULL;
|
2002-02-28 12:02:19 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int column = actcol;
|
2001-12-10 01:22:12 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2003-03-06 20:21:21 +00:00
|
|
|
|
if (bv->text->top_y() + bv->painter().paperHeight() <
|
2003-06-13 07:37:48 +00:00
|
|
|
|
(top_baseline + tabular.getHeightOfTabular()))
|
2001-04-04 22:08:13 +00:00
|
|
|
|
{
|
2003-03-06 20:21:21 +00:00
|
|
|
|
bv->scrollDocView(bv->text->top_y() + bv->painter().paperHeight());
|
2002-02-28 12:02:19 +00:00
|
|
|
|
code = FULL;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellBelow(first_visible_cell) + column;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getFirstCellInRow(tabular.rows() - 1) + column;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, code);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case LFUN_PRIOR: {
|
2002-02-28 12:02:19 +00:00
|
|
|
|
UpdateCodes code = CURSOR;
|
|
|
|
|
if (hs) {
|
|
|
|
|
clearSelection();
|
2003-07-15 16:25:02 +00:00
|
|
|
|
code = FULL;
|
2002-02-28 12:02:19 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int column = actcol;
|
2001-12-10 01:22:12 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (top_baseline < 0) {
|
2003-03-06 20:21:21 +00:00
|
|
|
|
bv->scrollDocView(bv->text->top_y() - bv->painter().paperHeight());
|
2002-02-28 12:02:19 +00:00
|
|
|
|
code = FULL;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (top_baseline > 0)
|
|
|
|
|
actcell = column;
|
|
|
|
|
else
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellBelow(first_visible_cell) + column;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
|
|
|
|
actcell = column;
|
|
|
|
|
}
|
|
|
|
|
resetPos(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, code);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2001-12-02 16:23:50 +00:00
|
|
|
|
// none of these make sense for insettabular,
|
|
|
|
|
// but we must catch them to prevent any
|
|
|
|
|
// selection from being confused
|
|
|
|
|
case LFUN_PRIORSEL:
|
|
|
|
|
case LFUN_NEXTSEL:
|
|
|
|
|
case LFUN_WORDLEFT:
|
|
|
|
|
case LFUN_WORDLEFTSEL:
|
2002-03-21 17:09:55 +00:00
|
|
|
|
case LFUN_WORDRIGHT:
|
2001-12-02 16:23:50 +00:00
|
|
|
|
case LFUN_WORDRIGHTSEL:
|
2002-09-11 14:48:19 +00:00
|
|
|
|
case LFUN_WORDSEL:
|
2001-12-02 16:23:50 +00:00
|
|
|
|
case LFUN_DOWN_PARAGRAPH:
|
|
|
|
|
case LFUN_DOWN_PARAGRAPHSEL:
|
|
|
|
|
case LFUN_UP_PARAGRAPH:
|
|
|
|
|
case LFUN_UP_PARAGRAPHSEL:
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_BACKSPACE:
|
|
|
|
|
case LFUN_HOME:
|
2001-12-02 16:23:50 +00:00
|
|
|
|
case LFUN_HOMESEL:
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_END:
|
2001-12-02 16:23:50 +00:00
|
|
|
|
case LFUN_ENDSEL:
|
2002-01-14 01:48:58 +00:00
|
|
|
|
case LFUN_BEGINNINGBUF:
|
2002-03-21 17:09:55 +00:00
|
|
|
|
case LFUN_BEGINNINGBUFSEL:
|
2002-01-14 01:48:58 +00:00
|
|
|
|
case LFUN_ENDBUF:
|
|
|
|
|
case LFUN_ENDBUFSEL:
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-03-09 18:11:57 +00:00
|
|
|
|
case LFUN_LAYOUT_TABULAR: {
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).showDialog(bv);
|
2003-03-09 18:11:57 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE: {
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).updateDialog(bv);
|
2001-12-18 03:21:10 +00:00
|
|
|
|
break;
|
2003-03-09 18:11:57 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_TABULAR_FEATURE:
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (!tabularFeatures(bv, arg))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
result = UNDISPATCHED;
|
|
|
|
|
break;
|
2002-03-04 15:42:54 +00:00
|
|
|
|
// insert file functions
|
|
|
|
|
case LFUN_FILE_INSERT_ASCII_PARA:
|
2002-03-21 17:09:55 +00:00
|
|
|
|
case LFUN_FILE_INSERT_ASCII:
|
2002-03-04 15:42:54 +00:00
|
|
|
|
{
|
|
|
|
|
string tmpstr = getContentsOfAsciiFile(bv, arg, false);
|
|
|
|
|
if (tmpstr.empty())
|
|
|
|
|
break;
|
|
|
|
|
if (insertAsciiString(bv, tmpstr, false))
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2002-03-04 15:42:54 +00:00
|
|
|
|
else
|
|
|
|
|
result = UNDISPATCHED;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// cut and paste functions
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LFUN_CUT:
|
|
|
|
|
if (!copySelection(bv))
|
|
|
|
|
break;
|
2002-08-07 12:00:08 +00:00
|
|
|
|
// no break here!
|
|
|
|
|
case LFUN_DELETE:
|
2003-07-25 19:18:43 +00:00
|
|
|
|
recordUndo(bv, Undo::DELETE);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
cutSelection(bv->buffer()->params);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LFUN_COPY:
|
|
|
|
|
if (!hasSelection())
|
|
|
|
|
break;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
finishUndo();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
copySelection(bv);
|
|
|
|
|
break;
|
|
|
|
|
case LFUN_PASTESELECTION:
|
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
|
string const clip(bv->getClipboard());
|
2002-03-04 15:42:54 +00:00
|
|
|
|
if (clip.empty())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2002-03-04 15:42:54 +00:00
|
|
|
|
#if 0
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (clip.find('\t') != string::npos) {
|
|
|
|
|
int cols = 1;
|
|
|
|
|
int rows = 1;
|
|
|
|
|
int maxCols = 1;
|
2001-10-01 13:50:31 +00:00
|
|
|
|
string::size_type len = clip.length();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
string::size_type p = 0;
|
|
|
|
|
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (p < len &&
|
2001-04-04 22:08:13 +00:00
|
|
|
|
((p = clip.find_first_of("\t\n", p)) != string::npos)) {
|
2002-02-16 15:59:55 +00:00
|
|
|
|
switch (clip[p]) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case '\t':
|
|
|
|
|
++cols;
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
|
|
|
|
if ((p+1) < len)
|
|
|
|
|
++rows;
|
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
|
cols = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++p;
|
|
|
|
|
}
|
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
|
delete paste_tabular;
|
2002-03-03 20:25:07 +00:00
|
|
|
|
paste_tabular = new LyXTabular(bv->buffer()->params,
|
|
|
|
|
this, rows, maxCols);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
string::size_type op = 0;
|
|
|
|
|
int cell = 0;
|
2003-06-12 11:52:44 +00:00
|
|
|
|
int cells = paste_tabular->getNumberOfCells();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
p = cols = 0;
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while ((cell < cells) && (p < len) &&
|
2001-04-04 22:08:13 +00:00
|
|
|
|
(p = clip.find_first_of("\t\n", p)) != string::npos) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (p >= len)
|
|
|
|
|
break;
|
2002-02-16 15:59:55 +00:00
|
|
|
|
switch (clip[p]) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case '\t':
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->getCellInset(cell)->setText(clip.substr(op, p-op));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
++cols;
|
|
|
|
|
++cell;
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->getCellInset(cell)->setText(clip.substr(op, p-op));
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (cols++ < maxCols)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
++cell;
|
|
|
|
|
cols = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++p;
|
|
|
|
|
op = p;
|
|
|
|
|
}
|
|
|
|
|
// check for the last cell if there is no trailing '\n'
|
|
|
|
|
if ((cell < cells) && (op < len))
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->getCellInset(cell)->setText(clip.substr(op, len-op));
|
2002-03-04 15:42:54 +00:00
|
|
|
|
} else
|
|
|
|
|
#else
|
|
|
|
|
if (!insertAsciiString(bv, clip, true))
|
|
|
|
|
#endif
|
|
|
|
|
{
|
2001-04-04 22:08:13 +00:00
|
|
|
|
// so that the clipboard is used and it goes on
|
|
|
|
|
// to default
|
2001-04-04 09:42:56 +00:00
|
|
|
|
// and executes LFUN_PASTESELECTION in insettext!
|
|
|
|
|
delete paste_tabular;
|
|
|
|
|
paste_tabular = 0;
|
2001-01-03 16:04:05 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
case LFUN_PASTE:
|
|
|
|
|
if (hasPasteBuffer()) {
|
2003-07-25 19:18:43 +00:00
|
|
|
|
recordUndo(bv, Undo::INSERT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
pasteSelection(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// ATTENTION: the function above has to be PASTE and PASTESELECTION!!!
|
|
|
|
|
default:
|
2002-02-26 15:17:00 +00:00
|
|
|
|
// handle font changing stuff on selection before we lock the inset
|
|
|
|
|
// in the default part!
|
|
|
|
|
result = UNDISPATCHED;
|
|
|
|
|
if (hs) {
|
|
|
|
|
switch(action) {
|
|
|
|
|
case LFUN_LANGUAGE:
|
|
|
|
|
case LFUN_EMPH:
|
|
|
|
|
case LFUN_BOLD:
|
|
|
|
|
case LFUN_NOUN:
|
|
|
|
|
case LFUN_CODE:
|
|
|
|
|
case LFUN_SANS:
|
|
|
|
|
case LFUN_ROMAN:
|
|
|
|
|
case LFUN_DEFAULT:
|
|
|
|
|
case LFUN_UNDERLINE:
|
|
|
|
|
case LFUN_FONT_SIZE:
|
2002-08-13 17:43:40 +00:00
|
|
|
|
if (bv->dispatch(FuncRequest(bv, action, arg)))
|
2002-02-26 15:17:00 +00:00
|
|
|
|
result = DISPATCHED;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
// we try to activate the actual inset and put this event down to
|
|
|
|
|
// the insets dispatch function.
|
2002-02-26 15:17:00 +00:00
|
|
|
|
if ((result == DISPATCHED) || the_locking_inset)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-04-27 14:03:25 +00:00
|
|
|
|
nodraw(true);
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (activateCellInset(bv)) {
|
2001-06-14 10:44:21 +00:00
|
|
|
|
// reset need_update setted in above function!
|
|
|
|
|
need_update = NONE;
|
2002-08-13 17:43:40 +00:00
|
|
|
|
result = the_locking_inset->localDispatch(FuncRequest(bv, action, arg));
|
2001-08-16 08:52:30 +00:00
|
|
|
|
if ((result == UNDISPATCHED) || (result >= FINISHED)) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
nodraw(false);
|
2001-06-14 10:44:21 +00:00
|
|
|
|
// we need to update if this was requested before
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, NONE);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return UNDISPATCHED;
|
2001-08-01 15:42:53 +00:00
|
|
|
|
} else if (hs) {
|
|
|
|
|
clearSelection();
|
2002-02-26 11:55:31 +00:00
|
|
|
|
// so the below CELL is not set because this is higher
|
|
|
|
|
// priority and we get a full redraw
|
2003-07-15 16:25:02 +00:00
|
|
|
|
need_update = FULL;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
nodraw(false);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
2001-08-16 08:52:30 +00:00
|
|
|
|
if (result < FINISHED) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!the_locking_inset) {
|
2002-03-29 15:49:45 +00:00
|
|
|
|
if (bv->fitCursor())
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
bv->unlockInset(this);
|
|
|
|
|
return result;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-22 22:44:30 +00:00
|
|
|
|
int InsetTabular::latex(Buffer const * buf, ostream & os,
|
2003-05-23 08:59:47 +00:00
|
|
|
|
LatexRunParams const & runparams) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
return tabular.latex(buf, os, runparams);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2001-12-27 15:54:25 +00:00
|
|
|
|
int InsetTabular::ascii(Buffer const * buf, ostream & os, int ll) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
2001-12-27 15:54:25 +00:00
|
|
|
|
if (ll > 0)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
return tabular.ascii(buf, os, (int)parOwner()->params().depth(),
|
2002-03-21 17:09:55 +00:00
|
|
|
|
false,0);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
return tabular.ascii(buf, os, 0, false,0);
|
2000-04-24 20:58:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2001-10-24 07:43:34 +00:00
|
|
|
|
int InsetTabular::linuxdoc(Buffer const * buf, ostream & os) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-07-26 21:53:54 +00:00
|
|
|
|
return tabular.linuxdoc(buf,os);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
int InsetTabular::docbook(Buffer const * buf, ostream & os, bool mixcont) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-10-24 07:43:34 +00:00
|
|
|
|
int ret = 0;
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * master;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
|
|
|
|
|
// if the table is inside a float it doesn't need the informaltable
|
|
|
|
|
// wrapper. Search for it.
|
|
|
|
|
for(master = owner();
|
2003-07-25 21:20:24 +00:00
|
|
|
|
master && master->lyxCode() != InsetOld::FLOAT_CODE;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
master = master->owner());
|
|
|
|
|
|
|
|
|
|
if (!master) {
|
2002-06-18 15:44:30 +00:00
|
|
|
|
os << "<informaltable>";
|
|
|
|
|
if (mixcont)
|
|
|
|
|
os << endl;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
ret++;
|
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
ret+= tabular.docbook(buf, os, mixcont);
|
2001-10-24 07:43:34 +00:00
|
|
|
|
if (!master) {
|
2002-06-18 15:44:30 +00:00
|
|
|
|
os << "</informaltable>";
|
|
|
|
|
if (mixcont)
|
|
|
|
|
os << endl;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
ret++;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::validate(LaTeXFeatures & features) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.validate(features);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-18 07:47:07 +00:00
|
|
|
|
void InsetTabular::calculate_dimensions_of_cells(MetricsInfo & mi) const
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2003-07-18 07:47:07 +00:00
|
|
|
|
#if 1
|
2001-04-04 09:42:56 +00:00
|
|
|
|
// if we have a locking_inset we should have to check only this cell for
|
2003-07-18 07:47:07 +00:00
|
|
|
|
// change so I'll try this to have a boost, but who knows ;) (Jug?)
|
|
|
|
|
// This is _really_ important (Andr<64>)
|
2003-07-17 09:25:06 +00:00
|
|
|
|
if (need_update != INIT &&
|
2003-07-21 11:01:29 +00:00
|
|
|
|
the_locking_inset == &tabular.getCellInset(actcell)) {
|
2003-07-17 09:25:06 +00:00
|
|
|
|
int maxAsc = 0;
|
|
|
|
|
int maxDesc = 0;
|
2003-07-18 07:47:07 +00:00
|
|
|
|
for (int j = 0; j < tabular.columns(); ++j) {
|
2003-07-17 09:10:16 +00:00
|
|
|
|
Dimension dim;
|
2003-07-18 07:47:07 +00:00
|
|
|
|
MetricsInfo m = mi;
|
|
|
|
|
m.base.textwidth =
|
|
|
|
|
tabular.column_info[j].p_width.inPixels(mi.base.textwidth);
|
2003-07-21 11:01:29 +00:00
|
|
|
|
tabular.getCellInset(actrow, j).metrics(m, dim);
|
2003-07-18 07:47:07 +00:00
|
|
|
|
maxAsc = max(dim.asc, maxAsc);
|
2003-07-17 09:10:16 +00:00
|
|
|
|
maxDesc = max(dim.des, maxDesc);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 07:47:07 +00:00
|
|
|
|
tabular.setWidthOfCell(actcell, the_locking_inset->width());
|
2003-07-17 09:25:06 +00:00
|
|
|
|
tabular.setAscentOfRow(actrow, maxAsc + ADD_TO_HEIGHT);
|
|
|
|
|
tabular.setDescentOfRow(actrow, maxDesc + ADD_TO_HEIGHT);
|
|
|
|
|
return;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 07:47:07 +00:00
|
|
|
|
#endif
|
2003-07-17 09:25:06 +00:00
|
|
|
|
|
|
|
|
|
int cell = -1;
|
|
|
|
|
bool changed = false;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
for (int i = 0; i < tabular.rows(); ++i) {
|
2003-07-17 09:32:06 +00:00
|
|
|
|
int maxAsc = 0;
|
|
|
|
|
int maxDesc = 0;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
for (int j = 0; j < tabular.columns(); ++j) {
|
2003-07-17 09:32:06 +00:00
|
|
|
|
if (tabular.isPartOfMultiColumn(i, j))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
continue;
|
|
|
|
|
++cell;
|
2003-07-17 09:10:16 +00:00
|
|
|
|
Dimension dim;
|
2003-07-18 07:47:07 +00:00
|
|
|
|
MetricsInfo m = mi;
|
|
|
|
|
m.base.textwidth =
|
|
|
|
|
tabular.column_info[j].p_width.inPixels(mi.base.textwidth);
|
2003-07-21 11:01:29 +00:00
|
|
|
|
tabular.getCellInset(cell).metrics(m, dim);
|
2003-07-18 07:47:07 +00:00
|
|
|
|
maxAsc = max(maxAsc, dim.asc);
|
2003-07-17 09:10:16 +00:00
|
|
|
|
maxDesc = max(maxDesc, dim.des);
|
|
|
|
|
changed = tabular.setWidthOfCell(cell, dim.wid) || changed;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
changed = tabular.setAscentOfRow(i, maxAsc + ADD_TO_HEIGHT) || changed;
|
|
|
|
|
changed = tabular.setDescentOfRow(i, maxDesc + ADD_TO_HEIGHT) || changed;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 07:47:07 +00:00
|
|
|
|
//if (changed)
|
|
|
|
|
// tabular.reinit();
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
|
void InsetTabular::getCursor(BufferView & bv, int & x, int & y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-07-17 15:39:12 +00:00
|
|
|
|
if (the_locking_inset) {
|
2003-05-03 18:05:53 +00:00
|
|
|
|
the_locking_inset->getCursor(bv, x, y);
|
2001-07-17 15:39:12 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2003-07-18 16:23:17 +00:00
|
|
|
|
x = cursorx_;
|
|
|
|
|
y = cursory_ + InsetTabular::y();
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
|
// Fun stuff
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int desc = tabular.getDescentOfRow(actrow);
|
2003-05-03 18:05:53 +00:00
|
|
|
|
y += desc;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int ascdesc = tabular.getAscentOfRow(actrow) + desc;
|
2003-05-03 18:05:53 +00:00
|
|
|
|
y -= ascdesc / 2;
|
|
|
|
|
y += ADD_TO_HEIGHT * 2;
|
|
|
|
|
y += TEXT_TO_INSET_OFFSET;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
|
void InsetTabular::getCursorPos(BufferView * bv, int & x, int & y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-05-03 18:05:53 +00:00
|
|
|
|
if (the_locking_inset) {
|
|
|
|
|
the_locking_inset->getCursorPos(bv, x, y);
|
2002-01-06 19:34:30 +00:00
|
|
|
|
return;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 16:23:17 +00:00
|
|
|
|
x = cursorx_ - top_x;
|
|
|
|
|
y = cursory_;
|
2001-08-01 15:42:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::fitInsetCursor(BufferView * bv) const
|
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset) {
|
2003-03-06 20:21:21 +00:00
|
|
|
|
int old_top_y = bv->text->top_y();
|
2001-08-01 15:42:53 +00:00
|
|
|
|
the_locking_inset->fitInsetCursor(bv);
|
2003-03-06 20:21:21 +00:00
|
|
|
|
if (old_top_y != bv->text->top_y())
|
2002-03-29 15:49:45 +00:00
|
|
|
|
need_update = FULL;
|
2001-08-01 15:42:53 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
LyXFont font;
|
2002-05-29 16:21:03 +00:00
|
|
|
|
|
2002-05-24 14:34:32 +00:00
|
|
|
|
int const asc = font_metrics::maxAscent(font);
|
|
|
|
|
int const desc = font_metrics::maxDescent(font);
|
2002-05-03 10:17:56 +00:00
|
|
|
|
resetPos(bv);
|
2002-05-24 14:34:32 +00:00
|
|
|
|
|
2003-07-18 16:23:17 +00:00
|
|
|
|
if (bv->fitLockedInsetCursor(cursorx_, cursory_, asc, desc))
|
2002-03-29 15:49:45 +00:00
|
|
|
|
need_update = FULL;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
|
void InsetTabular::setPos(BufferView * bv, int x, int y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-07-18 16:23:17 +00:00
|
|
|
|
cursory_ = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
actcell = actrow = actcol = 0;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int ly = tabular.getDescentOfRow(actrow);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
|
|
// first search the right row
|
2003-07-18 16:23:17 +00:00
|
|
|
|
while (ly < y && actrow + 1 < tabular.rows()) {
|
|
|
|
|
cursory_ += tabular.getDescentOfRow(actrow) +
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.getAscentOfRow(actrow + 1) +
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getAdditionalHeight(actrow + 1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
++actrow;
|
2003-07-18 16:23:17 +00:00
|
|
|
|
ly = cursory_ + tabular.getDescentOfRow(actrow);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellNumber(actrow, actcol);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
|
|
// now search the right column
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int lx = tabular.getWidthOfColumn(actcell) -
|
|
|
|
|
tabular.getAdditionalWidth(actcell);
|
|
|
|
|
for (; !tabular.isLastCellInRow(actcell) && lx < x; ++actcell) {
|
|
|
|
|
lx += tabular.getWidthOfColumn(actcell + 1)
|
|
|
|
|
+ tabular.getAdditionalWidth(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 16:23:17 +00:00
|
|
|
|
cursorx_ = lx - tabular.getWidthOfColumn(actcell) + top_x + 2;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
int InsetTabular::getCellXPos(int cell) const
|
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int c = cell;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
for (; !tabular.isFirstCellInRow(c); --c)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int lx = tabular.getWidthOfColumn(cell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
for (; c < cell; ++c) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
lx += tabular.getWidthOfColumn(c);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
return (lx - tabular.getWidthOfColumn(cell) + top_x);
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
|
void InsetTabular::resetPos(BufferView * bv) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
2002-03-19 09:47:34 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2001-11-29 12:58:59 +00:00
|
|
|
|
#warning This should be fixed in the right manner (20011128 Jug)
|
2002-03-19 09:47:34 +00:00
|
|
|
|
#endif
|
2001-11-28 16:09:25 +00:00
|
|
|
|
// fast hack to fix infinite repaintings!
|
2002-11-20 16:42:28 +00:00
|
|
|
|
if (in_reset_pos > 0)
|
2001-11-28 16:09:25 +00:00
|
|
|
|
return;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
|
|
int cell = 0;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcol = tabular.column_of_cell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
actrow = 0;
|
2003-07-18 16:23:17 +00:00
|
|
|
|
cursory_ = 0;
|
|
|
|
|
for (; cell < actcell && !tabular.isLastRow(cell); ++cell) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCellInRow(cell)) {
|
2003-07-18 16:23:17 +00:00
|
|
|
|
cursory_ += tabular.getDescentOfRow(actrow) +
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.getAscentOfRow(actrow + 1) +
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getAdditionalHeight(actrow + 1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
++actrow;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-01-06 19:34:30 +00:00
|
|
|
|
if (!locked || nodraw()) {
|
|
|
|
|
if (the_locking_inset)
|
2003-07-18 16:23:17 +00:00
|
|
|
|
inset_y = cursory_;
|
2002-01-06 19:34:30 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// we need this only from here on!!!
|
2002-06-18 15:44:30 +00:00
|
|
|
|
++in_reset_pos;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
static int const offset = ADD_TO_TABULAR_WIDTH + 2;
|
|
|
|
|
int new_x = getCellXPos(actcell);
|
2003-07-18 16:23:17 +00:00
|
|
|
|
int old_x = cursorx_;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
new_x += offset;
|
2003-07-18 16:23:17 +00:00
|
|
|
|
cursorx_ = new_x;
|
2000-11-10 16:04:51 +00:00
|
|
|
|
// cursor.x(getCellXPos(actcell) + offset);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if ((actcol < tabular.columns() - 1) && scroll(false) &&
|
|
|
|
|
(tabular.getWidthOfTabular() < bv->workWidth()-20))
|
2001-06-01 15:10:26 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
scroll(bv, 0.0F);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
} else if (the_locking_inset &&
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getWidthOfColumn(actcell) > bv->workWidth() - 20)
|
2001-06-01 15:10:26 +00:00
|
|
|
|
{
|
2003-07-18 16:23:17 +00:00
|
|
|
|
int xx = cursorx_ - offset + bv->text->getRealCursorX();
|
2001-05-28 15:11:24 +00:00
|
|
|
|
if (xx > (bv->workWidth()-20)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
scroll(bv, -(xx - bv->workWidth() + 60));
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-05-28 15:11:24 +00:00
|
|
|
|
} else if (xx < 20) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (xx < 0)
|
|
|
|
|
xx = -xx + 60;
|
|
|
|
|
else
|
|
|
|
|
xx = 60;
|
|
|
|
|
scroll(bv, xx);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 16:23:17 +00:00
|
|
|
|
} else if ((cursorx_ - offset) > 20 &&
|
|
|
|
|
(cursorx_ - offset + tabular.getWidthOfColumn(actcell))
|
2001-04-04 22:08:13 +00:00
|
|
|
|
> (bv->workWidth() - 20)) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
scroll(bv, -tabular.getWidthOfColumn(actcell) - 20);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2003-07-18 16:23:17 +00:00
|
|
|
|
} else if ((cursorx_ - offset) < 20) {
|
|
|
|
|
scroll(bv, 20 - cursorx_ + offset);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2002-08-07 12:00:08 +00:00
|
|
|
|
} else if (scroll() && top_x > 20 &&
|
2003-06-13 07:37:48 +00:00
|
|
|
|
(top_x + tabular.getWidthOfTabular()) > (bv->workWidth() - 20)) {
|
2003-07-18 16:23:17 +00:00
|
|
|
|
scroll(bv, old_x - cursorx_);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-08-08 13:29:13 +00:00
|
|
|
|
if (the_locking_inset) {
|
2003-07-18 16:23:17 +00:00
|
|
|
|
inset_x = cursorx_ - top_x + tabular.getBeginningOfTextInCell(actcell);
|
|
|
|
|
inset_y = cursory_;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if ((!the_locking_inset ||
|
2001-06-28 10:25:20 +00:00
|
|
|
|
!the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) &&
|
2001-04-04 22:08:13 +00:00
|
|
|
|
actcell != oldcell) {
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).updateDialog(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
oldcell = actcell;
|
|
|
|
|
}
|
2002-06-18 15:44:30 +00:00
|
|
|
|
in_reset_pos = 0;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::RESULT InsetTabular::moveRight(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (lock && !old_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (activateCellInset(bv))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED;
|
|
|
|
|
} else {
|
2001-04-04 22:08:13 +00:00
|
|
|
|
bool moved = isRightToLeft(bv)
|
|
|
|
|
? movePrevCell(bv) : moveNextCell(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!moved)
|
2001-08-16 08:52:30 +00:00
|
|
|
|
return FINISHED_RIGHT;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (lock && activateCellInset(bv))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED;
|
|
|
|
|
}
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::RESULT InsetTabular::moveLeft(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
bool moved = isRightToLeft(bv) ? moveNextCell(bv) : movePrevCell(bv);
|
|
|
|
|
if (!moved)
|
|
|
|
|
return FINISHED;
|
|
|
|
|
if (lock) { // behind the inset
|
2002-05-26 17:33:14 +00:00
|
|
|
|
if (activateCellInset(bv, 0, 0, mouse_button::none, true))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED;
|
|
|
|
|
}
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::RESULT InsetTabular::moveUp(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int const ocell = actcell;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellAbove(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (actcell == ocell) // we moved out of the inset
|
2001-08-16 08:52:30 +00:00
|
|
|
|
return FINISHED_UP;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
|
|
|
|
if (lock) {
|
|
|
|
|
int x = 0;
|
|
|
|
|
int y = 0;
|
|
|
|
|
if (old_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
old_locking_inset->getCursorPos(bv, x, y);
|
2003-07-18 16:23:17 +00:00
|
|
|
|
x -= cursorx_ + tabular.getBeginningOfTextInCell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (activateCellInset(bv, x, 0))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED;
|
2001-01-25 16:00:38 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::RESULT InsetTabular::moveDown(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int const ocell = actcell;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellBelow(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (actcell == ocell) // we moved out of the inset
|
2001-08-16 08:52:30 +00:00
|
|
|
|
return FINISHED_DOWN;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
resetPos(bv);
|
|
|
|
|
if (lock) {
|
|
|
|
|
int x = 0;
|
|
|
|
|
int y = 0;
|
|
|
|
|
if (old_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
old_locking_inset->getCursorPos(bv, x, y);
|
2003-07-18 16:23:17 +00:00
|
|
|
|
x -= cursorx_ + tabular.getBeginningOfTextInCell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
|
if (activateCellInset(bv, x, 0))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED;
|
2001-01-25 16:00:38 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2001-01-08 16:14:09 +00:00
|
|
|
|
bool InsetTabular::moveNextCell(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (isRightToLeft(bv)) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isFirstCellInRow(actcell)) {
|
|
|
|
|
int row = tabular.row_of_cell(actcell);
|
|
|
|
|
if (row == tabular.rows() - 1)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getLastCellInRow(row);
|
|
|
|
|
actcell = tabular.getCellBelow(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
|
|
|
|
if (!actcell)
|
|
|
|
|
return false;
|
|
|
|
|
--actcell;
|
|
|
|
|
}
|
2001-01-08 16:14:09 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCell(actcell))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
|
|
|
|
++actcell;
|
2001-01-08 16:14:09 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (lock) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
bool rtl = tabular.getCellInset(actcell).paragraphs.begin()->
|
2001-04-04 09:42:56 +00:00
|
|
|
|
isRightToLeftPar(bv->buffer()->params);
|
2002-05-26 17:33:14 +00:00
|
|
|
|
activateCellInset(bv, 0, 0, mouse_button::none, !rtl);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2001-01-08 16:14:09 +00:00
|
|
|
|
bool InsetTabular::movePrevCell(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (isRightToLeft(bv)) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCellInRow(actcell)) {
|
|
|
|
|
int row = tabular.row_of_cell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (row == 0)
|
|
|
|
|
return false;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getFirstCellInRow(row);
|
|
|
|
|
actcell = tabular.getCellAbove(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCell(actcell))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
|
|
|
|
++actcell;
|
|
|
|
|
}
|
2001-01-08 16:14:09 +00:00
|
|
|
|
} else {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!actcell) // first cell
|
|
|
|
|
return false;
|
|
|
|
|
--actcell;
|
2001-01-08 16:14:09 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (lock) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
bool rtl = tabular.getCellInset(actcell).paragraphs.begin()->
|
2001-04-04 09:42:56 +00:00
|
|
|
|
isRightToLeftPar(bv->buffer()->params);
|
2002-05-26 17:33:14 +00:00
|
|
|
|
activateCellInset(bv, 0, 0, mouse_button::none, !rtl);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
resetPos(bv);
|
|
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::setFont(BufferView * bv, LyXFont const & font, bool tall,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
bool selectall)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-05-28 15:11:24 +00:00
|
|
|
|
if (selectall) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
setSelection(0, tabular.getNumberOfCells() - 1);
|
2001-05-28 15:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
if (hasSelection()) {
|
2003-07-25 19:18:43 +00:00
|
|
|
|
recordUndo(bv, Undo::ATOMIC);
|
2002-05-30 02:53:41 +00:00
|
|
|
|
bool const frozen = undo_frozen;
|
2001-05-28 15:11:24 +00:00
|
|
|
|
if (!frozen)
|
2001-07-06 15:57:54 +00:00
|
|
|
|
freezeUndo();
|
2001-05-28 15:11:24 +00:00
|
|
|
|
// apply the fontchange on the whole selection
|
|
|
|
|
int sel_row_start;
|
|
|
|
|
int sel_row_end;
|
|
|
|
|
int sel_col_start;
|
|
|
|
|
int sel_col_end;
|
|
|
|
|
getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for(int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for(int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
|
tabular.getCellInset(i, j).setFont(bv, font, tall, true);
|
|
|
|
|
|
2001-05-28 15:11:24 +00:00
|
|
|
|
if (!frozen)
|
2001-07-06 15:57:54 +00:00
|
|
|
|
unFreezeUndo();
|
2002-04-22 14:52:46 +00:00
|
|
|
|
if (selectall)
|
|
|
|
|
clearSelection();
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-05-28 15:11:24 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (the_locking_inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
|
the_locking_inset->setFont(bv, font, tall);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::tabularFeatures(BufferView * bv, string const & what)
|
2000-07-28 14:28:54 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
LyXTabular::Feature action = LyXTabular::LAST_ACTION;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int i = 0;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
|
|
|
|
|
string const tmp = tabularFeature[i].feature;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (tmp == what.substr(0, tmp.length())) {
|
|
|
|
|
//if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
|
|
|
|
|
//tabularFeatures[i].feature.length())) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
action = tabularFeature[i].action;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-07-28 14:28:54 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (action == LyXTabular::LAST_ACTION)
|
|
|
|
|
return false;
|
2000-07-28 14:28:54 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
string const val =
|
2002-07-28 22:50:13 +00:00
|
|
|
|
ltrim(what.substr(tabularFeature[i].feature.length()));
|
2001-06-28 10:25:20 +00:00
|
|
|
|
tabularFeatures(bv, action, val);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-07-28 14:28:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-02-14 15:01:06 +00:00
|
|
|
|
namespace {
|
2003-03-03 23:19:01 +00:00
|
|
|
|
|
2003-02-14 15:01:06 +00:00
|
|
|
|
void checkLongtableSpecial(LyXTabular::ltType & ltt,
|
|
|
|
|
string const & special, bool & flag)
|
2001-12-19 16:13:21 +00:00
|
|
|
|
{
|
|
|
|
|
if (special == "dl_above") {
|
|
|
|
|
ltt.topDL = flag;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
ltt.set = false;
|
2001-12-19 16:13:21 +00:00
|
|
|
|
} else if (special == "dl_below") {
|
|
|
|
|
ltt.bottomDL = flag;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
ltt.set = false;
|
2001-12-19 16:13:21 +00:00
|
|
|
|
} else if (special == "empty") {
|
|
|
|
|
ltt.empty = flag;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
ltt.set = false;
|
2001-12-19 21:25:34 +00:00
|
|
|
|
} else if (flag) {
|
|
|
|
|
ltt.empty = false;
|
2001-12-20 14:52:15 +00:00
|
|
|
|
ltt.set = true;
|
2001-12-19 16:13:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-14 15:01:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-28 14:28:54 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::tabularFeatures(BufferView * bv,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
LyXTabular::Feature feature,
|
|
|
|
|
string const & value)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
|
|
|
|
int sel_col_start;
|
|
|
|
|
int sel_col_end;
|
|
|
|
|
int sel_row_start;
|
|
|
|
|
int sel_row_end;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
bool setLines = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
LyXAlignment setAlign = LYX_ALIGN_LEFT;
|
|
|
|
|
LyXTabular::VAlignment setVAlign = LyXTabular::LYX_VALIGN_TOP;
|
|
|
|
|
|
|
|
|
|
switch (feature) {
|
|
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
|
case LyXTabular::ALIGN_LEFT:
|
2001-12-11 17:26:52 +00:00
|
|
|
|
setAlign = LYX_ALIGN_LEFT;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
2001-12-11 17:26:52 +00:00
|
|
|
|
setAlign = LYX_ALIGN_RIGHT;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
2001-12-11 17:26:52 +00:00
|
|
|
|
setAlign = LYX_ALIGN_CENTER;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2002-11-21 12:24:50 +00:00
|
|
|
|
case LyXTabular::ALIGN_BLOCK:
|
|
|
|
|
setAlign = LYX_ALIGN_BLOCK;
|
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
2001-12-11 17:26:52 +00:00
|
|
|
|
setVAlign = LyXTabular::LYX_VALIGN_TOP;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
2001-12-11 17:26:52 +00:00
|
|
|
|
setVAlign = LyXTabular::LYX_VALIGN_BOTTOM;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
2001-12-11 17:26:52 +00:00
|
|
|
|
setVAlign = LyXTabular::LYX_VALIGN_CENTER;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (hasSelection()) {
|
2001-05-28 15:11:24 +00:00
|
|
|
|
getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
sel_col_start = sel_col_end = tabular.column_of_cell(actcell);
|
|
|
|
|
sel_row_start = sel_row_end = tabular.row_of_cell(actcell);
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
2003-07-25 19:18:43 +00:00
|
|
|
|
recordUndo(bv, Undo::ATOMIC);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int row = tabular.row_of_cell(actcell);
|
|
|
|
|
int column = tabular.column_of_cell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
bool flag = true;
|
2001-12-19 16:13:21 +00:00
|
|
|
|
LyXTabular::ltType ltt;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
switch (feature) {
|
|
|
|
|
case LyXTabular::SET_PWIDTH:
|
|
|
|
|
{
|
2001-12-18 03:21:10 +00:00
|
|
|
|
LyXLength const vallen(value);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
LyXLength const & tmplen = tabular.getColumnPWidth(actcell);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-12-18 03:21:10 +00:00
|
|
|
|
bool const update = (tmplen != vallen);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setColumnPWidth(actcell, vallen);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (update) {
|
2003-06-02 16:40:38 +00:00
|
|
|
|
// We need this otherwise we won't resize
|
|
|
|
|
// the insettext of the active cell (if any)
|
|
|
|
|
// until later (see InsetText::do_resize)
|
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
|
|
|
|
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for (int i = 0; i < tabular.rows(); ++i)
|
|
|
|
|
tabular.getCellInset(i, column).resizeLyXText(bv);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2002-11-21 12:24:50 +00:00
|
|
|
|
|
2002-11-24 15:20:31 +00:00
|
|
|
|
if (vallen.zero()
|
2003-06-13 07:37:48 +00:00
|
|
|
|
&& tabular.getAlignment(actcell, true) == LYX_ALIGN_BLOCK)
|
2002-11-21 12:24:50 +00:00
|
|
|
|
tabularFeatures(bv, LyXTabular::ALIGN_CENTER, string());
|
|
|
|
|
else if (!vallen.zero()
|
2003-06-13 07:37:48 +00:00
|
|
|
|
&& tabular.getAlignment(actcell, true) != LYX_ALIGN_BLOCK)
|
2002-11-21 12:24:50 +00:00
|
|
|
|
tabularFeatures(bv, LyXTabular::ALIGN_BLOCK, string());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2000-07-17 14:31:07 +00:00
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_MPWIDTH:
|
|
|
|
|
{
|
2001-12-18 03:21:10 +00:00
|
|
|
|
LyXLength const vallen(value);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
LyXLength const & tmplen = tabular.getPWidth(actcell);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-12-18 03:21:10 +00:00
|
|
|
|
bool const update = (tmplen != vallen);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setMColumnPWidth(actcell, vallen);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (update) {
|
2003-06-02 16:40:38 +00:00
|
|
|
|
// We need this otherwise we won't resize
|
|
|
|
|
// the insettext of the active cell (if any)
|
|
|
|
|
// until later (see InsetText::do_resize)
|
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
|
|
|
|
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for (int i = 0; i < tabular.rows(); ++i)
|
|
|
|
|
tabular.getCellInset(i, column).resizeLyXText(bv);
|
|
|
|
|
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-05-26 13:09:14 +00:00
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_SPECIAL_COLUMN:
|
|
|
|
|
case LyXTabular::SET_SPECIAL_MULTI:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setAlignSpecial(actcell,value,feature);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::APPEND_ROW:
|
|
|
|
|
// append the row into the tabular
|
2001-06-28 10:25:20 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.appendRow(bv->buffer()->params, actcell);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::APPEND_COLUMN:
|
|
|
|
|
// append the column into the tabular
|
2001-06-28 10:25:20 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.appendColumn(bv->buffer()->params, actcell);
|
|
|
|
|
actcell = tabular.getCellNumber(row, column);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::DELETE_ROW:
|
2001-06-28 10:25:20 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-08-08 13:29:13 +00:00
|
|
|
|
for(int i = sel_row_start; i <= sel_row_end; ++i) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.deleteRow(sel_row_start);
|
2001-08-08 13:29:13 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (sel_row_start >= tabular.rows())
|
2001-08-08 13:29:13 +00:00
|
|
|
|
--sel_row_start;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellNumber(sel_row_start, column);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
clearSelection();
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::DELETE_COLUMN:
|
2001-06-28 10:25:20 +00:00
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-08-08 13:29:13 +00:00
|
|
|
|
for(int i = sel_col_start; i <= sel_col_end; ++i) {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.deleteColumn(sel_col_start);
|
2001-08-08 13:29:13 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (sel_col_start >= tabular.columns())
|
2001-08-08 13:29:13 +00:00
|
|
|
|
--sel_col_start;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellNumber(row, sel_col_start);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
clearSelection();
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_TOP:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
bool lineSet = !tabular.topLine(actcell, flag);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setTopLine(
|
|
|
|
|
tabular.getCellNumber(i, j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
lineSet, flag);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_BOTTOM:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
bool lineSet = !tabular.bottomLine(actcell, flag);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setBottomLine(
|
|
|
|
|
tabular.getCellNumber(i, j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
lineSet,
|
|
|
|
|
flag);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_LEFT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
bool lineSet = !tabular.leftLine(actcell, flag);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLeftLine(
|
|
|
|
|
tabular.getCellNumber(i,j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
lineSet,
|
|
|
|
|
flag);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_RIGHT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
bool lineSet = !tabular.rightLine(actcell, flag);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setRightLine(
|
|
|
|
|
tabular.getCellNumber(i,j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
lineSet,
|
|
|
|
|
flag);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_LEFT:
|
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
2002-11-21 12:24:50 +00:00
|
|
|
|
case LyXTabular::ALIGN_BLOCK:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setAlignment(
|
|
|
|
|
tabular.getCellNumber(i, j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
setAlign,
|
|
|
|
|
flag);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setVAlignment(
|
|
|
|
|
tabular.getCellNumber(i, j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
setVAlign, flag);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::MULTICOLUMN:
|
|
|
|
|
{
|
|
|
|
|
if (sel_row_start != sel_row_end) {
|
2003-03-29 10:29:38 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
|
#warning Need I say it ? This is horrible.
|
|
|
|
|
#endif
|
|
|
|
|
Alert::error(_("Error setting multicolumn"),
|
|
|
|
|
_("You cannot set multicolumn vertically."));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// just multicol for one Single Cell
|
|
|
|
|
if (!hasSelection()) {
|
|
|
|
|
// check wether we are completly in a multicol
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isMultiColumn(actcell)) {
|
|
|
|
|
tabular.unsetMultiColumn(actcell);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setMultiColumn(bv->buffer(), actcell, 1);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-04-10 20:56:16 +00:00
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
// we have a selection so this means we just add all this
|
|
|
|
|
// cells to form a multicolumn cell
|
|
|
|
|
int s_start;
|
|
|
|
|
int s_end;
|
|
|
|
|
|
|
|
|
|
if (sel_cell_start > sel_cell_end) {
|
|
|
|
|
s_start = sel_cell_end;
|
|
|
|
|
s_end = sel_cell_start;
|
|
|
|
|
} else {
|
|
|
|
|
s_start = sel_cell_start;
|
|
|
|
|
s_end = sel_cell_end;
|
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setMultiColumn(bv->buffer(), s_start, s_end - s_start + 1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
actcell = s_start;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
clearSelection();
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_ALL_LINES:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
setLines = true;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::UNSET_ALL_LINES:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setAllLines(
|
|
|
|
|
tabular.getCellNumber(i,j), setLines);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLongTabular(true);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT); // because this toggles displayed
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLongTabular(false);
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, INIT); // because this toggles displayed
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_ROTATE_TABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setRotateTabular(true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::UNSET_ROTATE_TABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setRotateTabular(false);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_ROTATE_CELL:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j<=sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setRotateCell(
|
|
|
|
|
tabular.getCellNumber(i, j),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::UNSET_ROTATE_CELL:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setRotateCell(
|
|
|
|
|
tabular.getCellNumber(i, j), false);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_USEBOX:
|
|
|
|
|
{
|
|
|
|
|
LyXTabular::BoxType val = LyXTabular::BoxType(strToInt(value));
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (val == tabular.getUsebox(actcell))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
val = LyXTabular::BOX_NONE;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setUsebox(
|
|
|
|
|
tabular.getCellNumber(i, j), val);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2001-10-24 15:07:39 +00:00
|
|
|
|
case LyXTabular::UNSET_LTFIRSTHEAD:
|
2001-12-19 16:13:21 +00:00
|
|
|
|
flag = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_LTFIRSTHEAD:
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getRowOfLTFirstHead(row, ltt);
|
2001-12-19 21:25:34 +00:00
|
|
|
|
checkLongtableSpecial(ltt, value, flag);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLTHead(row, flag, ltt, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-10-24 15:07:39 +00:00
|
|
|
|
case LyXTabular::UNSET_LTHEAD:
|
2001-12-19 16:13:21 +00:00
|
|
|
|
flag = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_LTHEAD:
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getRowOfLTHead(row, ltt);
|
2001-12-19 21:25:34 +00:00
|
|
|
|
checkLongtableSpecial(ltt, value, flag);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLTHead(row, flag, ltt, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-10-24 15:07:39 +00:00
|
|
|
|
case LyXTabular::UNSET_LTFOOT:
|
2001-12-19 16:13:21 +00:00
|
|
|
|
flag = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_LTFOOT:
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getRowOfLTFoot(row, ltt);
|
2001-12-19 21:25:34 +00:00
|
|
|
|
checkLongtableSpecial(ltt, value, flag);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLTFoot(row, flag, ltt, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-10-24 15:07:39 +00:00
|
|
|
|
case LyXTabular::UNSET_LTLASTFOOT:
|
2001-12-19 16:13:21 +00:00
|
|
|
|
flag = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_LTLASTFOOT:
|
2003-07-18 16:23:17 +00:00
|
|
|
|
tabular.getRowOfLTLastFoot(row, ltt);
|
2001-12-19 21:25:34 +00:00
|
|
|
|
checkLongtableSpecial(ltt, value, flag);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLTFoot(row, flag, ltt, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
bool what = !tabular.getLTNewPage(row);
|
|
|
|
|
tabular.setLTNewPage(row, what);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
}
|
|
|
|
|
// dummy stuff just to avoid warnings
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::LAST_ACTION:
|
|
|
|
|
break;
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
2003-04-10 20:56:16 +00:00
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).updateDialog(bv);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2003-07-18 07:47:07 +00:00
|
|
|
|
bool InsetTabular::activateCellInset(BufferView * bv, int x, int y,
|
|
|
|
|
mouse_button::state button, bool behind)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2003-07-21 11:01:29 +00:00
|
|
|
|
UpdatableInset & inset = tabular.getCellInset(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (behind) {
|
2003-07-18 07:47:07 +00:00
|
|
|
|
#warning metrics?
|
2003-07-21 11:01:29 +00:00
|
|
|
|
x = inset.x() + inset.width();
|
|
|
|
|
y = inset.descent();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-18 16:23:17 +00:00
|
|
|
|
//inset_x = cursorx_ - top_x + tabular.getBeginningOfTextInCell(actcell);
|
|
|
|
|
//inset_y = cursory_;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
inset.localDispatch(FuncRequest(bv, LFUN_INSET_EDIT, x, y, button));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!the_locking_inset)
|
|
|
|
|
return false;
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return (the_locking_inset != 0);
|
2000-05-04 08:14:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::activateCellInsetAbs(BufferView * bv, int x, int y,
|
2002-05-26 17:33:14 +00:00
|
|
|
|
mouse_button::state button)
|
2000-05-04 08:14:34 +00:00
|
|
|
|
{
|
2003-07-18 16:23:17 +00:00
|
|
|
|
inset_x = cursorx_ - top_x + tabular.getBeginningOfTextInCell(actcell);
|
|
|
|
|
inset_y = cursory_;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
return activateCellInset(bv, x - inset_x, y - inset_y, button);
|
2001-01-25 16:00:38 +00:00
|
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
2001-01-25 16:00:38 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::insetHit(BufferView *, int x, int) const
|
2001-01-25 16:00:38 +00:00
|
|
|
|
{
|
2003-07-18 07:47:07 +00:00
|
|
|
|
return x + top_x
|
2003-07-18 16:23:17 +00:00
|
|
|
|
> cursorx_ + tabular.getBeginningOfTextInCell(actcell);
|
2000-05-04 08:14:34 +00:00
|
|
|
|
}
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2001-06-07 14:51:20 +00:00
|
|
|
|
void InsetTabular::deleteLyXText(BufferView * bv, bool recursive) const
|
|
|
|
|
{
|
|
|
|
|
resizeLyXText(bv, recursive);
|
|
|
|
|
}
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-06-07 14:51:20 +00:00
|
|
|
|
void InsetTabular::resizeLyXText(BufferView * bv, bool force) const
|
2000-07-14 14:57:20 +00:00
|
|
|
|
{
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (force)
|
|
|
|
|
for(int i = 0; i < tabular.rows(); ++i)
|
|
|
|
|
for(int j = 0; j < tabular.columns(); ++j)
|
|
|
|
|
tabular.getCellInset(i, j).resizeLyXText(bv, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
need_update = FULL;
|
2000-07-14 14:57:20 +00:00
|
|
|
|
}
|
2000-07-19 08:37:26 +00:00
|
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
|
LyXText * InsetTabular::getLyXText(BufferView const * bv,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
bool const recursive) const
|
2000-07-19 08:37:26 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (the_locking_inset)
|
|
|
|
|
return the_locking_inset->getLyXText(bv, recursive);
|
2003-07-25 21:20:24 +00:00
|
|
|
|
return InsetOld::getLyXText(bv, recursive);
|
2000-07-19 08:37:26 +00:00
|
|
|
|
}
|
2000-08-01 09:35:42 +00:00
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::showInsetDialog(BufferView * bv) const
|
2001-03-26 14:47:34 +00:00
|
|
|
|
{
|
2003-07-18 16:13:33 +00:00
|
|
|
|
if (!the_locking_inset || !the_locking_inset->showInsetDialog(bv))
|
|
|
|
|
InsetTabularMailer(*this).showDialog(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2001-03-26 14:47:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetTabular::openLayoutDialog(BufferView * bv) const
|
2000-08-01 09:35:42 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (the_locking_inset) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetTabular * inset = static_cast<InsetTabular *>
|
2001-06-28 10:25:20 +00:00
|
|
|
|
(the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE));
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (inset) {
|
|
|
|
|
inset->openLayoutDialog(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2000-08-01 09:35:42 +00:00
|
|
|
|
}
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer(*this).showDialog(bv);
|
2000-08-01 09:35:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
|
2000-08-01 09:35:42 +00:00
|
|
|
|
//
|
2002-01-09 09:36:35 +00:00
|
|
|
|
// function returns an object as defined in func_status.h:
|
|
|
|
|
// states OK, Unknown, Disabled, On, Off.
|
2000-08-01 09:35:42 +00:00
|
|
|
|
//
|
2002-01-09 09:36:35 +00:00
|
|
|
|
FuncStatus InsetTabular::getStatus(string const & what) const
|
2000-08-01 09:35:42 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int action = LyXTabular::LAST_ACTION;
|
2002-01-09 09:36:35 +00:00
|
|
|
|
FuncStatus status;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
int i = 0;
|
2001-06-28 10:25:20 +00:00
|
|
|
|
for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
|
|
|
|
|
string const tmp = tabularFeature[i].feature;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
if (tmp == what.substr(0, tmp.length())) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
//if (!compare(tabularFeatures[i].feature.c_str(), what.c_str(),
|
|
|
|
|
// tabularFeatures[i].feature.length())) {
|
2001-06-28 10:25:20 +00:00
|
|
|
|
action = tabularFeature[i].action;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-01-11 11:18:27 +00:00
|
|
|
|
if (action == LyXTabular::LAST_ACTION) {
|
2002-01-09 09:36:35 +00:00
|
|
|
|
status.clear();
|
|
|
|
|
return status.unknown(true);
|
2002-01-11 11:18:27 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-07-28 22:50:13 +00:00
|
|
|
|
string const argument = ltrim(what.substr(tabularFeature[i].feature.length()));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
|
|
int sel_row_start;
|
|
|
|
|
int sel_row_end;
|
|
|
|
|
int dummy;
|
2001-10-24 15:07:39 +00:00
|
|
|
|
LyXTabular::ltType dummyltt;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
bool flag = true;
|
|
|
|
|
|
|
|
|
|
if (hasSelection()) {
|
2001-05-28 15:11:24 +00:00
|
|
|
|
getSelection(sel_row_start, sel_row_end, dummy, dummy);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
sel_row_start = sel_row_end = tabular.row_of_cell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2000-08-01 09:35:42 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
switch (action) {
|
|
|
|
|
case LyXTabular::SET_PWIDTH:
|
|
|
|
|
case LyXTabular::SET_MPWIDTH:
|
|
|
|
|
case LyXTabular::SET_SPECIAL_COLUMN:
|
|
|
|
|
case LyXTabular::SET_SPECIAL_MULTI:
|
|
|
|
|
case LyXTabular::APPEND_ROW:
|
|
|
|
|
case LyXTabular::APPEND_COLUMN:
|
|
|
|
|
case LyXTabular::DELETE_ROW:
|
|
|
|
|
case LyXTabular::DELETE_COLUMN:
|
|
|
|
|
case LyXTabular::SET_ALL_LINES:
|
|
|
|
|
case LyXTabular::UNSET_ALL_LINES:
|
2002-01-09 09:36:35 +00:00
|
|
|
|
return status.clear();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
|
|
case LyXTabular::MULTICOLUMN:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.isMultiColumn(actcell));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_TOP:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.topLine(actcell, flag));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_BOTTOM:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.bottomLine(actcell, flag));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_LEFT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.leftLine(actcell, flag));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_RIGHT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.rightLine(actcell, flag));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_LEFT:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_LEFT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_RIGHT);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_CENTER);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2002-11-21 12:24:50 +00:00
|
|
|
|
case LyXTabular::ALIGN_BLOCK:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.disabled(tabular.getPWidth(actcell).zero());
|
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_BLOCK);
|
2002-11-21 12:24:50 +00:00
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_TOP);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_BOTTOM);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_CENTER);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.isLongTabular());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(!tabular.isLongTabular());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_ROTATE_TABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getRotateTabular());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::UNSET_ROTATE_TABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(!tabular.getRotateTabular());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_ROTATE_CELL:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getRotateCell(actcell));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::UNSET_ROTATE_CELL:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(!tabular.getRotateCell(actcell));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_USEBOX:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(strToInt(argument) == tabular.getUsebox(actcell));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LTFIRSTHEAD:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LTHEAD:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LTFOOT:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LTLASTFOOT:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
status.setOnOff(tabular.getLTNewPage(sel_row_start));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2002-01-09 09:36:35 +00:00
|
|
|
|
status.clear();
|
|
|
|
|
status.disabled(true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-08-18 15:32:42 +00:00
|
|
|
|
return status;
|
2000-08-01 09:35:42 +00:00
|
|
|
|
}
|
2000-08-23 15:18:19 +00:00
|
|
|
|
|
|
|
|
|
|
2003-06-16 11:49:38 +00:00
|
|
|
|
void InsetTabular::getLabelList(std::vector<string> & list) const
|
2001-04-06 12:47:50 +00:00
|
|
|
|
{
|
2003-06-16 11:49:38 +00:00
|
|
|
|
tabular.getLabelList(list);
|
2001-04-06 12:47:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
|
bool InsetTabular::copySelection(BufferView * bv)
|
2000-08-23 15:18:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!hasSelection())
|
|
|
|
|
return false;
|
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int sel_col_start = tabular.column_of_cell(sel_cell_start);
|
|
|
|
|
int sel_col_end = tabular.column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (sel_col_start > sel_col_end) {
|
|
|
|
|
sel_col_start = sel_col_end;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
sel_col_end = tabular.right_column_of_cell(sel_cell_start);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
sel_col_end = tabular.right_column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
|
int const columns = sel_col_end - sel_col_start + 1;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int sel_row_start = tabular.row_of_cell(sel_cell_start);
|
|
|
|
|
int sel_row_end = tabular.row_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (sel_row_start > sel_row_end) {
|
|
|
|
|
swap(sel_row_start, sel_row_end);
|
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
|
int const rows = sel_row_end - sel_row_start + 1;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
|
delete paste_tabular;
|
2002-03-03 20:25:07 +00:00
|
|
|
|
paste_tabular = new LyXTabular(bv->buffer()->params,
|
2003-06-13 07:37:48 +00:00
|
|
|
|
this, tabular); // rows, columns);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = 0; i < sel_row_start; ++i)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->deleteRow(0);
|
2001-12-05 08:04:20 +00:00
|
|
|
|
while (paste_tabular->rows() > rows)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->deleteRow(rows);
|
|
|
|
|
paste_tabular->setTopLine(0, true, true);
|
|
|
|
|
paste_tabular->setBottomLine(paste_tabular->getFirstCellInRow(rows - 1),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
true, true);
|
|
|
|
|
for (int i = 0; i < sel_col_start; ++i)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->deleteColumn(0);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
while (paste_tabular->columns() > columns)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->deleteColumn(columns);
|
|
|
|
|
paste_tabular->setLeftLine(0, true, true);
|
|
|
|
|
paste_tabular->setRightLine(paste_tabular->getLastCellInRow(0),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
true, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
|
|
ostringstream sstr;
|
2001-12-27 15:54:25 +00:00
|
|
|
|
paste_tabular->ascii(bv->buffer(), sstr,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
(int)parOwner()->params().depth(), true, '\t');
|
2002-11-04 02:12:42 +00:00
|
|
|
|
bv->stuffClipboard(STRCONV(sstr.str()));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::pasteSelection(BufferView * bv)
|
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!paste_tabular)
|
|
|
|
|
return false;
|
2001-01-02 16:06:14 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
for (int r1 = 0, r2 = actrow;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
r1 < paste_tabular->rows() && r2 < tabular.rows();
|
2001-04-04 22:08:13 +00:00
|
|
|
|
++r1, ++r2) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for (int c1 = 0, c2 = actcol;
|
|
|
|
|
c1 < paste_tabular->columns() && c2 < tabular.columns();
|
2001-04-04 22:08:13 +00:00
|
|
|
|
++c1, ++c2) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (paste_tabular->isPartOfMultiColumn(r1, c1) &&
|
|
|
|
|
tabular.isPartOfMultiColumn(r2, c2))
|
2001-04-04 09:42:56 +00:00
|
|
|
|
continue;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (paste_tabular->isPartOfMultiColumn(r1, c1)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
--c2;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2003-07-21 11:01:29 +00:00
|
|
|
|
if (tabular.isPartOfMultiColumn(r2, c2)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
--c1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(r2, c2);
|
|
|
|
|
inset = paste_tabular->getCellInset(r1, c1);
|
|
|
|
|
inset.setOwner(this);
|
|
|
|
|
inset.deleteLyXText(bv);
|
|
|
|
|
inset.markNew();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
bool InsetTabular::cutSelection(BufferParams const & bp)
|
2000-08-23 15:18:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!hasSelection())
|
|
|
|
|
return false;
|
2000-09-19 13:50:47 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int sel_col_start = tabular.column_of_cell(sel_cell_start);
|
|
|
|
|
int sel_col_end = tabular.column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (sel_col_start > sel_col_end) {
|
|
|
|
|
sel_col_start = sel_col_end;
|
2003-06-13 07:37:48 +00:00
|
|
|
|
sel_col_end = tabular.right_column_of_cell(sel_cell_start);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
sel_col_end = tabular.right_column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int sel_row_start = tabular.row_of_cell(sel_cell_start);
|
|
|
|
|
int sel_row_end = tabular.row_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (sel_row_start > sel_row_end) {
|
|
|
|
|
swap(sel_row_start, sel_row_end);
|
|
|
|
|
}
|
|
|
|
|
if (sel_cell_start > sel_cell_end) {
|
|
|
|
|
swap(sel_cell_start, sel_cell_end);
|
|
|
|
|
}
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
|
tabular.getCellInset(tabular.getCellNumber(i, j)).clear(bp.tracking_changes);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
bool InsetTabular::isRightToLeft(BufferView * bv)
|
2001-01-08 16:14:09 +00:00
|
|
|
|
{
|
|
|
|
|
return bv->getParentLanguage(this)->RightToLeft();
|
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
|
bool InsetTabular::nodraw() const
|
|
|
|
|
{
|
2001-06-14 10:44:21 +00:00
|
|
|
|
if (!UpdatableInset::nodraw() && the_locking_inset)
|
2001-04-27 14:03:25 +00:00
|
|
|
|
return the_locking_inset->nodraw();
|
|
|
|
|
return UpdatableInset::nodraw();
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
|
int InsetTabular::scroll(bool recursive) const
|
|
|
|
|
{
|
|
|
|
|
int sx = UpdatableInset::scroll(false);
|
|
|
|
|
|
|
|
|
|
if (recursive && the_locking_inset)
|
|
|
|
|
sx += the_locking_inset->scroll(recursive);
|
|
|
|
|
|
|
|
|
|
return sx;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2001-12-18 03:21:10 +00:00
|
|
|
|
void InsetTabular::getSelection(int & srow, int & erow,
|
|
|
|
|
int & scol, int & ecol) const
|
2001-05-28 15:11:24 +00:00
|
|
|
|
{
|
2001-12-14 11:55:58 +00:00
|
|
|
|
int const start = hasSelection() ? sel_cell_start : actcell;
|
|
|
|
|
int const end = hasSelection() ? sel_cell_end : actcell;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
srow = tabular.row_of_cell(start);
|
|
|
|
|
erow = tabular.row_of_cell(end);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
if (srow > erow) {
|
|
|
|
|
swap(srow, erow);
|
|
|
|
|
}
|
2001-05-28 15:11:24 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
scol = tabular.column_of_cell(start);
|
|
|
|
|
ecol = tabular.column_of_cell(end);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
if (scol > ecol) {
|
|
|
|
|
swap(scol, ecol);
|
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
ecol = tabular.right_column_of_cell(end);
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2001-05-28 15:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
|
2003-05-05 15:39:48 +00:00
|
|
|
|
ParagraphList * InsetTabular::getParagraphs(int i) const
|
2001-09-01 21:26:34 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
return (i < tabular.getNumberOfCells())
|
2003-07-21 11:01:29 +00:00
|
|
|
|
? tabular.getCellInset(i).getParagraphs(0)
|
2001-09-01 21:26:34 +00:00
|
|
|
|
: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
|
LyXCursor const & InsetTabular::cursor(BufferView * bv) const
|
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset)
|
|
|
|
|
return the_locking_inset->cursor(bv);
|
2003-07-25 21:20:24 +00:00
|
|
|
|
return InsetOld::cursor(bv);
|
2001-07-06 15:57:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * InsetTabular::getInsetFromID(int id_arg) const
|
2001-07-06 15:57:54 +00:00
|
|
|
|
{
|
|
|
|
|
if (id_arg == id())
|
|
|
|
|
return const_cast<InsetTabular *>(this);
|
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
for (int i = 0; i < tabular.rows(); ++i) {
|
|
|
|
|
for (int j = 0; j < tabular.columns(); ++j) {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * inset = tabular.getCellInset(i, j).getInsetFromID(id_arg);
|
2003-07-18 16:13:33 +00:00
|
|
|
|
if (inset)
|
|
|
|
|
return inset;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2001-07-17 15:39:12 +00:00
|
|
|
|
|
|
|
|
|
|
2002-08-13 14:40:38 +00:00
|
|
|
|
WordLangTuple const
|
2001-12-18 03:21:10 +00:00
|
|
|
|
InsetTabular::selectNextWordToSpellcheck(BufferView * bv, float & value) const
|
2001-07-17 15:39:12 +00:00
|
|
|
|
{
|
2002-01-06 19:34:30 +00:00
|
|
|
|
nodraw(true);
|
2001-07-17 15:39:12 +00:00
|
|
|
|
if (the_locking_inset) {
|
2002-08-06 22:38:44 +00:00
|
|
|
|
WordLangTuple word(the_locking_inset->selectNextWordToSpellcheck(bv, value));
|
|
|
|
|
if (!word.word().empty()) {
|
2002-01-06 19:34:30 +00:00
|
|
|
|
nodraw(false);
|
2002-08-06 22:38:44 +00:00
|
|
|
|
return word;
|
2002-01-06 19:34:30 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCell(actcell)) {
|
2001-07-18 08:38:14 +00:00
|
|
|
|
bv->unlockInset(const_cast<InsetTabular *>(this));
|
2002-01-06 19:34:30 +00:00
|
|
|
|
nodraw(false);
|
2002-08-06 22:38:44 +00:00
|
|
|
|
return WordLangTuple();
|
2001-07-18 08:38:14 +00:00
|
|
|
|
}
|
|
|
|
|
++actcell;
|
2001-07-17 15:39:12 +00:00
|
|
|
|
}
|
|
|
|
|
// otherwise we have to lock the next inset and ask for it's selecttion
|
2003-07-18 16:13:33 +00:00
|
|
|
|
tabular.getCellInset(actcell)
|
2003-07-21 11:01:29 +00:00
|
|
|
|
.localDispatch(FuncRequest(bv, LFUN_INSET_EDIT));
|
2002-08-06 22:38:44 +00:00
|
|
|
|
WordLangTuple word(selectNextWordInt(bv, value));
|
2001-08-01 15:42:53 +00:00
|
|
|
|
nodraw(false);
|
2002-08-06 22:38:44 +00:00
|
|
|
|
if (!word.word().empty())
|
2001-07-17 15:39:12 +00:00
|
|
|
|
resetPos(bv);
|
2002-08-06 22:38:44 +00:00
|
|
|
|
return word;
|
2001-07-17 15:39:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
|
2002-08-06 22:38:44 +00:00
|
|
|
|
WordLangTuple InsetTabular::selectNextWordInt(BufferView * bv, float & value) const
|
2001-07-17 15:39:12 +00:00
|
|
|
|
{
|
2001-07-18 08:38:14 +00:00
|
|
|
|
// when entering this function the inset should be ALWAYS locked!
|
2003-06-30 23:56:22 +00:00
|
|
|
|
Assert(the_locking_inset);
|
2001-07-18 08:38:14 +00:00
|
|
|
|
|
2002-08-06 22:38:44 +00:00
|
|
|
|
WordLangTuple word(the_locking_inset->selectNextWordToSpellcheck(bv, value));
|
|
|
|
|
if (!word.word().empty())
|
|
|
|
|
return word;
|
2001-07-18 08:38:14 +00:00
|
|
|
|
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCell(actcell)) {
|
2001-07-17 15:39:12 +00:00
|
|
|
|
bv->unlockInset(const_cast<InsetTabular *>(this));
|
2002-08-06 22:38:44 +00:00
|
|
|
|
return WordLangTuple();
|
2001-07-17 15:39:12 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2001-07-17 15:39:12 +00:00
|
|
|
|
// otherwise we have to lock the next inset and ask for it's selecttion
|
2003-07-18 16:13:33 +00:00
|
|
|
|
++actcell;
|
|
|
|
|
tabular.getCellInset(actcell)
|
2003-07-21 11:01:29 +00:00
|
|
|
|
.localDispatch(FuncRequest(bv, LFUN_INSET_EDIT));
|
2001-07-17 15:39:12 +00:00
|
|
|
|
return selectNextWordInt(bv, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::selectSelectedWord(BufferView * bv)
|
|
|
|
|
{
|
2003-07-18 16:13:33 +00:00
|
|
|
|
if (the_locking_inset)
|
2001-07-17 15:39:12 +00:00
|
|
|
|
the_locking_inset->selectSelectedWord(bv);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
|
2001-07-17 15:39:12 +00:00
|
|
|
|
void InsetTabular::toggleSelection(BufferView * bv, bool kill_selection)
|
|
|
|
|
{
|
2003-07-18 16:13:33 +00:00
|
|
|
|
if (the_locking_inset)
|
2001-07-17 15:39:12 +00:00
|
|
|
|
the_locking_inset->toggleSelection(bv, kill_selection);
|
|
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
void InsetTabular::markErased()
|
|
|
|
|
{
|
2003-07-18 16:13:33 +00:00
|
|
|
|
for (int cell = 0; cell < tabular.getNumberOfCells(); ++cell)
|
2003-07-21 11:01:29 +00:00
|
|
|
|
tabular.getCellInset(cell).markErased();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
bool InsetTabular::nextChange(BufferView * bv, lyx::pos_type & length)
|
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset) {
|
|
|
|
|
if (the_locking_inset->nextChange(bv, length)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCell(actcell))
|
2003-02-08 19:18:01 +00:00
|
|
|
|
return false;
|
|
|
|
|
++actcell;
|
|
|
|
|
}
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(actcell);
|
|
|
|
|
if (inset.nextChange(bv, length)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
while (!tabular.isLastCell(actcell)) {
|
2003-02-08 19:18:01 +00:00
|
|
|
|
++actcell;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(actcell);
|
|
|
|
|
if (inset.nextChange(bv, length)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2003-02-08 19:18:01 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
|
bool InsetTabular::searchForward(BufferView * bv, string const & str,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
bool cs, bool mw)
|
2001-07-20 14:18:48 +00:00
|
|
|
|
{
|
2003-04-08 00:02:32 +00:00
|
|
|
|
int cell = 0;
|
2001-07-20 14:18:48 +00:00
|
|
|
|
if (the_locking_inset) {
|
2002-01-06 19:34:30 +00:00
|
|
|
|
if (the_locking_inset->searchForward(bv, str, cs, mw)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-07-20 14:18:48 +00:00
|
|
|
|
return true;
|
2002-01-06 19:34:30 +00:00
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (tabular.isLastCell(actcell))
|
2002-07-26 09:50:16 +00:00
|
|
|
|
return false;
|
2003-04-08 00:02:32 +00:00
|
|
|
|
cell = actcell + 1;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
}
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(cell);
|
|
|
|
|
if (inset.searchForward(bv, str, cs, mw)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2002-07-25 15:42:35 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2003-06-13 07:37:48 +00:00
|
|
|
|
while (!tabular.isLastCell(cell)) {
|
2003-04-08 00:02:32 +00:00
|
|
|
|
++cell;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(cell);
|
|
|
|
|
if (inset.searchForward(bv, str, cs, mw)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, FULL);
|
2002-06-18 15:44:30 +00:00
|
|
|
|
return true;
|
2001-07-20 14:18:48 +00:00
|
|
|
|
}
|
2002-07-28 22:50:13 +00:00
|
|
|
|
}
|
2002-06-18 15:44:30 +00:00
|
|
|
|
return false;
|
2001-07-20 14:18:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
|
bool InsetTabular::searchBackward(BufferView * bv, string const & str,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
bool cs, bool mw)
|
2001-07-20 14:18:48 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int cell = tabular.getNumberOfCells();
|
2001-07-20 14:18:48 +00:00
|
|
|
|
if (the_locking_inset) {
|
2002-01-06 19:34:30 +00:00
|
|
|
|
if (the_locking_inset->searchBackward(bv, str, cs, mw)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2001-07-20 14:18:48 +00:00
|
|
|
|
return true;
|
2002-01-06 19:34:30 +00:00
|
|
|
|
}
|
2003-04-08 00:02:32 +00:00
|
|
|
|
cell = actcell;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-04-08 00:02:32 +00:00
|
|
|
|
while (cell) {
|
|
|
|
|
--cell;
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(cell);
|
|
|
|
|
if (inset.searchBackward(bv, str, cs, mw)) {
|
2003-03-20 14:13:49 +00:00
|
|
|
|
updateLocal(bv, CELL);
|
2002-06-18 15:44:30 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
|
}
|
2002-06-18 15:44:30 +00:00
|
|
|
|
return false;
|
2001-07-20 14:18:48 +00:00
|
|
|
|
}
|
2001-08-08 13:29:13 +00:00
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
bool InsetTabular::insetAllowed(InsetOld::Code code) const
|
2001-08-08 13:29:13 +00:00
|
|
|
|
{
|
|
|
|
|
if (the_locking_inset)
|
|
|
|
|
return the_locking_inset->insetAllowed(code);
|
2002-03-28 13:21:37 +00:00
|
|
|
|
// we return true here because if the inset is not locked someone
|
|
|
|
|
// wants to insert something in one of our insettexts and we generally
|
|
|
|
|
// allow to do so.
|
|
|
|
|
return true;
|
2001-08-08 13:29:13 +00:00
|
|
|
|
}
|
2002-01-08 14:24:49 +00:00
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
bool InsetTabular::forceDefaultParagraphs(InsetOld const * in) const
|
2002-01-08 14:24:49 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
const int cell = tabular.getCellFromInset(in, actcell);
|
2002-01-08 14:24:49 +00:00
|
|
|
|
|
2002-01-20 16:07:42 +00:00
|
|
|
|
if (cell != -1)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
return tabular.getPWidth(cell).zero();
|
2002-01-08 14:24:49 +00:00
|
|
|
|
|
|
|
|
|
// well we didn't obviously find it so maybe our owner knows more
|
|
|
|
|
if (owner())
|
|
|
|
|
return owner()->forceDefaultParagraphs(in);
|
2003-07-30 15:41:39 +00:00
|
|
|
|
|
2002-01-08 14:24:49 +00:00
|
|
|
|
// if we're here there is really something strange going on!!!
|
2003-07-30 15:41:39 +00:00
|
|
|
|
lyxerr << "if we're here there is really something strange going on!\n";
|
2002-01-08 14:24:49 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2002-03-04 15:42:54 +00:00
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
|
2002-03-04 15:42:54 +00:00
|
|
|
|
bool InsetTabular::insertAsciiString(BufferView * bv, string const & buf,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
bool usePaste)
|
2002-03-04 15:42:54 +00:00
|
|
|
|
{
|
2002-03-26 11:05:30 +00:00
|
|
|
|
if (buf.length() <= 0)
|
|
|
|
|
return true;
|
2002-04-22 16:31:14 +00:00
|
|
|
|
|
2002-03-04 15:42:54 +00:00
|
|
|
|
int cols = 1;
|
|
|
|
|
int rows = 1;
|
|
|
|
|
int maxCols = 1;
|
|
|
|
|
string::size_type len = buf.length();
|
|
|
|
|
string::size_type p = 0;
|
|
|
|
|
|
|
|
|
|
while (p < len &&
|
|
|
|
|
((p = buf.find_first_of("\t\n", p)) != string::npos))
|
|
|
|
|
{
|
|
|
|
|
switch (buf[p]) {
|
|
|
|
|
case '\t':
|
|
|
|
|
++cols;
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
|
|
|
|
if ((p+1) < len)
|
|
|
|
|
++rows;
|
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
|
cols = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++p;
|
|
|
|
|
}
|
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
|
LyXTabular * loctab;
|
|
|
|
|
int cell = 0;
|
|
|
|
|
int ocol = 0;
|
|
|
|
|
int row = 0;
|
|
|
|
|
if (usePaste) {
|
|
|
|
|
delete paste_tabular;
|
|
|
|
|
paste_tabular = new LyXTabular(bv->buffer()->params,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
this, rows, maxCols);
|
2002-03-04 15:42:54 +00:00
|
|
|
|
loctab = paste_tabular;
|
|
|
|
|
cols = 0;
|
|
|
|
|
} else {
|
2003-06-13 07:37:48 +00:00
|
|
|
|
loctab = &tabular;
|
2002-03-04 15:42:54 +00:00
|
|
|
|
cell = actcell;
|
|
|
|
|
ocol = actcol;
|
|
|
|
|
row = actrow;
|
|
|
|
|
}
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
2002-03-04 15:42:54 +00:00
|
|
|
|
string::size_type op = 0;
|
2003-06-12 11:52:44 +00:00
|
|
|
|
int cells = loctab->getNumberOfCells();
|
2002-03-04 15:42:54 +00:00
|
|
|
|
p = 0;
|
|
|
|
|
cols = ocol;
|
|
|
|
|
rows = loctab->rows();
|
|
|
|
|
int const columns = loctab->columns();
|
2003-03-03 23:19:01 +00:00
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
while (cell < cells && p < len && row < rows &&
|
2002-03-04 15:42:54 +00:00
|
|
|
|
(p = buf.find_first_of("\t\n", p)) != string::npos)
|
|
|
|
|
{
|
|
|
|
|
if (p >= len)
|
|
|
|
|
break;
|
|
|
|
|
switch (buf[p]) {
|
|
|
|
|
case '\t':
|
|
|
|
|
// we can only set this if we are not too far right
|
|
|
|
|
if (cols < columns) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = loctab->getCellInset(cell);
|
|
|
|
|
LyXFont const font = inset.getLyXText(bv)->
|
2003-07-27 21:59:06 +00:00
|
|
|
|
getFont(inset.paragraphs.begin(), 0);
|
2003-07-21 11:01:29 +00:00
|
|
|
|
inset.setText(buf.substr(op, p - op), font);
|
2002-03-04 15:42:54 +00:00
|
|
|
|
++cols;
|
|
|
|
|
++cell;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
|
|
|
|
// we can only set this if we are not too far right
|
2002-03-26 11:05:30 +00:00
|
|
|
|
if (cols < columns) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = tabular.getCellInset(cell);
|
|
|
|
|
LyXFont const font = inset.getLyXText(bv)->
|
2003-07-27 21:59:06 +00:00
|
|
|
|
getFont(inset.paragraphs.begin(), 0);
|
2003-07-21 11:01:29 +00:00
|
|
|
|
inset.setText(buf.substr(op, p - op), font);
|
2002-03-26 11:05:30 +00:00
|
|
|
|
}
|
2002-03-04 15:42:54 +00:00
|
|
|
|
cols = ocol;
|
|
|
|
|
++row;
|
|
|
|
|
if (row < rows)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
cell = loctab->getCellNumber(row, cols);
|
2002-03-04 15:42:54 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++p;
|
|
|
|
|
op = p;
|
|
|
|
|
}
|
|
|
|
|
// check for the last cell if there is no trailing '\n'
|
2003-07-18 16:13:33 +00:00
|
|
|
|
if (cell < cells && op < len) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
InsetText & inset = loctab->getCellInset(cell);
|
|
|
|
|
LyXFont const font = inset.getLyXText(bv)->
|
2003-07-27 21:59:06 +00:00
|
|
|
|
getFont(inset.paragraphs.begin(), 0);
|
2003-07-21 11:01:29 +00:00
|
|
|
|
inset.setText(buf.substr(op, len - op), font);
|
2002-03-26 11:05:30 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-03-04 15:42:54 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2002-08-02 16:39:43 +00:00
|
|
|
|
|
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
void InsetTabular::addPreview(PreviewLoader & loader) const
|
2002-08-02 16:39:43 +00:00
|
|
|
|
{
|
2003-06-13 07:37:48 +00:00
|
|
|
|
int const rows = tabular.rows();
|
|
|
|
|
int const columns = tabular.columns();
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for (int i = 0; i < rows; ++i)
|
|
|
|
|
for (int j = 0; j < columns; ++j)
|
|
|
|
|
tabular.getCellInset(i, j).addPreview(loader);
|
2002-08-02 16:39:43 +00:00
|
|
|
|
}
|
2003-03-09 18:11:57 +00:00
|
|
|
|
|
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
string const InsetTabularMailer::name_("tabular");
|
2003-03-09 18:11:57 +00:00
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
InsetTabularMailer::InsetTabularMailer(InsetTabular const & inset)
|
|
|
|
|
: inset_(const_cast<InsetTabular &>(inset))
|
2003-03-09 18:11:57 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2003-07-23 09:54:21 +00:00
|
|
|
|
string const InsetTabularMailer::inset2string(Buffer const &) const
|
2003-03-09 18:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
return params2string(inset_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int InsetTabularMailer::string2params(string const & in, InsetTabular & inset)
|
|
|
|
|
{
|
2003-05-13 16:24:49 +00:00
|
|
|
|
istringstream data(STRCONV(in));
|
2003-03-09 18:11:57 +00:00
|
|
|
|
LyXLex lex(0,0);
|
|
|
|
|
lex.setStream(data);
|
|
|
|
|
|
2003-04-24 20:02:49 +00:00
|
|
|
|
#warning CHECK verify that this is a sane value to return.
|
|
|
|
|
if (in.empty())
|
|
|
|
|
return -1;
|
2003-04-29 23:59:39 +00:00
|
|
|
|
|
2003-03-09 18:11:57 +00:00
|
|
|
|
if (lex.isOK()) {
|
|
|
|
|
lex.next();
|
|
|
|
|
string const token = lex.getString();
|
|
|
|
|
if (token != name_)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cell = -1;
|
|
|
|
|
if (lex.isOK()) {
|
|
|
|
|
lex.next();
|
|
|
|
|
string const token = lex.getString();
|
2003-03-13 13:56:25 +00:00
|
|
|
|
if (token != "\\active_cell")
|
2003-03-09 18:11:57 +00:00
|
|
|
|
return -1;
|
|
|
|
|
lex.next();
|
|
|
|
|
cell = lex.getInteger();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This is part of the inset proper that is usually swallowed
|
|
|
|
|
// by Buffer::readInset
|
|
|
|
|
if (lex.isOK()) {
|
|
|
|
|
lex.next();
|
|
|
|
|
string const token = lex.getString();
|
|
|
|
|
if (token != "Tabular")
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-10 03:11:54 +00:00
|
|
|
|
if (!lex.isOK())
|
|
|
|
|
return -1;
|
|
|
|
|
|
2003-07-10 12:26:40 +00:00
|
|
|
|
Buffer const * const buffer = inset.buffer();
|
2003-03-09 18:11:57 +00:00
|
|
|
|
if (buffer)
|
|
|
|
|
inset.read(buffer, lex);
|
|
|
|
|
|
|
|
|
|
// We can't set the active cell, but we can tell the frontend
|
|
|
|
|
// what it is.
|
|
|
|
|
return cell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-13 16:24:49 +00:00
|
|
|
|
string const InsetTabularMailer::params2string(InsetTabular const & inset)
|
2003-03-09 18:11:57 +00:00
|
|
|
|
{
|
2003-07-10 12:26:40 +00:00
|
|
|
|
Buffer const * const buffer = inset.buffer();
|
2003-03-09 18:11:57 +00:00
|
|
|
|
if (!buffer)
|
|
|
|
|
return string();
|
|
|
|
|
|
|
|
|
|
ostringstream data;
|
2003-03-13 13:56:25 +00:00
|
|
|
|
data << name_ << " \\active_cell " << inset.getActCell() << '\n';
|
2003-03-09 18:11:57 +00:00
|
|
|
|
inset.write(buffer, data);
|
|
|
|
|
data << "\\end_inset\n";
|
2003-05-13 16:24:49 +00:00
|
|
|
|
return STRCONV(data.str());
|
2003-03-09 18:11:57 +00:00
|
|
|
|
}
|