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
|
|
|
|
*
|
2003-08-23 00:17:00 +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"
|
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "BufferView.h"
|
2003-11-06 16:43:12 +00:00
|
|
|
|
#include "cursor.h"
|
2000-07-19 17:16:27 +00:00
|
|
|
|
#include "debug.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
|
#include "dispatchresult.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "funcrequest.h"
|
2003-09-04 03:54:04 +00:00
|
|
|
|
#include "FuncStatus.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "language.h"
|
2003-09-16 10:30:59 +00:00
|
|
|
|
#include "LColor.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "lyx_cb.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
|
#include "lyxlex.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "outputparams.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
|
#include "paragraph.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
#include "paragraph_funcs.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "ParagraphParameters.h"
|
2003-10-14 13:01:49 +00:00
|
|
|
|
#include "undo.h"
|
2001-12-18 03:21:10 +00:00
|
|
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
2002-08-13 14:40:38 +00:00
|
|
|
|
#include "frontends/font_metrics.h"
|
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
|
#include "frontends/Painter.h"
|
2001-12-18 03:21:10 +00:00
|
|
|
|
|
2004-07-24 10:55:30 +00:00
|
|
|
|
#include <sstream>
|
2003-10-08 14:29:16 +00:00
|
|
|
|
#include <iostream>
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::graphics::PreviewLoader;
|
|
|
|
|
|
|
|
|
|
using lyx::support::ltrim;
|
|
|
|
|
using lyx::support::strToInt;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
using lyx::support::strToDbl;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2004-01-28 16:21:29 +00:00
|
|
|
|
using std::auto_ptr;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
using std::endl;
|
2001-01-03 16:04:05 +00:00
|
|
|
|
using std::max;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::istringstream;
|
2003-09-05 09:01:27 +00:00
|
|
|
|
using std::ostream;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::ostringstream;
|
2004-01-28 16:21:29 +00:00
|
|
|
|
using std::swap;
|
|
|
|
|
using std::vector;
|
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
|
|
|
|
///
|
2003-11-03 17:47:28 +00:00
|
|
|
|
boost::scoped_ptr<LyXTabular> paste_tabular;
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
|
|
|
|
|
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" },
|
2003-08-14 15:45:09 +00:00
|
|
|
|
{ LyXTabular::VALIGN_MIDDLE, "valign-middle" },
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{ 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" },
|
2003-08-14 15:45:09 +00:00
|
|
|
|
{ LyXTabular::M_VALIGN_MIDDLE, "m-valign-middle" },
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{ 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
|
|
|
|
};
|
|
|
|
|
|
2004-01-05 17:33:57 +00:00
|
|
|
|
|
|
|
|
|
class FeatureEqual : public std::unary_function<TabularFeature, bool> {
|
|
|
|
|
public:
|
|
|
|
|
FeatureEqual(LyXTabular::Feature feature)
|
|
|
|
|
: feature_(feature) {}
|
|
|
|
|
bool operator()(TabularFeature const & tf) const {
|
2003-03-09 18:11:57 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
2004-01-05 17:33:57 +00:00
|
|
|
|
TabularFeature * end = tabularFeature +
|
2003-03-09 18:11:57 +00:00
|
|
|
|
sizeof(tabularFeature) / sizeof(TabularFeature);
|
2004-01-05 17:33:57 +00:00
|
|
|
|
TabularFeature * it = std::find_if(tabularFeature, end,
|
|
|
|
|
FeatureEqual(feature));
|
2003-03-09 18:11:57 +00:00
|
|
|
|
return (it == end) ? string() : it->feature;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
bool InsetTabular::hasPasteBuffer() const
|
|
|
|
|
{
|
2003-11-03 17:47:28 +00:00
|
|
|
|
return (paste_tabular.get() != 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-10-06 14:10:59 +00:00
|
|
|
|
: tabular(buf.params(), max(rows, 1), max(columns, 1)),
|
2004-02-16 11:58:51 +00:00
|
|
|
|
buffer_(&buf), cursorx_(0)
|
2004-03-25 09:16:36 +00:00
|
|
|
|
{}
|
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-10-06 14:10:59 +00:00
|
|
|
|
: UpdatableInset(tab), tabular(tab.tabular),
|
2004-02-16 11:58:51 +00:00
|
|
|
|
buffer_(tab.buffer_), cursorx_(0)
|
2004-03-25 09:16:36 +00:00
|
|
|
|
{}
|
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-08-28 07:41:31 +00:00
|
|
|
|
Buffer const & InsetTabular::buffer() const
|
2003-07-10 12:26:40 +00:00
|
|
|
|
{
|
2003-08-28 07:41:31 +00:00
|
|
|
|
return *buffer_;
|
2003-07-10 12:26:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-05-17 11:28:31 +00:00
|
|
|
|
void InsetTabular::buffer(Buffer const * b)
|
2003-06-03 15:10:14 +00:00
|
|
|
|
{
|
|
|
|
|
buffer_ = b;
|
2003-03-09 18:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +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
|
|
|
|
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) {
|
2003-08-02 11:30:30 +00:00
|
|
|
|
lyxerr << "InsetTabular::metrics: need bv" << endl;
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(false);
|
2003-07-17 15:57:08 +00:00
|
|
|
|
}
|
2003-07-25 17:11:25 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
for (int i = 0, cell = -1; i < tabular.rows(); ++i) {
|
|
|
|
|
int maxAsc = 0;
|
|
|
|
|
int maxDesc = 0;
|
|
|
|
|
for (int j = 0; j < tabular.columns(); ++j) {
|
|
|
|
|
if (tabular.isPartOfMultiColumn(i, j))
|
|
|
|
|
continue;
|
|
|
|
|
++cell;
|
|
|
|
|
Dimension dim;
|
|
|
|
|
MetricsInfo m = mi;
|
|
|
|
|
m.base.textwidth =
|
|
|
|
|
tabular.column_info[j].p_width.inPixels(mi.base.textwidth);
|
|
|
|
|
tabular.getCellInset(cell).metrics(m, dim);
|
|
|
|
|
maxAsc = max(maxAsc, dim.asc);
|
|
|
|
|
maxDesc = max(maxDesc, dim.des);
|
|
|
|
|
tabular.setWidthOfCell(cell, dim.wid);
|
|
|
|
|
}
|
|
|
|
|
tabular.setAscentOfRow(i, maxAsc + ADD_TO_HEIGHT);
|
|
|
|
|
tabular.setDescentOfRow(i, maxDesc + ADD_TO_HEIGHT);
|
|
|
|
|
}
|
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-08-02 11:30:30 +00:00
|
|
|
|
//lyxerr << "InsetTabular::draw: " << x << " " << y << endl;
|
2001-04-27 14:03:25 +00:00
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
BufferView * bv = pi.base.bv;
|
2004-01-30 11:41:12 +00:00
|
|
|
|
setPosCache(pi, x, y);
|
2001-04-13 14:49:58 +00:00
|
|
|
|
|
2004-03-25 09:16:36 +00:00
|
|
|
|
x += scroll();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
x += ADD_TO_TABULAR_WIDTH;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
int idx = 0;
|
2003-03-17 01:34:36 +00:00
|
|
|
|
first_visible_cell = -1;
|
2003-07-30 15:41:39 +00:00
|
|
|
|
for (int i = 0; i < tabular.rows(); ++i) {
|
|
|
|
|
int nx = x;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
idx = 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;
|
|
|
|
|
if (first_visible_cell < 0)
|
2004-02-16 11:58:51 +00:00
|
|
|
|
first_visible_cell = idx;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
if (bv->cursor().selection())
|
2004-02-16 11:58:51 +00:00
|
|
|
|
drawCellSelection(pi, nx, y, i, j, idx);
|
2003-03-17 01:34:36 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
int const cx = nx + tabular.getBeginningOfTextInCell(idx);
|
|
|
|
|
cell(idx).draw(pi, cx, y);
|
|
|
|
|
drawCellLines(pi.pain, nx, y, i, idx);
|
|
|
|
|
nx += tabular.getWidthOfColumn(idx);
|
|
|
|
|
++idx;
|
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
|
|
|
|
}
|
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);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
bool on_off = false;
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
void InsetTabular::drawCellSelection(PainterInfo & pi, 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
|
|
|
|
{
|
2004-02-13 16:22:53 +00:00
|
|
|
|
LCursor & cur = pi.base.bv->cursor();
|
|
|
|
|
BOOST_ASSERT(cur.selection());
|
|
|
|
|
if (tablemode(cur)) {
|
|
|
|
|
int rs, re, cs, ce;
|
|
|
|
|
getSelection(cur, rs, re, cs, ce);
|
|
|
|
|
if (column >= cs && column <= ce && row >= rs && row <= re) {
|
|
|
|
|
int w = tabular.getWidthOfColumn(cell);
|
|
|
|
|
int h = tabular.getAscentOfRow(row) + tabular.getDescentOfRow(row)-1;
|
|
|
|
|
pi.pain.fillRectangle(x, y - tabular.getAscentOfRow(row) + 1,
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
void InsetTabular::edit(LCursor & cur, bool left)
|
2003-10-15 08:49:44 +00:00
|
|
|
|
{
|
2003-12-12 15:18:29 +00:00
|
|
|
|
lyxerr << "InsetTabular::edit: " << this << endl;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
finishUndo();
|
2004-01-08 18:30:14 +00:00
|
|
|
|
int cell;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
if (left) {
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (isRightToLeft(cur))
|
2004-01-08 18:30:14 +00:00
|
|
|
|
cell = tabular.getLastCellInRow(0);
|
2003-11-04 12:36:59 +00:00
|
|
|
|
else
|
2004-01-08 18:30:14 +00:00
|
|
|
|
cell = 0;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
} else {
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (isRightToLeft(cur))
|
2004-01-08 18:30:14 +00:00
|
|
|
|
cell = tabular.getFirstCellInRow(tabular.rows()-1);
|
2003-11-04 12:36:59 +00:00
|
|
|
|
else
|
2004-01-08 18:30:14 +00:00
|
|
|
|
cell = tabular.getNumberOfCells() - 1;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.selection() = false;
|
2004-08-14 14:03:42 +00:00
|
|
|
|
// this accesses the position cache before it is initialized
|
|
|
|
|
//resetPos(cur);
|
|
|
|
|
//cur.bv().fitCursor();
|
2004-03-18 12:53:43 +00:00
|
|
|
|
cur.push(*this);
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cur.idx() = cell;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
}
|
2003-10-15 08:49:44 +00:00
|
|
|
|
|
2003-11-04 12:36:59 +00:00
|
|
|
|
|
2004-08-13 19:14:17 +00:00
|
|
|
|
InsetBase * InsetTabular::editXY(LCursor & cur, int x, int y) const
|
2003-11-04 12:36:59 +00:00
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
//lyxerr << "InsetTabular::editXY: " << this << endl;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.selection() = false;
|
2004-08-13 19:14:17 +00:00
|
|
|
|
cur.push(const_cast<InsetTabular&>(*this));
|
2004-02-13 16:22:53 +00:00
|
|
|
|
return setPos(cur, x, y);
|
2004-08-14 14:03:42 +00:00
|
|
|
|
//int xx = cursorx_ - xo() + tabular.getBeginningOfTextInCell(actcell);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void InsetTabular::priv_dispatch(LCursor & cur, FuncRequest & cmd)
|
2004-02-13 16:22:53 +00:00
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
lyxerr << "# InsetTabular::dispatch: cmd: " << cmd << endl;
|
|
|
|
|
//lyxerr << " cur:\n" << cur << endl;
|
2004-03-01 17:12:09 +00:00
|
|
|
|
CursorSlice sl = cur.top();
|
2004-04-07 08:07:26 +00:00
|
|
|
|
LCursor & bvcur = cur.bv().cursor();
|
2003-10-15 08:49:44 +00:00
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
switch (cmd.action) {
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
case LFUN_MOUSE_PRESS:
|
2004-08-13 22:24:42 +00:00
|
|
|
|
lyxerr << "# InsetTabular::MousePress\n" << cur.bv().cursor() << endl;
|
|
|
|
|
|
|
|
|
|
if (cmd.button() == mouse_button::button1) {
|
|
|
|
|
cur.selection() = false;
|
|
|
|
|
setPos(cur, cmd.x, cmd.y);
|
|
|
|
|
cur.resetAnchor();
|
|
|
|
|
bvcur = cur;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2004-08-13 22:24:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
//if (cmd.button() == mouse_button::button2)
|
|
|
|
|
// dispatch(cur, FuncRequest(LFUN_PASTESELECTION, "paragraph"));
|
2004-08-13 22:24:42 +00:00
|
|
|
|
|
|
|
|
|
// we'll pop up the table dialog on release
|
|
|
|
|
if (cmd.button() == mouse_button::button3)
|
|
|
|
|
break;
|
2003-12-12 15:18:29 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_MOUSE_MOTION:
|
2004-08-13 22:24:42 +00:00
|
|
|
|
lyxerr << "# InsetTabular::MouseMotion\n" << bvcur << endl;
|
2004-08-14 21:23:16 +00:00
|
|
|
|
if (cmd.button() != mouse_button::button1) {
|
|
|
|
|
// only accept motions to places not deeper nested than the real anchor
|
|
|
|
|
if (bvcur.anchor_.hasPart(cur)) {
|
|
|
|
|
setPos(cur, cmd.x, cmd.y);
|
|
|
|
|
bvcur.setCursor(cur);
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-12-12 15:18:29 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_MOUSE_RELEASE:
|
2004-08-13 22:24:42 +00:00
|
|
|
|
lyxerr << "# InsetTabular::MouseRelease\n" << bvcur << endl;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
if (cmd.button() == mouse_button::button3)
|
|
|
|
|
InsetTabularMailer(*this).showDialog(&cur.bv());
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-12-12 15:18:29 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_CELL_BACKWARD:
|
|
|
|
|
movePrevCell(cur);
|
|
|
|
|
cur.selection() = false;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-12-12 15:18:29 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_CELL_FORWARD:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
moveNextCell(cur);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.selection() = false;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_SCROLL_INSET:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
if (cmd.argument.empty())
|
|
|
|
|
break;
|
|
|
|
|
if (cmd.argument.find('.') != cmd.argument.npos)
|
|
|
|
|
scroll(cur.bv(), static_cast<float>(strToDbl(cmd.argument)));
|
|
|
|
|
else
|
|
|
|
|
scroll(cur.bv(), strToInt(cmd.argument));
|
|
|
|
|
break;
|
2003-12-12 15:18:29 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_RIGHTSEL:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_RIGHT:
|
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
2004-03-27 12:40:39 +00:00
|
|
|
|
cur.dispatched(); // override the cell's decision
|
2004-03-01 17:12:09 +00:00
|
|
|
|
if (sl == cur.top())
|
2004-02-13 16:22:53 +00:00
|
|
|
|
isRightToLeft(cur) ? movePrevCell(cur) : moveNextCell(cur);
|
2004-03-18 12:53:43 +00:00
|
|
|
|
if (sl == cur.top()) {
|
|
|
|
|
cmd = FuncRequest(LFUN_FINISHED_RIGHT);
|
|
|
|
|
cur.undispatched();
|
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2002-08-19 10:11:13 +00:00
|
|
|
|
|
2004-04-03 08:37:12 +00:00
|
|
|
|
case LFUN_LEFTSEL:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_LEFT:
|
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
2004-03-27 12:40:39 +00:00
|
|
|
|
cur.dispatched(); // override the cell's decision
|
2004-03-01 17:12:09 +00:00
|
|
|
|
if (sl == cur.top())
|
2004-02-13 16:22:53 +00:00
|
|
|
|
isRightToLeft(cur) ? moveNextCell(cur) : movePrevCell(cur);
|
2004-03-18 12:53:43 +00:00
|
|
|
|
if (sl == cur.top()) {
|
|
|
|
|
cmd = FuncRequest(LFUN_FINISHED_LEFT);
|
|
|
|
|
cur.undispatched();
|
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_DOWNSEL:
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_DOWN:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
2004-03-27 12:40:39 +00:00
|
|
|
|
cur.dispatched(); // override the cell's decision
|
2004-03-01 17:12:09 +00:00
|
|
|
|
if (sl == cur.top())
|
2004-02-16 11:58:51 +00:00
|
|
|
|
if (tabular.row_of_cell(cur.idx()) != tabular.rows() - 1) {
|
|
|
|
|
cur.idx() = tabular.getCellBelow(cur.idx());
|
2004-02-20 11:00:41 +00:00
|
|
|
|
cur.par() = 0;
|
|
|
|
|
cur.pos() = 0;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
resetPos(cur);
|
|
|
|
|
}
|
2004-03-18 12:53:43 +00:00
|
|
|
|
if (sl == cur.top()) {
|
|
|
|
|
cmd = FuncRequest(LFUN_FINISHED_DOWN);
|
|
|
|
|
cur.undispatched();
|
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
case LFUN_UPSEL:
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_UP:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
2004-03-27 12:40:39 +00:00
|
|
|
|
cur.dispatched(); // override the cell's decision
|
2004-03-01 17:12:09 +00:00
|
|
|
|
if (sl == cur.top())
|
2004-02-16 11:58:51 +00:00
|
|
|
|
if (tabular.row_of_cell(cur.idx()) != 0) {
|
|
|
|
|
cur.idx() = tabular.getCellAbove(cur.idx());
|
2004-02-20 11:00:41 +00:00
|
|
|
|
cur.par() = cur.lastpar();
|
|
|
|
|
cur.pos() = cur.lastpos();
|
2004-02-16 11:58:51 +00:00
|
|
|
|
resetPos(cur);
|
|
|
|
|
}
|
2004-03-18 12:53:43 +00:00
|
|
|
|
if (sl == cur.top()) {
|
|
|
|
|
cmd = FuncRequest(LFUN_FINISHED_UP);
|
|
|
|
|
cur.undispatched();
|
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_NEXT: {
|
|
|
|
|
//if (hasSelection())
|
|
|
|
|
// cur.selection() = false;
|
|
|
|
|
int actcell = cur.idx();
|
|
|
|
|
int actcol = tabular.column_of_cell(actcell);
|
|
|
|
|
int column = actcol;
|
|
|
|
|
if (cur.bv().top_y() + cur.bv().painter().paperHeight()
|
2004-08-13 22:48:48 +00:00
|
|
|
|
< yo() + tabular.getHeightOfTabular())
|
2004-02-13 16:22:53 +00:00
|
|
|
|
{
|
|
|
|
|
cur.bv().scrollDocView(
|
|
|
|
|
cur.bv().top_y() + cur.bv().painter().paperHeight());
|
|
|
|
|
cur.idx() = tabular.getCellBelow(first_visible_cell) + column;
|
|
|
|
|
} else {
|
|
|
|
|
cur.idx() = tabular.getFirstCellInRow(tabular.rows() - 1) + column;
|
2001-12-14 11:55:58 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
resetPos(cur);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_PRIOR: {
|
|
|
|
|
//if (hasSelection())
|
|
|
|
|
// cur.selection() = false;
|
|
|
|
|
int column = tabular.column_of_cell(cur.idx());
|
2004-08-13 22:48:48 +00:00
|
|
|
|
if (yo() < 0) {
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.bv().scrollDocView(
|
|
|
|
|
cur.bv().top_y() - cur.bv().painter().paperHeight());
|
2004-08-13 22:48:48 +00:00
|
|
|
|
if (yo() > 0)
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.idx() = column;
|
|
|
|
|
else
|
2004-01-15 17:34:44 +00:00
|
|
|
|
cur.idx() = tabular.getCellBelow(first_visible_cell) + column;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
} else {
|
|
|
|
|
cur.idx() = column;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
resetPos(cur);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_LAYOUT_TABULAR:
|
|
|
|
|
InsetTabularMailer(*this).showDialog(&cur.bv());
|
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
|
|
|
|
InsetTabularMailer(*this).updateDialog(&cur.bv());
|
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_TABULAR_FEATURE:
|
|
|
|
|
if (!tabularFeatures(cur, cmd.argument))
|
2004-03-01 17:12:09 +00:00
|
|
|
|
cur.undispatched();
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
// insert file functions
|
|
|
|
|
case LFUN_FILE_INSERT_ASCII_PARA:
|
|
|
|
|
case LFUN_FILE_INSERT_ASCII: {
|
|
|
|
|
string tmpstr = getContentsOfAsciiFile(&cur.bv(), cmd.argument, false);
|
|
|
|
|
if (!tmpstr.empty() && !insertAsciiString(cur.bv(), tmpstr, false))
|
2004-03-01 17:12:09 +00:00
|
|
|
|
cur.undispatched();
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_CUT:
|
|
|
|
|
if (copySelection(cur)) {
|
|
|
|
|
recordUndo(cur, Undo::DELETE);
|
|
|
|
|
cutSelection(cur);
|
2004-01-08 18:30:14 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_BACKSPACE:
|
|
|
|
|
case LFUN_DELETE:
|
|
|
|
|
recordUndo(cur, Undo::DELETE);
|
|
|
|
|
if (tablemode(cur))
|
|
|
|
|
cutSelection(cur);
|
|
|
|
|
else
|
2004-02-16 11:58:51 +00:00
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2004-01-08 18:30:14 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_COPY:
|
|
|
|
|
if (!cur.selection())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
finishUndo();
|
|
|
|
|
copySelection(cur);
|
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_PASTESELECTION: {
|
|
|
|
|
string const clip = cur.bv().getClipboard();
|
|
|
|
|
if (clip.empty())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
if (clip.find('\t') != string::npos) {
|
|
|
|
|
int cols = 1;
|
|
|
|
|
int rows = 1;
|
|
|
|
|
int maxCols = 1;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
size_t len = clip.length();
|
|
|
|
|
for (size_t p = 0; p < len; ++p) {
|
|
|
|
|
p = clip.find_first_of("\t\n", p);
|
|
|
|
|
if (p == string::npos)
|
|
|
|
|
break;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
switch (clip[p]) {
|
|
|
|
|
case '\t':
|
|
|
|
|
++cols;
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
|
|
|
|
if (p + 1 < len)
|
|
|
|
|
++rows;
|
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
|
cols = 1;
|
|
|
|
|
break;
|
2004-01-08 18:30:14 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
}
|
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
|
|
|
|
|
|
paste_tabular.reset(
|
2004-04-08 15:03:33 +00:00
|
|
|
|
new LyXTabular(cur.buffer().params(), rows, maxCols));
|
2004-02-13 16:22:53 +00:00
|
|
|
|
|
|
|
|
|
string::size_type op = 0;
|
|
|
|
|
int cell = 0;
|
|
|
|
|
int cells = paste_tabular->getNumberOfCells();
|
|
|
|
|
cols = 0;
|
|
|
|
|
LyXFont font;
|
2004-02-16 11:58:51 +00:00
|
|
|
|
for (size_t p = 0; cell < cells && p < len; ++p) {
|
|
|
|
|
p = clip.find_first_of("\t\n", p);
|
|
|
|
|
if (p == string::npos || p >= len)
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
|
|
|
|
switch (clip[p]) {
|
|
|
|
|
case '\t':
|
|
|
|
|
paste_tabular->getCellInset(cell).
|
2004-02-16 11:58:51 +00:00
|
|
|
|
setText(clip.substr(op, p - op), font);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
++cols;
|
|
|
|
|
++cell;
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
|
|
|
|
paste_tabular->getCellInset(cell).
|
2004-02-16 11:58:51 +00:00
|
|
|
|
setText(clip.substr(op, p - op), font);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
while (cols++ < maxCols)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
++cell;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cols = 0;
|
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2004-02-16 11:58:51 +00:00
|
|
|
|
op = p + 1;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
// check for the last cell if there is no trailing '\n'
|
|
|
|
|
if (cell < cells && op < len)
|
|
|
|
|
paste_tabular->getCellInset(cell).
|
2004-02-16 11:58:51 +00:00
|
|
|
|
setText(clip.substr(op, len - op), font);
|
|
|
|
|
} else if (!insertAsciiString(cur.bv(), clip, true)) {
|
2004-02-13 16:22:53 +00:00
|
|
|
|
// so that the clipboard is used and it goes on
|
|
|
|
|
// to default
|
|
|
|
|
// and executes LFUN_PASTESELECTION in insettext!
|
|
|
|
|
paste_tabular.reset();
|
2001-01-03 16:04:05 +00:00
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
// fall through
|
|
|
|
|
}
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
case LFUN_PASTE:
|
|
|
|
|
if (hasPasteBuffer()) {
|
|
|
|
|
recordUndo(cur, Undo::INSERT);
|
|
|
|
|
pasteSelection(cur);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2004-02-16 11:58:51 +00:00
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
|
|
|
|
break;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
default:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
// we try to handle this event in the insets dispatch function.
|
|
|
|
|
cell(cur.idx()).dispatch(cur, cmd);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
2003-11-01 15:45:19 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
InsetTabularMailer(*this).updateDialog(&cur.bv());
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-27 12:40:39 +00:00
|
|
|
|
// function sets an object as defined in func_status.h:
|
|
|
|
|
// states OK, Unknown, Disabled, On, Off.
|
2004-03-18 13:57:20 +00:00
|
|
|
|
bool InsetTabular::getStatus(LCursor & cur, FuncRequest const & cmd,
|
2004-03-27 12:40:39 +00:00
|
|
|
|
FuncStatus & status) const
|
2004-03-18 13:57:20 +00:00
|
|
|
|
{
|
|
|
|
|
switch (cmd.action) {
|
2004-03-27 12:40:39 +00:00
|
|
|
|
case LFUN_TABULAR_FEATURE: {
|
|
|
|
|
int actcell = cur.idx();
|
2004-04-03 08:37:12 +00:00
|
|
|
|
int action = LyXTabular::LAST_ACTION;
|
2004-03-27 12:40:39 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
for (; tabularFeature[i].action != LyXTabular::LAST_ACTION; ++i) {
|
|
|
|
|
string const tmp = tabularFeature[i].feature;
|
|
|
|
|
if (tmp == cmd.argument.substr(0, tmp.length())) {
|
|
|
|
|
action = tabularFeature[i].action;
|
2004-03-18 13:57:20 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2004-03-27 12:40:39 +00:00
|
|
|
|
}
|
|
|
|
|
if (action == LyXTabular::LAST_ACTION) {
|
|
|
|
|
status.clear();
|
|
|
|
|
status.unknown(true);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2004-03-18 13:57:20 +00:00
|
|
|
|
|
2004-03-27 12:40:39 +00:00
|
|
|
|
string const argument
|
|
|
|
|
= ltrim(cmd.argument.substr(tabularFeature[i].feature.length()));
|
|
|
|
|
|
|
|
|
|
int sel_row_start = 0;
|
|
|
|
|
int sel_row_end = 0;
|
|
|
|
|
int dummy;
|
|
|
|
|
LyXTabular::ltType dummyltt;
|
|
|
|
|
bool flag = true;
|
|
|
|
|
|
|
|
|
|
getSelection(cur, sel_row_start, sel_row_end, dummy, dummy);
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
status.clear();
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::MULTICOLUMN:
|
|
|
|
|
status.setOnOff(tabular.isMultiColumn(actcell));
|
|
|
|
|
break;
|
2004-03-18 13:57:20 +00:00
|
|
|
|
|
2004-03-27 12:40:39 +00:00
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_TOP:
|
|
|
|
|
status.setOnOff(tabular.topLine(actcell, flag));
|
2004-03-18 13:57:20 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2004-03-27 12:40:39 +00:00
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_BOTTOM:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM:
|
|
|
|
|
status.setOnOff(tabular.bottomLine(actcell, flag));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_LEFT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT:
|
|
|
|
|
status.setOnOff(tabular.leftLine(actcell, flag));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_RIGHT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT:
|
|
|
|
|
status.setOnOff(tabular.rightLine(actcell, flag));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_LEFT:
|
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_LEFT);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_RIGHT);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_CENTER);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::ALIGN_BLOCK:
|
|
|
|
|
status.enabled(!tabular.getPWidth(actcell).zero());
|
|
|
|
|
status.setOnOff(tabular.getAlignment(actcell, flag) == LYX_ALIGN_BLOCK);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
|
status.setOnOff(
|
|
|
|
|
tabular.getVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_TOP);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
|
|
|
|
status.setOnOff(
|
|
|
|
|
tabular.getVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_BOTTOM);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::M_VALIGN_MIDDLE:
|
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_MIDDLE:
|
|
|
|
|
status.setOnOff(
|
|
|
|
|
tabular.getVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_MIDDLE);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
|
|
|
|
status.setOnOff(tabular.isLongTabular());
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
|
|
|
|
status.setOnOff(!tabular.isLongTabular());
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_ROTATE_TABULAR:
|
|
|
|
|
status.setOnOff(tabular.getRotateTabular());
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::UNSET_ROTATE_TABULAR:
|
|
|
|
|
status.setOnOff(!tabular.getRotateTabular());
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_ROTATE_CELL:
|
|
|
|
|
status.setOnOff(tabular.getRotateCell(actcell));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::UNSET_ROTATE_CELL:
|
|
|
|
|
status.setOnOff(!tabular.getRotateCell(actcell));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_USEBOX:
|
|
|
|
|
status.setOnOff(strToInt(argument) == tabular.getUsebox(actcell));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_LTFIRSTHEAD:
|
|
|
|
|
status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_LTHEAD:
|
|
|
|
|
status.setOnOff(tabular.getRowOfLTHead(sel_row_start, dummyltt));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_LTFOOT:
|
|
|
|
|
status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_LTLASTFOOT:
|
|
|
|
|
status.setOnOff(tabular.getRowOfLTFoot(sel_row_start, dummyltt));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
|
|
|
|
status.setOnOff(tabular.getLTNewPage(sel_row_start));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
status.clear();
|
|
|
|
|
status.enabled(false);
|
|
|
|
|
break;
|
2004-03-18 13:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
return true;
|
2004-03-27 12:40:39 +00:00
|
|
|
|
}
|
2004-03-18 13:57:20 +00:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
// we try to handle this event in the insets dispatch function.
|
2004-03-27 12:40:39 +00:00
|
|
|
|
return cell(cur.idx()).getStatus(cur, cmd, status);
|
2004-03-18 13:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int InsetTabular::latex(Buffer const & buf, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams 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
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int InsetTabular::plaintext(Buffer const & buf, ostream & os,
|
|
|
|
|
OutputParams const & runparams) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
2003-11-10 09:06:48 +00:00
|
|
|
|
int dp = runparams.linelen ? ownerPar(buf, this).params().depth() : 0;
|
|
|
|
|
return tabular.plaintext(buf, os, runparams, dp, false, 0);
|
2000-04-24 20:58:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int InsetTabular::linuxdoc(Buffer const & buf, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2003-10-31 18:45:43 +00:00
|
|
|
|
return tabular.linuxdoc(buf,os, runparams);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int InsetTabular::docbook(Buffer const & buf, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2001-10-24 07:43:34 +00:00
|
|
|
|
int ret = 0;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
InsetOld * master = 0;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
|
2004-04-05 09:36:28 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2004-03-25 09:16:36 +00:00
|
|
|
|
#warning Why not pass a proper DocIterator here?
|
2004-04-05 09:36:28 +00:00
|
|
|
|
#endif
|
2004-03-25 09:16:36 +00:00
|
|
|
|
#if 0
|
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.
|
2004-01-08 18:30:14 +00:00
|
|
|
|
for (master = owner(); master; master = master->owner())
|
|
|
|
|
if (master->lyxCode() == InsetOld::FLOAT_CODE)
|
|
|
|
|
break;
|
2004-03-25 09:16:36 +00:00
|
|
|
|
#endif
|
2001-10-24 07:43:34 +00:00
|
|
|
|
|
|
|
|
|
if (!master) {
|
2002-06-18 15:44:30 +00:00
|
|
|
|
os << "<informaltable>";
|
2003-10-31 18:45:43 +00:00
|
|
|
|
if (runparams.mixed_content)
|
2002-06-18 15:44:30 +00:00
|
|
|
|
os << endl;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
++ret;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
}
|
2003-10-31 18:45:43 +00:00
|
|
|
|
ret += tabular.docbook(buf, os, runparams);
|
2001-10-24 07:43:34 +00:00
|
|
|
|
if (!master) {
|
2002-06-18 15:44:30 +00:00
|
|
|
|
os << "</informaltable>";
|
2003-10-31 18:45:43 +00:00
|
|
|
|
if (runparams.mixed_content)
|
2002-06-18 15:44:30 +00:00
|
|
|
|
os << endl;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
++ret;
|
2001-10-24 07:43:34 +00:00
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
InsetText const & InsetTabular::cell(int idx) const
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return tabular.getCellInset(idx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetText & InsetTabular::cell(int idx)
|
|
|
|
|
{
|
|
|
|
|
return tabular.getCellInset(idx);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-04-13 12:47:48 +00:00
|
|
|
|
void InsetTabular::getCursorPos(LCursor const & cur, int & x, int & y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
cell(cur.idx()).getCursorPos(cur, x, y);
|
2001-08-01 15:42:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
InsetBase * InsetTabular::setPos(LCursor & cur, int x, int y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
int idx_min = 0;
|
|
|
|
|
int dist_min = 1000000;
|
|
|
|
|
for (idx_type i = 0; i < nargs(); ++i) {
|
|
|
|
|
int d = getText(i)->dist(x, y);
|
|
|
|
|
if (d < dist_min) {
|
|
|
|
|
dist_min = d;
|
|
|
|
|
idx_min = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cur.idx() = idx_min;
|
|
|
|
|
InsetBase * inset = cell(cur.idx()).text_.editXY(cur, x, y);
|
|
|
|
|
//lyxerr << "# InsetTabular::setPos()\n" << cur << endl;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
return inset;
|
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);
|
2003-07-30 16:14:02 +00:00
|
|
|
|
for (; c < cell; ++c)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
lx += tabular.getWidthOfColumn(c);
|
2003-07-30 16:14:02 +00:00
|
|
|
|
|
2004-08-14 14:03:42 +00:00
|
|
|
|
return lx - tabular.getWidthOfColumn(cell) + xo();
|
2000-05-15 14:49:36 +00:00
|
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
void InsetTabular::resetPos(LCursor & cur) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
BufferView & bv = cur.bv();
|
2004-02-13 13:51:12 +00:00
|
|
|
|
int actcell = cur.idx();
|
2004-01-08 18:30:14 +00:00
|
|
|
|
int actcol = tabular.column_of_cell(actcell);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
2003-10-10 09:01:23 +00:00
|
|
|
|
int const offset = ADD_TO_TABULAR_WIDTH + 2;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
int new_x = getCellXPos(actcell) + offset;
|
2003-07-18 16:23:17 +00:00
|
|
|
|
int old_x = cursorx_;
|
|
|
|
|
cursorx_ = new_x;
|
2000-11-10 16:04:51 +00:00
|
|
|
|
// cursor.x(getCellXPos(actcell) + offset);
|
2003-07-30 16:14:02 +00:00
|
|
|
|
if (actcol < tabular.columns() - 1 && scroll(false) &&
|
2004-02-13 13:51:12 +00:00
|
|
|
|
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-07-30 16:14:02 +00:00
|
|
|
|
} else if (cursorx_ - offset > 20 &&
|
|
|
|
|
cursorx_ - offset + tabular.getWidthOfColumn(actcell)
|
2004-01-15 17:34:44 +00:00
|
|
|
|
> bv.workWidth() - 20) {
|
2004-02-13 13:51:12 +00:00
|
|
|
|
scroll(bv, - tabular.getWidthOfColumn(actcell) - 20);
|
2003-07-30 16:14:02 +00:00
|
|
|
|
} else if (cursorx_ - offset < 20) {
|
2004-02-13 13:51:12 +00:00
|
|
|
|
scroll(bv, 20 - cursorx_ + offset);
|
2004-08-14 14:03:42 +00:00
|
|
|
|
} else if (scroll() && xo() > 20 &&
|
|
|
|
|
xo() + tabular.getWidthOfTabular() > bv.workWidth() - 20) {
|
2004-02-13 13:51:12 +00:00
|
|
|
|
scroll(bv, old_x - cursorx_);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-12-15 15:33:15 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
InsetTabularMailer(*this).updateDialog(&bv);
|
2003-12-15 15:33:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
void InsetTabular::moveNextCell(LCursor & cur)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2004-03-27 12:40:39 +00:00
|
|
|
|
lyxerr << "InsetTabular::moveNextCell 1 cur: " << cur.top() << endl;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (isRightToLeft(cur)) {
|
2004-03-27 12:40:39 +00:00
|
|
|
|
lyxerr << "InsetTabular::moveNextCell A cur: " << endl;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (tabular.isFirstCellInRow(cur.idx())) {
|
|
|
|
|
int row = tabular.row_of_cell(cur.idx());
|
2003-06-13 07:37:48 +00:00
|
|
|
|
if (row == tabular.rows() - 1)
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cur.idx() = tabular.getLastCellInRow(row);
|
|
|
|
|
cur.idx() = tabular.getCellBelow(cur.idx());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (cur.idx() == 0)
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
--cur.idx();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-01-08 16:14:09 +00:00
|
|
|
|
} else {
|
2004-03-27 12:40:39 +00:00
|
|
|
|
lyxerr << "InsetTabular::moveNextCell B cur: " << endl;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (tabular.isLastCell(cur.idx()))
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
++cur.idx();
|
2001-01-08 16:14:09 +00:00
|
|
|
|
}
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cur.par() = 0;
|
|
|
|
|
cur.pos() = 0;
|
2004-03-27 12:40:39 +00:00
|
|
|
|
lyxerr << "InsetTabular::moveNextCell 2 cur: " << cur.top() << endl;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
resetPos(cur);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
void InsetTabular::movePrevCell(LCursor & cur)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (isRightToLeft(cur)) {
|
|
|
|
|
if (tabular.isLastCellInRow(cur.idx())) {
|
|
|
|
|
int row = tabular.row_of_cell(cur.idx());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (row == 0)
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cur.idx() = tabular.getFirstCellInRow(row);
|
|
|
|
|
cur.idx() = tabular.getCellAbove(cur.idx());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
} else {
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (tabular.isLastCell(cur.idx()))
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
++cur.idx();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2001-01-08 16:14:09 +00:00
|
|
|
|
} else {
|
2004-01-20 14:25:24 +00:00
|
|
|
|
if (cur.idx() == 0) // first cell
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
--cur.idx();
|
2001-01-08 16:14:09 +00:00
|
|
|
|
}
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cur.par() = 0;
|
|
|
|
|
cur.pos() = 0;
|
|
|
|
|
resetPos(cur);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
2004-01-28 16:21:29 +00:00
|
|
|
|
bool InsetTabular::tabularFeatures(LCursor & cur, 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()));
|
2004-01-20 14:25:24 +00:00
|
|
|
|
tabularFeatures(cur, action, val);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-07-28 14:28:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-12-15 15:33:15 +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-10-17 18:01:15 +00:00
|
|
|
|
} // anon namespace
|
2003-02-14 15:01:06 +00:00
|
|
|
|
|
2000-07-28 14:28:54 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
void InsetTabular::tabularFeatures(LCursor & cur,
|
2003-10-14 13:01:49 +00:00
|
|
|
|
LyXTabular::Feature feature, string const & value)
|
2001-04-04 09:42:56 +00:00
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
BufferView & bv = cur.bv();
|
|
|
|
|
int actcell = cur.idx();
|
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) {
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2002-11-21 12:24:50 +00:00
|
|
|
|
case LyXTabular::ALIGN_BLOCK:
|
|
|
|
|
setAlign = LYX_ALIGN_BLOCK;
|
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2003-08-14 15:45:09 +00:00
|
|
|
|
case LyXTabular::M_VALIGN_MIDDLE:
|
|
|
|
|
case LyXTabular::VALIGN_MIDDLE:
|
|
|
|
|
setVAlign = LyXTabular::LYX_VALIGN_MIDDLE;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
}
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
recordUndo(cur, Undo::ATOMIC);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
getSelection(cur, sel_row_start, sel_row_end, sel_col_start, sel_col_end);
|
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) {
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
case LyXTabular::SET_PWIDTH: {
|
2003-10-10 09:01:23 +00:00
|
|
|
|
LyXLength const len(value);
|
|
|
|
|
tabular.setColumnPWidth(actcell, len);
|
|
|
|
|
if (len.zero()
|
2003-06-13 07:37:48 +00:00
|
|
|
|
&& tabular.getAlignment(actcell, true) == LYX_ALIGN_BLOCK)
|
2004-01-20 14:25:24 +00:00
|
|
|
|
tabularFeatures(cur, LyXTabular::ALIGN_CENTER, string());
|
2003-10-10 09:01:23 +00:00
|
|
|
|
else if (!len.zero()
|
2003-06-13 07:37:48 +00:00
|
|
|
|
&& tabular.getAlignment(actcell, true) != LYX_ALIGN_BLOCK)
|
2004-01-20 14:25:24 +00:00
|
|
|
|
tabularFeatures(cur, LyXTabular::ALIGN_BLOCK, string());
|
2003-07-31 10:48:50 +00:00
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_MPWIDTH:
|
2003-11-10 09:06:48 +00:00
|
|
|
|
tabular.setMColumnPWidth(actcell, LyXLength(value));
|
|
|
|
|
break;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
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);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::APPEND_ROW:
|
|
|
|
|
// append the row into the tabular
|
2004-01-15 17:34:44 +00:00
|
|
|
|
tabular.appendRow(bv.buffer()->params(), actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::APPEND_COLUMN:
|
|
|
|
|
// append the column into the tabular
|
2004-01-15 17:34:44 +00:00
|
|
|
|
tabular.appendColumn(bv.buffer()->params(), actcell);
|
2003-06-13 07:37:48 +00:00
|
|
|
|
actcell = tabular.getCellNumber(row, column);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::DELETE_ROW:
|
2003-10-14 13:01:49 +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);
|
|
|
|
|
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);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.selection() = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::DELETE_COLUMN:
|
2003-10-14 13:01:49 +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);
|
|
|
|
|
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);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.selection() = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
|
flag = false;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
case LyXTabular::TOGGLE_LINE_TOP: {
|
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);
|
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;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM: {
|
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);
|
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;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT: {
|
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);
|
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;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT: {
|
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);
|
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);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
2003-08-14 15:45:09 +00:00
|
|
|
|
case LyXTabular::M_VALIGN_MIDDLE:
|
2001-04-04 09:42:56 +00:00
|
|
|
|
flag = false;
|
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
2003-08-14 15:45:09 +00:00
|
|
|
|
case LyXTabular::VALIGN_MIDDLE:
|
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);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
|
|
|
|
case LyXTabular::MULTICOLUMN: {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
2004-02-13 16:22:53 +00:00
|
|
|
|
#if 0
|
2001-04-04 09:42:56 +00:00
|
|
|
|
// just multicol for one Single Cell
|
|
|
|
|
if (!hasSelection()) {
|
2004-06-18 06:47:19 +00:00
|
|
|
|
// check whether we are completly in a multicol
|
2003-08-05 12:35:25 +00:00
|
|
|
|
if (tabular.isMultiColumn(actcell))
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.unsetMultiColumn(actcell);
|
2003-08-05 12:35:25 +00:00
|
|
|
|
else
|
2004-01-15 17:34:44 +00:00
|
|
|
|
tabular.setMultiColumn(bv.buffer(), actcell, 1);
|
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;
|
|
|
|
|
}
|
2004-01-15 17:34:44 +00:00
|
|
|
|
tabular.setMultiColumn(bv.buffer(), s_start, s_end - s_start + 1);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
actcell = s_start;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
cur.selection() = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2000-05-26 13:09:14 +00:00
|
|
|
|
}
|
2003-07-31 10:48:50 +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:
|
2004-02-13 16:22:53 +00:00
|
|
|
|
#if 0
|
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);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
#endif
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLongTabular(true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setLongTabular(false);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
case LyXTabular::SET_ROTATE_CELL:
|
2001-04-04 22:08:13 +00:00
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
2003-10-14 13:01:49 +00:00
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
2003-06-13 07:37:48 +00:00
|
|
|
|
tabular.setRotateCell(
|
2003-08-05 12:35:25 +00:00
|
|
|
|
tabular.getCellNumber(i, j), true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
|
|
|
|
case LyXTabular::SET_USEBOX: {
|
2001-04-04 09:42:56 +00:00
|
|
|
|
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-07-31 10:48:50 +00:00
|
|
|
|
tabular.setUsebox(tabular.getCellNumber(i, j), val);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
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;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2003-10-14 13:01:49 +00:00
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
|
|
|
|
tabular.setLTNewPage(row, !tabular.getLTNewPage(row));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
break;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
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
|
|
|
|
|
2004-01-15 17:34:44 +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
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
bool InsetTabular::showInsetDialog(BufferView * bv) const
|
2001-03-26 14:47:34 +00:00
|
|
|
|
{
|
2003-12-12 15:18:29 +00:00
|
|
|
|
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
|
|
|
|
{
|
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
|
|
|
|
|
2003-09-18 20:18:39 +00:00
|
|
|
|
void InsetTabular::getLabelList(Buffer const & buffer,
|
2004-01-28 16:21:29 +00:00
|
|
|
|
vector<string> & list) const
|
2001-04-06 12:47:50 +00:00
|
|
|
|
{
|
2003-09-18 20:18:39 +00:00
|
|
|
|
tabular.getLabelList(buffer, list);
|
2001-04-06 12:47:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
bool InsetTabular::copySelection(LCursor & cur)
|
2000-08-23 15:18:19 +00:00
|
|
|
|
{
|
2004-02-13 16:22:53 +00:00
|
|
|
|
if (!cur.selection())
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
int rs, re, cs, ce;
|
|
|
|
|
getSelection(cur, rs, re, cs, ce);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
2003-11-03 17:47:28 +00:00
|
|
|
|
paste_tabular.reset(new LyXTabular(tabular));
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
for (int i = 0; i < rs; ++i)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->deleteRow(0);
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
int const rows = re - rs + 1;
|
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);
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->setTopLine(0, true, true);
|
|
|
|
|
paste_tabular->setBottomLine(paste_tabular->getFirstCellInRow(rows - 1),
|
2001-04-04 22:08:13 +00:00
|
|
|
|
true, true);
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
for (int i = 0; i < cs; ++i)
|
2003-06-12 11:52:44 +00:00
|
|
|
|
paste_tabular->deleteColumn(0);
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
int const columns = ce - cs + 1;
|
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);
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2003-06-12 11:52:44 +00:00
|
|
|
|
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
|
|
|
|
|
2003-07-31 10:48:50 +00:00
|
|
|
|
ostringstream os;
|
2003-11-22 14:44:59 +00:00
|
|
|
|
OutputParams const runparams;
|
2004-04-08 15:03:33 +00:00
|
|
|
|
paste_tabular->plaintext(cur.buffer(), os, runparams, 0, true, '\t');
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cur.bv().stuffClipboard(os.str());
|
2001-04-04 09:42:56 +00:00
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
bool InsetTabular::pasteSelection(LCursor & cur)
|
2000-08-23 15:18:19 +00:00
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
|
if (!paste_tabular)
|
|
|
|
|
return false;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
int actcell = cur.idx();
|
2004-01-08 18:30:14 +00:00
|
|
|
|
int actcol = tabular.column_of_cell(actcell);
|
|
|
|
|
int actrow = tabular.row_of_cell(actcell);
|
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.markNew();
|
2001-04-04 09:42:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
void InsetTabular::cutSelection(LCursor & cur)
|
2000-08-23 15:18:19 +00:00
|
|
|
|
{
|
2004-02-13 16:22:53 +00:00
|
|
|
|
if (!cur.selection())
|
|
|
|
|
return;
|
2003-07-31 10:48:50 +00:00
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
|
bool const track = cur.buffer().params().tracking_changes;
|
2004-02-13 16:22:53 +00:00
|
|
|
|
int rs, re, cs, ce;
|
2004-04-03 08:37:12 +00:00
|
|
|
|
getSelection(cur, rs, re, cs, ce);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
for (int i = rs; i <= re; ++i)
|
|
|
|
|
for (int j = cs; j <= ce; ++j)
|
2004-02-16 11:58:51 +00:00
|
|
|
|
cell(tabular.getCellNumber(i, j)).clear(track);
|
2000-08-23 15:18:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
bool InsetTabular::isRightToLeft(LCursor & cur)
|
2001-01-08 16:14:09 +00:00
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
return cur.bv().getParentLanguage(this)->RightToLeft();
|
2001-01-08 16:14:09 +00:00
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
void InsetTabular::getSelection(LCursor & cur,
|
|
|
|
|
int & rs, int & re, int & cs, int & ce) const
|
2001-05-28 15:11:24 +00:00
|
|
|
|
{
|
2004-03-25 09:16:36 +00:00
|
|
|
|
CursorSlice const & beg = cur.selBegin();
|
|
|
|
|
CursorSlice const & end = cur.selEnd();
|
2004-02-13 16:22:53 +00:00
|
|
|
|
cs = tabular.column_of_cell(beg.idx());
|
|
|
|
|
ce = tabular.column_of_cell(end.idx());
|
|
|
|
|
if (cs > ce) {
|
|
|
|
|
ce = cs;
|
|
|
|
|
cs = tabular.column_of_cell(end.idx());
|
|
|
|
|
} else {
|
|
|
|
|
ce = tabular.right_column_of_cell(end.idx());
|
|
|
|
|
}
|
2001-05-28 15:11:24 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
rs = tabular.row_of_cell(beg.idx());
|
|
|
|
|
re = tabular.row_of_cell(end.idx());
|
|
|
|
|
if (rs > re)
|
|
|
|
|
swap(rs, re);
|
2001-05-28 15:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
size_t InsetTabular::nargs() const
|
2003-11-01 09:56:18 +00:00
|
|
|
|
{
|
|
|
|
|
return tabular.getNumberOfCells();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-16 11:58:51 +00:00
|
|
|
|
LyXText * InsetTabular::getText(int idx) const
|
2003-10-14 13:01:49 +00:00
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
return size_t(idx) < nargs() ? cell(idx).getText(0) : 0;
|
2003-10-14 13:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
void InsetTabular::markErased()
|
|
|
|
|
{
|
2004-02-16 11:58:51 +00:00
|
|
|
|
for (idx_type idx = 0; idx < nargs(); ++idx)
|
|
|
|
|
cell(idx).markErased();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-03 23:19:01 +00:00
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
bool InsetTabular::forceDefaultParagraphs(InsetBase const *) const
|
2002-01-08 14:24:49 +00:00
|
|
|
|
{
|
2004-02-13 16:22:53 +00:00
|
|
|
|
#if 0
|
2003-10-06 14:10:59 +00:00
|
|
|
|
const int cell = tabular.getCellFromInset(in);
|
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
|
|
|
|
|
2003-10-13 10:59:31 +00:00
|
|
|
|
// this is a workaround for a crash (New, Insert->Tabular,
|
|
|
|
|
// Insert->FootNote)
|
2003-10-17 18:01:15 +00:00
|
|
|
|
if (!owner())
|
2003-10-13 10:59:31 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2002-01-08 14:24:49 +00:00
|
|
|
|
// well we didn't obviously find it so maybe our owner knows more
|
2003-10-06 14:10:59 +00:00
|
|
|
|
BOOST_ASSERT(owner());
|
|
|
|
|
return owner()->forceDefaultParagraphs(in);
|
2004-02-13 16:22:53 +00:00
|
|
|
|
#endif
|
|
|
|
|
return false;
|
2002-01-08 14:24:49 +00:00
|
|
|
|
}
|
2002-03-04 15:42:54 +00:00
|
|
|
|
|
2003-07-18 16:13:33 +00:00
|
|
|
|
|
2004-01-15 17:34:44 +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;
|
|
|
|
|
|
2004-01-15 17:34:44 +00:00
|
|
|
|
int actcell = bv.cursor().idx();
|
2004-01-08 18:30:14 +00:00
|
|
|
|
int actcol = tabular.column_of_cell(actcell);
|
|
|
|
|
int actrow = tabular.row_of_cell(actcell);
|
|
|
|
|
|
2003-07-31 10:48:50 +00:00
|
|
|
|
while (p < len && (p = buf.find_first_of("\t\n", p)) != string::npos) {
|
2002-03-04 15:42:54 +00:00
|
|
|
|
switch (buf[p]) {
|
|
|
|
|
case '\t':
|
|
|
|
|
++cols;
|
|
|
|
|
break;
|
|
|
|
|
case '\n':
|
2003-10-14 13:01:49 +00:00
|
|
|
|
if (p + 1 < len)
|
2002-03-04 15:42:54 +00:00
|
|
|
|
++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) {
|
2003-11-03 17:47:28 +00:00
|
|
|
|
paste_tabular.reset(
|
2004-01-15 17:34:44 +00:00
|
|
|
|
new LyXTabular(bv.buffer()->params(), rows, maxCols));
|
2003-11-03 17:47:28 +00:00
|
|
|
|
loctab = paste_tabular.get();
|
2002-03-04 15:42:54 +00:00
|
|
|
|
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);
|
2004-03-25 09:16:36 +00:00
|
|
|
|
LyXFont const font = inset.text_.getFont(0, 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);
|
2004-03-25 09:16:36 +00:00
|
|
|
|
LyXFont const font = inset.text_.getFont(0, 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);
|
2004-03-25 09:16:36 +00:00
|
|
|
|
LyXFont const font = inset.text_.getFont(0, 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-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-11-10 09:06:48 +00:00
|
|
|
|
for (int i = 0; i < rows; ++i) {
|
2003-07-21 11:01:29 +00:00
|
|
|
|
for (int j = 0; j < columns; ++j)
|
|
|
|
|
tabular.getCellInset(i, j).addPreview(loader);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
}
|
2002-08-02 16:39:43 +00:00
|
|
|
|
}
|
2003-03-09 18:11:57 +00:00
|
|
|
|
|
|
|
|
|
|
2004-02-13 16:22:53 +00:00
|
|
|
|
bool InsetTabular::tablemode(LCursor & cur) const
|
2004-01-08 18:30:14 +00:00
|
|
|
|
{
|
2004-04-07 08:07:26 +00:00
|
|
|
|
return cur.selection() && cur.selBegin().idx() != cur.selEnd().idx();
|
2004-01-08 18:30:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-16 11:58:51 +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-09-15 11:00:00 +00:00
|
|
|
|
istringstream data(in);
|
2003-03-09 18:11:57 +00:00
|
|
|
|
LyXLex lex(0,0);
|
|
|
|
|
lex.setStream(data);
|
|
|
|
|
|
2004-04-05 09:36:28 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2003-04-24 20:02:49 +00:00
|
|
|
|
#warning CHECK verify that this is a sane value to return.
|
2004-04-05 09:36:28 +00:00
|
|
|
|
#endif
|
2003-04-24 20:02:49 +00:00
|
|
|
|
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-08-28 07:41:31 +00:00
|
|
|
|
Buffer const & buffer = inset.buffer();
|
|
|
|
|
inset.read(buffer, lex);
|
2003-03-09 18:11:57 +00:00
|
|
|
|
|
|
|
|
|
// 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
|
|
|
|
{
|
|
|
|
|
ostringstream data;
|
2004-04-05 09:36:28 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2004-01-08 18:30:14 +00:00
|
|
|
|
#warning wrong!
|
2004-04-05 09:36:28 +00:00
|
|
|
|
#endif
|
2004-01-08 18:30:14 +00:00
|
|
|
|
//data << name_ << " \\active_cell " << inset.getActCell() << '\n';
|
|
|
|
|
data << name_ << " \\active_cell " << 0 << '\n';
|
2003-11-10 09:06:48 +00:00
|
|
|
|
inset.write(inset.buffer(), data);
|
2003-03-09 18:11:57 +00:00
|
|
|
|
data << "\\end_inset\n";
|
2003-09-15 11:00:00 +00:00
|
|
|
|
return data.str();
|
2003-03-09 18:11:57 +00:00
|
|
|
|
}
|