2000-04-19 14:42:19 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 2001 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>
|
2001-06-25 00:06:33 +00:00
|
|
|
#include <map>
|
2001-06-27 14:10:35 +00:00
|
|
|
//#include <signal.h>
|
2000-04-19 14:42:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insettabular.h"
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "commandtags.h"
|
2001-06-27 14:10:35 +00:00
|
|
|
#include "lyxfunc.h"
|
2000-07-19 12:30:49 +00:00
|
|
|
#include "debug.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
#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"
|
2000-04-19 14:42:19 +00:00
|
|
|
#include "insets/insettext.h"
|
2000-07-11 15:08:54 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
2001-11-26 10:19:58 +00:00
|
|
|
#include "frontends/Alert.h"
|
2000-07-19 17:16:27 +00:00
|
|
|
#include "debug.h"
|
2001-01-03 16:04:05 +00:00
|
|
|
#include "WorkArea.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "language.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "BufferView.h"
|
2001-07-06 15:57:54 +00:00
|
|
|
#include "undo_funcs.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "support/LAssert.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
|
|
using std::ostream;
|
|
|
|
using std::ifstream;
|
2000-04-24 20:58:23 +00:00
|
|
|
using std::max;
|
|
|
|
using std::endl;
|
2000-07-15 23:51:46 +00:00
|
|
|
using std::swap;
|
2001-01-03 16:04:05 +00:00
|
|
|
using std::max;
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const int ADD_TO_HEIGHT = 2;
|
|
|
|
const int ADD_TO_TABULAR_WIDTH = 2;
|
|
|
|
///
|
|
|
|
LyXTabular * paste_tabular = 0;
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
struct TabularFeature {
|
2001-04-04 09:42:56 +00:00
|
|
|
LyXTabular::Feature action;
|
|
|
|
string feature;
|
2000-07-28 14:28:54 +00:00
|
|
|
};
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
//tabular_features * tabularFeatures = 0;
|
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" },
|
|
|
|
{ LyXTabular::VALIGN_TOP, "valign-top" },
|
|
|
|
{ LyXTabular::VALIGN_BOTTOM, "valign-bottom" },
|
|
|
|
{ LyXTabular::VALIGN_CENTER, "valign-center" },
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_TOP, "m-toggle-line-top" },
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_BOTTOM, "m-toggle-line-bottom" },
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_LEFT, "m-toggle-line-left" },
|
|
|
|
{ LyXTabular::M_TOGGLE_LINE_RIGHT, "m-toggle-line-right" },
|
|
|
|
{ LyXTabular::M_ALIGN_LEFT, "m-align-left" },
|
|
|
|
{ LyXTabular::M_ALIGN_RIGHT, "m-align-right" },
|
|
|
|
{ LyXTabular::M_ALIGN_CENTER, "m-align-center" },
|
|
|
|
{ LyXTabular::M_VALIGN_TOP, "m-valign-top" },
|
|
|
|
{ LyXTabular::M_VALIGN_BOTTOM, "m-valign-bottom" },
|
|
|
|
{ LyXTabular::M_VALIGN_CENTER, "m-valign-center" },
|
|
|
|
{ LyXTabular::MULTICOLUMN, "multicolumn" },
|
|
|
|
{ LyXTabular::SET_ALL_LINES, "set-all-lines" },
|
|
|
|
{ LyXTabular::UNSET_ALL_LINES, "unset-all-lines" },
|
|
|
|
{ LyXTabular::SET_LONGTABULAR, "set-longtabular" },
|
|
|
|
{ LyXTabular::UNSET_LONGTABULAR, "unset-longtabular" },
|
|
|
|
{ LyXTabular::SET_PWIDTH, "set-pwidth" },
|
|
|
|
{ LyXTabular::SET_MPWIDTH, "set-mpwidth" },
|
|
|
|
{ LyXTabular::SET_ROTATE_TABULAR, "set-rotate-tabular" },
|
|
|
|
{ LyXTabular::UNSET_ROTATE_TABULAR, "unset-rotate-tabular" },
|
|
|
|
{ LyXTabular::SET_ROTATE_CELL, "set-rotate-cell" },
|
|
|
|
{ LyXTabular::UNSET_ROTATE_CELL, "unset-rotate-cell" },
|
|
|
|
{ LyXTabular::SET_USEBOX, "set-usebox" },
|
|
|
|
{ LyXTabular::SET_LTHEAD, "set-lthead" },
|
|
|
|
{ LyXTabular::SET_LTFIRSTHEAD, "set-ltfirsthead" },
|
|
|
|
{ LyXTabular::SET_LTFOOT, "set-ltfoot" },
|
|
|
|
{ LyXTabular::SET_LTLASTFOOT, "set-ltlastfoot" },
|
|
|
|
{ LyXTabular::SET_LTNEWPAGE, "set-ltnewpage" },
|
|
|
|
{ LyXTabular::SET_SPECIAL_COLUMN, "set-special-column" },
|
|
|
|
{ LyXTabular::SET_SPECIAL_MULTI, "set-special-multi" },
|
|
|
|
{ LyXTabular::LAST_ACTION, "" }
|
2000-07-28 14:28:54 +00:00
|
|
|
};
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::hasPasteBuffer() const
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
return (paste_tabular != 0);
|
2001-03-20 01:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-10 11:50:43 +00:00
|
|
|
InsetTabular::InsetTabular(Buffer const & buf, int rows, int columns)
|
|
|
|
: buffer(&buf)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (rows <= 0)
|
|
|
|
rows = 1;
|
|
|
|
if (columns <= 0)
|
|
|
|
columns = 1;
|
2001-07-06 15:57:54 +00:00
|
|
|
tabular.reset(new LyXTabular(this, rows, columns));
|
2001-04-04 09:42:56 +00:00
|
|
|
// for now make it always display as display() inset
|
|
|
|
// just for test!!!
|
|
|
|
the_locking_inset = 0;
|
2001-04-04 22:08:13 +00:00
|
|
|
locked = no_selection = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
oldcell = -1;
|
|
|
|
actrow = actcell = 0;
|
|
|
|
clearSelection();
|
|
|
|
need_update = INIT;
|
2001-08-01 15:42:53 +00:00
|
|
|
in_update = false;
|
2001-11-28 16:09:25 +00:00
|
|
|
in_reset_pos = false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
InsetTabular::InsetTabular(InsetTabular const & tab, Buffer const & buf,
|
|
|
|
bool same_id)
|
2001-07-24 15:07:09 +00:00
|
|
|
: UpdatableInset(tab, same_id), buffer(&buf)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-11-30 16:10:24 +00:00
|
|
|
tabular.reset(new LyXTabular(this, *(tab.tabular), same_id));
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
2001-04-04 22:08:13 +00:00
|
|
|
locked = no_selection = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
oldcell = -1;
|
|
|
|
actrow = actcell = 0;
|
|
|
|
sel_cell_start = sel_cell_end = 0;
|
|
|
|
need_update = INIT;
|
2001-08-01 15:42:53 +00:00
|
|
|
in_update = false;
|
2001-11-28 16:09:25 +00:00
|
|
|
in_reset_pos = false;
|
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()
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
hideDialog();
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Inset * InsetTabular::clone(Buffer const & buf, bool same_id) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-07-06 15:57:54 +00:00
|
|
|
return new InsetTabular(*this, buf, same_id);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::write(Buffer const * buf, ostream & os) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
os << " Tabular" << endl;
|
|
|
|
tabular->Write(buf, os);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::read(Buffer const * buf, LyXLex & lex)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-08-06 19:13:25 +00:00
|
|
|
bool const old_format = (lex.getString() == "\\LyXTable");
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
//if (tabular)
|
|
|
|
//delete tabular;
|
|
|
|
//tabular = new LyXTabular(buf, this, lex);
|
|
|
|
tabular.reset(new LyXTabular(buf, this, lex));
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
need_update = INIT;
|
2000-05-17 14:43:09 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (old_format)
|
|
|
|
return;
|
2000-05-17 14:43:09 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
lex.nextToken();
|
2001-08-06 19:13:25 +00:00
|
|
|
string token = lex.getString();
|
|
|
|
while (lex.isOK() && (token != "\\end_inset")) {
|
2001-04-04 22:08:13 +00:00
|
|
|
lex.nextToken();
|
2001-08-06 19:13:25 +00:00
|
|
|
token = lex.getString();
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
if (token != "\\end_inset") {
|
|
|
|
lex.printError("Missing \\end_inset at this point. "
|
2001-04-04 22:08:13 +00:00
|
|
|
"Read: `$$Token'");
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
int InsetTabular::ascent(BufferView *, LyXFont const &) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +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
|
|
|
{
|
2001-04-04 09:42:56 +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
|
|
|
{
|
2001-04-04 09:42:56 +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,
|
2001-04-04 22:08:13 +00:00
|
|
|
float & x, bool cleared) const
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
2001-06-14 10:44:21 +00:00
|
|
|
if (nodraw()) {
|
|
|
|
if (cleared)
|
|
|
|
need_update = FULL;
|
2001-04-27 14:03:25 +00:00
|
|
|
return;
|
2001-06-14 10:44:21 +00:00
|
|
|
}
|
2001-05-28 15:11:24 +00:00
|
|
|
#if 0
|
|
|
|
if (need_update == INIT) {
|
|
|
|
if (calculate_dimensions_of_cells(bv, font, true))
|
|
|
|
bv->text->status = LyXText::CHANGED_IN_DRAW;
|
|
|
|
need_update = FULL;
|
|
|
|
}
|
|
|
|
#endif
|
2001-04-27 14:03:25 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
Painter & pain = bv->painter();
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
int nx;
|
2001-04-13 14:49:58 +00:00
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
#if 0
|
2001-04-04 09:42:56 +00:00
|
|
|
UpdatableInset::draw(bv, font, baseline, x, cleared);
|
2001-04-27 14:03:25 +00:00
|
|
|
#else
|
|
|
|
if (!owner())
|
|
|
|
x += static_cast<float>(scroll());
|
|
|
|
#endif
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!cleared && ((need_update == INIT) || (need_update == FULL) ||
|
2001-08-08 13:29:13 +00:00
|
|
|
(top_x != int(x)) || (top_baseline != baseline)))
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
int h = ascent(bv, font) + descent(bv, font);
|
2001-04-04 22:08:13 +00:00
|
|
|
int const tx = display() || !owner() ? 0 : top_x;
|
2001-04-04 09:42:56 +00:00
|
|
|
int w = tx ? width(bv, font) : pain.paperWidth();
|
|
|
|
int ty = baseline - ascent(bv, font);
|
2000-06-28 15:12:29 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (ty < 0)
|
|
|
|
ty = 0;
|
|
|
|
if ((ty + h) > pain.paperHeight())
|
|
|
|
h = pain.paperHeight();
|
|
|
|
if ((top_x + w) > pain.paperWidth())
|
|
|
|
w = pain.paperWidth();
|
2001-07-24 10:13:19 +00:00
|
|
|
pain.fillRectangle(tx, ty, w, h, backgroundColor());
|
2001-04-04 09:42:56 +00:00
|
|
|
need_update = FULL;
|
|
|
|
cleared = true;
|
|
|
|
}
|
|
|
|
top_x = int(x);
|
2001-08-07 15:07:36 +00:00
|
|
|
topx_set = true;
|
2001-04-04 09:42:56 +00:00
|
|
|
top_baseline = baseline;
|
|
|
|
x += ADD_TO_TABULAR_WIDTH;
|
|
|
|
if (cleared) {
|
|
|
|
int cell = 0;
|
|
|
|
float cx;
|
|
|
|
first_visible_cell = -1;
|
|
|
|
for (i = 0; i < tabular->rows(); ++i) {
|
|
|
|
nx = int(x);
|
2001-04-27 14:03:25 +00:00
|
|
|
cell = tabular->GetCellNumber(i, 0);
|
|
|
|
if (!((baseline + tabular->GetDescentOfRow(i)) > 0) &&
|
|
|
|
(baseline - tabular->GetAscentOfRow(i))<pain.paperHeight())
|
|
|
|
{
|
|
|
|
baseline += tabular->GetDescentOfRow(i) +
|
|
|
|
tabular->GetAscentOfRow(i + 1) +
|
|
|
|
tabular->GetAdditionalHeight(i + 1);
|
|
|
|
continue;
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
for (j = 0; j < tabular->columns(); ++j) {
|
2001-04-27 14:03:25 +00:00
|
|
|
if (nx > bv->workWidth())
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
if (tabular->IsPartOfMultiColumn(i, j))
|
|
|
|
continue;
|
|
|
|
cx = nx + tabular->GetBeginningOfTextInCell(cell);
|
2001-04-27 14:03:25 +00:00
|
|
|
if (first_visible_cell < 0)
|
|
|
|
first_visible_cell = cell;
|
|
|
|
if (hasSelection())
|
2001-06-28 10:25:20 +00:00
|
|
|
drawCellSelection(pain, nx, baseline, i, j, cell);
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
tabular->GetCellInset(cell)->draw(bv, font, baseline, cx,
|
|
|
|
cleared);
|
2001-06-28 10:25:20 +00:00
|
|
|
drawCellLines(pain, nx, baseline, i, cell);
|
2001-04-04 09:42:56 +00:00
|
|
|
nx += tabular->GetWidthOfColumn(cell);
|
|
|
|
++cell;
|
|
|
|
}
|
|
|
|
baseline += tabular->GetDescentOfRow(i) +
|
|
|
|
tabular->GetAscentOfRow(i + 1) +
|
2001-04-27 14:03:25 +00:00
|
|
|
tabular->GetAdditionalHeight(i + 1);
|
2000-11-19 16:07:18 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
} else if (need_update == CELL) {
|
|
|
|
int cell = 0;
|
|
|
|
nx = int(x);
|
2001-04-27 14:03:25 +00:00
|
|
|
if (the_locking_inset &&
|
|
|
|
tabular->GetCellInset(actcell) != the_locking_inset)
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
Inset * inset = tabular->GetCellInset(cell);
|
2001-04-04 22:08:13 +00:00
|
|
|
for (i = 0;
|
|
|
|
inset != the_locking_inset && i < tabular->rows();
|
2001-08-08 13:29:13 +00:00
|
|
|
++i)
|
|
|
|
{
|
2001-04-04 22:08:13 +00:00
|
|
|
for (j = 0;
|
2001-08-08 13:29:13 +00:00
|
|
|
inset != the_locking_inset && j < tabular->columns();
|
|
|
|
++j)
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (tabular->IsPartOfMultiColumn(i, j))
|
|
|
|
continue;
|
|
|
|
nx += tabular->GetWidthOfColumn(cell);
|
|
|
|
++cell;
|
|
|
|
inset = tabular->GetCellInset(cell);
|
|
|
|
}
|
|
|
|
if (tabular->row_of_cell(cell) > i) {
|
|
|
|
nx = int(x);
|
|
|
|
baseline += tabular->GetDescentOfRow(i) +
|
|
|
|
tabular->GetAscentOfRow(i + 1) +
|
2001-04-27 14:03:25 +00:00
|
|
|
tabular->GetAdditionalHeight(i + 1);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2001-07-06 15:57:54 +00:00
|
|
|
// compute baseline for actual row
|
2001-04-27 14:03:25 +00:00
|
|
|
for (i = 0; i < actrow; ++i) {
|
|
|
|
baseline += tabular->GetDescentOfRow(i) +
|
|
|
|
tabular->GetAscentOfRow(i + 1) +
|
|
|
|
tabular->GetAdditionalHeight(i + 1);
|
|
|
|
}
|
|
|
|
// now compute the right x position
|
|
|
|
cell = tabular->GetCellNumber(actrow, 0);
|
|
|
|
for (j = 0; (cell < actcell) && (j < tabular->columns()); ++j) {
|
|
|
|
if (tabular->IsPartOfMultiColumn(actrow, j))
|
2001-04-04 09:42:56 +00:00
|
|
|
continue;
|
|
|
|
nx += tabular->GetWidthOfColumn(cell);
|
|
|
|
++cell;
|
|
|
|
}
|
2000-11-19 16:07:18 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
i = tabular->row_of_cell(cell);
|
|
|
|
if (the_locking_inset != tabular->GetCellInset(cell)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "ERROR this shouldn't happen\n";
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
2000-11-19 16:07:18 +00:00
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
float dx = nx + tabular->GetBeginningOfTextInCell(cell);
|
|
|
|
float cx = dx;
|
2001-06-27 14:10:35 +00:00
|
|
|
tabular->GetCellInset(cell)->draw(bv, font, baseline, dx, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
// clear only if we didn't have a change
|
2001-08-08 13:29:13 +00:00
|
|
|
if (bv->text->status() != LyXText::CHANGED_IN_DRAW) {
|
2001-04-04 09:42:56 +00:00
|
|
|
// clear before the inset
|
|
|
|
pain.fillRectangle(
|
|
|
|
nx + 1,
|
|
|
|
baseline - tabular->GetAscentOfRow(i) + 1,
|
|
|
|
int(cx - nx - 1),
|
|
|
|
tabular->GetAscentOfRow(i) +
|
2001-07-24 10:13:19 +00:00
|
|
|
tabular->GetDescentOfRow(i) - 1,
|
|
|
|
backgroundColor());
|
2001-04-04 09:42:56 +00:00
|
|
|
// clear behind the inset
|
|
|
|
pain.fillRectangle(
|
|
|
|
int(cx + the_locking_inset->width(bv,font) + 1),
|
|
|
|
baseline - tabular->GetAscentOfRow(i) + 1,
|
|
|
|
tabular->GetWidthOfColumn(cell) -
|
|
|
|
tabular->GetBeginningOfTextInCell(cell) -
|
|
|
|
the_locking_inset->width(bv,font) -
|
|
|
|
tabular->GetAdditionalWidth(cell) - 1,
|
|
|
|
tabular->GetAscentOfRow(i) +
|
2001-07-24 10:13:19 +00:00
|
|
|
tabular->GetDescentOfRow(i) - 1,
|
|
|
|
backgroundColor());
|
2001-08-08 13:29:13 +00:00
|
|
|
// clear below the inset
|
|
|
|
pain.fillRectangle(
|
|
|
|
nx + 1,
|
|
|
|
baseline + the_locking_inset->descent(bv, font) + 1,
|
|
|
|
tabular->GetWidthOfColumn(cell) -
|
|
|
|
tabular->GetAdditionalWidth(cell) - 1,
|
|
|
|
tabular->GetAscentOfRow(i) +
|
|
|
|
tabular->GetDescentOfRow(i) -
|
|
|
|
the_locking_inset->ascent(bv, font) -
|
|
|
|
the_locking_inset->descent(bv, font) -
|
|
|
|
TEXT_TO_INSET_OFFSET - 1,
|
|
|
|
backgroundColor());
|
2000-11-19 16:07:18 +00:00
|
|
|
}
|
2000-09-28 14:05:24 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
x -= ADD_TO_TABULAR_WIDTH;
|
|
|
|
x += width(bv, font);
|
2001-07-06 15:57:54 +00:00
|
|
|
if (bv->text->status() == LyXText::CHANGED_IN_DRAW) {
|
2001-06-27 14:10:35 +00:00
|
|
|
int i = 0;
|
|
|
|
for(Inset * inset=owner(); inset; ++i)
|
2001-05-28 15:11:24 +00:00
|
|
|
inset = inset->owner();
|
|
|
|
if (calculate_dimensions_of_cells(bv, font, false))
|
|
|
|
need_update = INIT;
|
|
|
|
} else {
|
2001-04-04 09:42:56 +00:00
|
|
|
need_update = NONE;
|
2001-05-28 15:11:24 +00:00
|
|
|
}
|
2000-06-16 15:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::drawCellLines(Painter & pain, int x, int baseline,
|
2001-04-04 22:08:13 +00:00
|
|
|
int row, int cell) const
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
int x2 = x + tabular->GetWidthOfColumn(cell);
|
|
|
|
bool on_off;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!tabular->TopAlreadyDrawed(cell)) {
|
|
|
|
on_off = !tabular->TopLine(cell);
|
|
|
|
pain.line(x, baseline - tabular->GetAscentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
x2, baseline - tabular->GetAscentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
on_off = !tabular->BottomLine(cell);
|
|
|
|
pain.line(x,baseline + tabular->GetDescentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
x2, baseline + tabular->GetDescentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!tabular->LeftAlreadyDrawed(cell)) {
|
|
|
|
on_off = !tabular->LeftLine(cell);
|
|
|
|
pain.line(x, baseline - tabular->GetAscentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
x, baseline + tabular->GetDescentOfRow(row),
|
|
|
|
on_off ? LColor::tabularonoffline : LColor::tabularline,
|
|
|
|
on_off ? Painter::line_onoffdash : Painter::line_solid);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
on_off = !tabular->RightLine(cell);
|
|
|
|
pain.line(x2 - tabular->GetAdditionalWidth(cell),
|
2001-04-04 22:08:13 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::drawCellSelection(Painter & pain, int x, int baseline,
|
2001-04-04 22:08:13 +00:00
|
|
|
int row, int column, int cell) const
|
2000-05-22 15:20:02 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +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);
|
|
|
|
} else {
|
|
|
|
ce = tabular->right_column_of_cell(sel_cell_end);
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
int rs = tabular->row_of_cell(sel_cell_start);
|
|
|
|
int re = tabular->row_of_cell(sel_cell_end);
|
|
|
|
if (rs > re) swap(rs, re);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if ((column >= cs) && (column <= ce) && (row >= rs) && (row <= re)) {
|
|
|
|
int w = tabular->GetWidthOfColumn(cell);
|
|
|
|
int h = tabular->GetAscentOfRow(row) + tabular->GetDescentOfRow(row);
|
|
|
|
pain.fillRectangle(x, baseline - tabular->GetAscentOfRow(row),
|
2001-04-04 22:08:13 +00:00
|
|
|
w, h, LColor::selection);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2000-05-22 15:20:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2001-08-07 15:07:36 +00:00
|
|
|
if (in_update) {
|
2001-08-08 13:29:13 +00:00
|
|
|
if (reinit) {
|
|
|
|
resetPos(bv);
|
|
|
|
if (owner())
|
|
|
|
owner()->update(bv, font, true);
|
2001-08-07 15:07:36 +00:00
|
|
|
}
|
2001-08-01 15:42:53 +00:00
|
|
|
return;
|
2001-08-07 15:07:36 +00:00
|
|
|
}
|
2001-08-01 15:42:53 +00:00
|
|
|
in_update = true;
|
2001-04-04 09:42:56 +00:00
|
|
|
if (reinit) {
|
|
|
|
need_update = INIT;
|
2001-08-08 13:29:13 +00:00
|
|
|
if (calculate_dimensions_of_cells(bv, font, true))
|
|
|
|
resetPos(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (owner())
|
|
|
|
owner()->update(bv, font, true);
|
2001-08-01 15:42:53 +00:00
|
|
|
in_update = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
if (the_locking_inset)
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset->update(bv, font, reinit);
|
2001-07-06 15:57:54 +00:00
|
|
|
if (need_update < FULL &&
|
|
|
|
bv->text->status() == LyXText::NEED_MORE_REFRESH)
|
|
|
|
{
|
|
|
|
need_update = FULL;
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
switch (need_update) {
|
|
|
|
case INIT:
|
|
|
|
case FULL:
|
|
|
|
case CELL:
|
|
|
|
if (calculate_dimensions_of_cells(bv, font, false))
|
|
|
|
need_update = INIT;
|
|
|
|
break;
|
|
|
|
case SELECTION:
|
|
|
|
need_update = INIT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2001-08-01 15:42:53 +00:00
|
|
|
in_update = false;
|
2000-06-23 15:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
string const InsetTabular::editMessage() const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
return _("Opened Tabular Inset");
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::edit(BufferView * bv, int x, int y, unsigned int button)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-06-28 10:25:20 +00:00
|
|
|
UpdatableInset::edit(bv, x, y, button);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!bv->lockInset(this)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "InsetTabular::Cannot lock inset" << endl;
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
locked = true;
|
|
|
|
the_locking_inset = 0;
|
|
|
|
inset_x = 0;
|
|
|
|
inset_y = 0;
|
|
|
|
setPos(bv, x, y);
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-06-28 10:25:20 +00:00
|
|
|
if (insetHit(bv, x, y) && (button != 3)) {
|
|
|
|
activateCellInsetAbs(bv, x, y, button);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::edit(BufferView * bv, bool front)
|
|
|
|
{
|
|
|
|
UpdatableInset::edit(bv, front);
|
|
|
|
|
|
|
|
if (!bv->lockInset(this)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "InsetTabular::Cannot lock inset" << endl;
|
2001-07-20 14:18:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
locked = true;
|
|
|
|
the_locking_inset = 0;
|
|
|
|
inset_x = 0;
|
|
|
|
inset_y = 0;
|
|
|
|
if (front)
|
|
|
|
actcell = 0;
|
|
|
|
else
|
|
|
|
actcell = tabular->GetNumberOfCells() - 1;
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
resetPos(bv);
|
|
|
|
finishUndo();
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::insetUnlock(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetUnlock(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
hideInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
no_selection = false;
|
|
|
|
oldcell = -1;
|
|
|
|
locked = false;
|
2001-04-27 14:03:25 +00:00
|
|
|
if (scroll(false) || hasSelection()) {
|
2001-04-04 09:42:56 +00:00
|
|
|
sel_cell_start = sel_cell_end = 0;
|
2001-04-27 14:03:25 +00:00
|
|
|
if (scroll(false)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
scroll(bv, 0.0F);
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2000-08-07 15:21:05 +00:00
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::updateLocal(BufferView * bv, UpdateCodes what,
|
2001-04-04 22:08:13 +00:00
|
|
|
bool mark_dirty) const
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
if (need_update < what) // only set this if it has greater update
|
|
|
|
need_update = what;
|
|
|
|
if ((what == INIT) && hasSelection())
|
|
|
|
clearSelection();
|
|
|
|
// Dirty Cast! (Lgb)
|
|
|
|
if (need_update != NONE) {
|
|
|
|
bv->updateInset(const_cast<InsetTabular *>(this), mark_dirty);
|
|
|
|
if (locked) // && (what != NONE))
|
|
|
|
resetPos(bv);
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "InsetTabular::LockInsetInInset("
|
2001-04-04 22:08:13 +00:00
|
|
|
<< inset << "): ";
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!inset)
|
|
|
|
return false;
|
|
|
|
oldcell = -1;
|
|
|
|
if (inset == tabular->GetCellInset(actcell)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "OK" << endl;
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = tabular->GetCellInset(actcell);
|
|
|
|
resetPos(bv);
|
|
|
|
return true;
|
|
|
|
} else if (the_locking_inset && (the_locking_inset == inset)) {
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "OK" << endl;
|
2001-04-04 09:42:56 +00:00
|
|
|
resetPos(bv);
|
|
|
|
} else if (the_locking_inset) {
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "MAYBE" << endl;
|
2001-06-28 10:25:20 +00:00
|
|
|
return the_locking_inset->lockInsetInInset(bv, inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "NOT OK" << endl;
|
2000-04-19 14:42:19 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::unlockInsetInInset(BufferView * bv, UpdatableInset * inset,
|
2001-04-04 22:08:13 +00:00
|
|
|
bool lr)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!the_locking_inset)
|
|
|
|
return false;
|
|
|
|
if (the_locking_inset == inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetUnlock(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
2001-06-27 14:10:35 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
2001-06-01 15:10:26 +00:00
|
|
|
#warning fix scrolling when cellinset has requested a scroll (Jug)!!!
|
2001-06-27 14:10:35 +00:00
|
|
|
#endif
|
2001-06-01 15:10:26 +00:00
|
|
|
#if 0
|
2001-04-27 14:03:25 +00:00
|
|
|
if (scroll(false))
|
|
|
|
scroll(bv, 0.0F);
|
2001-06-01 15:10:26 +00:00
|
|
|
#endif
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CELL, false);
|
|
|
|
showInsetCursor(bv, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
return true;
|
2000-05-16 15:17:19 +00:00
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
if (the_locking_inset->unlockInsetInInset(bv, inset, lr)) {
|
|
|
|
if (inset->lyxCode() == TABULAR_CODE &&
|
|
|
|
!the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
bv->owner()->getDialogs()->updateTabular(this);
|
|
|
|
oldcell = actcell;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::updateInsetInInset(BufferView * bv, Inset * inset)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!the_locking_inset)
|
|
|
|
return false;
|
|
|
|
if (the_locking_inset != inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
if (!the_locking_inset->updateInsetInInset(bv, inset))
|
2001-04-04 09:42:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CELL, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
unsigned int InsetTabular::insetInInsetY()
|
2000-05-04 08:14:34 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!the_locking_inset)
|
|
|
|
return 0;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
return inset_y + the_locking_inset->insetInInsetY();
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
|
2001-07-12 12:26:06 +00:00
|
|
|
UpdatableInset * InsetTabular::getLockingInset() const
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
2001-07-12 12:26:06 +00:00
|
|
|
return the_locking_inset ? the_locking_inset->getLockingInset() :
|
|
|
|
const_cast<InsetTabular *>(this);
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
UpdatableInset * InsetTabular::getFirstLockingInsetOfType(Inset::Code c)
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
2001-06-28 10:25:20 +00:00
|
|
|
if (c == lyxCode())
|
2001-04-04 09:42:56 +00:00
|
|
|
return this;
|
|
|
|
if (the_locking_inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
return the_locking_inset->getFirstLockingInsetOfType(c);
|
2001-04-04 09:42:56 +00:00
|
|
|
return 0;
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::insertInset(BufferView * bv, Inset * inset)
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
return the_locking_inset->insertInset(bv, inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
return false;
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::insetButtonPress(BufferView * bv, int x, int y, int button)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (hasSelection() && (button == 3))
|
|
|
|
return;
|
2000-12-22 14:44:29 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (hasSelection()) {
|
|
|
|
clearSelection();
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2000-12-22 14:44:29 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
no_selection = false;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
int const ocell = actcell;
|
|
|
|
int const orow = actrow;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
hideInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
setPos(bv, x, y);
|
|
|
|
if (actrow != orow)
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, NONE, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (button == 3) {
|
|
|
|
if ((ocell != actcell) && the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetUnlock(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
showInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
2000-12-22 14:44:29 +00:00
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool const inset_hit = insetHit(bv, x, y);
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if ((ocell == actcell) && the_locking_inset && inset_hit) {
|
|
|
|
resetPos(bv);
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetButtonPress(bv,
|
2001-04-04 22:08:13 +00:00
|
|
|
x - inset_x, y - inset_y,
|
|
|
|
button);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
} else if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetUnlock(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
the_locking_inset = 0;
|
|
|
|
if (button == 2) {
|
2001-06-28 10:25:20 +00:00
|
|
|
localDispatch(bv, LFUN_PASTESELECTION, "paragraph");
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (inset_hit && bv->theLockingInset()) {
|
2001-06-28 10:25:20 +00:00
|
|
|
if (activateCellInsetAbs(bv, x, y, button))
|
|
|
|
the_locking_inset->insetButtonPress(bv,
|
2001-04-04 22:08:13 +00:00
|
|
|
x - inset_x,
|
|
|
|
y - inset_y,
|
|
|
|
button);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
showInsetCursor(bv);
|
2000-07-11 15:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::insetButtonRelease(BufferView * bv,
|
2001-04-04 22:08:13 +00:00
|
|
|
int x, int y, int button)
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
if (button == 3) {
|
|
|
|
if (the_locking_inset) {
|
|
|
|
UpdatableInset * i;
|
2001-06-28 10:25:20 +00:00
|
|
|
if ((i = the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE))) {
|
|
|
|
i->insetButtonRelease(bv, x, y, button);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bv->owner()->getDialogs()->showTabular(this);
|
|
|
|
return;
|
|
|
|
}
|
2000-07-11 15:08:54 +00:00
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetButtonRelease(bv,
|
2001-04-04 22:08:13 +00:00
|
|
|
x - inset_x, y - inset_y,
|
|
|
|
button);
|
2000-07-11 15:08:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
no_selection = false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::insetMotionNotify(BufferView * bv, int x, int y, int button)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetMotionNotify(bv,
|
2001-04-04 22:08:13 +00:00
|
|
|
x - inset_x,
|
|
|
|
y - inset_y,
|
|
|
|
button);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!no_selection) {
|
2001-06-28 10:25:20 +00:00
|
|
|
hideInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
int const old_cell = actcell;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
setPos(bv, x, y);
|
|
|
|
sel_cell_end = actcell;
|
|
|
|
if (sel_cell_end != old_cell)
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
|
|
|
showInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
no_selection = false;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::insetKeyPress(XKeyEvent * xke)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->insetKeyPress(xke);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
UpdatableInset::RESULT
|
2001-08-01 15:42:53 +00:00
|
|
|
InsetTabular::localDispatch(BufferView * bv, kb_action action,
|
|
|
|
string const & arg)
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
// We need to save the value of the_locking_inset as the call to
|
|
|
|
// the_locking_inset->LocalDispatch might unlock it.
|
|
|
|
old_locking_inset = the_locking_inset;
|
|
|
|
no_selection = false;
|
|
|
|
UpdatableInset::RESULT result =
|
2001-06-28 10:25:20 +00:00
|
|
|
UpdatableInset::localDispatch(bv, action, arg);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (result == DISPATCHED || result == DISPATCHED_NOUPDATE) {
|
|
|
|
resetPos(bv);
|
|
|
|
return result;
|
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if ((action < 0) && arg.empty())
|
|
|
|
return FINISHED;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
bool hs = hasSelection();
|
2001-03-23 15:48:19 +00:00
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
result = DISPATCHED;
|
2001-08-01 15:42:53 +00:00
|
|
|
// this one have priority over the locked InsetText, if we're not already
|
|
|
|
// inside another tabular then that one get's priority!
|
|
|
|
if (getFirstLockingInsetOfType(Inset::TABULAR_CODE) == this) {
|
|
|
|
switch (action) {
|
|
|
|
case LFUN_SHIFT_TAB:
|
|
|
|
case LFUN_TAB:
|
|
|
|
hideInsetCursor(bv);
|
|
|
|
if (the_locking_inset) {
|
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
|
|
|
the_locking_inset = 0;
|
|
|
|
}
|
|
|
|
if (action == LFUN_TAB)
|
|
|
|
moveNextCell(bv, old_locking_inset != 0);
|
|
|
|
else
|
|
|
|
movePrevCell(bv, old_locking_inset != 0);
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
|
|
|
updateLocal(bv, SELECTION, false);
|
|
|
|
if (!the_locking_inset) {
|
|
|
|
showInsetCursor(bv);
|
|
|
|
return DISPATCHED_NOUPDATE;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
// this to avoid compiler warnings.
|
|
|
|
default:
|
2001-05-28 15:11:24 +00:00
|
|
|
break;
|
2001-04-27 14:03:25 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
|
2001-02-19 16:01:31 +00:00
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
result = the_locking_inset->localDispatch(bv, action, arg);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (result == DISPATCHED_NOUPDATE) {
|
|
|
|
int sc = scroll();
|
|
|
|
resetPos(bv);
|
|
|
|
if (sc != scroll()) { // inset has been scrolled
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->toggleInsetCursor(bv);
|
|
|
|
updateLocal(bv, FULL, false);
|
|
|
|
the_locking_inset->toggleInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} else if (result == DISPATCHED) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->toggleInsetCursor(bv);
|
|
|
|
updateLocal(bv, CELL, false);
|
|
|
|
the_locking_inset->toggleInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
return result;
|
2001-10-01 11:55:08 +00:00
|
|
|
} else if (result == FINISHED_UP) {
|
|
|
|
action = LFUN_UP;
|
|
|
|
} else if (result == FINISHED_DOWN) {
|
|
|
|
action = LFUN_DOWN;
|
|
|
|
} else if (result == FINISHED_RIGHT) {
|
|
|
|
action = LFUN_RIGHT;
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-02-19 16:01:31 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
hideInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
result=DISPATCHED;
|
|
|
|
switch (action) {
|
2001-04-04 22:08:13 +00:00
|
|
|
// --- Cursor Movements ----------------------------------
|
2001-04-04 09:42:56 +00:00
|
|
|
case LFUN_RIGHTSEL:
|
|
|
|
if (tabular->IsLastCellInRow(actcell))
|
|
|
|
break;
|
|
|
|
moveRight(bv, false);
|
|
|
|
sel_cell_end = actcell;
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_RIGHT:
|
|
|
|
result = moveRight(bv);
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_LEFTSEL:
|
|
|
|
if (tabular->IsFirstCellInRow(actcell))
|
|
|
|
break;
|
|
|
|
moveLeft(bv, false);
|
|
|
|
sel_cell_end = actcell;
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_LEFT:
|
|
|
|
result = moveLeft(bv);
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_DOWNSEL:
|
2001-02-19 16:01:31 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
int const ocell = actcell;
|
|
|
|
moveDown(bv, false);
|
|
|
|
if ((ocell == sel_cell_end) ||
|
2001-04-04 22:08:13 +00:00
|
|
|
(tabular->column_of_cell(ocell)>tabular->column_of_cell(actcell)))
|
2001-04-04 09:42:56 +00:00
|
|
|
sel_cell_end = tabular->GetCellBelow(sel_cell_end);
|
|
|
|
else
|
|
|
|
sel_cell_end = tabular->GetLastCellBelow(sel_cell_end);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-02-19 16:01:31 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LFUN_DOWN:
|
|
|
|
result = moveDown(bv, old_locking_inset != 0);
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_UPSEL:
|
|
|
|
{
|
|
|
|
int const ocell = actcell;
|
|
|
|
moveUp(bv, false);
|
|
|
|
if ((ocell == sel_cell_end) ||
|
2001-04-04 22:08:13 +00:00
|
|
|
(tabular->column_of_cell(ocell)>tabular->column_of_cell(actcell)))
|
2001-04-04 09:42:56 +00:00
|
|
|
sel_cell_end = tabular->GetCellAbove(sel_cell_end);
|
|
|
|
else
|
|
|
|
sel_cell_end = tabular->GetLastCellAbove(sel_cell_end);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-02-19 16:01:31 +00:00
|
|
|
}
|
2000-05-08 13:39:45 +00:00
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LFUN_UP:
|
|
|
|
result = moveUp(bv, old_locking_inset != 0);
|
|
|
|
sel_cell_start = sel_cell_end = actcell;
|
|
|
|
if (hs)
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, SELECTION, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_NEXT: {
|
|
|
|
int column = actcol;
|
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
|
|
|
}
|
|
|
|
if (bv->text->first + bv->painter().paperHeight() <
|
2001-04-04 22:08:13 +00:00
|
|
|
(top_baseline + tabular->GetHeightOfTabular()))
|
|
|
|
{
|
|
|
|
bv->scrollCB(bv->text->first + bv->painter().paperHeight());
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-04-04 22:08:13 +00:00
|
|
|
actcell = tabular->GetCellBelow(first_visible_cell) + column;
|
|
|
|
} else {
|
|
|
|
actcell = tabular->GetFirstCellInRow(tabular->rows() - 1) + column;
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
resetPos(bv);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CURSOR, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LFUN_PRIOR: {
|
|
|
|
int column = actcol;
|
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
|
|
|
}
|
|
|
|
if (top_baseline < 0) {
|
|
|
|
bv->scrollCB(bv->text->first - bv->painter().paperHeight());
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (top_baseline > 0)
|
|
|
|
actcell = column;
|
|
|
|
else
|
|
|
|
actcell = tabular->GetCellBelow(first_visible_cell) + column;
|
|
|
|
} else {
|
|
|
|
actcell = column;
|
|
|
|
}
|
|
|
|
resetPos(bv);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CURSOR, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LFUN_BACKSPACE:
|
|
|
|
break;
|
|
|
|
case LFUN_DELETE:
|
|
|
|
break;
|
|
|
|
case LFUN_HOME:
|
|
|
|
break;
|
|
|
|
case LFUN_END:
|
|
|
|
break;
|
|
|
|
case LFUN_LAYOUT_TABULAR:
|
|
|
|
{
|
|
|
|
bv->owner()->getDialogs()->showTabular(this);
|
|
|
|
}
|
2000-07-28 14:28:54 +00:00
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LFUN_TABULAR_FEATURE:
|
2001-06-28 10:25:20 +00:00
|
|
|
if (!tabularFeatures(bv, arg))
|
2001-04-04 09:42:56 +00:00
|
|
|
result = UNDISPATCHED;
|
|
|
|
break;
|
|
|
|
case LFUN_CUT:
|
|
|
|
if (!copySelection(bv))
|
|
|
|
break;
|
2001-07-06 15:57:54 +00:00
|
|
|
setUndo(bv, Undo::DELETE,
|
|
|
|
bv->text->cursor.par(),
|
|
|
|
bv->text->cursor.par()->next());
|
2001-04-04 09:42:56 +00:00
|
|
|
cutSelection();
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LFUN_COPY:
|
|
|
|
if (!hasSelection())
|
|
|
|
break;
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-04-04 09:42:56 +00:00
|
|
|
copySelection(bv);
|
|
|
|
break;
|
|
|
|
case LFUN_PASTESELECTION:
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
string const clip(bv->getClipboard());
|
2001-01-03 16:04:05 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (clip.empty())
|
|
|
|
break;
|
|
|
|
if (clip.find('\t') != string::npos) {
|
|
|
|
int cols = 1;
|
|
|
|
int rows = 1;
|
|
|
|
int maxCols = 1;
|
2001-10-01 13:50:31 +00:00
|
|
|
string::size_type len = clip.length();
|
2001-04-04 09:42:56 +00:00
|
|
|
string::size_type p = 0;
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
while(p < len &&
|
|
|
|
((p = clip.find_first_of("\t\n", p)) != string::npos)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
switch(clip[p]) {
|
|
|
|
case '\t':
|
|
|
|
++cols;
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
if ((p+1) < len)
|
|
|
|
++rows;
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
cols = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
maxCols = max(cols, maxCols);
|
|
|
|
delete paste_tabular;
|
|
|
|
paste_tabular = new LyXTabular(this, rows, maxCols);
|
|
|
|
string::size_type op = 0;
|
|
|
|
int cell = 0;
|
|
|
|
int cells = paste_tabular->GetNumberOfCells();
|
|
|
|
p = cols = 0;
|
|
|
|
while((cell < cells) && (p < len) &&
|
2001-04-04 22:08:13 +00:00
|
|
|
(p = clip.find_first_of("\t\n", p)) != string::npos) {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (p >= len)
|
|
|
|
break;
|
|
|
|
switch(clip[p]) {
|
|
|
|
case '\t':
|
2001-06-28 10:25:20 +00:00
|
|
|
paste_tabular->GetCellInset(cell)->setText(clip.substr(op, p-op));
|
2001-04-04 09:42:56 +00:00
|
|
|
++cols;
|
|
|
|
++cell;
|
|
|
|
break;
|
|
|
|
case '\n':
|
2001-06-28 10:25:20 +00:00
|
|
|
paste_tabular->GetCellInset(cell)->setText(clip.substr(op, p-op));
|
2001-04-04 09:42:56 +00:00
|
|
|
while(cols++ < maxCols)
|
|
|
|
++cell;
|
|
|
|
cols = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++p;
|
|
|
|
op = p;
|
|
|
|
}
|
|
|
|
// check for the last cell if there is no trailing '\n'
|
|
|
|
if ((cell < cells) && (op < len))
|
2001-06-28 10:25:20 +00:00
|
|
|
paste_tabular->GetCellInset(cell)->setText(clip.substr(op, len-op));
|
2001-04-04 09:42:56 +00:00
|
|
|
} else {
|
2001-04-04 22:08:13 +00:00
|
|
|
// so that the clipboard is used and it goes on
|
|
|
|
// to default
|
2001-04-04 09:42:56 +00:00
|
|
|
// and executes LFUN_PASTESELECTION in insettext!
|
|
|
|
delete paste_tabular;
|
|
|
|
paste_tabular = 0;
|
2001-01-03 16:04:05 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
case LFUN_PASTE:
|
|
|
|
if (hasPasteBuffer()) {
|
2001-07-06 15:57:54 +00:00
|
|
|
setUndo(bv, Undo::INSERT,
|
|
|
|
bv->text->cursor.par(),
|
|
|
|
bv->text->cursor.par()->next());
|
2001-04-04 09:42:56 +00:00
|
|
|
pasteSelection(bv);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// ATTENTION: the function above has to be PASTE and PASTESELECTION!!!
|
|
|
|
default:
|
|
|
|
// we try to activate the actual inset and put this event down to
|
|
|
|
// the insets dispatch function.
|
|
|
|
result = UNDISPATCHED;
|
|
|
|
if (the_locking_inset)
|
|
|
|
break;
|
2001-04-27 14:03:25 +00:00
|
|
|
nodraw(true);
|
2001-06-28 10:25:20 +00:00
|
|
|
if (activateCellInset(bv)) {
|
2001-06-14 10:44:21 +00:00
|
|
|
// reset need_update setted in above function!
|
|
|
|
need_update = NONE;
|
2001-06-28 10:25:20 +00:00
|
|
|
result = the_locking_inset->localDispatch(bv, action, arg);
|
2001-08-16 08:52:30 +00:00
|
|
|
if ((result == UNDISPATCHED) || (result >= FINISHED)) {
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-27 14:03:25 +00:00
|
|
|
nodraw(false);
|
2001-04-04 09:42:56 +00:00
|
|
|
the_locking_inset = 0;
|
2001-06-14 10:44:21 +00:00
|
|
|
// we need to update if this was requested before
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, NONE, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
return UNDISPATCHED;
|
2001-08-01 15:42:53 +00:00
|
|
|
} else if (hs) {
|
|
|
|
clearSelection();
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
nodraw(false);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CELL, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
2001-08-16 08:52:30 +00:00
|
|
|
if (result < FINISHED) {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
showInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
bv->unlockInset(this);
|
|
|
|
return result;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetTabular::latex(Buffer const * buf, ostream & os,
|
2001-04-04 22:08:13 +00:00
|
|
|
bool fragile, bool fp) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +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
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetTabular::ascii(Buffer const * buf, ostream & os, int) const
|
2000-04-24 20:58:23 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
// This should be changed to a real ascii export
|
|
|
|
return tabular->Ascii(buf, os);
|
2000-04-24 20:58:23 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-10-24 07:43:34 +00:00
|
|
|
int InsetTabular::linuxdoc(Buffer const * buf, ostream & os) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-10-24 07:43:34 +00:00
|
|
|
return tabular->Ascii(buf,os);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-09-04 11:02:09 +00:00
|
|
|
int InsetTabular::docbook(Buffer const * buf, ostream & os) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-10-24 07:43:34 +00:00
|
|
|
int ret = 0;
|
|
|
|
Inset * master;
|
|
|
|
|
|
|
|
// if the table is inside a float it doesn't need the informaltable
|
|
|
|
// wrapper. Search for it.
|
|
|
|
for(master = owner();
|
|
|
|
master && master->lyxCode() != Inset::FLOAT_CODE;
|
|
|
|
master = master->owner());
|
|
|
|
|
|
|
|
if (!master) {
|
|
|
|
os << "<informaltable>\n";
|
|
|
|
ret++;
|
|
|
|
}
|
|
|
|
ret+= tabular->DocBook(buf,os);
|
|
|
|
if (!master) {
|
|
|
|
os << "</informaltable>\n";
|
|
|
|
ret++;
|
|
|
|
}
|
|
|
|
return ret;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::validate(LaTeXFeatures & features) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +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,
|
2001-08-08 13:29:13 +00:00
|
|
|
LyXFont const & font,
|
|
|
|
bool reinit) const
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
int cell = -1;
|
|
|
|
int maxAsc = 0;
|
|
|
|
int maxDesc = 0;
|
|
|
|
InsetText * inset;
|
|
|
|
bool changed = false;
|
|
|
|
|
|
|
|
// if we have a locking_inset we should have to check only this cell for
|
|
|
|
// change so I'll try this to have a boost, but who knows ;)
|
|
|
|
if ((need_update != INIT) &&
|
2001-04-04 22:08:13 +00:00
|
|
|
(the_locking_inset == tabular->GetCellInset(actcell))) {
|
2001-04-04 09:42:56 +00:00
|
|
|
for(int i = 0; i < tabular->columns(); ++i) {
|
|
|
|
maxAsc = max(tabular->GetCellInset(actrow, i)->ascent(bv, font),
|
2001-04-04 22:08:13 +00:00
|
|
|
maxAsc);
|
2001-04-04 09:42:56 +00:00
|
|
|
maxDesc = max(tabular->GetCellInset(actrow, i)->descent(bv, font),
|
2001-04-04 22:08:13 +00:00
|
|
|
maxDesc);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
changed = tabular->SetWidthOfCell(actcell, the_locking_inset->width(bv, font));
|
|
|
|
changed = tabular->SetAscentOfRow(actrow, maxAsc + ADD_TO_HEIGHT) || changed;
|
|
|
|
changed = tabular->SetDescentOfRow(actrow, maxDesc + ADD_TO_HEIGHT) || changed;
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < tabular->rows(); ++i) {
|
|
|
|
maxAsc = 0;
|
|
|
|
maxDesc = 0;
|
2001-06-27 14:10:35 +00:00
|
|
|
for (int j = 0; j < tabular->columns(); ++j) {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (tabular->IsPartOfMultiColumn(i,j))
|
|
|
|
continue;
|
|
|
|
++cell;
|
|
|
|
inset = tabular->GetCellInset(cell);
|
2001-08-10 10:24:44 +00:00
|
|
|
if (!reinit && !tabular->GetPWidth(cell).empty())
|
2001-04-04 09:42:56 +00:00
|
|
|
inset->update(bv, font, false);
|
|
|
|
maxAsc = max(maxAsc, inset->ascent(bv, font));
|
|
|
|
maxDesc = max(maxDesc, inset->descent(bv, font));
|
|
|
|
changed = tabular->SetWidthOfCell(cell, inset->width(bv, font)) || changed;
|
|
|
|
}
|
|
|
|
changed = tabular->SetAscentOfRow(i, maxAsc + ADD_TO_HEIGHT) || changed;
|
|
|
|
changed = tabular->SetDescentOfRow(i, maxDesc + ADD_TO_HEIGHT) || changed;
|
|
|
|
}
|
2000-11-19 16:07:18 +00:00
|
|
|
return changed;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-17 15:39:12 +00:00
|
|
|
void InsetTabular::getCursorPos(BufferView * bv, int & x, int & y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-07-17 15:39:12 +00:00
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->getCursorPos(bv, x, y);
|
|
|
|
return;
|
|
|
|
}
|
2001-07-06 15:57:54 +00:00
|
|
|
x = cursor_.x() - top_x;
|
|
|
|
y = cursor_.y();
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::toggleInsetCursor(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->toggleInsetCursor(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
LyXFont font; // = the_locking_inset->GetFont(par, cursor.pos);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
int const asc = lyxfont::maxAscent(font);
|
|
|
|
int const desc = lyxfont::maxDescent(font);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
|
|
|
if (isCursorVisible())
|
2001-04-04 09:42:56 +00:00
|
|
|
bv->hideLockedInsetCursor();
|
|
|
|
else
|
2001-07-06 15:57:54 +00:00
|
|
|
bv->showLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
|
2001-04-04 22:08:13 +00:00
|
|
|
toggleCursorVisible();
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::showInsetCursor(BufferView * bv, bool show)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 22:08:13 +00:00
|
|
|
if (!isCursorVisible()) {
|
2001-04-04 09:42:56 +00:00
|
|
|
LyXFont font; // = GetFont(par, cursor.pos);
|
|
|
|
|
|
|
|
int const asc = lyxfont::maxAscent(font);
|
|
|
|
int const desc = lyxfont::maxDescent(font);
|
2001-07-06 15:57:54 +00:00
|
|
|
bv->fitLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (show)
|
2001-07-06 15:57:54 +00:00
|
|
|
bv->showLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
|
2001-04-04 22:08:13 +00:00
|
|
|
setCursorVisible(true);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::hideInsetCursor(BufferView * bv)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 22:08:13 +00:00
|
|
|
if (isCursorVisible()) {
|
2001-04-04 09:42:56 +00:00
|
|
|
bv->hideLockedInsetCursor();
|
2001-04-04 22:08:13 +00:00
|
|
|
setCursorVisible(false);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-08-01 15:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::fitInsetCursor(BufferView * bv) const
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->fitInsetCursor(bv);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LyXFont font;
|
|
|
|
|
|
|
|
int const asc = lyxfont::maxAscent(font);
|
|
|
|
int const desc = lyxfont::maxDescent(font);
|
|
|
|
bv->fitLockedInsetCursor(cursor_.x(), cursor_.y(), asc, desc);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
void InsetTabular::setPos(BufferView * bv, int x, int y) const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-07-06 15:57:54 +00:00
|
|
|
cursor_.y(0);
|
2000-06-08 23:16:16 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
actcell = actrow = actcol = 0;
|
|
|
|
int ly = tabular->GetDescentOfRow(actrow);
|
|
|
|
|
|
|
|
// first search the right row
|
2001-08-08 13:29:13 +00:00
|
|
|
while((ly < y) && ((actrow+1) < tabular->rows())) {
|
2001-07-06 15:57:54 +00:00
|
|
|
cursor_.y(cursor_.y() + tabular->GetDescentOfRow(actrow) +
|
2001-04-27 14:03:25 +00:00
|
|
|
tabular->GetAscentOfRow(actrow + 1) +
|
|
|
|
tabular->GetAdditionalHeight(actrow + 1));
|
2001-04-04 09:42:56 +00:00
|
|
|
++actrow;
|
2001-07-06 15:57:54 +00:00
|
|
|
ly = cursor_.y() + tabular->GetDescentOfRow(actrow);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
actcell = tabular->GetCellNumber(actrow, actcol);
|
|
|
|
|
|
|
|
// now search the right column
|
|
|
|
int lx = tabular->GetWidthOfColumn(actcell) -
|
|
|
|
tabular->GetAdditionalWidth(actcell);
|
|
|
|
for (; !tabular->IsLastCellInRow(actcell) && lx < x; ++actcell) {
|
|
|
|
lx += tabular->GetWidthOfColumn(actcell + 1)
|
|
|
|
+ tabular->GetAdditionalWidth(actcell);
|
|
|
|
}
|
2001-07-06 15:57:54 +00:00
|
|
|
cursor_.x(lx - tabular->GetWidthOfColumn(actcell) + top_x + 2);
|
2001-04-04 09:42:56 +00:00
|
|
|
resetPos(bv);
|
2000-04-21 15:16:22 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-05-15 14:49:36 +00:00
|
|
|
int InsetTabular::getCellXPos(int cell) const
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
int c = cell;
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
for (; !tabular->IsFirstCellInRow(c); --c)
|
|
|
|
;
|
|
|
|
int lx = tabular->GetWidthOfColumn(cell);
|
|
|
|
for (; c < cell; ++c) {
|
|
|
|
lx += tabular->GetWidthOfColumn(c);
|
|
|
|
}
|
|
|
|
return (lx - tabular->GetWidthOfColumn(cell) + top_x);
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
2000-04-21 15:16:22 +00:00
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2000-07-05 14:57:48 +00:00
|
|
|
void InsetTabular::resetPos(BufferView * bv) const
|
2000-04-24 20:58:23 +00:00
|
|
|
{
|
2001-08-10 12:21:42 +00:00
|
|
|
if (!locked || nodraw())
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
2001-11-29 12:58:59 +00:00
|
|
|
#warning This should be fixed in the right manner (20011128 Jug)
|
2001-11-28 16:09:25 +00:00
|
|
|
// fast hack to fix infinite repaintings!
|
|
|
|
if (in_reset_pos)
|
|
|
|
return;
|
|
|
|
in_reset_pos = true;
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
actcol = tabular->column_of_cell(actcell);
|
|
|
|
|
|
|
|
int cell = 0;
|
|
|
|
actrow = 0;
|
2001-07-06 15:57:54 +00:00
|
|
|
cursor_.y(0);
|
2001-04-04 09:42:56 +00:00
|
|
|
for (; (cell < actcell) && !tabular->IsLastRow(cell); ++cell) {
|
|
|
|
if (tabular->IsLastCellInRow(cell)) {
|
2001-07-06 15:57:54 +00:00
|
|
|
cursor_.y(cursor_.y() + tabular->GetDescentOfRow(actrow) +
|
2001-04-27 14:03:25 +00:00
|
|
|
tabular->GetAscentOfRow(actrow + 1) +
|
|
|
|
tabular->GetAdditionalHeight(actrow + 1));
|
2001-04-04 09:42:56 +00:00
|
|
|
++actrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static int const offset = ADD_TO_TABULAR_WIDTH + 2;
|
|
|
|
int new_x = getCellXPos(actcell);
|
2001-07-06 15:57:54 +00:00
|
|
|
int old_x = cursor_.x();
|
2001-04-04 09:42:56 +00:00
|
|
|
new_x += offset;
|
2001-07-06 15:57:54 +00:00
|
|
|
cursor_.x(new_x);
|
2000-11-10 16:04:51 +00:00
|
|
|
// cursor.x(getCellXPos(actcell) + offset);
|
2001-06-01 15:10:26 +00:00
|
|
|
if ((actcol < tabular->columns()-1) && scroll(false) &&
|
|
|
|
(tabular->GetWidthOfTabular() < bv->workWidth()-20))
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
scroll(bv, 0.0F);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-04-27 14:03:25 +00:00
|
|
|
} else if (the_locking_inset &&
|
2001-06-01 15:10:26 +00:00
|
|
|
(tabular->GetWidthOfColumn(actcell) > bv->workWidth()-20))
|
|
|
|
{
|
2001-07-06 15:57:54 +00:00
|
|
|
int xx = cursor_.x() - offset + bv->text->getRealCursorX(bv);
|
2001-05-28 15:11:24 +00:00
|
|
|
if (xx > (bv->workWidth()-20)) {
|
2001-04-04 09:42:56 +00:00
|
|
|
scroll(bv, -(xx - bv->workWidth() + 60));
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-05-28 15:11:24 +00:00
|
|
|
} else if (xx < 20) {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (xx < 0)
|
|
|
|
xx = -xx + 60;
|
|
|
|
else
|
|
|
|
xx = 60;
|
|
|
|
scroll(bv, xx);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-07-06 15:57:54 +00:00
|
|
|
} else if ((cursor_.x() - offset) > 20 &&
|
|
|
|
(cursor_.x() - offset + tabular->GetWidthOfColumn(actcell))
|
2001-04-04 22:08:13 +00:00
|
|
|
> (bv->workWidth() - 20)) {
|
|
|
|
scroll(bv, -tabular->GetWidthOfColumn(actcell) - 20);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-07-06 15:57:54 +00:00
|
|
|
} else if ((cursor_.x() - offset) < 20) {
|
|
|
|
scroll(bv, 20 - cursor_.x() + offset);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-04-27 14:03:25 +00:00
|
|
|
} else if (scroll(false) && top_x > 20 &&
|
2001-04-04 22:08:13 +00:00
|
|
|
(top_x + tabular->GetWidthOfTabular()) > (bv->workWidth() - 20)) {
|
2001-07-06 15:57:54 +00:00
|
|
|
scroll(bv, old_x - cursor_.x());
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, FULL, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-08-08 13:29:13 +00:00
|
|
|
if (the_locking_inset) {
|
|
|
|
inset_x = cursor_.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
|
|
|
|
inset_y = cursor_.y();
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
if ((!the_locking_inset ||
|
2001-06-28 10:25:20 +00:00
|
|
|
!the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE)) &&
|
2001-04-04 22:08:13 +00:00
|
|
|
actcell != oldcell) {
|
2001-04-04 09:42:56 +00:00
|
|
|
InsetTabular * inset = const_cast<InsetTabular *>(this);
|
|
|
|
bv->owner()->getDialogs()->updateTabular(inset);
|
|
|
|
oldcell = actcell;
|
|
|
|
}
|
2001-11-28 16:09:25 +00:00
|
|
|
in_reset_pos = false;
|
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
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (lock && !old_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
if (activateCellInset(bv))
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED;
|
|
|
|
} else {
|
2001-04-04 22:08:13 +00:00
|
|
|
bool moved = isRightToLeft(bv)
|
|
|
|
? movePrevCell(bv) : moveNextCell(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!moved)
|
2001-08-16 08:52:30 +00:00
|
|
|
return FINISHED_RIGHT;
|
2001-06-28 10:25:20 +00:00
|
|
|
if (lock && activateCellInset(bv))
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED;
|
|
|
|
}
|
|
|
|
resetPos(bv);
|
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2000-05-04 08:14:34 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveLeft(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
bool moved = isRightToLeft(bv) ? moveNextCell(bv) : movePrevCell(bv);
|
|
|
|
if (!moved)
|
|
|
|
return FINISHED;
|
|
|
|
if (lock) { // behind the inset
|
2001-06-28 10:25:20 +00:00
|
|
|
if (activateCellInset(bv, 0, 0, 0, true))
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED;
|
|
|
|
}
|
|
|
|
resetPos(bv);
|
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-01-25 16:00:38 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveUp(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
int const ocell = actcell;
|
|
|
|
actcell = tabular->GetCellAbove(actcell);
|
|
|
|
if (actcell == ocell) // we moved out of the inset
|
2001-08-16 08:52:30 +00:00
|
|
|
return FINISHED_UP;
|
2001-04-04 09:42:56 +00:00
|
|
|
resetPos(bv);
|
|
|
|
if (lock) {
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
if (old_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
old_locking_inset->getCursorPos(bv, x, y);
|
2001-07-06 15:57:54 +00:00
|
|
|
x -= cursor_.x() + tabular->GetBeginningOfTextInCell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
if (activateCellInset(bv, x, 0))
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED;
|
2001-01-25 16:00:38 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-01-25 16:00:38 +00:00
|
|
|
UpdatableInset::RESULT InsetTabular::moveDown(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
int const ocell = actcell;
|
|
|
|
actcell = tabular->GetCellBelow(actcell);
|
|
|
|
if (actcell == ocell) // we moved out of the inset
|
2001-08-16 08:52:30 +00:00
|
|
|
return FINISHED_DOWN;
|
2001-04-04 09:42:56 +00:00
|
|
|
resetPos(bv);
|
|
|
|
if (lock) {
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
if (old_locking_inset) {
|
2001-06-28 10:25:20 +00:00
|
|
|
old_locking_inset->getCursorPos(bv, x, y);
|
2001-07-06 15:57:54 +00:00
|
|
|
x -= cursor_.x() + tabular->GetBeginningOfTextInCell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
if (activateCellInset(bv, x, 0))
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED;
|
2001-01-25 16:00:38 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-01-08 16:14:09 +00:00
|
|
|
bool InsetTabular::moveNextCell(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (isRightToLeft(bv)) {
|
|
|
|
if (tabular->IsFirstCellInRow(actcell)) {
|
|
|
|
int row = tabular->row_of_cell(actcell);
|
|
|
|
if (row == tabular->rows() - 1)
|
|
|
|
return false;
|
|
|
|
actcell = tabular->GetLastCellInRow(row);
|
|
|
|
actcell = tabular->GetCellBelow(actcell);
|
|
|
|
} else {
|
|
|
|
if (!actcell)
|
|
|
|
return false;
|
|
|
|
--actcell;
|
|
|
|
}
|
2001-01-08 16:14:09 +00:00
|
|
|
} else {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (tabular->IsLastCell(actcell))
|
|
|
|
return false;
|
|
|
|
++actcell;
|
2001-01-08 16:14:09 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
if (lock) {
|
2001-07-06 15:57:54 +00:00
|
|
|
bool rtl = tabular->GetCellInset(actcell)->paragraph()->
|
2001-04-04 09:42:56 +00:00
|
|
|
isRightToLeftPar(bv->buffer()->params);
|
2001-06-28 10:25:20 +00:00
|
|
|
activateCellInset(bv, 0, 0, 0, !rtl);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
resetPos(bv);
|
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-01-08 16:14:09 +00:00
|
|
|
bool InsetTabular::movePrevCell(BufferView * bv, bool lock)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (isRightToLeft(bv)) {
|
|
|
|
if (tabular->IsLastCellInRow(actcell)) {
|
|
|
|
int row = tabular->row_of_cell(actcell);
|
|
|
|
if (row == 0)
|
|
|
|
return false;
|
|
|
|
actcell = tabular->GetFirstCellInRow(row);
|
|
|
|
actcell = tabular->GetCellAbove(actcell);
|
|
|
|
} else {
|
|
|
|
if (tabular->IsLastCell(actcell))
|
|
|
|
return false;
|
|
|
|
++actcell;
|
|
|
|
}
|
2001-01-08 16:14:09 +00:00
|
|
|
} else {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!actcell) // first cell
|
|
|
|
return false;
|
|
|
|
--actcell;
|
2001-01-08 16:14:09 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
if (lock) {
|
2001-07-06 15:57:54 +00:00
|
|
|
bool rtl = tabular->GetCellInset(actcell)->paragraph()->
|
2001-04-04 09:42:56 +00:00
|
|
|
isRightToLeftPar(bv->buffer()->params);
|
2001-06-28 10:25:20 +00:00
|
|
|
activateCellInset(bv, 0, 0, 0, !rtl);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
resetPos(bv);
|
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-10-01 13:50:31 +00:00
|
|
|
bool InsetTabular::deletable() const
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
return true;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::setFont(BufferView * bv, LyXFont const & font, bool tall,
|
2001-05-28 15:11:24 +00:00
|
|
|
bool selectall)
|
2000-04-19 14:42:19 +00:00
|
|
|
{
|
2001-05-28 15:11:24 +00:00
|
|
|
if (selectall) {
|
|
|
|
sel_cell_start = 0;
|
|
|
|
sel_cell_end = tabular->GetNumberOfCells() - 1;
|
|
|
|
}
|
|
|
|
if (hasSelection()) {
|
2001-07-06 15:57:54 +00:00
|
|
|
setUndo(bv, Undo::EDIT,
|
|
|
|
bv->text->cursor.par(),
|
|
|
|
bv->text->cursor.par()->next());
|
2001-07-08 12:52:16 +00:00
|
|
|
bool frozen = undo_frozen;
|
2001-05-28 15:11:24 +00:00
|
|
|
if (!frozen)
|
2001-07-06 15:57:54 +00:00
|
|
|
freezeUndo();
|
2001-05-28 15:11:24 +00:00
|
|
|
// apply the fontchange on the whole selection
|
|
|
|
int sel_row_start;
|
|
|
|
int sel_row_end;
|
|
|
|
int sel_col_start;
|
|
|
|
int sel_col_end;
|
|
|
|
getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
|
2001-06-28 10:25:20 +00:00
|
|
|
for(int i = sel_row_start; i <= sel_row_end; ++i) {
|
|
|
|
for(int j = sel_col_start; j <= sel_col_end; ++j) {
|
|
|
|
tabular->GetCellInset(i, j)->setFont(bv, font, tall, true);
|
2001-05-28 15:11:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!frozen)
|
2001-07-06 15:57:54 +00:00
|
|
|
unFreezeUndo();
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-05-28 15:11:24 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset)
|
2001-06-28 10:25:20 +00:00
|
|
|
the_locking_inset->setFont(bv, font, tall);
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::tabularFeatures(BufferView * bv, string const & what)
|
2000-07-28 14:28:54 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
LyXTabular::Feature action = LyXTabular::LAST_ACTION;
|
2001-04-04 22:08:13 +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;
|
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 =
|
2001-06-28 10:25:20 +00:00
|
|
|
frontStrip(what.substr(tabularFeature[i].feature.length()));
|
|
|
|
tabularFeatures(bv, action, val);
|
2001-04-04 09:42:56 +00:00
|
|
|
return true;
|
2000-07-28 14:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::tabularFeatures(BufferView * bv,
|
2001-08-08 13:29:13 +00:00
|
|
|
LyXTabular::Feature feature,
|
|
|
|
string const & value)
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
int sel_col_start;
|
|
|
|
int sel_col_end;
|
|
|
|
int sel_row_start;
|
|
|
|
int sel_row_end;
|
2001-04-04 22:08:13 +00:00
|
|
|
bool setLines = false;
|
2001-04-04 09:42:56 +00:00
|
|
|
LyXAlignment setAlign = LYX_ALIGN_LEFT;
|
|
|
|
LyXTabular::VAlignment setVAlign = LyXTabular::LYX_VALIGN_TOP;
|
|
|
|
|
|
|
|
switch (feature) {
|
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
case LyXTabular::ALIGN_LEFT:
|
|
|
|
setAlign=LYX_ALIGN_LEFT;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
|
|
|
setAlign=LYX_ALIGN_RIGHT;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
|
|
|
setAlign=LYX_ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
setVAlign=LyXTabular::LYX_VALIGN_TOP;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
|
|
|
setVAlign=LyXTabular::LYX_VALIGN_BOTTOM;
|
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
|
|
|
setVAlign=LyXTabular::LYX_VALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2000-04-19 14:42:19 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
if (hasSelection()) {
|
2001-05-28 15:11:24 +00:00
|
|
|
getSelection(sel_row_start, sel_row_end, sel_col_start, sel_col_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
} else {
|
|
|
|
sel_col_start = sel_col_end = tabular->column_of_cell(actcell);
|
|
|
|
sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
2001-07-06 15:57:54 +00:00
|
|
|
setUndo(bv, Undo::FINISH,
|
|
|
|
bv->text->cursor.par(),
|
|
|
|
bv->text->cursor.par()->next());
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2001-10-24 15:07:39 +00:00
|
|
|
LyXTabular::ltType ltt;
|
|
|
|
int row = ltt.row = tabular->row_of_cell(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
int column = tabular->column_of_cell(actcell);
|
|
|
|
bool flag = true;
|
2001-10-24 15:07:39 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
switch (feature) {
|
|
|
|
case LyXTabular::SET_PWIDTH:
|
|
|
|
{
|
|
|
|
bool const update = (tabular->GetColumnPWidth(actcell) != value);
|
|
|
|
tabular->SetColumnPWidth(actcell,value);
|
|
|
|
if (update) {
|
2001-04-04 22:08:13 +00:00
|
|
|
for (int i = 0; i < tabular->rows(); ++i) {
|
2001-04-04 09:42:56 +00:00
|
|
|
tabular->GetCellInset(tabular->GetCellNumber(i, column))->
|
|
|
|
resizeLyXText(bv);
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
}
|
2000-07-17 14:31:07 +00:00
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_MPWIDTH:
|
|
|
|
{
|
|
|
|
bool const update = (tabular->GetPWidth(actcell) != value);
|
|
|
|
tabular->SetMColumnPWidth(actcell,value);
|
|
|
|
if (update) {
|
2001-04-04 22:08:13 +00:00
|
|
|
for (int i = 0; i < tabular->rows(); ++i) {
|
2001-04-04 09:42:56 +00:00
|
|
|
tabular->GetCellInset(tabular->GetCellNumber(i, column))->
|
|
|
|
resizeLyXText(bv);
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
}
|
2000-05-26 13:09:14 +00:00
|
|
|
break;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_SPECIAL_COLUMN:
|
|
|
|
case LyXTabular::SET_SPECIAL_MULTI:
|
|
|
|
tabular->SetAlignSpecial(actcell,value,feature);
|
2001-08-08 13:29:13 +00:00
|
|
|
updateLocal(bv, FULL, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::APPEND_ROW:
|
|
|
|
// append the row into the tabular
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
tabular->AppendRow(actcell);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::APPEND_COLUMN:
|
|
|
|
// append the column into the tabular
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-04-04 09:42:56 +00:00
|
|
|
tabular->AppendColumn(actcell);
|
|
|
|
actcell = tabular->GetCellNumber(row, column);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::DELETE_ROW:
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-08-08 13:29:13 +00:00
|
|
|
for(int i = sel_row_start; i <= sel_row_end; ++i) {
|
|
|
|
tabular->DeleteRow(sel_row_start);
|
|
|
|
}
|
2001-08-13 08:14:09 +00:00
|
|
|
if (sel_row_start >= tabular->rows())
|
2001-08-08 13:29:13 +00:00
|
|
|
--sel_row_start;
|
|
|
|
actcell = tabular->GetCellNumber(sel_row_start, column);
|
2001-04-04 09:42:56 +00:00
|
|
|
clearSelection();
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::DELETE_COLUMN:
|
2001-06-28 10:25:20 +00:00
|
|
|
unlockInsetInInset(bv, the_locking_inset);
|
2001-08-08 13:29:13 +00:00
|
|
|
for(int i = sel_col_start; i <= sel_col_end; ++i) {
|
|
|
|
tabular->DeleteColumn(sel_col_start);
|
|
|
|
}
|
2001-08-13 08:14:09 +00:00
|
|
|
if (sel_col_start >= tabular->columns())
|
2001-08-08 13:29:13 +00:00
|
|
|
--sel_col_start;
|
|
|
|
actcell = tabular->GetCellNumber(row, sel_col_start);
|
2001-04-04 09:42:56 +00:00
|
|
|
clearSelection();
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_TOP:
|
2001-04-04 22:08:13 +00:00
|
|
|
{
|
|
|
|
bool lineSet = !tabular->TopLine(actcell, flag);
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetTopLine(
|
|
|
|
tabular->GetCellNumber(i, j),
|
|
|
|
lineSet, flag);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_BOTTOM:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM:
|
2001-04-04 22:08:13 +00:00
|
|
|
{
|
|
|
|
bool lineSet = !tabular->BottomLine(actcell, flag);
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetBottomLine(
|
|
|
|
tabular->GetCellNumber(i, j),
|
|
|
|
lineSet,
|
|
|
|
flag);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
}
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::M_TOGGLE_LINE_LEFT:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT:
|
2001-04-04 22:08:13 +00:00
|
|
|
{
|
|
|
|
bool lineSet = !tabular->LeftLine(actcell, flag);
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetLeftLine(
|
|
|
|
tabular->GetCellNumber(i,j),
|
|
|
|
lineSet,
|
|
|
|
flag);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
}
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::M_TOGGLE_LINE_RIGHT:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT:
|
2001-04-04 22:08:13 +00:00
|
|
|
{
|
|
|
|
bool lineSet = !tabular->RightLine(actcell, flag);
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetRightLine(
|
|
|
|
tabular->GetCellNumber(i,j),
|
|
|
|
lineSet,
|
|
|
|
flag);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-04-04 22:08:13 +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:
|
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)
|
|
|
|
tabular->SetAlignment(
|
|
|
|
tabular->GetCellNumber(i, j),
|
|
|
|
setAlign,
|
|
|
|
flag);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
2001-04-04 22:08:13 +00:00
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetVAlignment(
|
|
|
|
tabular->GetCellNumber(i, j),
|
|
|
|
setVAlign, flag);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::MULTICOLUMN:
|
|
|
|
{
|
|
|
|
if (sel_row_start != sel_row_end) {
|
2001-11-26 10:19:58 +00:00
|
|
|
Alert::alert(_("Impossible Operation!"),
|
2001-04-04 22:08:13 +00:00
|
|
|
_("Multicolumns can only be horizontally."),
|
|
|
|
_("Sorry."));
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// just multicol for one Single Cell
|
|
|
|
if (!hasSelection()) {
|
|
|
|
// check wether we are completly in a multicol
|
|
|
|
if (tabular->IsMultiColumn(actcell)) {
|
|
|
|
tabular->UnsetMultiColumn(actcell);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
} else {
|
|
|
|
tabular->SetMultiColumn(actcell, 1);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CELL, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
tabular->SetMultiColumn(s_start, s_end - s_start + 1);
|
|
|
|
actcell = s_start;
|
|
|
|
sel_cell_end = sel_cell_start;
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_ALL_LINES:
|
2001-04-04 22:08:13 +00:00
|
|
|
setLines = true;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::UNSET_ALL_LINES:
|
2001-04-04 22:08:13 +00:00
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetAllLines(
|
|
|
|
tabular->GetCellNumber(i,j), setLines);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
|
|
|
tabular->SetLongTabular(true);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true); // because this toggles displayed
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
|
|
|
tabular->SetLongTabular(false);
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, INIT, true); // because this toggles displayed
|
2001-04-04 09:42:56 +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:
|
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)
|
|
|
|
tabular->SetRotateCell(
|
|
|
|
tabular->GetCellNumber(i, j),
|
|
|
|
true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_ROTATE_CELL:
|
2001-04-04 22:08:13 +00:00
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i)
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j)
|
|
|
|
tabular->SetRotateCell(
|
|
|
|
tabular->GetCellNumber(i, j), false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_USEBOX:
|
|
|
|
{
|
|
|
|
LyXTabular::BoxType val = LyXTabular::BoxType(strToInt(value));
|
|
|
|
if (val == tabular->GetUsebox(actcell))
|
|
|
|
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)
|
|
|
|
tabular->SetUsebox(
|
|
|
|
tabular->GetCellNumber(i, j), val);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-24 15:07:39 +00:00
|
|
|
case LyXTabular::UNSET_LTFIRSTHEAD:
|
|
|
|
ltt.row = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_LTFIRSTHEAD:
|
2001-10-24 15:07:39 +00:00
|
|
|
tabular->SetLTHead(ltt, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-10-24 15:07:39 +00:00
|
|
|
case LyXTabular::UNSET_LTHEAD:
|
|
|
|
ltt.row = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_LTHEAD:
|
2001-10-24 15:07:39 +00:00
|
|
|
tabular->SetLTHead(ltt, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-10-24 15:07:39 +00:00
|
|
|
case LyXTabular::UNSET_LTFOOT:
|
|
|
|
ltt.row = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_LTFOOT:
|
2001-10-24 15:07:39 +00:00
|
|
|
tabular->SetLTFoot(ltt, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
2001-10-24 15:07:39 +00:00
|
|
|
case LyXTabular::UNSET_LTLASTFOOT:
|
|
|
|
ltt.row = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::SET_LTLASTFOOT:
|
2001-10-24 15:07:39 +00:00
|
|
|
tabular->SetLTFoot(ltt, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
2001-04-04 22:08:13 +00:00
|
|
|
{
|
|
|
|
bool what = !tabular->GetLTNewPage(actcell);
|
2001-04-04 09:42:56 +00:00
|
|
|
tabular->SetLTNewPage(actcell, what);
|
|
|
|
break;
|
2001-04-04 22:08:13 +00:00
|
|
|
}
|
|
|
|
// dummy stuff just to avoid warnings
|
2001-04-04 09:42:56 +00:00
|
|
|
case LyXTabular::LAST_ACTION:
|
|
|
|
break;
|
2000-05-26 13:09:14 +00:00
|
|
|
}
|
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::activateCellInset(BufferView * bv, int x, int y, int button,
|
2001-04-04 22:08:13 +00:00
|
|
|
bool behind)
|
2001-04-04 09:42:56 +00:00
|
|
|
{
|
|
|
|
UpdatableInset * inset =
|
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
if (behind) {
|
|
|
|
x = inset->x() + inset->width(bv, font);
|
|
|
|
y = inset->descent(bv, font);
|
|
|
|
}
|
|
|
|
//inset_x = cursor.x() - top_x + tabular->GetBeginningOfTextInCell(actcell);
|
|
|
|
//inset_y = cursor.y();
|
2001-06-28 10:25:20 +00:00
|
|
|
inset->edit(bv, x, y, button);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!the_locking_inset)
|
|
|
|
return false;
|
2001-06-28 10:25:20 +00:00
|
|
|
updateLocal(bv, CELL, false);
|
2001-04-04 09:42:56 +00:00
|
|
|
return (the_locking_inset != 0);
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::activateCellInsetAbs(BufferView * bv, int x, int y,
|
2001-04-04 22:08:13 +00:00
|
|
|
int button)
|
2000-05-04 08:14:34 +00:00
|
|
|
{
|
2001-07-06 15:57:54 +00:00
|
|
|
inset_x = cursor_.x()
|
2001-04-04 22:08:13 +00:00
|
|
|
- top_x + tabular->GetBeginningOfTextInCell(actcell);
|
2001-07-06 15:57:54 +00:00
|
|
|
inset_y = cursor_.y();
|
2001-06-28 10:25:20 +00:00
|
|
|
return activateCellInset(bv, x - inset_x, y - inset_y, button);
|
2001-01-25 16:00:38 +00:00
|
|
|
}
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-01-25 16:00:38 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::insetHit(BufferView *, int x, int) const
|
2001-01-25 16:00:38 +00:00
|
|
|
{
|
2001-04-04 22:08:13 +00:00
|
|
|
return (x + top_x)
|
2001-07-06 15:57:54 +00:00
|
|
|
> (cursor_.x() + tabular->GetBeginningOfTextInCell(actcell));
|
2000-05-04 08:14:34 +00:00
|
|
|
}
|
2000-05-15 14:49:36 +00:00
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
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.
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetTabular::getMaxWidthOfCell(BufferView * bv, int cell) const
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
string const s = tabular->GetPWidth(cell);
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
if (s.empty())
|
|
|
|
return -1;
|
|
|
|
return VSpace(s).inPixels(bv);
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-03-29 15:00:20 +00:00
|
|
|
int InsetTabular::getMaxWidth(BufferView * bv,
|
2001-07-06 15:57:54 +00:00
|
|
|
UpdatableInset const * inset) const
|
2000-05-15 14:49:36 +00:00
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
int cell = tabular->cur_cell;
|
|
|
|
if (tabular->GetCellInset(cell) != inset) {
|
2001-07-06 15:57:54 +00:00
|
|
|
cell = actcell;
|
|
|
|
if (tabular->GetCellInset(cell) != inset) {
|
|
|
|
|
2001-11-28 16:09:25 +00:00
|
|
|
lyxerr[Debug::INSETTEXT] << "Actcell not equal to actual cell!\n";
|
2001-07-06 15:57:54 +00:00
|
|
|
cell = -1;
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
int const n = tabular->GetNumberOfCells();
|
2001-06-27 14:10:35 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
if (cell == -1) {
|
2001-07-06 15:57:54 +00:00
|
|
|
for (cell = 0; cell < n; ++cell) {
|
2001-06-25 00:06:33 +00:00
|
|
|
if (tabular->GetCellInset(cell) == inset)
|
|
|
|
break;
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
2001-06-27 14:10:35 +00:00
|
|
|
|
|
|
|
if (cell >= n) {
|
2001-07-06 15:57:54 +00:00
|
|
|
lyxerr << "Own inset not found, shouldn't really happen!\n";
|
|
|
|
return -1;
|
2001-06-27 14:10:35 +00:00
|
|
|
}
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int w = getMaxWidthOfCell(bv, cell);
|
2001-06-27 14:10:35 +00:00
|
|
|
if (w > 0) {
|
2001-04-04 09:42:56 +00:00
|
|
|
// because the inset then subtracts it's top_x and owner->x()
|
|
|
|
w += (inset->x() - top_x);
|
2001-06-27 14:10:35 +00:00
|
|
|
}
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
return w;
|
2000-05-15 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-06-07 14:51:20 +00:00
|
|
|
void InsetTabular::deleteLyXText(BufferView * bv, bool recursive) const
|
|
|
|
{
|
|
|
|
resizeLyXText(bv, recursive);
|
|
|
|
}
|
2000-07-15 23:51:46 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-06-07 14:51:20 +00:00
|
|
|
void InsetTabular::resizeLyXText(BufferView * bv, bool force) const
|
2000-07-14 14:57:20 +00:00
|
|
|
{
|
2001-06-07 14:51:20 +00:00
|
|
|
if (force) {
|
2001-06-27 14:10:35 +00:00
|
|
|
for(int i = 0; i < tabular->rows(); ++i) {
|
|
|
|
for(int j = 0; j < tabular->columns(); ++j) {
|
2001-06-07 14:51:20 +00:00
|
|
|
tabular->GetCellInset(i, j)->resizeLyXText(bv, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-04-04 09:42:56 +00:00
|
|
|
need_update = FULL;
|
2000-07-14 14:57:20 +00:00
|
|
|
}
|
2000-07-19 08:37:26 +00:00
|
|
|
|
2000-09-26 13:54:57 +00:00
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
LyXText * InsetTabular::getLyXText(BufferView const * bv,
|
2001-07-20 14:18:48 +00:00
|
|
|
bool const recursive) const
|
2000-07-19 08:37:26 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset)
|
|
|
|
return the_locking_inset->getLyXText(bv, recursive);
|
2001-07-20 14:18:48 +00:00
|
|
|
#if 0
|
|
|
|
// if we're locked lock the actual insettext and return it's LyXText!!!
|
|
|
|
if (locked) {
|
|
|
|
UpdatableInset * inset =
|
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
|
|
|
|
inset->edit(const_cast<BufferView *>(bv), 0, 0, 0);
|
|
|
|
return the_locking_inset->getLyXText(bv, recursive);
|
|
|
|
}
|
|
|
|
#endif
|
2001-04-04 09:42:56 +00:00
|
|
|
return Inset::getLyXText(bv, recursive);
|
2000-07-19 08:37:26 +00:00
|
|
|
}
|
2000-08-01 09:35:42 +00:00
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
bool InsetTabular::showInsetDialog(BufferView * bv) const
|
2001-03-26 14:47:34 +00:00
|
|
|
{
|
2001-06-28 10:25:20 +00:00
|
|
|
if (!the_locking_inset || !the_locking_inset->showInsetDialog(bv))
|
2001-04-04 22:08:13 +00:00
|
|
|
bv->owner()->getDialogs()
|
|
|
|
->showTabular(const_cast<InsetTabular *>(this));
|
2001-04-04 09:42:56 +00:00
|
|
|
return true;
|
2001-03-26 14:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetTabular::openLayoutDialog(BufferView * bv) const
|
2000-08-01 09:35:42 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (the_locking_inset) {
|
|
|
|
InsetTabular * i = static_cast<InsetTabular *>
|
2001-06-28 10:25:20 +00:00
|
|
|
(the_locking_inset->getFirstLockingInsetOfType(TABULAR_CODE));
|
2001-04-04 09:42:56 +00:00
|
|
|
if (i) {
|
2001-06-28 10:25:20 +00:00
|
|
|
i->openLayoutDialog(bv);
|
2001-04-04 09:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
2000-08-01 09:35:42 +00:00
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
bv->owner()->getDialogs()->showTabular(
|
|
|
|
const_cast<InsetTabular *>(this));
|
2000-08-01 09:35:42 +00:00
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2000-08-01 09:35:42 +00:00
|
|
|
//
|
|
|
|
// functions returns:
|
|
|
|
// 0 ... disabled
|
|
|
|
// 1 ... enabled
|
|
|
|
// 2 ... toggled on
|
|
|
|
// 3 ... toggled off
|
|
|
|
//
|
2001-06-27 14:10:35 +00:00
|
|
|
func_status::value_type InsetTabular::getStatus(string const & what) const
|
2000-08-01 09:35:42 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
int action = LyXTabular::LAST_ACTION;
|
2001-06-27 14:10:35 +00:00
|
|
|
func_status::value_type status = func_status::OK;
|
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;
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (action == LyXTabular::LAST_ACTION)
|
2001-06-27 14:10:35 +00:00
|
|
|
return func_status::Unknown;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
string const argument = frontStrip(what.substr(tabularFeature[i].feature.length()));
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
int sel_row_start;
|
|
|
|
int sel_row_end;
|
|
|
|
int dummy;
|
2001-10-24 15:07:39 +00:00
|
|
|
LyXTabular::ltType dummyltt;
|
2001-04-04 09:42:56 +00:00
|
|
|
bool flag = true;
|
|
|
|
|
|
|
|
if (hasSelection()) {
|
2001-05-28 15:11:24 +00:00
|
|
|
getSelection(sel_row_start, sel_row_end, dummy, dummy);
|
2001-04-04 09:42:56 +00:00
|
|
|
} else {
|
|
|
|
sel_row_start = sel_row_end = tabular->row_of_cell(actcell);
|
|
|
|
}
|
2000-08-01 09:35:42 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
switch (action) {
|
|
|
|
case LyXTabular::SET_PWIDTH:
|
|
|
|
case LyXTabular::SET_MPWIDTH:
|
|
|
|
case LyXTabular::SET_SPECIAL_COLUMN:
|
|
|
|
case LyXTabular::SET_SPECIAL_MULTI:
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::Disabled;
|
2001-04-04 09:42:56 +00:00
|
|
|
return status;
|
|
|
|
|
|
|
|
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:
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::OK;
|
2001-04-04 09:42:56 +00:00
|
|
|
return status;
|
|
|
|
|
|
|
|
case LyXTabular::MULTICOLUMN:
|
|
|
|
if (tabular->IsMultiColumn(actcell))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_TOP:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_TOP:
|
|
|
|
if (tabular->TopLine(actcell, flag))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_BOTTOM:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_BOTTOM:
|
|
|
|
if (tabular->BottomLine(actcell, flag))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_LEFT:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_LEFT:
|
|
|
|
if (tabular->LeftLine(actcell, flag))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_TOGGLE_LINE_RIGHT:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::TOGGLE_LINE_RIGHT:
|
|
|
|
if (tabular->RightLine(actcell, flag))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_ALIGN_LEFT:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::ALIGN_LEFT:
|
|
|
|
if (tabular->GetAlignment(actcell, flag) == LYX_ALIGN_LEFT)
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_ALIGN_RIGHT:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::ALIGN_RIGHT:
|
|
|
|
if (tabular->GetAlignment(actcell, flag) == LYX_ALIGN_RIGHT)
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_ALIGN_CENTER:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::ALIGN_CENTER:
|
|
|
|
if (tabular->GetAlignment(actcell, flag) == LYX_ALIGN_CENTER)
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_TOP:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::VALIGN_TOP:
|
|
|
|
if (tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_TOP)
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_BOTTOM:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::VALIGN_BOTTOM:
|
|
|
|
if (tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_BOTTOM)
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::M_VALIGN_CENTER:
|
|
|
|
flag = false;
|
|
|
|
case LyXTabular::VALIGN_CENTER:
|
|
|
|
if (tabular->GetVAlignment(actcell, flag) == LyXTabular::LYX_VALIGN_CENTER)
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LONGTABULAR:
|
|
|
|
if (tabular->IsLongTabular())
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_LONGTABULAR:
|
|
|
|
if (!tabular->IsLongTabular())
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_ROTATE_TABULAR:
|
|
|
|
if (tabular->GetRotateTabular())
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_ROTATE_TABULAR:
|
|
|
|
if (!tabular->GetRotateTabular())
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_ROTATE_CELL:
|
|
|
|
if (tabular->GetRotateCell(actcell))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::UNSET_ROTATE_CELL:
|
|
|
|
if (!tabular->GetRotateCell(actcell))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_USEBOX:
|
|
|
|
if (strToInt(argument) == tabular->GetUsebox(actcell))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTFIRSTHEAD:
|
2001-10-24 15:07:39 +00:00
|
|
|
if (tabular->GetRowOfLTHead(actcell, dummyltt))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTHEAD:
|
2001-10-24 15:07:39 +00:00
|
|
|
if (tabular->GetRowOfLTHead(actcell, dummyltt))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTFOOT:
|
2001-10-24 15:07:39 +00:00
|
|
|
if (tabular->GetRowOfLTFoot(actcell, dummyltt))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTLASTFOOT:
|
2001-10-24 15:07:39 +00:00
|
|
|
if (tabular->GetRowOfLTFoot(actcell, dummyltt))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
case LyXTabular::SET_LTNEWPAGE:
|
|
|
|
if (tabular->GetLTNewPage(actcell))
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOn;
|
2001-04-04 09:42:56 +00:00
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
status |= func_status::ToggleOff;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
2001-06-27 14:10:35 +00:00
|
|
|
status = func_status::Disabled;
|
2001-04-04 09:42:56 +00:00
|
|
|
break;
|
|
|
|
}
|
2000-08-18 15:32:42 +00:00
|
|
|
return status;
|
2000-08-01 09:35:42 +00:00
|
|
|
}
|
2000-08-23 15:18:19 +00:00
|
|
|
|
|
|
|
|
2001-04-06 12:47:50 +00:00
|
|
|
std::vector<string> const InsetTabular::getLabelList() const
|
|
|
|
{
|
|
|
|
return tabular->getLabelList();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
bool InsetTabular::copySelection(BufferView * bv)
|
2000-08-23 15:18:19 +00:00
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!hasSelection())
|
|
|
|
return false;
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
int sel_col_start = tabular->column_of_cell(sel_cell_start);
|
|
|
|
int sel_col_end = tabular->column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (sel_col_start > sel_col_end) {
|
|
|
|
sel_col_start = sel_col_end;
|
|
|
|
sel_col_end = tabular->right_column_of_cell(sel_cell_start);
|
|
|
|
} else {
|
|
|
|
sel_col_end = tabular->right_column_of_cell(sel_cell_end);
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
int const columns = sel_col_end - sel_col_start + 1;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
int sel_row_start = tabular->row_of_cell(sel_cell_start);
|
|
|
|
int sel_row_end = tabular->row_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (sel_row_start > sel_row_end) {
|
|
|
|
swap(sel_row_start, sel_row_end);
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
int const rows = sel_row_end - sel_row_start + 1;
|
2001-04-04 09:42:56 +00:00
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
delete paste_tabular;
|
2001-04-04 09:42:56 +00:00
|
|
|
paste_tabular = new LyXTabular(this, *tabular); // rows, columns);
|
2001-04-04 22:08:13 +00:00
|
|
|
for (int i = 0; i < sel_row_start; ++i)
|
2001-04-04 09:42:56 +00:00
|
|
|
paste_tabular->DeleteRow(0);
|
|
|
|
while(paste_tabular->rows() > rows)
|
|
|
|
paste_tabular->DeleteRow(rows);
|
|
|
|
paste_tabular->SetTopLine(0, true, true);
|
|
|
|
paste_tabular->SetBottomLine(paste_tabular->GetFirstCellInRow(rows-1),
|
2001-04-04 22:08:13 +00:00
|
|
|
true, true);
|
|
|
|
for (int i = 0; i < sel_col_start; ++i)
|
2001-04-04 09:42:56 +00:00
|
|
|
paste_tabular->DeleteColumn(0);
|
2001-04-04 22:08:13 +00:00
|
|
|
while (paste_tabular->columns() > columns)
|
2001-04-04 09:42:56 +00:00
|
|
|
paste_tabular->DeleteColumn(columns);
|
|
|
|
paste_tabular->SetLeftLine(0, true, true);
|
2001-04-04 22:08:13 +00:00
|
|
|
paste_tabular->SetRightLine(paste_tabular->GetLastCellInRow(0),
|
|
|
|
true, true);
|
2001-04-04 09:42:56 +00:00
|
|
|
|
|
|
|
ostringstream sstr;
|
|
|
|
paste_tabular->Ascii(bv->buffer(), sstr);
|
|
|
|
bv->stuffClipboard(sstr.str().c_str());
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::pasteSelection(BufferView * bv)
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!paste_tabular)
|
|
|
|
return false;
|
2001-01-02 16:06:14 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
for (int r1 = 0, r2 = actrow;
|
2001-04-04 22:08:13 +00:00
|
|
|
(r1 < paste_tabular->rows()) && (r2 < tabular->rows());
|
|
|
|
++r1, ++r2) {
|
2001-04-04 09:42:56 +00:00
|
|
|
for(int c1 = 0, c2 = actcol;
|
2001-04-04 22:08:13 +00:00
|
|
|
(c1 < paste_tabular->columns()) && (c2 < tabular->columns());
|
|
|
|
++c1, ++c2) {
|
2001-04-04 09:42:56 +00:00
|
|
|
if (paste_tabular->IsPartOfMultiColumn(r1,c1) &&
|
2001-04-04 22:08:13 +00:00
|
|
|
tabular->IsPartOfMultiColumn(r2,c2))
|
2001-04-04 09:42:56 +00:00
|
|
|
continue;
|
|
|
|
if (paste_tabular->IsPartOfMultiColumn(r1,c1)) {
|
|
|
|
--c2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (tabular->IsPartOfMultiColumn(r2,c2)) {
|
|
|
|
--c1;
|
|
|
|
continue;
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
int const n1 = paste_tabular->GetCellNumber(r1, c1);
|
|
|
|
int const n2 = tabular->GetCellNumber(r2, c2);
|
2001-04-04 09:42:56 +00:00
|
|
|
*(tabular->GetCellInset(n2)) = *(paste_tabular->GetCellInset(n1));
|
|
|
|
tabular->GetCellInset(n2)->setOwner(this);
|
|
|
|
tabular->GetCellInset(n2)->deleteLyXText(bv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::cutSelection()
|
|
|
|
{
|
2001-04-04 09:42:56 +00:00
|
|
|
if (!hasSelection())
|
|
|
|
return false;
|
2000-09-19 13:50:47 +00:00
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
int sel_col_start = tabular->column_of_cell(sel_cell_start);
|
|
|
|
int sel_col_end = tabular->column_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (sel_col_start > sel_col_end) {
|
|
|
|
sel_col_start = sel_col_end;
|
|
|
|
sel_col_end = tabular->right_column_of_cell(sel_cell_start);
|
|
|
|
} else {
|
|
|
|
sel_col_end = tabular->right_column_of_cell(sel_cell_end);
|
|
|
|
}
|
2001-04-04 22:08:13 +00:00
|
|
|
int sel_row_start = tabular->row_of_cell(sel_cell_start);
|
|
|
|
int sel_row_end = tabular->row_of_cell(sel_cell_end);
|
2001-04-04 09:42:56 +00:00
|
|
|
if (sel_row_start > sel_row_end) {
|
|
|
|
swap(sel_row_start, sel_row_end);
|
|
|
|
}
|
|
|
|
if (sel_cell_start > sel_cell_end) {
|
|
|
|
swap(sel_cell_start, sel_cell_end);
|
|
|
|
}
|
|
|
|
for (int i = sel_row_start; i <= sel_row_end; ++i) {
|
|
|
|
for (int j = sel_col_start; j <= sel_col_end; ++j) {
|
|
|
|
tabular->GetCellInset(tabular->GetCellNumber(i, j))->clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2000-08-23 15:18:19 +00:00
|
|
|
}
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
|
2001-01-08 16:14:09 +00:00
|
|
|
bool InsetTabular::isRightToLeft(BufferView *bv )
|
|
|
|
{
|
|
|
|
return bv->getParentLanguage(this)->RightToLeft();
|
|
|
|
}
|
2001-04-27 14:03:25 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
bool InsetTabular::nodraw() const
|
|
|
|
{
|
2001-06-14 10:44:21 +00:00
|
|
|
if (!UpdatableInset::nodraw() && the_locking_inset)
|
2001-04-27 14:03:25 +00:00
|
|
|
return the_locking_inset->nodraw();
|
|
|
|
return UpdatableInset::nodraw();
|
|
|
|
}
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
int InsetTabular::scroll(bool recursive) const
|
|
|
|
{
|
|
|
|
int sx = UpdatableInset::scroll(false);
|
|
|
|
|
|
|
|
if (recursive && the_locking_inset)
|
|
|
|
sx += the_locking_inset->scroll(recursive);
|
|
|
|
|
|
|
|
return sx;
|
|
|
|
}
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-04-27 14:03:25 +00:00
|
|
|
bool InsetTabular::doClearArea() const
|
|
|
|
{
|
|
|
|
return !locked || (need_update & (FULL|INIT));
|
|
|
|
}
|
2001-05-28 15:11:24 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
2001-05-28 15:11:24 +00:00
|
|
|
void InsetTabular::getSelection(int & srow, int & erow, int & scol, int & ecol) const
|
|
|
|
{
|
|
|
|
srow = tabular->row_of_cell(sel_cell_start);
|
|
|
|
erow = tabular->row_of_cell(sel_cell_end);
|
|
|
|
if (srow > erow)
|
|
|
|
swap(srow, erow);
|
|
|
|
|
|
|
|
scol = tabular->column_of_cell(sel_cell_start);
|
|
|
|
ecol = tabular->column_of_cell(sel_cell_end);
|
|
|
|
if (scol > ecol)
|
|
|
|
swap(scol, ecol);
|
|
|
|
else
|
|
|
|
ecol = tabular->right_column_of_cell(sel_cell_end);
|
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Paragraph * InsetTabular::getParFromID(int id) const
|
|
|
|
{
|
|
|
|
Paragraph * result;
|
2001-07-09 09:16:00 +00:00
|
|
|
for(int i = 0; i < tabular->rows(); ++i) {
|
|
|
|
for(int j = 0; j < tabular->columns(); ++j) {
|
2001-07-06 15:57:54 +00:00
|
|
|
if ((result = tabular->GetCellInset(i, j)->getParFromID(id)))
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Paragraph * InsetTabular::firstParagraph() const
|
|
|
|
{
|
|
|
|
if (the_locking_inset)
|
|
|
|
return the_locking_inset->firstParagraph();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2001-09-01 21:26:34 +00:00
|
|
|
Paragraph * InsetTabular::getFirstParagraph(int i) const
|
|
|
|
{
|
|
|
|
return (i < tabular->GetNumberOfCells())
|
|
|
|
? tabular->GetCellInset(i)->getFirstParagraph(0)
|
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
LyXCursor const & InsetTabular::cursor(BufferView * bv) const
|
|
|
|
{
|
|
|
|
if (the_locking_inset)
|
|
|
|
return the_locking_inset->cursor(bv);
|
|
|
|
return Inset::cursor(bv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset * InsetTabular::getInsetFromID(int id_arg) const
|
|
|
|
{
|
|
|
|
if (id_arg == id())
|
|
|
|
return const_cast<InsetTabular *>(this);
|
|
|
|
|
|
|
|
Inset * result;
|
|
|
|
for(int i=0; i < tabular->rows(); ++i) {
|
|
|
|
for(int j=0; j < tabular->columns(); ++j) {
|
|
|
|
if ((result = tabular->GetCellInset(i, j)->getInsetFromID(id_arg)))
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2001-07-17 15:39:12 +00:00
|
|
|
|
|
|
|
|
2001-09-21 16:21:23 +00:00
|
|
|
string const InsetTabular::selectNextWordToSpellcheck(BufferView * bv, float & value) const
|
2001-07-17 15:39:12 +00:00
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
2001-09-21 16:21:23 +00:00
|
|
|
string const str(the_locking_inset->selectNextWordToSpellcheck(bv, value));
|
2001-07-17 15:39:12 +00:00
|
|
|
if (!str.empty())
|
|
|
|
return str;
|
2001-07-18 08:38:14 +00:00
|
|
|
if (tabular->IsLastCell(actcell)) {
|
|
|
|
bv->unlockInset(const_cast<InsetTabular *>(this));
|
|
|
|
return string();
|
|
|
|
}
|
|
|
|
++actcell;
|
2001-07-17 15:39:12 +00:00
|
|
|
}
|
2001-08-01 15:42:53 +00:00
|
|
|
nodraw(true);
|
2001-07-17 15:39:12 +00:00
|
|
|
// otherwise we have to lock the next inset and ask for it's selecttion
|
|
|
|
UpdatableInset * inset =
|
2001-07-18 08:38:14 +00:00
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
|
2001-07-17 15:39:12 +00:00
|
|
|
inset->edit(bv, 0, 0, 0);
|
2001-07-24 22:08:49 +00:00
|
|
|
string const str(selectNextWordInt(bv, value));
|
2001-08-01 15:42:53 +00:00
|
|
|
nodraw(false);
|
2001-07-17 15:39:12 +00:00
|
|
|
if (!str.empty())
|
|
|
|
resetPos(bv);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2001-07-17 15:39:12 +00:00
|
|
|
string InsetTabular::selectNextWordInt(BufferView * bv, float & value) const
|
|
|
|
{
|
2001-07-18 08:38:14 +00:00
|
|
|
// when entering this function the inset should be ALWAYS locked!
|
|
|
|
lyx::Assert(the_locking_inset);
|
|
|
|
|
2001-09-21 16:21:23 +00:00
|
|
|
string const str(the_locking_inset->selectNextWordToSpellcheck(bv, value));
|
2001-07-18 08:38:14 +00:00
|
|
|
if (!str.empty())
|
|
|
|
return str;
|
|
|
|
|
2001-07-17 15:39:12 +00:00
|
|
|
if (tabular->IsLastCell(actcell)) {
|
|
|
|
bv->unlockInset(const_cast<InsetTabular *>(this));
|
|
|
|
return string();
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise we have to lock the next inset and ask for it's selecttion
|
|
|
|
UpdatableInset * inset =
|
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(++actcell));
|
2001-08-10 14:00:48 +00:00
|
|
|
inset->edit(bv);
|
2001-07-17 15:39:12 +00:00
|
|
|
return selectNextWordInt(bv, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetTabular::selectSelectedWord(BufferView * bv)
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->selectSelectedWord(bv);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2001-07-17 15:39:12 +00:00
|
|
|
void InsetTabular::toggleSelection(BufferView * bv, bool kill_selection)
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
the_locking_inset->toggleSelection(bv, kill_selection);
|
|
|
|
}
|
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::searchForward(BufferView * bv, string const & str,
|
2001-08-01 15:42:53 +00:00
|
|
|
bool const & cs, bool const & mw)
|
2001-07-20 14:18:48 +00:00
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
if (the_locking_inset->searchForward(bv, str, cs, mw))
|
|
|
|
return true;
|
|
|
|
if (tabular->IsLastCell(actcell)) {
|
|
|
|
bv->unlockInset(const_cast<InsetTabular *>(this));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
++actcell;
|
|
|
|
}
|
|
|
|
// otherwise we have to lock the next inset and search there
|
|
|
|
UpdatableInset * inset =
|
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
|
|
|
|
inset->edit(bv);
|
2001-08-01 15:42:53 +00:00
|
|
|
#if 0
|
2001-07-24 22:08:49 +00:00
|
|
|
bool const res = searchForward(bv, str, cs, mw);
|
2001-07-20 14:18:48 +00:00
|
|
|
updateLocal(bv, NONE, false);
|
|
|
|
bv->updateInset(const_cast<InsetTabular *>(this), false);
|
|
|
|
return res;
|
2001-08-01 15:42:53 +00:00
|
|
|
#else
|
|
|
|
return searchForward(bv, str, cs, mw);
|
|
|
|
#endif
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
bool InsetTabular::searchBackward(BufferView * bv, string const & str,
|
|
|
|
bool const & cs, bool const & mw)
|
|
|
|
{
|
|
|
|
if (the_locking_inset) {
|
|
|
|
if (the_locking_inset->searchBackward(bv, str, cs, mw))
|
|
|
|
return true;
|
|
|
|
if (!actcell) { // we are already in the first cell
|
|
|
|
bv->unlockInset(const_cast<InsetTabular *>(this));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
--actcell;
|
|
|
|
}
|
|
|
|
// otherwise we have to lock the next inset and search there
|
|
|
|
UpdatableInset * inset =
|
|
|
|
static_cast<UpdatableInset*>(tabular->GetCellInset(actcell));
|
|
|
|
inset->edit(bv, false);
|
2001-08-01 15:42:53 +00:00
|
|
|
#if 0
|
2001-07-24 22:08:49 +00:00
|
|
|
bool const res = searchBackward(bv, str, cs, mw);
|
2001-07-20 14:18:48 +00:00
|
|
|
bv->updateInset(const_cast<InsetTabular *>(this), false);
|
|
|
|
return res;
|
2001-08-01 15:42:53 +00:00
|
|
|
#else
|
|
|
|
return searchBackward(bv, str, cs, mw);
|
|
|
|
#endif
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
2001-08-08 13:29:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool InsetTabular::insetAllowed(Inset::Code code) const
|
|
|
|
{
|
|
|
|
if (the_locking_inset)
|
|
|
|
return the_locking_inset->insetAllowed(code);
|
|
|
|
return false;
|
|
|
|
}
|