2000-04-19 14:42:19 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2000-04-24 20:58:23 +00:00
|
|
|
* Copyright 2000 The LyX Team.
|
2000-04-19 14:42:19 +00:00
|
|
|
*
|
2000-07-15 23:51:46 +00:00
|
|
|
* ======================================================
|
2000-04-19 14:42:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insettabular.h"
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "commandtags.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
#include "Painter.h"
|
|
|
|
#include "font.h"
|
2000-05-04 08:14:34 +00:00
|
|
|
#include "lyxtext.h"
|
2000-05-05 14:45:59 +00:00
|
|
|
#include "lyx_gui_misc.h"
|
2000-05-08 13:39:45 +00:00
|
|
|
#include "LyXView.h"
|
|
|
|
#include "lyxfunc.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
#include "insets/insettext.h"
|
2000-07-11 15:08:54 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
|
|
const int ADD_TO_HEIGHT = 2;
|
2000-04-21 15:16:22 +00:00
|
|
|
const int ADD_TO_TABULAR_WIDTH = 2;
|
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;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
#define cellstart(p) ((p % 2) == 0)
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
InsetTabular::InsetTabular(Buffer * buf, int rows, int columns)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
|
|
|
if (rows <= 0)
|
|
|
|
rows = 1;
|
|
|
|
if (columns <= 0)
|
|
|
|
columns = 1;
|
2000-05-15 14:49:36 +00:00
|
|
|
buffer = buf; // set this first!!!
|
|
|
|
tabular = new LyXTabular(this, rows,columns);
|
2000-04-21 15:16:22 +00:00
|
|
|
// for now make it always display as display() inset
|
|
|
|
// just for test!!!
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset = 0;
|
2000-05-16 15:17:19 +00:00
|
|
|
locked = no_selection = cursor_visible = false;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.x_fix(-1);
|
2000-05-16 15:17:19 +00:00
|
|
|
oldcell = -1;
|
2000-06-08 23:16:16 +00:00
|
|
|
actcell = 0;
|
|
|
|
cursor.pos(0);
|
2000-05-26 13:09:14 +00:00
|
|
|
sel_pos_start = sel_pos_end = sel_cell_start = sel_cell_end = 0;
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_ = 0;
|
2000-06-23 15:02:46 +00:00
|
|
|
need_update = INIT;
|
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(InsetTabular const & tab, Buffer * buf)
|
|
|
|
{
|
2000-05-15 14:49:36 +00:00
|
|
|
buffer = buf; // set this first
|
|
|
|
tabular = new LyXTabular(this, *(tab.tabular));
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset = 0;
|
2000-05-16 15:17:19 +00:00
|
|
|
locked = no_selection = cursor_visible = false;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.x_fix(-1);
|
2000-05-16 15:17:19 +00:00
|
|
|
oldcell = -1;
|
2000-06-08 23:16:16 +00:00
|
|
|
actcell = 0;
|
|
|
|
cursor.pos(0);
|
2000-05-26 13:09:14 +00:00
|
|
|
sel_pos_start = sel_pos_end = sel_cell_start = sel_cell_end = 0;
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_ = 0;
|
2000-06-23 15:02:46 +00:00
|
|
|
need_update = INIT;
|
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()
|
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
delete tabular;
|
2000-07-13 15:03:34 +00:00
|
|
|
if (dialogs_)
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_->hideTabular(this);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-26 14:56:50 +00:00
|
|
|
Inset * InsetTabular::Clone() const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
|
|
|
InsetTabular * t = new InsetTabular(*this, buffer);
|
2000-05-16 15:17:19 +00:00
|
|
|
delete t->tabular;
|
|
|
|
t->tabular = tabular->Clone(t);
|
2000-04-19 14:42:19 +00:00
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
void InsetTabular::Write(Buffer const * buf, ostream & os) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
os << " Tabular" << endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
tabular->Write(buf, os);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
void InsetTabular::Read(Buffer const * buf, LyXLex & lex)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-17 14:43:09 +00:00
|
|
|
bool old_format = (lex.GetString() == "\\LyXTable");
|
2000-05-04 08:14:34 +00:00
|
|
|
string token;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
if (tabular)
|
|
|
|
delete tabular;
|
2000-06-12 11:27:15 +00:00
|
|
|
tabular = new LyXTabular(buf, this, lex);
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2000-06-23 15:02:46 +00:00
|
|
|
need_update = INIT;
|
2000-05-17 14:43:09 +00:00
|
|
|
|
|
|
|
if (old_format)
|
|
|
|
return;
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
lex.nextToken();
|
|
|
|
token = lex.GetString();
|
|
|
|
while (lex.IsOK() && (token != "\\end_inset")) {
|
|
|
|
lex.nextToken();
|
|
|
|
token = lex.GetString();
|
|
|
|
}
|
|
|
|
if (token != "\\end_inset") {
|
|
|
|
lex.printError("Missing \\end_inset at this point. "
|
|
|
|
"Read: `$$Token'");
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
int InsetTabular::ascent(BufferView *, LyXFont const &) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
return tabular->GetAscentOfRow(0);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
int InsetTabular::descent(BufferView *, LyXFont const &) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-07-13 15:03:34 +00:00
|
|
|
return tabular->GetHeightOfTabular() - tabular->GetAscentOfRow(0) + 1;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
int InsetTabular::width(BufferView *, LyXFont const &) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
return tabular->GetWidthOfTabular() + (2 * ADD_TO_TABULAR_WIDTH);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-21 15:07:57 +00:00
|
|
|
void InsetTabular::draw(BufferView * bv, LyXFont const & font, int baseline,
|
2000-06-23 15:02:46 +00:00
|
|
|
float & x, bool cleared) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-21 15:07:57 +00:00
|
|
|
Painter & pain = bv->painter();
|
2000-07-15 23:51:46 +00:00
|
|
|
int i, j, cell = 0;
|
2000-04-21 15:16:22 +00:00
|
|
|
int nx;
|
2000-05-04 08:14:34 +00:00
|
|
|
float cx;
|
2000-04-21 15:16:22 +00:00
|
|
|
|
2000-06-26 15:10:49 +00:00
|
|
|
UpdatableInset::draw(bv,font,baseline,x,cleared);
|
2000-06-28 15:12:29 +00:00
|
|
|
if (!cleared && ((need_update == INIT) || (need_update == FULL) ||
|
|
|
|
(top_x != int(x)) || (top_baseline != baseline))) {
|
2000-07-05 14:57:48 +00:00
|
|
|
int h = ascent(bv, font) + descent(bv, font);
|
2000-07-14 14:57:20 +00:00
|
|
|
int tx = display()||!owner()? 0:top_x;
|
2000-07-05 14:57:48 +00:00
|
|
|
int w = tx? width(bv, font):pain.paperWidth();
|
|
|
|
int ty = baseline - ascent(bv, font);
|
2000-06-28 15:12:29 +00:00
|
|
|
|
|
|
|
if (ty < 0)
|
|
|
|
ty = 0;
|
|
|
|
if ((ty + h) > pain.paperHeight())
|
|
|
|
h = pain.paperHeight();
|
|
|
|
if ((top_x + w) > pain.paperWidth())
|
|
|
|
w = pain.paperWidth();
|
|
|
|
pain.fillRectangle(tx, ty, w, h);
|
|
|
|
need_update = FULL;
|
|
|
|
cleared = true;
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
2000-06-28 15:12:29 +00:00
|
|
|
top_x = int(x);
|
|
|
|
top_baseline = baseline;
|
2000-06-23 15:02:46 +00:00
|
|
|
bool dodraw;
|
2000-05-16 15:17:19 +00:00
|
|
|
x += ADD_TO_TABULAR_WIDTH;
|
2000-06-28 15:12:29 +00:00
|
|
|
if (cleared || (need_update == FULL) || (need_update == CELL)) {
|
2000-06-23 15:02:46 +00:00
|
|
|
for(i=0;i<tabular->rows();++i) {
|
|
|
|
nx = int(x);
|
|
|
|
dodraw = ((baseline+tabular->GetDescentOfRow(i)) > 0) &&
|
|
|
|
(baseline-tabular->GetAscentOfRow(i)) < pain.paperHeight();
|
|
|
|
for(j=0;j<tabular->columns();++j) {
|
|
|
|
if (tabular->IsPartOfMultiColumn(i,j))
|
|
|
|
continue;
|
|
|
|
cx = nx + tabular->GetBeginningOfTextInCell(cell);
|
|
|
|
if (hasSelection())
|
|
|
|
DrawCellSelection(pain, nx, baseline, i, j, cell);
|
|
|
|
if (dodraw && !cleared && locked && the_locking_inset) {
|
|
|
|
if (the_locking_inset == tabular->GetCellInset(cell))
|
|
|
|
tabular->GetCellInset(cell)->draw(bv, font,
|
|
|
|
baseline, cx,
|
|
|
|
cleared);
|
|
|
|
} else if (dodraw) {
|
|
|
|
tabular->GetCellInset(cell)->draw(bv, font, baseline, cx,
|
|
|
|
cleared);
|
|
|
|
DrawCellLines(pain, nx, baseline, i, cell);
|
|
|
|
}
|
|
|
|
nx += tabular->GetWidthOfColumn(cell);
|
|
|
|
++cell;
|
|
|
|
}
|
|
|
|
baseline += tabular->GetDescentOfRow(i) +
|
|
|
|
tabular->GetAscentOfRow(i+1)+
|
|
|
|
tabular->GetAdditionalHeight(cell+1);
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
2000-07-05 14:57:48 +00:00
|
|
|
x += width(bv, font);
|
2000-06-23 15:02:46 +00:00
|
|
|
need_update = NONE;
|
2000-06-16 15:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
void InsetTabular::DrawCellLines(Painter & pain, int x, int baseline,
|
|
|
|
int row, int cell) const
|
|
|
|
{
|
|
|
|
int x2 = x + tabular->GetWidthOfColumn(cell);
|
|
|
|
bool on_off;
|
|
|
|
|
|
|
|
if (!tabular->TopAlreadyDrawed(cell)) {
|
|
|
|
on_off = !tabular->TopLine(cell);
|
|
|
|
pain.line(x, baseline - tabular->GetAscentOfRow(row),
|
|
|
|
x2, baseline - tabular->GetAscentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline:LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash:Painter::line_solid);
|
|
|
|
}
|
|
|
|
on_off = !tabular->BottomLine(cell);
|
|
|
|
pain.line(x,baseline + tabular->GetDescentOfRow(row),
|
|
|
|
x2, baseline + tabular->GetDescentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline:LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash:Painter::line_solid);
|
|
|
|
if (!tabular->LeftAlreadyDrawed(cell)) {
|
|
|
|
on_off = !tabular->LeftLine(cell);
|
|
|
|
pain.line(x, baseline - tabular->GetAscentOfRow(row),
|
|
|
|
x, baseline + tabular->GetDescentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline:LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash:Painter::line_solid);
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
on_off = !tabular->RightLine(cell);
|
|
|
|
pain.line(x2 - tabular->GetAdditionalWidth(cell),
|
|
|
|
baseline - tabular->GetAscentOfRow(row),
|
|
|
|
x2 - tabular->GetAdditionalWidth(cell),
|
|
|
|
baseline + tabular->GetDescentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline:LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash:Painter::line_solid);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
void InsetTabular::DrawCellSelection(Painter & pain, int x, int baseline,
|
2000-05-26 13:09:14 +00:00
|
|
|
int row, int column, int cell) const
|
2000-05-22 15:20:02 +00:00
|
|
|
{
|
2000-05-26 13:09:14 +00:00
|
|
|
int cs = tabular->column_of_cell(sel_cell_start);
|
|
|
|
int ce = tabular->column_of_cell(sel_cell_end);
|
|
|
|
if (cs > ce) {
|
|
|
|
ce = cs;
|
|
|
|
cs = tabular->column_of_cell(sel_cell_end);
|
2000-05-22 15:20:02 +00:00
|
|
|
} else {
|
2000-05-26 13:09:14 +00:00
|
|
|
ce = tabular->right_column_of_cell(sel_cell_end);
|
|
|
|
}
|
|
|
|
|
|
|
|
int rs = tabular->row_of_cell(sel_cell_start);
|
|
|
|
int re = tabular->row_of_cell(sel_cell_end);
|
2000-07-15 23:51:46 +00:00
|
|
|
if (rs > re) swap(rs, re);
|
2000-05-22 15:20:02 +00:00
|
|
|
|
2000-05-26 13:09:14 +00:00
|
|
|
if ((column >= cs) && (column <= ce) && (row >= rs) && (row <= re)) {
|
2000-05-22 15:20:02 +00:00
|
|
|
int w = tabular->GetWidthOfColumn(cell);
|
|
|
|
int h = tabular->GetAscentOfRow(row) + tabular->GetDescentOfRow(row);
|
|
|
|
pain.fillRectangle(x, baseline - tabular->GetAscentOfRow(row),
|
|
|
|
w, h, LColor::selection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-07 07:46:37 +00:00
|
|
|
void InsetTabular::update(BufferView * bv, LyXFont const & font, bool reinit)
|
2000-06-23 15:02:46 +00:00
|
|
|
{
|
2000-07-07 07:46:37 +00:00
|
|
|
if (reinit) {
|
|
|
|
need_update = INIT;
|
|
|
|
calculate_dimensions_of_cells(bv, font, true);
|
|
|
|
if (owner())
|
|
|
|
owner()->update(bv, font, true);
|
|
|
|
return;
|
|
|
|
}
|
2000-06-23 15:02:46 +00:00
|
|
|
if (the_locking_inset)
|
2000-07-07 07:46:37 +00:00
|
|
|
the_locking_inset->update(bv, font, reinit);
|
2000-06-23 15:02:46 +00:00
|
|
|
switch(need_update) {
|
|
|
|
case INIT:
|
|
|
|
case FULL:
|
|
|
|
case CELL:
|
2000-07-07 07:46:37 +00:00
|
|
|
if (calculate_dimensions_of_cells(bv, font, false))
|
2000-06-23 15:02:46 +00:00
|
|
|
need_update = INIT;
|
|
|
|
break;
|
|
|
|
case SELECTION:
|
|
|
|
need_update = INIT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
char const * InsetTabular::EditMessage() const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
|
|
|
return _("Opened Tabular Inset");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::Edit(BufferView * bv, int x, int y, unsigned int button)
|
|
|
|
{
|
|
|
|
UpdatableInset::Edit(bv, x, y, button);
|
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
if (!bv->lockInset(this)) {
|
|
|
|
lyxerr[Debug::INSETS] << "InsetTabular::Cannot lock inset" << endl;
|
|
|
|
return;
|
|
|
|
}
|
2000-05-16 15:17:19 +00:00
|
|
|
locked = true;
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset = 0;
|
2000-05-22 15:20:02 +00:00
|
|
|
inset_pos = inset_x = inset_y = 0;
|
2000-07-05 14:57:48 +00:00
|
|
|
setPos(bv, x, y);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
2000-05-04 08:14:34 +00:00
|
|
|
bv->text->FinishUndo();
|
|
|
|
if (InsetHit(bv, x, y)) {
|
|
|
|
ActivateCellInset(bv, x, y, button);
|
|
|
|
}
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, NONE, false);
|
2000-04-21 15:16:22 +00:00
|
|
|
// bv->getOwner()->getPopups().updateFormTabular();
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::InsetUnlock(BufferView * bv)
|
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
if (the_locking_inset) {
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset->InsetUnlock(bv);
|
2000-05-04 08:14:34 +00:00
|
|
|
the_locking_inset = 0;
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
HideInsetCursor(bv);
|
2000-05-22 15:20:02 +00:00
|
|
|
if (hasSelection()) {
|
2000-06-23 15:02:46 +00:00
|
|
|
sel_pos_start = sel_pos_end = 0;
|
|
|
|
sel_cell_start = sel_cell_end = 0;
|
|
|
|
UpdateLocal(bv, FULL, false);
|
2000-05-22 15:20:02 +00:00
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
no_selection = false;
|
2000-05-16 15:17:19 +00:00
|
|
|
oldcell = -1;
|
|
|
|
locked = false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-06-23 15:02:46 +00:00
|
|
|
void InsetTabular::UpdateLocal(BufferView * bv, UpdateCodes what,
|
|
|
|
bool mark_dirty)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-23 15:02:46 +00:00
|
|
|
need_update = what;
|
2000-06-16 15:13:25 +00:00
|
|
|
bv->updateInset(this, mark_dirty);
|
2000-06-23 15:02:46 +00:00
|
|
|
if (what != NONE)
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
bool InsetTabular::LockInsetInInset(BufferView * bv, UpdatableInset * inset)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
lyxerr[Debug::INSETS] << "InsetTabular::LockInsetInInset(" <<inset<< "): ";
|
|
|
|
if (!inset)
|
2000-04-19 14:42:19 +00:00
|
|
|
return false;
|
2000-05-16 15:17:19 +00:00
|
|
|
oldcell = -1;
|
2000-05-04 08:14:34 +00:00
|
|
|
if (inset == tabular->GetCellInset(actcell)) {
|
|
|
|
lyxerr[Debug::INSETS] << "OK" << endl;
|
|
|
|
the_locking_inset = tabular->GetCellInset(actcell);
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
inset_x = cursor.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
|
|
|
|
inset_y = cursor.y();
|
|
|
|
inset_pos = cursor.pos();
|
2000-04-19 14:42:19 +00:00
|
|
|
return true;
|
2000-05-04 08:14:34 +00:00
|
|
|
} else if (the_locking_inset && (the_locking_inset == inset)) {
|
2000-06-08 23:16:16 +00:00
|
|
|
if (cursor.pos() == inset_pos) {
|
2000-05-04 08:14:34 +00:00
|
|
|
lyxerr[Debug::INSETS] << "OK" << endl;
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
inset_x = cursor.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
|
|
|
|
inset_y = cursor.y();
|
2000-05-04 08:14:34 +00:00
|
|
|
} else {
|
|
|
|
lyxerr[Debug::INSETS] << "cursor.pos != inset_pos" << endl;
|
|
|
|
}
|
|
|
|
} else if (the_locking_inset) {
|
|
|
|
lyxerr[Debug::INSETS] << "MAYBE" << endl;
|
|
|
|
return the_locking_inset->LockInsetInInset(bv, inset);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
lyxerr[Debug::INSETS] << "NOT OK" << endl;
|
|
|
|
return false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
bool InsetTabular::UnlockInsetInInset(BufferView * bv, UpdatableInset * inset,
|
|
|
|
bool lr)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
if (!the_locking_inset)
|
|
|
|
return false;
|
|
|
|
if (the_locking_inset == inset) {
|
|
|
|
the_locking_inset->InsetUnlock(bv);
|
|
|
|
the_locking_inset = 0;
|
|
|
|
if (lr)
|
|
|
|
moveRight(bv, false);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, CELL, false);
|
2000-05-04 08:14:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
2000-05-16 15:17:19 +00:00
|
|
|
if (the_locking_inset->UnlockInsetInInset(bv, inset, lr)) {
|
|
|
|
if ((inset->LyxCode() == TABULAR_CODE) &&
|
|
|
|
!the_locking_inset->GetFirstLockingInsetOfType(TABULAR_CODE))
|
|
|
|
{
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_ = bv->owner()->getDialogs();
|
|
|
|
dialogs_->updateTabular(const_cast<InsetTabular *>(this));
|
2000-05-16 15:17:19 +00:00
|
|
|
oldcell = actcell;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
bool InsetTabular::UpdateInsetInInset(BufferView * bv, Inset * inset)
|
|
|
|
{
|
|
|
|
if (!the_locking_inset)
|
|
|
|
return false;
|
|
|
|
if (the_locking_inset != inset)
|
|
|
|
return the_locking_inset->UpdateInsetInInset(bv, inset);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, CELL, false);
|
2000-04-19 14:42:19 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
int InsetTabular::InsetInInsetY()
|
|
|
|
{
|
|
|
|
if (!the_locking_inset)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return (inset_y + the_locking_inset->InsetInInsetY());
|
|
|
|
}
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
|
|
|
UpdatableInset * InsetTabular::GetLockingInset()
|
|
|
|
{
|
|
|
|
return the_locking_inset ? the_locking_inset->GetLockingInset() : this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UpdatableInset * InsetTabular::GetFirstLockingInsetOfType(Inset::Code c)
|
|
|
|
{
|
|
|
|
if (c == LyxCode())
|
|
|
|
return this;
|
|
|
|
if (the_locking_inset)
|
|
|
|
return the_locking_inset->GetFirstLockingInsetOfType(c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::InsertInset(BufferView * bv, Inset * inset)
|
|
|
|
{
|
|
|
|
if (the_locking_inset)
|
|
|
|
return the_locking_inset->InsertInset(bv, inset);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
void InsetTabular::InsetButtonPress(BufferView * bv, int x, int y, int button)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-22 15:20:02 +00:00
|
|
|
if (hasSelection()) {
|
|
|
|
sel_pos_start = sel_pos_end = sel_cell_start = sel_cell_end = 0;
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
no_selection = false;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2000-05-16 15:17:19 +00:00
|
|
|
int ocell = actcell;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
setPos(bv, x, y);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
|
|
|
bool inset_hit = InsetHit(bv, x, y);
|
|
|
|
|
2000-05-16 15:17:19 +00:00
|
|
|
if ((ocell == actcell) && the_locking_inset && inset_hit) {
|
2000-05-04 08:14:34 +00:00
|
|
|
the_locking_inset->InsetButtonPress(bv, x-inset_x, y-inset_y, button);
|
|
|
|
return;
|
|
|
|
} else if (the_locking_inset) {
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset->InsetUnlock(bv);
|
|
|
|
}
|
|
|
|
the_locking_inset = 0;
|
2000-05-04 08:14:34 +00:00
|
|
|
if (inset_hit && bv->the_locking_inset) {
|
|
|
|
ActivateCellInset(bv, x, y, button);
|
|
|
|
the_locking_inset->InsetButtonPress(bv, x-inset_x, y-inset_y, button);
|
|
|
|
}
|
2000-07-11 15:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::InsetButtonRelease(BufferView * bv,
|
|
|
|
int x, int y, int button)
|
|
|
|
{
|
|
|
|
if (button == 3) {
|
|
|
|
if (the_locking_inset) {
|
|
|
|
UpdatableInset * i;
|
|
|
|
if ((i=the_locking_inset->GetFirstLockingInsetOfType(TABULAR_CODE))) {
|
|
|
|
i->InsetButtonRelease(bv, x, y, button);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_ = bv->owner()->getDialogs();
|
|
|
|
dialogs_->showTabular(this);
|
2000-04-19 14:42:19 +00:00
|
|
|
#if 0
|
2000-07-11 15:08:54 +00:00
|
|
|
else if (ocell != actcell)
|
|
|
|
bview->getOwner()->getPopups().updateTabular();
|
2000-04-19 14:42:19 +00:00
|
|
|
#endif
|
2000-07-11 15:08:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->InsetButtonRelease(bv, x-inset_x, y-inset_y,button);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
no_selection = false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::InsetMotionNotify(BufferView * bv, int x, int y, int button)
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
2000-04-24 20:58:23 +00:00
|
|
|
the_locking_inset->InsetMotionNotify(bv, x - inset_x,
|
|
|
|
y - inset_y, button);
|
2000-04-19 14:42:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!no_selection) {
|
2000-05-16 15:17:19 +00:00
|
|
|
// int ocell = actcell,
|
2000-04-24 20:58:23 +00:00
|
|
|
int old = sel_pos_end;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
setPos(bv, x, y);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_end = cursor.pos();
|
2000-04-19 14:42:19 +00:00
|
|
|
sel_cell_end = actcell;
|
|
|
|
if (old != sel_pos_end)
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-04-19 14:42:19 +00:00
|
|
|
#if 0
|
2000-05-16 15:17:19 +00:00
|
|
|
if (ocell != actcell)
|
2000-04-21 15:16:22 +00:00
|
|
|
bview->getOwner()->getPopups().updateFormTabular();
|
2000-04-19 14:42:19 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
no_selection = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::InsetKeyPress(XKeyEvent * xke)
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->InsetKeyPress(xke);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::LocalDispatch(BufferView * bv, int action,
|
2000-04-19 14:42:19 +00:00
|
|
|
string const & arg)
|
|
|
|
{
|
2000-04-21 15:16:22 +00:00
|
|
|
UpdatableInset::RESULT
|
|
|
|
result;
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
no_selection = false;
|
2000-04-21 15:16:22 +00:00
|
|
|
if (((result=UpdatableInset::LocalDispatch(bv, action, arg)) == DISPATCHED)
|
|
|
|
|| (result == DISPATCHED_NOUPDATE)) {
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
return result;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((action < 0) && arg.empty())
|
|
|
|
return FINISHED;
|
|
|
|
|
|
|
|
if ((action != LFUN_DOWN) && (action != LFUN_UP) &&
|
|
|
|
(action != LFUN_DOWNSEL) && (action != LFUN_UPSEL))
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.x_fix(-1);
|
2000-04-19 14:42:19 +00:00
|
|
|
if (the_locking_inset) {
|
|
|
|
result=the_locking_inset->LocalDispatch(bv, action, arg);
|
2000-04-21 15:16:22 +00:00
|
|
|
if (result == DISPATCHED_NOUPDATE)
|
|
|
|
return result;
|
|
|
|
else if (result == DISPATCHED) {
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset->ToggleInsetCursor(bv);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, CELL, false);
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset->ToggleInsetCursor(bv);
|
|
|
|
return result;
|
|
|
|
} else if (result == FINISHED) {
|
|
|
|
if ((action == LFUN_RIGHT) || (action == -1)) {
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(inset_pos + 1);
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-26 13:09:14 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
2000-04-19 14:42:19 +00:00
|
|
|
the_locking_inset=0;
|
|
|
|
result = DISPATCHED;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
bool hs = hasSelection();
|
2000-04-19 14:42:19 +00:00
|
|
|
HideInsetCursor(bv);
|
2000-07-14 14:57:20 +00:00
|
|
|
result=DISPATCHED;
|
2000-04-19 14:42:19 +00:00
|
|
|
switch (action) {
|
2000-05-08 13:39:45 +00:00
|
|
|
// Normal chars not handled here
|
|
|
|
case -1:
|
|
|
|
break;
|
|
|
|
// --- Cursor Movements ---------------------------------------------
|
|
|
|
case LFUN_RIGHTSEL:
|
2000-06-08 23:16:16 +00:00
|
|
|
if (tabular->IsLastCellInRow(actcell) && !cellstart(cursor.pos()))
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-05-08 13:39:45 +00:00
|
|
|
moveRight(bv, false);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_end = cursor.pos();
|
|
|
|
if (!cellstart(cursor.pos())) {
|
2000-05-26 13:09:14 +00:00
|
|
|
if (tabular->right_column_of_cell(sel_cell_start) >
|
|
|
|
tabular->right_column_of_cell(actcell))
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_end = actcell+1;
|
|
|
|
else
|
|
|
|
sel_cell_end = actcell;
|
|
|
|
}
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
|
|
|
case LFUN_RIGHT:
|
|
|
|
result = moveRight(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2000-07-14 14:57:20 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-22 15:20:02 +00:00
|
|
|
break;
|
2000-05-08 13:39:45 +00:00
|
|
|
case LFUN_LEFTSEL:
|
2000-06-08 23:16:16 +00:00
|
|
|
if (tabular->IsFirstCellInRow(actcell) && cellstart(cursor.pos()))
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-05-08 13:39:45 +00:00
|
|
|
moveLeft(bv, false);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_end = cursor.pos();
|
|
|
|
if (cellstart(cursor.pos())) {
|
2000-05-26 13:09:14 +00:00
|
|
|
if (tabular->column_of_cell(sel_cell_start) >=
|
|
|
|
tabular->column_of_cell(actcell))
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_end = actcell;
|
|
|
|
else
|
|
|
|
sel_cell_end = actcell-1;
|
|
|
|
}
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
|
|
|
case LFUN_LEFT:
|
|
|
|
result = moveLeft(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2000-07-14 14:57:20 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
|
|
|
case LFUN_DOWNSEL:
|
2000-05-26 13:09:14 +00:00
|
|
|
{
|
|
|
|
int ocell = actcell;
|
2000-05-22 15:20:02 +00:00
|
|
|
moveDown(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_end = cursor.pos();
|
2000-05-26 13:09:14 +00:00
|
|
|
if ((ocell == sel_cell_end) ||
|
|
|
|
(tabular->column_of_cell(ocell)>tabular->column_of_cell(actcell)))
|
|
|
|
sel_cell_end = tabular->GetCellBelow(sel_cell_end);
|
|
|
|
else
|
|
|
|
sel_cell_end = tabular->GetLastCellBelow(sel_cell_end);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-05-08 13:39:45 +00:00
|
|
|
case LFUN_DOWN:
|
2000-05-22 15:20:02 +00:00
|
|
|
result= moveDown(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2000-07-14 14:57:20 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
|
|
|
case LFUN_UPSEL:
|
2000-05-26 13:09:14 +00:00
|
|
|
{
|
|
|
|
int ocell = actcell;
|
2000-05-22 15:20:02 +00:00
|
|
|
moveUp(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_end = cursor.pos();
|
2000-05-26 13:09:14 +00:00
|
|
|
if ((ocell == sel_cell_end) ||
|
|
|
|
(tabular->column_of_cell(ocell)>tabular->column_of_cell(actcell)))
|
|
|
|
sel_cell_end = tabular->GetCellAbove(sel_cell_end);
|
|
|
|
else
|
|
|
|
sel_cell_end = tabular->GetLastCellAbove(sel_cell_end);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-05-08 13:39:45 +00:00
|
|
|
case LFUN_UP:
|
2000-05-22 15:20:02 +00:00
|
|
|
result= moveUp(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2000-07-14 14:57:20 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
|
|
|
case LFUN_BACKSPACE:
|
|
|
|
break;
|
|
|
|
case LFUN_DELETE:
|
|
|
|
break;
|
|
|
|
case LFUN_HOME:
|
|
|
|
break;
|
|
|
|
case LFUN_END:
|
|
|
|
break;
|
2000-05-22 15:20:02 +00:00
|
|
|
case LFUN_SHIFT_TAB:
|
2000-05-08 13:39:45 +00:00
|
|
|
case LFUN_TAB:
|
2000-05-22 15:20:02 +00:00
|
|
|
if (the_locking_inset) {
|
2000-07-14 14:57:20 +00:00
|
|
|
UnlockInsetInInset(bv, the_locking_inset);
|
|
|
|
the_locking_inset = 0;
|
2000-05-08 13:39:45 +00:00
|
|
|
}
|
2000-05-22 15:20:02 +00:00
|
|
|
if (action == LFUN_TAB)
|
|
|
|
moveNextCell(bv);
|
|
|
|
else
|
|
|
|
movePrevCell(bv);
|
2000-06-08 23:16:16 +00:00
|
|
|
sel_pos_start = sel_pos_end = cursor.pos();
|
2000-05-22 15:20:02 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2000-07-14 14:57:20 +00:00
|
|
|
UpdateLocal(bv, SELECTION, false);
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
|
|
|
case LFUN_LAYOUT_TABLE:
|
|
|
|
{
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_ = bv->owner()->getDialogs();
|
|
|
|
dialogs_->showTabular(this);
|
2000-05-08 13:39:45 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
result = UNDISPATCHED;
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
if (result!=FINISHED) {
|
|
|
|
if (!the_locking_inset) {
|
|
|
|
#if 0
|
2000-05-16 15:17:19 +00:00
|
|
|
if (ocell != actcell)
|
2000-04-21 15:16:22 +00:00
|
|
|
bview->getOwner()->getPopups().updateFormTabular();
|
2000-04-19 14:42:19 +00:00
|
|
|
#endif
|
|
|
|
ShowInsetCursor(bv);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
bv->unlockInset(this);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
int InsetTabular::Latex(Buffer const * buf, ostream & os,
|
|
|
|
bool fragile, bool fp) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-12 11:27:15 +00:00
|
|
|
return tabular->Latex(buf, os, fragile, fp);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
int InsetTabular::Ascii(Buffer const *, ostream &) const
|
2000-04-24 20:58:23 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
int InsetTabular::Linuxdoc(Buffer const *, ostream &) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
int InsetTabular::DocBook(Buffer const *, ostream &) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
void InsetTabular::Validate(LaTeXFeatures & features) const
|
|
|
|
{
|
2000-05-19 10:32:05 +00:00
|
|
|
tabular->Validate(features);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-22 14:55:46 +00:00
|
|
|
bool InsetTabular::calculate_dimensions_of_cells(BufferView * bv,
|
|
|
|
LyXFont const & font,
|
2000-07-07 07:46:37 +00:00
|
|
|
bool reinit) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-04 08:14:34 +00:00
|
|
|
int cell = -1;
|
|
|
|
int maxAsc, maxDesc;
|
|
|
|
InsetText * inset;
|
2000-06-22 14:55:46 +00:00
|
|
|
bool changed = false;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
for(int i = 0; i < tabular->rows(); ++i) {
|
|
|
|
maxAsc = maxDesc = 0;
|
|
|
|
for(int j= 0; j < tabular->columns(); ++j) {
|
|
|
|
if (tabular->IsPartOfMultiColumn(i,j))
|
|
|
|
continue;
|
|
|
|
++cell;
|
|
|
|
inset = tabular->GetCellInset(cell);
|
2000-07-07 07:46:37 +00:00
|
|
|
if (!reinit)
|
|
|
|
inset->update(bv, font, false);
|
2000-07-05 14:57:48 +00:00
|
|
|
maxAsc = max(maxAsc, inset->ascent(bv, font));
|
|
|
|
maxDesc = max(maxDesc, inset->descent(bv, font));
|
|
|
|
changed = tabular->SetWidthOfCell(cell, inset->width(bv, font)) || changed;
|
2000-04-24 20:58:23 +00:00
|
|
|
}
|
2000-06-22 14:55:46 +00:00
|
|
|
changed = tabular->SetAscentOfRow(i, maxAsc + ADD_TO_HEIGHT) || changed;
|
|
|
|
changed = tabular->SetDescentOfRow(i, maxDesc + ADD_TO_HEIGHT) || changed;
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
2000-06-22 14:55:46 +00:00
|
|
|
return changed;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-22 10:43:59 +00:00
|
|
|
void InsetTabular::GetCursorPos(BufferView *, int & x, int & y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-08 23:16:16 +00:00
|
|
|
x = cursor.x() - top_x;
|
|
|
|
y = cursor.y();
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::ToggleInsetCursor(BufferView * bv)
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->ToggleInsetCursor(bv);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
LyXFont font; // = the_locking_inset->GetFont(par, cursor.pos);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
int asc = lyxfont::maxAscent(font);
|
|
|
|
int desc = lyxfont::maxDescent(font);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
|
|
if (cursor_visible)
|
|
|
|
bv->hideLockedInsetCursor();
|
|
|
|
else
|
2000-06-08 23:16:16 +00:00
|
|
|
bv->showLockedInsetCursor(cursor.x(), cursor.y(), asc, desc);
|
2000-04-19 14:42:19 +00:00
|
|
|
cursor_visible = !cursor_visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::ShowInsetCursor(BufferView * bv)
|
|
|
|
{
|
|
|
|
if (!cursor_visible) {
|
2000-04-24 20:58:23 +00:00
|
|
|
LyXFont font; // = GetFont(par, cursor.pos);
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
int asc = lyxfont::maxAscent(font);
|
|
|
|
int desc = lyxfont::maxDescent(font);
|
2000-06-08 23:16:16 +00:00
|
|
|
bv->fitLockedInsetCursor(cursor.x(), cursor.y(), asc, desc);
|
|
|
|
bv->showLockedInsetCursor(cursor.x(), cursor.y(), asc, desc);
|
2000-04-19 14:42:19 +00:00
|
|
|
cursor_visible = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::HideInsetCursor(BufferView * bv)
|
|
|
|
{
|
|
|
|
if (cursor_visible)
|
|
|
|
ToggleInsetCursor(bv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.y(0);
|
|
|
|
cursor.pos(0);
|
|
|
|
|
|
|
|
actcell = actrow = actcol = 0;
|
2000-05-04 08:14:34 +00:00
|
|
|
int ly = tabular->GetDescentOfRow(actrow);
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
// first search the right row
|
|
|
|
while((ly < y) && (actrow < tabular->rows())) {
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.y(cursor.y() + tabular->GetDescentOfRow(actrow) +
|
2000-05-15 14:49:36 +00:00
|
|
|
tabular->GetAscentOfRow(actrow+1) +
|
2000-06-08 23:16:16 +00:00
|
|
|
tabular->GetAdditionalHeight(tabular->GetCellNumber(actrow + 1,
|
|
|
|
actcol)));
|
2000-04-21 15:16:22 +00:00
|
|
|
++actrow;
|
2000-06-08 23:16:16 +00:00
|
|
|
ly = cursor.y() + tabular->GetDescentOfRow(actrow);
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
2000-05-15 14:49:36 +00:00
|
|
|
actcell = tabular->GetCellNumber(actrow, actcol);
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-04-21 15:16:22 +00:00
|
|
|
// now search the right column
|
2000-05-04 08:14:34 +00:00
|
|
|
int lx = tabular->GetWidthOfColumn(actcell) -
|
|
|
|
tabular->GetAdditionalWidth(actcell);
|
|
|
|
for(; !tabular->IsLastCellInRow(actcell) && (lx < x);
|
|
|
|
++actcell,lx += tabular->GetWidthOfColumn(actcell) +
|
2000-06-08 23:16:16 +00:00
|
|
|
tabular->GetAdditionalWidth(actcell - 1));
|
|
|
|
cursor.pos(((actcell+1) * 2) - 1);
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-05-04 08:14:34 +00:00
|
|
|
if ((lx - (tabular->GetWidthOfColumn(actcell)/2)) < x) {
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.x(lx + top_x - 2);
|
2000-05-04 08:14:34 +00:00
|
|
|
} else {
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(cursor.pos() - 1);
|
|
|
|
cursor.x(lx - tabular->GetWidthOfColumn(actcell) + top_x + 2);
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
2000-07-05 14:57:48 +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
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
for(c=cell;!tabular->IsFirstCellInRow(c);--c)
|
|
|
|
;
|
|
|
|
int lx = tabular->GetWidthOfColumn(cell);
|
|
|
|
for(; (c < cell); ++c) {
|
|
|
|
lx += tabular->GetWidthOfColumn(c);
|
|
|
|
}
|
2000-05-16 15:17:19 +00:00
|
|
|
return (lx - tabular->GetWidthOfColumn(cell) + top_x +
|
|
|
|
ADD_TO_TABULAR_WIDTH);
|
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
|
|
|
{
|
2000-05-16 15:17:19 +00:00
|
|
|
if (!locked)
|
|
|
|
return;
|
2000-05-15 14:49:36 +00:00
|
|
|
actcol = tabular->column_of_cell(actcell);
|
2000-04-24 20:58:23 +00:00
|
|
|
|
|
|
|
int cell = 0;
|
2000-06-08 23:16:16 +00:00
|
|
|
actrow = 0;
|
|
|
|
cursor.y(0);
|
2000-04-24 20:58:23 +00:00
|
|
|
for(; (cell<actcell) && !tabular->IsLastRow(cell); ++cell) {
|
2000-04-21 15:16:22 +00:00
|
|
|
if (tabular->IsLastCellInRow(cell)) {
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.y(cursor.y() + tabular->GetDescentOfRow(actrow) +
|
|
|
|
tabular->GetAscentOfRow(actrow + 1) +
|
|
|
|
tabular->GetAdditionalHeight(cell + 1));
|
2000-04-21 15:16:22 +00:00
|
|
|
++actrow;
|
|
|
|
}
|
|
|
|
}
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.x(getCellXPos(actcell) + 2);
|
|
|
|
if (cursor.pos() % 2) {
|
2000-04-21 15:16:22 +00:00
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
2000-07-05 14:57:48 +00:00
|
|
|
cursor.x(cursor.x() + tabular->GetCellInset(actcell)->width(bv,font) +
|
2000-06-08 23:16:16 +00:00
|
|
|
tabular->GetBeginningOfTextInCell(actcell));
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
2000-05-16 15:17:19 +00:00
|
|
|
if ((!the_locking_inset ||
|
|
|
|
!the_locking_inset->GetFirstLockingInsetOfType(TABULAR_CODE)) &&
|
|
|
|
(actcell != oldcell)) {
|
2000-07-12 15:09:01 +00:00
|
|
|
dialogs_ = bv->owner()->getDialogs();
|
|
|
|
dialogs_->updateTabular(const_cast<InsetTabular *>(this));
|
2000-05-16 15:17:19 +00:00
|
|
|
oldcell = actcell;
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveRight(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-08 23:16:16 +00:00
|
|
|
if (!cellstart(cursor.pos())) {
|
2000-05-26 13:09:14 +00:00
|
|
|
if (tabular->IsLastCell(actcell))
|
2000-04-21 15:16:22 +00:00
|
|
|
return FINISHED;
|
2000-05-26 13:09:14 +00:00
|
|
|
++actcell;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(cursor.pos() + 1);
|
2000-05-04 08:14:34 +00:00
|
|
|
} else if (lock) {
|
|
|
|
if (ActivateCellInset(bv))
|
|
|
|
return DISPATCHED;
|
2000-04-21 15:16:22 +00:00
|
|
|
} else { // before the inset
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(cursor.pos() + 1);
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveLeft(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-08 23:16:16 +00:00
|
|
|
if (!cursor.pos()) {
|
2000-05-26 13:09:14 +00:00
|
|
|
if (!actcell)
|
|
|
|
return FINISHED;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(2);
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(cursor.pos() - 1);
|
|
|
|
if (!cellstart(cursor.pos())) {
|
2000-05-04 08:14:34 +00:00
|
|
|
--actcell;
|
|
|
|
} else if (lock) { // behind the inset
|
2000-05-15 14:49:36 +00:00
|
|
|
if (ActivateCellInset(bv, 0, 0, 0, true))
|
2000-05-04 08:14:34 +00:00
|
|
|
return DISPATCHED;
|
|
|
|
}
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveUp(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-22 15:20:02 +00:00
|
|
|
int ocell = actcell;
|
|
|
|
actcell = tabular->GetCellAbove(actcell);
|
|
|
|
if (actcell == ocell) // we moved out of the inset
|
|
|
|
return FINISHED;
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveDown(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-22 15:20:02 +00:00
|
|
|
int ocell = actcell;
|
|
|
|
actcell = tabular->GetCellBelow(actcell);
|
|
|
|
if (actcell == ocell) // we moved out of the inset
|
|
|
|
return FINISHED;
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
bool InsetTabular::moveNextCell(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-22 15:20:02 +00:00
|
|
|
if (tabular->IsLastCell(actcell))
|
|
|
|
return false;
|
|
|
|
++actcell;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(cursor.pos() + 1);
|
|
|
|
if (!cellstart(cursor.pos()))
|
|
|
|
cursor.pos(cursor.pos() + 1);
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-05-22 15:20:02 +00:00
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-22 15:20:02 +00:00
|
|
|
bool InsetTabular::movePrevCell(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-05-22 15:20:02 +00:00
|
|
|
if (!actcell) // first cell
|
|
|
|
return false;
|
|
|
|
--actcell;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(cursor.pos() - 1);
|
|
|
|
if (cellstart(cursor.pos()))
|
|
|
|
cursor.pos(cursor.pos() - 1);
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-05-22 15:20:02 +00:00
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
bool InsetTabular::Delete()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-06-22 14:55:46 +00:00
|
|
|
void InsetTabular::SetFont(BufferView * bv, LyXFont const & font, bool tall)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2000-06-22 14:55:46 +00:00
|
|
|
if (the_locking_inset)
|
|
|
|
the_locking_inset->SetFont(bv, font, tall);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-05 14:45:59 +00:00
|
|
|
void InsetTabular::TabularFeatures(BufferView * bv, int feature, string val)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
|
|
|
int
|
2000-05-26 13:09:14 +00:00
|
|
|
i, j,
|
|
|
|
sel_col_start,
|
|
|
|
sel_col_end,
|
|
|
|
sel_row_start,
|
|
|
|
sel_row_end,
|
2000-04-19 14:42:19 +00:00
|
|
|
setLines = 0,
|
|
|
|
setAlign = LYX_ALIGN_LEFT,
|
|
|
|
lineSet;
|
|
|
|
bool
|
|
|
|
what;
|
|
|
|
|
|
|
|
switch (feature) {
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
2000-04-21 15:16:22 +00:00
|
|
|
case LyXTabular::ALIGN_LEFT:
|
2000-04-19 14:42:19 +00:00
|
|
|
setAlign=LYX_ALIGN_LEFT;
|
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
2000-04-21 15:16:22 +00:00
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
2000-04-19 14:42:19 +00:00
|
|
|
setAlign=LYX_ALIGN_RIGHT;
|
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
2000-04-21 15:16:22 +00:00
|
|
|
case LyXTabular::ALIGN_CENTER:
|
2000-04-19 14:42:19 +00:00
|
|
|
setAlign=LYX_ALIGN_CENTER;
|
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
setAlign=LyXTabular::LYX_VALIGN_TOP;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
|
|
|
setAlign=LyXTabular::LYX_VALIGN_BOTTOM;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
|
|
|
setAlign=LyXTabular::LYX_VALIGN_CENTER;
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2000-05-22 15:20:02 +00:00
|
|
|
if (hasSelection()) {
|
2000-05-26 13:09:14 +00:00
|
|
|
int tmp;
|
|
|
|
sel_col_start = tabular->column_of_cell(sel_cell_start);
|
|
|
|
sel_col_end = tabular->column_of_cell(sel_cell_end);
|
|
|
|
if (sel_col_start > sel_col_end) {
|
|
|
|
sel_col_end = sel_col_start;
|
|
|
|
sel_col_start = tabular->column_of_cell(sel_cell_end);
|
2000-04-19 14:42:19 +00:00
|
|
|
} else {
|
2000-05-26 13:09:14 +00:00
|
|
|
sel_col_end = tabular->right_column_of_cell(sel_cell_end);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
2000-05-26 13:09:14 +00:00
|
|
|
|
|
|
|
sel_row_start = tabular->row_of_cell(sel_cell_start);
|
|
|
|
sel_row_end = tabular->row_of_cell(sel_cell_end);
|
|
|
|
if (sel_row_start > sel_row_end) {
|
|
|
|
tmp = sel_row_start;
|
|
|
|
sel_row_start = sel_row_end;
|
|
|
|
sel_row_end = tmp;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sel_col_start = sel_col_end = tabular->column_of_cell(actcell);
|
|
|
|
sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
bv->text->SetUndo(bv->buffer(), Undo::FINISH,
|
2000-06-08 23:16:16 +00:00
|
|
|
bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->previous,
|
|
|
|
bv->text->cursor.par()->ParFromPos(bv->text->cursor.pos())->next);
|
2000-05-26 13:09:14 +00:00
|
|
|
|
|
|
|
int row = tabular->row_of_cell(actcell);
|
|
|
|
int column = tabular->column_of_cell(actcell);
|
2000-07-17 14:31:07 +00:00
|
|
|
bool flag = true;
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
switch (feature) {
|
2000-05-26 13:09:14 +00:00
|
|
|
case LyXTabular::SET_PWIDTH:
|
2000-07-17 14:31:07 +00:00
|
|
|
{
|
|
|
|
bool update = (tabular->GetColumnPWidth(actcell) != val);
|
|
|
|
tabular->SetColumnPWidth(actcell,val);
|
|
|
|
if (update) {
|
|
|
|
for (int i=0; i < tabular->rows(); ++i) {
|
|
|
|
tabular->GetCellInset(tabular->GetCellNumber(i, column))->
|
|
|
|
resizeLyXText(bv);
|
|
|
|
}
|
|
|
|
UpdateLocal(bv, INIT, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_MPWIDTH:
|
2000-05-26 13:09:14 +00:00
|
|
|
{
|
|
|
|
bool update = (tabular->GetPWidth(actcell) != val);
|
2000-07-17 14:31:07 +00:00
|
|
|
tabular->SetMColumnPWidth(actcell,val);
|
2000-06-23 15:02:46 +00:00
|
|
|
if (update) {
|
|
|
|
for (int i=0; i < tabular->rows(); ++i) {
|
|
|
|
tabular->GetCellInset(tabular->GetCellNumber(i, column))->
|
2000-07-17 14:31:07 +00:00
|
|
|
resizeLyXText(bv);
|
2000-06-23 15:02:46 +00:00
|
|
|
}
|
|
|
|
UpdateLocal(bv, INIT, true);
|
|
|
|
}
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_SPECIAL_COLUMN:
|
|
|
|
case LyXTabular::SET_SPECIAL_MULTI:
|
|
|
|
tabular->SetAlignSpecial(actcell,val,feature);
|
|
|
|
break;
|
|
|
|
case LyXTabular::APPEND_ROW:
|
|
|
|
// append the row into the tabular
|
2000-06-12 11:27:15 +00:00
|
|
|
UnlockInsetInInset(bv, the_locking_inset);
|
2000-05-26 13:09:14 +00:00
|
|
|
tabular->AppendRow(actcell);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::APPEND_COLUMN:
|
|
|
|
// append the column into the tabular
|
|
|
|
tabular->AppendColumn(actcell);
|
|
|
|
actcell = tabular->GetCellNumber(row, column);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::DELETE_ROW:
|
|
|
|
tabular->DeleteRow(tabular->row_of_cell(actcell));
|
|
|
|
if ((row+1) > tabular->rows())
|
|
|
|
--row;
|
|
|
|
actcell = tabular->GetCellNumber(row, column);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::DELETE_COLUMN:
|
|
|
|
tabular->DeleteColumn(tabular->column_of_cell(actcell));
|
|
|
|
if ((column+1) > tabular->columns())
|
|
|
|
--column;
|
|
|
|
actcell = tabular->GetCellNumber(row, column);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
flag = false;
|
2000-05-26 13:09:14 +00:00
|
|
|
case LyXTabular::TOGGLE_LINE_TOP:
|
2000-07-17 14:31:07 +00:00
|
|
|
lineSet = !tabular->TopLine(actcell, flag);
|
2000-05-26 13:09:14 +00:00
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
2000-07-17 14:31:07 +00:00
|
|
|
tabular->SetTopLine(tabular->GetCellNumber(i,j),lineSet, flag);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_TOGGLE_LINE_BOTTOM:
|
|
|
|
flag = false;
|
2000-05-26 13:09:14 +00:00
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM:
|
2000-07-17 14:31:07 +00:00
|
|
|
lineSet = !tabular->BottomLine(actcell, flag);
|
2000-05-26 13:09:14 +00:00
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
2000-07-17 14:31:07 +00:00
|
|
|
tabular->SetBottomLine(tabular->GetCellNumber(i,j),lineSet,
|
|
|
|
flag);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_TOGGLE_LINE_LEFT:
|
|
|
|
flag = false;
|
2000-05-26 13:09:14 +00:00
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT:
|
2000-07-17 14:31:07 +00:00
|
|
|
lineSet = !tabular->LeftLine(actcell, flag);
|
2000-05-26 13:09:14 +00:00
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
2000-07-17 14:31:07 +00:00
|
|
|
tabular->SetLeftLine(tabular->GetCellNumber(i,j),lineSet,
|
|
|
|
flag);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_TOGGLE_LINE_RIGHT:
|
|
|
|
flag = false;
|
2000-05-26 13:09:14 +00:00
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT:
|
2000-07-17 14:31:07 +00:00
|
|
|
lineSet = !tabular->RightLine(actcell, flag);
|
2000-05-26 13:09:14 +00:00
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
2000-07-17 14:31:07 +00:00
|
|
|
tabular->SetRightLine(tabular->GetCellNumber(i,j),lineSet,
|
|
|
|
flag);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2000-07-17 14:31:07 +00:00
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
flag = false;
|
2000-05-26 13:09:14 +00:00
|
|
|
case LyXTabular::ALIGN_LEFT:
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
2000-07-17 14:31:07 +00:00
|
|
|
tabular->SetAlignment(tabular->GetCellNumber(i,j),setAlign,
|
|
|
|
flag);
|
|
|
|
if (hasSelection())
|
|
|
|
UpdateLocal(bv, INIT, true);
|
|
|
|
else
|
|
|
|
UpdateLocal(bv, CELL, true);
|
|
|
|
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:
|
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
|
|
|
tabular->SetVAlignment(tabular->GetCellNumber(i,j), setAlign,
|
|
|
|
flag);
|
2000-06-23 15:02:46 +00:00
|
|
|
if (hasSelection())
|
|
|
|
UpdateLocal(bv, INIT, true);
|
|
|
|
else
|
|
|
|
UpdateLocal(bv, CELL, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::MULTICOLUMN:
|
|
|
|
{
|
|
|
|
if (sel_row_start != sel_row_end) {
|
|
|
|
WriteAlert(_("Impossible Operation!"),
|
|
|
|
_("Multicolumns can only be horizontally."),
|
|
|
|
_("Sorry."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// just multicol for one Single Cell
|
|
|
|
if (!hasSelection()) {
|
|
|
|
// check wether we are completly in a multicol
|
|
|
|
if (tabular->IsMultiColumn(actcell)) {
|
|
|
|
tabular->UnsetMultiColumn(actcell);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
} else {
|
|
|
|
tabular->SetMultiColumn(actcell, 1);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, CELL, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// we have a selection so this means we just add all this
|
|
|
|
// cells to form a multicolumn cell
|
|
|
|
int
|
|
|
|
s_start, s_end;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-05-26 13:09:14 +00:00
|
|
|
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;
|
|
|
|
}
|
2000-06-08 23:16:16 +00:00
|
|
|
tabular->SetMultiColumn(s_start, s_end - s_start + 1);
|
2000-05-26 13:09:14 +00:00
|
|
|
actcell = s_start;
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor.pos(0);
|
2000-05-26 13:09:14 +00:00
|
|
|
sel_cell_end = sel_cell_start;
|
|
|
|
sel_pos_end = sel_pos_start;
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LyXTabular::SET_ALL_LINES:
|
|
|
|
setLines = 1;
|
|
|
|
case LyXTabular::UNSET_ALL_LINES:
|
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
|
|
|
tabular->SetAllLines(tabular->GetCellNumber(i,j), setLines);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true);
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
|
|
|
tabular->SetLongTabular(true);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true); // because this toggles displayed
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
|
|
|
tabular->SetLongTabular(false);
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, INIT, true); // because this toggles displayed
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_ROTATE_TABULAR:
|
|
|
|
tabular->SetRotateTabular(true);
|
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_ROTATE_TABULAR:
|
|
|
|
tabular->SetRotateTabular(false);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_ROTATE_CELL:
|
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
|
|
|
tabular->SetRotateCell(tabular->GetCellNumber(i,j),true);
|
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_ROTATE_CELL:
|
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
|
|
|
tabular->SetRotateCell(tabular->GetCellNumber(i,j),false);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LINEBREAKS:
|
|
|
|
what = !tabular->GetLinebreaks(actcell);
|
|
|
|
for(i=sel_row_start; i<=sel_row_end; ++i)
|
|
|
|
for(j=sel_col_start; j<=sel_col_end; ++j)
|
|
|
|
tabular->SetLinebreaks(tabular->GetCellNumber(i,j),what);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTFIRSTHEAD:
|
|
|
|
tabular->SetLTHead(actcell,true);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTHEAD:
|
|
|
|
tabular->SetLTHead(actcell,false);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTFOOT:
|
|
|
|
tabular->SetLTFoot(actcell,false);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTLASTFOOT:
|
|
|
|
tabular->SetLTFoot(actcell,true);
|
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
|
|
|
what = !tabular->GetLTNewPage(actcell);
|
|
|
|
tabular->SetLTNewPage(actcell,what);
|
|
|
|
break;
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
bool InsetTabular::ActivateCellInset(BufferView * bv, int x, int y, int button,
|
|
|
|
bool behind)
|
2000-05-04 08:14:34 +00:00
|
|
|
{
|
|
|
|
// the cursor.pos has to be before the inset so if it isn't now just
|
|
|
|
// reset the curor pos first!
|
2000-06-08 23:16:16 +00:00
|
|
|
if (cursor.pos() % 2) { // behind the inset
|
|
|
|
cursor.pos(cursor.pos() - 1);
|
2000-07-05 14:57:48 +00:00
|
|
|
resetPos(bv);
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
|
|
|
UpdatableInset * inset =
|
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
2000-05-15 14:49:36 +00:00
|
|
|
if (behind) {
|
2000-07-05 14:57:48 +00:00
|
|
|
x = inset->x() + inset->width(bv, font);
|
|
|
|
y = inset->descent(bv, font);
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
2000-06-08 23:16:16 +00:00
|
|
|
inset_x = cursor.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
|
|
|
|
inset_y = cursor.y();
|
|
|
|
inset->Edit(bv, x - inset_x, y - inset_y, button);
|
2000-05-04 08:14:34 +00:00
|
|
|
if (!the_locking_inset)
|
|
|
|
return false;
|
2000-06-23 15:02:46 +00:00
|
|
|
UpdateLocal(bv, CELL, false);
|
2000-05-04 08:14:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
bool InsetTabular::InsetHit(BufferView * bv, int x, int ) const
|
|
|
|
{
|
|
|
|
InsetText * inset = tabular->GetCellInset(actcell);
|
|
|
|
int x1 = x + top_x;
|
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
if (cursor.pos() % 2) { // behind the inset
|
|
|
|
return (((x + top_x) < cursor.x()) &&
|
2000-07-05 14:57:48 +00:00
|
|
|
((x + top_x) > (cursor.x() - inset->width(bv,
|
2000-05-04 08:14:34 +00:00
|
|
|
LyXFont(LyXFont::ALL_SANE)))));
|
|
|
|
} else {
|
2000-06-08 23:16:16 +00:00
|
|
|
int x2 = cursor.x() + tabular->GetBeginningOfTextInCell(actcell);
|
2000-05-04 08:14:34 +00:00
|
|
|
return ((x1 > x2) &&
|
2000-07-05 14:57:48 +00:00
|
|
|
(x1 < (x2 + inset->width(bv, LyXFont(LyXFont::ALL_SANE)))));
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
|
|
|
}
|
2000-05-15 14:49:36 +00:00
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
// This returns paperWidth() if the cell-width is unlimited or the width
|
|
|
|
// in pixels if we have a pwidth for this cell.
|
2000-06-12 11:27:15 +00:00
|
|
|
int InsetTabular::GetMaxWidthOfCell(Painter &, int cell) const
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
2000-06-19 15:33:58 +00:00
|
|
|
string s = tabular->GetPWidth(cell);
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2000-06-19 15:33:58 +00:00
|
|
|
if (s.empty())
|
2000-06-12 11:27:15 +00:00
|
|
|
return -1;
|
2000-06-19 15:33:58 +00:00
|
|
|
return VSpace(s).inPixels( 0, 0);
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
int InsetTabular::getMaxWidth(Painter & pain,
|
|
|
|
UpdatableInset const * inset) const
|
|
|
|
{
|
|
|
|
int cell;
|
|
|
|
int n = tabular->GetNumberOfCells();
|
|
|
|
for(cell=0; cell < n; ++cell) {
|
|
|
|
if (tabular->GetCellInset(cell) == inset)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (cell >= n)
|
2000-06-12 11:27:15 +00:00
|
|
|
return -1;
|
2000-05-15 14:49:36 +00:00
|
|
|
int w = GetMaxWidthOfCell(pain, cell);
|
|
|
|
// this because text insets remove the xpos from the maxwidth because
|
|
|
|
// otherwise the would not break good!!!
|
|
|
|
// w += getCellXPos(cell) + tabular->GetBeginningOfTextInCell(cell);
|
|
|
|
// w += inset->x();
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
|
|
|
void InsetTabular::recomputeTextInsets(BufferView * bv,
|
|
|
|
LyXFont const & font) const
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
|
|
|
InsetText * inset;
|
2000-06-16 15:13:25 +00:00
|
|
|
int cell;
|
2000-05-15 14:49:36 +00:00
|
|
|
|
2000-06-16 15:13:25 +00:00
|
|
|
// cx = top_x;
|
2000-05-15 14:49:36 +00:00
|
|
|
for(int j= 0; j < tabular->columns(); ++j) {
|
|
|
|
for(int i = 0; i < tabular->rows(); ++i) {
|
|
|
|
if (tabular->IsPartOfMultiColumn(i,j))
|
|
|
|
continue;
|
|
|
|
cell = tabular->GetCellNumber(i,j);
|
|
|
|
inset = tabular->GetCellInset(cell);
|
2000-06-16 15:13:25 +00:00
|
|
|
inset->update(bv, font);
|
2000-07-05 14:57:48 +00:00
|
|
|
tabular->SetWidthOfCell(cell, inset->width(bv, font));
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
2000-06-16 15:13:25 +00:00
|
|
|
// cell = tabular->GetCellNumber(0, j);
|
|
|
|
// cx += tabular->GetWidthOfColumn(cell);
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
}
|
2000-07-14 14:57:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::resizeLyXText(BufferView *) const
|
|
|
|
{
|
|
|
|
need_update = FULL;
|
|
|
|
}
|